blob: d3fa9ded2ad73e652ca9c818e764c6bd3c27a596 [file] [log] [blame]
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +02001
2menu "PHY Subsystem"
3
4config PHY
5 bool "PHY Core"
6 depends on DM
7 help
8 PHY support.
9
10 This framework is designed to provide a generic interface for PHY
11 devices. PHY devices are dedicated hardware that handle the physical
12 layer of the protocols in the OSI model.
13 PHYs are commonly used for high speed interfaces such as Serial-ATA
14 or PCI express.
15 The API provides functions to initialize/deinitialize the
16 PHY, power on/off the PHY, and reset the PHY. It's meant to be as
17 compatible as possible with the equivalent framework found in the
18 linux kernel.
19
20config SPL_PHY
21 bool "PHY Core in SPL"
22 depends on DM
23 help
24 PHY support in SPL.
25
26 This framework is designed to provide a generic interface for PHY
27 devices. PHY devices are dedicated hardware that handle the physical
28 layer of the protocols (https://en.wikipedia.org/wiki/OSI_model).
29 PHYs are commonly used for high speed interfaces such as Serial-ATA
30 or PCI express.
31 The API provides functions to initialize/deinitialize the
32 PHY, power on/off the PHY, and reset the PHY. It's meant to be as
33 compatible as possible with the equivalent framework found in the
34 linux kernel.
35
Jean-Jacques Hiblot86322f52017-04-24 11:51:28 +020036config PHY_SANDBOX
37 bool "Sandbox PHY support"
38 depends on SANDBOX
39 depends on PHY
40 help
41 This select a dummy sandbox PHY driver. It used only to implement
42 the unit tests for the phy framework
43
Jean-Jacques Hiblot3b63db32017-07-24 15:18:15 +020044config NOP_PHY
45 bool "NOP PHY driver"
46 depends on PHY
47 help
48 Support for a no-op PHY driver (stubbed PHY driver).
49
50 This is useful when a driver uses the PHY framework but no real PHY
51 hardware exists.
52
53config SPL_NOP_PHY
54 bool "NOP PHY driver in SPL"
55 depends on SPL_PHY
56 help
57 Support for a no-op PHY driver (stubbed PHY driver) in the SPL.
58
59 This is useful when a driver uses the PHY framework but no real PHY
60 hardware exists.
61
Álvaro Fernández Rojasbcb9b502018-02-04 11:18:24 +010062config BCM6348_USBH_PHY
63 bool "BCM6348 USBH PHY support"
64 depends on PHY && ARCH_BMIPS
65 help
66 Support for the Broadcom MIPS BCM6348 USBH PHY.
67
Álvaro Fernández Rojas190c36b2018-02-04 11:19:11 +010068config BCM6358_USBH_PHY
69 bool "BCM6358 USBH PHY support"
70 depends on PHY && ARCH_BMIPS
71 help
72 Support for the Broadcom MIPS BCM6358 USBH PHY.
73
Álvaro Fernández Rojasf55c1532018-02-04 21:10:13 +010074config BCM6368_USBH_PHY
75 bool "BCM6368 USBH PHY support"
76 depends on PHY && ARCH_BMIPS
77 help
78 Support for the Broadcom MIPS BCM6368 USBH PHY.
79
Jean-Jacques Hiblot982082d2017-04-24 11:51:29 +020080config PIPE3_PHY
81 bool "Support omap's PIPE3 PHY"
Jean-Jacques Hiblot6b26aae2017-07-07 12:13:34 +020082 depends on PHY && ARCH_OMAP2PLUS
Jean-Jacques Hiblot982082d2017-04-24 11:51:29 +020083 help
84 Support for the omap PIPE3 phy for sata
85
86 This PHY is found on omap devices supporting SATA such as dra7, am57x
87 and omap5
88
89config SPL_PIPE3_PHY
90 bool "Support omap's PIPE3 PHY in SPL"
Jean-Jacques Hiblot6b26aae2017-07-07 12:13:34 +020091 depends on SPL_PHY && ARCH_OMAP2PLUS
Jean-Jacques Hiblot982082d2017-04-24 11:51:29 +020092 help
93 Support for the omap PIPE3 phy for sata in SPL
94
95 This PHY is found on omap devices supporting SATA such as dra7, am57x
96 and omap5
97
Patrice Chotardb7ca56d2017-09-05 11:04:21 +020098config STI_USB_PHY
99 bool "STMicroelectronics USB2 picoPHY driver for STiH407 family"
100 depends on PHY && ARCH_STI
101 help
102 This is the generic phy driver for the picoPHY ports
103 used by USB2 and USB3 Host controllers available on
104 STiH407 SoC families.
105
Jean-Jacques Hiblot72e50162017-04-24 11:51:27 +0200106endmenu