diff options
author | Wolfgang Denk <wd@denx.de> | 2009-04-30 23:01:08 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-04-30 23:01:08 +0200 |
commit | ccb71dfac94d4a9ef161a59a51b4f31d7d9e4747 (patch) | |
tree | 78cfc03a11b67fddaf1168bcec19a710016bdb5d /include/asm-arm/arch-omap3/omap3.h | |
parent | bf2ba6d46e1046e54e1de30b4df40e384a355195 (diff) | |
parent | a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c (diff) | |
download | u-boot-imx-ccb71dfac94d4a9ef161a59a51b4f31d7d9e4747.zip u-boot-imx-ccb71dfac94d4a9ef161a59a51b4f31d7d9e4747.tar.gz u-boot-imx-ccb71dfac94d4a9ef161a59a51b4f31d7d9e4747.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'include/asm-arm/arch-omap3/omap3.h')
-rw-r--r-- | include/asm-arm/arch-omap3/omap3.h | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/include/asm-arm/arch-omap3/omap3.h b/include/asm-arm/arch-omap3/omap3.h index 8c9656f..7c11019 100644 --- a/include/asm-arm/arch-omap3/omap3.h +++ b/include/asm-arm/arch-omap3/omap3.h @@ -167,24 +167,20 @@ typedef struct gpio { * 343x real hardware: * ES1 = rev 0 * - * 343x code defines: - * ES1 = 0+1 = 1 - * ES1 = 1+1 = 1 + * ES2 onwards, the value maps to contents of IDCODE register [31:28]. */ -#define CPU_3430_ES1 1 -#define CPU_3430_ES2 2 +#define CPU_3XX_ES10 0 +#define CPU_3XX_ES20 1 +#define CPU_3XX_ES21 2 +#define CPU_3XX_ES30 3 +#define CPU_3XX_ES31 4 +#define CPU_3XX_MAX_REV (CPU_3XX_ES31 + 1) + +#define CPU_3XX_ID_SHIFT 28 #define WIDTH_8BIT 0x0000 #define WIDTH_16BIT 0x1000 /* bit pos for 16 bit in gpmc */ -/* SDP definitions according to FPGA Rev. Is this OK?? */ -#define SDP_3430_V1 0x1 -#define SDP_3430_V2 0x2 - -/* EVM definitions */ -#define OMAP3EVM_V1 0x1 -#define OMAP3EVM_V2 0x2 - /* I2C power management companion definitions */ #define PWRMGT_ADDR_ID1 0x48 #define PWRMGT_ADDR_ID2 0x49 |