mac80211_hwsim: Add custom regulatory for 6GHz
authorIlan Peer <ilan.peer@intel.com>
Mon, 14 Feb 2022 16:29:50 +0000 (17:29 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 16 Feb 2022 14:41:55 +0000 (15:41 +0100)
Add a custom regulatory domain for testing 6 GHz, including
320 MHz bandwidth. This can be used before the regulatory
databases are all updated etc.

Signed-off-by: Ilan Peer <ilan.peer@intel.com>
Link: https://lore.kernel.org/r/20220214173004.e3d6faf1f35f.I9507395b64496d96a2276ba8c1e1323e54407aa7@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/mac80211_hwsim.c

index 92e055e..defb7e3 100644 (file)
@@ -173,9 +173,23 @@ static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
        }
 };
 
+static const struct ieee80211_regdomain hwsim_world_regdom_custom_03 = {
+       .n_reg_rules = 6,
+       .alpha2 =  "99",
+       .reg_rules = {
+               REG_RULE(2412 - 10, 2462 + 10, 40, 0, 20, 0),
+               REG_RULE(2484 - 10, 2484 + 10, 40, 0, 20, 0),
+               REG_RULE(5150 - 10, 5240 + 10, 40, 0, 30, 0),
+               REG_RULE(5745 - 10, 5825 + 10, 40, 0, 30, 0),
+               REG_RULE(5855 - 10, 5925 + 10, 40, 0, 33, 0),
+               REG_RULE(5955 - 10, 7125 + 10, 320, 0, 33, 0),
+       }
+};
+
 static const struct ieee80211_regdomain *hwsim_world_regdom_custom[] = {
        &hwsim_world_regdom_custom_01,
        &hwsim_world_regdom_custom_02,
+       &hwsim_world_regdom_custom_03,
 };
 
 struct hwsim_vif_priv {