Message ID | 20240508173655.22191-2-quic_pradeepc@quicinc.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3745d7963cc34c08ee4dda4f3c81981e277f0d96 |
Delegated to: | Kalle Valo |
Headers | show |
Series | bug fixes and enhancements to 6 GHz band support | expand |
Pradeep Kumar Chitrapu <quic_pradeepc@quicinc.com> wrote: > Add support for the 6 GHz channel 2 with center frequency > 5935 MHz and operating class 136 per IEEE Std 802.11ax-2021, > Table E-4. > > Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.0.1-00029-QCAHKSWPL_SILICONZ-1 > Tested-on: WCN7850 hw2.0 PCI WLAN.HMT.1.0.c5-00481-QCAHMTSWPL_V1.0_V2.0_SILICONZ-3 > > Signed-off-by: Pradeep Kumar Chitrapu <quic_pradeepc@quicinc.com> > Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com> > Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com> 6 patches applied to ath-next branch of ath.git, thanks. 3745d7963cc3 wifi: ath12k: add channel 2 into 6 GHz channel list c3c84a74bd79 wifi: ath12k: Correct 6 GHz frequency value in rx status 70e3be54bbdd wifi: ath12k: fix survey dump collection in 6 GHz 112dbc6af807 wifi: ath12k: add 6 GHz params in peer assoc command f0e61dc7ecf9 wifi: ath12k: refactor SMPS configuration 97b7cbb7a3cb wifi: ath12k: support SMPS configuration for 6 GHz
diff --git a/drivers/net/wireless/ath/ath12k/core.h b/drivers/net/wireless/ath/ath12k/core.h index bb6c1b562baf..50aa9048fd34 100644 --- a/drivers/net/wireless/ath/ath12k/core.h +++ b/drivers/net/wireless/ath/ath12k/core.h @@ -450,7 +450,7 @@ struct ath12k_sta { #define ATH12K_MIN_5G_FREQ 4150 #define ATH12K_MIN_6G_FREQ 5925 #define ATH12K_MAX_6G_FREQ 7115 -#define ATH12K_NUM_CHANS 100 +#define ATH12K_NUM_CHANS 101 #define ATH12K_MAX_5G_CHAN 173 enum ath12k_hw_state { diff --git a/drivers/net/wireless/ath/ath12k/mac.c b/drivers/net/wireless/ath/ath12k/mac.c index 96dc5c2e096f..ae9f41a17b4f 100644 --- a/drivers/net/wireless/ath/ath12k/mac.c +++ b/drivers/net/wireless/ath/ath12k/mac.c @@ -91,6 +91,10 @@ static const struct ieee80211_channel ath12k_5ghz_channels[] = { }; static const struct ieee80211_channel ath12k_6ghz_channels[] = { + /* Operating Class 136 */ + CHAN6G(2, 5935, 0), + + /* Operating Classes 131-135 */ CHAN6G(1, 5955, 0), CHAN6G(5, 5975, 0), CHAN6G(9, 5995, 0),