Merge branch 'net-phy-remove-fixed_phy_add-and-first-its-users'
Heiner Kallweit says: ==================== net: phy: remove fixed_phy_add and first its users fixed_phy_add() has a number of problems/disadvantages: - It uses phy address 0 w/o checking whether a fixed phy with this address exists already. - A subsequent call to fixed_phy_register() would also use phy address 0, because fixed_phy_add() doesn't mark it as used. - fixed_phy_add() is used from platform code, therefore requires that fixed phy code is built-in. fixed_phy_add() has only two users - coldfire/5272, using fec - bcm47xx, using b44 So migrate fec and b44 to use fixed_phy_register_100fd(), afterwards remove usage of fixed_phy_add() from the two platforms, and eventually remove fixed_phy_add(). ==================== Link: https://patch.msgid.link/0285fcb0-0fb5-4f6f-823c-7b6e85e28ba3@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
@@ -16,7 +16,6 @@
|
||||
#include <linux/init.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/phy.h>
|
||||
#include <linux/phy_fixed.h>
|
||||
#include <asm/machdep.h>
|
||||
#include <asm/coldfire.h>
|
||||
#include <asm/mcfsim.h>
|
||||
@@ -103,23 +102,9 @@ void __init config_BSP(char *commandp, int size)
|
||||
|
||||
/***************************************************************************/
|
||||
|
||||
/*
|
||||
* Some 5272 based boards have the FEC ethernet directly connected to
|
||||
* an ethernet switch. In this case we need to use the fixed phy type,
|
||||
* and we need to declare it early in boot.
|
||||
*/
|
||||
static const struct fixed_phy_status nettel_fixed_phy_status __initconst = {
|
||||
.link = 1,
|
||||
.speed = 100,
|
||||
.duplex = 0,
|
||||
};
|
||||
|
||||
/***************************************************************************/
|
||||
|
||||
static int __init init_BSP(void)
|
||||
{
|
||||
m5272_uarts_init();
|
||||
fixed_phy_add(&nettel_fixed_phy_status);
|
||||
clkdev_add_table(m5272_clk_lookup, ARRAY_SIZE(m5272_clk_lookup));
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -256,12 +256,6 @@ static int __init bcm47xx_cpu_fixes(void)
|
||||
}
|
||||
arch_initcall(bcm47xx_cpu_fixes);
|
||||
|
||||
static const struct fixed_phy_status bcm47xx_fixed_phy_status __initconst = {
|
||||
.link = 1,
|
||||
.speed = SPEED_100,
|
||||
.duplex = DUPLEX_FULL,
|
||||
};
|
||||
|
||||
static int __init bcm47xx_register_bus_complete(void)
|
||||
{
|
||||
switch (bcm47xx_bus_type) {
|
||||
@@ -282,7 +276,6 @@ static int __init bcm47xx_register_bus_complete(void)
|
||||
bcm47xx_leds_register();
|
||||
bcm47xx_workarounds();
|
||||
|
||||
fixed_phy_add(&bcm47xx_fixed_phy_status);
|
||||
return 0;
|
||||
}
|
||||
device_initcall(bcm47xx_register_bus_complete);
|
||||
|
||||
@@ -25,6 +25,7 @@ config B44
|
||||
select SSB
|
||||
select MII
|
||||
select PHYLIB
|
||||
select FIXED_PHY if BCM47XX
|
||||
help
|
||||
If you have a network (Ethernet) controller of this type, say Y
|
||||
or M here.
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
#include <linux/ssb/ssb.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/phy.h>
|
||||
#include <linux/phy_fixed.h>
|
||||
|
||||
#include <linux/uaccess.h>
|
||||
#include <asm/io.h>
|
||||
@@ -2233,7 +2234,6 @@ static int b44_register_phy_one(struct b44 *bp)
|
||||
struct mii_bus *mii_bus;
|
||||
struct ssb_device *sdev = bp->sdev;
|
||||
struct phy_device *phydev;
|
||||
char bus_id[MII_BUS_ID_SIZE + 3];
|
||||
struct ssb_sprom *sprom = &sdev->bus->sprom;
|
||||
int err;
|
||||
|
||||
@@ -2260,27 +2260,26 @@ static int b44_register_phy_one(struct b44 *bp)
|
||||
goto err_out_mdiobus;
|
||||
}
|
||||
|
||||
if (!mdiobus_is_registered_device(bp->mii_bus, bp->phy_addr) &&
|
||||
(sprom->boardflags_lo & (B44_BOARDFLAG_ROBO | B44_BOARDFLAG_ADM))) {
|
||||
|
||||
phydev = mdiobus_get_phy(bp->mii_bus, bp->phy_addr);
|
||||
if (!phydev &&
|
||||
sprom->boardflags_lo & (B44_BOARDFLAG_ROBO | B44_BOARDFLAG_ADM)) {
|
||||
dev_info(sdev->dev,
|
||||
"could not find PHY at %i, use fixed one\n",
|
||||
bp->phy_addr);
|
||||
|
||||
bp->phy_addr = 0;
|
||||
snprintf(bus_id, sizeof(bus_id), PHY_ID_FMT, "fixed-0",
|
||||
bp->phy_addr);
|
||||
} else {
|
||||
snprintf(bus_id, sizeof(bus_id), PHY_ID_FMT, mii_bus->id,
|
||||
bp->phy_addr);
|
||||
phydev = fixed_phy_register_100fd();
|
||||
if (!IS_ERR(phydev))
|
||||
bp->phy_addr = phydev->mdio.addr;
|
||||
}
|
||||
|
||||
phydev = phy_connect(bp->dev, bus_id, &b44_adjust_link,
|
||||
PHY_INTERFACE_MODE_MII);
|
||||
if (IS_ERR(phydev)) {
|
||||
if (IS_ERR_OR_NULL(phydev))
|
||||
err = -ENODEV;
|
||||
else
|
||||
err = phy_connect_direct(bp->dev, phydev, &b44_adjust_link,
|
||||
PHY_INTERFACE_MODE_MII);
|
||||
if (err) {
|
||||
dev_err(sdev->dev, "could not attach PHY at %i\n",
|
||||
bp->phy_addr);
|
||||
err = PTR_ERR(phydev);
|
||||
goto err_out_mdiobus_unregister;
|
||||
}
|
||||
|
||||
@@ -2293,7 +2292,6 @@ static int b44_register_phy_one(struct b44 *bp)
|
||||
linkmode_copy(phydev->advertising, phydev->supported);
|
||||
|
||||
bp->old_link = 0;
|
||||
bp->phy_addr = phydev->mdio.addr;
|
||||
|
||||
phy_attached_info(phydev);
|
||||
|
||||
@@ -2311,10 +2309,15 @@ err_out:
|
||||
|
||||
static void b44_unregister_phy_one(struct b44 *bp)
|
||||
{
|
||||
struct net_device *dev = bp->dev;
|
||||
struct mii_bus *mii_bus = bp->mii_bus;
|
||||
struct net_device *dev = bp->dev;
|
||||
struct phy_device *phydev;
|
||||
|
||||
phy_disconnect(dev->phydev);
|
||||
phydev = dev->phydev;
|
||||
|
||||
phy_disconnect(phydev);
|
||||
if (phy_is_pseudo_fixed_link(phydev))
|
||||
fixed_phy_unregister(phydev);
|
||||
mdiobus_unregister(mii_bus);
|
||||
mdiobus_free(mii_bus);
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@ config FEC
|
||||
depends on PTP_1588_CLOCK_OPTIONAL
|
||||
select CRC32
|
||||
select PHYLIB
|
||||
select FIXED_PHY if M5272
|
||||
select PAGE_POOL
|
||||
imply PAGE_POOL_STATS
|
||||
imply NET_SELFTESTS
|
||||
|
||||
@@ -52,6 +52,7 @@
|
||||
#include <linux/of_net.h>
|
||||
#include <linux/phy.h>
|
||||
#include <linux/pinctrl/consumer.h>
|
||||
#include <linux/phy_fixed.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
#include <linux/prefetch.h>
|
||||
@@ -2472,11 +2473,8 @@ static int fec_enet_parse_rgmii_delay(struct fec_enet_private *fep,
|
||||
static int fec_enet_mii_probe(struct net_device *ndev)
|
||||
{
|
||||
struct fec_enet_private *fep = netdev_priv(ndev);
|
||||
struct phy_device *phy_dev = NULL;
|
||||
char mdio_bus_id[MII_BUS_ID_SIZE];
|
||||
char phy_name[MII_BUS_ID_SIZE + 3];
|
||||
int phy_id;
|
||||
int dev_id = fep->dev_id;
|
||||
struct phy_device *phy_dev;
|
||||
int ret;
|
||||
|
||||
if (fep->phy_node) {
|
||||
phy_dev = of_phy_connect(ndev, fep->phy_node,
|
||||
@@ -2488,30 +2486,28 @@ static int fec_enet_mii_probe(struct net_device *ndev)
|
||||
}
|
||||
} else {
|
||||
/* check for attached phy */
|
||||
for (phy_id = 0; (phy_id < PHY_MAX_ADDR); phy_id++) {
|
||||
if (!mdiobus_is_registered_device(fep->mii_bus, phy_id))
|
||||
continue;
|
||||
if (dev_id--)
|
||||
continue;
|
||||
strscpy(mdio_bus_id, fep->mii_bus->id, MII_BUS_ID_SIZE);
|
||||
break;
|
||||
}
|
||||
phy_dev = phy_find_first(fep->mii_bus);
|
||||
if (fep->dev_id && phy_dev)
|
||||
phy_dev = phy_find_next(fep->mii_bus, phy_dev);
|
||||
|
||||
if (phy_id >= PHY_MAX_ADDR) {
|
||||
if (!phy_dev) {
|
||||
netdev_info(ndev, "no PHY, assuming direct connection to switch\n");
|
||||
strscpy(mdio_bus_id, "fixed-0", MII_BUS_ID_SIZE);
|
||||
phy_id = 0;
|
||||
phy_dev = fixed_phy_register_100fd();
|
||||
if (IS_ERR(phy_dev)) {
|
||||
netdev_err(ndev, "could not register fixed PHY\n");
|
||||
return PTR_ERR(phy_dev);
|
||||
}
|
||||
}
|
||||
|
||||
snprintf(phy_name, sizeof(phy_name),
|
||||
PHY_ID_FMT, mdio_bus_id, phy_id);
|
||||
phy_dev = phy_connect(ndev, phy_name, &fec_enet_adjust_link,
|
||||
fep->phy_interface);
|
||||
}
|
||||
ret = phy_connect_direct(ndev, phy_dev, &fec_enet_adjust_link,
|
||||
fep->phy_interface);
|
||||
if (ret) {
|
||||
if (phy_is_pseudo_fixed_link(phy_dev))
|
||||
fixed_phy_unregister(phy_dev);
|
||||
netdev_err(ndev, "could not attach to PHY\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (IS_ERR(phy_dev)) {
|
||||
netdev_err(ndev, "could not attach to PHY\n");
|
||||
return PTR_ERR(phy_dev);
|
||||
}
|
||||
|
||||
/* mask with MAC supported features */
|
||||
@@ -3616,8 +3612,9 @@ static int
|
||||
fec_enet_close(struct net_device *ndev)
|
||||
{
|
||||
struct fec_enet_private *fep = netdev_priv(ndev);
|
||||
struct phy_device *phy_dev = ndev->phydev;
|
||||
|
||||
phy_stop(ndev->phydev);
|
||||
phy_stop(phy_dev);
|
||||
|
||||
if (netif_device_present(ndev)) {
|
||||
napi_disable(&fep->napi);
|
||||
@@ -3625,7 +3622,10 @@ fec_enet_close(struct net_device *ndev)
|
||||
fec_stop(ndev);
|
||||
}
|
||||
|
||||
phy_disconnect(ndev->phydev);
|
||||
phy_disconnect(phy_dev);
|
||||
|
||||
if (!fep->phy_node && phy_is_pseudo_fixed_link(phy_dev))
|
||||
fixed_phy_unregister(phy_dev);
|
||||
|
||||
if (fep->quirks & FEC_QUIRK_ERR006687)
|
||||
imx6q_cpuidle_fec_irqs_unused();
|
||||
|
||||
@@ -131,12 +131,6 @@ static int __fixed_phy_add(int phy_addr,
|
||||
return 0;
|
||||
}
|
||||
|
||||
void fixed_phy_add(const struct fixed_phy_status *status)
|
||||
{
|
||||
__fixed_phy_add(0, status);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(fixed_phy_add);
|
||||
|
||||
static DEFINE_IDA(phy_fixed_ida);
|
||||
|
||||
static void fixed_phy_del(int phy_addr)
|
||||
@@ -227,6 +221,18 @@ struct phy_device *fixed_phy_register(const struct fixed_phy_status *status,
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(fixed_phy_register);
|
||||
|
||||
struct phy_device *fixed_phy_register_100fd(void)
|
||||
{
|
||||
static const struct fixed_phy_status status = {
|
||||
.link = 1,
|
||||
.speed = SPEED_100,
|
||||
.duplex = DUPLEX_FULL,
|
||||
};
|
||||
|
||||
return fixed_phy_register(&status, NULL);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(fixed_phy_register_100fd);
|
||||
|
||||
void fixed_phy_unregister(struct phy_device *phy)
|
||||
{
|
||||
phy_device_remove(phy);
|
||||
|
||||
@@ -17,16 +17,15 @@ struct net_device;
|
||||
|
||||
#if IS_ENABLED(CONFIG_FIXED_PHY)
|
||||
extern int fixed_phy_change_carrier(struct net_device *dev, bool new_carrier);
|
||||
void fixed_phy_add(const struct fixed_phy_status *status);
|
||||
struct phy_device *fixed_phy_register(const struct fixed_phy_status *status,
|
||||
struct device_node *np);
|
||||
struct phy_device *fixed_phy_register_100fd(void);
|
||||
|
||||
extern void fixed_phy_unregister(struct phy_device *phydev);
|
||||
extern int fixed_phy_set_link_update(struct phy_device *phydev,
|
||||
int (*link_update)(struct net_device *,
|
||||
struct fixed_phy_status *));
|
||||
#else
|
||||
static inline void fixed_phy_add(const struct fixed_phy_status *status) {}
|
||||
static inline struct phy_device *
|
||||
fixed_phy_register(const struct fixed_phy_status *status,
|
||||
struct device_node *np)
|
||||
@@ -34,6 +33,11 @@ fixed_phy_register(const struct fixed_phy_status *status,
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
static inline struct phy_device *fixed_phy_register_100fd(void)
|
||||
{
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
static inline void fixed_phy_unregister(struct phy_device *phydev)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user