9
0
Fork 0

net smc911x: add support for external PHY

On LAN9115/LAN9117/LAN9215/LAN9217, external PHYs are supported.
Switch to external PHY based on hardware strap pin and/or override flags.
Also add a mask to platform data selecting external PHY address to be used.

Code based on linux/drivers/net/ethernet/smsc/smsc911x.c (fd9abb3d, d23f028a).

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Andreas Pretzsch 2012-11-08 00:25:03 +01:00 committed by Sascha Hauer
parent 5d1d1c65a6
commit ea26693b8f
2 changed files with 99 additions and 4 deletions

View File

@ -44,6 +44,10 @@ struct smc911x_priv {
int shift;
int generation;
unsigned int flags;
unsigned int idrev;
unsigned int using_extphy;
unsigned int phy_mask;
u32 (*reg_read)(struct smc911x_priv *priv, u32 reg);
void (*reg_write)(struct smc911x_priv *priv, u32 reg, u32 val);
@ -225,6 +229,60 @@ static int smc911x_phy_write(struct mii_bus *bus, int phy_addr,
return 0;
}
/* Switch to external phy. Assumes tx and rx are stopped. */
static void smsc911x_phy_enable_external(struct eth_device *edev)
{
struct smc911x_priv *priv = edev->priv;
u32 hwcfg = smc911x_reg_read(priv, HW_CFG);
/* Disable phy clocks to the MAC */
hwcfg &= (~HW_CFG_PHY_CLK_SEL);
hwcfg |= HW_CFG_PHY_CLK_SEL_CLK_DIS;
smc911x_reg_write(priv, HW_CFG, hwcfg);
udelay(10); /* Enough time for clocks to stop */
/* Switch to external phy */
hwcfg |= HW_CFG_EXT_PHY_EN;
smc911x_reg_write(priv, HW_CFG, hwcfg);
/* Enable phy clocks to the MAC */
hwcfg &= (~HW_CFG_PHY_CLK_SEL);
hwcfg |= HW_CFG_PHY_CLK_SEL_EXT_PHY;
smc911x_reg_write(priv, HW_CFG, hwcfg);
udelay(10); /* Enough time for clocks to restart */
/* Switch MDIO/MDC to external PHY */
hwcfg |= HW_CFG_SMI_SEL;
smc911x_reg_write(priv, HW_CFG, hwcfg);
}
/* Autodetects and enables external phy if present on supported chips.
* autodetection can be overridden by specifying SMC911X_FORCE_INTERNAL_PHY
* or SMC911X_FORCE_EXTERNAL_PHY in the platform_data flags. */
static void smsc911x_phy_initialise_external(struct eth_device *edev)
{
struct smc911x_priv *priv = edev->priv;
u32 hwcfg = smc911x_reg_read(priv, HW_CFG);
if (priv->flags & SMC911X_FORCE_INTERNAL_PHY) {
dev_info(edev->parent, "Forcing internal PHY\n");
priv->using_extphy = 0;
} else if (priv->flags & SMC911X_FORCE_EXTERNAL_PHY) {
dev_info(edev->parent, "Forcing external PHY\n");
smsc911x_phy_enable_external(edev);
priv->using_extphy = 1;
} else if (hwcfg & HW_CFG_EXT_PHY_DET) {
dev_info(edev->parent,
"HW_CFG EXT_PHY_DET set, using external PHY\n");
smsc911x_phy_enable_external(edev);
priv->using_extphy = 1;
} else {
dev_info(edev->parent,
"HW_CFG EXT_PHY_DET clear, using internal PHY\n");
priv->using_extphy = 0;
}
}
static int smc911x_phy_reset(struct eth_device *edev)
{
struct smc911x_priv *priv = edev->priv;
@ -284,14 +342,41 @@ static void smc911x_reset(struct eth_device *edev)
/* Set to LED outputs */
smc911x_reg_write(priv, GPIO_CFG, 0x70070000);
/* Select internal/external PHY */
switch (priv->idrev & 0xFFFF0000) {
case 0x01170000:
case 0x01150000:
case 0x117A0000:
case 0x115A0000:
/* External PHY supported, try to autodetect */
smsc911x_phy_initialise_external(edev);
break;
default:
dev_dbg(edev->parent, "External PHY is not supported, "
"using internal PHY\n");
priv->using_extphy = 0;
break;
}
if (!priv->using_extphy) {
/* Mask all PHYs except ID 1 (internal) */
priv->miibus.phy_mask = ~(1 << 1);
} else {
/* Mask PHYs as requested (or try all if mask is 0) */
/* Attn.: first probed PHY is used by phy_device_connect */
priv->miibus.phy_mask = priv->phy_mask;
}
}
static void smc911x_enable(struct eth_device *edev)
{
struct smc911x_priv *priv = edev->priv;
u32 hw_cfg_phy_settings;
/* Enable TX */
smc911x_reg_write(priv, HW_CFG, 8 << 16 | HW_CFG_SF);
hw_cfg_phy_settings = smc911x_reg_read(priv, HW_CFG) & (HW_CFG_PHY_CLK_SEL|HW_CFG_SMI_SEL|HW_CFG_EXT_PHY_EN);
smc911x_reg_write(priv, HW_CFG, 8 << 16 | HW_CFG_SF | hw_cfg_phy_settings);
smc911x_reg_write(priv, GPT_CFG, GPT_CFG_TIMER_EN | 10000);
@ -306,7 +391,8 @@ static int smc911x_eth_open(struct eth_device *edev)
struct smc911x_priv *priv = (struct smc911x_priv *)edev->priv;
int ret;
ret = phy_device_connect(edev, &priv->miibus, 1, NULL,
/* use first probed PHY (see also phy_mask) */
ret = phy_device_connect(edev, &priv->miibus, -1, NULL,
0, PHY_INTERFACE_MODE_NA);
if (ret)
return ret;
@ -426,8 +512,11 @@ static int smc911x_probe(struct device_d *dev)
is_32bit = is_32bit == IORESOURCE_MEM_32BIT;
priv->base = dev_request_mem_region(dev, 0);
if (pdata && pdata->shift)
if (pdata) {
priv->shift = pdata->shift;
priv->flags = pdata->flags;
priv->phy_mask = pdata->phy_mask;
}
if (is_32bit) {
if (priv->shift) {
@ -483,7 +572,7 @@ static int smc911x_probe(struct device_d *dev)
return -ENODEV;
}
val = smc911x_reg_read(priv, ID_REV);
priv->idrev = val = smc911x_reg_read(priv, ID_REV);
switch (val & 0xFFFF0000) {
case 0x01180000:
case 0x01170000:

View File

@ -13,6 +13,12 @@
*/
struct smc911x_plat {
int shift;
unsigned int flags;
unsigned int phy_mask; /* external PHY only: mask out PHYs,
e.g. ~(1 << 5) to use PHY addr 5 */
};
#define SMC911X_FORCE_INTERNAL_PHY 0x01
#define SMC911X_FORCE_EXTERNAL_PHY 0x02
#endif /* __SMC911X_PLATFORM_H_ */