diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2016-06-23 16:50:20 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-27 17:40:57 +0300 |
commit | 37688e3f53c327523caeccdb1ffb3830b4aea9a7 (patch) | |
tree | 7c6467d44f22003b8fc5db8dda45888b4cd7c2ae /drivers/net/phy/swphy.c | |
parent | 68888ce075a5e77f0df659b128a7cb7c597a73cb (diff) | |
download | linux-37688e3f53c327523caeccdb1ffb3830b4aea9a7.tar.xz |
phy: generate swphy registers on the fly
Generate software phy registers as and when requested, rather than
duplicating the state in fixed_phy. This allows us to eliminate
the duplicate storage of of the same data, which is only different
in format.
As fixed_phy_update_regs() no longer updates register state, rename
it to fixed_phy_update().
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/swphy.c')
-rw-r--r-- | drivers/net/phy/swphy.c | 47 |
1 files changed, 34 insertions, 13 deletions
diff --git a/drivers/net/phy/swphy.c b/drivers/net/phy/swphy.c index 21a9bd8a7830..34f58f2349e9 100644 --- a/drivers/net/phy/swphy.c +++ b/drivers/net/phy/swphy.c @@ -20,6 +20,8 @@ #include "swphy.h" +#define MII_REGS_NUM 29 + struct swmii_regs { u16 bmcr; u16 bmsr; @@ -110,14 +112,13 @@ int swphy_validate_state(const struct fixed_phy_status *state) EXPORT_SYMBOL_GPL(swphy_validate_state); /** - * swphy_update_regs - update MII register array with fixed phy state - * @regs: array of 32 registers to update + * swphy_read_reg - return a MII register from the fixed phy state + * @reg: MII register * @state: fixed phy status * - * Update the array of MII registers with the fixed phy link, speed, - * duplex and pause mode settings. + * Return the MII @reg register generated from the fixed phy state @state. */ -void swphy_update_regs(u16 *regs, const struct fixed_phy_status *state) +int swphy_read_reg(int reg, const struct fixed_phy_status *state) { int speed_index, duplex_index; u16 bmsr = BMSR_ANEGCAPABLE; @@ -125,9 +126,12 @@ void swphy_update_regs(u16 *regs, const struct fixed_phy_status *state) u16 lpagb = 0; u16 lpa = 0; + if (reg > MII_REGS_NUM) + return -1; + speed_index = swphy_decode_speed(state->speed); if (WARN_ON(speed_index < 0)) - return; + return 0; duplex_index = state->duplex ? SWMII_DUPLEX_FULL : SWMII_DUPLEX_HALF; @@ -147,12 +151,29 @@ void swphy_update_regs(u16 *regs, const struct fixed_phy_status *state) lpa |= LPA_PAUSE_ASYM; } - regs[MII_PHYSID1] = 0; - regs[MII_PHYSID2] = 0; + switch (reg) { + case MII_BMCR: + return bmcr; + case MII_BMSR: + return bmsr; + case MII_PHYSID1: + case MII_PHYSID2: + return 0; + case MII_LPA: + return lpa; + case MII_STAT1000: + return lpagb; + + /* + * We do not support emulating Clause 45 over Clause 22 register + * reads. Return an error instead of bogus data. + */ + case MII_MMD_CTRL: + case MII_MMD_DATA: + return -1; - regs[MII_BMSR] = bmsr; - regs[MII_BMCR] = bmcr; - regs[MII_LPA] = lpa; - regs[MII_STAT1000] = lpagb; + default: + return 0xffff; + } } -EXPORT_SYMBOL_GPL(swphy_update_regs); +EXPORT_SYMBOL_GPL(swphy_read_reg); |