diff options
author | Stefan Roese <sr@denx.de> | 2005-11-29 18:18:21 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2005-11-29 18:18:21 +0100 |
commit | 6e7fb6eaa515e15c2b86451d7853c2611713e872 (patch) | |
tree | 512e4c08baa1047310056989a4a651fe4aa10d18 /include/ppc4xx_enet.h | |
parent | 1178a412d2c71cf8be61738153f11c99ce9653a5 (diff) | |
download | u-boot-imx-6e7fb6eaa515e15c2b86451d7853c2611713e872.zip u-boot-imx-6e7fb6eaa515e15c2b86451d7853c2611713e872.tar.gz u-boot-imx-6e7fb6eaa515e15c2b86451d7853c2611713e872.tar.bz2 |
Add support for AMCC 440SP, add support for AMCC Luan 440SP eval board.
Patch by John Otken, 23 Nov 2005
Diffstat (limited to 'include/ppc4xx_enet.h')
-rw-r--r-- | include/ppc4xx_enet.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ppc4xx_enet.h b/include/ppc4xx_enet.h index eacfb68..d6d33b6 100644 --- a/include/ppc4xx_enet.h +++ b/include/ppc4xx_enet.h @@ -131,7 +131,9 @@ typedef struct emac_4xx_hw_st { #if defined(CONFIG_440GX) #define EMAC_NUM_DEV 4 -#elif (defined(CONFIG_440) || defined(CONFIG_405EP)) && defined(CONFIG_NET_MULTI) +#elif (defined(CONFIG_440) || defined(CONFIG_405EP)) && \ + defined(CONFIG_NET_MULTI) && \ + !defined(CONFIG_440SP) #define EMAC_NUM_DEV 2 #else #define EMAC_NUM_DEV 1 @@ -321,7 +323,7 @@ typedef struct emac_4xx_hw_st { #define EMAC_M0_WKE (0x04000000) /* on 440GX EMAC_MR1 has a different layout! */ -#if defined(CONFIG_440GX) +#if defined(CONFIG_440GX) || defined(CONFIG_440SP) /* MODE Reg 1 */ #define EMAC_M1_FDE (0x80000000) #define EMAC_M1_ILE (0x40000000) |