| Greg Kroah-Hartman | 2f86c3e | 2008-09-17 16:34:11 +0100 | [diff] [blame] | 1 | # | 
 | 2 | # UWB device configuration | 
 | 3 | # | 
 | 4 |  | 
 | 5 | menuconfig UWB | 
| David Vrabel | 6a7c3e4 | 2008-09-17 16:34:43 +0100 | [diff] [blame] | 6 | 	tristate "Ultra Wideband devices (EXPERIMENTAL)" | 
 | 7 | 	depends on EXPERIMENTAL | 
| Greg Kroah-Hartman | 2f86c3e | 2008-09-17 16:34:11 +0100 | [diff] [blame] | 8 | 	depends on PCI | 
 | 9 | 	default n | 
 | 10 | 	help | 
 | 11 | 	  UWB is a high-bandwidth, low-power, point-to-point radio | 
 | 12 | 	  technology using a wide spectrum (3.1-10.6GHz). It is | 
 | 13 | 	  optimized for in-room use (480Mbps at 2 meters, 110Mbps at | 
 | 14 | 	  10m). It serves as the transport layer for other protocols, | 
 | 15 | 	  such as Wireless USB (WUSB), IP (WLP) and upcoming | 
 | 16 | 	  Bluetooth and 1394 | 
 | 17 |  | 
 | 18 | 	  The topology is peer to peer; however, higher level | 
 | 19 | 	  protocols (such as WUSB) might impose a master/slave | 
 | 20 | 	  relationship. | 
 | 21 |  | 
 | 22 | 	  Say Y here if your computer has UWB radio controllers (USB or PCI) | 
 | 23 | 	  based. You will need to enable the radio controllers | 
 | 24 | 	  below.  It is ok to select all of them, no harm done. | 
 | 25 |  | 
 | 26 | 	  For more help check the UWB and WUSB related files in | 
 | 27 | 	  <file:Documentation/usb/>. | 
 | 28 |  | 
 | 29 | 	  To compile the UWB stack as a module, choose M here. | 
| Inaky Perez-Gonzalez | b6e0698 | 2008-09-17 16:34:14 +0100 | [diff] [blame] | 30 |  | 
 | 31 | if UWB | 
 | 32 |  | 
| Inaky Perez-Gonzalez | de520b8 | 2008-09-17 16:34:15 +0100 | [diff] [blame] | 33 | config UWB_HWA | 
 | 34 | 	tristate "UWB Radio Control driver for WUSB-compliant USB dongles (HWA)" | 
 | 35 | 	depends on USB | 
 | 36 | 	help | 
 | 37 | 	  This driver enables the radio controller for HWA USB | 
 | 38 | 	  devices. HWA stands for Host Wire Adapter, and it is a UWB | 
 | 39 | 	  Radio Controller connected to your system via USB. Most of | 
 | 40 | 	  them come with a Wireless USB host controller also. | 
 | 41 |  | 
 | 42 | 	  To compile this driver select Y (built in) or M (module). It | 
 | 43 | 	  is safe to select any even if you do not have the hardware. | 
 | 44 |  | 
| Inaky Perez-Gonzalez | b6e0698 | 2008-09-17 16:34:14 +0100 | [diff] [blame] | 45 | config UWB_WHCI | 
 | 46 |         tristate "UWB Radio Control driver for WHCI-compliant cards" | 
 | 47 |         depends on PCI | 
 | 48 |         help | 
 | 49 |           This driver enables the radio controller for WHCI cards. | 
 | 50 |  | 
| Matt LaPlante | 692105b | 2009-01-26 11:12:25 +0100 | [diff] [blame] | 51 |           WHCI is a specification developed by Intel | 
| Inaky Perez-Gonzalez | b6e0698 | 2008-09-17 16:34:14 +0100 | [diff] [blame] | 52 |           (http://www.intel.com/technology/comms/wusb/whci.htm) much | 
 | 53 |           in the spirit of USB's EHCI, but for UWB and Wireless USB | 
| Matt LaPlante | 692105b | 2009-01-26 11:12:25 +0100 | [diff] [blame] | 54 |           radio/host controllers connected via memory mapping (eg: | 
| Inaky Perez-Gonzalez | b6e0698 | 2008-09-17 16:34:14 +0100 | [diff] [blame] | 55 |           PCI). Most of these cards come also with a Wireless USB host | 
 | 56 |           controller. | 
 | 57 |  | 
 | 58 |           To compile this driver select Y (built in) or M (module). It | 
 | 59 |           is safe to select any even if you do not have the hardware. | 
 | 60 |  | 
| Greg Kroah-Hartman | 3b0c5a3 | 2008-09-17 16:34:19 +0100 | [diff] [blame] | 61 | config UWB_WLP | 
 | 62 | 	tristate "Support WiMedia Link Protocol (Ethernet/IP over UWB)" | 
 | 63 | 	depends on UWB && NET | 
 | 64 | 	help | 
 | 65 | 	  This is a common library for drivers that implement | 
 | 66 | 	  networking over UWB. | 
 | 67 |  | 
| Inaky Perez-Gonzalez | 1ba47da | 2008-09-17 16:34:20 +0100 | [diff] [blame] | 68 | config UWB_I1480U | 
 | 69 |         tristate "Support for Intel Wireless UWB Link 1480 HWA" | 
 | 70 |         depends on UWB_HWA | 
 | 71 |         select FW_LOADER | 
 | 72 |         help | 
 | 73 |          This driver enables support for the i1480 when connected via | 
 | 74 |          USB. It consists of a firmware uploader that will enable it | 
 | 75 |          to behave as an HWA device. | 
 | 76 |  | 
 | 77 |          To compile this driver select Y (built in) or M (module). It | 
 | 78 |          is safe to select any even if you do not have the hardware. | 
 | 79 |  | 
| Inaky Perez-Gonzalez | a21b963 | 2008-09-17 16:34:21 +0100 | [diff] [blame] | 80 | config UWB_I1480U_WLP | 
 | 81 |         tristate "Support for Intel Wireless UWB Link 1480 HWA's WLP interface" | 
 | 82 |         depends on UWB_I1480U &&  UWB_WLP && NET | 
 | 83 |         help | 
 | 84 |          This driver enables WLP support for the i1480 when connected via | 
 | 85 |          USB. WLP is the WiMedia Link Protocol, or IP over UWB. | 
 | 86 |  | 
 | 87 |          To compile this driver select Y (built in) or M (module). It | 
 | 88 |          is safe to select any even if you don't have the hardware. | 
 | 89 |  | 
| Inaky Perez-Gonzalez | b6e0698 | 2008-09-17 16:34:14 +0100 | [diff] [blame] | 90 | endif # UWB |