diff options
author | Priyanka Jain <Priyanka.Jain@freescale.com> | 2014-01-30 11:30:04 +0530 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-02-03 08:38:49 -0800 |
commit | 714fd406daab6a98b2ee8d301c4888c113fdd818 (patch) | |
tree | f2e6e4177187130793f40459cb47971c691516ce /include/configs/T1040RDB.h | |
parent | a4f7cba64e1f7b61b174c3cc480f389b002a0ff8 (diff) | |
download | u-boot-imx-714fd406daab6a98b2ee8d301c4888c113fdd818.zip u-boot-imx-714fd406daab6a98b2ee8d301c4888c113fdd818.tar.gz u-boot-imx-714fd406daab6a98b2ee8d301c4888c113fdd818.tar.bz2 |
powerpc/t104xrdb: Add basic ethernet support
This covers only non-L2 switch ethernet interfaces i.e.
RGMII and SGMII interface for both T1040RDB and T1042RDB_PI
T1040RDB is configured as serdes protocol 0x66 which can
support following interfaces
2 RGMIIS on DTSEC4, DTSEC5
1 SGMII on DTSEC3
T1042RDB_PI is configured as serdes protocol 0x06 which can
support following interfaces
2 RGMIIS on DTSEC4, DTSEC5
Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
Signed-off-by: Priyanka Jain <Priyanka.Jain@freescale.com>
[York Sun: Minor change in commit message]
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include/configs/T1040RDB.h')
-rw-r--r-- | include/configs/T1040RDB.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/configs/T1040RDB.h b/include/configs/T1040RDB.h index 611b95c..7cfda50 100644 --- a/include/configs/T1040RDB.h +++ b/include/configs/T1040RDB.h @@ -544,13 +544,12 @@ #endif #ifdef CONFIG_FMAN_ENET -#define CONFIG_SYS_FM1_DTSEC1_RISER_PHY_ADDR 0x1c -#define CONFIG_SYS_FM1_DTSEC2_RISER_PHY_ADDR 0x1d -#define CONFIG_SYS_FM1_DTSEC3_RISER_PHY_ADDR 0x1e -#define CONFIG_SYS_FM1_DTSEC4_RISER_PHY_ADDR 0x1f +#define CONFIG_SYS_SGMII1_PHY_ADDR 0x03 +#define CONFIG_SYS_RGMII1_PHY_ADDR 0x01 +#define CONFIG_SYS_RGMII2_PHY_ADDR 0x02 #define CONFIG_MII /* MII PHY management */ -#define CONFIG_ETHPRIME "FM1@DTSEC1" +#define CONFIG_ETHPRIME "FM1@DTSEC4" #define CONFIG_PHY_GIGE /* Include GbE speed/duplex detection */ #endif |