Home
last modified time | relevance | path

Searched refs:phyReg (Results 1 – 25 of 25) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/components/phy/
Dfsl_phy.h143 status_t (*phyWrite)(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
144 status_t (*phyRead)(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
215 static inline status_t PHY_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_Write() argument
217 return handle->ops->phyWrite(handle, phyReg, data); in PHY_Write()
230 static inline status_t PHY_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_Read() argument
232 return handle->ops->phyRead(handle, phyReg, pData); in PHY_Read()
246 static inline status_t PHY_WriteC45(phy_handle_t *handle, uint8_t devAddr, uint8_t phyReg, uint16_t… in PHY_WriteC45() argument
248 return handle->ops->phyWriteC45(handle, devAddr, phyReg, data); in PHY_WriteC45()
262 static inline status_t PHY_ReadC45(phy_handle_t *handle, uint8_t devAddr, uint8_t phyReg, uint16_t … in PHY_ReadC45() argument
264 return handle->ops->phyReadC45(handle, devAddr, phyReg, pData); in PHY_ReadC45()
/hal_nxp-latest/mcux/mcux-sdk/components/phylan8720a/
Dfsl_phy.c104 status_t PHY_Write(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t data) in PHY_Write() argument
113 ENET_StartSMIWrite(base, phyAddr, phyReg, kENET_MiiWriteValidFrame, data); in PHY_Write()
134 ENET_StartSMIWrite(base, phyAddr, phyReg, data); in PHY_Write()
142 status_t PHY_Read(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t *dataPtr) in PHY_Read() argument
153 ENET_StartSMIRead(base, phyAddr, phyReg, kENET_MiiReadValidFrame); in PHY_Read()
176 ENET_StartSMIRead(base, phyAddr, phyReg); in PHY_Read()
Dfsl_phy.h116 status_t PHY_Write(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t data);
129 status_t PHY_Read(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t *dataPtr);
/hal_nxp-latest/mcux/mcux-sdk/components/phyksz8081/
Dfsl_phy.c117 status_t PHY_Write(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t data) in PHY_Write() argument
125 ENET_StartSMIWrite(base, phyAddr, phyReg, kENET_MiiWriteValidFrame, data); in PHY_Write()
148 status_t PHY_Read(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t *dataPtr) in PHY_Read() argument
158 ENET_StartSMIRead(base, phyAddr, phyReg, kENET_MiiReadValidFrame); in PHY_Read()
Dfsl_phy.h137 status_t PHY_Write(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t data);
150 status_t PHY_Read(ENET_Type *base, uint32_t phyAddr, uint32_t phyReg, uint32_t *dataPtr);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phydp83848/
Dfsl_phydp83848.c119 status_t PHY_DP83848_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_DP83848_Write() argument
121 return MDIO_Write(handle->mdioHandle, handle->phyAddr, phyReg, data); in PHY_DP83848_Write()
124 status_t PHY_DP83848_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_DP83848_Read() argument
126 return MDIO_Read(handle->mdioHandle, handle->phyAddr, phyReg, pData); in PHY_DP83848_Read()
Dfsl_phydp83848.h77 status_t PHY_DP83848_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
89 status_t PHY_DP83848_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phyksz8041/
Dfsl_phyksz8041.c127 status_t PHY_KSZ8041_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_KSZ8041_Write() argument
129 return PHY_KSZ8041_WRITE(handle, phyReg, data); in PHY_KSZ8041_Write()
132 status_t PHY_KSZ8041_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_KSZ8041_Read() argument
134 return PHY_KSZ8041_READ(handle, phyReg, pData); in PHY_KSZ8041_Read()
Dfsl_phyksz8041.h84 status_t PHY_KSZ8041_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
96 status_t PHY_KSZ8041_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phylan8720a/
Dfsl_phylan8720a.c148 status_t PHY_LAN8720A_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_LAN8720A_Write() argument
150 return PHY_LAN8720A_WRITE(handle, phyReg, data); in PHY_LAN8720A_Write()
153 status_t PHY_LAN8720A_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_LAN8720A_Read() argument
155 return PHY_LAN8720A_READ(handle, phyReg, pData); in PHY_LAN8720A_Read()
Dfsl_phylan8720a.h82 status_t PHY_LAN8720A_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
94 status_t PHY_LAN8720A_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phylan8741/
Dfsl_phylan8741.c162 status_t PHY_LAN8741_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_LAN8741_Write() argument
164 return PHY_LAN8741_WRITE(handle, phyReg, data); in PHY_LAN8741_Write()
167 status_t PHY_LAN8741_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_LAN8741_Read() argument
169 return PHY_LAN8741_READ(handle, phyReg, pData); in PHY_LAN8741_Read()
Dfsl_phylan8741.h81 status_t PHY_LAN8741_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
93 status_t PHY_LAN8741_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phyksz8081/
Dfsl_phyksz8081.c157 status_t PHY_KSZ8081_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_KSZ8081_Write() argument
159 return PHY_KSZ8081_WRITE(handle, phyReg, data); in PHY_KSZ8081_Write()
162 status_t PHY_KSZ8081_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_KSZ8081_Read() argument
164 return PHY_KSZ8081_READ(handle, phyReg, pData); in PHY_KSZ8081_Read()
Dfsl_phyksz8081.h82 status_t PHY_KSZ8081_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
94 status_t PHY_KSZ8081_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phyvsc8541/
Dfsl_phyvsc8541.c158 status_t PHY_VSC8541_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_VSC8541_Write() argument
160 return PHY_VSC8541_WRITE(handle, phyReg, data); in PHY_VSC8541_Write()
163 status_t PHY_VSC8541_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_VSC8541_Read() argument
165 return PHY_VSC8541_READ(handle, phyReg, pData); in PHY_VSC8541_Read()
Dfsl_phyvsc8541.h84 status_t PHY_VSC8541_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
96 status_t PHY_VSC8541_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phyaqr113c/
Dfsl_phyaqr113c.c268 status_t PHY_AQR113C_Write(phy_handle_t *handle, uint8_t devAddr, uint16_t phyReg, uint16_t data) in PHY_AQR113C_Write() argument
270 return PHY_AQR113C_WRITE(handle, devAddr, phyReg, data); in PHY_AQR113C_Write()
273 status_t PHY_AQR113C_Read(phy_handle_t *handle, uint8_t devAddr, uint16_t phyReg, uint16_t *pData) in PHY_AQR113C_Read() argument
275 return PHY_AQR113C_READ(handle, devAddr, phyReg, pData); in PHY_AQR113C_Read()
Dfsl_phyaqr113c.h82 status_t PHY_AQR113C_Write(phy_handle_t *handle, uint8_t devAddr, uint16_t phyReg, uint16_t data);
95 status_t PHY_AQR113C_Read(phy_handle_t *handle, uint8_t devAddr, uint16_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phyrtl8201/
Dfsl_phyrtl8201.c168 status_t PHY_RTL8201_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_RTL8201_Write() argument
170 return PHY_RTL8201_WRITE(handle, phyReg, data); in PHY_RTL8201_Write()
173 status_t PHY_RTL8201_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_RTL8201_Read() argument
175 return PHY_RTL8201_READ(handle, phyReg, pData); in PHY_RTL8201_Read()
Dfsl_phyrtl8201.h84 status_t PHY_RTL8201_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
96 status_t PHY_RTL8201_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phyrtl8211f/
Dfsl_phyrtl8211f.c289 status_t PHY_RTL8211F_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_RTL8211F_Write() argument
291 return PHY_RTL8211F_WRITE(handle, phyReg, data); in PHY_RTL8211F_Write()
294 status_t PHY_RTL8211F_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_RTL8211F_Read() argument
296 return PHY_RTL8211F_READ(handle, phyReg, pData); in PHY_RTL8211F_Read()
Dfsl_phyrtl8211f.h81 status_t PHY_RTL8211F_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
93 status_t PHY_RTL8211F_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);
/hal_nxp-latest/mcux/mcux-sdk/components/phy/device/phyar8031/
Dfsl_phyar8031.c263 status_t PHY_AR8031_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data) in PHY_AR8031_Write() argument
265 return PHY_AR8031_WRITE(handle, phyReg, data); in PHY_AR8031_Write()
268 status_t PHY_AR8031_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData) in PHY_AR8031_Read() argument
270 return PHY_AR8031_READ(handle, phyReg, pData); in PHY_AR8031_Read()
Dfsl_phyar8031.h84 status_t PHY_AR8031_Write(phy_handle_t *handle, uint8_t phyReg, uint16_t data);
96 status_t PHY_AR8031_Read(phy_handle_t *handle, uint8_t phyReg, uint16_t *pData);