Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #
  2. # USB Core configuration
  3. #
  4. config USB_ANNOUNCE_NEW_DEVICES
  5. bool "USB announce new devices"
  6. help
  7. Say Y here if you want the USB core to always announce the
  8. idVendor, idProduct, Manufacturer, Product, and SerialNumber
  9. strings for every new USB device to the syslog. This option is
  10. usually used by distro vendors to help with debugging and to
  11. let users know what specific device was added to the machine
  12. in what location.
  13. If you do not want this kind of information sent to the system
  14. log, or have any doubts about this, say N here.
  15. comment "Miscellaneous USB options"
  16. config USB_DEFAULT_PERSIST
  17. bool "Enable USB persist by default"
  18. default y
  19. help
  20. Say N here if you don't want USB power session persistence
  21. enabled by default. If you say N it will make suspended USB
  22. devices that lose power get reenumerated as if they had been
  23. unplugged, causing any mounted filesystems to be lost. The
  24. persist feature can still be enabled for individual devices
  25. through the power/persist sysfs node. See
  26. Documentation/usb/persist.txt for more info.
  27. If you have any questions about this, say Y here, only say N
  28. if you know exactly what you are doing.
  29. config USB_DYNAMIC_MINORS
  30. bool "Dynamic USB minor allocation"
  31. help
  32. If you say Y here, the USB subsystem will use dynamic minor
  33. allocation for any device that uses the USB major number.
  34. This means that you can have more than 16 of a single type
  35. of device (like USB printers).
  36. If you are unsure about this, say N here.
  37. config USB_OTG
  38. bool "OTG support"
  39. depends on PM
  40. default n
  41. help
  42. The most notable feature of USB OTG is support for a
  43. "Dual-Role" device, which can act as either a device
  44. or a host. The initial role is decided by the type of
  45. plug inserted and can be changed later when two dual
  46. role devices talk to each other.
  47. Select this only if your board has Mini-AB/Micro-AB
  48. connector.
  49. config USB_OTG_WHITELIST
  50. bool "Rely on OTG and EH Targeted Peripherals List"
  51. depends on USB
  52. help
  53. If you say Y here, the "otg_whitelist.h" file will be used as a
  54. product whitelist, so USB peripherals not listed there will be
  55. rejected during enumeration. This behavior is required by the
  56. USB OTG and EH specification for all devices not on your product's
  57. "Targeted Peripherals List". "Embedded Hosts" are likewise
  58. allowed to support only a limited number of peripherals.
  59. config USB_OTG_BLACKLIST_HUB
  60. bool "Disable external hubs"
  61. depends on USB_OTG || EXPERT
  62. help
  63. If you say Y here, then Linux will refuse to enumerate
  64. external hubs. OTG hosts are allowed to reduce hardware
  65. and software costs by not supporting external hubs. So
  66. are "Embedded Hosts" that don't offer OTG support.
  67. config USB_OTG_FSM
  68. tristate "USB 2.0 OTG FSM implementation"
  69. depends on USB && USB_OTG
  70. select USB_PHY
  71. help
  72. Implements OTG Finite State Machine as specified in On-The-Go
  73. and Embedded Host Supplement to the USB Revision 2.0 Specification.
  74. config USB_ULPI_BUS
  75. tristate "USB ULPI PHY interface support"
  76. depends on USB_SUPPORT
  77. help
  78. UTMI+ Low Pin Interface (ULPI) is specification for a commonly used
  79. USB 2.0 PHY interface. The ULPI specification defines a standard set
  80. of registers that can be used to detect the vendor and product which
  81. allows ULPI to be handled as a bus. This module is the driver for that
  82. bus.
  83. The ULPI interfaces (the buses) are registered by the drivers for USB
  84. controllers which support ULPI register access and have ULPI PHY
  85. attached to them. The ULPI PHY drivers themselves are normal PHY
  86. drivers.
  87. ULPI PHYs provide often functions such as ADP sensing/probing (OTG
  88. protocol) and USB charger detection.
  89. To compile this driver as a module, choose M here: the module will
  90. be called ulpi.