diff options
author | Stefan Roese <sr@denx.de> | 2008-03-11 15:07:10 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-03-15 07:28:04 +0100 |
commit | 999ecd5aca381984d8ebbeb207ece82a1c275577 (patch) | |
tree | 7315e0b1ef6c26dc82b158c84c34cd4585826337 /include/asm-ppc/u-boot.h | |
parent | 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a (diff) | |
download | u-boot-999ecd5aca381984d8ebbeb207ece82a1c275577.tar.gz u-boot-999ecd5aca381984d8ebbeb207ece82a1c275577.tar.xz u-boot-999ecd5aca381984d8ebbeb207ece82a1c275577.zip |
ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
This patch adds basic support for the AMCC 460EX/460GT PPC's.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/asm-ppc/u-boot.h')
-rw-r--r-- | include/asm-ppc/u-boot.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-ppc/u-boot.h b/include/asm-ppc/u-boot.h index 2b31814b66..786ba030ea 100644 --- a/include/asm-ppc/u-boot.h +++ b/include/asm-ppc/u-boot.h @@ -115,7 +115,8 @@ typedef struct bd_info { #if defined(CONFIG_405GP) || defined(CONFIG_405EP) || \ defined(CONFIG_405EZ) || defined(CONFIG_440GX) || \ defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ - defined(CONFIG_440EPX) || defined(CONFIG_440GRX) + defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ + defined(CONFIG_460EX) || defined(CONFIG_460GT) unsigned int bi_opbfreq; /* OPB clock in Hz */ int bi_iic_fast[2]; /* Use fast i2c mode */ #endif @@ -123,7 +124,8 @@ typedef struct bd_info { unsigned char bi_sernum[8]; #endif #if defined(CONFIG_4xx) -#if defined(CONFIG_440GX) +#if defined(CONFIG_440GX) || \ + defined(CONFIG_460EX) || defined(CONFIG_460GT) int bi_phynum[4]; /* Determines phy mapping */ int bi_phymode[4]; /* Determines phy mode */ #elif defined(CONFIG_405EP) || defined(CONFIG_440) |