From: Amar Singhal <asinghal@codeaurora.org> To: linux-wireless@vger.kernel.org, johannes@sipsolutions.net, jouni@codeaaurora.org Cc: asinghal@codeaurora.org Subject: [PATCH] cfg80211: Adjust 6ghz frequencies per channelization Date: Fri, 19 Jun 2020 13:52:01 -0700 [thread overview] Message-ID: <1592599921-10607-1-git-send-email-asinghal@codeaurora.org> (raw) Per 11ax draft 6.1, 6ghz frequencies need adjustment. Also orphan channel of frequency 5935 MHz has been added. Modify utilities accordingly. Signed-off-by: Amar Singhal <asinghal@codeaurora.org> --- net/wireless/util.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/net/wireless/util.c b/net/wireless/util.c index df75e58..3fb4f4b 100644 --- a/net/wireless/util.c +++ b/net/wireless/util.c @@ -92,9 +92,11 @@ u32 ieee80211_channel_to_freq_khz(int chan, enum nl80211_band band) return MHZ_TO_KHZ(5000 + chan * 5); break; case NL80211_BAND_6GHZ: - /* see 802.11ax D4.1 27.3.22.2 */ - if (chan <= 253) - return 5940 + chan * 5; + /* see 802.11ax D6.1 27.3.22.2 */ + if (chan == 2) + return 5925 + chan * 5; + if (chan <= 233) + return 5950 + chan * 5; break; case NL80211_BAND_60GHZ: if (chan < 7) @@ -119,11 +121,13 @@ int ieee80211_freq_khz_to_channel(u32 freq) return (freq - 2407) / 5; else if (freq >= 4910 && freq <= 4980) return (freq - 4000) / 5; - else if (freq < 5945) + else if (freq < 5925) return (freq - 5000) / 5; + else if (freq == 5935) + return (freq - 5925) / 5; else if (freq <= 45000) /* DMG band lower limit */ - /* see 802.11ax D4.1 27.3.22.2 */ - return (freq - 5940) / 5; + /* see 802.11ax D6.1 27.3.22.2 */ + return (freq - 5950) / 5; else if (freq >= 58320 && freq <= 70200) return (freq - 56160) / 2160; else -- 1.9.1
next reply other threads:[~2020-06-19 20:52 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-06-19 20:52 Amar Singhal [this message] 2020-06-19 21:10 Amar Singhal
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1592599921-10607-1-git-send-email-asinghal@codeaurora.org \ --to=asinghal@codeaurora.org \ --cc=johannes@sipsolutions.net \ --cc=jouni@codeaaurora.org \ --cc=linux-wireless@vger.kernel.org \ --subject='Re: [PATCH] cfg80211: Adjust 6ghz frequencies per channelization' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.