diff options
| author | Wolfgang Denk <wd@pollux.(none)> | 2005-09-23 11:05:55 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.(none)> | 2005-09-23 11:05:55 +0200 | 
| commit | 0c8721a466b5e0eca7e7fbe1007777fa82100541 (patch) | |
| tree | 1f53decded27502be8593137739291a3de406d94 /board/eric/eric.c | |
| parent | a6e6cf00367c0779eadb49915e40c55f0a787957 (diff) | |
| download | olio-uboot-2014.01-0c8721a466b5e0eca7e7fbe1007777fa82100541.tar.xz olio-uboot-2014.01-0c8721a466b5e0eca7e7fbe1007777fa82100541.zip | |
Cleanup (PPC4xx is AMCC now)
Diffstat (limited to 'board/eric/eric.c')
| -rw-r--r-- | board/eric/eric.c | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/board/eric/eric.c b/board/eric/eric.c index 860e5064b..02fe8dcfb 100644 --- a/board/eric/eric.c +++ b/board/eric/eric.c @@ -26,10 +26,10 @@  #include "eric.h"  #include <asm/processor.h> -#define IBM405GP_GPIO0_OR      0xef600700	/* GPIO Output */ -#define IBM405GP_GPIO0_TCR     0xef600704	/* GPIO Three-State Control */ -#define IBM405GP_GPIO0_ODR     0xef600718	/* GPIO Open Drain */ -#define IBM405GP_GPIO0_IR      0xef60071c	/* GPIO Input */ +#define PPC405GP_GPIO0_OR      0xef600700	/* GPIO Output */ +#define PPC405GP_GPIO0_TCR     0xef600704	/* GPIO Three-State Control */ +#define PPC405GP_GPIO0_ODR     0xef600718	/* GPIO Open Drain */ +#define PPC405GP_GPIO0_IR      0xef60071c	/* GPIO Input */  int board_early_init_f (void)  { @@ -50,7 +50,7 @@ int board_early_init_f (void)     |       IRQ 30 (EXT IRQ 5) PCI INTB#; active low; level sensitive     |       IRQ 31 (EXT IRQ 6) PCI INTA#; active low; level sensitive     |        -> IRQ6 Pin is NOW GPIO23 and can be activateted by setting -   |           IBM405GP_GPIO0_TCR Bit 0 = 1 (driving the output as defined in IBM405GP_GPIO0_OR, +   |           PPC405GP_GPIO0_TCR Bit 0 = 1 (driving the output as defined in PPC405GP_GPIO0_OR,     |           else tristate)     | Note for ERIC board:     |       An interrupt taken for the HOST (IRQ 28) indicates that @@ -70,8 +70,8 @@ int board_early_init_f (void)  	mtdcr (cntrl0, 0x00002000);	/* set IRQ6 as GPIO23 to generate an interrupt request to the PCP2PCI bridge */ -	out32 (IBM405GP_GPIO0_OR, 0x60000000);	/*fixme is SMB_INT high or low active??; IRQ6 is GPIO23 output */ -	out32 (IBM405GP_GPIO0_TCR, 0x7E400000); +	out32 (PPC405GP_GPIO0_OR, 0x60000000);	/*fixme is SMB_INT high or low active??; IRQ6 is GPIO23 output */ +	out32 (PPC405GP_GPIO0_TCR, 0x7E400000);  	return 0;  } |