Commit 90b06ac0 authored by Pieter Van Trappen's avatar Pieter Van Trappen Committed by Jakub Kicinski

net: dsa: microchip: add WoL support for KSZ87xx family

Add WoL support for KSZ87xx family of switches. This code was tested
with a KSZ8794 chip.

Implement ksz_common usage of the new device-tree property
'microchip,pme-active-high'.

Make use of the now generalized ksz_common WoL functions, adding an
additional interrupt register write for KSZ87xx. Add helper functions
to convert from PME (port) read/writes to indirect register
read/writes in the dedicated ksz8795 sources.  Add initial
configuration during (port) setup as per KSZ9477.
Signed-off-by: default avatarPieter Van Trappen <pieter.van.trappen@cern.ch>
Acked-by: default avatarArun Ramadoss <arun.ramadoss@microchip.com>
Link: https://patch.msgid.link/20240813142750.772781-5-vtpieter@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent fd250fed
...@@ -54,6 +54,9 @@ int ksz8_reset_switch(struct ksz_device *dev); ...@@ -54,6 +54,9 @@ int ksz8_reset_switch(struct ksz_device *dev);
int ksz8_switch_init(struct ksz_device *dev); int ksz8_switch_init(struct ksz_device *dev);
void ksz8_switch_exit(struct ksz_device *dev); void ksz8_switch_exit(struct ksz_device *dev);
int ksz8_change_mtu(struct ksz_device *dev, int port, int mtu); int ksz8_change_mtu(struct ksz_device *dev, int port, int mtu);
int ksz8_pme_write8(struct ksz_device *dev, u32 reg, u8 value);
int ksz8_pme_pread8(struct ksz_device *dev, int port, int offset, u8 *data);
int ksz8_pme_pwrite8(struct ksz_device *dev, int port, int offset, u8 data);
void ksz8_phylink_mac_link_up(struct phylink_config *config, void ksz8_phylink_mac_link_up(struct phylink_config *config,
struct phy_device *phydev, unsigned int mode, struct phy_device *phydev, unsigned int mode,
phy_interface_t interface, int speed, int duplex, phy_interface_t interface, int speed, int duplex,
......
...@@ -38,6 +38,20 @@ static void ksz_port_cfg(struct ksz_device *dev, int port, int offset, u8 bits, ...@@ -38,6 +38,20 @@ static void ksz_port_cfg(struct ksz_device *dev, int port, int offset, u8 bits,
bits, set ? bits : 0); bits, set ? bits : 0);
} }
/**
* ksz8_ind_write8 - EEE/ACL/PME indirect register write
* @dev: The device structure.
* @table: Function & table select, register 110.
* @addr: Indirect access control, register 111.
* @data: The data to be written.
*
* This function performs an indirect register write for EEE, ACL or
* PME switch functionalities. Both 8-bit registers 110 and 111 are
* written at once with ksz_write16, using the serial multiple write
* functionality.
*
* Return: 0 on success, or an error code on failure.
*/
static int ksz8_ind_write8(struct ksz_device *dev, u8 table, u16 addr, u8 data) static int ksz8_ind_write8(struct ksz_device *dev, u8 table, u16 addr, u8 data)
{ {
const u16 *regs; const u16 *regs;
...@@ -58,6 +72,59 @@ static int ksz8_ind_write8(struct ksz_device *dev, u8 table, u16 addr, u8 data) ...@@ -58,6 +72,59 @@ static int ksz8_ind_write8(struct ksz_device *dev, u8 table, u16 addr, u8 data)
return ret; return ret;
} }
/**
* ksz8_ind_read8 - EEE/ACL/PME indirect register read
* @dev: The device structure.
* @table: Function & table select, register 110.
* @addr: Indirect access control, register 111.
* @val: The value read.
*
* This function performs an indirect register read for EEE, ACL or
* PME switch functionalities. Both 8-bit registers 110 and 111 are
* written at once with ksz_write16, using the serial multiple write
* functionality.
*
* Return: 0 on success, or an error code on failure.
*/
static int ksz8_ind_read8(struct ksz_device *dev, u8 table, u16 addr, u8 *val)
{
const u16 *regs;
u16 ctrl_addr;
int ret = 0;
regs = dev->info->regs;
mutex_lock(&dev->alu_mutex);
ctrl_addr = IND_ACC_TABLE(table | TABLE_READ) | addr;
ret = ksz_write16(dev, regs[REG_IND_CTRL_0], ctrl_addr);
if (!ret)
ret = ksz_read8(dev, regs[REG_IND_BYTE], val);
mutex_unlock(&dev->alu_mutex);
return ret;
}
int ksz8_pme_write8(struct ksz_device *dev, u32 reg, u8 value)
{
return ksz8_ind_write8(dev, (u8)(reg >> 8), (u8)(reg), value);
}
int ksz8_pme_pread8(struct ksz_device *dev, int port, int offset, u8 *data)
{
u8 table = (u8)(offset >> 8 | (port + 1));
return ksz8_ind_read8(dev, table, (u8)(offset), data);
}
int ksz8_pme_pwrite8(struct ksz_device *dev, int port, int offset, u8 data)
{
u8 table = (u8)(offset >> 8 | (port + 1));
return ksz8_ind_write8(dev, table, (u8)(offset), data);
}
int ksz8_reset_switch(struct ksz_device *dev) int ksz8_reset_switch(struct ksz_device *dev)
{ {
if (ksz_is_ksz88x3(dev)) { if (ksz_is_ksz88x3(dev)) {
...@@ -1545,6 +1612,7 @@ static void ksz8795_cpu_interface_select(struct ksz_device *dev, int port) ...@@ -1545,6 +1612,7 @@ static void ksz8795_cpu_interface_select(struct ksz_device *dev, int port)
void ksz8_port_setup(struct ksz_device *dev, int port, bool cpu_port) void ksz8_port_setup(struct ksz_device *dev, int port, bool cpu_port)
{ {
const u16 *regs = dev->info->regs;
struct dsa_switch *ds = dev->ds; struct dsa_switch *ds = dev->ds;
const u32 *masks; const u32 *masks;
int queues; int queues;
...@@ -1575,6 +1643,13 @@ void ksz8_port_setup(struct ksz_device *dev, int port, bool cpu_port) ...@@ -1575,6 +1643,13 @@ void ksz8_port_setup(struct ksz_device *dev, int port, bool cpu_port)
member = BIT(dsa_upstream_port(ds, port)); member = BIT(dsa_upstream_port(ds, port));
ksz8_cfg_port_member(dev, port, member); ksz8_cfg_port_member(dev, port, member);
/* Disable all WoL options by default. Otherwise
* ksz_switch_macaddr_get/put logic will not work properly.
* CPU port 4 has no WoL functionality.
*/
if (ksz_is_ksz87xx(dev) && !cpu_port)
ksz8_pme_pwrite8(dev, port, regs[REG_PORT_PME_CTRL], 0);
} }
static void ksz88x3_config_rmii_clk(struct ksz_device *dev) static void ksz88x3_config_rmii_clk(struct ksz_device *dev)
...@@ -1790,7 +1865,8 @@ int ksz8_enable_stp_addr(struct ksz_device *dev) ...@@ -1790,7 +1865,8 @@ int ksz8_enable_stp_addr(struct ksz_device *dev)
int ksz8_setup(struct dsa_switch *ds) int ksz8_setup(struct dsa_switch *ds)
{ {
struct ksz_device *dev = ds->priv; struct ksz_device *dev = ds->priv;
int i; const u16 *regs = dev->info->regs;
int i, ret = 0;
ds->mtu_enforcement_ingress = true; ds->mtu_enforcement_ingress = true;
...@@ -1829,7 +1905,21 @@ int ksz8_setup(struct dsa_switch *ds) ...@@ -1829,7 +1905,21 @@ int ksz8_setup(struct dsa_switch *ds)
for (i = 0; i < (dev->info->num_vlans / 4); i++) for (i = 0; i < (dev->info->num_vlans / 4); i++)
ksz8_r_vlan_entries(dev, i); ksz8_r_vlan_entries(dev, i);
return ksz8_handle_global_errata(ds); /* Make sure PME (WoL) is not enabled. If requested, it will
* be enabled by ksz_wol_pre_shutdown(). Otherwise, some PMICs
* do not like PME events changes before shutdown. PME only
* available on KSZ87xx family.
*/
if (ksz_is_ksz87xx(dev)) {
ret = ksz8_pme_write8(dev, regs[REG_SW_PME_CTRL], 0);
if (!ret)
ret = ksz_rmw8(dev, REG_INT_ENABLE, INT_PME, 0);
}
if (!ret)
return ksz8_handle_global_errata(ds);
else
return ret;
} }
void ksz8_get_caps(struct ksz_device *dev, int port, void ksz8_get_caps(struct ksz_device *dev, int port,
......
...@@ -307,6 +307,9 @@ static const struct ksz_dev_ops ksz8_dev_ops = { ...@@ -307,6 +307,9 @@ static const struct ksz_dev_ops ksz8_dev_ops = {
.init = ksz8_switch_init, .init = ksz8_switch_init,
.exit = ksz8_switch_exit, .exit = ksz8_switch_exit,
.change_mtu = ksz8_change_mtu, .change_mtu = ksz8_change_mtu,
.pme_write8 = ksz8_pme_write8,
.pme_pread8 = ksz8_pme_pread8,
.pme_pwrite8 = ksz8_pme_pwrite8,
}; };
static void ksz9477_phylink_mac_link_up(struct phylink_config *config, static void ksz9477_phylink_mac_link_up(struct phylink_config *config,
...@@ -423,6 +426,9 @@ static const u16 ksz8795_regs[] = { ...@@ -423,6 +426,9 @@ static const u16 ksz8795_regs[] = {
[S_MULTICAST_CTRL] = 0x04, [S_MULTICAST_CTRL] = 0x04,
[P_XMII_CTRL_0] = 0x06, [P_XMII_CTRL_0] = 0x06,
[P_XMII_CTRL_1] = 0x06, [P_XMII_CTRL_1] = 0x06,
[REG_SW_PME_CTRL] = 0x8003,
[REG_PORT_PME_STATUS] = 0x8003,
[REG_PORT_PME_CTRL] = 0x8007,
}; };
static const u32 ksz8795_masks[] = { static const u32 ksz8795_masks[] = {
...@@ -3800,7 +3806,7 @@ static void ksz_get_wol(struct dsa_switch *ds, int port, ...@@ -3800,7 +3806,7 @@ static void ksz_get_wol(struct dsa_switch *ds, int port,
u8 pme_ctrl; u8 pme_ctrl;
int ret; int ret;
if (!is_ksz9477(dev)) if (!is_ksz9477(dev) && !ksz_is_ksz87xx(dev))
return; return;
if (!dev->wakeup_source) if (!dev->wakeup_source)
...@@ -3853,7 +3859,7 @@ static int ksz_set_wol(struct dsa_switch *ds, int port, ...@@ -3853,7 +3859,7 @@ static int ksz_set_wol(struct dsa_switch *ds, int port,
if (wol->wolopts & ~(WAKE_PHY | WAKE_MAGIC)) if (wol->wolopts & ~(WAKE_PHY | WAKE_MAGIC))
return -EINVAL; return -EINVAL;
if (!is_ksz9477(dev)) if (!is_ksz9477(dev) && !ksz_is_ksz87xx(dev))
return -EOPNOTSUPP; return -EOPNOTSUPP;
if (!dev->wakeup_source) if (!dev->wakeup_source)
...@@ -3919,12 +3925,13 @@ static void ksz_wol_pre_shutdown(struct ksz_device *dev, bool *wol_enabled) ...@@ -3919,12 +3925,13 @@ static void ksz_wol_pre_shutdown(struct ksz_device *dev, bool *wol_enabled)
{ {
const struct ksz_dev_ops *ops = dev->dev_ops; const struct ksz_dev_ops *ops = dev->dev_ops;
const u16 *regs = dev->info->regs; const u16 *regs = dev->info->regs;
u8 pme_pin_en = PME_ENABLE;
struct dsa_port *dp; struct dsa_port *dp;
int ret; int ret;
*wol_enabled = false; *wol_enabled = false;
if (!is_ksz9477(dev)) if (!is_ksz9477(dev) && !ksz_is_ksz87xx(dev))
return; return;
if (!dev->wakeup_source) if (!dev->wakeup_source)
...@@ -3945,8 +3952,13 @@ static void ksz_wol_pre_shutdown(struct ksz_device *dev, bool *wol_enabled) ...@@ -3945,8 +3952,13 @@ static void ksz_wol_pre_shutdown(struct ksz_device *dev, bool *wol_enabled)
} }
/* Now we are save to enable PME pin. */ /* Now we are save to enable PME pin. */
if (*wol_enabled) if (*wol_enabled) {
ops->pme_write8(dev, regs[REG_SW_PME_CTRL], PME_ENABLE); if (dev->pme_active_high)
pme_pin_en |= PME_POLARITY;
ops->pme_write8(dev, regs[REG_SW_PME_CTRL], pme_pin_en);
if (ksz_is_ksz87xx(dev))
ksz_write8(dev, KSZ87XX_REG_INT_EN, KSZ87XX_INT_PME_MASK);
}
} }
static int ksz_port_set_mac_address(struct dsa_switch *ds, int port, static int ksz_port_set_mac_address(struct dsa_switch *ds, int port,
...@@ -4661,6 +4673,8 @@ int ksz_switch_register(struct ksz_device *dev) ...@@ -4661,6 +4673,8 @@ int ksz_switch_register(struct ksz_device *dev)
dev->wakeup_source = of_property_read_bool(dev->dev->of_node, dev->wakeup_source = of_property_read_bool(dev->dev->of_node,
"wakeup-source"); "wakeup-source");
dev->pme_active_high = of_property_read_bool(dev->dev->of_node,
"microchip,pme-active-high");
} }
ret = dsa_register_switch(dev->ds); ret = dsa_register_switch(dev->ds);
......
...@@ -174,6 +174,7 @@ struct ksz_device { ...@@ -174,6 +174,7 @@ struct ksz_device {
bool synclko_125; bool synclko_125;
bool synclko_disable; bool synclko_disable;
bool wakeup_source; bool wakeup_source;
bool pme_active_high;
struct vlan_table *vlan_cache; struct vlan_table *vlan_cache;
...@@ -704,7 +705,7 @@ static inline bool is_lan937x_tx_phy(struct ksz_device *dev, int port) ...@@ -704,7 +705,7 @@ static inline bool is_lan937x_tx_phy(struct ksz_device *dev, int port)
#define P_MII_MAC_MODE BIT(2) #define P_MII_MAC_MODE BIT(2)
#define P_MII_SEL_M 0x3 #define P_MII_SEL_M 0x3
/* KSZ9477, KSZ8795 Wake-on-LAN (WoL) masks */ /* KSZ9477, KSZ87xx Wake-on-LAN (WoL) masks */
#define PME_WOL_MAGICPKT BIT(2) #define PME_WOL_MAGICPKT BIT(2)
#define PME_WOL_LINKUP BIT(1) #define PME_WOL_LINKUP BIT(1)
#define PME_WOL_ENERGY BIT(0) #define PME_WOL_ENERGY BIT(0)
...@@ -712,6 +713,9 @@ static inline bool is_lan937x_tx_phy(struct ksz_device *dev, int port) ...@@ -712,6 +713,9 @@ static inline bool is_lan937x_tx_phy(struct ksz_device *dev, int port)
#define PME_ENABLE BIT(1) #define PME_ENABLE BIT(1)
#define PME_POLARITY BIT(0) #define PME_POLARITY BIT(0)
#define KSZ87XX_REG_INT_EN 0x7D
#define KSZ87XX_INT_PME_MASK BIT(4)
/* Interrupt */ /* Interrupt */
#define REG_SW_PORT_INT_STATUS__1 0x001B #define REG_SW_PORT_INT_STATUS__1 0x001B
#define REG_SW_PORT_INT_MASK__1 0x001F #define REG_SW_PORT_INT_MASK__1 0x001F
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment