blob: e120b48b331541be3ae5edce1a45cc69a2ecc2bd [file] [log] [blame]
Sam Protsenkob084b0c2016-03-25 16:39:47 +02001#
2# USB Gadget support on a system involves
3# (a) a peripheral controller, and
4# (b) the gadget driver using it.
5#
6# NOTE: Gadget support ** DOES NOT ** depend on host-side CONFIG_USB !!
7#
8# - Host systems (like PCs) need CONFIG_USB (with "A" jacks).
9# - Peripherals (like PDAs) need CONFIG_USB_GADGET (with "B" jacks).
10# - Some systems have both kinds of controllers.
11#
12# With help from a special transceiver and a "Mini-AB" jack, systems with
13# both kinds of controller can also support "USB On-the-Go" (CONFIG_USB_OTG).
14#
15
16menuconfig USB_GADGET
17 bool "USB Gadget Support"
18 help
19 USB is a master/slave protocol, organized with one master
20 host (such as a PC) controlling up to 127 peripheral devices.
21 The USB hardware is asymmetric, which makes it easier to set up:
22 you can't connect a "to-the-host" connector to a peripheral.
23
24 U-Boot can run in the host, or in the peripheral. In both cases
25 you need a low level bus controller driver, and some software
26 talking to it. Peripheral controllers are often discrete silicon,
27 or are integrated with the CPU in a microcontroller. The more
28 familiar host side controllers have names like "EHCI", "OHCI",
29 or "UHCI", and are usually integrated into southbridges on PC
30 motherboards.
31
32 Enable this configuration option if you want to run U-Boot inside
33 a USB peripheral device. Configure one hardware driver for your
34 peripheral/device side bus controller, and a "gadget driver" for
35 your peripheral protocol.
Sam Protsenkofb115b12016-04-13 14:20:24 +030036
37if USB_GADGET
38
Maxime Ripard7f78b9d2017-09-07 08:58:08 +020039config USB_GADGET_MANUFACTURER
40 string "Vendor name of the USB device"
Maxime Ripard6375bd82017-09-12 19:41:15 +020041 default "Allwinner Technology" if ARCH_SUNXI
Jagan Tekic1153892019-11-19 13:56:14 +053042 default "Rockchip" if ARCH_ROCKCHIP
Maxime Ripard7f78b9d2017-09-07 08:58:08 +020043 default "U-Boot"
44 help
45 Vendor name of the USB device emulated, reported to the host device.
46 This is usually either the manufacturer of the device or the SoC.
47
48config USB_GADGET_VENDOR_NUM
49 hex "Vendor ID of the USB device"
Maxime Ripard6375bd82017-09-12 19:41:15 +020050 default 0x1f3a if ARCH_SUNXI
Jagan Tekiac6fb302019-11-19 13:56:15 +053051 default 0x2207 if ARCH_ROCKCHIP
Maxime Ripard7f78b9d2017-09-07 08:58:08 +020052 default 0x0
53 help
54 Vendor ID of the USB device emulated, reported to the host device.
55 This is usually the board or SoC vendor's, unless you've registered
56 for one.
57
58config USB_GADGET_PRODUCT_NUM
59 hex "Product ID of the USB device"
Maxime Ripard6375bd82017-09-12 19:41:15 +020060 default 0x1010 if ARCH_SUNXI
Jagan Teki1de44f02019-11-19 13:56:16 +053061 default 0x310a if ROCKCHIP_RK3036
62 default 0x320a if ROCKCHIP_RK3229 || ROCKCHIP_RK3288
63 default 0x330a if ROCKCHIP_RK3328
Maxime Ripard7f78b9d2017-09-07 08:58:08 +020064 default 0x0
65 help
66 Product ID of the USB device emulated, reported to the host device.
67
Sam Protsenkob4a0bf72016-04-13 14:20:25 +030068config USB_GADGET_ATMEL_USBA
69 bool "Atmel USBA"
70 select USB_GADGET_DUALSPEED
71 help
72 USBA is the integrated high-speed USB Device controller on
73 the AT32AP700x, some AT91SAM9 and AT91CAP9 processors from Atmel.
74
Steve Rae437689f2016-08-15 17:26:26 -070075config USB_GADGET_BCM_UDC_OTG_PHY
76 bool "Broadcom UDC OTG PHY"
77 help
78 Enable the Broadcom UDC OTG physical device interface.
79
Sam Protsenkob4a0bf72016-04-13 14:20:25 +030080config USB_GADGET_DWC2_OTG
81 bool "DesignWare USB2.0 HS OTG controller (gadget mode)"
82 select USB_GADGET_DUALSPEED
83 help
84 The Designware USB2.0 high-speed gadget controller
85 integrated into many SoCs. Select this option if you want the
86 driver to operate in Peripheral mode. This option requires
87 USB_GADGET to be enabled.
88
Steve Raed7198f32016-06-07 15:35:21 -070089if USB_GADGET_DWC2_OTG
90
91config USB_GADGET_DWC2_OTG_PHY_BUS_WIDTH_8
92 bool "DesignWare USB2.0 HS OTG controller 8-bit PHY bus width"
93 help
94 Set the Designware USB2.0 high-speed OTG controller
95 PHY interface width to 8 bits, rather than the default (16 bits).
96
97endif # USB_GADGET_DWC2_OTG
98
Sam Protsenkob4a0bf72016-04-13 14:20:25 +030099config CI_UDC
100 bool "ChipIdea device controller"
101 select USB_GADGET_DUALSPEED
102 help
103 Say Y here to enable device controller functionality of the
104 ChipIdea driver.
105
Sam Protsenkofb115b12016-04-13 14:20:24 +0300106config USB_GADGET_VBUS_DRAW
107 int "Maximum VBUS Power usage (2-500 mA)"
108 range 2 500
109 default 2
110 help
111 Some devices need to draw power from USB when they are
112 configured, perhaps to operate circuitry or to recharge
113 batteries. This is in addition to any local power supply,
114 such as an AC adapter or batteries.
115
116 Enter the maximum power your device draws through USB, in
117 milliAmperes. The permitted range of values is 2 - 500 mA;
118 0 mA would be legal, but can make some hosts misbehave.
119
120 This value will be used except for system-specific gadget
121 drivers that have more specific information.
122
Sam Protsenkob4a0bf72016-04-13 14:20:25 +0300123# Selected by UDC drivers that support high-speed operation.
124config USB_GADGET_DUALSPEED
125 bool
126
Sam Protsenko4d2439d2016-04-13 14:20:26 +0300127config USB_GADGET_DOWNLOAD
128 bool "Enable USB download gadget"
129 help
130 Composite USB download gadget support (g_dnl) for download functions.
131 This code works on top of composite gadget.
132
Sam Protsenkob706ffd2016-04-13 14:20:30 +0300133if USB_GADGET_DOWNLOAD
134
Lukasz Majewskie364e4b2018-01-29 19:25:54 +0100135config USB_FUNCTION_MASS_STORAGE
136 bool "Enable USB mass storage gadget"
137 help
138 Enable mass storage protocol support in U-Boot. It allows exporting
139 the eMMC/SD card content to HOST PC so it can be mounted.
140
Eddie Caif6460922017-12-15 08:17:10 +0800141config USB_FUNCTION_ROCKUSB
142 bool "Enable USB rockusb gadget"
143 help
144 Rockusb protocol is widely used by Rockchip SoC based devices. It can
145 read/write info, image to/from devices. This enables the USB part of
146 the rockusb gadget.for more detail about Rockusb protocol, please see
147 doc/README.rockusb
148
Lukasz Majewskib886ed92018-01-29 19:21:39 +0100149config USB_FUNCTION_SDP
150 bool "Enable USB SDP (Serial Download Protocol)"
151 help
152 Enable Serial Download Protocol (SDP) device support in U-Boot. This
153 allows to download images into memory and execute (jump to) them
154 using the same protocol as implemented by the i.MX family's boot ROM.
155
Lukasz Majewski3c32b422018-01-29 19:30:18 +0100156config USB_FUNCTION_THOR
157 bool "Enable USB THOR gadget"
158 help
159 Enable Tizen's THOR download protocol support in U-Boot. It
160 allows downloading images into memory and flash them to target device.
161
Maxime Riparda8ad6362017-09-06 22:54:52 +0200162endif # USB_GADGET_DOWNLOAD
163
Maxime Ripard65849772017-09-06 23:23:21 +0200164config USB_ETHER
165 bool "USB Ethernet Gadget"
Alex Kiernancc92df42018-04-01 09:22:36 +0000166 depends on NET
Maxime Ripard4a553ca2017-09-22 09:51:37 +0200167 default y if ARCH_SUNXI && USB_MUSB_GADGET
Maxime Ripard65849772017-09-06 23:23:21 +0200168 help
169 Creates an Ethernet network device through a USB peripheral
170 controller. This will create a network interface on both the device
171 (U-Boot) and the host (remote device) that can be used just like any
172 other nework interface.
173 It will bind on the peripheral USB controller, ignoring the USB hosts
174 controllers in the system.
175
176if USB_ETHER
177
Maxime Ripard7285f482017-09-07 08:46:14 +0200178choice
179 prompt "USB Ethernet Gadget Model"
180 default USB_ETH_RNDIS
181 help
182 There is several models (protocols) to implement Ethernet over USB
183 devices. The main ones are Microsoft's RNDIS and USB's CDC-Ethernet
184 (also called CDC-ECM). RNDIS is obviously compatible with Windows,
185 while CDC-ECM is not. Most other operating systems support both, so
186 if inter-operability is a concern, RNDIS is to be preferred.
187
188config USB_ETH_CDC
189 bool "CDC-ECM Protocol"
190 help
191 CDC (Communications Device Class) is the standard for Ethernet over
192 USB devices. While there's several alternatives, the most widely used
193 protocol is ECM (Ethernet Control Model). However, compatibility with
194 Windows is not that great.
195
196config USB_ETH_RNDIS
197 bool "RNDIS Protocol"
198 help
199 The RNDIS (Remote Network Driver Interface Specification) is a
200 Microsoft proprietary protocol to create an Ethernet device over USB.
201 Windows obviously supports it, as well as all the major operating
202 systems, so it's the best option for compatibility.
203
204endchoice
205
Mugunthan V N095b7612016-11-18 11:09:15 +0530206config USBNET_DEVADDR
207 string "USB Gadget Ethernet device mac address"
208 default "de:ad:be:ef:00:01"
Maxime Ripardd4ff5312017-09-12 18:32:45 +0200209 help
210 Ethernet MAC address of the device-side (ie. local board's) MAC
211 address of the usb_ether interface
Mugunthan V N095b7612016-11-18 11:09:15 +0530212
Maxime Ripard764bf282017-09-06 22:53:43 +0200213config USBNET_HOST_ADDR
214 string "USB Gadget Ethernet host mac address"
215 default "de:ad:be:ef:00:00"
216 help
217 Ethernet MAC address of the host-side (ie. remote device's) MAC
218 address of the usb_ether interface
219
Maxime Ripard65849772017-09-06 23:23:21 +0200220endif # USB_ETHER
221
Sam Protsenkofb115b12016-04-13 14:20:24 +0300222endif # USB_GADGET