Kconfig 5.5 KB
Newer Older
F
Felipe Balbi 已提交
1 2 3 4 5 6 7 8 9 10
#
# USB Dual Role (OTG-ready) Controller Drivers
# for silicon based on Mentor Graphics INVENTRA designs
#

comment "Enable Host or Gadget support to see Inventra options"
	depends on !USB && USB_GADGET=n

# (M)HDRC = (Multipoint) Highspeed Dual-Role Controller
config USB_MUSB_HDRC
11
	depends on (USB || USB_GADGET)
12
	depends on (ARM || (BF54x && !BF544) || (BF52x && !BF522 && !BF523))
13
	select NOP_USB_XCEIV if (ARCH_DAVINCI || MACH_OMAP3EVM || BLACKFIN)
F
Felipe Balbi 已提交
14
	select TWL4030_USB if MACH_OMAP_3430SDP
15
	select USB_OTG_UTILS
16
	tristate 'Inventra Highspeed Dual Role Controller (TI, ADI, ...)'
F
Felipe Balbi 已提交
17 18 19 20 21 22 23
	help
	  Say Y here if your system has a dual role high speed USB
	  controller based on the Mentor Graphics silicon IP.  Then
	  configure options to match your silicon and the board
	  it's being used with, including the USB peripheral role,
	  or the USB host role, or both.

24 25
	  Texas Instruments familiies using this IP include DaVinci
	  (35x, 644x ...), OMAP 243x, OMAP 3, and TUSB 6010.
F
Felipe Balbi 已提交
26

27 28 29
	  Analog Devices parts using this IP include Blackfin BF54x,
	  BF525 and BF527.

F
Felipe Balbi 已提交
30 31 32
	  If you do not know what this is, please say N.

	  To compile this driver as a module, choose M here; the
33
	  module will be called "musb-hdrc".
F
Felipe Balbi 已提交
34

35 36
choice
	prompt "Platform Glue Layer"
F
Felipe Balbi 已提交
37 38
	depends on USB_MUSB_HDRC

39 40 41
config USB_MUSB_DAVINCI
	bool "DaVinci"
	depends on ARCH_DAVINCI_DMx
F
Felipe Balbi 已提交
42

43 44 45
config USB_MUSB_DA8XX
	bool "DA8xx/OMAP-L1x"
	depends on ARCH_DAVINCI_DA8XX
46

47 48 49
config USB_MUSB_TUSB6010
	bool "TUSB6010"
	depends on ARCH_OMAP
F
Felipe Balbi 已提交
50

51 52 53
config USB_MUSB_OMAP2PLUS
	bool "OMAP2430 and onwards"
	depends on ARCH_OMAP2PLUS
F
Felipe Balbi 已提交
54

55 56 57
config USB_MUSB_AM35X
	bool "AM35x"
	depends on ARCH_OMAP
58

59 60 61
config USB_MUSB_BLACKFIN
	bool "Blackfin"
	depends on (BF54x && !BF544) || (BF52x && ! BF522 && !BF523)
62

63 64 65 66
config USB_MUSB_UX500
	bool "U8500 and U5500"
	depends on (ARCH_U8500 && AB8500_USB) || (ARCH_U5500)

67
endchoice
F
Felipe Balbi 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144

choice
	prompt "Driver Mode"
	depends on USB_MUSB_HDRC
	help
	  Dual-Role devices can support both host and peripheral roles,
	  as well as a the special "OTG Device" role which can switch
	  between both roles as needed.

# use USB_MUSB_HDRC_HCD not USB_MUSB_HOST to #ifdef host side support;
# OTG needs both roles, not just USB_MUSB_HOST.
config USB_MUSB_HOST
	depends on USB
	bool "USB Host"
	help
	  Say Y here if your system supports the USB host role.
	  If it has a USB "A" (rectangular), "Mini-A" (uncommon),
	  or "Mini-AB" connector, it supports the host role.
	  (With a "Mini-AB" connector, you should enable USB OTG.)

# use USB_GADGET_MUSB_HDRC not USB_MUSB_PERIPHERAL to #ifdef peripheral
# side support ... OTG needs both roles
config USB_MUSB_PERIPHERAL
	depends on USB_GADGET
	bool "USB Peripheral (gadget stack)"
	select USB_GADGET_MUSB_HDRC
	help
	  Say Y here if your system supports the USB peripheral role.
	  If it has a USB "B" (squarish), "Mini-B", or "Mini-AB"
	  connector, it supports the peripheral role.
	  (With a "Mini-AB" connector, you should enable USB OTG.)

config USB_MUSB_OTG
	depends on USB && USB_GADGET && PM && EXPERIMENTAL
	bool "Both host and peripheral:  USB OTG (On The Go) Device"
	select USB_GADGET_MUSB_HDRC
	select USB_OTG
	help
	   The most notable feature of USB OTG is support for a
	   "Dual-Role" device, which can act as either a device
	   or a host.  The initial role choice can be changed
	   later, when two dual-role devices talk to each other.

	   At this writing, the OTG support in this driver is incomplete,
	   omitting the mandatory HNP or SRP protocols.  However, some
	   of the cable based role switching works.  (That is, grounding
	   the ID pin switches the controller to host mode, while leaving
	   it floating leaves it in peripheral mode.)

	   Select this if your system has a Mini-AB connector, or
	   to simplify certain kinds of configuration.

	   To implement your OTG Targeted Peripherals List (TPL), enable
	   USB_OTG_WHITELIST and update "drivers/usb/core/otg_whitelist.h"
	   to match your requirements.

endchoice

# enable peripheral support (including with OTG)
config USB_GADGET_MUSB_HDRC
	bool
	depends on USB_MUSB_HDRC && (USB_MUSB_PERIPHERAL || USB_MUSB_OTG)
#	default y
#	select USB_GADGET_DUALSPEED
#	select USB_GADGET_SELECTED

# enables host support (including with OTG)
config USB_MUSB_HDRC_HCD
	bool
	depends on USB_MUSB_HDRC && (USB_MUSB_HOST || USB_MUSB_OTG)
	select USB_OTG if USB_GADGET_MUSB_HDRC
	default y


config MUSB_PIO_ONLY
	bool 'Disable DMA (always use PIO)'
	depends on USB_MUSB_HDRC
145
	default USB_MUSB_TUSB6010 || USB_MUSB_DA8XX || USB_MUSB_AM35X
F
Felipe Balbi 已提交
146 147 148 149 150 151 152 153 154 155 156 157
	help
	  All data is copied between memory and FIFO by the CPU.
	  DMA controllers are ignored.

	  Do not select 'n' here unless DMA support for your SOC or board
	  is unavailable (or unstable).  When DMA is enabled at compile time,
	  you can still disable it at run time using the "use_dma=n" module
	  parameter.

config USB_INVENTRA_DMA
	bool
	depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
158
	default USB_MUSB_OMAP2PLUS || USB_MUSB_BLACKFIN
F
Felipe Balbi 已提交
159 160 161 162 163 164
	help
	  Enable DMA transfers using Mentor's engine.

config USB_TI_CPPI_DMA
	bool
	depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
165
	default USB_MUSB_DAVINCI
F
Felipe Balbi 已提交
166 167 168 169 170 171
	help
	  Enable DMA transfers when TI CPPI DMA is available.

config USB_TUSB_OMAP_DMA
	bool
	depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
172
	depends on USB_MUSB_TUSB6010
F
Felipe Balbi 已提交
173 174 175 176 177
	depends on ARCH_OMAP
	default y
	help
	  Enable DMA transfers on TUSB 6010 when OMAP DMA is available.

178
config	USB_MUSB_DEBUG
F
Felipe Balbi 已提交
179
	depends on USB_MUSB_HDRC
180 181
	bool "Enable debugging messages"
	default n
F
Felipe Balbi 已提交
182
	help
183 184 185
	  This enables musb debugging. To set the logging level use the debug
	  module parameter. Starting at level 3, per-transfer (urb, usb_request,
	  packet, or dma transfer) tracing may kick in.