of_mdio.h 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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>

15
#ifdef CONFIG_OF
16 17 18 19 20 21
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);
22 23 24
extern struct phy_device *
of_phy_get_and_connect(struct net_device *dev, struct device_node *np,
		       void (*hndlr)(struct net_device *));
A
Andy Fleming 已提交
25 26 27
struct phy_device *of_phy_attach(struct net_device *dev,
				 struct device_node *phy_np, u32 flags,
				 phy_interface_t iface);
28

29
extern struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np);
30
extern int of_mdio_parse_addr(struct device *dev, const struct device_node *np);
31
extern int of_phy_register_fixed_link(struct device_node *np);
32
extern void of_phy_deregister_fixed_link(struct device_node *np);
33
extern bool of_phy_is_fixed_link(struct device_node *np);
34

35
#else /* CONFIG_OF */
M
Mark Brown 已提交
36
static inline int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
37
{
38 39 40 41 42 43
	/*
	 * 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);
44 45
}

M
Mark Brown 已提交
46
static inline struct phy_device *of_phy_find_device(struct device_node *phy_np)
47 48 49 50
{
	return NULL;
}

M
Mark Brown 已提交
51 52 53 54
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)
55 56 57 58
{
	return NULL;
}

59 60 61 62 63 64 65
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;
}

A
Andy Fleming 已提交
66 67 68 69 70 71 72
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;
}

M
Mark Brown 已提交
73
static inline struct mii_bus *of_mdio_find_bus(struct device_node *mdio_np)
74 75 76
{
	return NULL;
}
77 78 79 80 81 82

static inline int of_mdio_parse_addr(struct device *dev,
				     const struct device_node *np)
{
	return -ENOSYS;
}
83 84 85 86
static inline int of_phy_register_fixed_link(struct device_node *np)
{
	return -ENOSYS;
}
87 88 89
static inline void of_phy_deregister_fixed_link(struct device_node *np)
{
}
90 91 92 93 94 95 96
static inline bool of_phy_is_fixed_link(struct device_node *np)
{
	return false;
}
#endif


97
#endif /* __LINUX_OF_MDIO_H */