Merge branch 'sh_eth-fix-reboot-crash'
Geert Uytterhoeven says: ==================== sh_eth: Fix reboot crash This patch fixes a regression v5.11-rc1, where rebooting while a sh_eth device is not opened will cause a crash. Changes compared to v1: - Export mdiobb_{read,write}(), - Call mdiobb_{read,write}() now they are exported, - Use mii_bus.parent to avoid bb_info.dev copy, - Drop RFC state. Alternatively, mdio-bitbang could provide Runtime PM-aware wrappers itself, and use them either manually (through a new parameter to alloc_mdio_bitbang(), or a new alloc_mdio_bitbang_*() function), or automatically (e.g. if pm_runtime_enabled() returns true). Note that the latter requires a "struct device *" parameter to operate on. Currently there are only two drivers that call alloc_mdio_bitbang() and use Runtime PM: the Renesas sh_eth and ravb drivers. This series fixes the former, while the latter is not affected (it keeps the device powered all the time between driver probe and driver unbind, and changing that seems to be non-trivial). ==================== Link: https://lore.kernel.org/r/20210118150656.796584-1-geert+renesas@glider.be Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
f7b9820dbe
|
@ -3034,6 +3034,28 @@ static int sh_mdio_release(struct sh_eth_private *mdp)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int sh_mdiobb_read(struct mii_bus *bus, int phy, int reg)
|
||||
{
|
||||
int res;
|
||||
|
||||
pm_runtime_get_sync(bus->parent);
|
||||
res = mdiobb_read(bus, phy, reg);
|
||||
pm_runtime_put(bus->parent);
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
static int sh_mdiobb_write(struct mii_bus *bus, int phy, int reg, u16 val)
|
||||
{
|
||||
int res;
|
||||
|
||||
pm_runtime_get_sync(bus->parent);
|
||||
res = mdiobb_write(bus, phy, reg, val);
|
||||
pm_runtime_put(bus->parent);
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
/* MDIO bus init function */
|
||||
static int sh_mdio_init(struct sh_eth_private *mdp,
|
||||
struct sh_eth_plat_data *pd)
|
||||
|
@ -3058,6 +3080,10 @@ static int sh_mdio_init(struct sh_eth_private *mdp,
|
|||
if (!mdp->mii_bus)
|
||||
return -ENOMEM;
|
||||
|
||||
/* Wrap accessors with Runtime PM-aware ops */
|
||||
mdp->mii_bus->read = sh_mdiobb_read;
|
||||
mdp->mii_bus->write = sh_mdiobb_write;
|
||||
|
||||
/* Hook up MII support for ethtool */
|
||||
mdp->mii_bus->name = "sh_mii";
|
||||
mdp->mii_bus->parent = dev;
|
||||
|
|
|
@ -149,7 +149,7 @@ static int mdiobb_cmd_addr(struct mdiobb_ctrl *ctrl, int phy, u32 addr)
|
|||
return dev_addr;
|
||||
}
|
||||
|
||||
static int mdiobb_read(struct mii_bus *bus, int phy, int reg)
|
||||
int mdiobb_read(struct mii_bus *bus, int phy, int reg)
|
||||
{
|
||||
struct mdiobb_ctrl *ctrl = bus->priv;
|
||||
int ret, i;
|
||||
|
@ -180,8 +180,9 @@ static int mdiobb_read(struct mii_bus *bus, int phy, int reg)
|
|||
mdiobb_get_bit(ctrl);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(mdiobb_read);
|
||||
|
||||
static int mdiobb_write(struct mii_bus *bus, int phy, int reg, u16 val)
|
||||
int mdiobb_write(struct mii_bus *bus, int phy, int reg, u16 val)
|
||||
{
|
||||
struct mdiobb_ctrl *ctrl = bus->priv;
|
||||
|
||||
|
@ -201,6 +202,7 @@ static int mdiobb_write(struct mii_bus *bus, int phy, int reg, u16 val)
|
|||
mdiobb_get_bit(ctrl);
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(mdiobb_write);
|
||||
|
||||
struct mii_bus *alloc_mdio_bitbang(struct mdiobb_ctrl *ctrl)
|
||||
{
|
||||
|
|
|
@ -35,6 +35,9 @@ struct mdiobb_ctrl {
|
|||
const struct mdiobb_ops *ops;
|
||||
};
|
||||
|
||||
int mdiobb_read(struct mii_bus *bus, int phy, int reg);
|
||||
int mdiobb_write(struct mii_bus *bus, int phy, int reg, u16 val);
|
||||
|
||||
/* The returned bus is not yet registered with the phy layer. */
|
||||
struct mii_bus *alloc_mdio_bitbang(struct mdiobb_ctrl *ctrl);
|
||||
|
||||
|
|
Loading…
Reference in New Issue