Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / drivers / net / wireless / bcm43xx / Kconfig
blobe36b56861a7595a407ce99910bf14ccac30259f0
1 config BCM43XX
2         tristate "Broadcom BCM43xx wireless support (DEPRECATED)"
3 <<<<<<< HEAD:drivers/net/wireless/bcm43xx/Kconfig
4         depends on PCI && IEEE80211 && IEEE80211_SOFTMAC && WLAN_80211 && EXPERIMENTAL
5 =======
6         depends on PCI && IEEE80211 && IEEE80211_SOFTMAC && WLAN_80211 && (!SSB_B43_PCI_BRIDGE || SSB != y) && EXPERIMENTAL
7 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/net/wireless/bcm43xx/Kconfig
8         select WIRELESS_EXT
9         select FW_LOADER
10         select HW_RANDOM
11         ---help---
12           This is an experimental driver for the Broadcom 43xx wireless
13           chip, found in the Apple Airport Extreme and various other
14           devices.  This driver is deprecated and will be removed
15           from the kernel in the near future.  It has been replaced
16           by the b43 and b43legacy drivers.
18 config BCM43XX_DEBUG
19         bool "Broadcom BCM43xx debugging (RECOMMENDED)"
20         depends on BCM43XX
21         default y
22         ---help---
23           Broadcom 43xx debugging messages.
24           Say Y, because the driver is still very experimental and
25           this will help you get it running.
27 config BCM43XX_DMA
28         bool
29         depends on BCM43XX
31 config BCM43XX_PIO
32         bool
33         depends on BCM43XX
35 choice
36         prompt "BCM43xx data transfer mode"
37         depends on BCM43XX
38         default BCM43XX_DMA_AND_PIO_MODE
40 config BCM43XX_DMA_AND_PIO_MODE
41         bool "DMA + PIO"
42         select BCM43XX_DMA
43         select BCM43XX_PIO
44         ---help---
45           Include both, Direct Memory Access (DMA) and Programmed I/O (PIO)
46           data transfer modes.
47           The actually used mode is selectable through the module
48           parameter "pio". If the module parameter is pio=0, DMA is used.
49           Otherwise PIO is used. DMA is default.
51           If unsure, choose this option.
53 config BCM43XX_DMA_MODE
54         bool "DMA (Direct Memory Access) only"
55         select BCM43XX_DMA
56         ---help---
57           Only include Direct Memory Access (DMA).
58           This reduces the size of the driver module, by omitting the PIO code.
60 config BCM43XX_PIO_MODE
61         bool "PIO (Programmed I/O) only"
62         select BCM43XX_PIO
63         ---help---
64           Only include Programmed I/O (PIO).
65           This reduces the size of the driver module, by omitting the DMA code.
66           Please note that PIO transfers are slow (compared to DMA).
68           Also note that not all devices of the 43xx series support PIO.
69           The 4306 (Apple Airport Extreme and others) supports PIO, while
70           the 4318 is known to _not_ support PIO.
72           Only use PIO, if DMA does not work for you.
74 endchoice