Skip to content

Commit af5e884

Browse files
Sean Lanigangregkh
authored andcommitted
brcmfmac: Add support for bcm43364 wireless chipset
[ Upstream commit 9c4a121 ] 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]> Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 59d9b12 commit af5e884

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
@@ -1098,6 +1098,7 @@ static const struct sdio_device_id brcmf_sdmmc_ids[] = {
10981098
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43340),
10991099
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43341),
11001100
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43362),
1101+
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_43364),
11011102
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_4335_4339),
11021103
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_4339),
11031104
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)