Home
last modified time | relevance | path

Searched refs:ops (Results 1 – 11 of 11) sorted by relevance

/hal_nxp-3.6.0/mcux/mcux-sdk/components/phy/
Dfsl_phy.h138 const phy_operations_t *ops; /*!< PHY operational method. */ member
151 const phy_operations_t *ops; /*!< PHY operational method. */ member
179 handle->ops = config->ops; in PHY_Init()
180 return handle->ops->phyInit(handle, config); in PHY_Init()
194 return handle->ops->phyWrite(handle, phyReg, data); in PHY_Write()
209 return handle->ops->phyRead(handle, phyReg, pData); in PHY_Read()
224 return handle->ops->getAutoNegoStatus(handle, status); in PHY_GetAutoNegotiationStatus()
239 return handle->ops->getLinkStatus(handle, status); in PHY_GetLinkStatus()
256 return handle->ops->getLinkSpeedDuplex(handle, speed, duplex); in PHY_GetLinkSpeedDuplex()
270 return handle->ops->setLinkSpeedDuplex(handle, speed, duplex); in PHY_SetLinkSpeedDuplex()
[all …]
Dfsl_mdio.h40 const mdio_operations_t *ops; member
87 handle->ops->mdioInit(handle); in MDIO_Init()
103 return handle->ops->mdioWrite(handle, phyAddr, devAddr, data); in MDIO_Write()
119 return handle->ops->mdioRead(handle, phyAddr, devAddr, dataPtr); in MDIO_Read()
/hal_nxp-3.6.0/mcux/mcux-sdk/components/video/camera/receiver/
Dfsl_camera_receiver.h24 const camera_receiver_operations_t *ops; member
82 return handle->ops->init(handle, config, callback, userData); in CAMERA_RECEIVER_Init()
106 return handle->ops->init_ext(handle, config, specialConfig, callback, userData); in CAMERA_RECEIVER_InitExt()
117 return handle->ops->deinit(handle); in CAMERA_RECEIVER_Deinit()
128 return handle->ops->start(handle); in CAMERA_RECEIVER_Start()
139 return handle->ops->stop(handle); in CAMERA_RECEIVER_Stop()
151 return handle->ops->submitEmptyBuffer(handle, buffer); in CAMERA_RECEIVER_SubmitEmptyBuffer()
163 return handle->ops->getFullBuffer(handle, buffer); in CAMERA_RECEIVER_GetFullBuffer()
/hal_nxp-3.6.0/mcux/mcux-sdk/components/video/camera/device/
Dfsl_camera_device.h72 const camera_device_operations_t *ops; /*!< The device related operations. */ member
95 return handle->ops->init(handle, config); in CAMERA_DEVICE_Init()
115 return handle->ops->init_ext(handle, config, specialConfig); in CAMERA_DEVICE_InitExt()
126 return handle->ops->deinit(handle); in CAMERA_DEVICE_Deinit()
139 return handle->ops->control(handle, cmd, arg); in CAMERA_DEVICE_Control()
150 return handle->ops->start(handle); in CAMERA_DEVICE_Start()
161 return handle->ops->stop(handle); in CAMERA_DEVICE_Stop()
/hal_nxp-3.6.0/mcux/mcux-sdk/components/video/display/fbdev/
Dfsl_fbdev.c41 status = dc->ops->init(dc); in FBDEV_Open()
50 status = dc->ops->getLayerDefaultConfig(dc, layer, &fbdev->fbInfo.bufInfo); in FBDEV_Open()
65 dc->ops->setCallback(dc, layer, FBDEV_BufferSwitchOffCallback, (void *)fbdev); in FBDEV_Open()
74 (void)dc->ops->deinit(dc); in FBDEV_Close()
100 if ((dc->ops->getProperty(dc) & (uint32_t)kDC_FB_ReserveFrameBuffer) == 0U) in FBDEV_Enable()
113 status = dc->ops->enableLayer(dc, fbdev->layer); in FBDEV_Enable()
143 (void)dc->ops->disableLayer(dc, fbdev->layer); in FBDEV_Disable()
170 status = dc->ops->setLayerConfig(dc, fbdev->layer, &fbdev->fbInfo.bufInfo); in FBDEV_SetFrameBufferInfo()
226 return dc->ops->setFrameBuffer(dc, fbdev->layer, frameBuffer); in FBDEV_SetFrameBuffer()
/hal_nxp-3.6.0/mcux/mcux-sdk/components/video/display/
Dfsl_display.h76 const display_operations_t *ops; member
100 return handle->ops->init(handle, config); in DISPLAY_Init()
111 return handle->ops->deinit(handle); in DISPLAY_Deinit()
122 return handle->ops->start(handle); in DISPLAY_Start()
133 return handle->ops->stop(handle); in DISPLAY_Stop()
/hal_nxp-3.6.0/mcux/mcux-sdk/cmsis_drivers/enet/
Dfsl_enet_phy_cmsis.c120 phyConfig.ops = ENETPHY0_State.resource->ops; in PHY0_PowerControl()
192 phyConfig.ops = ENETPHY0_State.resource->ops; in PHY0_SetMode()
Dfsl_enet_phy_cmsis.h32 const phy_operations_t *ops; /*!< ENET PHY operations. */ member
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/common/
Dfsl_common_arm.h70 #define _SDK_ATOMIC_LOCAL_OPS_1BYTE(addr, val, ops) \ argument
74 (ops); \
77 #define _SDK_ATOMIC_LOCAL_OPS_2BYTE(addr, val, ops) \ argument
81 (ops); \
84 #define _SDK_ATOMIC_LOCAL_OPS_4BYTE(addr, val, ops) \ argument
88 (ops); \
/hal_nxp-3.6.0/mcux/mcux-sdk/components/i3c_bus/
Dfsl_component_i3c.c85 static status_t I3C_CheckBusMasterOps(i3c_device_hw_ops_t *ops) in I3C_CheckBusMasterOps() argument
87 …if ((ops == NULL) || (ops->Init == NULL) || (ops->DoI3CTransfer == NULL) || (ops->DoI2CTransfer ==… in I3C_CheckBusMasterOps()
88 (ops->TransmitCCC == NULL) || (ops->ProceedDAA == NULL)) in I3C_CheckBusMasterOps()
/hal_nxp-3.6.0/mcux/mcux-sdk/components/video/display/dc/
Dfsl_dc_fb.h62 const dc_fb_ops_t *ops; /* Display controller operations. */ member