mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 02:55:11 +07:00
668761ac01
This patch adds support for platform specific data for SDIO fullmac devices. Currently OOB interrupts are configured by Kconfig BRCMFMAC_SDIO_OOB but that is now determined dynamically by checking availibility of platform data. Cc: Hauke Mehrtens <hauke@hauke-m.de> Reviewed-by: Arend Van Spriel <arend@broadcom.com> Reviewed-by: Franky (Zhenhui) Lin <frankyl@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Reviewed-by: Piotr Haber <phaber@broadcom.com> Signed-off-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
66 lines
2.1 KiB
Plaintext
66 lines
2.1 KiB
Plaintext
config BRCMUTIL
|
|
tristate
|
|
|
|
config BRCMSMAC
|
|
tristate "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver"
|
|
depends on MAC80211
|
|
depends on BCMA
|
|
select BRCMUTIL
|
|
select FW_LOADER
|
|
select CRC_CCITT
|
|
select CRC8
|
|
select CORDIC
|
|
---help---
|
|
This module adds support for PCIe wireless adapters based on Broadcom
|
|
IEEE802.11n SoftMAC chipsets. It also has WLAN led support, which will
|
|
be available if you select BCMA_DRIVER_GPIO. If you choose to build a
|
|
module, the driver will be called brcmsmac.ko.
|
|
|
|
config BRCMFMAC
|
|
tristate "Broadcom IEEE802.11n embedded FullMAC WLAN driver"
|
|
depends on CFG80211
|
|
select BRCMUTIL
|
|
---help---
|
|
This module adds support for embedded wireless adapters based on
|
|
Broadcom IEEE802.11n FullMAC chipsets. It has to work with at least
|
|
one of the bus interface support. If you choose to build a module,
|
|
it'll be called brcmfmac.ko.
|
|
|
|
config BRCMFMAC_SDIO
|
|
bool "SDIO bus interface support for FullMAC driver"
|
|
depends on MMC
|
|
depends on BRCMFMAC
|
|
select FW_LOADER
|
|
default y
|
|
---help---
|
|
This option enables the SDIO bus interface support for Broadcom
|
|
IEEE802.11n embedded FullMAC WLAN driver. Say Y if you want to
|
|
use the driver for a SDIO wireless card.
|
|
|
|
config BRCMFMAC_USB
|
|
bool "USB bus interface support for FullMAC driver"
|
|
depends on USB
|
|
depends on BRCMFMAC
|
|
select FW_LOADER
|
|
---help---
|
|
This option enables the USB bus interface support for Broadcom
|
|
IEEE802.11n embedded FullMAC WLAN driver. Say Y if you want to
|
|
use the driver for an USB wireless card.
|
|
|
|
config BRCM_TRACING
|
|
bool "Broadcom device tracing"
|
|
depends on BRCMSMAC || BRCMFMAC
|
|
---help---
|
|
If you say Y here, the Broadcom wireless drivers will register
|
|
with ftrace to dump event information into the trace ringbuffer.
|
|
Tracing can be enabled at runtime to aid in debugging wireless
|
|
issues. This option adds a small amount of overhead when tracing
|
|
is disabled. If unsure, say Y to allow developers to better help
|
|
you when wireless problems occur.
|
|
|
|
config BRCMDBG
|
|
bool "Broadcom driver debug functions"
|
|
depends on BRCMSMAC || BRCMFMAC
|
|
---help---
|
|
Selecting this enables additional code for debug purposes.
|