Kconfig 5.3 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 TWL6030_USB if MACH_OMAP_4430SDP || MACH_OMAP4_PANDA
16
	select USB_OTG_UTILS
17
	tristate 'Inventra Highspeed Dual Role Controller (TI, ADI, ...)'
F
Felipe Balbi 已提交
18 19 20 21 22 23 24
	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.

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

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

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

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

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

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

44
config USB_MUSB_DA8XX
45
	tristate "DA8xx/OMAP-L1x"
46
	depends on ARCH_DAVINCI_DA8XX
47

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

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

56
config USB_MUSB_AM35X
57
	tristate "AM35x"
58
	depends on ARCH_OMAP
59

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

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

68
endchoice
F
Felipe Balbi 已提交
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 145

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
146
	default USB_MUSB_TUSB6010 || USB_MUSB_DA8XX || USB_MUSB_AM35X
F
Felipe Balbi 已提交
147 148 149 150 151 152 153 154 155 156 157 158
	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
159
	default USB_MUSB_OMAP2PLUS || USB_MUSB_BLACKFIN
F
Felipe Balbi 已提交
160 161 162 163 164 165
	help
	  Enable DMA transfers using Mentor's engine.

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

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