Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / drivers / net / wireless / b43legacy / Kconfig
blob6a69466cccdb23773a2798d2c021ae2113723a0d
1 config B43LEGACY
2         tristate "Broadcom 43xx-legacy wireless support (mac80211 stack)"
3         depends on SSB_POSSIBLE && MAC80211 && WLAN_80211
4         select SSB
5         select FW_LOADER
6         select HW_RANDOM
7         ---help---
8           b43legacy is a driver for 802.11b devices from Broadcom (BCM4301 and
9           BCM4303) and early model 802.11g chips (BCM4306 Ver. 2) used in the
10           Linksys WPC54G V1 PCMCIA devices.
12           Newer 802.11g and 802.11a devices need b43.
14           It is safe to include both b43 and b43legacy as the underlying glue
15           layer will automatically load the correct version for your device.
17           This driver uses V3 firmware, which must be installed separately using
18           b43-fwcutter.
20           This driver can be built as a module (recommended) that will be
21           called "b43legacy". If unsure, say M.
23 # Auto-select SSB PCI-HOST support, if possible
24 config B43LEGACY_PCI_AUTOSELECT
25         bool
26         depends on B43LEGACY && SSB_PCIHOST_POSSIBLE
27         select SSB_PCIHOST
28 <<<<<<< HEAD:drivers/net/wireless/b43legacy/Kconfig
29 =======
30         select SSB_B43_PCI_BRIDGE
31 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/net/wireless/b43legacy/Kconfig
32         default y
34 # Auto-select SSB PCICORE driver, if possible
35 config B43LEGACY_PCICORE_AUTOSELECT
36         bool
37         depends on B43LEGACY && SSB_DRIVER_PCICORE_POSSIBLE
38         select SSB_DRIVER_PCICORE
39         default y
41 # LED support
42 # This config option automatically enables b43legacy LEDS support,
43 # if it's possible.
44 config B43LEGACY_LEDS
45         bool
46         depends on B43LEGACY && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43LEGACY)
47         default y
49 # RFKILL support
50 # This config option automatically enables b43legacy RFKILL support,
51 # if it's possible.
52 config B43LEGACY_RFKILL
53         bool
54         depends on B43LEGACY && (RFKILL = y || RFKILL = B43LEGACY) && RFKILL_INPUT && (INPUT_POLLDEV = y || INPUT_POLLDEV = B43LEGACY)
55         default y
57 config B43LEGACY_DEBUG
58         bool "Broadcom 43xx-legacy debugging"
59         depends on B43LEGACY
60         default y
61         ---help---
62           Say Y, because this information will help you get the driver running.
63           This option generates a minimum of log output.
65 config B43LEGACY_DMA
66         bool
67         depends on B43LEGACY
69 config B43LEGACY_PIO
70         bool
71         depends on B43LEGACY
73 choice
74         prompt "Broadcom 43xx-legacy data transfer mode"
75         depends on B43LEGACY
76         default B43LEGACY_DMA_AND_PIO_MODE
78 config B43LEGACY_DMA_AND_PIO_MODE
79         bool "DMA + PIO"
80         select B43LEGACY_DMA
81         select B43LEGACY_PIO
82         ---help---
83           Include both, Direct Memory Access (DMA) and Programmed I/O (PIO)
84           data transfer modes. The mode actually used is selectable through
85           the module parameter "pio". With pio=0 as a module parameter, the
86           default DMA is used, otherwise PIO is used.
88           If unsure, choose this option.
90 config B43LEGACY_DMA_MODE
91         bool "DMA (Direct Memory Access) only"
92         select B43LEGACY_DMA
93         ---help---
94           Only include Direct Memory Access (DMA).
95           This reduces the size of the driver module, by omitting the PIO code.
97 config B43LEGACY_PIO_MODE
98         bool "PIO (Programmed I/O) only"
99         select B43LEGACY_PIO
100         ---help---
101           Only include Programmed I/O (PIO).
102           This reduces the size of the driver module, by omitting the DMA code.
103           Please note that PIO transfers are slow (compared to DMA).
105           Also note that not all devices of the b43legacy series support PIO.
107           You should use PIO only if DMA does not work for you.
109 endchoice