2009-04-25 12:52:56 +00:00
|
|
|
/*
|
|
|
|
* OF helpers for the MDIO (Ethernet PHY) API
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Secret Lab Technologies, Ltd.
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_OF_MDIO_H
|
|
|
|
#define __LINUX_OF_MDIO_H
|
|
|
|
|
|
|
|
#include <linux/phy.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
|
2017-03-23 17:01:17 +00:00
|
|
|
#if IS_ENABLED(CONFIG_OF_MDIO)
|
2009-04-25 12:52:56 +00:00
|
|
|
extern int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np);
|
|
|
|
extern struct phy_device *of_phy_find_device(struct device_node *phy_np);
|
|
|
|
extern struct phy_device *of_phy_connect(struct net_device *dev,
|
|
|
|
struct device_node *phy_np,
|
|
|
|
void (*hndlr)(struct net_device *),
|
|
|
|
u32 flags, phy_interface_t iface);
|
2016-07-15 08:26:34 +00:00
|
|
|
extern struct phy_device *
|
|
|
|
of_phy_get_and_connect(struct net_device *dev, struct device_node *np,
|
|
|
|
void (*hndlr)(struct net_device *));
|
2014-01-10 06:28:11 +00:00
|
|
|
struct phy_device *of_phy_attach(struct net_device *dev,
|
|
|
|
struct device_node *phy_np, u32 flags,
|
|
|
|
phy_interface_t iface);
|
2009-04-25 12:52:56 +00:00
|
|
|
|
2012-05-02 15:16:37 +00:00
|
|
|
extern struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np);
|
2016-06-24 09:24:08 +00:00
|
|
|
extern int of_phy_register_fixed_link(struct device_node *np);
|
2016-11-28 18:24:55 +00:00
|
|
|
extern void of_phy_deregister_fixed_link(struct device_node *np);
|
2016-06-24 09:24:08 +00:00
|
|
|
extern bool of_phy_is_fixed_link(struct device_node *np);
|
2012-05-02 15:16:37 +00:00
|
|
|
|
2017-06-13 14:56:08 +00:00
|
|
|
|
|
|
|
static inline int of_mdio_parse_addr(struct device *dev,
|
|
|
|
const struct device_node *np)
|
|
|
|
{
|
|
|
|
u32 addr;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = of_property_read_u32(np, "reg", &addr);
|
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(dev, "%s has invalid PHY address\n", np->full_name);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A PHY must have a reg property in the range [0-31] */
|
|
|
|
if (addr >= PHY_MAX_ADDR) {
|
|
|
|
dev_err(dev, "%s PHY address %i is too large\n",
|
|
|
|
np->full_name, addr);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2017-03-23 17:01:17 +00:00
|
|
|
#else /* CONFIG_OF_MDIO */
|
2012-10-09 18:33:38 +00:00
|
|
|
static inline int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
|
2012-08-24 01:58:59 +00:00
|
|
|
{
|
2014-05-06 16:52:16 +00:00
|
|
|
/*
|
|
|
|
* Fall back to the non-DT function to register a bus.
|
|
|
|
* This way, we don't have to keep compat bits around in drivers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return mdiobus_register(mdio);
|
2012-08-24 01:58:59 +00:00
|
|
|
}
|
|
|
|
|
2012-10-09 18:33:38 +00:00
|
|
|
static inline struct phy_device *of_phy_find_device(struct device_node *phy_np)
|
2012-08-24 01:58:59 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-09 18:33:38 +00:00
|
|
|
static inline struct phy_device *of_phy_connect(struct net_device *dev,
|
|
|
|
struct device_node *phy_np,
|
|
|
|
void (*hndlr)(struct net_device *),
|
|
|
|
u32 flags, phy_interface_t iface)
|
2012-08-24 01:58:59 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-07-15 08:26:34 +00:00
|
|
|
static inline struct phy_device *
|
|
|
|
of_phy_get_and_connect(struct net_device *dev, struct device_node *np,
|
|
|
|
void (*hndlr)(struct net_device *))
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-01-10 06:28:11 +00:00
|
|
|
static inline struct phy_device *of_phy_attach(struct net_device *dev,
|
|
|
|
struct device_node *phy_np,
|
|
|
|
u32 flags, phy_interface_t iface)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-09 18:33:38 +00:00
|
|
|
static inline struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np)
|
2012-08-24 01:58:59 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-10 23:57:11 +00:00
|
|
|
|
|
|
|
static inline int of_mdio_parse_addr(struct device *dev,
|
|
|
|
const struct device_node *np)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2014-05-16 14:14:05 +00:00
|
|
|
static inline int of_phy_register_fixed_link(struct device_node *np)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2016-11-28 18:24:55 +00:00
|
|
|
static inline void of_phy_deregister_fixed_link(struct device_node *np)
|
|
|
|
{
|
|
|
|
}
|
2014-05-16 14:14:05 +00:00
|
|
|
static inline bool of_phy_is_fixed_link(struct device_node *np)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-04-25 12:52:56 +00:00
|
|
|
#endif /* __LINUX_OF_MDIO_H */
|