Merge branch 'net-phy-move-phy-package-code-to-its-own-source-file'
Heiner Kallweit says: ==================== net: phy: move PHY package code to its own source file This series contributes to cleaning up phylib by moving PHY package related code to its own source file. ==================== Link: https://patch.msgid.link/5c5e60b3-0378-4960-8cf0-07ce0e219c68@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
# Makefile for Linux PHY drivers
|
||||
|
||||
libphy-y := phy.o phy-c45.o phy-core.o phy_device.o \
|
||||
linkmode.o phy_link_topology.o
|
||||
linkmode.o phy_link_topology.o \
|
||||
phy_package.o
|
||||
mdio-bus-y += mdio_bus.o mdio_device.o
|
||||
|
||||
ifdef CONFIG_MDIO_DEVICE
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/phy.h>
|
||||
|
||||
#include "phylib.h"
|
||||
#include "bcm-phy-lib.h"
|
||||
|
||||
/* RDB per-port registers
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
#include <linux/phy.h>
|
||||
#include <linux/regmap.h>
|
||||
|
||||
#include "../phylib.h"
|
||||
#include "mtk.h"
|
||||
|
||||
#define MTK_GPHY_ID_MT7981 0x03a29461
|
||||
@@ -1278,7 +1279,7 @@ static int mt798x_phy_led_hw_control_set(struct phy_device *phydev, u8 index,
|
||||
|
||||
static bool mt7988_phy_led_get_polarity(struct phy_device *phydev, int led_num)
|
||||
{
|
||||
struct mtk_socphy_shared *priv = phydev->shared->priv;
|
||||
struct mtk_socphy_shared *priv = phy_package_get_priv(phydev);
|
||||
u32 polarities;
|
||||
|
||||
if (led_num == 0)
|
||||
@@ -1317,7 +1318,7 @@ static int mt7988_phy_fix_leds_polarities(struct phy_device *phydev)
|
||||
static int mt7988_phy_probe_shared(struct phy_device *phydev)
|
||||
{
|
||||
struct device_node *np = dev_of_node(&phydev->mdio.bus->dev);
|
||||
struct mtk_socphy_shared *shared = phydev->shared->priv;
|
||||
struct mtk_socphy_shared *shared = phy_package_get_priv(phydev);
|
||||
struct regmap *regmap;
|
||||
u32 reg;
|
||||
int ret;
|
||||
@@ -1368,7 +1369,7 @@ static int mt7988_phy_probe(struct phy_device *phydev)
|
||||
return err;
|
||||
}
|
||||
|
||||
shared = phydev->shared->priv;
|
||||
shared = phy_package_get_priv(phydev);
|
||||
priv = &shared->priv[phydev->mdio.addr];
|
||||
|
||||
phydev->priv = priv;
|
||||
|
||||
@@ -34,6 +34,8 @@
|
||||
#include <linux/net_tstamp.h>
|
||||
#include <linux/gpio/consumer.h>
|
||||
|
||||
#include "phylib.h"
|
||||
|
||||
/* Operation Mode Strap Override */
|
||||
#define MII_KSZPHY_OMSO 0x16
|
||||
#define KSZPHY_OMSO_FACTORY_TEST BIT(15)
|
||||
@@ -2631,8 +2633,7 @@ static void lan8814_ptp_tx_ts_get(struct phy_device *phydev,
|
||||
static int lan8814_ts_info(struct mii_timestamper *mii_ts, struct kernel_ethtool_ts_info *info)
|
||||
{
|
||||
struct kszphy_ptp_priv *ptp_priv = container_of(mii_ts, struct kszphy_ptp_priv, mii_ts);
|
||||
struct phy_device *phydev = ptp_priv->phydev;
|
||||
struct lan8814_shared_priv *shared = phydev->shared->priv;
|
||||
struct lan8814_shared_priv *shared = phy_package_get_priv(ptp_priv->phydev);
|
||||
|
||||
info->so_timestamping = SOF_TIMESTAMPING_TX_HARDWARE |
|
||||
SOF_TIMESTAMPING_RX_HARDWARE |
|
||||
@@ -3653,7 +3654,7 @@ static int lan8814_gpio_process_cap(struct lan8814_shared_priv *shared)
|
||||
|
||||
static int lan8814_handle_gpio_interrupt(struct phy_device *phydev, u16 status)
|
||||
{
|
||||
struct lan8814_shared_priv *shared = phydev->shared->priv;
|
||||
struct lan8814_shared_priv *shared = phy_package_get_priv(phydev);
|
||||
int ret;
|
||||
|
||||
mutex_lock(&shared->shared_lock);
|
||||
@@ -3864,7 +3865,7 @@ static void lan8814_ptp_init(struct phy_device *phydev)
|
||||
|
||||
static int lan8814_ptp_probe_once(struct phy_device *phydev)
|
||||
{
|
||||
struct lan8814_shared_priv *shared = phydev->shared->priv;
|
||||
struct lan8814_shared_priv *shared = phy_package_get_priv(phydev);
|
||||
|
||||
/* Initialise shared lock for clock*/
|
||||
mutex_init(&shared->shared_lock);
|
||||
|
||||
@@ -17,6 +17,8 @@
|
||||
#include <linux/of.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include <dt-bindings/net/mscc-phy-vsc8531.h>
|
||||
|
||||
#include "../phylib.h"
|
||||
#include "mscc_serdes.h"
|
||||
#include "mscc.h"
|
||||
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
#include <linux/udp.h>
|
||||
#include <linux/unaligned.h>
|
||||
|
||||
#include "../phylib.h"
|
||||
#include "mscc.h"
|
||||
#include "mscc_ptp.h"
|
||||
|
||||
@@ -645,11 +646,12 @@ static int __vsc85xx_gettime(struct ptp_clock_info *info, struct timespec64 *ts)
|
||||
{
|
||||
struct vsc85xx_ptp *ptp = container_of(info, struct vsc85xx_ptp, caps);
|
||||
struct phy_device *phydev = ptp->phydev;
|
||||
struct vsc85xx_shared_private *shared =
|
||||
(struct vsc85xx_shared_private *)phydev->shared->priv;
|
||||
struct vsc8531_private *priv = phydev->priv;
|
||||
struct vsc85xx_shared_private *shared;
|
||||
u32 val;
|
||||
|
||||
shared = phy_package_get_priv(phydev);
|
||||
|
||||
val = vsc85xx_ts_read_csr(phydev, PROCESSOR, MSCC_PHY_PTP_LTC_CTRL);
|
||||
val |= PTP_LTC_CTRL_SAVE_ENA;
|
||||
vsc85xx_ts_write_csr(phydev, PROCESSOR, MSCC_PHY_PTP_LTC_CTRL, val);
|
||||
@@ -696,11 +698,12 @@ static int __vsc85xx_settime(struct ptp_clock_info *info,
|
||||
{
|
||||
struct vsc85xx_ptp *ptp = container_of(info, struct vsc85xx_ptp, caps);
|
||||
struct phy_device *phydev = ptp->phydev;
|
||||
struct vsc85xx_shared_private *shared =
|
||||
(struct vsc85xx_shared_private *)phydev->shared->priv;
|
||||
struct vsc8531_private *priv = phydev->priv;
|
||||
struct vsc85xx_shared_private *shared;
|
||||
u32 val;
|
||||
|
||||
shared = phy_package_get_priv(phydev);
|
||||
|
||||
vsc85xx_ts_write_csr(phydev, PROCESSOR, MSCC_PHY_PTP_LTC_LOAD_SEC_MSB,
|
||||
PTP_LTC_LOAD_SEC_MSB(ts->tv_sec));
|
||||
vsc85xx_ts_write_csr(phydev, PROCESSOR, MSCC_PHY_PTP_LTC_LOAD_SEC_LSB,
|
||||
@@ -1580,8 +1583,7 @@ int vsc8584_ptp_probe(struct phy_device *phydev)
|
||||
|
||||
int vsc8584_ptp_probe_once(struct phy_device *phydev)
|
||||
{
|
||||
struct vsc85xx_shared_private *shared =
|
||||
(struct vsc85xx_shared_private *)phydev->shared->priv;
|
||||
struct vsc85xx_shared_private *shared = phy_package_get_priv(phydev);
|
||||
|
||||
/* Initialize shared GPIO lock */
|
||||
mutex_init(&shared->gpio_lock);
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include <linux/phy.h>
|
||||
#include <linux/of.h>
|
||||
|
||||
#include "phylib.h"
|
||||
#include "phylib-internal.h"
|
||||
|
||||
/**
|
||||
|
||||
@@ -1686,243 +1686,6 @@ bool phy_driver_is_genphy_10g(struct phy_device *phydev)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_driver_is_genphy_10g);
|
||||
|
||||
/**
|
||||
* phy_package_join - join a common PHY group
|
||||
* @phydev: target phy_device struct
|
||||
* @base_addr: cookie and base PHY address of PHY package for offset
|
||||
* calculation of global register access
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* This joins a PHY group and provides a shared storage for all phydevs in
|
||||
* this group. This is intended to be used for packages which contain
|
||||
* more than one PHY, for example a quad PHY transceiver.
|
||||
*
|
||||
* The base_addr parameter serves as cookie which has to have the same values
|
||||
* for all members of one group and as the base PHY address of the PHY package
|
||||
* for offset calculation to access generic registers of a PHY package.
|
||||
* Usually, one of the PHY addresses of the different PHYs in the package
|
||||
* provides access to these global registers.
|
||||
* The address which is given here, will be used in the phy_package_read()
|
||||
* and phy_package_write() convenience functions as base and added to the
|
||||
* passed offset in those functions.
|
||||
*
|
||||
* This will set the shared pointer of the phydev to the shared storage.
|
||||
* If this is the first call for a this cookie the shared storage will be
|
||||
* allocated. If priv_size is non-zero, the given amount of bytes are
|
||||
* allocated for the priv member.
|
||||
*
|
||||
* Returns < 1 on error, 0 on success. Esp. calling phy_package_join()
|
||||
* with the same cookie but a different priv_size is an error.
|
||||
*/
|
||||
int phy_package_join(struct phy_device *phydev, int base_addr, size_t priv_size)
|
||||
{
|
||||
struct mii_bus *bus = phydev->mdio.bus;
|
||||
struct phy_package_shared *shared;
|
||||
int ret;
|
||||
|
||||
if (base_addr < 0 || base_addr >= PHY_MAX_ADDR)
|
||||
return -EINVAL;
|
||||
|
||||
mutex_lock(&bus->shared_lock);
|
||||
shared = bus->shared[base_addr];
|
||||
if (!shared) {
|
||||
ret = -ENOMEM;
|
||||
shared = kzalloc(sizeof(*shared), GFP_KERNEL);
|
||||
if (!shared)
|
||||
goto err_unlock;
|
||||
if (priv_size) {
|
||||
shared->priv = kzalloc(priv_size, GFP_KERNEL);
|
||||
if (!shared->priv)
|
||||
goto err_free;
|
||||
shared->priv_size = priv_size;
|
||||
}
|
||||
shared->base_addr = base_addr;
|
||||
shared->np = NULL;
|
||||
refcount_set(&shared->refcnt, 1);
|
||||
bus->shared[base_addr] = shared;
|
||||
} else {
|
||||
ret = -EINVAL;
|
||||
if (priv_size && priv_size != shared->priv_size)
|
||||
goto err_unlock;
|
||||
refcount_inc(&shared->refcnt);
|
||||
}
|
||||
mutex_unlock(&bus->shared_lock);
|
||||
|
||||
phydev->shared = shared;
|
||||
|
||||
return 0;
|
||||
|
||||
err_free:
|
||||
kfree(shared);
|
||||
err_unlock:
|
||||
mutex_unlock(&bus->shared_lock);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_join);
|
||||
|
||||
/**
|
||||
* of_phy_package_join - join a common PHY group in PHY package
|
||||
* @phydev: target phy_device struct
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* This is a variant of phy_package_join for PHY package defined in DT.
|
||||
*
|
||||
* The parent node of the @phydev is checked as a valid PHY package node
|
||||
* structure (by matching the node name "ethernet-phy-package") and the
|
||||
* base_addr for the PHY package is passed to phy_package_join.
|
||||
*
|
||||
* With this configuration the shared struct will also have the np value
|
||||
* filled to use additional DT defined properties in PHY specific
|
||||
* probe_once and config_init_once PHY package OPs.
|
||||
*
|
||||
* Returns < 0 on error, 0 on success. Esp. calling phy_package_join()
|
||||
* with the same cookie but a different priv_size is an error. Or a parent
|
||||
* node is not detected or is not valid or doesn't match the expected node
|
||||
* name for PHY package.
|
||||
*/
|
||||
int of_phy_package_join(struct phy_device *phydev, size_t priv_size)
|
||||
{
|
||||
struct device_node *node = phydev->mdio.dev.of_node;
|
||||
struct device_node *package_node;
|
||||
u32 base_addr;
|
||||
int ret;
|
||||
|
||||
if (!node)
|
||||
return -EINVAL;
|
||||
|
||||
package_node = of_get_parent(node);
|
||||
if (!package_node)
|
||||
return -EINVAL;
|
||||
|
||||
if (!of_node_name_eq(package_node, "ethernet-phy-package")) {
|
||||
ret = -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
if (of_property_read_u32(package_node, "reg", &base_addr)) {
|
||||
ret = -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
ret = phy_package_join(phydev, base_addr, priv_size);
|
||||
if (ret)
|
||||
goto exit;
|
||||
|
||||
phydev->shared->np = package_node;
|
||||
|
||||
return 0;
|
||||
exit:
|
||||
of_node_put(package_node);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(of_phy_package_join);
|
||||
|
||||
/**
|
||||
* phy_package_leave - leave a common PHY group
|
||||
* @phydev: target phy_device struct
|
||||
*
|
||||
* This leaves a PHY group created by phy_package_join(). If this phydev
|
||||
* was the last user of the shared data between the group, this data is
|
||||
* freed. Resets the phydev->shared pointer to NULL.
|
||||
*/
|
||||
void phy_package_leave(struct phy_device *phydev)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
struct mii_bus *bus = phydev->mdio.bus;
|
||||
|
||||
if (!shared)
|
||||
return;
|
||||
|
||||
/* Decrease the node refcount on leave if present */
|
||||
if (shared->np)
|
||||
of_node_put(shared->np);
|
||||
|
||||
if (refcount_dec_and_mutex_lock(&shared->refcnt, &bus->shared_lock)) {
|
||||
bus->shared[shared->base_addr] = NULL;
|
||||
mutex_unlock(&bus->shared_lock);
|
||||
kfree(shared->priv);
|
||||
kfree(shared);
|
||||
}
|
||||
|
||||
phydev->shared = NULL;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_leave);
|
||||
|
||||
static void devm_phy_package_leave(struct device *dev, void *res)
|
||||
{
|
||||
phy_package_leave(*(struct phy_device **)res);
|
||||
}
|
||||
|
||||
/**
|
||||
* devm_phy_package_join - resource managed phy_package_join()
|
||||
* @dev: device that is registering this PHY package
|
||||
* @phydev: target phy_device struct
|
||||
* @base_addr: cookie and base PHY address of PHY package for offset
|
||||
* calculation of global register access
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* Managed phy_package_join(). Shared storage fetched by this function,
|
||||
* phy_package_leave() is automatically called on driver detach. See
|
||||
* phy_package_join() for more information.
|
||||
*/
|
||||
int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
int base_addr, size_t priv_size)
|
||||
{
|
||||
struct phy_device **ptr;
|
||||
int ret;
|
||||
|
||||
ptr = devres_alloc(devm_phy_package_leave, sizeof(*ptr),
|
||||
GFP_KERNEL);
|
||||
if (!ptr)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = phy_package_join(phydev, base_addr, priv_size);
|
||||
|
||||
if (!ret) {
|
||||
*ptr = phydev;
|
||||
devres_add(dev, ptr);
|
||||
} else {
|
||||
devres_free(ptr);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(devm_phy_package_join);
|
||||
|
||||
/**
|
||||
* devm_of_phy_package_join - resource managed of_phy_package_join()
|
||||
* @dev: device that is registering this PHY package
|
||||
* @phydev: target phy_device struct
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* Managed of_phy_package_join(). Shared storage fetched by this function,
|
||||
* phy_package_leave() is automatically called on driver detach. See
|
||||
* of_phy_package_join() for more information.
|
||||
*/
|
||||
int devm_of_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
size_t priv_size)
|
||||
{
|
||||
struct phy_device **ptr;
|
||||
int ret;
|
||||
|
||||
ptr = devres_alloc(devm_phy_package_leave, sizeof(*ptr),
|
||||
GFP_KERNEL);
|
||||
if (!ptr)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = of_phy_package_join(phydev, priv_size);
|
||||
|
||||
if (!ret) {
|
||||
*ptr = phydev;
|
||||
devres_add(dev, ptr);
|
||||
} else {
|
||||
devres_free(ptr);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(devm_of_phy_package_join);
|
||||
|
||||
/**
|
||||
* phy_detach - detach a PHY device from its network device
|
||||
* @phydev: target phy_device struct
|
||||
|
||||
@@ -0,0 +1,350 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
/*
|
||||
* PHY package support
|
||||
*/
|
||||
|
||||
#include <linux/of.h>
|
||||
#include <linux/phy.h>
|
||||
|
||||
#include "phylib.h"
|
||||
#include "phylib-internal.h"
|
||||
|
||||
/**
|
||||
* struct phy_package_shared - Shared information in PHY packages
|
||||
* @base_addr: Base PHY address of PHY package used to combine PHYs
|
||||
* in one package and for offset calculation of phy_package_read/write
|
||||
* @np: Pointer to the Device Node if PHY package defined in DT
|
||||
* @refcnt: Number of PHYs connected to this shared data
|
||||
* @flags: Initialization of PHY package
|
||||
* @priv_size: Size of the shared private data @priv
|
||||
* @priv: Driver private data shared across a PHY package
|
||||
*
|
||||
* Represents a shared structure between different phydev's in the same
|
||||
* package, for example a quad PHY. See phy_package_join() and
|
||||
* phy_package_leave().
|
||||
*/
|
||||
struct phy_package_shared {
|
||||
u8 base_addr;
|
||||
/* With PHY package defined in DT this points to the PHY package node */
|
||||
struct device_node *np;
|
||||
refcount_t refcnt;
|
||||
unsigned long flags;
|
||||
size_t priv_size;
|
||||
|
||||
/* private data pointer */
|
||||
/* note that this pointer is shared between different phydevs and
|
||||
* the user has to take care of appropriate locking. It is allocated
|
||||
* and freed automatically by phy_package_join() and
|
||||
* phy_package_leave().
|
||||
*/
|
||||
void *priv;
|
||||
};
|
||||
|
||||
struct device_node *phy_package_get_node(struct phy_device *phydev)
|
||||
{
|
||||
return phydev->shared->np;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_get_node);
|
||||
|
||||
void *phy_package_get_priv(struct phy_device *phydev)
|
||||
{
|
||||
return phydev->shared->priv;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_get_priv);
|
||||
|
||||
int phy_package_address(struct phy_device *phydev, unsigned int addr_offset)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
u8 base_addr = shared->base_addr;
|
||||
|
||||
if (addr_offset >= PHY_MAX_ADDR - base_addr)
|
||||
return -EIO;
|
||||
|
||||
/* we know that addr will be in the range 0..31 and thus the
|
||||
* implicit cast to a signed int is not a problem.
|
||||
*/
|
||||
return base_addr + addr_offset;
|
||||
}
|
||||
|
||||
int __phy_package_read(struct phy_device *phydev, unsigned int addr_offset,
|
||||
u32 regnum)
|
||||
{
|
||||
int addr = phy_package_address(phydev, addr_offset);
|
||||
|
||||
if (addr < 0)
|
||||
return addr;
|
||||
|
||||
return __mdiobus_read(phydev->mdio.bus, addr, regnum);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(__phy_package_read);
|
||||
|
||||
int __phy_package_write(struct phy_device *phydev, unsigned int addr_offset,
|
||||
u32 regnum, u16 val)
|
||||
{
|
||||
int addr = phy_package_address(phydev, addr_offset);
|
||||
|
||||
if (addr < 0)
|
||||
return addr;
|
||||
|
||||
return __mdiobus_write(phydev->mdio.bus, addr, regnum, val);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(__phy_package_write);
|
||||
|
||||
static bool __phy_package_set_once(struct phy_device *phydev, unsigned int b)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
|
||||
if (!shared)
|
||||
return false;
|
||||
|
||||
return !test_and_set_bit(b, &shared->flags);
|
||||
}
|
||||
|
||||
bool phy_package_init_once(struct phy_device *phydev)
|
||||
{
|
||||
return __phy_package_set_once(phydev, 0);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_init_once);
|
||||
|
||||
bool phy_package_probe_once(struct phy_device *phydev)
|
||||
{
|
||||
return __phy_package_set_once(phydev, 1);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_probe_once);
|
||||
|
||||
/**
|
||||
* phy_package_join - join a common PHY group
|
||||
* @phydev: target phy_device struct
|
||||
* @base_addr: cookie and base PHY address of PHY package for offset
|
||||
* calculation of global register access
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* This joins a PHY group and provides a shared storage for all phydevs in
|
||||
* this group. This is intended to be used for packages which contain
|
||||
* more than one PHY, for example a quad PHY transceiver.
|
||||
*
|
||||
* The base_addr parameter serves as cookie which has to have the same values
|
||||
* for all members of one group and as the base PHY address of the PHY package
|
||||
* for offset calculation to access generic registers of a PHY package.
|
||||
* Usually, one of the PHY addresses of the different PHYs in the package
|
||||
* provides access to these global registers.
|
||||
* The address which is given here, will be used in the phy_package_read()
|
||||
* and phy_package_write() convenience functions as base and added to the
|
||||
* passed offset in those functions.
|
||||
*
|
||||
* This will set the shared pointer of the phydev to the shared storage.
|
||||
* If this is the first call for a this cookie the shared storage will be
|
||||
* allocated. If priv_size is non-zero, the given amount of bytes are
|
||||
* allocated for the priv member.
|
||||
*
|
||||
* Returns < 1 on error, 0 on success. Esp. calling phy_package_join()
|
||||
* with the same cookie but a different priv_size is an error.
|
||||
*/
|
||||
int phy_package_join(struct phy_device *phydev, int base_addr, size_t priv_size)
|
||||
{
|
||||
struct mii_bus *bus = phydev->mdio.bus;
|
||||
struct phy_package_shared *shared;
|
||||
int ret;
|
||||
|
||||
if (base_addr < 0 || base_addr >= PHY_MAX_ADDR)
|
||||
return -EINVAL;
|
||||
|
||||
mutex_lock(&bus->shared_lock);
|
||||
shared = bus->shared[base_addr];
|
||||
if (!shared) {
|
||||
ret = -ENOMEM;
|
||||
shared = kzalloc(sizeof(*shared), GFP_KERNEL);
|
||||
if (!shared)
|
||||
goto err_unlock;
|
||||
if (priv_size) {
|
||||
shared->priv = kzalloc(priv_size, GFP_KERNEL);
|
||||
if (!shared->priv)
|
||||
goto err_free;
|
||||
shared->priv_size = priv_size;
|
||||
}
|
||||
shared->base_addr = base_addr;
|
||||
shared->np = NULL;
|
||||
refcount_set(&shared->refcnt, 1);
|
||||
bus->shared[base_addr] = shared;
|
||||
} else {
|
||||
ret = -EINVAL;
|
||||
if (priv_size && priv_size != shared->priv_size)
|
||||
goto err_unlock;
|
||||
refcount_inc(&shared->refcnt);
|
||||
}
|
||||
mutex_unlock(&bus->shared_lock);
|
||||
|
||||
phydev->shared = shared;
|
||||
|
||||
return 0;
|
||||
|
||||
err_free:
|
||||
kfree(shared);
|
||||
err_unlock:
|
||||
mutex_unlock(&bus->shared_lock);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_join);
|
||||
|
||||
/**
|
||||
* of_phy_package_join - join a common PHY group in PHY package
|
||||
* @phydev: target phy_device struct
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* This is a variant of phy_package_join for PHY package defined in DT.
|
||||
*
|
||||
* The parent node of the @phydev is checked as a valid PHY package node
|
||||
* structure (by matching the node name "ethernet-phy-package") and the
|
||||
* base_addr for the PHY package is passed to phy_package_join.
|
||||
*
|
||||
* With this configuration the shared struct will also have the np value
|
||||
* filled to use additional DT defined properties in PHY specific
|
||||
* probe_once and config_init_once PHY package OPs.
|
||||
*
|
||||
* Returns < 0 on error, 0 on success. Esp. calling phy_package_join()
|
||||
* with the same cookie but a different priv_size is an error. Or a parent
|
||||
* node is not detected or is not valid or doesn't match the expected node
|
||||
* name for PHY package.
|
||||
*/
|
||||
int of_phy_package_join(struct phy_device *phydev, size_t priv_size)
|
||||
{
|
||||
struct device_node *node = phydev->mdio.dev.of_node;
|
||||
struct device_node *package_node;
|
||||
u32 base_addr;
|
||||
int ret;
|
||||
|
||||
if (!node)
|
||||
return -EINVAL;
|
||||
|
||||
package_node = of_get_parent(node);
|
||||
if (!package_node)
|
||||
return -EINVAL;
|
||||
|
||||
if (!of_node_name_eq(package_node, "ethernet-phy-package")) {
|
||||
ret = -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
if (of_property_read_u32(package_node, "reg", &base_addr)) {
|
||||
ret = -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
ret = phy_package_join(phydev, base_addr, priv_size);
|
||||
if (ret)
|
||||
goto exit;
|
||||
|
||||
phydev->shared->np = package_node;
|
||||
|
||||
return 0;
|
||||
exit:
|
||||
of_node_put(package_node);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(of_phy_package_join);
|
||||
|
||||
/**
|
||||
* phy_package_leave - leave a common PHY group
|
||||
* @phydev: target phy_device struct
|
||||
*
|
||||
* This leaves a PHY group created by phy_package_join(). If this phydev
|
||||
* was the last user of the shared data between the group, this data is
|
||||
* freed. Resets the phydev->shared pointer to NULL.
|
||||
*/
|
||||
void phy_package_leave(struct phy_device *phydev)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
struct mii_bus *bus = phydev->mdio.bus;
|
||||
|
||||
if (!shared)
|
||||
return;
|
||||
|
||||
/* Decrease the node refcount on leave if present */
|
||||
if (shared->np)
|
||||
of_node_put(shared->np);
|
||||
|
||||
if (refcount_dec_and_mutex_lock(&shared->refcnt, &bus->shared_lock)) {
|
||||
bus->shared[shared->base_addr] = NULL;
|
||||
mutex_unlock(&bus->shared_lock);
|
||||
kfree(shared->priv);
|
||||
kfree(shared);
|
||||
}
|
||||
|
||||
phydev->shared = NULL;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(phy_package_leave);
|
||||
|
||||
static void devm_phy_package_leave(struct device *dev, void *res)
|
||||
{
|
||||
phy_package_leave(*(struct phy_device **)res);
|
||||
}
|
||||
|
||||
/**
|
||||
* devm_phy_package_join - resource managed phy_package_join()
|
||||
* @dev: device that is registering this PHY package
|
||||
* @phydev: target phy_device struct
|
||||
* @base_addr: cookie and base PHY address of PHY package for offset
|
||||
* calculation of global register access
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* Managed phy_package_join(). Shared storage fetched by this function,
|
||||
* phy_package_leave() is automatically called on driver detach. See
|
||||
* phy_package_join() for more information.
|
||||
*/
|
||||
int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
int base_addr, size_t priv_size)
|
||||
{
|
||||
struct phy_device **ptr;
|
||||
int ret;
|
||||
|
||||
ptr = devres_alloc(devm_phy_package_leave, sizeof(*ptr),
|
||||
GFP_KERNEL);
|
||||
if (!ptr)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = phy_package_join(phydev, base_addr, priv_size);
|
||||
|
||||
if (!ret) {
|
||||
*ptr = phydev;
|
||||
devres_add(dev, ptr);
|
||||
} else {
|
||||
devres_free(ptr);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(devm_phy_package_join);
|
||||
|
||||
/**
|
||||
* devm_of_phy_package_join - resource managed of_phy_package_join()
|
||||
* @dev: device that is registering this PHY package
|
||||
* @phydev: target phy_device struct
|
||||
* @priv_size: if non-zero allocate this amount of bytes for private data
|
||||
*
|
||||
* Managed of_phy_package_join(). Shared storage fetched by this function,
|
||||
* phy_package_leave() is automatically called on driver detach. See
|
||||
* of_phy_package_join() for more information.
|
||||
*/
|
||||
int devm_of_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
size_t priv_size)
|
||||
{
|
||||
struct phy_device **ptr;
|
||||
int ret;
|
||||
|
||||
ptr = devres_alloc(devm_phy_package_leave, sizeof(*ptr),
|
||||
GFP_KERNEL);
|
||||
if (!ptr)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = of_phy_package_join(phydev, priv_size);
|
||||
|
||||
if (!ret) {
|
||||
*ptr = phydev;
|
||||
devres_add(dev, ptr);
|
||||
} else {
|
||||
devres_free(ptr);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(devm_of_phy_package_join);
|
||||
@@ -20,6 +20,8 @@ void of_set_phy_timing_role(struct phy_device *phydev);
|
||||
int phy_speed_down_core(struct phy_device *phydev);
|
||||
void phy_check_downshift(struct phy_device *phydev);
|
||||
|
||||
int phy_package_address(struct phy_device *phydev, unsigned int addr_offset);
|
||||
|
||||
int genphy_c45_read_eee_adv(struct phy_device *phydev, unsigned long *adv);
|
||||
|
||||
#endif /* __PHYLIB_INTERNAL_H */
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/*
|
||||
* phylib header
|
||||
*/
|
||||
|
||||
#ifndef __PHYLIB_H
|
||||
#define __PHYLIB_H
|
||||
|
||||
struct device_node;
|
||||
struct phy_device;
|
||||
|
||||
struct device_node *phy_package_get_node(struct phy_device *phydev);
|
||||
void *phy_package_get_priv(struct phy_device *phydev);
|
||||
int __phy_package_read(struct phy_device *phydev, unsigned int addr_offset,
|
||||
u32 regnum);
|
||||
int __phy_package_write(struct phy_device *phydev, unsigned int addr_offset,
|
||||
u32 regnum, u16 val);
|
||||
bool phy_package_init_once(struct phy_device *phydev);
|
||||
bool phy_package_probe_once(struct phy_device *phydev);
|
||||
int phy_package_join(struct phy_device *phydev, int base_addr, size_t priv_size);
|
||||
int of_phy_package_join(struct phy_device *phydev, size_t priv_size);
|
||||
void phy_package_leave(struct phy_device *phydev);
|
||||
int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
int base_addr, size_t priv_size);
|
||||
int devm_of_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
size_t priv_size);
|
||||
|
||||
#endif /* __PHYLIB_H */
|
||||
@@ -15,6 +15,7 @@
|
||||
#include <linux/gpio/driver.h>
|
||||
#include <linux/sfp.h>
|
||||
|
||||
#include "../phylib.h"
|
||||
#include "qcom.h"
|
||||
|
||||
#define QCA807X_CHIP_CONFIGURATION 0x1f
|
||||
@@ -486,13 +487,13 @@ static int qca807x_read_status(struct phy_device *phydev)
|
||||
|
||||
static int qca807x_phy_package_probe_once(struct phy_device *phydev)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
struct qca807x_shared_priv *priv = shared->priv;
|
||||
struct qca807x_shared_priv *priv = phy_package_get_priv(phydev);
|
||||
struct device_node *np = phy_package_get_node(phydev);
|
||||
unsigned int tx_drive_strength;
|
||||
const char *package_mode_name;
|
||||
|
||||
/* Default to 600mw if not defined */
|
||||
if (of_property_read_u32(shared->np, "qcom,tx-drive-strength-milliwatt",
|
||||
if (of_property_read_u32(np, "qcom,tx-drive-strength-milliwatt",
|
||||
&tx_drive_strength))
|
||||
tx_drive_strength = 600;
|
||||
|
||||
@@ -541,7 +542,7 @@ static int qca807x_phy_package_probe_once(struct phy_device *phydev)
|
||||
}
|
||||
|
||||
priv->package_mode = PHY_INTERFACE_MODE_NA;
|
||||
if (!of_property_read_string(shared->np, "qcom,package-mode",
|
||||
if (!of_property_read_string(np, "qcom,package-mode",
|
||||
&package_mode_name)) {
|
||||
if (!strcasecmp(package_mode_name,
|
||||
phy_modes(PHY_INTERFACE_MODE_PSGMII)))
|
||||
@@ -558,8 +559,7 @@ static int qca807x_phy_package_probe_once(struct phy_device *phydev)
|
||||
|
||||
static int qca807x_phy_package_config_init_once(struct phy_device *phydev)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
struct qca807x_shared_priv *priv = shared->priv;
|
||||
struct qca807x_shared_priv *priv = phy_package_get_priv(phydev);
|
||||
int val, ret;
|
||||
|
||||
/* Make sure PHY follow PHY package mode if enforced */
|
||||
@@ -708,7 +708,6 @@ static int qca807x_probe(struct phy_device *phydev)
|
||||
struct device_node *node = phydev->mdio.dev.of_node;
|
||||
struct qca807x_shared_priv *shared_priv;
|
||||
struct device *dev = &phydev->mdio.dev;
|
||||
struct phy_package_shared *shared;
|
||||
struct qca807x_priv *priv;
|
||||
int ret;
|
||||
|
||||
@@ -722,8 +721,7 @@ static int qca807x_probe(struct phy_device *phydev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
shared = phydev->shared;
|
||||
shared_priv = shared->priv;
|
||||
shared_priv = phy_package_get_priv(phydev);
|
||||
|
||||
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
||||
if (!priv)
|
||||
|
||||
@@ -319,41 +319,6 @@ struct mdio_bus_stats {
|
||||
struct u64_stats_sync syncp;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct phy_package_shared - Shared information in PHY packages
|
||||
* @base_addr: Base PHY address of PHY package used to combine PHYs
|
||||
* in one package and for offset calculation of phy_package_read/write
|
||||
* @np: Pointer to the Device Node if PHY package defined in DT
|
||||
* @refcnt: Number of PHYs connected to this shared data
|
||||
* @flags: Initialization of PHY package
|
||||
* @priv_size: Size of the shared private data @priv
|
||||
* @priv: Driver private data shared across a PHY package
|
||||
*
|
||||
* Represents a shared structure between different phydev's in the same
|
||||
* package, for example a quad PHY. See phy_package_join() and
|
||||
* phy_package_leave().
|
||||
*/
|
||||
struct phy_package_shared {
|
||||
u8 base_addr;
|
||||
/* With PHY package defined in DT this points to the PHY package node */
|
||||
struct device_node *np;
|
||||
refcount_t refcnt;
|
||||
unsigned long flags;
|
||||
size_t priv_size;
|
||||
|
||||
/* private data pointer */
|
||||
/* note that this pointer is shared between different phydevs and
|
||||
* the user has to take care of appropriate locking. It is allocated
|
||||
* and freed automatically by phy_package_join() and
|
||||
* phy_package_leave().
|
||||
*/
|
||||
void *priv;
|
||||
};
|
||||
|
||||
/* used as bit number in atomic bitops */
|
||||
#define PHY_SHARED_F_INIT_DONE 0
|
||||
#define PHY_SHARED_F_PROBE_DONE 1
|
||||
|
||||
/**
|
||||
* struct mii_bus - Represents an MDIO bus
|
||||
*
|
||||
@@ -2113,13 +2078,6 @@ int phy_ethtool_get_link_ksettings(struct net_device *ndev,
|
||||
int phy_ethtool_set_link_ksettings(struct net_device *ndev,
|
||||
const struct ethtool_link_ksettings *cmd);
|
||||
int phy_ethtool_nway_reset(struct net_device *ndev);
|
||||
int phy_package_join(struct phy_device *phydev, int base_addr, size_t priv_size);
|
||||
int of_phy_package_join(struct phy_device *phydev, size_t priv_size);
|
||||
void phy_package_leave(struct phy_device *phydev);
|
||||
int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
int base_addr, size_t priv_size);
|
||||
int devm_of_phy_package_join(struct device *dev, struct phy_device *phydev,
|
||||
size_t priv_size);
|
||||
|
||||
int __init mdio_bus_init(void);
|
||||
void mdio_bus_exit(void);
|
||||
@@ -2149,67 +2107,6 @@ int __phy_hwtstamp_set(struct phy_device *phydev,
|
||||
struct kernel_hwtstamp_config *config,
|
||||
struct netlink_ext_ack *extack);
|
||||
|
||||
static inline int phy_package_address(struct phy_device *phydev,
|
||||
unsigned int addr_offset)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
u8 base_addr = shared->base_addr;
|
||||
|
||||
if (addr_offset >= PHY_MAX_ADDR - base_addr)
|
||||
return -EIO;
|
||||
|
||||
/* we know that addr will be in the range 0..31 and thus the
|
||||
* implicit cast to a signed int is not a problem.
|
||||
*/
|
||||
return base_addr + addr_offset;
|
||||
}
|
||||
|
||||
static inline int phy_package_read(struct phy_device *phydev,
|
||||
unsigned int addr_offset, u32 regnum)
|
||||
{
|
||||
int addr = phy_package_address(phydev, addr_offset);
|
||||
|
||||
if (addr < 0)
|
||||
return addr;
|
||||
|
||||
return mdiobus_read(phydev->mdio.bus, addr, regnum);
|
||||
}
|
||||
|
||||
static inline int __phy_package_read(struct phy_device *phydev,
|
||||
unsigned int addr_offset, u32 regnum)
|
||||
{
|
||||
int addr = phy_package_address(phydev, addr_offset);
|
||||
|
||||
if (addr < 0)
|
||||
return addr;
|
||||
|
||||
return __mdiobus_read(phydev->mdio.bus, addr, regnum);
|
||||
}
|
||||
|
||||
static inline int phy_package_write(struct phy_device *phydev,
|
||||
unsigned int addr_offset, u32 regnum,
|
||||
u16 val)
|
||||
{
|
||||
int addr = phy_package_address(phydev, addr_offset);
|
||||
|
||||
if (addr < 0)
|
||||
return addr;
|
||||
|
||||
return mdiobus_write(phydev->mdio.bus, addr, regnum, val);
|
||||
}
|
||||
|
||||
static inline int __phy_package_write(struct phy_device *phydev,
|
||||
unsigned int addr_offset, u32 regnum,
|
||||
u16 val)
|
||||
{
|
||||
int addr = phy_package_address(phydev, addr_offset);
|
||||
|
||||
if (addr < 0)
|
||||
return addr;
|
||||
|
||||
return __mdiobus_write(phydev->mdio.bus, addr, regnum, val);
|
||||
}
|
||||
|
||||
int __phy_package_read_mmd(struct phy_device *phydev,
|
||||
unsigned int addr_offset, int devad,
|
||||
u32 regnum);
|
||||
@@ -2226,27 +2123,6 @@ int phy_package_write_mmd(struct phy_device *phydev,
|
||||
unsigned int addr_offset, int devad,
|
||||
u32 regnum, u16 val);
|
||||
|
||||
static inline bool __phy_package_set_once(struct phy_device *phydev,
|
||||
unsigned int b)
|
||||
{
|
||||
struct phy_package_shared *shared = phydev->shared;
|
||||
|
||||
if (!shared)
|
||||
return false;
|
||||
|
||||
return !test_and_set_bit(b, &shared->flags);
|
||||
}
|
||||
|
||||
static inline bool phy_package_init_once(struct phy_device *phydev)
|
||||
{
|
||||
return __phy_package_set_once(phydev, PHY_SHARED_F_INIT_DONE);
|
||||
}
|
||||
|
||||
static inline bool phy_package_probe_once(struct phy_device *phydev)
|
||||
{
|
||||
return __phy_package_set_once(phydev, PHY_SHARED_F_PROBE_DONE);
|
||||
}
|
||||
|
||||
extern const struct bus_type mdio_bus_type;
|
||||
|
||||
struct mdio_board_info {
|
||||
|
||||
Reference in New Issue
Block a user