Home
last modified time | relevance | path

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

12

/drivers/usb/phy/
DKconfig19 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/power/supply/
Dpda_power.c37 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 …]
Dtwl4030_charger.c115 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/net/ieee802154/
DKconfig26 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/
DKconfig6 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/
Dpxa27x_udc.c1488 put_on &= ((udc->vbus_sensed) || (IS_ERR_OR_NULL(udc->transceiver))); in should_enable_udc()
1509 put_off |= ((!udc->vbus_sensed) && (!IS_ERR_OR_NULL(udc->transceiver))); in should_disable_udc()
1577 if (!IS_ERR_OR_NULL(udc->transceiver)) in pxa_udc_vbus_draw()
1578 return usb_phy_set_power(udc->transceiver, mA); in pxa_udc_vbus_draw()
1757 if (!IS_ERR_OR_NULL(udc->transceiver)) { in pxa27x_udc_start()
1758 retval = otg_set_peripheral(udc->transceiver->otg, in pxa27x_udc_start()
1808 if (!IS_ERR_OR_NULL(udc->transceiver)) in pxa27x_udc_stop()
1809 return otg_set_peripheral(udc->transceiver->otg, NULL); in pxa27x_udc_stop()
2391 udc->transceiver = in pxa_udc_probe()
2393 if (IS_ERR(udc->transceiver)) in pxa_udc_probe()
[all …]
Ds3c-hsudc.c145 struct usb_phy *transceiver; member
1176 if (!IS_ERR_OR_NULL(hsudc->transceiver)) { in s3c_hsudc_start()
1177 ret = otg_set_peripheral(hsudc->transceiver->otg, in s3c_hsudc_start()
1222 if (!IS_ERR_OR_NULL(hsudc->transceiver)) in s3c_hsudc_stop()
1223 (void) otg_set_peripheral(hsudc->transceiver->otg, NULL); in s3c_hsudc_stop()
1250 if (!IS_ERR_OR_NULL(hsudc->transceiver)) in s3c_hsudc_vbus_draw()
1251 return usb_phy_set_power(hsudc->transceiver, mA); in s3c_hsudc_vbus_draw()
1281 hsudc->transceiver = usb_get_phy(USB_PHY_TYPE_USB2); in s3c_hsudc_probe()
1348 if (!IS_ERR_OR_NULL(hsudc->transceiver)) in s3c_hsudc_probe()
1349 usb_put_phy(hsudc->transceiver); in s3c_hsudc_probe()
Domap_udc.c1155 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 …]
Dpxa25x_udc.c1213 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()
2388 dev->transceiver = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2); in pxa25x_udc_probe()
2450 if (!IS_ERR_OR_NULL(dev->transceiver)) in pxa25x_udc_probe()
2451 dev->transceiver = NULL; in pxa25x_udc_probe()
2473 if (!IS_ERR_OR_NULL(dev->transceiver)) in pxa25x_udc_remove()
[all …]
Dfsl_udc_core.c1205 if (!IS_ERR_OR_NULL(udc->transceiver)) in fsl_vbus_draw()
1206 return usb_phy_set_power(udc->transceiver, mA); in fsl_vbus_draw()
1955 if (!IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_start()
1961 if (!IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_start()
1963 udc_controller->transceiver->otg, in fsl_udc_start()
1988 if (!IS_ERR_OR_NULL(udc_controller->transceiver)) in fsl_udc_stop()
1989 otg_set_peripheral(udc_controller->transceiver->otg, NULL); in fsl_udc_stop()
2381 udc_controller->transceiver = usb_get_phy(USB_PHY_TYPE_USB2); in fsl_udc_probe()
2382 if (IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_probe()
2466 if (IS_ERR_OR_NULL(udc_controller->transceiver)) { in fsl_udc_probe()
[all …]
Dmv_udc_core.c1370 if (udc->transceiver) { in mv_udc_start()
1371 retval = otg_set_peripheral(udc->transceiver->otg, in mv_udc_start()
2132 udc->transceiver = devm_usb_get_phy(&pdev->dev, in mv_udc_probe()
2134 if (IS_ERR(udc->transceiver)) { in mv_udc_probe()
2135 retval = PTR_ERR(udc->transceiver); in mv_udc_probe()
2140 udc->transceiver = NULL; in mv_udc_probe()
2270 if (udc->transceiver) in mv_udc_probe()
2336 if (udc->transceiver) in mv_udc_suspend()
2371 if (udc->transceiver) in mv_udc_resume()
Domap_udc.h167 struct usb_phy *transceiver; member
Dpxa25x_udc.h116 struct usb_phy *transceiver; member
Dmv_udc.h216 struct usb_phy *transceiver; member
/drivers/phy/allwinner/
DKconfig16 Enable this to support the transceiver that is part of Allwinner
44 Enable this to support the transceiver that is part of Allwinner
/drivers/net/can/spi/
Dhi311x.c170 struct regulator *transceiver; member
562 hi3110_power_enable(priv->transceiver, 0); in hi3110_stop()
753 hi3110_power_enable(priv->transceiver, 1); in hi3110_open()
799 hi3110_power_enable(priv->transceiver, 0); in hi3110_open()
889 priv->transceiver = devm_regulator_get_optional(&spi->dev, "xceiver"); in hi3110_can_probe()
891 (PTR_ERR(priv->transceiver) == -EPROBE_DEFER)) { in hi3110_can_probe()
984 hi3110_power_enable(priv->transceiver, 0); in hi3110_can_suspend()
1007 hi3110_power_enable(priv->transceiver, 1); in hi3110_can_resume()
Dmcp251x.c227 struct regulator *transceiver; member
657 mcp251x_power_enable(priv->transceiver, 0); in mcp251x_stop()
890 mcp251x_power_enable(priv->transceiver, 1); in mcp251x_open()
939 mcp251x_power_enable(priv->transceiver, 0); in mcp251x_open()
1045 priv->transceiver = devm_regulator_get_optional(&spi->dev, "xceiver"); in mcp251x_can_probe()
1047 (PTR_ERR(priv->transceiver) == -EPROBE_DEFER)) { in mcp251x_can_probe()
1139 mcp251x_power_enable(priv->transceiver, 0); in mcp251x_can_suspend()
1160 mcp251x_power_enable(priv->transceiver, 1); in mcp251x_can_resume()
/drivers/phy/ti/
DKconfig55 Enable this to support the transceiver that is part of SOC. This
86 Enable this to support the USB OTG transceiver on TWL4030
88 This transceiver supports high and full speed devices plus,
/drivers/usb/renesas_usbhs/
Dmod_gadget.c47 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/phy/qualcomm/
DKconfig41 Enable this to support the QMP PHY transceiver that is used
50 Enable this to support the HighSpeed QUSB2 PHY transceiver for USB
/drivers/staging/most/dim2/
DKconfig11 Say Y here if you want to connect via MediaLB to network transceiver.
/drivers/net/ethernet/realtek/
DKconfig75 to match the transceiver to the cable characteristics. This is
84 RTL-8130 chips, which support MII via an external transceiver,
/drivers/phy/mediatek/
DKconfig32 Enable this to support the SuperSpeedPlus XS-PHY transceiver for
/drivers/phy/st/
DKconfig10 Enable this to support the miphy transceiver (for SATA/PCIE/USB3)
/drivers/net/ethernet/mellanox/mlx4/
Den_port.c118 state->transceiver = qport_context->transceiver; in mlx4_en_QUERY_PORT()

12