From: Lachlan Hodges <lachlan.hodges@morsemicro.com>
To: johannes@sipsolutions.net
Cc: linux-wireless@vger.kernel.org, arien.judge@morsemicro.com,
Lachlan Hodges <lachlan.hodges@morsemicro.com>
Subject: [PATCH wireless-next 2/2] wifi: mac80211_hwsim: modernise S1G channel list
Date: Wed, 27 May 2026 13:38:28 +1000 [thread overview]
Message-ID: <20260527033828.183821-3-lachlan.hodges@morsemicro.com> (raw)
In-Reply-To: <20260527033828.183821-1-lachlan.hodges@morsemicro.com>
The current S1G channel list in mac80211_hwsim does not represent
what S1G drivers would advertise that being 1MHz primaries. Also,
include the NO_PRIMARY flag on the edgeband 1MHz primaries to emulate
US operation such that it can also be tested.
Signed-off-by: Lachlan Hodges <lachlan.hodges@morsemicro.com>
---
.../wireless/virtual/mac80211_hwsim_main.c | 56 +++++++++++++------
1 file changed, 40 insertions(+), 16 deletions(-)
diff --git a/drivers/net/wireless/virtual/mac80211_hwsim_main.c b/drivers/net/wireless/virtual/mac80211_hwsim_main.c
index 0241b38beddc..1512e160e41a 100644
--- a/drivers/net/wireless/virtual/mac80211_hwsim_main.c
+++ b/drivers/net/wireless/virtual/mac80211_hwsim_main.c
@@ -356,6 +356,14 @@ static struct net_device *hwsim_mon; /* global monitor netdev */
.hw_value = (_freq), \
}
+#define CHANS1G(_freq, _offset, _flags) { \
+ .band = NL80211_BAND_S1GHZ, \
+ .center_freq = (_freq), \
+ .freq_offset = (_offset), \
+ .hw_value = (_freq), \
+ .flags = (_flags), \
+}
+
static const struct ieee80211_channel hwsim_channels_2ghz[] = {
CHAN2G(2412), /* Channel 1 */
CHAN2G(2417), /* Channel 2 */
@@ -490,7 +498,38 @@ static const struct ieee80211_channel hwsim_channels_6ghz[] = {
static_assert(HWSIM_NUM_CHANNELS_6GHZ == ARRAY_SIZE(hwsim_channels_6ghz),
"Inconsistent 6 GHz channel count");
-static struct ieee80211_channel hwsim_channels_s1g[HWSIM_NUM_S1G_CHANNELS_US];
+/*
+ * US 2024 channels (op class 1). Additionally to emulate real world
+ * US operation, the edgeband 1MHz channels (1, 51) are marked as NO_PRIMARY.
+ */
+static const struct ieee80211_channel hwsim_channels_s1g[] = {
+ CHANS1G(902, 500, IEEE80211_CHAN_S1G_NO_PRIMARY), /* Channel 1 */
+ CHANS1G(903, 500, 0), /* Channel 3 */
+ CHANS1G(904, 500, 0), /* Channel 5 */
+ CHANS1G(905, 500, 0), /* Channel 7 */
+ CHANS1G(906, 500, 0), /* Channel 9 */
+ CHANS1G(907, 500, 0), /* Channel 11 */
+ CHANS1G(908, 500, 0), /* Channel 13 */
+ CHANS1G(909, 500, 0), /* Channel 15 */
+ CHANS1G(910, 500, 0), /* Channel 17 */
+ CHANS1G(911, 500, 0), /* Channel 19 */
+ CHANS1G(912, 500, 0), /* Channel 21 */
+ CHANS1G(913, 500, 0), /* Channel 23 */
+ CHANS1G(914, 500, 0), /* Channel 25 */
+ CHANS1G(915, 500, 0), /* Channel 27 */
+ CHANS1G(916, 500, 0), /* Channel 29 */
+ CHANS1G(917, 500, 0), /* Channel 31 */
+ CHANS1G(918, 500, 0), /* Channel 33 */
+ CHANS1G(919, 500, 0), /* Channel 35 */
+ CHANS1G(920, 500, 0), /* Channel 37 */
+ CHANS1G(921, 500, 0), /* Channel 39 */
+ CHANS1G(922, 500, 0), /* Channel 41 */
+ CHANS1G(923, 500, 0), /* Channel 43 */
+ CHANS1G(924, 500, 0), /* Channel 45 */
+ CHANS1G(925, 500, 0), /* Channel 47 */
+ CHANS1G(926, 500, 0), /* Channel 49 */
+ CHANS1G(927, 500, IEEE80211_CHAN_S1G_NO_PRIMARY), /* Channel 51 */
+};
static const struct ieee80211_sta_s1g_cap hwsim_s1g_cap = {
.s1g = true,
@@ -519,19 +558,6 @@ static const struct ieee80211_sta_s1g_cap hwsim_s1g_cap = {
0 },
};
-static void hwsim_init_s1g_channels(struct ieee80211_channel *chans)
-{
- int ch, freq;
-
- for (ch = 0; ch < ARRAY_SIZE(hwsim_channels_s1g); ch++) {
- freq = 902000 + (ch + 1) * 500;
- chans[ch].band = NL80211_BAND_S1GHZ;
- chans[ch].center_freq = KHZ_TO_MHZ(freq);
- chans[ch].freq_offset = freq % 1000;
- chans[ch].hw_value = ch + 1;
- }
-}
-
static const struct ieee80211_rate hwsim_rates[] = {
{ .bitrate = 10 },
{ .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
@@ -7443,8 +7469,6 @@ static int __init init_mac80211_hwsim(void)
if (err)
goto out_exit_virtio;
- hwsim_init_s1g_channels(hwsim_channels_s1g);
-
for (i = 0; i < radios; i++) {
struct hwsim_new_radio_params param = { 0 };
--
2.43.0
prev parent reply other threads:[~2026-05-27 3:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-27 3:38 [PATCH wireless-next 0/2] wifi: S1G hwsim fixups Lachlan Hodges
2026-05-27 3:38 ` [PATCH wireless-next 1/2] wifi: mac80211_hwsim: don't run RC update on new STA on S1G vif Lachlan Hodges
2026-05-27 3:38 ` Lachlan Hodges [this message]
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=20260527033828.183821-3-lachlan.hodges@morsemicro.com \
--to=lachlan.hodges@morsemicro.com \
--cc=arien.judge@morsemicro.com \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox