From patchwork Mon Nov 26 14:03:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot] am335x: cpsw: make phy address configurable Date: Mon, 26 Nov 2012 04:03:16 -0000 From: Yegor Yefremov X-Patchwork-Id: 201707 Message-Id: <1353938596-3240-1-git-send-email-yegorslists@googlemail.com> To: u-boot@lists.denx.de Cc: trini@ti.com, hvaibhav@ti.com From: Yegor Yefremov Signed-off-by: Yegor Yefremov --- 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 */