Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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), IP (WLP) and upcoming
  15. Bluetooth and 1394
  16. The topology is peer to peer; however, higher level
  17. protocols (such as WUSB) might impose a master/slave
  18. relationship.
  19. Say Y here if your computer has UWB radio controllers (USB or PCI)
  20. based. You will need to enable the radio controllers
  21. below. It is ok to select all of them, no harm done.
  22. For more help check the UWB and WUSB related files in
  23. <file:Documentation/usb/>.
  24. To compile the UWB stack as a module, choose M here.
  25. if UWB
  26. config UWB_HWA
  27. tristate "UWB Radio Control driver for WUSB-compliant USB dongles (HWA)"
  28. depends on USB
  29. help
  30. This driver enables the radio controller for HWA USB
  31. devices. HWA stands for Host Wire Adapter, and it is a UWB
  32. Radio Controller connected to your system via USB. Most of
  33. them come with a Wireless USB host controller also.
  34. To compile this driver select Y (built in) or M (module). It
  35. is safe to select any even if you do not have the hardware.
  36. config UWB_WHCI
  37. tristate "UWB Radio Control driver for WHCI-compliant cards"
  38. depends on PCI
  39. help
  40. This driver enables the radio controller for WHCI cards.
  41. WHCI is an specification developed by Intel
  42. (http://www.intel.com/technology/comms/wusb/whci.htm) much
  43. in the spirit of USB's EHCI, but for UWB and Wireless USB
  44. radio/host controllers connected via memmory mapping (eg:
  45. PCI). Most of these cards come also with a Wireless USB host
  46. controller.
  47. To compile this driver select Y (built in) or M (module). It
  48. is safe to select any even if you do not have the hardware.
  49. config UWB_WLP
  50. tristate "Support WiMedia Link Protocol (Ethernet/IP over UWB)"
  51. depends on UWB && NET
  52. help
  53. This is a common library for drivers that implement
  54. networking over UWB.
  55. config UWB_I1480U
  56. tristate "Support for Intel Wireless UWB Link 1480 HWA"
  57. depends on UWB_HWA
  58. select FW_LOADER
  59. help
  60. This driver enables support for the i1480 when connected via
  61. USB. It consists of a firmware uploader that will enable it
  62. to behave as an HWA device.
  63. To compile this driver select Y (built in) or M (module). It
  64. is safe to select any even if you do not have the hardware.
  65. config UWB_I1480U_WLP
  66. tristate "Support for Intel Wireless UWB Link 1480 HWA's WLP interface"
  67. depends on UWB_I1480U && UWB_WLP && NET
  68. help
  69. This driver enables WLP support for the i1480 when connected via
  70. USB. WLP is the WiMedia Link Protocol, or IP over UWB.
  71. To compile this driver select Y (built in) or M (module). It
  72. is safe to select any even if you don't have the hardware.
  73. endif # UWB