net: ethernet: ti: am65-cpsw-nuss: fix ports mac sl initialization
The MAC SL has to be initialized for each port otherwise am65_cpsw_nuss_slave_disable_unused() will crash for disabled ports. Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5182404806
commit
d6d0aeafb3
|
@ -1768,6 +1768,10 @@ static int am65_cpsw_nuss_init_slave_ports(struct am65_cpsw_common *common)
|
||||||
common->cpsw_base + AM65_CPSW_NU_FRAM_BASE +
|
common->cpsw_base + AM65_CPSW_NU_FRAM_BASE +
|
||||||
(AM65_CPSW_NU_FRAM_PORT_OFFSET * (port_id - 1));
|
(AM65_CPSW_NU_FRAM_PORT_OFFSET * (port_id - 1));
|
||||||
|
|
||||||
|
port->slave.mac_sl = cpsw_sl_get("am65", dev, port->port_base);
|
||||||
|
if (IS_ERR(port->slave.mac_sl))
|
||||||
|
return PTR_ERR(port->slave.mac_sl);
|
||||||
|
|
||||||
port->disabled = !of_device_is_available(port_np);
|
port->disabled = !of_device_is_available(port_np);
|
||||||
if (port->disabled)
|
if (port->disabled)
|
||||||
continue;
|
continue;
|
||||||
|
@ -1811,10 +1815,6 @@ static int am65_cpsw_nuss_init_slave_ports(struct am65_cpsw_common *common)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
port->slave.mac_sl = cpsw_sl_get("am65", dev, port->port_base);
|
|
||||||
if (IS_ERR(port->slave.mac_sl))
|
|
||||||
return PTR_ERR(port->slave.mac_sl);
|
|
||||||
|
|
||||||
mac_addr = of_get_mac_address(port_np);
|
mac_addr = of_get_mac_address(port_np);
|
||||||
if (!IS_ERR(mac_addr)) {
|
if (!IS_ERR(mac_addr)) {
|
||||||
ether_addr_copy(port->slave.mac_addr, mac_addr);
|
ether_addr_copy(port->slave.mac_addr, mac_addr);
|
||||||
|
|
Loading…
Reference in New Issue