[U-Boot] [PATCH] am335x: cpsw: make phy address configurable
yegorslists at googlemail.com
yegorslists at googlemail.com
Mon Nov 26 15:03:16 CET 2012
From: Yegor Yefremov <yegorslists at googlemail.com>
Signed-off-by: Yegor Yefremov <yegorslists at googlemail.com>
---
drivers/net/cpsw.c | 5 ++++-
include/configs/am335x_evm.h | 1 +
2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/drivers/net/cpsw.c b/drivers/net/cpsw.c
index af3d859..db04795 100644
--- a/drivers/net/cpsw.c
+++ b/drivers/net/cpsw.c
@@ -920,7 +920,10 @@ static int cpsw_phy_init(struct eth_device *dev, struct cpsw_slave *slave)
SUPPORTED_100baseT_Full |
SUPPORTED_1000baseT_Full);
- phydev = phy_connect(priv->bus, 0, dev, slave->data->phy_if);
+ phydev = phy_connect(priv->bus,
+ CONFIG_PHY_ADDR,
+ dev,
+ slave->data->phy_if);
phydev->supported &= supported;
phydev->advertising = phydev->supported;
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h
index b6e48f8..c49752e 100644
--- a/include/configs/am335x_evm.h
+++ b/include/configs/am335x_evm.h
@@ -272,6 +272,7 @@
#define CONFIG_NET_MULTI
#define CONFIG_PHY_GIGE
#define CONFIG_PHYLIB
+#define CONFIG_PHY_ADDR 0
#define CONFIG_PHY_SMSC
#endif /* ! __CONFIG_AM335X_EVM_H */
--
1.7.7
More information about the U-Boot
mailing list