Kconfig 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #
  2. # UWB device configuration
  3. #
  4. menuconfig UWB
  5. tristate "Ultra Wideband devices"
  6. default n
  7. help
  8. UWB is a high-bandwidth, low-power, point-to-point radio
  9. technology using a wide spectrum (3.1-10.6GHz). It is
  10. optimized for in-room use (480Mbps at 2 meters, 110Mbps at
  11. 10m). It serves as the transport layer for other protocols,
  12. such as Wireless USB (WUSB).
  13. The topology is peer to peer; however, higher level
  14. protocols (such as WUSB) might impose a master/slave
  15. relationship.
  16. Say Y here if your computer has UWB radio controllers (USB or PCI)
  17. based. You will need to enable the radio controllers
  18. below. It is ok to select all of them, no harm done.
  19. For more help check the UWB and WUSB related files in
  20. <file:Documentation/usb/>.
  21. To compile the UWB stack as a module, choose M here.
  22. if UWB
  23. config UWB_HWA
  24. tristate "UWB Radio Control driver for WUSB-compliant USB dongles (HWA)"
  25. depends on USB
  26. help
  27. This driver enables the radio controller for HWA USB
  28. devices. HWA stands for Host Wire Adapter, and it is a UWB
  29. Radio Controller connected to your system via USB. Most of
  30. them come with a Wireless USB host controller also.
  31. To compile this driver select Y (built in) or M (module). It
  32. is safe to select any even if you do not have the hardware.
  33. config UWB_WHCI
  34. tristate "UWB Radio Control driver for WHCI-compliant cards"
  35. depends on PCI
  36. help
  37. This driver enables the radio controller for WHCI cards.
  38. WHCI is a specification developed by Intel
  39. (http://www.intel.com/technology/comms/wusb/whci.htm) much
  40. in the spirit of USB's EHCI, but for UWB and Wireless USB
  41. radio/host controllers connected via memory mapping (eg:
  42. PCI). Most of these cards come also with a Wireless USB host
  43. controller.
  44. To compile this driver select Y (built in) or M (module). It
  45. is safe to select any even if you do not have the hardware.
  46. config UWB_I1480U
  47. tristate "Support for Intel Wireless UWB Link 1480 HWA"
  48. depends on UWB_HWA
  49. select FW_LOADER
  50. help
  51. This driver enables support for the i1480 when connected via
  52. USB. It consists of a firmware uploader that will enable it
  53. to behave as an HWA device.
  54. To compile this driver select Y (built in) or M (module). It
  55. is safe to select any even if you do not have the hardware.
  56. endif # UWB