From 378aa1a05557adac5a7053a661c83be20b863dd3 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 8 Oct 2018 09:03:33 -0600 Subject: [PATCH] drivers/wireless/ieee80211/Kconfig: Update Kconfig help text. --- drivers/wireless/ieee80211/Kconfig | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/drivers/wireless/ieee80211/Kconfig b/drivers/wireless/ieee80211/Kconfig index d431f24222..f9beb2315c 100644 --- a/drivers/wireless/ieee80211/Kconfig +++ b/drivers/wireless/ieee80211/Kconfig @@ -33,9 +33,27 @@ config IEEE80211_BROADCOM_FWFILES This selection enables an option to load the firmware and CLM files from a mounted file system. + A snapshot of file for the BCM43362 are available in the nonbsd + repository: https://bitbucket.org/nuttx/nonbsd/src/master/bcm43438/ + + The latest files from Cypress are available in the Linux kernel: + https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/brcm + If not defined, then your board support logic will have to to provide the firmware files (and CLM files for the CBM43438) - in board/src directory. + in board/src directory. For the BCM43362, the following would + need to be provided: + + const uint8_t bcm43362_firmware_image[]; + const unsigned int bcm43362_firmware_image_len; + + For the BCM43438, the following would need to be provided. + + const uint8_t ap6212_firmware_image[]; + const unsigned int ap6212_firmware_len; + + const uint8_t ap6212_clm_blob[]; + const unsigned int ap6212_clm_blob_len; config IEEE80211_BROADCOM_FWFILENAME string "Firmware file"