Skip to content

Commit 9c4a121

Browse files
Sean LaniganKalle Valo
authored andcommitted
brcmfmac: Add support for bcm43364 wireless chipset
Add support for the BCM43364 chipset via an SDIO interface, as used in e.g. the Murata 1FX module. The BCM43364 uses the same firmware as the BCM43430 (which is already included), the only difference is the omission of Bluetooth. However, the SDIO_ID for the BCM43364 is 02D0:A9A4, giving it a MODALIAS of sdio:c00v02D0dA9A4, which doesn't get recognised and hence doesn't load the brcmfmac module. Adding the 'A9A4' ID in the appropriate place triggers the brcmfmac driver to load, and then correctly use the firmware file 'brcmfmac43430-sdio.bin'. Signed-off-by: Sean Lanigan <[email protected]> Acked-by: Ulf Hansson <[email protected]> Signed-off-by: Kalle Valo <[email protected]>
1 parent bf516e7 commit 9c4a121

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,7 @@ static const struct sdio_device_id brcmf_sdmmc_ids[] = {
963963
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43340),
964964
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43341),
965965
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43362),
966+
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43364),
966967
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_4335_4339),
967968
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_4339),
968969
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43430),

include/linux/mmc/sdio_ids.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#define SDIO_DEVICE_ID_BROADCOM_4335_4339 0x4335
3636
#define SDIO_DEVICE_ID_BROADCOM_4339 0x4339
3737
#define SDIO_DEVICE_ID_BROADCOM_43362 0xa962
38+
#define SDIO_DEVICE_ID_BROADCOM_43364 0xa9a4
3839
#define SDIO_DEVICE_ID_BROADCOM_43430 0xa9a6
3940
#define SDIO_DEVICE_ID_BROADCOM_4345 0x4345
4041
#define SDIO_DEVICE_ID_BROADCOM_43455 0xa9bf

0 commit comments

Comments
 (0)