blob: 6491717a636af44968afcc26bee9096caa5b7bfc [file] [log] [blame]
David Brownellb8da8672008-11-24 11:53:35 -08001#
2# USB OTG infrastructure may be needed for peripheral-only, host-only,
3# or OTG-capable configurations when OTG transceivers or controllers
4# are used.
5#
6
7comment "OTG and related infrastructure"
8
David Brownellb8da8672008-11-24 11:53:35 -08009config USB_OTG_UTILS
10 bool
11 help
12 Select this to make sure the build includes objects from
13 the OTG infrastructure directory.
14
David Brownell2bf5fa12009-01-24 17:55:57 -080015if USB || USB_GADGET
16
Philipp Zabel6084f1b2008-11-24 12:00:01 -080017#
18# USB Transceiver Drivers
19#
20config USB_GPIO_VBUS
21 tristate "GPIO based peripheral-only VBUS sensing 'transceiver'"
22 depends on GENERIC_GPIO
23 select USB_OTG_UTILS
24 help
25 Provides simple GPIO VBUS sensing for controllers with an
26 internal transceiver via the otg_transceiver interface, and
27 optionally control of a D+ pullup GPIO as well as a VBUS
28 current limit regulator.
29
David Brownellb8da8672008-11-24 11:53:35 -080030config ISP1301_OMAP
31 tristate "Philips ISP1301 with OMAP OTG"
32 depends on I2C && ARCH_OMAP_OTG
33 select USB_OTG_UTILS
34 help
35 If you say yes here you get support for the Philips ISP1301
36 USB-On-The-Go transceiver working with the OMAP OTG controller.
37 The ISP1301 is a full speed USB transceiver which is used in
38 products including H2, H3, and H4 development boards for Texas
39 Instruments OMAP processors.
40
41 This driver can also be built as a module. If so, the module
42 will be called isp1301_omap.
43
Daniel Mack2d57a952009-10-15 17:09:35 +030044config USB_ULPI
45 bool "Generic ULPI Transceiver Driver"
46 depends on ARM
Valentin Longchampdd091c72010-01-20 20:06:31 +010047 select USB_OTG_UTILS
Daniel Mack2d57a952009-10-15 17:09:35 +030048 help
49 Enable this to support ULPI connected USB OTG transceivers which
50 are likely found on embedded boards.
51
David Brownell9ebd9612008-12-18 12:25:44 -080052config TWL4030_USB
53 tristate "TWL4030 USB Transceiver Driver"
Jouni Hogander66760162009-02-20 14:02:31 +020054 depends on TWL4030_CORE && REGULATOR_TWL4030
David Brownell9ebd9612008-12-18 12:25:44 -080055 select USB_OTG_UTILS
56 help
57 Enable this to support the USB OTG transceiver on TWL4030
58 family chips (including the TWL5030 and TPS659x0 devices).
59 This transceiver supports high and full speed devices plus,
60 in host mode, low speed.
61
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053062config NOP_USB_XCEIV
63 tristate "NOP USB Transceiver Driver"
64 select USB_OTG_UTILS
65 help
66 this driver is to be used by all the usb transceiver which are either
67 built-in with usb ip or which are autonomous and doesn't require any
68 phy programming such as ISP1x04 etc.
69
Hao Wuf0ae8492010-08-05 14:17:28 +010070config USB_LANGWELL_OTG
71 tristate "Intel Langwell USB OTG dual-role support"
Hao Wu56e94062010-09-09 22:35:54 +010072 depends on USB && PCI && INTEL_SCU_IPC
Hao Wuf0ae8492010-08-05 14:17:28 +010073 select USB_OTG
74 select USB_OTG_UTILS
75 help
76 Say Y here if you want to build Intel Langwell USB OTG
77 transciever driver in kernel. This driver implements role
78 switch between EHCI host driver and Langwell USB OTG
79 client driver.
80
81 To compile this driver as a module, choose M here: the
82 module will be called langwell_otg.
83
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +053084config USB_MSM_OTG_72K
85 tristate "OTG support for Qualcomm on-chip USB controller"
86 depends on (USB || USB_GADGET) && ARCH_MSM
87 select USB_OTG_UTILS
88 help
89 Enable this to support the USB OTG transceiver on MSM chips. It
90 handles PHY initialization, clock management, and workarounds
Pavankumar Kondeti87c01042010-12-07 17:53:58 +053091 required after resetting the hardware and power management.
92 This driver is required even for peripheral only or host only
93 mode configurations.
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +053094
Mian Yousaf Kaukab96915232010-12-07 15:00:09 +010095config AB8500_USB
96 tristate "AB8500 USB Transceiver Driver"
97 depends on AB8500_CORE
98 select USB_OTG_UTILS
99 help
100 Enable this to support the USB OTG transceiver in AB8500 chip.
101 This transceiver supports high and full speed devices plus,
102 in host mode, low speed.
103
David Brownellb8da8672008-11-24 11:53:35 -0800104endif # USB || OTG