Message ID | 1513872322-26636-2-git-send-email-pillair@qti.qualcomm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Rakesh Pillai <pillair@qti.qualcomm.com> wrote: > WCN3990 is integrated chipset which uses system NOC. > Add SNOC bus type and related definitions. > > Signed-off-by: Govind Singh <govinds@qti.qualcomm.com> > Signed-off-by: Rakesh Pillai <pillair@qti.qualcomm.com> > Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com> 3 patches applied to ath-next branch of ath.git, thanks. 63855e3d6e7a ath10k: Add SNOC bus type for WCN3990 target b796240409b3 ath10k: Add debug mask for SNOC bus type 71e9c29fbd28 ath10k: Add fw feature flag for non-bmi firmware load
diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c index 042175a5653f..b6d5bad6f5ec 100644 --- a/drivers/net/wireless/ath/ath10k/core.c +++ b/drivers/net/wireless/ath/ath10k/core.c @@ -1551,6 +1551,7 @@ static void ath10k_core_get_fw_name(struct ath10k *ar, char *fw_name, break; case ATH10K_BUS_PCI: case ATH10K_BUS_AHB: + case ATH10K_BUS_SNOC: scnprintf(fw_name, fw_name_len, "%s-%d.bin", ATH10K_FW_FILE_BASE, fw_api); break; diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h index 398cd3c57139..81285ab30a7d 100644 --- a/drivers/net/wireless/ath/ath10k/core.h +++ b/drivers/net/wireless/ath/ath10k/core.h @@ -92,6 +92,7 @@ enum ath10k_bus { ATH10K_BUS_AHB, ATH10K_BUS_SDIO, ATH10K_BUS_USB, + ATH10K_BUS_SNOC, }; static inline const char *ath10k_bus_str(enum ath10k_bus bus) @@ -105,6 +106,8 @@ static inline const char *ath10k_bus_str(enum ath10k_bus bus) return "sdio"; case ATH10K_BUS_USB: return "usb"; + case ATH10K_BUS_SNOC: + return "snoc"; } return "unknown";