diff options
| author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-12-17 16:53:07 +0100 | 
|---|---|---|
| committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-12-17 16:53:07 +0100 | 
| commit | cb5473205206c7f14cbb1e747f28ec75b48826e2 (patch) | |
| tree | 8f4808d60917100b18a10b05230f7638a0a9bbcc /cpu/mpc85xx/interrupts.c | |
| parent | baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0 (diff) | |
| parent | 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb (diff) | |
| download | olio-uboot-2014.01-cb5473205206c7f14cbb1e747f28ec75b48826e2.tar.xz olio-uboot-2014.01-cb5473205206c7f14cbb1e747f28ec75b48826e2.zip | |
Merge branch 'fixes' into cleanups
Conflicts:
	board/atmel/atngw100/atngw100.c
	board/atmel/atstk1000/atstk1000.c
	cpu/at32ap/at32ap700x/gpio.c
	include/asm-avr32/arch-at32ap700x/clk.h
	include/configs/atngw100.h
	include/configs/atstk1002.h
	include/configs/atstk1003.h
	include/configs/atstk1004.h
	include/configs/atstk1006.h
	include/configs/favr-32-ezkit.h
	include/configs/hammerhead.h
	include/configs/mimc200.h
Diffstat (limited to 'cpu/mpc85xx/interrupts.c')
| -rw-r--r-- | cpu/mpc85xx/interrupts.c | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/cpu/mpc85xx/interrupts.c b/cpu/mpc85xx/interrupts.c index 06d4d8b73..4ef83950d 100644 --- a/cpu/mpc85xx/interrupts.c +++ b/cpu/mpc85xx/interrupts.c @@ -34,43 +34,43 @@  int interrupt_init_cpu(unsigned long *decrementer_count)  { -	volatile ccsr_pic_t *pic = (void *)(CFG_MPC85xx_PIC_ADDR); +	volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC85xx_PIC_ADDR);  	pic->gcr = MPC85xx_PICGCR_RST;  	while (pic->gcr & MPC85xx_PICGCR_RST)  		;  	pic->gcr = MPC85xx_PICGCR_M; -	*decrementer_count = get_tbclk() / CFG_HZ; +	*decrementer_count = get_tbclk() / CONFIG_SYS_HZ;  	/* PIE is same as DIE, dec interrupt enable */  	mtspr(SPRN_TCR, TCR_PIE);  #ifdef CONFIG_INTERRUPTS  	pic->iivpr1 = 0x810001;	/* 50220 enable ecm interrupts */ -	debug("iivpr1@%x = %x\n",&pic->iivpr1, pic->iivpr1); +	debug("iivpr1@%x = %x\n", (uint)&pic->iivpr1, pic->iivpr1);  	pic->iivpr2 = 0x810002;	/* 50240 enable ddr interrupts */ -	debug("iivpr2@%x = %x\n",&pic->iivpr2, pic->iivpr2); +	debug("iivpr2@%x = %x\n", (uint)&pic->iivpr2, pic->iivpr2);  	pic->iivpr3 = 0x810003;	/* 50260 enable lbc interrupts */ -	debug("iivpr3@%x = %x\n",&pic->iivpr3, pic->iivpr3); +	debug("iivpr3@%x = %x\n", (uint)&pic->iivpr3, pic->iivpr3);  #ifdef CONFIG_PCI1  	pic->iivpr8 = 0x810008;	/* enable pci1 interrupts */ -	debug("iivpr8@%x = %x\n",&pic->iivpr8, pic->iivpr8); +	debug("iivpr8@%x = %x\n", (uint)&pic->iivpr8, pic->iivpr8);  #endif  #if defined(CONFIG_PCI2) || defined(CONFIG_PCIE2)  	pic->iivpr9 = 0x810009;	/* enable pci1 interrupts */ -	debug("iivpr9@%x = %x\n",&pic->iivpr9, pic->iivpr9); +	debug("iivpr9@%x = %x\n", (uint)&pic->iivpr9, pic->iivpr9);  #endif  #ifdef CONFIG_PCIE1  	pic->iivpr10 = 0x81000a;	/* enable pcie1 interrupts */ -	debug("iivpr10@%x = %x\n",&pic->iivpr10, pic->iivpr10); +	debug("iivpr10@%x = %x\n", (uint)&pic->iivpr10, pic->iivpr10);  #endif  #ifdef CONFIG_PCIE3  	pic->iivpr11 = 0x81000b;	/* enable pcie3 interrupts */ -	debug("iivpr11@%x = %x\n",&pic->iivpr11, pic->iivpr11); +	debug("iivpr11@%x = %x\n", (uint)&pic->iivpr11, pic->iivpr11);  #endif  	pic->ctpr=0;		/* 40080 clear current task priority register */ |