summaryrefslogtreecommitdiffstats
path: root/drivers/phy/Kconfig
diff options
context:
space:
mode:
authorLucas Stach <dev@lynxeye.de>2014-11-02 21:13:53 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-11-04 09:50:44 +0100
commit9d1fbc5d12824f882a477f331966517dbc2db5b2 (patch)
treeaebd6191a0efa3ea2e66b5edede5ae3cb07cbe4c /drivers/phy/Kconfig
parente000cbeb7a8340f6fe3204db4555790697815ce8 (diff)
downloadbarebox-9d1fbc5d12824f882a477f331966517dbc2db5b2.tar.gz
barebox-9d1fbc5d12824f882a477f331966517dbc2db5b2.tar.xz
add generic PHY framework
This brings in the generix PHY framework from Linux. I tried to strip it down as much as possible while keeping it useful. Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/phy/Kconfig')
-rw-r--r--drivers/phy/Kconfig18
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
new file mode 100644
index 0000000000..e9461e1a25
--- /dev/null
+++ b/drivers/phy/Kconfig
@@ -0,0 +1,18 @@
+#
+# PHY
+#
+
+menu "PHY Subsystem"
+
+config GENERIC_PHY
+ bool "PHY Core"
+ help
+ Generic PHY support.
+
+ This framework is designed to provide a generic interface for PHY
+ devices present in the kernel. This layer will have the generic
+ API by which phy drivers can create PHY using the phy framework and
+ phy users can obtain reference to the PHY. All the users of this
+ framework should select this config.
+
+endmenu