-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added brcmfmac for kernel 6.6.y * Unload all brcmfmac* modules
- Loading branch information
1 parent
6f7c8e8
commit 5432ea1
Showing
72 changed files
with
38,647 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
config BRCMFMAC | ||
tristate "Broadcom FullMAC WLAN driver" | ||
depends on CFG80211 | ||
select BRCMUTIL | ||
help | ||
This module adds support for wireless adapters based on Broadcom | ||
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_PROTO_BCDC | ||
bool | ||
|
||
config BRCMFMAC_PROTO_MSGBUF | ||
bool | ||
|
||
config BRCMFMAC_SDIO | ||
bool "SDIO bus interface support for FullMAC driver" | ||
depends on (MMC = y || MMC = BRCMFMAC) | ||
depends on BRCMFMAC | ||
select BRCMFMAC_PROTO_BCDC | ||
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 = y || USB = BRCMFMAC) | ||
depends on BRCMFMAC | ||
select BRCMFMAC_PROTO_BCDC | ||
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 BRCMFMAC_PCIE | ||
bool "PCIE bus interface support for FullMAC driver" | ||
depends on BRCMFMAC | ||
depends on PCI | ||
select BRCMFMAC_PROTO_MSGBUF | ||
select FW_LOADER | ||
help | ||
This option enables the PCIE bus interface support for Broadcom | ||
IEEE802.11ac embedded FullMAC WLAN driver. Say Y if you want to | ||
use the driver for an PCIE wireless card. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# SPDX-License-Identifier: ISC | ||
# | ||
# Makefile fragment for Broadcom 802.11 Networking Device Driver | ||
# | ||
# Copyright (c) 2010 Broadcom Corporation | ||
# | ||
|
||
ccflags-y += \ | ||
-I$(NEXMON_ROOT)/patches/driver/brcmfmac_6.6.y-nexmon \ | ||
-I$(NEXMON_ROOT)/patches/driver/brcmfmac_6.6.y-nexmon/include \ | ||
-DDEBUG | ||
|
||
obj-$(CONFIG_BRCMFMAC) += brcmfmac.o | ||
brcmfmac-objs += \ | ||
cfg80211.o \ | ||
chip.o \ | ||
fwil.o \ | ||
fweh.o \ | ||
p2p.o \ | ||
proto.o \ | ||
common.o \ | ||
core.o \ | ||
firmware.o \ | ||
feature.o \ | ||
btcoex.o \ | ||
vendor.o \ | ||
pno.o \ | ||
xtlv.o | ||
brcmfmac-$(CONFIG_BRCMFMAC_PROTO_BCDC) += \ | ||
bcdc.o \ | ||
fwsignal.o | ||
brcmfmac-$(CONFIG_BRCMFMAC_PROTO_MSGBUF) += \ | ||
commonring.o \ | ||
flowring.o \ | ||
msgbuf.o | ||
brcmfmac-$(CONFIG_BRCMFMAC_SDIO) += \ | ||
sdio.o \ | ||
bcmsdh.o | ||
brcmfmac-$(CONFIG_BRCMFMAC_USB) += \ | ||
usb.o | ||
brcmfmac-$(CONFIG_BRCMFMAC_PCIE) += \ | ||
pcie.o | ||
brcmfmac-$(CONFIG_BRCMDBG) += \ | ||
debug.o | ||
brcmfmac-$(CONFIG_BRCM_TRACING) += \ | ||
tracepoint.o | ||
brcmfmac-$(CONFIG_OF) += \ | ||
of.o | ||
brcmfmac-$(CONFIG_DMI) += \ | ||
dmi.o |
Oops, something went wrong.