2 * Copyright (c) 2008-2009 Atheros Communications Inc.
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.
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.
17 #include <linux/kernel.h>
18 #include <linux/slab.h>
19 #include <net/wireless.h>
21 #include "regd_common.h"
24 * This is a set of common rules used by our world regulatory domains.
25 * We have 12 world regulatory domains. To save space we consolidate
26 * the regulatory domains in 5 structures by frequency and change
27 * the flags on our reg_notifier() on a case by case basis.
30 /* Only these channels all allow active scan on all world regulatory domains */
31 #define ATH9K_2GHZ_CH01_11 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0)
33 /* We enable active scan on these a case by case basis by regulatory domain */
34 #define ATH9K_2GHZ_CH12_13 REG_RULE(2467-10, 2472+10, 40, 0, 20,\
35 NL80211_RRF_PASSIVE_SCAN)
36 #define ATH9K_2GHZ_CH14 REG_RULE(2484-10, 2484+10, 40, 0, 20,\
37 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_OFDM)
39 /* We allow IBSS on these on a case by case basis by regulatory domain */
40 #define ATH9K_5GHZ_5150_5350 REG_RULE(5150-10, 5350+10, 40, 0, 30,\
41 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
42 #define ATH9K_5GHZ_5470_5850 REG_RULE(5470-10, 5850+10, 40, 0, 30,\
43 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
44 #define ATH9K_5GHZ_5725_5850 REG_RULE(5725-10, 5850+10, 40, 0, 30,\
45 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
47 #define ATH9K_2GHZ_ALL ATH9K_2GHZ_CH01_11, \
51 #define ATH9K_5GHZ_ALL ATH9K_5GHZ_5150_5350, \
53 /* This one skips what we call "mid band" */
54 #define ATH9K_5GHZ_NO_MIDBAND ATH9K_5GHZ_5150_5350, \
59 static const struct ieee80211_regdomain ath9k_world_regdom_60_61_62
= {
68 /* Can be used by 0x63 and 0x65 */
69 static const struct ieee80211_regdomain ath9k_world_regdom_63_65
= {
75 ATH9K_5GHZ_NO_MIDBAND
,
79 /* Can be used by 0x64 only */
80 static const struct ieee80211_regdomain ath9k_world_regdom_64
= {
85 ATH9K_5GHZ_NO_MIDBAND
,
89 /* Can be used by 0x66 and 0x69 */
90 static const struct ieee80211_regdomain ath9k_world_regdom_66_69
= {
99 /* Can be used by 0x67, 0x6A and 0x68 */
100 static const struct ieee80211_regdomain ath9k_world_regdom_67_68_6A
= {
110 static inline bool is_wwr_sku(u16 regd
)
112 return ((regd
& WORLD_SKU_MASK
) == WORLD_SKU_PREFIX
) ||
116 static u16
ath9k_regd_get_eepromRD(struct ath_hw
*ah
)
118 return ah
->regulatory
.current_rd
& ~WORLDWIDE_ROAMING_FLAG
;
121 bool ath9k_is_world_regd(struct ath_hw
*ah
)
123 return is_wwr_sku(ath9k_regd_get_eepromRD(ah
));
126 const struct ieee80211_regdomain
*ath9k_default_world_regdomain(void)
128 /* this is the most restrictive */
129 return &ath9k_world_regdom_64
;
132 const struct ieee80211_regdomain
*ath9k_world_regdomain(struct ath_hw
*ah
)
134 switch (ah
->regulatory
.regpair
->regDmnEnum
) {
138 return &ath9k_world_regdom_60_61_62
;
141 return &ath9k_world_regdom_63_65
;
143 return &ath9k_world_regdom_64
;
146 return &ath9k_world_regdom_66_69
;
150 return &ath9k_world_regdom_67_68_6A
;
153 return ath9k_default_world_regdomain();
157 /* Frequency is one where radar detection is required */
158 static bool ath9k_is_radar_freq(u16 center_freq
)
160 return (center_freq
>= 5260 && center_freq
<= 5700);
164 * N.B: These exception rules do not apply radar freqs.
166 * - We enable adhoc (or beaconing) if allowed by 11d
167 * - We enable active scan if the channel is allowed by 11d
168 * - If no country IE has been processed and a we determine we have
169 * received a beacon on a channel we can enable active scan and
170 * adhoc (or beaconing).
172 static void ath9k_reg_apply_beaconing_flags(
174 enum nl80211_reg_initiator initiator
)
176 enum ieee80211_band band
;
177 struct ieee80211_supported_band
*sband
;
178 const struct ieee80211_reg_rule
*reg_rule
;
179 struct ieee80211_channel
*ch
;
184 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
186 if (!wiphy
->bands
[band
])
189 sband
= wiphy
->bands
[band
];
191 for (i
= 0; i
< sband
->n_channels
; i
++) {
193 ch
= &sband
->channels
[i
];
195 if (ath9k_is_radar_freq(ch
->center_freq
) ||
196 (ch
->flags
& IEEE80211_CHAN_RADAR
))
199 if (initiator
== NL80211_REGDOM_SET_BY_COUNTRY_IE
) {
200 r
= freq_reg_info(wiphy
, ch
->center_freq
,
201 &bandwidth
, ®_rule
);
205 * If 11d had a rule for this channel ensure
206 * we enable adhoc/beaconing if it allows us to
207 * use it. Note that we would have disabled it
208 * by applying our static world regdomain by
209 * default during init, prior to calling our
212 if (!(reg_rule
->flags
&
213 NL80211_RRF_NO_IBSS
))
215 ~IEEE80211_CHAN_NO_IBSS
;
216 if (!(reg_rule
->flags
&
217 NL80211_RRF_PASSIVE_SCAN
))
219 ~IEEE80211_CHAN_PASSIVE_SCAN
;
221 if (ch
->beacon_found
)
222 ch
->flags
&= ~(IEEE80211_CHAN_NO_IBSS
|
223 IEEE80211_CHAN_PASSIVE_SCAN
);
230 /* Allows active scan scan on Ch 12 and 13 */
231 static void ath9k_reg_apply_active_scan_flags(
233 enum nl80211_reg_initiator initiator
)
235 struct ieee80211_supported_band
*sband
;
236 struct ieee80211_channel
*ch
;
237 const struct ieee80211_reg_rule
*reg_rule
;
241 sband
= wiphy
->bands
[IEEE80211_BAND_2GHZ
];
244 * If no country IE has been received always enable active scan
245 * on these channels. This is only done for specific regulatory SKUs
247 if (initiator
!= NL80211_REGDOM_SET_BY_COUNTRY_IE
) {
248 ch
= &sband
->channels
[11]; /* CH 12 */
249 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
250 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
251 ch
= &sband
->channels
[12]; /* CH 13 */
252 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
253 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
258 * If a country IE has been recieved check its rule for this
259 * channel first before enabling active scan. The passive scan
260 * would have been enforced by the initial processing of our
261 * custom regulatory domain.
264 ch
= &sband
->channels
[11]; /* CH 12 */
265 r
= freq_reg_info(wiphy
, ch
->center_freq
, &bandwidth
, ®_rule
);
267 if (!(reg_rule
->flags
& NL80211_RRF_PASSIVE_SCAN
))
268 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
269 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
272 ch
= &sband
->channels
[12]; /* CH 13 */
273 r
= freq_reg_info(wiphy
, ch
->center_freq
, &bandwidth
, ®_rule
);
275 if (!(reg_rule
->flags
& NL80211_RRF_PASSIVE_SCAN
))
276 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
277 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
281 /* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */
282 void ath9k_reg_apply_radar_flags(struct wiphy
*wiphy
)
284 struct ieee80211_supported_band
*sband
;
285 struct ieee80211_channel
*ch
;
288 if (!wiphy
->bands
[IEEE80211_BAND_5GHZ
])
291 sband
= wiphy
->bands
[IEEE80211_BAND_5GHZ
];
293 for (i
= 0; i
< sband
->n_channels
; i
++) {
294 ch
= &sband
->channels
[i
];
295 if (!ath9k_is_radar_freq(ch
->center_freq
))
297 /* We always enable radar detection/DFS on this
298 * frequency range. Additionally we also apply on
299 * this frequency range:
300 * - If STA mode does not yet have DFS supports disable
302 * - If adhoc mode does not support DFS yet then
303 * disable adhoc in the frequency.
304 * - If AP mode does not yet support radar detection/DFS
305 * do not allow AP mode
307 if (!(ch
->flags
& IEEE80211_CHAN_DISABLED
))
308 ch
->flags
|= IEEE80211_CHAN_RADAR
|
309 IEEE80211_CHAN_NO_IBSS
|
310 IEEE80211_CHAN_PASSIVE_SCAN
;
314 void ath9k_reg_apply_world_flags(struct wiphy
*wiphy
,
315 enum nl80211_reg_initiator initiator
)
317 struct ieee80211_hw
*hw
= wiphy_to_ieee80211_hw(wiphy
);
318 struct ath_wiphy
*aphy
= hw
->priv
;
319 struct ath_softc
*sc
= aphy
->sc
;
320 struct ath_hw
*ah
= sc
->sc_ah
;
322 switch (ah
->regulatory
.regpair
->regDmnEnum
) {
327 ath9k_reg_apply_beaconing_flags(wiphy
, initiator
);
330 ath9k_reg_apply_beaconing_flags(wiphy
, initiator
);
331 ath9k_reg_apply_active_scan_flags(wiphy
, initiator
);
337 int ath9k_reg_notifier(struct wiphy
*wiphy
, struct regulatory_request
*request
)
339 struct ieee80211_hw
*hw
= wiphy_to_ieee80211_hw(wiphy
);
340 struct ath_wiphy
*aphy
= hw
->priv
;
341 struct ath_softc
*sc
= aphy
->sc
;
343 /* We always apply this */
344 ath9k_reg_apply_radar_flags(wiphy
);
346 switch (request
->initiator
) {
347 case NL80211_REGDOM_SET_BY_DRIVER
:
348 case NL80211_REGDOM_SET_BY_CORE
:
349 case NL80211_REGDOM_SET_BY_USER
:
351 case NL80211_REGDOM_SET_BY_COUNTRY_IE
:
352 if (ath9k_is_world_regd(sc
->sc_ah
))
353 ath9k_reg_apply_world_flags(wiphy
, request
->initiator
);
360 bool ath9k_regd_is_eeprom_valid(struct ath_hw
*ah
)
362 u16 rd
= ath9k_regd_get_eepromRD(ah
);
365 if (rd
& COUNTRY_ERD_FLAG
) {
366 /* EEPROM value is a country code */
367 u16 cc
= rd
& ~COUNTRY_ERD_FLAG
;
368 for (i
= 0; i
< ARRAY_SIZE(allCountries
); i
++)
369 if (allCountries
[i
].countryCode
== cc
)
372 /* EEPROM value is a regpair value */
373 for (i
= 0; i
< ARRAY_SIZE(regDomainPairs
); i
++)
374 if (regDomainPairs
[i
].regDmnEnum
== rd
)
377 DPRINTF(ah
->ah_sc
, ATH_DBG_REGULATORY
,
378 "invalid regulatory domain/country code 0x%x\n", rd
);
382 /* EEPROM country code to regpair mapping */
383 static struct country_code_to_enum_rd
*
384 ath9k_regd_find_country(u16 countryCode
)
388 for (i
= 0; i
< ARRAY_SIZE(allCountries
); i
++) {
389 if (allCountries
[i
].countryCode
== countryCode
)
390 return &allCountries
[i
];
395 /* EEPROM rd code to regpair mapping */
396 static struct country_code_to_enum_rd
*
397 ath9k_regd_find_country_by_rd(int regdmn
)
401 for (i
= 0; i
< ARRAY_SIZE(allCountries
); i
++) {
402 if (allCountries
[i
].regDmnEnum
== regdmn
)
403 return &allCountries
[i
];
408 /* Returns the map of the EEPROM set RD to a country code */
409 static u16
ath9k_regd_get_default_country(u16 rd
)
411 if (rd
& COUNTRY_ERD_FLAG
) {
412 struct country_code_to_enum_rd
*country
= NULL
;
413 u16 cc
= rd
& ~COUNTRY_ERD_FLAG
;
415 country
= ath9k_regd_find_country(cc
);
423 static struct reg_dmn_pair_mapping
*
424 ath9k_get_regpair(int regdmn
)
428 if (regdmn
== NO_ENUMRD
)
430 for (i
= 0; i
< ARRAY_SIZE(regDomainPairs
); i
++) {
431 if (regDomainPairs
[i
].regDmnEnum
== regdmn
)
432 return ®DomainPairs
[i
];
437 int ath9k_regd_init(struct ath_hw
*ah
)
439 struct country_code_to_enum_rd
*country
= NULL
;
442 if (!ath9k_regd_is_eeprom_valid(ah
)) {
443 DPRINTF(ah
->ah_sc
, ATH_DBG_REGULATORY
,
444 "Invalid EEPROM contents\n");
448 regdmn
= ath9k_regd_get_eepromRD(ah
);
449 ah
->regulatory
.country_code
= ath9k_regd_get_default_country(regdmn
);
451 if (ah
->regulatory
.country_code
== CTRY_DEFAULT
&&
452 regdmn
== CTRY_DEFAULT
)
453 ah
->regulatory
.country_code
= CTRY_UNITED_STATES
;
455 if (ah
->regulatory
.country_code
== CTRY_DEFAULT
) {
458 country
= ath9k_regd_find_country(ah
->regulatory
.country_code
);
459 if (country
== NULL
) {
460 DPRINTF(ah
->ah_sc
, ATH_DBG_REGULATORY
,
461 "Country is NULL!!!!, cc= %d\n",
462 ah
->regulatory
.country_code
);
465 regdmn
= country
->regDmnEnum
;
468 ah
->regulatory
.regpair
= ath9k_get_regpair(regdmn
);
470 if (!ah
->regulatory
.regpair
) {
471 DPRINTF(ah
->ah_sc
, ATH_DBG_FATAL
,
472 "No regulatory domain pair found, cannot continue\n");
477 country
= ath9k_regd_find_country_by_rd(regdmn
);
480 ah
->regulatory
.alpha2
[0] = country
->isoName
[0];
481 ah
->regulatory
.alpha2
[1] = country
->isoName
[1];
483 ah
->regulatory
.alpha2
[0] = '0';
484 ah
->regulatory
.alpha2
[1] = '0';
487 DPRINTF(ah
->ah_sc
, ATH_DBG_REGULATORY
,
488 "Country alpha2 being used: %c%c\n"
489 "Regulatory.Regpair detected: 0x%0x\n",
490 ah
->regulatory
.alpha2
[0], ah
->regulatory
.alpha2
[1],
491 ah
->regulatory
.regpair
->regDmnEnum
);
497 u32
ath9k_regd_get_band_ctl(struct ath_hw
*ah
, enum ieee80211_band band
)
499 if (!ah
->regulatory
.regpair
||
500 (ah
->regulatory
.country_code
== CTRY_DEFAULT
&&
501 is_wwr_sku(ath9k_regd_get_eepromRD(ah
)))) {
506 case IEEE80211_BAND_2GHZ
:
507 return ah
->regulatory
.regpair
->reg_2ghz_ctl
;
508 case IEEE80211_BAND_5GHZ
:
509 return ah
->regulatory
.regpair
->reg_5ghz_ctl
;
517 u32
ath9k_regd_get_ctl(struct ath_hw
*ah
, struct ath9k_channel
*chan
)
519 u32 ctl
= ath9k_regd_get_band_ctl(ah
, chan
->chan
->band
);
523 else if (IS_CHAN_G(chan
))