diff options
author | Tom Rini <trini@konsulko.com> | 2016-05-25 07:19:31 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-05-25 07:19:31 -0400 |
commit | 826d06dbdd0e29ab0d8bd76d1ca640e2dfdb076c (patch) | |
tree | 01a7f2b3f69119bb26e72040ae52f91e32d68adc /board | |
parent | fc15b9beed05dec6cc092c265042381a0eadb0e9 (diff) | |
parent | 8ef548d5f13e68e1b3975d9b68920bfa8bf09891 (diff) | |
download | u-boot-imx-826d06dbdd0e29ab0d8bd76d1ca640e2dfdb076c.zip u-boot-imx-826d06dbdd0e29ab0d8bd76d1ca640e2dfdb076c.tar.gz u-boot-imx-826d06dbdd0e29ab0d8bd76d1ca640e2dfdb076c.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/t208xqds/MAINTAINERS | 2 | ||||
-rw-r--r-- | board/freescale/t208xrdb/MAINTAINERS | 2 | ||||
-rw-r--r-- | board/freescale/t4rdb/eth.c | 5 |
3 files changed, 7 insertions, 2 deletions
diff --git a/board/freescale/t208xqds/MAINTAINERS b/board/freescale/t208xqds/MAINTAINERS index deda092..d747de3 100644 --- a/board/freescale/t208xqds/MAINTAINERS +++ b/board/freescale/t208xqds/MAINTAINERS @@ -1,5 +1,5 @@ T208XQDS BOARD -#M: - +M: Shengzhou Liu <Shengzhou.Liu@nxp.com> S: Maintained F: board/freescale/t208xqds/ F: include/configs/T208xQDS.h diff --git a/board/freescale/t208xrdb/MAINTAINERS b/board/freescale/t208xrdb/MAINTAINERS index 1642879..ccbfbab 100644 --- a/board/freescale/t208xrdb/MAINTAINERS +++ b/board/freescale/t208xrdb/MAINTAINERS @@ -1,5 +1,5 @@ T208XRDB BOARD -#M: - +M: Shengzhou Liu <Shengzhou.Liu@nxp.com> S: Maintained F: board/freescale/t208xrdb/ F: include/configs/T208xRDB.h diff --git a/board/freescale/t4rdb/eth.c b/board/freescale/t4rdb/eth.c index e563a61..ae2451e 100644 --- a/board/freescale/t4rdb/eth.c +++ b/board/freescale/t4rdb/eth.c @@ -77,6 +77,9 @@ int board_eth_init(bd_t *bis) puts("Invalid SerDes1 protocol for T4240RDB\n"); } + fm_disable_port(FM1_DTSEC5); + fm_disable_port(FM1_DTSEC6); + for (i = FM1_DTSEC1; i < FM1_DTSEC1 + CONFIG_SYS_NUM_FM1_DTSEC; i++) { interface = fm_info_get_enet_if(i); switch (interface) { @@ -115,6 +118,8 @@ int board_eth_init(bd_t *bis) puts("Invalid SerDes2 protocol for T4240RDB\n"); } + fm_disable_port(FM2_DTSEC5); + fm_disable_port(FM2_DTSEC6); for (i = FM2_DTSEC1; i < FM2_DTSEC1 + CONFIG_SYS_NUM_FM2_DTSEC; i++) { interface = fm_info_get_enet_if(i); switch (interface) { |