diff options
author | Stefan Roese <sr@denx.de> | 2007-03-21 13:38:59 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-03-21 13:38:59 +0100 |
commit | e01bd218b00af73499331a1a701625a852cd286f (patch) | |
tree | efb6d32bfba353b01a07e82f2ef9308b9919e5df /cpu/ppc4xx/4xx_enet.c | |
parent | 87ed3bfb4214c4b39a5a642bcd851f60b3898af2 (diff) | |
download | u-boot-imx-e01bd218b00af73499331a1a701625a852cd286f.zip u-boot-imx-e01bd218b00af73499331a1a701625a852cd286f.tar.gz u-boot-imx-e01bd218b00af73499331a1a701625a852cd286f.tar.bz2 |
[PATCH] Add AMCC PPC405EZ support
This patch adds support for the new AMCC 405EZ PPC. It is in
preparation for the AMCC Acadia board support.
Please note that this Acadia/405EZ support is still in a beta stage.
Still lot's of cleanup needed but we need a preliminary release now.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx/4xx_enet.c')
-rw-r--r-- | cpu/ppc4xx/4xx_enet.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpu/ppc4xx/4xx_enet.c b/cpu/ppc4xx/4xx_enet.c index 4f55583..cf56581 100644 --- a/cpu/ppc4xx/4xx_enet.c +++ b/cpu/ppc4xx/4xx_enet.c @@ -1333,6 +1333,9 @@ int enetInt (struct eth_device *dev) } } mtdcr (uicsr, MAL_UIC_DEF|EMAC_UIC_DEF|EMAC_UIC_DEF1); /* Clear */ +#if defined(CONFIG_405EZ) + mtsdr (sdricintstat, SDR_ICRX_STAT | SDR_ICTX0_STAT | SDR_ICTX1_STAT); +#endif /* defined(CONFIG_405EZ) */ } while (serviced); |