1# SPDX-License-Identifier: GPL-2.0-only 2config WLAN_VENDOR_RSI 3 bool "Redpine Signals Inc devices" 4 default y 5 help 6 If you have a wireless card belonging to this class, say Y. 7 8 Note that the answer to this question doesn't directly affect the 9 kernel: saying N will just cause the configurator to skip all the 10 questions about these cards. If you say Y, you will be asked for 11 your specific card in the following questions. 12 13if WLAN_VENDOR_RSI 14 15config RSI_91X 16 tristate "Redpine Signals Inc 91x WLAN driver support" 17 select BT_HCIRSI if RSI_COEX 18 depends on MAC80211 19 help 20 This option enabes support for RSI 1x1 devices. 21 Select M (recommended), if you have a RSI 1x1 wireless module. 22 23config RSI_DEBUGFS 24 bool "Redpine Signals Inc debug support" 25 depends on RSI_91X 26 default y 27 help 28 Say Y, if you would like to enable debug support. This option 29 creates debugfs entries 30 31config RSI_SDIO 32 tristate "Redpine Signals SDIO bus support" 33 depends on MMC && RSI_91X 34 default m 35 help 36 This option enables the SDIO bus support in rsi drivers. 37 Select M (recommended), if you have a RSI 1x1 wireless module. 38 39config RSI_USB 40 tristate "Redpine Signals USB bus support" 41 depends on USB && RSI_91X 42 default m 43 help 44 This option enables the USB bus support in rsi drivers. 45 Select M (recommended), if you have a RSI 1x1 wireless module. 46 47config RSI_COEX 48 bool "Redpine Signals WLAN BT Coexistence support" 49 depends on BT && RSI_91X 50 depends on !(BT=m && RSI_91X=y) 51 default y 52 help 53 This option enables the WLAN BT coex support in rsi drivers. 54 Select M (recommended), if you have want to use this feature 55 and you have RS9113 module. 56 57endif # WLAN_VENDOR_RSI 58