diff options
Diffstat (limited to 'drivers/uwb/Kconfig')
-rw-r--r-- | drivers/uwb/Kconfig | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/drivers/uwb/Kconfig b/drivers/uwb/Kconfig new file mode 100644 index 000000000000..ca783127af36 --- /dev/null +++ b/drivers/uwb/Kconfig | |||
@@ -0,0 +1,90 @@ | |||
1 | # | ||
2 | # UWB device configuration | ||
3 | # | ||
4 | |||
5 | menuconfig UWB | ||
6 | tristate "Ultra Wideband devices (EXPERIMENTAL)" | ||
7 | depends on EXPERIMENTAL | ||
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. | ||
30 | |||
31 | if UWB | ||
32 | |||
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 | |||
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 | |||
51 | WHCI is an specification developed by Intel | ||
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 | ||
54 | radio/host controllers connected via memmory mapping (eg: | ||
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 | |||
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 | |||
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 | |||
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 | |||
90 | endif # UWB | ||