diff options
author | Albert Herranz <albert_herranz@yahoo.es> | 2009-09-10 13:34:49 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-23 11:35:43 -0400 |
commit | 3dbba8e281552da640080f08a0f127d48456669f (patch) | |
tree | 111f1db7448c7e3214e02e6d09d7e8f285727188 /drivers/net/wireless/b43/Kconfig | |
parent | a78b3bb2f3ab9afcf78dbcff18fd7bf900c7c27e (diff) |
b43: Add Soft-MAC SDIO device support
This adds support for Soft-MAC SDIO devices to b43.
The driver still lacks some fixes for SDIO devices, so it's currently
marked as BROKEN.
Signed-off-by: Albert Herranz <albert_herranz@yahoo.es>
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/Kconfig')
-rw-r--r-- | drivers/net/wireless/b43/Kconfig | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/drivers/net/wireless/b43/Kconfig b/drivers/net/wireless/b43/Kconfig index 83e38134accb..4fc2ce429c72 100644 --- a/drivers/net/wireless/b43/Kconfig +++ b/drivers/net/wireless/b43/Kconfig | |||
@@ -61,11 +61,28 @@ config B43_PCMCIA | |||
61 | 61 | ||
62 | If unsure, say N. | 62 | If unsure, say N. |
63 | 63 | ||
64 | config B43_SDIO | ||
65 | bool "Broadcom 43xx SDIO device support (EXPERIMENTAL)" | ||
66 | depends on B43 && SSB_SDIOHOST_POSSIBLE && EXPERIMENTAL && BROKEN | ||
67 | select SSB_SDIOHOST | ||
68 | ---help--- | ||
69 | Broadcom 43xx device support for Soft-MAC SDIO devices. | ||
70 | |||
71 | With this config option you can drive Soft-MAC b43 cards with a | ||
72 | Secure Digital I/O interface. | ||
73 | This includes the WLAN daughter card found on the Nintendo Wii | ||
74 | video game console. | ||
75 | Note that this does not support Broadcom 43xx Full-MAC devices. | ||
76 | |||
77 | It's safe to select Y here, even if you don't have a B43 SDIO device. | ||
78 | |||
79 | If unsure, say N. | ||
80 | |||
64 | # Data transfers to the device via PIO | 81 | # Data transfers to the device via PIO |
65 | # This is only needed on PCMCIA devices. All others can do DMA properly. | 82 | # This is only needed on PCMCIA and SDIO devices. All others can do DMA properly. |
66 | config B43_PIO | 83 | config B43_PIO |
67 | bool | 84 | bool |
68 | depends on B43 && (B43_PCMCIA || B43_FORCE_PIO) | 85 | depends on B43 && (B43_SDIO || B43_PCMCIA || B43_FORCE_PIO) |
69 | select SSB_BLOCKIO | 86 | select SSB_BLOCKIO |
70 | default y | 87 | default y |
71 | 88 | ||