本文主要是介绍Linux 内核中PHY子系统(网络):PHY驱动,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一. 简介
PHY 子系统就是用于 PHY 设备相关内容的,分为 PHY 设备和 PHY 驱动,和 platform 总线一样,PHY 子系统也是一个设备、总线和驱动模型。
前面一篇文章学习了 PHY子系统中的 PHY设备。文章如下:
Linux 内核中PHY子系统(网络):PHY设备-CSDN博客
本文继续学习 PHY子系统中内容,具体学习 Linux内核中PHY子系统中的PHY驱动。
二. Linux 内核中PHY子系统(网络):PHY驱动
1. phy_driver结构体
struct phy_driver {u32 phy_id; /* PHY ID */char *name;unsigned int phy_id_mask; /* PHY ID 掩码 */u32 features;u32 flags;const void *driver_data;int (*soft_reset)(struct phy_device *phydev);int (*config_init)(struct phy_device *phydev);int (*probe)(struct phy_device *phydev);int (*suspend)(struct phy_device *phydev);int (*resume)(struct phy_device *phydev);int (*config_aneg)(struct phy_device *phydev);int (*aneg_done)(struct phy_device *phydev);int (*read_status)(struct phy_device *phydev);int (*ack_interrupt)(struct phy_device *phydev);int (*config_intr)(struct phy_device *phydev);int (*did_interrupt)(struct phy_device *phydev);void (*remove)(struct phy_device *phydev);int (*match_phy_device)(struct phy_device *phydev);int (*ts_info)(struct phy_device *phydev, struct ethtool_ts_info *ti);int (*hwtstamp)(struct phy_device *phydev, struct ifreq *ifr);bool (*rxtstamp)(struct phy_device *dev, struct sk_buff *skb, int type);void (*txtstamp)(struct phy_device *dev, struct sk_buff *skb,int type);int (*set_wol)(struct phy_device *dev,struct ethtool_wolinfo *wol);void (*get_wol)(struct phy_device *dev,struct ethtool_wolinfo *wol);void (*link_change_notify)(struct phy_device *dev);int (*read_mmd_indirect)(struct phy_device *dev, int ptrad, int devnum, int regnum);void (*write_mmd_indirect)(struct phy_device *dev, int ptrad,int devnum, int regnum, u32 val);int (*module_info)(struct phy_device *dev,struct ethtool_modinfo *modinfo);int (*module_eeprom)(struct phy_device *dev,struct ethtool_eeprom *ee, u8 *data);struct device_driver driver;
};
可以看出,phy_driver 重点是大量的函数,编写 PHY 驱动的主要工作就是实现这些函数, 但是不一定全部实现,稍后我们会简单分析一下 Linux 内核通用 PHY 驱动。
2. 注册 PHY 驱动
(1) 注册一个PHY驱动
int phy_driver_register(struct phy_driver *new_driver)
(2) 连续注册多个 PHY 驱动
int phy_drivers_register(struct phy_driver *new_driver, int n)
函数参数和返回值含义如下:
void phy_driver_unregister(struct phy_driver *drv)
这篇关于Linux 内核中PHY子系统(网络):PHY驱动的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!