summaryrefslogtreecommitdiffstats
path: root/board/amcc/luan
diff options
context:
space:
mode:
authorPeter Pearse <peter.pearse@arm.com>2007-10-04 11:00:44 +0100
committerPeter Pearse <peter.pearse@arm.com>2007-10-04 11:00:44 +0100
commite81a95a9e7cb68ab611e074cd65790015520ea99 (patch)
tree8ca6d8dc1ec2d6db1f4fdabdb17baf5ad9c37650 /board/amcc/luan
parentbd86220f58b99d6896198c385fda132f0c980915 (diff)
parent527c80f012030fa0b51f8594847ec56c9317e9b1 (diff)
downloadtalos-obmc-uboot-e81a95a9e7cb68ab611e074cd65790015520ea99.tar.gz
talos-obmc-uboot-e81a95a9e7cb68ab611e074cd65790015520ea99.zip
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'board/amcc/luan')
-rw-r--r--board/amcc/luan/luan.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/board/amcc/luan/luan.c b/board/amcc/luan/luan.c
index 7b16f8a39a..0067ce0e7e 100644
--- a/board/amcc/luan/luan.c
+++ b/board/amcc/luan/luan.c
@@ -39,8 +39,6 @@ extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
************************************************************************/
int board_early_init_f(void)
{
- volatile epld_t *x = (epld_t *) CFG_EPLD_BASE;
-
mtebc( pb0ap, 0x03800000 ); /* set chip selects */
mtebc( pb0cr, 0xffc58000 ); /* ebc0_b0cr, 4MB at 0xffc00000 CS0 */
mtebc( pb1ap, 0x03800000 );
@@ -66,8 +64,6 @@ int board_early_init_f(void)
mtdcr( uic0sr, 0x00000000 ); /* clear all interrupts */
mtdcr( uic0sr, 0xffffffff );
- x->ethuart &= ~EPLD2_RESET_ETH_N; /* put Ethernet+PHY in reset */
-
return 0;
}
@@ -79,7 +75,18 @@ int board_early_init_f(void)
int misc_init_r(void)
{
volatile epld_t *x = (epld_t *) CFG_EPLD_BASE;
- x->ethuart |= EPLD2_RESET_ETH_N; /* take Ethernet+PHY out of reset */
+
+ /* set modes of operation */
+ x->ethuart |= EPLD2_ETH_MODE_10 | EPLD2_ETH_MODE_100 |
+ EPLD2_ETH_MODE_1000 | EPLD2_ETH_DUPLEX_MODE;
+ /* clear ETHERNET_AUTO_NEGO bit to turn on autonegotiation */
+ x->ethuart &= ~EPLD2_ETH_AUTO_NEGO;
+
+ /* put Ethernet+PHY in reset */
+ x->ethuart &= ~EPLD2_RESET_ETH_N;
+ udelay(10000);
+ /* take Ethernet+PHY out of reset */
+ x->ethuart |= EPLD2_RESET_ETH_N;
return 0;
}
OpenPOWER on IntegriCloud