blob: b2400e2417a5588f4f53ddd3d4b0c4e0e0c9b312 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Joe Perches516304b2012-03-18 17:30:52 -070017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070019#include <linux/kernel.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040020#include <linux/export.h>
Bob Copeland3a702e42009-03-30 22:30:29 -040021#include <net/cfg80211.h>
22#include <net/mac80211.h>
Bob Copeland3a702e42009-03-30 22:30:29 -040023#include "regd.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070024#include "regd_common.h"
25
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +053026static int __ath_regd_init(struct ath_regulatory *reg);
27
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080028/*
29 * This is a set of common rules used by our world regulatory domains.
30 * We have 12 world regulatory domains. To save space we consolidate
31 * the regulatory domains in 5 structures by frequency and change
32 * the flags on our reg_notifier() on a case by case basis.
33 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070034
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080035/* Only these channels all allow active scan on all world regulatory domains */
Tomislav Požegaf433abf2019-10-10 22:53:15 +020036#define ATH_2GHZ_CH01_11 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070037
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080038/* We enable active scan on these a case by case basis by regulatory domain */
Tomislav Požegaf433abf2019-10-10 22:53:15 +020039#define ATH_2GHZ_CH12_13 REG_RULE(2467-10, 2472+10, 40, 0, 20,\
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020040 NL80211_RRF_NO_IR)
Tomislav Požegaf433abf2019-10-10 22:53:15 +020041#define ATH_2GHZ_CH14 REG_RULE(2484-10, 2484+10, 40, 0, 20,\
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020042 NL80211_RRF_NO_IR | \
43 NL80211_RRF_NO_OFDM)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070044
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080045/* We allow IBSS on these on a case by case basis by regulatory domain */
Tomislav Požegaf433abf2019-10-10 22:53:15 +020046#define ATH_5GHZ_5150_5350 REG_RULE(5150-10, 5350+10, 80, 0, 30,\
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020047 NL80211_RRF_NO_IR)
Tomislav Požegaf433abf2019-10-10 22:53:15 +020048#define ATH_5GHZ_5470_5850 REG_RULE(5470-10, 5850+10, 80, 0, 30,\
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020049 NL80211_RRF_NO_IR)
Tomislav Požegaf433abf2019-10-10 22:53:15 +020050#define ATH_5GHZ_5725_5850 REG_RULE(5725-10, 5850+10, 80, 0, 30,\
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020051 NL80211_RRF_NO_IR)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080052
Tomislav Požegaf433abf2019-10-10 22:53:15 +020053#define ATH_2GHZ_ALL ATH_2GHZ_CH01_11, \
54 ATH_2GHZ_CH12_13, \
55 ATH_2GHZ_CH14
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080056
Tomislav Požegaf433abf2019-10-10 22:53:15 +020057#define ATH_5GHZ_ALL ATH_5GHZ_5150_5350, \
58 ATH_5GHZ_5470_5850
Luis de Bethencourtcfcfe442010-03-30 16:44:33 +010059
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080060/* This one skips what we call "mid band" */
Tomislav Požegaf433abf2019-10-10 22:53:15 +020061#define ATH_5GHZ_NO_MIDBAND ATH_5GHZ_5150_5350, \
62 ATH_5GHZ_5725_5850
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080063
64/* Can be used for:
65 * 0x60, 0x61, 0x62 */
Bob Copeland3a702e42009-03-30 22:30:29 -040066static const struct ieee80211_regdomain ath_world_regdom_60_61_62 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080067 .n_reg_rules = 5,
68 .alpha2 = "99",
69 .reg_rules = {
Tomislav Požegaf433abf2019-10-10 22:53:15 +020070 ATH_2GHZ_ALL,
71 ATH_5GHZ_ALL,
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080072 }
73};
74
75/* Can be used by 0x63 and 0x65 */
Bob Copeland3a702e42009-03-30 22:30:29 -040076static const struct ieee80211_regdomain ath_world_regdom_63_65 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080077 .n_reg_rules = 4,
78 .alpha2 = "99",
79 .reg_rules = {
Tomislav Požegaf433abf2019-10-10 22:53:15 +020080 ATH_2GHZ_CH01_11,
81 ATH_2GHZ_CH12_13,
82 ATH_5GHZ_NO_MIDBAND,
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080083 }
84};
85
86/* Can be used by 0x64 only */
Bob Copeland3a702e42009-03-30 22:30:29 -040087static const struct ieee80211_regdomain ath_world_regdom_64 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080088 .n_reg_rules = 3,
89 .alpha2 = "99",
90 .reg_rules = {
Tomislav Požegaf433abf2019-10-10 22:53:15 +020091 ATH_2GHZ_CH01_11,
92 ATH_5GHZ_NO_MIDBAND,
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080093 }
94};
95
96/* Can be used by 0x66 and 0x69 */
Bob Copeland3a702e42009-03-30 22:30:29 -040097static const struct ieee80211_regdomain ath_world_regdom_66_69 = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -080098 .n_reg_rules = 3,
99 .alpha2 = "99",
100 .reg_rules = {
Tomislav Požegaf433abf2019-10-10 22:53:15 +0200101 ATH_2GHZ_CH01_11,
102 ATH_5GHZ_ALL,
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800103 }
104};
105
Senthil Balasubramanian34a0a202011-04-14 16:41:30 +0530106/* Can be used by 0x67, 0x68, 0x6A and 0x6C */
107static const struct ieee80211_regdomain ath_world_regdom_67_68_6A_6C = {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800108 .n_reg_rules = 4,
109 .alpha2 = "99",
110 .reg_rules = {
Tomislav Požegaf433abf2019-10-10 22:53:15 +0200111 ATH_2GHZ_CH01_11,
112 ATH_2GHZ_CH12_13,
113 ATH_5GHZ_ALL,
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800114 }
115};
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700116
Luis R. Rodrigueza44ea6f2013-10-29 23:39:04 +0100117static bool dynamic_country_user_possible(struct ath_regulatory *reg)
118{
Masahiro Yamada97f26452016-08-03 13:45:50 -0700119 if (IS_ENABLED(CONFIG_ATH_REG_DYNAMIC_USER_CERT_TESTING))
Luis R. Rodrigueza44ea6f2013-10-29 23:39:04 +0100120 return true;
121
122 switch (reg->country_code) {
123 case CTRY_UNITED_STATES:
124 case CTRY_JAPAN1:
125 case CTRY_JAPAN2:
126 case CTRY_JAPAN3:
127 case CTRY_JAPAN4:
128 case CTRY_JAPAN5:
129 case CTRY_JAPAN6:
130 case CTRY_JAPAN7:
131 case CTRY_JAPAN8:
132 case CTRY_JAPAN9:
133 case CTRY_JAPAN10:
134 case CTRY_JAPAN11:
135 case CTRY_JAPAN12:
136 case CTRY_JAPAN13:
137 case CTRY_JAPAN14:
138 case CTRY_JAPAN15:
139 case CTRY_JAPAN16:
140 case CTRY_JAPAN17:
141 case CTRY_JAPAN18:
142 case CTRY_JAPAN19:
143 case CTRY_JAPAN20:
144 case CTRY_JAPAN21:
145 case CTRY_JAPAN22:
146 case CTRY_JAPAN23:
147 case CTRY_JAPAN24:
148 case CTRY_JAPAN25:
149 case CTRY_JAPAN26:
150 case CTRY_JAPAN27:
151 case CTRY_JAPAN28:
152 case CTRY_JAPAN29:
153 case CTRY_JAPAN30:
154 case CTRY_JAPAN31:
155 case CTRY_JAPAN32:
156 case CTRY_JAPAN33:
157 case CTRY_JAPAN34:
158 case CTRY_JAPAN35:
159 case CTRY_JAPAN36:
160 case CTRY_JAPAN37:
161 case CTRY_JAPAN38:
162 case CTRY_JAPAN39:
163 case CTRY_JAPAN40:
164 case CTRY_JAPAN41:
165 case CTRY_JAPAN42:
166 case CTRY_JAPAN43:
167 case CTRY_JAPAN44:
168 case CTRY_JAPAN45:
169 case CTRY_JAPAN46:
170 case CTRY_JAPAN47:
171 case CTRY_JAPAN48:
172 case CTRY_JAPAN49:
173 case CTRY_JAPAN50:
174 case CTRY_JAPAN51:
175 case CTRY_JAPAN52:
176 case CTRY_JAPAN53:
177 case CTRY_JAPAN54:
178 case CTRY_JAPAN55:
179 case CTRY_JAPAN56:
180 case CTRY_JAPAN57:
181 case CTRY_JAPAN58:
182 case CTRY_JAPAN59:
183 return false;
184 }
185
186 return true;
187}
188
Luis R. Rodriguezba94c042013-10-29 23:39:05 +0100189static bool ath_reg_dyn_country_user_allow(struct ath_regulatory *reg)
190{
Masahiro Yamada97f26452016-08-03 13:45:50 -0700191 if (!IS_ENABLED(CONFIG_ATH_REG_DYNAMIC_USER_REG_HINTS))
Luis R. Rodriguezba94c042013-10-29 23:39:05 +0100192 return false;
193 if (!dynamic_country_user_possible(reg))
194 return false;
195 return true;
196}
197
Bob Copelandd0f48f92009-02-12 13:38:55 -0500198static inline bool is_wwr_sku(u16 regd)
199{
Christian Lamparter641eabb2010-02-07 16:01:55 +0100200 return ((regd & COUNTRY_ERD_FLAG) != COUNTRY_ERD_FLAG) &&
201 (((regd & WORLD_SKU_MASK) == WORLD_SKU_PREFIX) ||
202 (regd == WORLD));
Bob Copelandd0f48f92009-02-12 13:38:55 -0500203}
204
Bob Copeland3a702e42009-03-30 22:30:29 -0400205static u16 ath_regd_get_eepromRD(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700206{
Bob Copelandc02cf372009-03-30 22:30:28 -0400207 return reg->current_rd & ~WORLDWIDE_ROAMING_FLAG;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700208}
209
Bob Copeland3a702e42009-03-30 22:30:29 -0400210bool ath_is_world_regd(struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800211{
Bob Copeland3a702e42009-03-30 22:30:29 -0400212 return is_wwr_sku(ath_regd_get_eepromRD(reg));
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800213}
Bob Copeland3a702e42009-03-30 22:30:29 -0400214EXPORT_SYMBOL(ath_is_world_regd);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800215
Bob Copelande3bb2492009-03-30 22:30:30 -0400216static const struct ieee80211_regdomain *ath_default_world_regdomain(void)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800217{
218 /* this is the most restrictive */
Bob Copeland3a702e42009-03-30 22:30:29 -0400219 return &ath_world_regdom_64;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800220}
221
Bob Copelande3bb2492009-03-30 22:30:30 -0400222static const struct
Bob Copeland3a702e42009-03-30 22:30:29 -0400223ieee80211_regdomain *ath_world_regdomain(struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800224{
Kalle Valoef8c0012014-02-13 18:13:12 +0200225 switch (reg->regpair->reg_domain) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800226 case 0x60:
227 case 0x61:
228 case 0x62:
Bob Copeland3a702e42009-03-30 22:30:29 -0400229 return &ath_world_regdom_60_61_62;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800230 case 0x63:
231 case 0x65:
Bob Copeland3a702e42009-03-30 22:30:29 -0400232 return &ath_world_regdom_63_65;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800233 case 0x64:
Bob Copeland3a702e42009-03-30 22:30:29 -0400234 return &ath_world_regdom_64;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800235 case 0x66:
236 case 0x69:
Bob Copeland3a702e42009-03-30 22:30:29 -0400237 return &ath_world_regdom_66_69;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800238 case 0x67:
239 case 0x68:
240 case 0x6A:
Senthil Balasubramanian34a0a202011-04-14 16:41:30 +0530241 case 0x6C:
242 return &ath_world_regdom_67_68_6A_6C;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800243 default:
244 WARN_ON(1);
Bob Copeland3a702e42009-03-30 22:30:29 -0400245 return ath_default_world_regdomain();
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800246 }
247}
248
Bruno Randolf5719efd2011-01-25 13:15:33 +0900249bool ath_is_49ghz_allowed(u16 regdomain)
250{
251 /* possibly more */
252 return regdomain == MKK9_MKKC;
253}
254EXPORT_SYMBOL(ath_is_49ghz_allowed);
255
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800256/* Frequency is one where radar detection is required */
Mohammed Shafi Shajakhanc0c345d2017-04-12 23:19:37 +0530257static bool ath_is_radar_freq(u16 center_freq,
258 struct ath_regulatory *reg)
259
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800260{
Mohammed Shafi Shajakhanc0c345d2017-04-12 23:19:37 +0530261 if (reg->country_code == CTRY_INDIA)
262 return (center_freq >= 5500 && center_freq <= 5700);
Luis R. Rodriguez547e4c22009-01-28 12:17:48 -0800263 return (center_freq >= 5260 && center_freq <= 5700);
264}
265
Luis R. Rodriguezbc0aa062013-10-21 19:14:48 +0200266static void ath_force_clear_no_ir_chan(struct wiphy *wiphy,
267 struct ieee80211_channel *ch)
268{
269 const struct ieee80211_reg_rule *reg_rule;
270
Luis R. Rodriguez62452a92013-10-29 19:34:24 +0100271 reg_rule = freq_reg_info(wiphy, MHZ_TO_KHZ(ch->center_freq));
Luis R. Rodriguezbc0aa062013-10-21 19:14:48 +0200272 if (IS_ERR(reg_rule))
273 return;
274
275 if (!(reg_rule->flags & NL80211_RRF_NO_IR))
276 if (ch->flags & IEEE80211_CHAN_NO_IR)
277 ch->flags &= ~IEEE80211_CHAN_NO_IR;
278}
279
280static void ath_force_clear_no_ir_freq(struct wiphy *wiphy, u16 center_freq)
281{
282 struct ieee80211_channel *ch;
283
284 ch = ieee80211_get_channel(wiphy, center_freq);
285 if (!ch)
286 return;
287
288 ath_force_clear_no_ir_chan(wiphy, ch);
289}
290
291static void ath_force_no_ir_chan(struct ieee80211_channel *ch)
292{
293 ch->flags |= IEEE80211_CHAN_NO_IR;
294}
295
296static void ath_force_no_ir_freq(struct wiphy *wiphy, u16 center_freq)
297{
298 struct ieee80211_channel *ch;
299
300 ch = ieee80211_get_channel(wiphy, center_freq);
301 if (!ch)
302 return;
303
304 ath_force_no_ir_chan(ch);
305}
306
Luis R. Rodriguez07782d92013-10-21 19:14:51 +0200307static void
308__ath_reg_apply_beaconing_flags(struct wiphy *wiphy,
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100309 struct ath_regulatory *reg,
Luis R. Rodriguez07782d92013-10-21 19:14:51 +0200310 enum nl80211_reg_initiator initiator,
311 struct ieee80211_channel *ch)
312{
Mohammed Shafi Shajakhanc0c345d2017-04-12 23:19:37 +0530313 if (ath_is_radar_freq(ch->center_freq, reg) ||
Luis R. Rodriguez07782d92013-10-21 19:14:51 +0200314 (ch->flags & IEEE80211_CHAN_RADAR))
315 return;
316
317 switch (initiator) {
318 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
319 ath_force_clear_no_ir_chan(wiphy, ch);
320 break;
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100321 case NL80211_REGDOM_SET_BY_USER:
322 if (ath_reg_dyn_country_user_allow(reg))
323 ath_force_clear_no_ir_chan(wiphy, ch);
324 break;
Luis R. Rodriguez07782d92013-10-21 19:14:51 +0200325 default:
326 if (ch->beacon_found)
327 ch->flags &= ~IEEE80211_CHAN_NO_IR;
328 }
329}
330
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800331/*
Luis R. Rodriguez6c3af582013-10-21 19:14:50 +0200332 * These exception rules do not apply radar frequencies.
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500333 *
Luis R. Rodriguez6c3af582013-10-21 19:14:50 +0200334 * - We enable initiating radiation if the country IE says its fine:
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500335 * - If no country IE has been processed and a we determine we have
Luis R. Rodriguez6c3af582013-10-21 19:14:50 +0200336 * received a beacon on a channel we can enable initiating radiation.
Luis R. Rodriguez7519a8f2009-01-28 12:17:49 -0800337 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400338static void
339ath_reg_apply_beaconing_flags(struct wiphy *wiphy,
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100340 struct ath_regulatory *reg,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400341 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800342{
Johannes Berg57fbcce2016-04-12 15:56:15 +0200343 enum nl80211_band band;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800344 struct ieee80211_supported_band *sband;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800345 struct ieee80211_channel *ch;
346 unsigned int i;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800347
Johannes Berg57fbcce2016-04-12 15:56:15 +0200348 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500349 if (!wiphy->bands[band])
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800350 continue;
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500351 sband = wiphy->bands[band];
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500352 for (i = 0; i < sband->n_channels; i++) {
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500353 ch = &sband->channels[i];
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100354 __ath_reg_apply_beaconing_flags(wiphy, reg,
355 initiator, ch);
Luis R. Rodriguez84540862009-02-21 00:20:40 -0500356 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800357 }
358}
359
Luis R. Rodriguezbc0aa062013-10-21 19:14:48 +0200360/**
Luis R. Rodriguezf33cbc42013-10-21 19:14:49 +0200361 * ath_reg_apply_ir_flags()
Luis R. Rodriguezbc0aa062013-10-21 19:14:48 +0200362 * @wiphy: the wiphy to use
Lee Jonesaed7ee02020-11-02 11:23:48 +0000363 * @reg: regulatory structure - used for country selection
Luis R. Rodriguezbc0aa062013-10-21 19:14:48 +0200364 * @initiator: the regulatory hint initiator
365 *
366 * If no country IE has been received always enable passive scan
367 * and no-ibss on these channels. This is only done for specific
368 * regulatory SKUs.
369 *
370 * If a country IE has been received check its rule for this
371 * channel first before enabling active scan. The passive scan
372 * would have been enforced by the initial processing of our
373 * custom regulatory domain.
374 */
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400375static void
Luis R. Rodriguezf33cbc42013-10-21 19:14:49 +0200376ath_reg_apply_ir_flags(struct wiphy *wiphy,
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100377 struct ath_regulatory *reg,
378 enum nl80211_reg_initiator initiator)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800379{
380 struct ieee80211_supported_band *sband;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800381
Johannes Berg57fbcce2016-04-12 15:56:15 +0200382 sband = wiphy->bands[NL80211_BAND_2GHZ];
Helmut Schaaa59be082011-11-08 14:01:13 +0100383 if (!sband)
384 return;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800385
Luis R. Rodriguezbc0aa062013-10-21 19:14:48 +0200386 switch(initiator) {
387 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
388 ath_force_clear_no_ir_freq(wiphy, 2467);
389 ath_force_clear_no_ir_freq(wiphy, 2472);
390 break;
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100391 case NL80211_REGDOM_SET_BY_USER:
392 if (!ath_reg_dyn_country_user_allow(reg))
393 break;
394 ath_force_clear_no_ir_freq(wiphy, 2467);
395 ath_force_clear_no_ir_freq(wiphy, 2472);
396 break;
Luis R. Rodriguezbc0aa062013-10-21 19:14:48 +0200397 default:
398 ath_force_no_ir_freq(wiphy, 2467);
399 ath_force_no_ir_freq(wiphy, 2472);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800400 }
401}
402
Mohammed Shafi Shajakhanc0c345d2017-04-12 23:19:37 +0530403/* Always apply Radar/DFS rules on freq range 5500 MHz - 5700 MHz */
404static void ath_reg_apply_radar_flags(struct wiphy *wiphy,
405 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800406{
407 struct ieee80211_supported_band *sband;
408 struct ieee80211_channel *ch;
409 unsigned int i;
410
Johannes Berg57fbcce2016-04-12 15:56:15 +0200411 if (!wiphy->bands[NL80211_BAND_5GHZ])
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800412 return;
413
Johannes Berg57fbcce2016-04-12 15:56:15 +0200414 sband = wiphy->bands[NL80211_BAND_5GHZ];
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800415
416 for (i = 0; i < sband->n_channels; i++) {
417 ch = &sband->channels[i];
Mohammed Shafi Shajakhanc0c345d2017-04-12 23:19:37 +0530418 if (!ath_is_radar_freq(ch->center_freq, reg))
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800419 continue;
420 /* We always enable radar detection/DFS on this
421 * frequency range. Additionally we also apply on
422 * this frequency range:
423 * - If STA mode does not yet have DFS supports disable
424 * active scanning
425 * - If adhoc mode does not support DFS yet then
426 * disable adhoc in the frequency.
427 * - If AP mode does not yet support radar detection/DFS
428 * do not allow AP mode
429 */
430 if (!(ch->flags & IEEE80211_CHAN_DISABLED))
431 ch->flags |= IEEE80211_CHAN_RADAR |
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200432 IEEE80211_CHAN_NO_IR;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800433 }
434}
435
Bob Copelande3bb2492009-03-30 22:30:30 -0400436static void ath_reg_apply_world_flags(struct wiphy *wiphy,
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400437 enum nl80211_reg_initiator initiator,
438 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800439{
Kalle Valoef8c0012014-02-13 18:13:12 +0200440 switch (reg->regpair->reg_domain) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800441 case 0x60:
442 case 0x63:
443 case 0x66:
444 case 0x67:
Luis R. Rodriguez2290a9c352011-04-14 14:55:36 -0700445 case 0x6C:
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100446 ath_reg_apply_beaconing_flags(wiphy, reg, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800447 break;
448 case 0x68:
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100449 ath_reg_apply_beaconing_flags(wiphy, reg, initiator);
450 ath_reg_apply_ir_flags(wiphy, reg, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800451 break;
Luis R. Rodriguez251c9ba2013-10-30 00:10:07 +0100452 default:
453 if (ath_reg_dyn_country_user_allow(reg))
454 ath_reg_apply_beaconing_flags(wiphy, reg, initiator);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800455 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800456}
457
Michal Kaziord291d8e2016-09-28 15:11:57 +0300458u16 ath_regd_find_country_by_name(char *alpha2)
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530459{
460 unsigned int i;
461
462 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
463 if (!memcmp(allCountries[i].isoName, alpha2, 2))
464 return allCountries[i].countryCode;
465 }
466
467 return -1;
468}
Michal Kaziord291d8e2016-09-28 15:11:57 +0300469EXPORT_SYMBOL(ath_regd_find_country_by_name);
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530470
Luis R. Rodriguez8a3b6c82013-10-14 17:42:07 -0700471static int __ath_reg_dyn_country(struct wiphy *wiphy,
472 struct ath_regulatory *reg,
473 struct regulatory_request *request)
474{
475 u16 country_code;
476
Luis R. Rodriguez3e850ed2013-11-12 19:33:20 +0100477 if (request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
478 !ath_is_world_regd(reg))
Luis R. Rodriguez8a3b6c82013-10-14 17:42:07 -0700479 return -EINVAL;
480
481 country_code = ath_regd_find_country_by_name(request->alpha2);
482 if (country_code == (u16) -1)
483 return -EINVAL;
484
485 reg->current_rd = COUNTRY_ERD_FLAG;
486 reg->current_rd |= country_code;
487
488 __ath_regd_init(reg);
489
490 ath_reg_apply_world_flags(wiphy, request->initiator, reg);
491
492 return 0;
493}
494
495static void ath_reg_dyn_country(struct wiphy *wiphy,
496 struct ath_regulatory *reg,
497 struct regulatory_request *request)
498{
499 if (__ath_reg_dyn_country(wiphy, reg, request))
500 return;
501
502 printk(KERN_DEBUG "ath: regdomain 0x%0x "
503 "dynamically updated by %s\n",
504 reg->current_rd,
505 reg_initiator_name(request->initiator));
506}
507
Luis R. Rodriguez0c0280b2013-01-11 18:39:36 +0000508void ath_reg_notifier_apply(struct wiphy *wiphy,
509 struct regulatory_request *request,
510 struct ath_regulatory *reg)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800511{
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530512 struct ath_common *common = container_of(reg, struct ath_common,
513 regulatory);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800514 /* We always apply this */
Mohammed Shafi Shajakhanc0c345d2017-04-12 23:19:37 +0530515 ath_reg_apply_radar_flags(wiphy, reg);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800516
Luis R. Rodriguez931299c2010-12-15 19:24:12 -0800517 /*
518 * This would happen when we have sent a custom regulatory request
519 * a world regulatory domain and the scheduler hasn't yet processed
520 * any pending requests in the queue.
521 */
522 if (!request)
Luis R. Rodriguez0c0280b2013-01-11 18:39:36 +0000523 return;
Luis R. Rodriguez931299c2010-12-15 19:24:12 -0800524
Felix Fietkau94e05902014-10-22 15:27:53 +0200525 reg->region = request->dfs_region;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800526 switch (request->initiator) {
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400527 case NL80211_REGDOM_SET_BY_CORE:
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530528 /*
529 * If common->reg_world_copy is world roaming it means we *were*
530 * world roaming... so we now have to restore that data.
531 */
532 if (!ath_is_world_regd(&common->reg_world_copy))
533 break;
534
535 memcpy(reg, &common->reg_world_copy,
536 sizeof(struct ath_regulatory));
537 break;
538 case NL80211_REGDOM_SET_BY_DRIVER:
Luis R. Rodriguez4da225b2013-10-14 17:42:08 -0700539 break;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400540 case NL80211_REGDOM_SET_BY_USER:
Luis R. Rodriguezba94c042013-10-29 23:39:05 +0100541 if (ath_reg_dyn_country_user_allow(reg))
542 ath_reg_dyn_country(wiphy, reg, request);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800543 break;
Luis R. Rodriguez7db90f42009-03-09 22:07:41 -0400544 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
Luis R. Rodriguez8a3b6c82013-10-14 17:42:07 -0700545 ath_reg_dyn_country(wiphy, reg, request);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800546 break;
547 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800548}
Bob Copeland3a702e42009-03-30 22:30:29 -0400549EXPORT_SYMBOL(ath_reg_notifier_apply);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800550
Bob Copelande3bb2492009-03-30 22:30:30 -0400551static bool ath_regd_is_eeprom_valid(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700552{
Luis de Bethencourtcfcfe442010-03-30 16:44:33 +0100553 u16 rd = ath_regd_get_eepromRD(reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700554 int i;
555
556 if (rd & COUNTRY_ERD_FLAG) {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800557 /* EEPROM value is a country code */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700558 u16 cc = rd & ~COUNTRY_ERD_FLAG;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400559 printk(KERN_DEBUG
560 "ath: EEPROM indicates we should expect "
561 "a country code\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700562 for (i = 0; i < ARRAY_SIZE(allCountries); i++)
563 if (allCountries[i].countryCode == cc)
564 return true;
565 } else {
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800566 /* EEPROM value is a regpair value */
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400567 if (rd != CTRY_DEFAULT)
568 printk(KERN_DEBUG "ath: EEPROM indicates we "
569 "should expect a direct regpair map\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700570 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++)
Kalle Valoef8c0012014-02-13 18:13:12 +0200571 if (regDomainPairs[i].reg_domain == rd)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700572 return true;
573 }
Bob Copelandc02cf372009-03-30 22:30:28 -0400574 printk(KERN_DEBUG
Bob Copeland3a702e42009-03-30 22:30:29 -0400575 "ath: invalid regulatory domain/country code 0x%x\n", rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700576 return false;
577}
578
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800579/* EEPROM country code to regpair mapping */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700580static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400581ath_regd_find_country(u16 countryCode)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700582{
583 int i;
584
585 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
586 if (allCountries[i].countryCode == countryCode)
587 return &allCountries[i];
588 }
589 return NULL;
590}
591
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800592/* EEPROM rd code to regpair mapping */
593static struct country_code_to_enum_rd*
Bob Copeland3a702e42009-03-30 22:30:29 -0400594ath_regd_find_country_by_rd(int regdmn)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800595{
596 int i;
597
598 for (i = 0; i < ARRAY_SIZE(allCountries); i++) {
599 if (allCountries[i].regDmnEnum == regdmn)
600 return &allCountries[i];
601 }
602 return NULL;
603}
604
605/* Returns the map of the EEPROM set RD to a country code */
Bob Copeland3a702e42009-03-30 22:30:29 -0400606static u16 ath_regd_get_default_country(u16 rd)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608 if (rd & COUNTRY_ERD_FLAG) {
609 struct country_code_to_enum_rd *country = NULL;
610 u16 cc = rd & ~COUNTRY_ERD_FLAG;
611
Bob Copeland3a702e42009-03-30 22:30:29 -0400612 country = ath_regd_find_country(cc);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613 if (country != NULL)
614 return cc;
615 }
616
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617 return CTRY_DEFAULT;
618}
619
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800620static struct reg_dmn_pair_mapping*
Bob Copeland3a702e42009-03-30 22:30:29 -0400621ath_get_regpair(int regdmn)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700622{
623 int i;
624
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800625 if (regdmn == NO_ENUMRD)
626 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700627 for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) {
Kalle Valoef8c0012014-02-13 18:13:12 +0200628 if (regDomainPairs[i].reg_domain == regdmn)
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800629 return &regDomainPairs[i];
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700630 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800631 return NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700632}
633
Luis R. Rodriguez6b2b2ff2009-03-30 22:30:34 -0400634static int
635ath_regd_init_wiphy(struct ath_regulatory *reg,
636 struct wiphy *wiphy,
Luis R. Rodriguez0c0280b2013-01-11 18:39:36 +0000637 void (*reg_notifier)(struct wiphy *wiphy,
638 struct regulatory_request *request))
Bob Copelande3bb2492009-03-30 22:30:30 -0400639{
640 const struct ieee80211_regdomain *regd;
641
642 wiphy->reg_notifier = reg_notifier;
Luis R. Rodriguez8fc68582013-12-14 20:09:05 +0100643 wiphy->regulatory_flags |= REGULATORY_STRICT_REG |
644 REGULATORY_CUSTOM_REG;
Bob Copelande3bb2492009-03-30 22:30:30 -0400645
646 if (ath_is_world_regd(reg)) {
647 /*
648 * Anything applied here (prior to wiphy registration) gets
649 * saved on the wiphy orig_* parameters
650 */
651 regd = ath_world_regdomain(reg);
Luis R. Rodriguez8fc68582013-12-14 20:09:05 +0100652 wiphy->regulatory_flags |= REGULATORY_COUNTRY_IE_FOLLOW_POWER;
Bob Copelande3bb2492009-03-30 22:30:30 -0400653 } else {
654 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300655 * This gets applied in the case of the absence of CRDA,
Bob Copelande3bb2492009-03-30 22:30:30 -0400656 * it's our own custom world regulatory domain, similar to
657 * cfg80211's but we enable passive scanning.
658 */
659 regd = ath_default_world_regdomain();
660 }
Luis R. Rodriguez8fc68582013-12-14 20:09:05 +0100661
Bob Copelande3bb2492009-03-30 22:30:30 -0400662 wiphy_apply_custom_regulatory(wiphy, regd);
Mohammed Shafi Shajakhanc0c345d2017-04-12 23:19:37 +0530663 ath_reg_apply_radar_flags(wiphy, reg);
Bob Copelande3bb2492009-03-30 22:30:30 -0400664 ath_reg_apply_world_flags(wiphy, NL80211_REGDOM_SET_BY_DRIVER, reg);
665 return 0;
666}
667
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700668/*
669 * Some users have reported their EEPROM programmed with
Wen Gong2dc01652019-11-29 07:34:09 +0000670 * 0x8000 or 0x0 set, this is not a supported regulatory
671 * domain but since we have more than one user with it we
672 * need a solution for them. We default to 0x64, which is
673 * the default Atheros world regulatory domain.
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700674 */
675static void ath_regd_sanitize(struct ath_regulatory *reg)
676{
Wen Gong2dc01652019-11-29 07:34:09 +0000677 if (reg->current_rd != COUNTRY_ERD_FLAG && reg->current_rd != 0)
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700678 return;
679 printk(KERN_DEBUG "ath: EEPROM regdomain sanitized\n");
680 reg->current_rd = 0x64;
681}
682
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530683static int __ath_regd_init(struct ath_regulatory *reg)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700684{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700685 struct country_code_to_enum_rd *country = NULL;
Bob Copelande775aaf2009-02-12 13:38:54 -0500686 u16 regdmn;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700687
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400688 if (!reg)
689 return -EINVAL;
690
Luis R. Rodriguez5d2214a2009-07-20 08:32:47 -0700691 ath_regd_sanitize(reg);
692
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400693 printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd);
694
Bob Copeland3a702e42009-03-30 22:30:29 -0400695 if (!ath_regd_is_eeprom_valid(reg)) {
Joe Perches516304b2012-03-18 17:30:52 -0700696 pr_err("Invalid EEPROM contents\n");
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800697 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700698 }
699
Bob Copeland3a702e42009-03-30 22:30:29 -0400700 regdmn = ath_regd_get_eepromRD(reg);
701 reg->country_code = ath_regd_get_default_country(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700702
Bob Copelandc02cf372009-03-30 22:30:28 -0400703 if (reg->country_code == CTRY_DEFAULT &&
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400704 regdmn == CTRY_DEFAULT) {
705 printk(KERN_DEBUG "ath: EEPROM indicates default "
706 "country code should be used\n");
Bob Copelandc02cf372009-03-30 22:30:28 -0400707 reg->country_code = CTRY_UNITED_STATES;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400708 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700709
Bob Copelandc02cf372009-03-30 22:30:28 -0400710 if (reg->country_code == CTRY_DEFAULT) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700711 country = NULL;
712 } else {
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400713 printk(KERN_DEBUG "ath: doing EEPROM country->regdmn "
714 "map search\n");
Bob Copeland3a702e42009-03-30 22:30:29 -0400715 country = ath_regd_find_country(reg->country_code);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700716 if (country == NULL) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400717 printk(KERN_DEBUG
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400718 "ath: no valid country maps found for "
719 "country code: 0x%0x\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400720 reg->country_code);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800721 return -EINVAL;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400722 } else {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700723 regdmn = country->regDmnEnum;
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400724 printk(KERN_DEBUG "ath: country maps to "
725 "regdmn code: 0x%0x\n",
726 regdmn);
727 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729
Bob Copeland3a702e42009-03-30 22:30:29 -0400730 reg->regpair = ath_get_regpair(regdmn);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800731
Bob Copelandc02cf372009-03-30 22:30:28 -0400732 if (!reg->regpair) {
Bob Copeland3a702e42009-03-30 22:30:29 -0400733 printk(KERN_DEBUG "ath: "
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800734 "No regulatory domain pair found, cannot continue\n");
735 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700736 }
737
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800738 if (!country)
Bob Copeland3a702e42009-03-30 22:30:29 -0400739 country = ath_regd_find_country_by_rd(regdmn);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800741 if (country) {
Bob Copelandc02cf372009-03-30 22:30:28 -0400742 reg->alpha2[0] = country->isoName[0];
743 reg->alpha2[1] = country->isoName[1];
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800744 } else {
Bob Copelandc02cf372009-03-30 22:30:28 -0400745 reg->alpha2[0] = '0';
746 reg->alpha2[1] = '0';
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800747 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748
Bob Copeland3a702e42009-03-30 22:30:29 -0400749 printk(KERN_DEBUG "ath: Country alpha2 being used: %c%c\n",
Bob Copelandc02cf372009-03-30 22:30:28 -0400750 reg->alpha2[0], reg->alpha2[1]);
Luis R. Rodrigueze03e5ffd2009-06-02 16:30:56 -0400751 printk(KERN_DEBUG "ath: Regpair used: 0x%0x\n",
Kalle Valoef8c0012014-02-13 18:13:12 +0200752 reg->regpair->reg_domain);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700753
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530754 return 0;
755}
756
757int
758ath_regd_init(struct ath_regulatory *reg,
759 struct wiphy *wiphy,
Luis R. Rodriguez0c0280b2013-01-11 18:39:36 +0000760 void (*reg_notifier)(struct wiphy *wiphy,
761 struct regulatory_request *request))
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530762{
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530763 struct ath_common *common = container_of(reg, struct ath_common,
764 regulatory);
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530765 int r;
766
767 r = __ath_regd_init(reg);
768 if (r)
769 return r;
770
Luis R. Rodriguezde1c7322011-12-08 23:59:24 +0530771 if (ath_is_world_regd(reg))
772 memcpy(&common->reg_world_copy, reg,
773 sizeof(struct ath_regulatory));
774
Bob Copelande3bb2492009-03-30 22:30:30 -0400775 ath_regd_init_wiphy(reg, wiphy, reg_notifier);
Luis R. Rodriguez43fcb432011-12-08 23:59:23 +0530776
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800777 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778}
Bob Copeland3a702e42009-03-30 22:30:29 -0400779EXPORT_SYMBOL(ath_regd_init);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780
Bob Copeland3a702e42009-03-30 22:30:29 -0400781u32 ath_regd_get_band_ctl(struct ath_regulatory *reg,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200782 enum nl80211_band band)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783{
Bob Copelandc02cf372009-03-30 22:30:28 -0400784 if (!reg->regpair ||
785 (reg->country_code == CTRY_DEFAULT &&
Bob Copeland3a702e42009-03-30 22:30:29 -0400786 is_wwr_sku(ath_regd_get_eepromRD(reg)))) {
Bob Copelandfc2ada32009-03-30 22:30:27 -0400787 return SD_NO_CTL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700788 }
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -0800789
Felix Fietkau94e05902014-10-22 15:27:53 +0200790 if (ath_regd_get_eepromRD(reg) == CTRY_DEFAULT) {
791 switch (reg->region) {
792 case NL80211_DFS_FCC:
793 return CTL_FCC;
794 case NL80211_DFS_ETSI:
795 return CTL_ETSI;
796 case NL80211_DFS_JP:
797 return CTL_MKK;
798 default:
799 break;
800 }
801 }
802
Bob Copelandfc2ada32009-03-30 22:30:27 -0400803 switch (band) {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200804 case NL80211_BAND_2GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400805 return reg->regpair->reg_2ghz_ctl;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200806 case NL80211_BAND_5GHZ:
Bob Copelandc02cf372009-03-30 22:30:28 -0400807 return reg->regpair->reg_5ghz_ctl;
Bob Copelandfc2ada32009-03-30 22:30:27 -0400808 default:
809 return NO_CTL;
810 }
Bob Copelandfc2ada32009-03-30 22:30:27 -0400811}
Bob Copeland3a702e42009-03-30 22:30:29 -0400812EXPORT_SYMBOL(ath_regd_get_band_ctl);