diff options
author | Heiko Schocher <hs@pollux.denx.de> | 2007-04-14 05:26:48 +0200 |
---|---|---|
committer | Heiko Schocher <hs@pollux.denx.de> | 2007-04-14 05:26:48 +0200 |
commit | 37403005cfe6bb13964d450f6a48a0b0f2f7017e (patch) | |
tree | 5b22adc50d6549b7dea6d60efa25d3e16d6a6c79 /cpu/mpc5xxx | |
parent | 6c9ba919375db977aaad9146bf320c7afd07ae7a (diff) | |
download | u-boot-imx-37403005cfe6bb13964d450f6a48a0b0f2f7017e.zip u-boot-imx-37403005cfe6bb13964d450f6a48a0b0f2f7017e.tar.gz u-boot-imx-37403005cfe6bb13964d450f6a48a0b0f2f7017e.tar.bz2 |
[Fix] Set the LED status register on the UC101 for the LXT971 PHY.
clear the Display after reset.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'cpu/mpc5xxx')
-rw-r--r-- | cpu/mpc5xxx/fec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/mpc5xxx/fec.c b/cpu/mpc5xxx/fec.c index 13a3870..e59bd85 100644 --- a/cpu/mpc5xxx/fec.c +++ b/cpu/mpc5xxx/fec.c @@ -467,6 +467,10 @@ static int mpc5xxx_fec_init_phy(struct eth_device *dev, bd_t * bis) miiphy_write(dev->name, phyAddr, 0x0, 0x8000); udelay(1000); +#if defined(CONFIG_UC101) + /* Set the LED configuration Register for the UC101 Board */ + miiphy_write(dev->name, phyAddr, 0x14, 0x4122); +#endif if (fec->xcv_type == MII10) { /* * Force 10Base-T, FDX operation |