Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config USB_ARCH_HAS_HCD
  2. def_bool y
  3. config USB
  4. bool "Support for Host-side USB"
  5. depends on USB_ARCH_HAS_HCD
  6. ---help---
  7. Universal Serial Bus (USB) is a specification for a serial bus
  8. subsystem which offers higher speeds and more features than the
  9. traditional PC serial port. The bus supplies power to peripherals
  10. and allows for hot swapping. Up to 127 USB peripherals can be
  11. connected to a single USB host in a tree structure.
  12. The USB host is the root of the tree, the peripherals are the
  13. leaves and the inner nodes are special USB devices called hubs.
  14. Most PCs now have USB host ports, used to connect peripherals
  15. such as scanners, keyboards, mice, modems, cameras, disks,
  16. flash memory, network links, and printers to the PC.
  17. Say Y here if your computer has a host-side USB port and you want
  18. to use USB devices. You then need to say Y to at least one of the
  19. Host Controller Driver (HCD) options below. Choose a USB 1.1
  20. controller, such as "UHCI HCD support" or "OHCI HCD support",
  21. and "EHCI HCD (USB 2.0) support" except for older systems that
  22. do not have USB 2.0 support. It doesn't normally hurt to select
  23. them all if you are not certain.
  24. If your system has a device-side USB port, used in the peripheral
  25. side of the USB protocol, see the "USB Gadget" framework instead.
  26. After choosing your HCD, then select drivers for the USB peripherals
  27. you'll be using. You may want to check out the information provided
  28. in <file:Documentation/usb/> and especially the links given in
  29. <file:Documentation/usb/usb-help.txt>.
  30. if USB
  31. source "drivers/usb/host/Kconfig"
  32. config USB_STORAGE
  33. bool "USB Mass Storage support"
  34. ---help---
  35. Say Y here if you want to connect USB mass storage devices to your
  36. board's USB port.
  37. endif