diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2017-02-04 22:02:44 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-07 16:51:46 +0100 |
commit | 648ea0134069cda7d4940f397bcc6901fb88752a (patch) | |
tree | 2e898d9c56777f31708c0292170eae5d76c13882 /drivers/net/phy/mdio-boardinfo.h | |
parent | net: dsa: Add support for platform data (diff) | |
download | linux-648ea0134069cda7d4940f397bcc6901fb88752a.tar.xz linux-648ea0134069cda7d4940f397bcc6901fb88752a.zip |
net: phy: Allow pre-declaration of MDIO devices
Allow board support code to collect pre-declarations for MDIO devices by
registering them with mdiobus_register_board_info(). SPI and I2C buses
have a similar feature, we were missing this for MDIO devices, but this
is particularly useful for e.g: MDIO-connected switches which need to
provide their port layout (often board-specific) to a MDIO Ethernet
switch driver.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/mdio-boardinfo.h')
-rw-r--r-- | drivers/net/phy/mdio-boardinfo.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/net/phy/mdio-boardinfo.h b/drivers/net/phy/mdio-boardinfo.h new file mode 100644 index 000000000000..00f98163e90e --- /dev/null +++ b/drivers/net/phy/mdio-boardinfo.h @@ -0,0 +1,19 @@ +/* + * mdio-boardinfo.h - board info interface internal to the mdio_bus + * component + */ + +#ifndef __MDIO_BOARD_INFO_H +#define __MDIO_BOARD_INFO_H + +#include <linux/phy.h> +#include <linux/mutex.h> + +struct mdio_board_entry { + struct list_head list; + struct mdio_board_info board_info; +}; + +void mdiobus_setup_mdiodev_from_board_info(struct mii_bus *bus); + +#endif /* __MDIO_BOARD_INFO_H */ |