diff options
author | Heiko Schocher <hs@denx.de> | 2014-11-05 09:23:21 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-06 16:04:40 (GMT) |
commit | 60ca5ad4b6687f8d7605d81869890bda4772c9bf (patch) | |
tree | cd125652cffcd72859a745864b968c88d16a9987 /board/siemens | |
parent | 30491fc83ea423bb73a5ab769360a91a416fd044 (diff) | |
download | u-boot-60ca5ad4b6687f8d7605d81869890bda4772c9bf.tar.xz |
arm: am335x: net: pxm2: disable rgmii internal delay mode
disable internal delay through gmii_sel register, as this
is done in the ar8031 phy.
Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/siemens')
-rw-r--r-- | board/siemens/pxm2/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/siemens/pxm2/board.c b/board/siemens/pxm2/board.c index 64e69dc..559af0e 100644 --- a/board/siemens/pxm2/board.c +++ b/board/siemens/pxm2/board.c @@ -229,7 +229,7 @@ int board_eth_init(bd_t *bis) #endif /* #ifdef CONFIG_FACTORYSET */ /* Set rgmii mode and enable rmii clock to be sourced from chip */ - writel(RGMII_MODE_ENABLE , &cdev->miisel); + writel(RGMII_MODE_ENABLE | RGMII_INT_DELAY, &cdev->miisel); rv = cpsw_register(&cpsw_data); if (rv < 0) |