diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2018-07-08 16:04:15 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-07-22 22:25:33 +0200 |
commit | 2dcd955aea1ab715d048910322b05d1af0b69748 (patch) | |
tree | 9f7e269a5a6a886bfe625aa9a42be536e84a20c9 /package/kernel/mac80211/patches/380-0010-ath10k-support-use-of-channel-173.patch | |
parent | 57b808ec88315db6743b3159a04dbb16097597ea (diff) | |
download | upstream-2dcd955aea1ab715d048910322b05d1af0b69748.tar.gz upstream-2dcd955aea1ab715d048910322b05d1af0b69748.tar.bz2 upstream-2dcd955aea1ab715d048910322b05d1af0b69748.zip |
mac80211: backport and update patches for ath10k
This commit refreshes and updates the VHT160 ath10k support fix patches
and adds a number of backports from ath-next:
* 8ed05ed06fca ath10k: handle tdls peer events
* 229329ff345f ath10k: wmi: modify svc bitmap parsing for wcn3990
* 14d65775687c ath10k: advertise TDLS wider bandwidth support for 5GHz
* bc64d05220f3 ath10k: debugfs support to get final TPC stats for 10.4 variants
* 8b2d93dd2261 ath10k: Fix kernel panic while using worker (ath10k_sta_rc_update_wk)
* 4b190675ad06 ath10k: fix kernel panic while reading tpc_stats
* be8cce96f14d ath10k: add support to configure channel dwell time
* f40105e67478 ath: add support to get the detected radar specifications
* 6f6eb1bcbeff ath10k: DFS Host Confirmation
* 260e629bbf44 ath10k: fix memory leak of tpc_stats
* 38441fb6fcbb ath10k: support use of channel 173
* 2e9bcd0d7324 ath10k: fix spectral scan for QCA9984 and QCA9888 chipsets
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
[move backported patches in the 3xx number space, bring in upstream order,
replace incomplete patch files with git format-patch ones, rewrite commit
message, fix subject]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package/kernel/mac80211/patches/380-0010-ath10k-support-use-of-channel-173.patch')
-rw-r--r-- | package/kernel/mac80211/patches/380-0010-ath10k-support-use-of-channel-173.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/380-0010-ath10k-support-use-of-channel-173.patch b/package/kernel/mac80211/patches/380-0010-ath10k-support-use-of-channel-173.patch new file mode 100644 index 0000000000..06b68b280a --- /dev/null +++ b/package/kernel/mac80211/patches/380-0010-ath10k-support-use-of-channel-173.patch @@ -0,0 +1,52 @@ +From 38441fb6fcbb97817dff5c012609860a2b39c3e9 Mon Sep 17 00:00:00 2001 +From: Ben Greear <greearb@candelatech.com> +Date: Tue, 2 Jan 2018 16:51:01 -0800 +Subject: [PATCH] ath10k: support use of channel 173 + +The India regulatory domain allows CH 173, so add that to the +available channel list. I verified basic connectivity between +a 9880 and 9984 NIC. + +Signed-off-by: Ben Greear <greearb@candelatech.com> +Signed-off-by: Kalle Valo <kvalo@codeaurora.org> +--- + drivers/net/wireless/ath/ath10k/core.h | 3 ++- + drivers/net/wireless/ath/ath10k/mac.c | 3 +++ + drivers/net/wireless/ath/ath10k/wmi.c | 2 +- + 3 files changed, 6 insertions(+), 2 deletions(-) + +--- a/drivers/net/wireless/ath/ath10k/core.h ++++ b/drivers/net/wireless/ath/ath10k/core.h +@@ -47,7 +47,8 @@ + #define WMI_READY_TIMEOUT (5 * HZ) + #define ATH10K_FLUSH_TIMEOUT_HZ (5 * HZ) + #define ATH10K_CONNECTION_LOSS_HZ (3 * HZ) +-#define ATH10K_NUM_CHANS 40 ++#define ATH10K_NUM_CHANS 41 ++#define ATH10K_MAX_5G_CHAN 173 + + /* Antenna noise floor */ + #define ATH10K_DEFAULT_NOISE_FLOOR -95 +--- a/drivers/net/wireless/ath/ath10k/mac.c ++++ b/drivers/net/wireless/ath/ath10k/mac.c +@@ -7766,6 +7766,9 @@ static const struct ieee80211_channel at + CHAN5G(161, 5805, 0), + CHAN5G(165, 5825, 0), + CHAN5G(169, 5845, 0), ++ CHAN5G(173, 5865, 0), ++ /* If you add more, you may need to change ATH10K_MAX_5G_CHAN */ ++ /* And you will definitely need to change ATH10K_NUM_CHANS in core.h */ + }; + + struct ath10k *ath10k_mac_create(size_t priv_size) +--- a/drivers/net/wireless/ath/ath10k/wmi.c ++++ b/drivers/net/wireless/ath/ath10k/wmi.c +@@ -2363,7 +2363,7 @@ int ath10k_wmi_event_mgmt_rx(struct ath1 + */ + if (channel >= 1 && channel <= 14) { + status->band = NL80211_BAND_2GHZ; +- } else if (channel >= 36 && channel <= 169) { ++ } else if (channel >= 36 && channel <= ATH10K_MAX_5G_CHAN) { + status->band = NL80211_BAND_5GHZ; + } else { + /* Shouldn't happen unless list of advertised channels to |