diff options
author | Chunhe Lan <Chunhe.Lan@freescale.com> | 2014-12-10 20:00:39 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-01-16 09:29:59 -0800 |
commit | 3bcf047da838d2462750cd55bba6db7d71b6c06a (patch) | |
tree | 08cc10b1c0a427301329abf46bb914f27e94e664 /board/freescale/t4rdb/eth.c | |
parent | d67be7c965949b88e2bae40ebb9de263a4f441e0 (diff) | |
download | u-boot-imx-3bcf047da838d2462750cd55bba6db7d71b6c06a.zip u-boot-imx-3bcf047da838d2462750cd55bba6db7d71b6c06a.tar.gz u-boot-imx-3bcf047da838d2462750cd55bba6db7d71b6c06a.tar.bz2 |
powerpc/t4240rdb: Add alternate SerDes 2 protocol to align with RCW
SerDes 2 protocol 56 is not valid any longer due to
the new RCW; protocol 55 is used instead, so add
SerDes 2 protocol 55 to align with RCW.
Signed-off-by: Chunhe Lan <Chunhe.Lan@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'board/freescale/t4rdb/eth.c')
-rw-r--r-- | board/freescale/t4rdb/eth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/t4rdb/eth.c b/board/freescale/t4rdb/eth.c index 142c6a8..879bd1a 100644 --- a/board/freescale/t4rdb/eth.c +++ b/board/freescale/t4rdb/eth.c @@ -101,7 +101,7 @@ int board_eth_init(bd_t *bis) } #if (CONFIG_SYS_NUM_FMAN == 2) - if (srds_prtcl_s2 == 56) { + if ((srds_prtcl_s2 == 56) || (srds_prtcl_s2 == 55)) { /* SGMII && XFI */ fm_info_set_phy_address(FM2_DTSEC1, SGMII_PHY_ADDR5); fm_info_set_phy_address(FM2_DTSEC2, SGMII_PHY_ADDR6); |