Skip to content
Snippets Groups Projects
Commit 94af6842 authored by Codrin Ciubotariu's avatar Codrin Ciubotariu Committed by York Sun
Browse files

T104xD4RDB: Fix PHY address for PHY connected to FM1@DTSEC3


On T1040D4RDB board, u-boot fails to connect port FM1@DTSEC3 to
the Ethernet PHY because the wrong PHY address is used. Also,
T1040D4RDB supports SGMII on one port only.

Signed-off-by: default avatarCodrin Ciubotariu <codrin.ciubotariu@freescale.com>
Reviewed-by: default avatarYork Sun <yorksun@freescale.com>
parent bf50be83
No related branches found
No related tags found
No related merge requests found
......@@ -741,7 +741,9 @@ $(SRCTREE)/board/freescale/t104xrdb/t1042d4_rcw.cfg
#ifdef CONFIG_FMAN_ENET
#if defined(CONFIG_T1040RDB) || defined(CONFIG_T1042RDB)
#define CONFIG_SYS_SGMII1_PHY_ADDR 0x03
#elif defined(CONFIG_T1040D4RDB) || defined(CONFIG_T1042D4RDB)
#elif defined(CONFIG_T1040D4RDB)
#define CONFIG_SYS_SGMII1_PHY_ADDR 0x01
#elif defined(CONFIG_T1042D4RDB)
#define CONFIG_SYS_SGMII1_PHY_ADDR 0x02
#define CONFIG_SYS_SGMII2_PHY_ADDR 0x03
#define CONFIG_SYS_SGMII3_PHY_ADDR 0x01
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment