Kconfig 2.4 KB

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