PSP-03.00.00.03
[linux-ginger.git] / drivers / usb / musb / Kconfig
blob973894aaa790511d33b6871f6c69145b167c3f3f
2 # USB Dual Role (OTG-ready) Controller Drivers
3 # for silicon based on Mentor Graphics INVENTRA designs
6 comment "Enable Host or Gadget support to see Inventra options"
7         depends on !USB && USB_GADGET=n
9 # (M)HDRC = (Multipoint) Highspeed Dual-Role Controller
10 config USB_MUSB_HDRC
11         depends on (USB || USB_GADGET)
12         depends on (ARM || BLACKFIN)
13         select NOP_USB_XCEIV if ARCH_DAVINCI
14         select TWL4030_USB if MACH_OMAP_3430SDP
15         select NOP_USB_XCEIV if MACH_OMAP3EVM
16         select NOP_USB_XCEIV if MACH_OMAP3517EVM
17         select USB_OTG_UTILS
18         tristate 'Inventra Highspeed Dual Role Controller (TI, ADI, ...)'
19         help
20           Say Y here if your system has a dual role high speed USB
21           controller based on the Mentor Graphics silicon IP.  Then
22           configure options to match your silicon and the board
23           it's being used with, including the USB peripheral role,
24           or the USB host role, or both.
26           Texas Instruments familiies using this IP include DaVinci
27           (35x, 644x ...), OMAP 243x, OMAP 3, and TUSB 6010.
29           Analog Devices parts using this IP include Blackfin BF54x,
30           BF525 and BF527.
32           If you do not know what this is, please say N.
34           To compile this driver as a module, choose M here; the
35           module will be called "musb_hdrc".
37 config USB_MUSB_SOC
38         boolean
39         depends on USB_MUSB_HDRC
40         default y if ARCH_DAVINCI
41         default y if ARCH_OMAP2430
42         default y if ARCH_OMAP34XX
43         default y if (BF54x && !BF544)
44         default y if (BF52x && !BF522 && !BF523)
46 comment "DaVinci 35x and 644x USB support"
47         depends on USB_MUSB_HDRC && ARCH_DAVINCI
49 comment "OMAP 243x high speed USB support"
50         depends on USB_MUSB_HDRC && ARCH_OMAP2430
52 comment "OMAP 343x high speed USB support"
53         depends on USB_MUSB_HDRC && ARCH_OMAP34XX
55 comment "Blackfin high speed USB Support"
56         depends on USB_MUSB_HDRC && ((BF54x && !BF544) || (BF52x && !BF522 && !BF523))
58 config USB_TUSB6010
59         boolean "TUSB 6010 support"
60         depends on USB_MUSB_HDRC && !USB_MUSB_SOC
61         select NOP_USB_XCEIV
62         default y
63         help
64           The TUSB 6010 chip, from Texas Instruments, connects a discrete
65           HDRC core using a 16-bit parallel bus (NOR flash style) or VLYNQ
66           (a high speed serial link).  It can use system-specific external
67           DMA controllers.
69 choice
70         prompt "Driver Mode"
71         depends on USB_MUSB_HDRC
72         help
73           Dual-Role devices can support both host and peripheral roles,
74           as well as a the special "OTG Device" role which can switch
75           between both roles as needed.
77 # use USB_MUSB_HDRC_HCD not USB_MUSB_HOST to #ifdef host side support;
78 # OTG needs both roles, not just USB_MUSB_HOST.
79 config USB_MUSB_HOST
80         depends on USB
81         bool "USB Host"
82         help
83           Say Y here if your system supports the USB host role.
84           If it has a USB "A" (rectangular), "Mini-A" (uncommon),
85           or "Mini-AB" connector, it supports the host role.
86           (With a "Mini-AB" connector, you should enable USB OTG.)
88 # use USB_GADGET_MUSB_HDRC not USB_MUSB_PERIPHERAL to #ifdef peripheral
89 # side support ... OTG needs both roles
90 config USB_MUSB_PERIPHERAL
91         depends on USB_GADGET
92         bool "USB Peripheral (gadget stack)"
93         select USB_GADGET_MUSB_HDRC
94         help
95           Say Y here if your system supports the USB peripheral role.
96           If it has a USB "B" (squarish), "Mini-B", or "Mini-AB"
97           connector, it supports the peripheral role.
98           (With a "Mini-AB" connector, you should enable USB OTG.)
100 config USB_MUSB_OTG
101         depends on USB && USB_GADGET && EXPERIMENTAL
102         bool "Both host and peripheral:  USB OTG (On The Go) Device"
103         select USB_GADGET_MUSB_HDRC
104         select USB_OTG
105         help
106            The most notable feature of USB OTG is support for a
107            "Dual-Role" device, which can act as either a device
108            or a host.  The initial role choice can be changed
109            later, when two dual-role devices talk to each other.
111            At this writing, the OTG support in this driver is incomplete,
112            omitting the mandatory HNP or SRP protocols.  However, some
113            of the cable based role switching works.  (That is, grounding
114            the ID pin switches the controller to host mode, while leaving
115            it floating leaves it in peripheral mode.)
117            Select this if your system has a Mini-AB connector, or
118            to simplify certain kinds of configuration.
120            To implement your OTG Targeted Peripherals List (TPL), enable
121            USB_OTG_WHITELIST and update "drivers/usb/core/otg_whitelist.h"
122            to match your requirements.
124 endchoice
126 # enable peripheral support (including with OTG)
127 config USB_GADGET_MUSB_HDRC
128         bool
129         depends on USB_MUSB_HDRC && (USB_MUSB_PERIPHERAL || USB_MUSB_OTG)
130 #       default y
131 #       select USB_GADGET_DUALSPEED
132 #       select USB_GADGET_SELECTED
134 # enables host support (including with OTG)
135 config USB_MUSB_HDRC_HCD
136         bool
137         depends on USB_MUSB_HDRC && (USB_MUSB_HOST || USB_MUSB_OTG)
138         select USB_OTG if USB_GADGET_MUSB_HDRC
139         default y
142 config MUSB_PIO_ONLY
143         bool 'Disable DMA (always use PIO)'
144         depends on USB_MUSB_HDRC
145         default y if USB_TUSB6010
146         help
147           All data is copied between memory and FIFO by the CPU.
148           DMA controllers are ignored.
150           Do not select 'n' here unless DMA support for your SOC or board
151           is unavailable (or unstable).  When DMA is enabled at compile time,
152           you can still disable it at run time using the "use_dma=n" module
153           parameter.
155 config USB_INVENTRA_DMA
156         bool
157         depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY && !MACH_OMAP3517EVM
158         default ARCH_OMAP2430 || ARCH_OMAP34XX || BLACKFIN
159         help
160           Enable DMA transfers using Mentor's engine.
162 config MUSB_USE_SYSTEM_DMA_RX
163         bool 'Use System DMA for RX endpoints'
164         depends on USB_MUSB_HDRC && USB_INVENTRA_DMA
165         default y
166         help
167           MUSB RTL version 1.4 has a hardware issue when TX and RX DMA
168           channels are simultaneously enabled. To work around this issue,
169           you can choose to use System DMA for RX channels.
171 config USB_TI_CPPI_DMA
172         bool
173         depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
174         default ARCH_DAVINCI_DMx
175         help
176           Enable DMA transfers when TI CPPI DMA is available.
178 config USB_TI_CPPI41_DMA
179         bool
180         depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
181         default ARCH_DAVINCI_DA830 || MACH_OMAP3517EVM
182         select CPPI41
183         help
184          Enable DMA transfers when TI CPPI 4.1 DMA is available.
186 config USB_TUSB_OMAP_DMA
187         bool
188         depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
189         depends on USB_TUSB6010
190         depends on ARCH_OMAP
191         default y
192         help
193           Enable DMA transfers on TUSB 6010 when OMAP DMA is available.
195 config  USB_MUSB_DEBUG
196         depends on USB_MUSB_HDRC
197         bool "Enable debugging messages"
198         default n
199         help
200           This enables musb debugging. To set the logging level use the debug
201           module parameter. Starting at level 3, per-transfer (urb, usb_request,
202           packet, or dma transfer) tracing may kick in.