summaryrefslogtreecommitdiffstats
path: root/drivers/phy/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2016-09-29 12:51:23 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-09-29 14:27:06 +0200
commit068bc903c134722767913657a938e592a1fed1d6 (patch)
tree8fd4fa0a8e5082f1ee7d8a309ca907cf015fb31d /drivers/phy/Kconfig
parent081554dca90cdc59d6ca64f83125e741078ea0d9 (diff)
downloadbarebox-068bc903c134722767913657a938e592a1fed1d6.tar.gz
barebox-068bc903c134722767913657a938e592a1fed1d6.tar.xz
phy: Add usb-nop-xceiv support
Add a nop usb transcveiver driver. At the moment it does nothing, so is nothing more than a driver to satisfy the device tree dependencies. clk / vbus-regulator / vbus-detect-gpio support can be added later. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/phy/Kconfig')
-rw-r--r--drivers/phy/Kconfig15
1 files changed, 11 insertions, 4 deletions
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index e9461e1a25..b0c8b9bf0e 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -2,9 +2,7 @@
# PHY
#
-menu "PHY Subsystem"
-
-config GENERIC_PHY
+menuconfig GENERIC_PHY
bool "PHY Core"
help
Generic PHY support.
@@ -15,4 +13,13 @@ config GENERIC_PHY
phy users can obtain reference to the PHY. All the users of this
framework should select this config.
-endmenu
+if GENERIC_PHY
+
+config USB_NOP_XCEIV
+ bool "Generic USB nop phy"
+ help
+ This driver is to be used by all the usb transceiver which are either
+ built-in with usb ip or which are autonomous and doesn't require any
+ phy programming such as ISP1x04 etc.
+
+endif