/drivers/power/supply/ |
D | pda_power.c | 37 static struct usb_phy *transceiver; variable 221 return (transceiver->last_event == USB_EVENT_VBUS || in otg_is_usb_online() 222 transceiver->last_event == USB_EVENT_ENUMERATED); in otg_is_usb_online() 227 return (transceiver->last_event == USB_EVENT_CHARGER); in otg_is_ac_online() 319 transceiver = usb_get_phy(USB_PHY_TYPE_USB2); in pda_power_probe() 320 if (!IS_ERR_OR_NULL(transceiver)) { in pda_power_probe() 376 if (!IS_ERR_OR_NULL(transceiver) && pdata->use_otg_notifier) { in pda_power_probe() 378 ret = usb_register_notifier(transceiver, &otg_nb); in pda_power_probe() 412 if (!IS_ERR_OR_NULL(transceiver)) in pda_power_probe() 413 usb_put_phy(transceiver); in pda_power_probe() [all …]
|
D | twl4030_charger.c | 115 struct usb_phy *transceiver; member 443 if (enable && !IS_ERR_OR_NULL(bci->transceiver)) { in twl4030_charger_enable_usb() 449 pm_runtime_get_sync(bci->transceiver->dev); in twl4030_charger_enable_usb() 514 pm_runtime_mark_last_busy(bci->transceiver->dev); in twl4030_charger_enable_usb() 515 pm_runtime_put_autosuspend(bci->transceiver->dev); in twl4030_charger_enable_usb() 1027 bci->transceiver = devm_usb_get_phy_by_node( in twl4030_bci_probe() 1030 if (IS_ERR(bci->transceiver)) { in twl4030_bci_probe() 1031 ret = PTR_ERR(bci->transceiver); in twl4030_bci_probe() 1036 bci->transceiver = NULL; in twl4030_bci_probe() 1097 if (!IS_ERR_OR_NULL(bci->transceiver)) in twl4030_bci_probe() [all …]
|
/drivers/usb/phy/ |
D | Kconfig | 19 Enable this to support the USB OTG transceiver in AB8500 chip. 20 This transceiver supports high and full speed devices plus, 29 Enable this to support Freescale USB OTG transceiver. 39 USB-On-The-Go transceiver working with the OMAP OTG controller. 40 The ISP1301 is a full speed USB transceiver which is used in 61 This driver is to be used by all the usb transceiver which are either 84 Enable this to support the USB OTG transceiver on TWL6030 85 family chips. This TWL6030 transceiver has the VBUS and ID GND 86 and OTG SRP events capabilities. For all other transceiver functionality 92 tristate "GPIO based peripheral-only VBUS sensing 'transceiver'" [all …]
|
/drivers/net/can/m_can/ |
D | m_can_platform.c | 84 struct phy *transceiver; in m_can_plat_probe() local 118 transceiver = devm_phy_optional_get(&pdev->dev, NULL); in m_can_plat_probe() 119 if (IS_ERR(transceiver)) { in m_can_plat_probe() 120 ret = PTR_ERR(transceiver); in m_can_plat_probe() 125 if (transceiver) in m_can_plat_probe() 126 mcan_class->can.bitrate_max = transceiver->attrs.max_link_rate; in m_can_plat_probe() 135 mcan_class->transceiver = transceiver; in m_can_plat_probe()
|
D | m_can.h | 86 struct phy *transceiver; member
|
/drivers/net/ieee802154/ |
D | Kconfig | 26 tristate "AT86RF230/231/233/212 transceiver driver" 44 tristate "Microchip MRF24J40 transceiver driver" 57 tristate "CC2520 transceiver driver" 67 tristate "ATUSB transceiver driver" 77 tristate "ADF7242 transceiver driver" 88 tristate "Cascoda CA8210 transceiver driver" 110 tristate "MCR20A transceiver driver"
|
/drivers/nfc/st95hf/ |
D | Kconfig | 6 This enables the ST NFC driver for ST95HF NFC transceiver. 7 This makes use of SPI framework to communicate with transceiver 10 Say Y here to compile support for ST NFC transceiver ST95HF
|
/drivers/usb/gadget/udc/ |
D | pxa27x_udc.c | 1484 put_on &= ((udc->vbus_sensed) || (IS_ERR_OR_NULL(udc->transceiver))); in should_enable_udc() 1505 put_off |= ((!udc->vbus_sensed) && (!IS_ERR_OR_NULL(udc->transceiver))); in should_disable_udc() 1574 if (!IS_ERR_OR_NULL(udc->transceiver)) in pxa_udc_vbus_draw() 1575 return usb_phy_set_power(udc->transceiver, mA); in pxa_udc_vbus_draw() 1754 if (!IS_ERR_OR_NULL(udc->transceiver)) { in pxa27x_udc_start() 1755 retval = otg_set_peripheral(udc->transceiver->otg, in pxa27x_udc_start() 1804 if (!IS_ERR_OR_NULL(udc->transceiver)) in pxa27x_udc_stop() 1805 return otg_set_peripheral(udc->transceiver->otg, NULL); in pxa27x_udc_stop() 2385 udc->transceiver = in pxa_udc_probe() 2387 if (IS_ERR(udc->transceiver)) in pxa_udc_probe() [all …]
|
D | s3c-hsudc.c | 143 struct usb_phy *transceiver; member 1127 if (!IS_ERR_OR_NULL(hsudc->transceiver)) { in s3c_hsudc_start() 1128 ret = otg_set_peripheral(hsudc->transceiver->otg, in s3c_hsudc_start() 1175 if (!IS_ERR_OR_NULL(hsudc->transceiver)) in s3c_hsudc_stop() 1176 (void) otg_set_peripheral(hsudc->transceiver->otg, NULL); in s3c_hsudc_stop() 1203 if (!IS_ERR_OR_NULL(hsudc->transceiver)) in s3c_hsudc_vbus_draw() 1204 return usb_phy_set_power(hsudc->transceiver, mA); in s3c_hsudc_vbus_draw() 1232 hsudc->transceiver = usb_get_phy(USB_PHY_TYPE_USB2); in s3c_hsudc_probe() 1298 if (!IS_ERR_OR_NULL(hsudc->transceiver)) in s3c_hsudc_probe() 1299 usb_put_phy(hsudc->transceiver); in s3c_hsudc_probe()
|
D | omap_udc.c | 1155 if (!IS_ERR_OR_NULL(udc->transceiver)) in omap_wakeup() 1156 retval = otg_start_srp(udc->transceiver->otg); in omap_wakeup() 1288 if (!IS_ERR_OR_NULL(udc->transceiver)) in omap_vbus_draw() 1289 return usb_phy_set_power(udc->transceiver, mA); in omap_vbus_draw() 1738 if (IS_ERR_OR_NULL(udc->transceiver)) in devstate_irq() 1743 if (IS_ERR_OR_NULL(udc->transceiver)) in devstate_irq() 1783 if (!IS_ERR_OR_NULL(udc->transceiver)) in devstate_irq() 1785 udc->transceiver, 1); in devstate_irq() 1788 if (!IS_ERR_OR_NULL(udc->transceiver)) in devstate_irq() 1790 udc->transceiver, 0); in devstate_irq() [all …]
|
D | pxa25x_udc.c | 1213 if (!IS_ERR_OR_NULL(udc->transceiver)) in pxa25x_udc_vbus_draw() 1214 return usb_phy_set_power(udc->transceiver, mA); in pxa25x_udc_vbus_draw() 1477 if (!IS_ERR_OR_NULL(dev->transceiver)) { in pxa25x_udc_start() 1478 retval = otg_set_peripheral(dev->transceiver->otg, in pxa25x_udc_start() 1553 if (!IS_ERR_OR_NULL(dev->transceiver)) in pxa25x_udc_stop() 1554 (void) otg_set_peripheral(dev->transceiver->otg, NULL); in pxa25x_udc_stop() 2386 dev->transceiver = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2); in pxa25x_udc_probe() 2448 if (!IS_ERR_OR_NULL(dev->transceiver)) in pxa25x_udc_probe() 2449 dev->transceiver = NULL; in pxa25x_udc_probe() 2471 if (!IS_ERR_OR_NULL(dev->transceiver)) in pxa25x_udc_remove() [all …]
|
D | fsl_udc_core.c | 1202 if (!IS_ERR_OR_NULL(udc->transceiver)) in fsl_vbus_draw() 1203 return usb_phy_set_power(udc->transceiver, mA); in fsl_vbus_draw() 1949 if (!IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_start() 1955 if (!IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_start() 1957 udc_controller->transceiver->otg, in fsl_udc_start() 1982 if (!IS_ERR_OR_NULL(udc_controller->transceiver)) in fsl_udc_stop() 1983 otg_set_peripheral(udc_controller->transceiver->otg, NULL); in fsl_udc_stop() 2373 udc_controller->transceiver = usb_get_phy(USB_PHY_TYPE_USB2); in fsl_udc_probe() 2374 if (IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_probe() 2452 if (IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_probe() [all …]
|
D | mv_udc_core.c | 1369 if (udc->transceiver) { in mv_udc_start() 1370 retval = otg_set_peripheral(udc->transceiver->otg, in mv_udc_start() 2131 udc->transceiver = devm_usb_get_phy(&pdev->dev, in mv_udc_probe() 2133 if (IS_ERR(udc->transceiver)) { in mv_udc_probe() 2134 retval = PTR_ERR(udc->transceiver); in mv_udc_probe() 2139 udc->transceiver = NULL; in mv_udc_probe() 2269 if (udc->transceiver) in mv_udc_probe() 2336 if (udc->transceiver) in mv_udc_suspend() 2371 if (udc->transceiver) in mv_udc_resume()
|
/drivers/phy/allwinner/ |
D | Kconfig | 16 Enable this to support the transceiver that is part of Allwinner 44 Enable this to support the transceiver that is part of Allwinner 56 Enable this to support the USB3.0-capable transceiver that is
|
/drivers/phy/realtek/ |
D | Kconfig | 11 Enable this to support Realtek SoC USB2 phy transceiver. 22 Enable this to support Realtek SoC USB3 phy transceiver.
|
/drivers/net/can/spi/ |
D | hi311x.c | 170 struct regulator *transceiver; member 562 hi3110_power_enable(priv->transceiver, 0); in hi3110_stop() 754 hi3110_power_enable(priv->transceiver, 1); in hi3110_open() 800 hi3110_power_enable(priv->transceiver, 0); in hi3110_open() 890 priv->transceiver = devm_regulator_get_optional(&spi->dev, "xceiver"); in hi3110_can_probe() 892 (PTR_ERR(priv->transceiver) == -EPROBE_DEFER)) { in hi3110_can_probe() 985 hi3110_power_enable(priv->transceiver, 0); in hi3110_can_suspend() 1008 hi3110_power_enable(priv->transceiver, 1); in hi3110_can_resume()
|
D | mcp251x.c | 254 struct regulator *transceiver; member 970 mcp251x_power_enable(priv->transceiver, 0); in mcp251x_stop() 1220 mcp251x_power_enable(priv->transceiver, 1); in mcp251x_open() 1258 mcp251x_power_enable(priv->transceiver, 0); in mcp251x_open() 1364 priv->transceiver = devm_regulator_get_optional(&spi->dev, "xceiver"); in mcp251x_can_probe() 1366 (PTR_ERR(priv->transceiver) == -EPROBE_DEFER)) { in mcp251x_can_probe() 1479 mcp251x_power_enable(priv->transceiver, 0); in mcp251x_can_suspend() 1499 mcp251x_power_enable(priv->transceiver, 1); in mcp251x_can_resume()
|
/drivers/net/ethernet/marvell/prestera/ |
D | prestera_ethtool.c | 512 port->caps.transceiver == PRESTERA_PORT_TCVR_COPPER)) in prestera_ethtool_get_link_ksettings() 542 port->caps.transceiver == PRESTERA_PORT_TCVR_COPPER) in prestera_ethtool_get_link_ksettings() 547 port->caps.transceiver == PRESTERA_PORT_TCVR_COPPER) in prestera_ethtool_get_link_ksettings() 558 port->caps.transceiver == PRESTERA_PORT_TCVR_COPPER && in prestera_port_mdix_set() 639 if (port->caps.transceiver == PRESTERA_PORT_TCVR_COPPER) { in prestera_ethtool_set_link_ksettings() 762 port->caps.transceiver == PRESTERA_PORT_TCVR_COPPER && in prestera_ethtool_nway_reset()
|
/drivers/phy/ti/ |
D | Kconfig | 71 Enable this to support the transceiver that is part of SOC. This 102 Enable this to support the USB OTG transceiver on TWL4030 104 This transceiver supports high and full speed devices plus,
|
/drivers/phy/qualcomm/ |
D | Kconfig | 48 Enable this to support the QMP PHY transceiver that is used 57 Enable this to support the HighSpeed QUSB2 PHY transceiver for USB 105 Enable this to support the Super-Speed USB transceiver on various
|
/drivers/usb/renesas_usbhs/ |
D | mod_gadget.c | 47 struct usb_phy *transceiver; member 961 if (!IS_ERR_OR_NULL(gpriv->transceiver)) { in usbhsg_gadget_start() 962 ret = otg_set_peripheral(gpriv->transceiver->otg, in usbhsg_gadget_start() 987 if (!IS_ERR_OR_NULL(gpriv->transceiver)) in usbhsg_gadget_stop() 988 otg_set_peripheral(gpriv->transceiver->otg, NULL); in usbhsg_gadget_stop() 1097 gpriv->transceiver = usb_get_phy(USB_PHY_TYPE_UNDEFINED); in usbhs_mod_gadget_probe() 1099 !IS_ERR(gpriv->transceiver) ? "" : "no "); in usbhs_mod_gadget_probe()
|
/drivers/staging/most/i2c/ |
D | Kconfig | 10 Say Y here if you want to connect via I2C to network transceiver.
|
/drivers/staging/most/dim2/ |
D | Kconfig | 11 Say Y here if you want to connect via MediaLB to network transceiver.
|
/drivers/phy/ |
D | Makefile | 8 obj-$(CONFIG_PHY_CAN_TRANSCEIVER) += phy-can-transceiver.o
|
/drivers/net/ethernet/realtek/ |
D | Kconfig | 75 to match the transceiver to the cable characteristics. This is 84 RTL-8130 chips, which support MII via an external transceiver,
|