xref: /openbmc/u-boot/drivers/usb/Kconfig (revision 522e0354)
168f7c5dbSPaul Kocialkowskimenuconfig USB
268f7c5dbSPaul Kocialkowski	bool "USB support"
36e7e9294SMasahiro Yamada	---help---
46e7e9294SMasahiro Yamada	  Universal Serial Bus (USB) is a specification for a serial bus
56e7e9294SMasahiro Yamada	  subsystem which offers higher speeds and more features than the
66e7e9294SMasahiro Yamada	  traditional PC serial port.  The bus supplies power to peripherals
76e7e9294SMasahiro Yamada	  and allows for hot swapping.  Up to 127 USB peripherals can be
86e7e9294SMasahiro Yamada	  connected to a single USB host in a tree structure.
96e7e9294SMasahiro Yamada
106e7e9294SMasahiro Yamada	  The USB host is the root of the tree, the peripherals are the
116e7e9294SMasahiro Yamada	  leaves and the inner nodes are special USB devices called hubs.
126e7e9294SMasahiro Yamada	  Most PCs now have USB host ports, used to connect peripherals
136e7e9294SMasahiro Yamada	  such as scanners, keyboards, mice, modems, cameras, disks,
146e7e9294SMasahiro Yamada	  flash memory, network links, and printers to the PC.
156e7e9294SMasahiro Yamada
1668f7c5dbSPaul Kocialkowski	  Say Y here if your device has an USB port, either host, peripheral or
1768f7c5dbSPaul Kocialkowski	  dual-role.
1868f7c5dbSPaul Kocialkowski
1968f7c5dbSPaul Kocialkowski	  For an USB host port, you then need to say Y to at least one of the
206e7e9294SMasahiro Yamada	  Host Controller Driver (HCD) options below.  Choose a USB 1.1
216e7e9294SMasahiro Yamada	  controller, such as "UHCI HCD support" or "OHCI HCD support",
226e7e9294SMasahiro Yamada	  and "EHCI HCD (USB 2.0) support" except for older systems that
236e7e9294SMasahiro Yamada	  do not have USB 2.0 support.  It doesn't normally hurt to select
246e7e9294SMasahiro Yamada	  them all if you are not certain.
256e7e9294SMasahiro Yamada
266e7e9294SMasahiro Yamada	  If your system has a device-side USB port, used in the peripheral
276e7e9294SMasahiro Yamada	  side of the USB protocol, see the "USB Gadget" framework instead.
286e7e9294SMasahiro Yamada
296e7e9294SMasahiro Yamada	  After choosing your HCD, then select drivers for the USB peripherals
306e7e9294SMasahiro Yamada	  you'll be using.  You may want to check out the information provided
316e7e9294SMasahiro Yamada	  in <file:Documentation/usb/> and especially the links given in
326e7e9294SMasahiro Yamada	  <file:Documentation/usb/usb-help.txt>.
336e7e9294SMasahiro Yamada
346e7e9294SMasahiro Yamadaif USB
356e7e9294SMasahiro Yamada
36de31213fSSimon Glassconfig DM_USB
37de31213fSSimon Glass	bool "Enable driver model for USB"
38de31213fSSimon Glass	depends on USB && DM
39de31213fSSimon Glass	help
40de31213fSSimon Glass	  Enable driver model for USB. The USB interface is then implemented
41de31213fSSimon Glass	  by the USB uclass. Multiple USB controllers of different types
42de31213fSSimon Glass	  (XHCI, EHCI) can be attached and used. The 'usb' command works as
43de31213fSSimon Glass	  normal. OCHI is not supported at present.
44de31213fSSimon Glass
45de31213fSSimon Glass	  Much of the code is shared but with this option enabled the USB
46de31213fSSimon Glass	  uclass takes care of device enumeration. USB devices can be
47abb59cffSSimon Glass	  declared with the U_BOOT_USB_DEVICE() macro and will be
48abb59cffSSimon Glass	  automatically probed when found on the bus.
49de31213fSSimon Glass
5041a25f46SSven Schwermerconfig SPL_DM_USB
5141a25f46SSven Schwermer	bool "Enable driver model for USB in SPL"
52*16ecb295SMartyn Welch	depends on SPL_DM && DM_USB
5341a25f46SSven Schwermer	default y
5441a25f46SSven Schwermer
55687ab545SJean-Jacques Hiblotconfig DM_USB_GADGET
56687ab545SJean-Jacques Hiblot	bool "Enable driver model for USB Gadget"
57687ab545SJean-Jacques Hiblot	depends on DM_USB
58687ab545SJean-Jacques Hiblot	help
59687ab545SJean-Jacques Hiblot	  Enable driver model for USB Gadget (Peripheral
60687ab545SJean-Jacques Hiblot	  mode)
61687ab545SJean-Jacques Hiblot
62687ab545SJean-Jacques Hiblotconfig SPL_DM_USB_GADGET
63687ab545SJean-Jacques Hiblot	bool "Enable driver model for USB Gadget in sPL"
64687ab545SJean-Jacques Hiblot	depends on SPL_DM_USB
65687ab545SJean-Jacques Hiblot	help
66687ab545SJean-Jacques Hiblot	  Enable driver model for USB Gadget in SPL
67687ab545SJean-Jacques Hiblot	  (Peripheral mode)
68687ab545SJean-Jacques Hiblot
696e7e9294SMasahiro Yamadasource "drivers/usb/host/Kconfig"
706e7e9294SMasahiro Yamada
713457bbafSSam Protsenkosource "drivers/usb/dwc3/Kconfig"
723457bbafSSam Protsenko
73e13a9dc3SAdam Fordsource "drivers/usb/musb/Kconfig"
74e13a9dc3SAdam Ford
755d6c2f4bSPaul Kocialkowskisource "drivers/usb/musb-new/Kconfig"
765d6c2f4bSPaul Kocialkowski
77019808f9SSimon Glasssource "drivers/usb/emul/Kconfig"
78019808f9SSimon Glass
793b9e2a25SAdam Fordsource "drivers/usb/phy/Kconfig"
803b9e2a25SAdam Ford
816b14fbbdSMateusz Kulikowskisource "drivers/usb/ulpi/Kconfig"
826b14fbbdSMateusz Kulikowski
8368f7c5dbSPaul Kocialkowskicomment "USB peripherals"
8468f7c5dbSPaul Kocialkowski
856e7e9294SMasahiro Yamadaconfig USB_STORAGE
866e7e9294SMasahiro Yamada	bool "USB Mass Storage support"
87dc03b704SAlexander Graf	depends on !(BLK && !DM_USB)
886e7e9294SMasahiro Yamada	---help---
896e7e9294SMasahiro Yamada	  Say Y here if you want to connect USB mass storage devices to your
906e7e9294SMasahiro Yamada	  board's USB port.
916e7e9294SMasahiro Yamada
92b2f2eea0SNikita Kiryanovconfig USB_KEYBOARD
93b2f2eea0SNikita Kiryanov	bool "USB Keyboard support"
94462c117cSHeinrich Schuchardt	select SYS_STDIO_DEREGISTER
95b2f2eea0SNikita Kiryanov	---help---
96b2f2eea0SNikita Kiryanov	  Say Y here if you want to use a USB keyboard for U-Boot command line
97b2f2eea0SNikita Kiryanov	  input.
98b2f2eea0SNikita Kiryanov
99b2f2eea0SNikita Kiryanovif USB_KEYBOARD
100b2f2eea0SNikita Kiryanov
101b2f2eea0SNikita Kiryanovchoice
102b2f2eea0SNikita Kiryanov	prompt "USB keyboard polling"
1032e5026a2SBin Meng	default SYS_USB_EVENT_POLL
104b2f2eea0SNikita Kiryanov	---help---
105b2f2eea0SNikita Kiryanov	  Enable a polling mechanism for USB keyboard.
106b2f2eea0SNikita Kiryanov
107b2f2eea0SNikita Kiryanov	config SYS_USB_EVENT_POLL
108b2f2eea0SNikita Kiryanov		bool "Interrupt polling"
109b2f2eea0SNikita Kiryanov
110b2f2eea0SNikita Kiryanov	config SYS_USB_EVENT_POLL_VIA_INT_QUEUE
111b2f2eea0SNikita Kiryanov		bool "Poll via interrupt queue"
112b2f2eea0SNikita Kiryanov
113b2f2eea0SNikita Kiryanov	config SYS_USB_EVENT_POLL_VIA_CONTROL_EP
114b2f2eea0SNikita Kiryanov		bool "Poll via control EP"
115b2f2eea0SNikita Kiryanov
116b2f2eea0SNikita Kiryanovendchoice
117b2f2eea0SNikita Kiryanov
1186e7e9294SMasahiro Yamadaendif
119b2f2eea0SNikita Kiryanov
120f9d0fd8aSSam Protsenkosource "drivers/usb/gadget/Kconfig"
121f9d0fd8aSSam Protsenko
122d2c31979SYuiko Oshinosource "drivers/usb/eth/Kconfig"
123d2c31979SYuiko Oshino
124ed36323fSMasahiro Yamadaendif
125