David Brownell | b8da867 | 2008-11-24 11:53:35 -0800 | [diff] [blame] | 1 | # |
| 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 | |
| 7 | comment "OTG and related infrastructure" |
| 8 | |
David Brownell | b8da867 | 2008-11-24 11:53:35 -0800 | [diff] [blame] | 9 | config 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 Brownell | 2bf5fa1 | 2009-01-24 17:55:57 -0800 | [diff] [blame] | 15 | if USB || USB_GADGET |
| 16 | |
Philipp Zabel | 6084f1b | 2008-11-24 12:00:01 -0800 | [diff] [blame] | 17 | # |
| 18 | # USB Transceiver Drivers |
| 19 | # |
| 20 | config 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 Brownell | b8da867 | 2008-11-24 11:53:35 -0800 | [diff] [blame] | 30 | config 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 Mack | 2d57a95 | 2009-10-15 17:09:35 +0300 | [diff] [blame] | 44 | config USB_ULPI |
| 45 | bool "Generic ULPI Transceiver Driver" |
| 46 | depends on ARM |
Valentin Longchamp | dd091c7 | 2010-01-20 20:06:31 +0100 | [diff] [blame^] | 47 | select USB_OTG_UTILS |
Daniel Mack | 2d57a95 | 2009-10-15 17:09:35 +0300 | [diff] [blame] | 48 | help |
| 49 | Enable this to support ULPI connected USB OTG transceivers which |
| 50 | are likely found on embedded boards. |
| 51 | |
| 52 | The only chip currently supported is NXP's ISP1504 |
| 53 | |
David Brownell | 9ebd961 | 2008-12-18 12:25:44 -0800 | [diff] [blame] | 54 | config TWL4030_USB |
| 55 | tristate "TWL4030 USB Transceiver Driver" |
Jouni Hogander | 6676016 | 2009-02-20 14:02:31 +0200 | [diff] [blame] | 56 | depends on TWL4030_CORE && REGULATOR_TWL4030 |
David Brownell | 9ebd961 | 2008-12-18 12:25:44 -0800 | [diff] [blame] | 57 | select USB_OTG_UTILS |
| 58 | help |
| 59 | Enable this to support the USB OTG transceiver on TWL4030 |
| 60 | family chips (including the TWL5030 and TPS659x0 devices). |
| 61 | This transceiver supports high and full speed devices plus, |
| 62 | in host mode, low speed. |
| 63 | |
Ajay Kumar Gupta | f6d92a0 | 2009-02-06 17:32:35 +0530 | [diff] [blame] | 64 | config NOP_USB_XCEIV |
| 65 | tristate "NOP USB Transceiver Driver" |
| 66 | select USB_OTG_UTILS |
| 67 | help |
| 68 | this driver is to be used by all the usb transceiver which are either |
| 69 | built-in with usb ip or which are autonomous and doesn't require any |
| 70 | phy programming such as ISP1x04 etc. |
| 71 | |
David Brownell | b8da867 | 2008-11-24 11:53:35 -0800 | [diff] [blame] | 72 | endif # USB || OTG |