]>
Commit | Line | Data |
---|---|---|
ff764963 KVA |
1 | # |
2 | # PHY | |
3 | # | |
4 | ||
5 | menu "PHY Subsystem" | |
6 | ||
7 | config GENERIC_PHY | |
b51fbf9f | 8 | bool "PHY Core" |
ff764963 KVA |
9 | help |
10 | Generic PHY support. | |
11 | ||
12 | This framework is designed to provide a generic interface for PHY | |
13 | devices present in the kernel. This layer will have the generic | |
14 | API by which phy drivers can create PHY using the phy framework and | |
15 | phy users can obtain reference to the PHY. All the users of this | |
16 | framework should select this config. | |
17 | ||
dddc97e8 MR |
18 | config GENERIC_PHY_MIPI_DPHY |
19 | bool | |
20 | help | |
21 | Generic MIPI D-PHY support. | |
22 | ||
23 | Provides a number of helpers a core functions for MIPI D-PHY | |
24 | drivers to us. | |
25 | ||
cbf919bd JE |
26 | config PHY_LPC18XX_USB_OTG |
27 | tristate "NXP LPC18xx/43xx SoC USB OTG PHY driver" | |
28 | depends on OF && (ARCH_LPC18XX || COMPILE_TEST) | |
29 | depends on MFD_SYSCON | |
30 | select GENERIC_PHY | |
31 | help | |
32 | Enable this to support NXP LPC18xx/43xx internal USB OTG PHY. | |
33 | ||
34 | This driver is need for USB0 support on LPC18xx/43xx and takes | |
35 | care of enabling and clock setup. | |
36 | ||
57991eba AB |
37 | config PHY_PISTACHIO_USB |
38 | tristate "IMG Pistachio USB2.0 PHY driver" | |
39 | depends on MACH_PISTACHIO | |
40 | select GENERIC_PHY | |
41 | help | |
42 | Enable this to support the USB2.0 PHY on the IMG Pistachio SoC. | |
43 | ||
10c8e056 LT |
44 | config PHY_XGENE |
45 | tristate "APM X-Gene 15Gbps PHY support" | |
46 | depends on HAS_IOMEM && OF && (ARM64 || COMPILE_TEST) | |
47 | select GENERIC_PHY | |
48 | help | |
49 | This option enables support for APM X-Gene SoC multi-purpose PHY. | |
50 | ||
0b56e9a7 VG |
51 | source "drivers/phy/allwinner/Kconfig" |
52 | source "drivers/phy/amlogic/Kconfig" | |
53 | source "drivers/phy/broadcom/Kconfig" | |
c8b427ed | 54 | source "drivers/phy/cadence/Kconfig" |
efe81bea | 55 | source "drivers/phy/freescale/Kconfig" |
0b56e9a7 | 56 | source "drivers/phy/hisilicon/Kconfig" |
dea54fba | 57 | source "drivers/phy/lantiq/Kconfig" |
0b56e9a7 | 58 | source "drivers/phy/marvell/Kconfig" |
cd4ec4b0 | 59 | source "drivers/phy/mediatek/Kconfig" |
6d6ce40f | 60 | source "drivers/phy/motorola/Kconfig" |
51f6b410 | 61 | source "drivers/phy/mscc/Kconfig" |
0b56e9a7 | 62 | source "drivers/phy/qualcomm/Kconfig" |
2411a736 | 63 | source "drivers/phy/ralink/Kconfig" |
0b56e9a7 VG |
64 | source "drivers/phy/renesas/Kconfig" |
65 | source "drivers/phy/rockchip/Kconfig" | |
66 | source "drivers/phy/samsung/Kconfig" | |
5ab43d0f | 67 | source "drivers/phy/socionext/Kconfig" |
0b56e9a7 | 68 | source "drivers/phy/st/Kconfig" |
53d2a715 | 69 | source "drivers/phy/tegra/Kconfig" |
0b56e9a7 | 70 | source "drivers/phy/ti/Kconfig" |
7965ba05 | 71 | |
ff764963 | 72 | endmenu |