Searched refs:phy_ops (Results 1 – 25 of 29) sorted by relevance
12
/third_party/uboot/u-boot-2020.01/drivers/video/ |
D | sandbox_dsi_host.c | 22 const struct mipi_dsi_phy_ops *phy_ops; member 29 const struct mipi_dsi_phy_ops *phy_ops) in sandbox_dsi_host_init() argument 42 if (!phy_ops) in sandbox_dsi_host_init() 45 if (!phy_ops->init || !phy_ops->get_lane_mbps || in sandbox_dsi_host_init() 46 !phy_ops->post_set_mode) in sandbox_dsi_host_init() 50 priv->phy_ops = phy_ops; in sandbox_dsi_host_init() 63 priv->phy_ops->init(priv->device); in sandbox_dsi_host_enable() 64 ret = priv->phy_ops->get_lane_mbps(priv->device, priv->timings, 2, in sandbox_dsi_host_enable() 69 priv->phy_ops->post_set_mode(priv->device, MIPI_DSI_MODE_VIDEO); in sandbox_dsi_host_enable()
|
D | dw_mipi_dsi.c | 224 const struct mipi_dsi_phy_ops *phy_ops; member 463 const struct mipi_dsi_phy_ops *phy_ops = dsi->phy_ops; in dw_mipi_dsi_set_mode() local 475 if (phy_ops->post_set_mode) in dw_mipi_dsi_set_mode() 476 phy_ops->post_set_mode(dsi->device, mode_flags); in dw_mipi_dsi_set_mode() 563 const struct mipi_dsi_phy_ops *phy_ops = dsi->phy_ops; in dw_mipi_dsi_command_mode_config() local 579 if (phy_ops->post_set_mode) in dw_mipi_dsi_command_mode_config() 580 phy_ops->post_set_mode(dsi->device, 0); in dw_mipi_dsi_command_mode_config() 722 const struct mipi_dsi_phy_ops *phy_ops = dsi->phy_ops; in dw_mipi_dsi_bridge_set() local 726 ret = phy_ops->get_lane_mbps(dsi->device, timings, device->lanes, in dw_mipi_dsi_bridge_set() 746 ret = phy_ops->init(dsi->device); in dw_mipi_dsi_bridge_set() [all …]
|
D | dsi-host-uclass.c | 16 const struct mipi_dsi_phy_ops *phy_ops) in dsi_host_init() argument 23 return ops->init(dev, device, timings, max_data_lanes, phy_ops); in dsi_host_init()
|
/third_party/uboot/u-boot-2020.01/drivers/phy/ |
D | phy-uclass.c | 11 static inline struct phy_ops *phy_dev_ops(struct udevice *dev) in phy_dev_ops() 13 return (struct phy_ops *)dev->driver->ops; in phy_dev_ops() 38 struct phy_ops *ops; in generic_phy_get_by_index() 111 struct phy_ops const *ops; in generic_phy_init() 122 struct phy_ops const *ops; in generic_phy_reset() 133 struct phy_ops const *ops; in generic_phy_exit() 144 struct phy_ops const *ops; in generic_phy_power_on() 155 struct phy_ops const *ops; in generic_phy_power_off()
|
D | nop-phy.c | 17 static struct phy_ops nop_phy_ops = {
|
D | phy-da8xx-usb.c | 54 static struct phy_ops da8xx_phy_ops = {
|
D | bcm6348-usbh-phy.c | 33 static struct phy_ops bcm6348_usbh_ops = {
|
D | bcm6358-usbh-phy.c | 47 static struct phy_ops bcm6358_usbh_ops = {
|
D | sandbox-phy.c | 85 static struct phy_ops sandbox_phy_ops = {
|
D | msm8916-usbh-phy.c | 91 static struct phy_ops msm_phy_ops = {
|
D | bcm6318-usbh-phy.c | 67 static struct phy_ops bcm6318_usbh_ops = {
|
D | keystone-usb-phy.c | 117 static struct phy_ops keystone_usb_phy_ops = {
|
D | phy-rcar-gen3.c | 104 static const struct phy_ops rcar_gen3_phy_phy_ops = {
|
D | sti_usb_phy.c | 98 struct phy_ops sti_usb_phy_ops = {
|
D | bcm6368-usbh-phy.c | 69 static struct phy_ops bcm6368_usbh_ops = {
|
D | phy-rcar-gen2.c | 139 static const struct phy_ops rcar_gen2_phy_phy_ops = {
|
D | meson-g12a-usb2.c | 152 struct phy_ops meson_g12a_usb2_phy_ops = {
|
D | omap-usb2-phy.c | 162 struct phy_ops omap_usb2_phy_ops = {
|
D | meson-gxl-usb3.c | 155 struct phy_ops meson_gxl_usb3_phy_ops = {
|
D | mt76x8-usb-phy.c | 233 static struct phy_ops mt76x8_usb_phy_ops = {
|
D | meson-gxl-usb2.c | 185 struct phy_ops meson_gxl_usb2_phy_ops = {
|
D | meson-g12a-usb3-pcie.c | 297 struct phy_ops meson_g12a_usb3_pcie_phy_ops = {
|
D | phy-stm32-usbphyc.c | 319 static const struct phy_ops stm32_usbphyc_phy_ops = {
|
/third_party/uboot/u-boot-2020.01/include/ |
D | dsi_host.h | 28 const struct mipi_dsi_phy_ops *phy_ops); 63 const struct mipi_dsi_phy_ops *phy_ops);
|
D | generic-phy.h | 37 struct phy_ops { struct
|
12