/kernel/linux/linux-5.10/drivers/net/ethernet/realtek/ |
D | r8169_phy_config.c | 18 struct phy_device *phydev); 20 static void r8168d_modify_extpage(struct phy_device *phydev, int extpage, in r8168d_modify_extpage() argument 23 int oldpage = phy_select_page(phydev, 0x0007); in r8168d_modify_extpage() 25 __phy_write(phydev, 0x1e, extpage); in r8168d_modify_extpage() 26 __phy_modify(phydev, reg, mask, val); in r8168d_modify_extpage() 28 phy_restore_page(phydev, oldpage, 0); in r8168d_modify_extpage() 31 static void r8168d_phy_param(struct phy_device *phydev, u16 parm, in r8168d_phy_param() argument 34 int oldpage = phy_select_page(phydev, 0x0005); in r8168d_phy_param() 36 __phy_write(phydev, 0x05, parm); in r8168d_phy_param() 37 __phy_modify(phydev, 0x06, mask, val); in r8168d_phy_param() [all …]
|
/kernel/linux/linux-4.19/drivers/net/phy/ |
D | phy.c | 70 void phy_print_status(struct phy_device *phydev) in phy_print_status() argument 72 if (phydev->link) { in phy_print_status() 73 netdev_info(phydev->attached_dev, in phy_print_status() 75 phy_speed_to_str(phydev->speed), in phy_print_status() 76 phy_duplex_to_str(phydev->duplex), in phy_print_status() 77 phydev->pause ? "rx/tx" : "off"); in phy_print_status() 79 netdev_info(phydev->attached_dev, "Link is Down\n"); in phy_print_status() 93 static int phy_clear_interrupt(struct phy_device *phydev) in phy_clear_interrupt() argument 95 if (phydev->drv->ack_interrupt) in phy_clear_interrupt() 96 return phydev->drv->ack_interrupt(phydev); in phy_clear_interrupt() [all …]
|
D | vitesse.c | 87 static int vsc824x_add_skew(struct phy_device *phydev) in vsc824x_add_skew() argument 92 extcon = phy_read(phydev, MII_VSC8244_EXT_CON1); in vsc824x_add_skew() 103 err = phy_write(phydev, MII_VSC8244_EXT_CON1, extcon); in vsc824x_add_skew() 108 static int vsc824x_config_init(struct phy_device *phydev) in vsc824x_config_init() argument 112 err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT, in vsc824x_config_init() 117 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) in vsc824x_config_init() 118 err = vsc824x_add_skew(phydev); in vsc824x_config_init() 125 static int vsc73xx_read_page(struct phy_device *phydev) in vsc73xx_read_page() argument 127 return __phy_read(phydev, VSC73XX_EXT_PAGE_ACCESS); in vsc73xx_read_page() 130 static int vsc73xx_write_page(struct phy_device *phydev, int page) in vsc73xx_write_page() argument [all …]
|
D | bcm7xxx.c | 65 static void r_rc_cal_reset(struct phy_device *phydev) in r_rc_cal_reset() argument 68 bcm_phy_write_exp_sel(phydev, 0x00b0, 0x0010); in r_rc_cal_reset() 71 bcm_phy_write_exp_sel(phydev, 0x00b0, 0x0000); in r_rc_cal_reset() 74 static int bcm7xxx_28nm_b0_afe_config_init(struct phy_device *phydev) in bcm7xxx_28nm_b0_afe_config_init() argument 79 bcm_phy_write_misc(phydev, PLL_PLLCTRL_1, 0x0048); in bcm7xxx_28nm_b0_afe_config_init() 82 bcm_phy_write_misc(phydev, PLL_PLLCTRL_2, 0x021b); in bcm7xxx_28nm_b0_afe_config_init() 87 bcm_phy_write_misc(phydev, PLL_PLLCTRL_4, 0x0e20); in bcm7xxx_28nm_b0_afe_config_init() 90 bcm_phy_write_misc(phydev, DSP_TAP10, 0x690b); in bcm7xxx_28nm_b0_afe_config_init() 93 phy_write(phydev, MII_BRCM_CORE_BASE1E, 0xd); in bcm7xxx_28nm_b0_afe_config_init() 95 r_rc_cal_reset(phydev); in bcm7xxx_28nm_b0_afe_config_init() [all …]
|
D | phy_device.c | 45 void phy_device_free(struct phy_device *phydev) in phy_device_free() argument 47 put_device(&phydev->mdio.dev); in phy_device_free() 53 struct phy_device *phydev; in phy_mdio_device_free() local 55 phydev = container_of(mdiodev, struct phy_device, mdio); in phy_mdio_device_free() 56 phy_device_free(phydev); in phy_mdio_device_free() 66 struct phy_device *phydev; in phy_mdio_device_remove() local 68 phydev = container_of(mdiodev, struct phy_device, mdio); in phy_mdio_device_remove() 69 phy_device_remove(phydev); in phy_mdio_device_remove() 79 static bool mdio_bus_phy_may_suspend(struct phy_device *phydev) in mdio_bus_phy_may_suspend() argument 81 struct device_driver *drv = phydev->mdio.dev.driver; in mdio_bus_phy_may_suspend() [all …]
|
D | marvell.c | 192 static int marvell_read_page(struct phy_device *phydev) in marvell_read_page() argument 194 return __phy_read(phydev, MII_MARVELL_PHY_PAGE); in marvell_read_page() 197 static int marvell_write_page(struct phy_device *phydev, int page) in marvell_write_page() argument 199 return __phy_write(phydev, MII_MARVELL_PHY_PAGE, page); in marvell_write_page() 202 static int marvell_set_page(struct phy_device *phydev, int page) in marvell_set_page() argument 204 return phy_write(phydev, MII_MARVELL_PHY_PAGE, page); in marvell_set_page() 207 static int marvell_ack_interrupt(struct phy_device *phydev) in marvell_ack_interrupt() argument 212 err = phy_read(phydev, MII_M1011_IEVENT); in marvell_ack_interrupt() 220 static int marvell_config_intr(struct phy_device *phydev) in marvell_config_intr() argument 224 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) in marvell_config_intr() [all …]
|
D | broadcom.c | 23 #define BRCM_PHY_MODEL(phydev) \ argument 24 ((phydev)->drv->phy_id & (phydev)->drv->phy_id_mask) 26 #define BRCM_PHY_REV(phydev) \ argument 27 ((phydev)->drv->phy_id & ~((phydev)->drv->phy_id_mask)) 33 static int bcm54210e_config_init(struct phy_device *phydev) in bcm54210e_config_init() argument 37 val = bcm54xx_auxctl_read(phydev, MII_BCM54XX_AUXCTL_SHDWSEL_MISC); in bcm54210e_config_init() 40 bcm54xx_auxctl_write(phydev, MII_BCM54XX_AUXCTL_SHDWSEL_MISC, val); in bcm54210e_config_init() 42 val = bcm_phy_read_shadow(phydev, BCM54810_SHD_CLK_CTL); in bcm54210e_config_init() 44 bcm_phy_write_shadow(phydev, BCM54810_SHD_CLK_CTL, val); in bcm54210e_config_init() 46 if (phydev->dev_flags & PHY_BRCM_EN_MASTER_MODE) { in bcm54210e_config_init() [all …]
|
D | lxt.c | 64 static int lxt970_ack_interrupt(struct phy_device *phydev) in lxt970_ack_interrupt() argument 68 err = phy_read(phydev, MII_BMSR); in lxt970_ack_interrupt() 73 err = phy_read(phydev, MII_LXT970_ISR); in lxt970_ack_interrupt() 81 static int lxt970_config_intr(struct phy_device *phydev) in lxt970_config_intr() argument 83 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) in lxt970_config_intr() 84 return phy_write(phydev, MII_LXT970_IER, MII_LXT970_IER_IEN); in lxt970_config_intr() 86 return phy_write(phydev, MII_LXT970_IER, 0); in lxt970_config_intr() 89 static int lxt970_config_init(struct phy_device *phydev) in lxt970_config_init() argument 91 return phy_write(phydev, MII_LXT970_CONFIG, 0); in lxt970_config_init() 95 static int lxt971_ack_interrupt(struct phy_device *phydev) in lxt971_ack_interrupt() argument [all …]
|
/kernel/linux/linux-5.10/drivers/net/phy/ |
D | phy.c | 59 static void phy_link_up(struct phy_device *phydev) in phy_link_up() argument 61 phydev->phy_link_change(phydev, true); in phy_link_up() 62 phy_led_trigger_change_speed(phydev); in phy_link_up() 65 static void phy_link_down(struct phy_device *phydev) in phy_link_down() argument 67 phydev->phy_link_change(phydev, false); in phy_link_down() 68 phy_led_trigger_change_speed(phydev); in phy_link_down() 71 static const char *phy_pause_str(struct phy_device *phydev) in phy_pause_str() argument 75 if (phydev->autoneg == AUTONEG_DISABLE) in phy_pause_str() 79 phydev->advertising); in phy_pause_str() 81 phydev->advertising); in phy_pause_str() [all …]
|
D | vitesse.c | 78 static int vsc824x_add_skew(struct phy_device *phydev) in vsc824x_add_skew() argument 83 extcon = phy_read(phydev, MII_VSC8244_EXT_CON1); in vsc824x_add_skew() 94 err = phy_write(phydev, MII_VSC8244_EXT_CON1, extcon); in vsc824x_add_skew() 99 static int vsc824x_config_init(struct phy_device *phydev) in vsc824x_config_init() argument 103 err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT, in vsc824x_config_init() 108 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) in vsc824x_config_init() 109 err = vsc824x_add_skew(phydev); in vsc824x_config_init() 116 static int vsc73xx_read_page(struct phy_device *phydev) in vsc73xx_read_page() argument 118 return __phy_read(phydev, VSC73XX_EXT_PAGE_ACCESS); in vsc73xx_read_page() 121 static int vsc73xx_write_page(struct phy_device *phydev, int page) in vsc73xx_write_page() argument [all …]
|
D | phy_device.c | 201 void phy_device_free(struct phy_device *phydev) in phy_device_free() argument 203 put_device(&phydev->mdio.dev); in phy_device_free() 209 struct phy_device *phydev; in phy_mdio_device_free() local 211 phydev = container_of(mdiodev, struct phy_device, mdio); in phy_mdio_device_free() 212 phy_device_free(phydev); in phy_mdio_device_free() 222 struct phy_device *phydev; in phy_mdio_device_remove() local 224 phydev = container_of(mdiodev, struct phy_device, mdio); in phy_mdio_device_remove() 225 phy_device_remove(phydev); in phy_mdio_device_remove() 233 static bool mdio_bus_phy_may_suspend(struct phy_device *phydev) in mdio_bus_phy_may_suspend() argument 235 struct device_driver *drv = phydev->mdio.dev.driver; in mdio_bus_phy_may_suspend() [all …]
|
D | phy-c45.c | 15 int genphy_c45_pma_setup_forced(struct phy_device *phydev) in genphy_c45_pma_setup_forced() argument 20 if (phydev->duplex != DUPLEX_FULL) in genphy_c45_pma_setup_forced() 23 ctrl1 = phy_read_mmd(phydev, MDIO_MMD_PMAPMD, MDIO_CTRL1); in genphy_c45_pma_setup_forced() 27 ctrl2 = phy_read_mmd(phydev, MDIO_MMD_PMAPMD, MDIO_CTRL2); in genphy_c45_pma_setup_forced() 38 switch (phydev->speed) { in genphy_c45_pma_setup_forced() 70 ret = phy_write_mmd(phydev, MDIO_MMD_PMAPMD, MDIO_CTRL1, ctrl1); in genphy_c45_pma_setup_forced() 74 ret = phy_write_mmd(phydev, MDIO_MMD_PMAPMD, MDIO_CTRL2, ctrl2); in genphy_c45_pma_setup_forced() 78 return genphy_c45_an_disable_aneg(phydev); in genphy_c45_pma_setup_forced() 91 int genphy_c45_an_config_aneg(struct phy_device *phydev) in genphy_c45_an_config_aneg() argument 96 linkmode_and(phydev->advertising, phydev->advertising, in genphy_c45_an_config_aneg() [all …]
|
D | microchip.c | 24 static int lan88xx_read_page(struct phy_device *phydev) in lan88xx_read_page() argument 26 return __phy_read(phydev, LAN88XX_EXT_PAGE_ACCESS); in lan88xx_read_page() 29 static int lan88xx_write_page(struct phy_device *phydev, int page) in lan88xx_write_page() argument 31 return __phy_write(phydev, LAN88XX_EXT_PAGE_ACCESS, page); in lan88xx_write_page() 34 static int lan88xx_phy_config_intr(struct phy_device *phydev) in lan88xx_phy_config_intr() argument 38 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) { in lan88xx_phy_config_intr() 40 rc = phy_write(phydev, LAN88XX_INT_MASK, 0x7FFF); in lan88xx_phy_config_intr() 41 rc = phy_read(phydev, LAN88XX_INT_STS); in lan88xx_phy_config_intr() 42 rc = phy_write(phydev, LAN88XX_INT_MASK, in lan88xx_phy_config_intr() 46 rc = phy_write(phydev, LAN88XX_INT_MASK, 0); in lan88xx_phy_config_intr() [all …]
|
D | broadcom.c | 19 #define BRCM_PHY_MODEL(phydev) \ argument 20 ((phydev)->drv->phy_id & (phydev)->drv->phy_id_mask) 22 #define BRCM_PHY_REV(phydev) \ argument 23 ((phydev)->drv->phy_id & ~((phydev)->drv->phy_id_mask)) 29 static int bcm54xx_config_clock_delay(struct phy_device *phydev) in bcm54xx_config_clock_delay() argument 34 val = bcm54xx_auxctl_read(phydev, MII_BCM54XX_AUXCTL_SHDWSEL_MISC); in bcm54xx_config_clock_delay() 36 if (phydev->interface == PHY_INTERFACE_MODE_RGMII || in bcm54xx_config_clock_delay() 37 phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) { in bcm54xx_config_clock_delay() 41 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID || in bcm54xx_config_clock_delay() 42 phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) { in bcm54xx_config_clock_delay() [all …]
|
D | bcm-phy-lib.c | 19 int __bcm_phy_write_exp(struct phy_device *phydev, u16 reg, u16 val) in __bcm_phy_write_exp() argument 23 rc = __phy_write(phydev, MII_BCM54XX_EXP_SEL, reg); in __bcm_phy_write_exp() 27 return __phy_write(phydev, MII_BCM54XX_EXP_DATA, val); in __bcm_phy_write_exp() 31 int bcm_phy_write_exp(struct phy_device *phydev, u16 reg, u16 val) in bcm_phy_write_exp() argument 35 phy_lock_mdio_bus(phydev); in bcm_phy_write_exp() 36 rc = __bcm_phy_write_exp(phydev, reg, val); in bcm_phy_write_exp() 37 phy_unlock_mdio_bus(phydev); in bcm_phy_write_exp() 43 int __bcm_phy_read_exp(struct phy_device *phydev, u16 reg) in __bcm_phy_read_exp() argument 47 val = __phy_write(phydev, MII_BCM54XX_EXP_SEL, reg); in __bcm_phy_read_exp() 51 val = __phy_read(phydev, MII_BCM54XX_EXP_DATA); in __bcm_phy_read_exp() [all …]
|
D | marvell10g.c | 114 static int mv3310_hwmon_read_temp_reg(struct phy_device *phydev) in mv3310_hwmon_read_temp_reg() argument 116 return phy_read_mmd(phydev, MDIO_MMD_VEND2, MV_V2_TEMP); in mv3310_hwmon_read_temp_reg() 119 static int mv2110_hwmon_read_temp_reg(struct phy_device *phydev) in mv2110_hwmon_read_temp_reg() argument 121 return phy_read_mmd(phydev, MDIO_MMD_PCS, MV_PCS_TEMP); in mv2110_hwmon_read_temp_reg() 124 static int mv10g_hwmon_read_temp_reg(struct phy_device *phydev) in mv10g_hwmon_read_temp_reg() argument 126 if (phydev->drv->phy_id == MARVELL_PHY_ID_88X3310) in mv10g_hwmon_read_temp_reg() 127 return mv3310_hwmon_read_temp_reg(phydev); in mv10g_hwmon_read_temp_reg() 129 return mv2110_hwmon_read_temp_reg(phydev); in mv10g_hwmon_read_temp_reg() 135 struct phy_device *phydev = dev_get_drvdata(dev); in mv3310_hwmon_read() local 144 temp = mv10g_hwmon_read_temp_reg(phydev); in mv3310_hwmon_read() [all …]
|
D | realtek.c | 65 static int rtl821x_read_page(struct phy_device *phydev) in rtl821x_read_page() argument 67 return __phy_read(phydev, RTL821x_PAGE_SELECT); in rtl821x_read_page() 70 static int rtl821x_write_page(struct phy_device *phydev, int page) in rtl821x_write_page() argument 72 return __phy_write(phydev, RTL821x_PAGE_SELECT, page); in rtl821x_write_page() 75 static int rtl8201_ack_interrupt(struct phy_device *phydev) in rtl8201_ack_interrupt() argument 79 err = phy_read(phydev, RTL8201F_ISR); in rtl8201_ack_interrupt() 84 static int rtl821x_ack_interrupt(struct phy_device *phydev) in rtl821x_ack_interrupt() argument 88 err = phy_read(phydev, RTL821x_INSR); in rtl821x_ack_interrupt() 93 static int rtl8211f_ack_interrupt(struct phy_device *phydev) in rtl8211f_ack_interrupt() argument 97 err = phy_read_paged(phydev, 0xa43, RTL8211F_INSR); in rtl8211f_ack_interrupt() [all …]
|
D | bcm84881.c | 23 static int bcm84881_wait_init(struct phy_device *phydev) in bcm84881_wait_init() argument 27 return phy_read_mmd_poll_timeout(phydev, MDIO_MMD_PMAPMD, MDIO_CTRL1, in bcm84881_wait_init() 32 static int bcm84881_config_init(struct phy_device *phydev) in bcm84881_config_init() argument 34 switch (phydev->interface) { in bcm84881_config_init() 45 static int bcm84881_probe(struct phy_device *phydev) in bcm84881_probe() argument 50 if (!phydev->is_c45 || in bcm84881_probe() 51 (phydev->c45_ids.devices_in_package & mmd_mask) != mmd_mask) in bcm84881_probe() 57 static int bcm84881_get_features(struct phy_device *phydev) in bcm84881_get_features() argument 61 ret = genphy_c45_pma_read_abilities(phydev); in bcm84881_get_features() 67 phydev->supported); in bcm84881_get_features() [all …]
|
D | bcm7xxx.c | 51 static int bcm7xxx_28nm_d0_afe_config_init(struct phy_device *phydev) in bcm7xxx_28nm_d0_afe_config_init() argument 54 bcm_phy_write_misc(phydev, AFE_RXCONFIG_0, 0xeb15); in bcm7xxx_28nm_d0_afe_config_init() 57 bcm_phy_write_misc(phydev, AFE_RXCONFIG_1, 0x9b2f); in bcm7xxx_28nm_d0_afe_config_init() 60 bcm_phy_write_misc(phydev, AFE_RXCONFIG_2, 0x2003); in bcm7xxx_28nm_d0_afe_config_init() 63 bcm_phy_write_misc(phydev, AFE_RX_LP_COUNTER, 0x7fc0); in bcm7xxx_28nm_d0_afe_config_init() 66 bcm_phy_write_misc(phydev, AFE_TX_CONFIG, 0x431); in bcm7xxx_28nm_d0_afe_config_init() 69 bcm_phy_write_misc(phydev, AFE_VDCA_ICTRL_0, 0xa7da); in bcm7xxx_28nm_d0_afe_config_init() 72 bcm_phy_write_misc(phydev, AFE_VDAC_OTHERS_0, 0xa020); in bcm7xxx_28nm_d0_afe_config_init() 77 bcm_phy_write_misc(phydev, AFE_HPF_TRIM_OTHERS, 0x00e3); in bcm7xxx_28nm_d0_afe_config_init() 80 phy_write(phydev, MII_BRCM_CORE_BASE1E, 0x0010); in bcm7xxx_28nm_d0_afe_config_init() [all …]
|
D | marvell.c | 285 static int marvell_read_page(struct phy_device *phydev) in marvell_read_page() argument 287 return __phy_read(phydev, MII_MARVELL_PHY_PAGE); in marvell_read_page() 290 static int marvell_write_page(struct phy_device *phydev, int page) in marvell_write_page() argument 292 return __phy_write(phydev, MII_MARVELL_PHY_PAGE, page); in marvell_write_page() 295 static int marvell_set_page(struct phy_device *phydev, int page) in marvell_set_page() argument 297 return phy_write(phydev, MII_MARVELL_PHY_PAGE, page); in marvell_set_page() 300 static int marvell_ack_interrupt(struct phy_device *phydev) in marvell_ack_interrupt() argument 305 err = phy_read(phydev, MII_M1011_IEVENT); in marvell_ack_interrupt() 313 static int marvell_config_intr(struct phy_device *phydev) in marvell_config_intr() argument 317 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) in marvell_config_intr() [all …]
|
D | at803x.c | 165 static int at803x_debug_reg_read(struct phy_device *phydev, u16 reg) in at803x_debug_reg_read() argument 169 ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg); in at803x_debug_reg_read() 173 return phy_read(phydev, AT803X_DEBUG_DATA); in at803x_debug_reg_read() 176 static int at803x_debug_reg_mask(struct phy_device *phydev, u16 reg, in at803x_debug_reg_mask() argument 182 ret = at803x_debug_reg_read(phydev, reg); in at803x_debug_reg_mask() 190 return phy_write(phydev, AT803X_DEBUG_DATA, val); in at803x_debug_reg_mask() 193 static int at803x_enable_rx_delay(struct phy_device *phydev) in at803x_enable_rx_delay() argument 195 return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_0, 0, in at803x_enable_rx_delay() 199 static int at803x_enable_tx_delay(struct phy_device *phydev) in at803x_enable_tx_delay() argument 201 return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_5, 0, in at803x_enable_tx_delay() [all …]
|
/kernel/linux/linux-5.10/drivers/net/phy/mscc/ |
D | mscc_main.c | 110 static int vsc85xx_phy_read_page(struct phy_device *phydev) in vsc85xx_phy_read_page() argument 112 return __phy_read(phydev, MSCC_EXT_PAGE_ACCESS); in vsc85xx_phy_read_page() 115 static int vsc85xx_phy_write_page(struct phy_device *phydev, int page) in vsc85xx_phy_write_page() argument 117 return __phy_write(phydev, MSCC_EXT_PAGE_ACCESS, page); in vsc85xx_phy_write_page() 120 static int vsc85xx_get_sset_count(struct phy_device *phydev) in vsc85xx_get_sset_count() argument 122 struct vsc8531_private *priv = phydev->priv; in vsc85xx_get_sset_count() 130 static void vsc85xx_get_strings(struct phy_device *phydev, u8 *data) in vsc85xx_get_strings() argument 132 struct vsc8531_private *priv = phydev->priv; in vsc85xx_get_strings() 143 static u64 vsc85xx_get_stat(struct phy_device *phydev, int i) in vsc85xx_get_stat() argument 145 struct vsc8531_private *priv = phydev->priv; in vsc85xx_get_stat() [all …]
|
D | mscc_ptp.c | 27 static int phy_ts_base_write(struct phy_device *phydev, u32 regnum, u16 val) in phy_ts_base_write() argument 29 struct vsc8531_private *priv = phydev->priv; in phy_ts_base_write() 31 WARN_ON_ONCE(!mutex_is_locked(&phydev->mdio.bus->mdio_lock)); in phy_ts_base_write() 32 return __mdiobus_write(phydev->mdio.bus, priv->ts_base_addr, regnum, in phy_ts_base_write() 37 static int phy_ts_base_read(struct phy_device *phydev, u32 regnum) in phy_ts_base_read() argument 39 struct vsc8531_private *priv = phydev->priv; in phy_ts_base_read() 41 WARN_ON_ONCE(!mutex_is_locked(&phydev->mdio.bus->mdio_lock)); in phy_ts_base_read() 42 return __mdiobus_read(phydev->mdio.bus, priv->ts_base_addr, regnum); in phy_ts_base_read() 62 static u32 vsc85xx_ts_read_csr(struct phy_device *phydev, enum ts_blk blk, in vsc85xx_ts_read_csr() argument 65 struct vsc8531_private *priv = phydev->priv; in vsc85xx_ts_read_csr() [all …]
|
/kernel/linux/linux-5.10/include/linux/ |
D | phy.h | 641 void (*phy_link_change)(struct phy_device *phydev, bool up); 708 int (*soft_reset)(struct phy_device *phydev); 714 int (*config_init)(struct phy_device *phydev); 720 int (*probe)(struct phy_device *phydev); 726 int (*get_features)(struct phy_device *phydev); 730 int (*suspend)(struct phy_device *phydev); 732 int (*resume)(struct phy_device *phydev); 740 int (*config_aneg)(struct phy_device *phydev); 743 int (*aneg_done)(struct phy_device *phydev); 746 int (*read_status)(struct phy_device *phydev); [all …]
|
/kernel/linux/linux-4.19/include/linux/ |
D | phy.h | 521 int (*soft_reset)(struct phy_device *phydev); 527 int (*config_init)(struct phy_device *phydev); 533 int (*probe)(struct phy_device *phydev); 536 int (*suspend)(struct phy_device *phydev); 537 int (*resume)(struct phy_device *phydev); 545 int (*config_aneg)(struct phy_device *phydev); 548 int (*aneg_done)(struct phy_device *phydev); 551 int (*read_status)(struct phy_device *phydev); 554 int (*ack_interrupt)(struct phy_device *phydev); 557 int (*config_intr)(struct phy_device *phydev); [all …]
|