diff options
author | stroese <stroese> | 2003-05-23 11:18:02 +0000 |
---|---|---|
committer | stroese <stroese> | 2003-05-23 11:18:02 +0000 |
commit | b867d705b6217fed505dd44cf539699b8a81733d (patch) | |
tree | b9f5508be6df2b2e0f8914f815826326e777f015 /include/asm-ppc | |
parent | bedc4970297fcd83121cac456d6b1188f2336aac (diff) | |
download | u-boot-imx-b867d705b6217fed505dd44cf539699b8a81733d.zip u-boot-imx-b867d705b6217fed505dd44cf539699b8a81733d.tar.gz u-boot-imx-b867d705b6217fed505dd44cf539699b8a81733d.tar.bz2 |
PPC405EP support added.
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/processor.h | 1 | ||||
-rw-r--r-- | include/asm-ppc/u-boot.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index dc04a8f..9c88b49 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -465,6 +465,7 @@ #define PVR_405GPR_RB 0x50910951 #define PVR_440GP_RB 0x40120440 #define PVR_440GP_RC 0x40120481 +#define PVR_405EP_RB 0x51210950 #define PVR_601 0x00010000 #define PVR_602 0x00050000 #define PVR_603 0x00030000 diff --git a/include/asm-ppc/u-boot.h b/include/asm-ppc/u-boot.h index 5e8f4b5..db563a5 100644 --- a/include/asm-ppc/u-boot.h +++ b/include/asm-ppc/u-boot.h @@ -57,7 +57,8 @@ typedef struct bd_info { #if defined(CONFIG_405GP) || \ defined(CONFIG_405CR) || \ defined(CONFIG_440) || \ - defined(CONFIG_405) + defined(CONFIG_405) || \ + defined(CONFIG_405EP) unsigned char bi_s_version[4]; /* Version of this structure */ unsigned char bi_r_version[32]; /* Version of the ROM (IBM) */ unsigned int bi_procfreq; /* CPU (Internal) Freq, in Hz */ |