2019-01-21 18:05:50 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2010-04-29 06:12:41 +00:00
|
|
|
/*
|
|
|
|
* drivers/net/phy/micrel.c
|
|
|
|
*
|
|
|
|
* Driver for Micrel PHYs
|
|
|
|
*
|
|
|
|
* Author: David J. Choi
|
|
|
|
*
|
2013-01-23 14:05:15 +00:00
|
|
|
* Copyright (c) 2010-2013 Micrel, Inc.
|
2014-11-19 11:59:23 +00:00
|
|
|
* Copyright (c) 2014 Johan Hovold <johan@kernel.org>
|
2010-04-29 06:12:41 +00:00
|
|
|
*
|
2013-01-23 14:05:15 +00:00
|
|
|
* Support : Micrel Phys:
|
2018-10-18 19:06:01 +00:00
|
|
|
* Giga phys: ksz9021, ksz9031, ksz9131
|
2013-01-23 14:05:15 +00:00
|
|
|
* 100/10 Phys : ksz8001, ksz8721, ksz8737, ksz8041
|
|
|
|
* ksz8021, ksz8031, ksz8051,
|
|
|
|
* ksz8081, ksz8091,
|
|
|
|
* ksz8061,
|
|
|
|
* Switch : ksz8873, ksz886x
|
2017-05-31 20:19:13 +00:00
|
|
|
* ksz9477
|
2010-04-29 06:12:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/phy.h>
|
2011-02-14 02:05:33 +00:00
|
|
|
#include <linux/micrel_phy.h>
|
2013-08-21 01:46:12 +00:00
|
|
|
#include <linux/of.h>
|
2014-10-10 07:48:05 +00:00
|
|
|
#include <linux/clk.h>
|
2010-04-29 06:12:41 +00:00
|
|
|
|
2012-09-23 16:58:49 +00:00
|
|
|
/* Operation Mode Strap Override */
|
|
|
|
#define MII_KSZPHY_OMSO 0x16
|
2014-11-11 19:00:09 +00:00
|
|
|
#define KSZPHY_OMSO_B_CAST_OFF BIT(9)
|
2015-02-13 20:35:33 +00:00
|
|
|
#define KSZPHY_OMSO_NAND_TREE_ON BIT(5)
|
2014-11-11 19:00:09 +00:00
|
|
|
#define KSZPHY_OMSO_RMII_OVERRIDE BIT(1)
|
|
|
|
#define KSZPHY_OMSO_MII_OVERRIDE BIT(0)
|
2012-09-23 16:58:49 +00:00
|
|
|
|
2010-06-28 15:23:41 +00:00
|
|
|
/* general Interrupt control/status reg in vendor specific block. */
|
|
|
|
#define MII_KSZPHY_INTCS 0x1B
|
2014-11-11 19:00:09 +00:00
|
|
|
#define KSZPHY_INTCS_JABBER BIT(15)
|
|
|
|
#define KSZPHY_INTCS_RECEIVE_ERR BIT(14)
|
|
|
|
#define KSZPHY_INTCS_PAGE_RECEIVE BIT(13)
|
|
|
|
#define KSZPHY_INTCS_PARELLEL BIT(12)
|
|
|
|
#define KSZPHY_INTCS_LINK_PARTNER_ACK BIT(11)
|
|
|
|
#define KSZPHY_INTCS_LINK_DOWN BIT(10)
|
|
|
|
#define KSZPHY_INTCS_REMOTE_FAULT BIT(9)
|
|
|
|
#define KSZPHY_INTCS_LINK_UP BIT(8)
|
2010-06-28 15:23:41 +00:00
|
|
|
#define KSZPHY_INTCS_ALL (KSZPHY_INTCS_LINK_UP |\
|
|
|
|
KSZPHY_INTCS_LINK_DOWN)
|
|
|
|
|
2014-11-11 19:00:14 +00:00
|
|
|
/* PHY Control 1 */
|
|
|
|
#define MII_KSZPHY_CTRL_1 0x1e
|
|
|
|
|
|
|
|
/* PHY Control 2 / PHY Control (if no PHY Control 1) */
|
|
|
|
#define MII_KSZPHY_CTRL_2 0x1f
|
|
|
|
#define MII_KSZPHY_CTRL MII_KSZPHY_CTRL_2
|
2010-06-28 15:23:41 +00:00
|
|
|
/* bitmap of PHY register to set interrupt mode */
|
2014-11-11 19:00:09 +00:00
|
|
|
#define KSZPHY_CTRL_INT_ACTIVE_HIGH BIT(9)
|
2014-11-19 11:59:18 +00:00
|
|
|
#define KSZPHY_RMII_REF_CLK_SEL BIT(7)
|
2010-06-28 15:23:41 +00:00
|
|
|
|
2013-08-21 01:46:12 +00:00
|
|
|
/* Write/read to/from extended registers */
|
|
|
|
#define MII_KSZPHY_EXTREG 0x0b
|
|
|
|
#define KSZPHY_EXTREG_WRITE 0x8000
|
|
|
|
|
|
|
|
#define MII_KSZPHY_EXTREG_WRITE 0x0c
|
|
|
|
#define MII_KSZPHY_EXTREG_READ 0x0d
|
|
|
|
|
|
|
|
/* Extended registers */
|
|
|
|
#define MII_KSZPHY_CLK_CONTROL_PAD_SKEW 0x104
|
|
|
|
#define MII_KSZPHY_RX_DATA_PAD_SKEW 0x105
|
|
|
|
#define MII_KSZPHY_TX_DATA_PAD_SKEW 0x106
|
|
|
|
|
|
|
|
#define PS_TO_REG 200
|
|
|
|
|
2015-12-30 15:28:27 +00:00
|
|
|
struct kszphy_hw_stat {
|
|
|
|
const char *string;
|
|
|
|
u8 reg;
|
|
|
|
u8 bits;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct kszphy_hw_stat kszphy_hw_stats[] = {
|
|
|
|
{ "phy_receive_errors", 21, 16},
|
|
|
|
{ "phy_idle_errors", 10, 8 },
|
|
|
|
};
|
|
|
|
|
2014-11-19 11:59:15 +00:00
|
|
|
struct kszphy_type {
|
|
|
|
u32 led_mode_reg;
|
2014-11-19 11:59:22 +00:00
|
|
|
u16 interrupt_level_mask;
|
2014-11-19 11:59:17 +00:00
|
|
|
bool has_broadcast_disable;
|
2015-02-13 20:35:33 +00:00
|
|
|
bool has_nand_tree_disable;
|
2014-11-19 11:59:18 +00:00
|
|
|
bool has_rmii_ref_clk_sel;
|
2014-11-19 11:59:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct kszphy_priv {
|
|
|
|
const struct kszphy_type *type;
|
2014-11-19 11:59:16 +00:00
|
|
|
int led_mode;
|
2014-11-19 11:59:18 +00:00
|
|
|
bool rmii_ref_clk_sel;
|
|
|
|
bool rmii_ref_clk_sel_val;
|
2015-12-30 15:28:27 +00:00
|
|
|
u64 stats[ARRAY_SIZE(kszphy_hw_stats)];
|
2014-11-19 11:59:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct kszphy_type ksz8021_type = {
|
|
|
|
.led_mode_reg = MII_KSZPHY_CTRL_2,
|
2014-12-23 11:59:17 +00:00
|
|
|
.has_broadcast_disable = true,
|
2015-02-13 20:35:33 +00:00
|
|
|
.has_nand_tree_disable = true,
|
2014-11-19 11:59:18 +00:00
|
|
|
.has_rmii_ref_clk_sel = true,
|
2014-11-19 11:59:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct kszphy_type ksz8041_type = {
|
|
|
|
.led_mode_reg = MII_KSZPHY_CTRL_1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct kszphy_type ksz8051_type = {
|
|
|
|
.led_mode_reg = MII_KSZPHY_CTRL_2,
|
2015-02-13 20:35:33 +00:00
|
|
|
.has_nand_tree_disable = true,
|
2014-11-19 11:59:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct kszphy_type ksz8081_type = {
|
|
|
|
.led_mode_reg = MII_KSZPHY_CTRL_2,
|
2014-11-19 11:59:17 +00:00
|
|
|
.has_broadcast_disable = true,
|
2015-02-13 20:35:33 +00:00
|
|
|
.has_nand_tree_disable = true,
|
2014-11-19 11:59:19 +00:00
|
|
|
.has_rmii_ref_clk_sel = true,
|
2014-11-19 11:59:15 +00:00
|
|
|
};
|
|
|
|
|
2014-11-19 11:59:22 +00:00
|
|
|
static const struct kszphy_type ks8737_type = {
|
|
|
|
.interrupt_level_mask = BIT(14),
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct kszphy_type ksz9021_type = {
|
|
|
|
.interrupt_level_mask = BIT(14),
|
|
|
|
};
|
|
|
|
|
2013-08-21 01:46:12 +00:00
|
|
|
static int kszphy_extended_write(struct phy_device *phydev,
|
2013-12-18 05:38:11 +00:00
|
|
|
u32 regnum, u16 val)
|
2013-08-21 01:46:12 +00:00
|
|
|
{
|
|
|
|
phy_write(phydev, MII_KSZPHY_EXTREG, KSZPHY_EXTREG_WRITE | regnum);
|
|
|
|
return phy_write(phydev, MII_KSZPHY_EXTREG_WRITE, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kszphy_extended_read(struct phy_device *phydev,
|
2013-12-18 05:38:11 +00:00
|
|
|
u32 regnum)
|
2013-08-21 01:46:12 +00:00
|
|
|
{
|
|
|
|
phy_write(phydev, MII_KSZPHY_EXTREG, regnum);
|
|
|
|
return phy_read(phydev, MII_KSZPHY_EXTREG_READ);
|
|
|
|
}
|
|
|
|
|
2010-06-28 15:23:41 +00:00
|
|
|
static int kszphy_ack_interrupt(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
/* bit[7..0] int status, which is a read and clear register. */
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = phy_read(phydev, MII_KSZPHY_INTCS);
|
|
|
|
|
|
|
|
return (rc < 0) ? rc : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kszphy_config_intr(struct phy_device *phydev)
|
|
|
|
{
|
2014-11-19 11:59:22 +00:00
|
|
|
const struct kszphy_type *type = phydev->drv->driver_data;
|
|
|
|
int temp;
|
|
|
|
u16 mask;
|
2010-06-28 15:23:41 +00:00
|
|
|
|
2014-11-19 11:59:22 +00:00
|
|
|
if (type && type->interrupt_level_mask)
|
|
|
|
mask = type->interrupt_level_mask;
|
|
|
|
else
|
|
|
|
mask = KSZPHY_CTRL_INT_ACTIVE_HIGH;
|
2010-06-28 15:23:41 +00:00
|
|
|
|
|
|
|
/* set the interrupt pin active low */
|
|
|
|
temp = phy_read(phydev, MII_KSZPHY_CTRL);
|
2014-11-11 19:00:08 +00:00
|
|
|
if (temp < 0)
|
|
|
|
return temp;
|
2014-11-19 11:59:22 +00:00
|
|
|
temp &= ~mask;
|
2010-06-28 15:23:41 +00:00
|
|
|
phy_write(phydev, MII_KSZPHY_CTRL, temp);
|
|
|
|
|
2014-11-19 11:59:22 +00:00
|
|
|
/* enable / disable interrupts */
|
|
|
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
|
|
|
|
temp = KSZPHY_INTCS_ALL;
|
|
|
|
else
|
|
|
|
temp = 0;
|
2010-06-28 15:23:41 +00:00
|
|
|
|
2014-11-19 11:59:22 +00:00
|
|
|
return phy_write(phydev, MII_KSZPHY_INTCS, temp);
|
2010-06-28 15:23:41 +00:00
|
|
|
}
|
2010-04-29 06:12:41 +00:00
|
|
|
|
2014-11-19 11:59:18 +00:00
|
|
|
static int kszphy_rmii_clk_sel(struct phy_device *phydev, bool val)
|
|
|
|
{
|
|
|
|
int ctrl;
|
|
|
|
|
|
|
|
ctrl = phy_read(phydev, MII_KSZPHY_CTRL);
|
|
|
|
if (ctrl < 0)
|
|
|
|
return ctrl;
|
|
|
|
|
|
|
|
if (val)
|
|
|
|
ctrl |= KSZPHY_RMII_REF_CLK_SEL;
|
|
|
|
else
|
|
|
|
ctrl &= ~KSZPHY_RMII_REF_CLK_SEL;
|
|
|
|
|
|
|
|
return phy_write(phydev, MII_KSZPHY_CTRL, ctrl);
|
|
|
|
}
|
|
|
|
|
2014-11-19 11:59:16 +00:00
|
|
|
static int kszphy_setup_led(struct phy_device *phydev, u32 reg, int val)
|
2014-02-26 11:48:00 +00:00
|
|
|
{
|
2014-11-11 19:00:14 +00:00
|
|
|
int rc, temp, shift;
|
2014-11-11 19:00:12 +00:00
|
|
|
|
2014-11-11 19:00:14 +00:00
|
|
|
switch (reg) {
|
|
|
|
case MII_KSZPHY_CTRL_1:
|
|
|
|
shift = 14;
|
|
|
|
break;
|
|
|
|
case MII_KSZPHY_CTRL_2:
|
|
|
|
shift = 4;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2014-02-26 11:48:00 +00:00
|
|
|
temp = phy_read(phydev, reg);
|
2014-11-11 19:00:13 +00:00
|
|
|
if (temp < 0) {
|
|
|
|
rc = temp;
|
|
|
|
goto out;
|
|
|
|
}
|
2014-02-26 11:48:00 +00:00
|
|
|
|
2014-03-18 23:58:16 +00:00
|
|
|
temp &= ~(3 << shift);
|
2014-02-26 11:48:00 +00:00
|
|
|
temp |= val << shift;
|
|
|
|
rc = phy_write(phydev, reg, temp);
|
2014-11-11 19:00:13 +00:00
|
|
|
out:
|
|
|
|
if (rc < 0)
|
2016-01-06 19:11:09 +00:00
|
|
|
phydev_err(phydev, "failed to set led mode\n");
|
2014-02-26 11:48:00 +00:00
|
|
|
|
2014-11-11 19:00:13 +00:00
|
|
|
return rc;
|
2014-02-26 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
2014-11-11 19:00:10 +00:00
|
|
|
/* Disable PHY address 0 as the broadcast address, so that it can be used as a
|
|
|
|
* unique (non-broadcast) address on a shared bus.
|
|
|
|
*/
|
|
|
|
static int kszphy_broadcast_disable(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = phy_read(phydev, MII_KSZPHY_OMSO);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret = phy_write(phydev, MII_KSZPHY_OMSO, ret | KSZPHY_OMSO_B_CAST_OFF);
|
|
|
|
out:
|
|
|
|
if (ret)
|
2016-01-06 19:11:09 +00:00
|
|
|
phydev_err(phydev, "failed to disable broadcast address\n");
|
2014-11-11 19:00:10 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-02-13 20:35:33 +00:00
|
|
|
static int kszphy_nand_tree_disable(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = phy_read(phydev, MII_KSZPHY_OMSO);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!(ret & KSZPHY_OMSO_NAND_TREE_ON))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = phy_write(phydev, MII_KSZPHY_OMSO,
|
|
|
|
ret & ~KSZPHY_OMSO_NAND_TREE_ON);
|
|
|
|
out:
|
|
|
|
if (ret)
|
2016-01-06 19:11:09 +00:00
|
|
|
phydev_err(phydev, "failed to disable NAND tree mode\n");
|
2015-02-13 20:35:33 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-05-31 10:29:30 +00:00
|
|
|
/* Some config bits need to be set again on resume, handle them here. */
|
|
|
|
static int kszphy_config_reset(struct phy_device *phydev)
|
2010-04-29 06:12:41 +00:00
|
|
|
{
|
2014-11-19 11:59:15 +00:00
|
|
|
struct kszphy_priv *priv = phydev->priv;
|
2014-11-19 11:59:18 +00:00
|
|
|
int ret;
|
2010-04-29 06:12:41 +00:00
|
|
|
|
2014-11-19 11:59:18 +00:00
|
|
|
if (priv->rmii_ref_clk_sel) {
|
|
|
|
ret = kszphy_rmii_clk_sel(phydev, priv->rmii_ref_clk_sel_val);
|
|
|
|
if (ret) {
|
2016-01-06 19:11:09 +00:00
|
|
|
phydev_err(phydev,
|
|
|
|
"failed to set rmii reference clock\n");
|
2014-11-19 11:59:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-19 11:59:16 +00:00
|
|
|
if (priv->led_mode >= 0)
|
2017-05-31 10:29:30 +00:00
|
|
|
kszphy_setup_led(phydev, priv->type->led_mode_reg, priv->led_mode);
|
2014-11-19 11:59:15 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-02-26 11:48:00 +00:00
|
|
|
}
|
|
|
|
|
2017-05-31 10:29:30 +00:00
|
|
|
static int kszphy_config_init(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
struct kszphy_priv *priv = phydev->priv;
|
|
|
|
const struct kszphy_type *type;
|
|
|
|
|
|
|
|
if (!priv)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
type = priv->type;
|
|
|
|
|
|
|
|
if (type->has_broadcast_disable)
|
|
|
|
kszphy_broadcast_disable(phydev);
|
|
|
|
|
|
|
|
if (type->has_nand_tree_disable)
|
|
|
|
kszphy_nand_tree_disable(phydev);
|
|
|
|
|
|
|
|
return kszphy_config_reset(phydev);
|
|
|
|
}
|
|
|
|
|
2016-07-14 14:29:43 +00:00
|
|
|
static int ksz8041_config_init(struct phy_device *phydev)
|
|
|
|
{
|
2018-11-10 22:43:33 +00:00
|
|
|
__ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
|
|
|
|
|
2016-07-14 14:29:43 +00:00
|
|
|
struct device_node *of_node = phydev->mdio.dev.of_node;
|
|
|
|
|
|
|
|
/* Limit supported and advertised modes in fiber mode */
|
|
|
|
if (of_property_read_bool(of_node, "micrel,fiber-mode")) {
|
|
|
|
phydev->dev_flags |= MICREL_PHY_FXEN;
|
2018-11-10 22:43:33 +00:00
|
|
|
linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, mask);
|
|
|
|
linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, mask);
|
|
|
|
|
|
|
|
linkmode_and(phydev->supported, phydev->supported, mask);
|
|
|
|
linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
|
|
|
|
phydev->supported);
|
|
|
|
linkmode_and(phydev->advertising, phydev->advertising, mask);
|
|
|
|
linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
|
|
|
|
phydev->advertising);
|
2016-07-14 14:29:43 +00:00
|
|
|
phydev->autoneg = AUTONEG_DISABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return kszphy_config_init(phydev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ksz8041_config_aneg(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
/* Skip auto-negotiation in fiber mode */
|
|
|
|
if (phydev->dev_flags & MICREL_PHY_FXEN) {
|
|
|
|
phydev->speed = SPEED_100;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return genphy_config_aneg(phydev);
|
|
|
|
}
|
|
|
|
|
net: phy: Micrel KSZ8061: link failure after cable connect
With Micrel KSZ8061 PHY, the link may occasionally not come up after
Ethernet cable connect. The vendor's (Microchip, former Micrel) errata
sheet 80000688A.pdf descripes the problem and possible workarounds in
detail, see below.
The batch implements workaround 1, which permanently fixes the issue.
DESCRIPTION
Link-up may not occur properly when the Ethernet cable is initially
connected. This issue occurs more commonly when the cable is connected
slowly, but it may occur any time a cable is connected. This issue occurs
in the auto-negotiation circuit, and will not occur if auto-negotiation
is disabled (which requires that the two link partners be set to the
same speed and duplex).
END USER IMPLICATIONS
When this issue occurs, link is not established. Subsequent cable
plug/unplaug cycle will not correct the issue.
WORk AROUND
There are four approaches to work around this issue:
1. This issue can be prevented by setting bit 15 in MMD device address 1,
register 2, prior to connecting the cable or prior to setting the
Restart Auto-negotiation bit in register 0h. The MMD registers are
accessed via the indirect access registers Dh and Eh, or via the Micrel
EthUtil utility as shown here:
. if using the EthUtil utility (usually with a Micrel KSZ8061
Evaluation Board), type the following commands:
> address 1
> mmd 1
> iw 2 b61a
. Alternatively, write the following registers to write to the
indirect MMD register:
Write register Dh, data 0001h
Write register Eh, data 0002h
Write register Dh, data 4001h
Write register Eh, data B61Ah
2. The issue can be avoided by disabling auto-negotiation in the KSZ8061,
either by the strapping option, or by clearing bit 12 in register 0h.
Care must be taken to ensure that the KSZ8061 and the link partner
will link with the same speed and duplex. Note that the KSZ8061
defaults to full-duplex when auto-negotiation is off, but other
devices may default to half-duplex in the event of failed
auto-negotiation.
3. The issue can be avoided by connecting the cable prior to powering-up
or resetting the KSZ8061, and leaving it plugged in thereafter.
4. If the above measures are not taken and the problem occurs, link can
be recovered by setting the Restart Auto-Negotiation bit in
register 0h, or by resetting or power cycling the device. Reset may
be either hardware reset or software reset (register 0h, bit 15).
PLAN
This errata will not be corrected in the future revision.
Fixes: 7ab59dc15e2f ("drivers/net/phy/micrel_phy: Add support for new PHYs")
Signed-off-by: Alexander Onnasch <alexander.onnasch@landisgyr.com>
Signed-off-by: Rajasingh Thavamani <T.Rajasingh@landisgyr.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-27 12:13:19 +00:00
|
|
|
static int ksz8061_config_init(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = phy_write_mmd(phydev, MDIO_MMD_PMAPMD, MDIO_DEVID1, 0xB61A);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return kszphy_config_init(phydev);
|
|
|
|
}
|
|
|
|
|
2013-08-21 01:46:12 +00:00
|
|
|
static int ksz9021_load_values_from_of(struct phy_device *phydev,
|
2015-06-05 23:00:24 +00:00
|
|
|
const struct device_node *of_node,
|
|
|
|
u16 reg,
|
|
|
|
const char *field1, const char *field2,
|
|
|
|
const char *field3, const char *field4)
|
2013-08-21 01:46:12 +00:00
|
|
|
{
|
|
|
|
int val1 = -1;
|
|
|
|
int val2 = -2;
|
|
|
|
int val3 = -3;
|
|
|
|
int val4 = -4;
|
|
|
|
int newval;
|
|
|
|
int matches = 0;
|
|
|
|
|
|
|
|
if (!of_property_read_u32(of_node, field1, &val1))
|
|
|
|
matches++;
|
|
|
|
|
|
|
|
if (!of_property_read_u32(of_node, field2, &val2))
|
|
|
|
matches++;
|
|
|
|
|
|
|
|
if (!of_property_read_u32(of_node, field3, &val3))
|
|
|
|
matches++;
|
|
|
|
|
|
|
|
if (!of_property_read_u32(of_node, field4, &val4))
|
|
|
|
matches++;
|
|
|
|
|
|
|
|
if (!matches)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (matches < 4)
|
|
|
|
newval = kszphy_extended_read(phydev, reg);
|
|
|
|
else
|
|
|
|
newval = 0;
|
|
|
|
|
|
|
|
if (val1 != -1)
|
|
|
|
newval = ((newval & 0xfff0) | ((val1 / PS_TO_REG) & 0xf) << 0);
|
|
|
|
|
2014-04-22 13:01:04 +00:00
|
|
|
if (val2 != -2)
|
2013-08-21 01:46:12 +00:00
|
|
|
newval = ((newval & 0xff0f) | ((val2 / PS_TO_REG) & 0xf) << 4);
|
|
|
|
|
2014-04-22 13:01:04 +00:00
|
|
|
if (val3 != -3)
|
2013-08-21 01:46:12 +00:00
|
|
|
newval = ((newval & 0xf0ff) | ((val3 / PS_TO_REG) & 0xf) << 8);
|
|
|
|
|
2014-04-22 13:01:04 +00:00
|
|
|
if (val4 != -4)
|
2013-08-21 01:46:12 +00:00
|
|
|
newval = ((newval & 0x0fff) | ((val4 / PS_TO_REG) & 0xf) << 12);
|
|
|
|
|
|
|
|
return kszphy_extended_write(phydev, reg, newval);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ksz9021_config_init(struct phy_device *phydev)
|
|
|
|
{
|
2016-01-06 19:11:16 +00:00
|
|
|
const struct device *dev = &phydev->mdio.dev;
|
2015-06-05 23:00:24 +00:00
|
|
|
const struct device_node *of_node = dev->of_node;
|
2015-12-09 18:56:31 +00:00
|
|
|
const struct device *dev_walker;
|
|
|
|
|
|
|
|
/* The Micrel driver has a deprecated option to place phy OF
|
|
|
|
* properties in the MAC node. Walk up the tree of devices to
|
|
|
|
* find a device with an OF node.
|
|
|
|
*/
|
2016-01-06 19:11:16 +00:00
|
|
|
dev_walker = &phydev->mdio.dev;
|
2015-12-09 18:56:31 +00:00
|
|
|
do {
|
|
|
|
of_node = dev_walker->of_node;
|
|
|
|
dev_walker = dev_walker->parent;
|
|
|
|
|
|
|
|
} while (!of_node && dev_walker);
|
2013-08-21 01:46:12 +00:00
|
|
|
|
|
|
|
if (of_node) {
|
|
|
|
ksz9021_load_values_from_of(phydev, of_node,
|
|
|
|
MII_KSZPHY_CLK_CONTROL_PAD_SKEW,
|
|
|
|
"txen-skew-ps", "txc-skew-ps",
|
|
|
|
"rxdv-skew-ps", "rxc-skew-ps");
|
|
|
|
ksz9021_load_values_from_of(phydev, of_node,
|
|
|
|
MII_KSZPHY_RX_DATA_PAD_SKEW,
|
|
|
|
"rxd0-skew-ps", "rxd1-skew-ps",
|
|
|
|
"rxd2-skew-ps", "rxd3-skew-ps");
|
|
|
|
ksz9021_load_values_from_of(phydev, of_node,
|
|
|
|
MII_KSZPHY_TX_DATA_PAD_SKEW,
|
|
|
|
"txd0-skew-ps", "txd1-skew-ps",
|
|
|
|
"txd2-skew-ps", "txd3-skew-ps");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-06 07:40:17 +00:00
|
|
|
#define KSZ9031_PS_TO_REG 60
|
|
|
|
|
|
|
|
/* Extended registers */
|
2015-06-05 23:00:26 +00:00
|
|
|
/* MMD Address 0x0 */
|
|
|
|
#define MII_KSZ9031RN_FLP_BURST_TX_LO 3
|
|
|
|
#define MII_KSZ9031RN_FLP_BURST_TX_HI 4
|
|
|
|
|
2015-06-05 23:00:25 +00:00
|
|
|
/* MMD Address 0x2 */
|
2014-05-06 07:40:17 +00:00
|
|
|
#define MII_KSZ9031RN_CONTROL_PAD_SKEW 4
|
|
|
|
#define MII_KSZ9031RN_RX_DATA_PAD_SKEW 5
|
|
|
|
#define MII_KSZ9031RN_TX_DATA_PAD_SKEW 6
|
|
|
|
#define MII_KSZ9031RN_CLK_PAD_SKEW 8
|
|
|
|
|
2016-10-04 05:52:04 +00:00
|
|
|
/* MMD Address 0x1C */
|
|
|
|
#define MII_KSZ9031RN_EDPD 0x23
|
|
|
|
#define MII_KSZ9031RN_EDPD_ENABLE BIT(0)
|
|
|
|
|
2014-05-06 07:40:17 +00:00
|
|
|
static int ksz9031_of_load_skew_values(struct phy_device *phydev,
|
2015-06-05 23:00:24 +00:00
|
|
|
const struct device_node *of_node,
|
2014-05-06 07:40:17 +00:00
|
|
|
u16 reg, size_t field_sz,
|
2015-06-05 23:00:24 +00:00
|
|
|
const char *field[], u8 numfields)
|
2014-05-06 07:40:17 +00:00
|
|
|
{
|
|
|
|
int val[4] = {-1, -2, -3, -4};
|
|
|
|
int matches = 0;
|
|
|
|
u16 mask;
|
|
|
|
u16 maxval;
|
|
|
|
u16 newval;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < numfields; i++)
|
|
|
|
if (!of_property_read_u32(of_node, field[i], val + i))
|
|
|
|
matches++;
|
|
|
|
|
|
|
|
if (!matches)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (matches < numfields)
|
2019-01-16 20:52:22 +00:00
|
|
|
newval = phy_read_mmd(phydev, 2, reg);
|
2014-05-06 07:40:17 +00:00
|
|
|
else
|
|
|
|
newval = 0;
|
|
|
|
|
|
|
|
maxval = (field_sz == 4) ? 0xf : 0x1f;
|
|
|
|
for (i = 0; i < numfields; i++)
|
|
|
|
if (val[i] != -(i + 1)) {
|
|
|
|
mask = 0xffff;
|
|
|
|
mask ^= maxval << (field_sz * i);
|
|
|
|
newval = (newval & mask) |
|
|
|
|
(((val[i] / KSZ9031_PS_TO_REG) & maxval)
|
|
|
|
<< (field_sz * i));
|
|
|
|
}
|
|
|
|
|
2019-01-16 20:52:22 +00:00
|
|
|
return phy_write_mmd(phydev, 2, reg, newval);
|
2014-05-06 07:40:17 +00:00
|
|
|
}
|
|
|
|
|
2017-11-30 10:08:29 +00:00
|
|
|
/* Center KSZ9031RNX FLP timing at 16ms. */
|
2015-06-05 23:00:26 +00:00
|
|
|
static int ksz9031_center_flp_timing(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
2019-01-16 20:52:22 +00:00
|
|
|
result = phy_write_mmd(phydev, 0, MII_KSZ9031RN_FLP_BURST_TX_HI,
|
|
|
|
0x0006);
|
2017-11-30 10:08:29 +00:00
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2019-01-16 20:52:22 +00:00
|
|
|
result = phy_write_mmd(phydev, 0, MII_KSZ9031RN_FLP_BURST_TX_LO,
|
|
|
|
0x1A80);
|
2015-06-05 23:00:26 +00:00
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
return genphy_restart_aneg(phydev);
|
|
|
|
}
|
|
|
|
|
2016-10-04 05:52:04 +00:00
|
|
|
/* Enable energy-detect power-down mode */
|
|
|
|
static int ksz9031_enable_edpd(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int reg;
|
|
|
|
|
2019-01-16 20:52:22 +00:00
|
|
|
reg = phy_read_mmd(phydev, 0x1C, MII_KSZ9031RN_EDPD);
|
2016-10-04 05:52:04 +00:00
|
|
|
if (reg < 0)
|
|
|
|
return reg;
|
2019-01-16 20:52:22 +00:00
|
|
|
return phy_write_mmd(phydev, 0x1C, MII_KSZ9031RN_EDPD,
|
|
|
|
reg | MII_KSZ9031RN_EDPD_ENABLE);
|
2016-10-04 05:52:04 +00:00
|
|
|
}
|
|
|
|
|
2014-05-06 07:40:17 +00:00
|
|
|
static int ksz9031_config_init(struct phy_device *phydev)
|
|
|
|
{
|
2016-01-06 19:11:16 +00:00
|
|
|
const struct device *dev = &phydev->mdio.dev;
|
2015-06-05 23:00:24 +00:00
|
|
|
const struct device_node *of_node = dev->of_node;
|
|
|
|
static const char *clk_skews[2] = {"rxc-skew-ps", "txc-skew-ps"};
|
|
|
|
static const char *rx_data_skews[4] = {
|
2014-05-06 07:40:17 +00:00
|
|
|
"rxd0-skew-ps", "rxd1-skew-ps",
|
|
|
|
"rxd2-skew-ps", "rxd3-skew-ps"
|
|
|
|
};
|
2015-06-05 23:00:24 +00:00
|
|
|
static const char *tx_data_skews[4] = {
|
2014-05-06 07:40:17 +00:00
|
|
|
"txd0-skew-ps", "txd1-skew-ps",
|
|
|
|
"txd2-skew-ps", "txd3-skew-ps"
|
|
|
|
};
|
2015-06-05 23:00:24 +00:00
|
|
|
static const char *control_skews[2] = {"txen-skew-ps", "rxdv-skew-ps"};
|
2016-01-07 08:31:15 +00:00
|
|
|
const struct device *dev_walker;
|
2016-10-04 05:52:04 +00:00
|
|
|
int result;
|
|
|
|
|
|
|
|
result = ksz9031_enable_edpd(phydev);
|
|
|
|
if (result < 0)
|
|
|
|
return result;
|
2014-05-06 07:40:17 +00:00
|
|
|
|
2016-01-07 08:31:15 +00:00
|
|
|
/* The Micrel driver has a deprecated option to place phy OF
|
|
|
|
* properties in the MAC node. Walk up the tree of devices to
|
|
|
|
* find a device with an OF node.
|
|
|
|
*/
|
2016-01-12 04:55:43 +00:00
|
|
|
dev_walker = &phydev->mdio.dev;
|
2016-01-07 08:31:15 +00:00
|
|
|
do {
|
|
|
|
of_node = dev_walker->of_node;
|
|
|
|
dev_walker = dev_walker->parent;
|
|
|
|
} while (!of_node && dev_walker);
|
2014-05-06 07:40:17 +00:00
|
|
|
|
|
|
|
if (of_node) {
|
|
|
|
ksz9031_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_CLK_PAD_SKEW, 5,
|
|
|
|
clk_skews, 2);
|
|
|
|
|
|
|
|
ksz9031_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
|
|
|
|
control_skews, 2);
|
|
|
|
|
|
|
|
ksz9031_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
|
|
|
|
rx_data_skews, 4);
|
|
|
|
|
|
|
|
ksz9031_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
|
|
|
|
tx_data_skews, 4);
|
2018-05-15 08:18:56 +00:00
|
|
|
|
|
|
|
/* Silicon Errata Sheet (DS80000691D or DS80000692D):
|
|
|
|
* When the device links in the 1000BASE-T slave mode only,
|
|
|
|
* the optional 125MHz reference output clock (CLK125_NDO)
|
|
|
|
* has wide duty cycle variation.
|
|
|
|
*
|
|
|
|
* The optional CLK125_NDO clock does not meet the RGMII
|
|
|
|
* 45/55 percent (min/max) duty cycle requirement and therefore
|
|
|
|
* cannot be used directly by the MAC side for clocking
|
|
|
|
* applications that have setup/hold time requirements on
|
|
|
|
* rising and falling clock edges.
|
|
|
|
*
|
|
|
|
* Workaround:
|
|
|
|
* Force the phy to be the master to receive a stable clock
|
|
|
|
* which meets the duty cycle requirement.
|
|
|
|
*/
|
|
|
|
if (of_property_read_bool(of_node, "micrel,force-master")) {
|
|
|
|
result = phy_read(phydev, MII_CTRL1000);
|
|
|
|
if (result < 0)
|
|
|
|
goto err_force_master;
|
|
|
|
|
|
|
|
/* enable master mode, config & prefer master */
|
|
|
|
result |= CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER;
|
|
|
|
result = phy_write(phydev, MII_CTRL1000, result);
|
|
|
|
if (result < 0)
|
|
|
|
goto err_force_master;
|
|
|
|
}
|
2014-05-06 07:40:17 +00:00
|
|
|
}
|
2015-06-05 23:00:26 +00:00
|
|
|
|
|
|
|
return ksz9031_center_flp_timing(phydev);
|
2018-05-15 08:18:56 +00:00
|
|
|
|
|
|
|
err_force_master:
|
|
|
|
phydev_err(phydev, "failed to force the phy to master mode\n");
|
|
|
|
return result;
|
2014-05-06 07:40:17 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 19:06:01 +00:00
|
|
|
#define KSZ9131_SKEW_5BIT_MAX 2400
|
|
|
|
#define KSZ9131_SKEW_4BIT_MAX 800
|
|
|
|
#define KSZ9131_OFFSET 700
|
|
|
|
#define KSZ9131_STEP 100
|
|
|
|
|
|
|
|
static int ksz9131_of_load_skew_values(struct phy_device *phydev,
|
|
|
|
struct device_node *of_node,
|
|
|
|
u16 reg, size_t field_sz,
|
|
|
|
char *field[], u8 numfields)
|
|
|
|
{
|
|
|
|
int val[4] = {-(1 + KSZ9131_OFFSET), -(2 + KSZ9131_OFFSET),
|
|
|
|
-(3 + KSZ9131_OFFSET), -(4 + KSZ9131_OFFSET)};
|
|
|
|
int skewval, skewmax = 0;
|
|
|
|
int matches = 0;
|
|
|
|
u16 maxval;
|
|
|
|
u16 newval;
|
|
|
|
u16 mask;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* psec properties in dts should mean x pico seconds */
|
|
|
|
if (field_sz == 5)
|
|
|
|
skewmax = KSZ9131_SKEW_5BIT_MAX;
|
|
|
|
else
|
|
|
|
skewmax = KSZ9131_SKEW_4BIT_MAX;
|
|
|
|
|
|
|
|
for (i = 0; i < numfields; i++)
|
|
|
|
if (!of_property_read_s32(of_node, field[i], &skewval)) {
|
|
|
|
if (skewval < -KSZ9131_OFFSET)
|
|
|
|
skewval = -KSZ9131_OFFSET;
|
|
|
|
else if (skewval > skewmax)
|
|
|
|
skewval = skewmax;
|
|
|
|
|
|
|
|
val[i] = skewval + KSZ9131_OFFSET;
|
|
|
|
matches++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!matches)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (matches < numfields)
|
2019-01-16 20:52:22 +00:00
|
|
|
newval = phy_read_mmd(phydev, 2, reg);
|
2018-10-18 19:06:01 +00:00
|
|
|
else
|
|
|
|
newval = 0;
|
|
|
|
|
|
|
|
maxval = (field_sz == 4) ? 0xf : 0x1f;
|
|
|
|
for (i = 0; i < numfields; i++)
|
|
|
|
if (val[i] != -(i + 1 + KSZ9131_OFFSET)) {
|
|
|
|
mask = 0xffff;
|
|
|
|
mask ^= maxval << (field_sz * i);
|
|
|
|
newval = (newval & mask) |
|
|
|
|
(((val[i] / KSZ9131_STEP) & maxval)
|
|
|
|
<< (field_sz * i));
|
|
|
|
}
|
|
|
|
|
2019-01-16 20:52:22 +00:00
|
|
|
return phy_write_mmd(phydev, 2, reg, newval);
|
2018-10-18 19:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ksz9131_config_init(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
const struct device *dev = &phydev->mdio.dev;
|
|
|
|
struct device_node *of_node = dev->of_node;
|
|
|
|
char *clk_skews[2] = {"rxc-skew-psec", "txc-skew-psec"};
|
|
|
|
char *rx_data_skews[4] = {
|
|
|
|
"rxd0-skew-psec", "rxd1-skew-psec",
|
|
|
|
"rxd2-skew-psec", "rxd3-skew-psec"
|
|
|
|
};
|
|
|
|
char *tx_data_skews[4] = {
|
|
|
|
"txd0-skew-psec", "txd1-skew-psec",
|
|
|
|
"txd2-skew-psec", "txd3-skew-psec"
|
|
|
|
};
|
|
|
|
char *control_skews[2] = {"txen-skew-psec", "rxdv-skew-psec"};
|
|
|
|
const struct device *dev_walker;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
dev_walker = &phydev->mdio.dev;
|
|
|
|
do {
|
|
|
|
of_node = dev_walker->of_node;
|
|
|
|
dev_walker = dev_walker->parent;
|
|
|
|
} while (!of_node && dev_walker);
|
|
|
|
|
|
|
|
if (!of_node)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = ksz9131_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_CLK_PAD_SKEW, 5,
|
|
|
|
clk_skews, 2);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = ksz9131_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
|
|
|
|
control_skews, 2);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = ksz9131_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
|
|
|
|
rx_data_skews, 4);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = ksz9131_of_load_skew_values(phydev, of_node,
|
|
|
|
MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
|
|
|
|
tx_data_skews, 4);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-21 05:38:07 +00:00
|
|
|
#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
|
2014-11-11 19:00:09 +00:00
|
|
|
#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
|
|
|
|
#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
|
2013-08-06 08:29:35 +00:00
|
|
|
static int ksz8873mll_read_status(struct phy_device *phydev)
|
2012-11-21 05:38:07 +00:00
|
|
|
{
|
|
|
|
int regval;
|
|
|
|
|
|
|
|
/* dummy read */
|
|
|
|
regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
|
|
|
|
|
|
|
|
regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
|
|
|
|
|
|
|
|
if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
|
|
|
|
phydev->duplex = DUPLEX_HALF;
|
|
|
|
else
|
|
|
|
phydev->duplex = DUPLEX_FULL;
|
|
|
|
|
|
|
|
if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
|
|
|
|
phydev->speed = SPEED_10;
|
|
|
|
else
|
|
|
|
phydev->speed = SPEED_100;
|
|
|
|
|
|
|
|
phydev->link = 1;
|
|
|
|
phydev->pause = phydev->asym_pause = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-04-16 10:10:20 +00:00
|
|
|
static int ksz9031_get_features(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = genphy_read_abilities(phydev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Silicon Errata Sheet (DS80000691D or DS80000692D):
|
|
|
|
* Whenever the device's Asymmetric Pause capability is set to 1,
|
|
|
|
* link-up may fail after a link-up to link-down transition.
|
|
|
|
*
|
|
|
|
* Workaround:
|
|
|
|
* Do not enable the Asymmetric Pause capability bit.
|
|
|
|
*/
|
|
|
|
linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
|
|
|
|
|
|
|
|
/* We force setting the Pause capability as the core will force the
|
|
|
|
* Asymmetric Pause capability to 1 otherwise.
|
|
|
|
*/
|
|
|
|
linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-21 19:17:04 +00:00
|
|
|
static int ksz9031_read_status(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
int regval;
|
|
|
|
|
|
|
|
err = genphy_read_status(phydev);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
/* Make sure the PHY is not broken. Read idle error count,
|
|
|
|
* and reset the PHY if it is maxed out.
|
|
|
|
*/
|
|
|
|
regval = phy_read(phydev, MII_STAT1000);
|
|
|
|
if ((regval & 0xFF) == 0xFF) {
|
|
|
|
phy_init_hw(phydev);
|
|
|
|
phydev->link = 0;
|
2017-06-20 17:48:11 +00:00
|
|
|
if (phydev->drv->config_intr && phy_interrupt_is_valid(phydev))
|
|
|
|
phydev->drv->config_intr(phydev);
|
2017-12-21 00:45:10 +00:00
|
|
|
return genphy_config_aneg(phydev);
|
2015-10-21 19:17:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-21 05:38:07 +00:00
|
|
|
static int ksz8873mll_config_aneg(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-30 15:28:27 +00:00
|
|
|
static int kszphy_get_sset_count(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
return ARRAY_SIZE(kszphy_hw_stats);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
|
2018-03-02 23:08:38 +00:00
|
|
|
strlcpy(data + i * ETH_GSTRING_LEN,
|
|
|
|
kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
|
2015-12-30 15:28:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 kszphy_get_stat(struct phy_device *phydev, int i)
|
|
|
|
{
|
|
|
|
struct kszphy_hw_stat stat = kszphy_hw_stats[i];
|
|
|
|
struct kszphy_priv *priv = phydev->priv;
|
2016-02-19 23:35:29 +00:00
|
|
|
int val;
|
|
|
|
u64 ret;
|
2015-12-30 15:28:27 +00:00
|
|
|
|
|
|
|
val = phy_read(phydev, stat.reg);
|
|
|
|
if (val < 0) {
|
2018-04-27 08:18:58 +00:00
|
|
|
ret = U64_MAX;
|
2015-12-30 15:28:27 +00:00
|
|
|
} else {
|
|
|
|
val = val & ((1 << stat.bits) - 1);
|
|
|
|
priv->stats[i] += val;
|
2016-02-19 23:35:29 +00:00
|
|
|
ret = priv->stats[i];
|
2015-12-30 15:28:27 +00:00
|
|
|
}
|
|
|
|
|
2016-02-19 23:35:29 +00:00
|
|
|
return ret;
|
2015-12-30 15:28:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void kszphy_get_stats(struct phy_device *phydev,
|
|
|
|
struct ethtool_stats *stats, u64 *data)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
|
|
|
|
data[i] = kszphy_get_stat(phydev, i);
|
|
|
|
}
|
|
|
|
|
2016-08-05 06:35:41 +00:00
|
|
|
static int kszphy_suspend(struct phy_device *phydev)
|
2016-02-26 18:18:22 +00:00
|
|
|
{
|
2016-08-05 06:35:41 +00:00
|
|
|
/* Disable PHY Interrupts */
|
|
|
|
if (phy_interrupt_is_valid(phydev)) {
|
|
|
|
phydev->interrupts = PHY_INTERRUPT_DISABLED;
|
|
|
|
if (phydev->drv->config_intr)
|
|
|
|
phydev->drv->config_intr(phydev);
|
|
|
|
}
|
2016-02-26 18:18:22 +00:00
|
|
|
|
2016-08-05 06:35:41 +00:00
|
|
|
return genphy_suspend(phydev);
|
|
|
|
}
|
2016-02-26 18:18:22 +00:00
|
|
|
|
2016-08-05 06:35:41 +00:00
|
|
|
static int kszphy_resume(struct phy_device *phydev)
|
|
|
|
{
|
2017-05-31 10:29:30 +00:00
|
|
|
int ret;
|
|
|
|
|
2016-08-05 06:35:41 +00:00
|
|
|
genphy_resume(phydev);
|
2016-02-26 18:18:22 +00:00
|
|
|
|
2017-05-31 10:29:30 +00:00
|
|
|
ret = kszphy_config_reset(phydev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2016-08-05 06:35:41 +00:00
|
|
|
/* Enable PHY Interrupts */
|
|
|
|
if (phy_interrupt_is_valid(phydev)) {
|
|
|
|
phydev->interrupts = PHY_INTERRUPT_ENABLED;
|
|
|
|
if (phydev->drv->config_intr)
|
|
|
|
phydev->drv->config_intr(phydev);
|
|
|
|
}
|
2016-02-26 18:18:22 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-19 11:59:15 +00:00
|
|
|
static int kszphy_probe(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
const struct kszphy_type *type = phydev->drv->driver_data;
|
2016-01-06 19:11:16 +00:00
|
|
|
const struct device_node *np = phydev->mdio.dev.of_node;
|
2014-11-19 11:59:15 +00:00
|
|
|
struct kszphy_priv *priv;
|
2014-11-19 11:59:18 +00:00
|
|
|
struct clk *clk;
|
2014-11-19 11:59:16 +00:00
|
|
|
int ret;
|
2014-11-19 11:59:15 +00:00
|
|
|
|
2016-01-06 19:11:16 +00:00
|
|
|
priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
|
2014-11-19 11:59:15 +00:00
|
|
|
if (!priv)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
phydev->priv = priv;
|
|
|
|
|
|
|
|
priv->type = type;
|
|
|
|
|
2014-11-19 11:59:16 +00:00
|
|
|
if (type->led_mode_reg) {
|
|
|
|
ret = of_property_read_u32(np, "micrel,led-mode",
|
|
|
|
&priv->led_mode);
|
|
|
|
if (ret)
|
|
|
|
priv->led_mode = -1;
|
|
|
|
|
|
|
|
if (priv->led_mode > 3) {
|
2016-01-06 19:11:09 +00:00
|
|
|
phydev_err(phydev, "invalid led mode: 0x%02x\n",
|
|
|
|
priv->led_mode);
|
2014-11-19 11:59:16 +00:00
|
|
|
priv->led_mode = -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
priv->led_mode = -1;
|
|
|
|
}
|
|
|
|
|
2016-01-06 19:11:16 +00:00
|
|
|
clk = devm_clk_get(&phydev->mdio.dev, "rmii-ref");
|
2015-05-12 07:43:14 +00:00
|
|
|
/* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
|
|
|
|
if (!IS_ERR_OR_NULL(clk)) {
|
2014-10-10 07:48:05 +00:00
|
|
|
unsigned long rate = clk_get_rate(clk);
|
2014-11-19 11:59:19 +00:00
|
|
|
bool rmii_ref_clk_sel_25_mhz;
|
2014-10-10 07:48:05 +00:00
|
|
|
|
2014-11-19 11:59:18 +00:00
|
|
|
priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
|
2014-11-19 11:59:19 +00:00
|
|
|
rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
|
|
|
|
"micrel,rmii-reference-clock-select-25-mhz");
|
2014-11-19 11:59:18 +00:00
|
|
|
|
2014-10-10 07:48:05 +00:00
|
|
|
if (rate > 24500000 && rate < 25500000) {
|
2014-11-19 11:59:19 +00:00
|
|
|
priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
|
2014-10-10 07:48:05 +00:00
|
|
|
} else if (rate > 49500000 && rate < 50500000) {
|
2014-11-19 11:59:19 +00:00
|
|
|
priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
|
2014-10-10 07:48:05 +00:00
|
|
|
} else {
|
2016-01-06 19:11:09 +00:00
|
|
|
phydev_err(phydev, "Clock rate out of range: %ld\n",
|
|
|
|
rate);
|
2014-10-10 07:48:05 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-19 11:59:18 +00:00
|
|
|
/* Support legacy board-file configuration */
|
|
|
|
if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
|
|
|
|
priv->rmii_ref_clk_sel = true;
|
|
|
|
priv->rmii_ref_clk_sel_val = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2014-10-10 07:48:05 +00:00
|
|
|
}
|
|
|
|
|
2012-07-04 05:44:34 +00:00
|
|
|
static struct phy_driver ksphy_driver[] = {
|
|
|
|
{
|
2010-06-28 15:23:41 +00:00
|
|
|
.phy_id = PHY_ID_KS8737,
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2010-06-28 15:23:41 +00:00
|
|
|
.name = "Micrel KS8737",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:22 +00:00
|
|
|
.driver_data = &ks8737_type,
|
2010-06-28 15:23:41 +00:00
|
|
|
.config_init = kszphy_config_init,
|
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
2014-11-19 11:59:22 +00:00
|
|
|
.config_intr = kszphy_config_intr,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2012-09-23 16:58:49 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ8021,
|
|
|
|
.phy_id_mask = 0x00ffffff,
|
2013-01-23 14:05:15 +00:00
|
|
|
.name = "Micrel KSZ8021 or KSZ8031",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:15 +00:00
|
|
|
.driver_data = &ksz8021_type,
|
2014-11-19 11:59:18 +00:00
|
|
|
.probe = kszphy_probe,
|
2014-12-23 11:59:17 +00:00
|
|
|
.config_init = kszphy_config_init,
|
2012-09-23 16:58:49 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2013-03-10 22:50:02 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ8031,
|
|
|
|
.phy_id_mask = 0x00ffffff,
|
|
|
|
.name = "Micrel KSZ8031",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:15 +00:00
|
|
|
.driver_data = &ksz8021_type,
|
2014-11-19 11:59:18 +00:00
|
|
|
.probe = kszphy_probe,
|
2014-12-23 11:59:17 +00:00
|
|
|
.config_init = kszphy_config_init,
|
2013-03-10 22:50:02 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2012-07-04 05:44:34 +00:00
|
|
|
}, {
|
2012-09-23 16:58:50 +00:00
|
|
|
.phy_id = PHY_ID_KSZ8041,
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2012-09-23 16:58:50 +00:00
|
|
|
.name = "Micrel KSZ8041",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:15 +00:00
|
|
|
.driver_data = &ksz8041_type,
|
|
|
|
.probe = kszphy_probe,
|
2016-07-14 14:29:43 +00:00
|
|
|
.config_init = ksz8041_config_init,
|
|
|
|
.config_aneg = ksz8041_config_aneg,
|
2010-06-28 15:23:41 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2013-12-09 23:20:41 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ8041RNLI,
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2013-12-09 23:20:41 +00:00
|
|
|
.name = "Micrel KSZ8041RNLI",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:15 +00:00
|
|
|
.driver_data = &ksz8041_type,
|
|
|
|
.probe = kszphy_probe,
|
|
|
|
.config_init = kszphy_config_init,
|
2013-12-09 23:20:41 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-12-09 23:20:41 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2012-07-04 05:44:34 +00:00
|
|
|
}, {
|
2012-09-23 16:58:50 +00:00
|
|
|
.phy_id = PHY_ID_KSZ8051,
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2012-09-23 16:58:50 +00:00
|
|
|
.name = "Micrel KSZ8051",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:15 +00:00
|
|
|
.driver_data = &ksz8051_type,
|
|
|
|
.probe = kszphy_probe,
|
2014-11-19 11:59:18 +00:00
|
|
|
.config_init = kszphy_config_init,
|
2010-06-28 15:23:41 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2012-07-04 05:44:34 +00:00
|
|
|
}, {
|
2012-09-23 16:58:50 +00:00
|
|
|
.phy_id = PHY_ID_KSZ8001,
|
|
|
|
.name = "Micrel KSZ8001 or KS8721",
|
2016-07-29 10:12:08 +00:00
|
|
|
.phy_id_mask = 0x00fffffc,
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:15 +00:00
|
|
|
.driver_data = &ksz8041_type,
|
|
|
|
.probe = kszphy_probe,
|
|
|
|
.config_init = kszphy_config_init,
|
2010-06-28 15:23:41 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2013-01-23 14:05:15 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ8081,
|
|
|
|
.name = "Micrel KSZ8081 or KSZ8091",
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2014-11-19 11:59:15 +00:00
|
|
|
.driver_data = &ksz8081_type,
|
|
|
|
.probe = kszphy_probe,
|
2014-11-19 11:59:17 +00:00
|
|
|
.config_init = kszphy_config_init,
|
2013-01-23 14:05:15 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2016-08-05 06:35:41 +00:00
|
|
|
.suspend = kszphy_suspend,
|
2016-02-26 18:18:22 +00:00
|
|
|
.resume = kszphy_resume,
|
2013-01-23 14:05:15 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ8061,
|
|
|
|
.name = "Micrel KSZ8061",
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
net: phy: Micrel KSZ8061: link failure after cable connect
With Micrel KSZ8061 PHY, the link may occasionally not come up after
Ethernet cable connect. The vendor's (Microchip, former Micrel) errata
sheet 80000688A.pdf descripes the problem and possible workarounds in
detail, see below.
The batch implements workaround 1, which permanently fixes the issue.
DESCRIPTION
Link-up may not occur properly when the Ethernet cable is initially
connected. This issue occurs more commonly when the cable is connected
slowly, but it may occur any time a cable is connected. This issue occurs
in the auto-negotiation circuit, and will not occur if auto-negotiation
is disabled (which requires that the two link partners be set to the
same speed and duplex).
END USER IMPLICATIONS
When this issue occurs, link is not established. Subsequent cable
plug/unplaug cycle will not correct the issue.
WORk AROUND
There are four approaches to work around this issue:
1. This issue can be prevented by setting bit 15 in MMD device address 1,
register 2, prior to connecting the cable or prior to setting the
Restart Auto-negotiation bit in register 0h. The MMD registers are
accessed via the indirect access registers Dh and Eh, or via the Micrel
EthUtil utility as shown here:
. if using the EthUtil utility (usually with a Micrel KSZ8061
Evaluation Board), type the following commands:
> address 1
> mmd 1
> iw 2 b61a
. Alternatively, write the following registers to write to the
indirect MMD register:
Write register Dh, data 0001h
Write register Eh, data 0002h
Write register Dh, data 4001h
Write register Eh, data B61Ah
2. The issue can be avoided by disabling auto-negotiation in the KSZ8061,
either by the strapping option, or by clearing bit 12 in register 0h.
Care must be taken to ensure that the KSZ8061 and the link partner
will link with the same speed and duplex. Note that the KSZ8061
defaults to full-duplex when auto-negotiation is off, but other
devices may default to half-duplex in the event of failed
auto-negotiation.
3. The issue can be avoided by connecting the cable prior to powering-up
or resetting the KSZ8061, and leaving it plugged in thereafter.
4. If the above measures are not taken and the problem occurs, link can
be recovered by setting the Restart Auto-Negotiation bit in
register 0h, or by resetting or power cycling the device. Reset may
be either hardware reset or software reset (register 0h, bit 15).
PLAN
This errata will not be corrected in the future revision.
Fixes: 7ab59dc15e2f ("drivers/net/phy/micrel_phy: Add support for new PHYs")
Signed-off-by: Alexander Onnasch <alexander.onnasch@landisgyr.com>
Signed-off-by: Rajasingh Thavamani <T.Rajasingh@landisgyr.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-27 12:13:19 +00:00
|
|
|
.config_init = ksz8061_config_init,
|
2013-01-23 14:05:15 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2012-07-04 05:44:34 +00:00
|
|
|
}, {
|
2010-04-29 06:12:41 +00:00
|
|
|
.phy_id = PHY_ID_KSZ9021,
|
2012-06-17 22:52:09 +00:00
|
|
|
.phy_id_mask = 0x000ffffe,
|
2010-04-29 06:12:41 +00:00
|
|
|
.name = "Micrel KSZ9021 Gigabit PHY",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_GBIT_FEATURES */
|
2014-11-19 11:59:22 +00:00
|
|
|
.driver_data = &ksz9021_type,
|
net: phy: micrel: fix crash when statistic requested for KSZ9031 phy
Now the command:
ethtool --phy-statistics eth0
will cause system crash with meassage "Unable to handle kernel NULL pointer
dereference at virtual address 00000010" from:
(kszphy_get_stats) from [<c069f1d8>] (ethtool_get_phy_stats+0xd8/0x210)
(ethtool_get_phy_stats) from [<c06a0738>] (dev_ethtool+0x5b8/0x228c)
(dev_ethtool) from [<c06b5484>] (dev_ioctl+0x3fc/0x964)
(dev_ioctl) from [<c0679f7c>] (sock_ioctl+0x170/0x2c0)
(sock_ioctl) from [<c02419d4>] (do_vfs_ioctl+0xa8/0x95c)
(do_vfs_ioctl) from [<c02422c4>] (SyS_ioctl+0x3c/0x64)
(SyS_ioctl) from [<c0107d60>] (ret_fast_syscall+0x0/0x44)
The reason: phy_driver structure for KSZ9031 phy has no .probe() callback
defined. As result, struct phy_device *phydev->priv pointer will not be
initializes (null).
This issue will affect also following phys:
KSZ8795, KSZ886X, KSZ8873MLL, KSZ9031, KSZ9021, KSZ8061, KS8737
Fix it by:
- adding .probe() = kszphy_probe() callback to KSZ9031, KSZ9021
phys. The kszphy_probe() can be re-used as it doesn't do any phy specific
settings.
- removing statistic callbacks from other phys (KSZ8795, KSZ886X,
KSZ8873MLL, KSZ8061, KS8737) as they doesn't have corresponding
statistic counters.
Fixes: 2b2427d06426 ("phy: micrel: Add ethtool statistics counters")
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-04-13 19:11:27 +00:00
|
|
|
.probe = kszphy_probe,
|
2013-08-21 01:46:12 +00:00
|
|
|
.config_init = ksz9021_config_init,
|
2010-06-28 15:23:41 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
2014-11-19 11:59:22 +00:00
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2018-03-20 01:44:54 +00:00
|
|
|
.read_mmd = genphy_read_mmd_unsupported,
|
|
|
|
.write_mmd = genphy_write_mmd_unsupported,
|
2013-01-23 14:05:15 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ9031,
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2013-01-23 14:05:15 +00:00
|
|
|
.name = "Micrel KSZ9031 Gigabit PHY",
|
2014-11-19 11:59:22 +00:00
|
|
|
.driver_data = &ksz9021_type,
|
net: phy: micrel: fix crash when statistic requested for KSZ9031 phy
Now the command:
ethtool --phy-statistics eth0
will cause system crash with meassage "Unable to handle kernel NULL pointer
dereference at virtual address 00000010" from:
(kszphy_get_stats) from [<c069f1d8>] (ethtool_get_phy_stats+0xd8/0x210)
(ethtool_get_phy_stats) from [<c06a0738>] (dev_ethtool+0x5b8/0x228c)
(dev_ethtool) from [<c06b5484>] (dev_ioctl+0x3fc/0x964)
(dev_ioctl) from [<c0679f7c>] (sock_ioctl+0x170/0x2c0)
(sock_ioctl) from [<c02419d4>] (do_vfs_ioctl+0xa8/0x95c)
(do_vfs_ioctl) from [<c02422c4>] (SyS_ioctl+0x3c/0x64)
(SyS_ioctl) from [<c0107d60>] (ret_fast_syscall+0x0/0x44)
The reason: phy_driver structure for KSZ9031 phy has no .probe() callback
defined. As result, struct phy_device *phydev->priv pointer will not be
initializes (null).
This issue will affect also following phys:
KSZ8795, KSZ886X, KSZ8873MLL, KSZ9031, KSZ9021, KSZ8061, KS8737
Fix it by:
- adding .probe() = kszphy_probe() callback to KSZ9031, KSZ9021
phys. The kszphy_probe() can be re-used as it doesn't do any phy specific
settings.
- removing statistic callbacks from other phys (KSZ8795, KSZ886X,
KSZ8873MLL, KSZ8061, KS8737) as they doesn't have corresponding
statistic counters.
Fixes: 2b2427d06426 ("phy: micrel: Add ethtool statistics counters")
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-04-13 19:11:27 +00:00
|
|
|
.probe = kszphy_probe,
|
2019-04-16 10:10:20 +00:00
|
|
|
.get_features = ksz9031_get_features,
|
2014-05-06 07:40:17 +00:00
|
|
|
.config_init = ksz9031_config_init,
|
2019-01-10 19:22:26 +00:00
|
|
|
.soft_reset = genphy_soft_reset,
|
2015-10-21 19:17:04 +00:00
|
|
|
.read_status = ksz9031_read_status,
|
2013-01-23 14:05:15 +00:00
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
2014-11-19 11:59:22 +00:00
|
|
|
.config_intr = kszphy_config_intr,
|
2015-12-30 15:28:27 +00:00
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
2016-08-22 20:57:16 +00:00
|
|
|
.resume = kszphy_resume,
|
2018-10-18 19:06:01 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ9131,
|
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
|
|
|
.name = "Microchip KSZ9131 Gigabit PHY",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_GBIT_FEATURES */
|
2018-10-18 19:06:01 +00:00
|
|
|
.driver_data = &ksz9021_type,
|
|
|
|
.probe = kszphy_probe,
|
|
|
|
.config_init = ksz9131_config_init,
|
|
|
|
.read_status = ksz9031_read_status,
|
|
|
|
.ack_interrupt = kszphy_ack_interrupt,
|
|
|
|
.config_intr = kszphy_config_intr,
|
|
|
|
.get_sset_count = kszphy_get_sset_count,
|
|
|
|
.get_strings = kszphy_get_strings,
|
|
|
|
.get_stats = kszphy_get_stats,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = kszphy_resume,
|
2012-11-21 05:38:07 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ8873MLL,
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2012-11-21 05:38:07 +00:00
|
|
|
.name = "Micrel KSZ8873MLL Switch",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2012-11-21 05:38:07 +00:00
|
|
|
.config_init = kszphy_config_init,
|
|
|
|
.config_aneg = ksz8873mll_config_aneg,
|
|
|
|
.read_status = ksz8873mll_read_status,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2013-01-23 14:05:15 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ886X,
|
2016-05-11 20:02:05 +00:00
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
2013-01-23 14:05:15 +00:00
|
|
|
.name = "Micrel KSZ886X Switch",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2013-01-23 14:05:15 +00:00
|
|
|
.config_init = kszphy_config_init,
|
2013-09-19 17:40:48 +00:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2017-01-27 07:46:23 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ8795,
|
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
|
|
|
.name = "Micrel KSZ8795",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_BASIC_FEATURES */
|
2017-01-27 07:46:23 +00:00
|
|
|
.config_init = kszphy_config_init,
|
|
|
|
.config_aneg = ksz8873mll_config_aneg,
|
|
|
|
.read_status = ksz8873mll_read_status,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2017-05-31 20:19:13 +00:00
|
|
|
}, {
|
|
|
|
.phy_id = PHY_ID_KSZ9477,
|
|
|
|
.phy_id_mask = MICREL_PHY_ID_MASK,
|
|
|
|
.name = "Microchip KSZ9477",
|
2019-04-12 18:47:03 +00:00
|
|
|
/* PHY_GBIT_FEATURES */
|
2017-05-31 20:19:13 +00:00
|
|
|
.config_init = kszphy_config_init,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2012-07-04 05:44:34 +00:00
|
|
|
} };
|
2010-04-29 06:12:41 +00:00
|
|
|
|
2014-11-11 18:45:59 +00:00
|
|
|
module_phy_driver(ksphy_driver);
|
2010-04-29 06:12:41 +00:00
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Micrel PHY driver");
|
|
|
|
MODULE_AUTHOR("David J. Choi");
|
|
|
|
MODULE_LICENSE("GPL");
|
2010-05-03 22:48:29 +00:00
|
|
|
|
2010-10-03 23:43:32 +00:00
|
|
|
static struct mdio_device_id __maybe_unused micrel_tbl[] = {
|
2012-06-17 22:52:09 +00:00
|
|
|
{ PHY_ID_KSZ9021, 0x000ffffe },
|
2016-05-11 20:02:05 +00:00
|
|
|
{ PHY_ID_KSZ9031, MICREL_PHY_ID_MASK },
|
2018-10-18 19:06:01 +00:00
|
|
|
{ PHY_ID_KSZ9131, MICREL_PHY_ID_MASK },
|
2016-07-29 10:12:08 +00:00
|
|
|
{ PHY_ID_KSZ8001, 0x00fffffc },
|
2016-05-11 20:02:05 +00:00
|
|
|
{ PHY_ID_KS8737, MICREL_PHY_ID_MASK },
|
2012-09-23 16:58:49 +00:00
|
|
|
{ PHY_ID_KSZ8021, 0x00ffffff },
|
2013-03-10 22:50:02 +00:00
|
|
|
{ PHY_ID_KSZ8031, 0x00ffffff },
|
2016-05-11 20:02:05 +00:00
|
|
|
{ PHY_ID_KSZ8041, MICREL_PHY_ID_MASK },
|
|
|
|
{ PHY_ID_KSZ8051, MICREL_PHY_ID_MASK },
|
|
|
|
{ PHY_ID_KSZ8061, MICREL_PHY_ID_MASK },
|
|
|
|
{ PHY_ID_KSZ8081, MICREL_PHY_ID_MASK },
|
|
|
|
{ PHY_ID_KSZ8873MLL, MICREL_PHY_ID_MASK },
|
|
|
|
{ PHY_ID_KSZ886X, MICREL_PHY_ID_MASK },
|
2010-05-03 22:48:29 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(mdio, micrel_tbl);
|