Kconfig 2.5 KB

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