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/export.h>
19 #include <net/cfg80211.h>
20 #include <net/mac80211.h>
22 #include "regd_common.h"
24 static int __ath_regd_init(struct ath_regulatory
*reg
);
27 * This is a set of common rules used by our world regulatory domains.
28 * We have 12 world regulatory domains. To save space we consolidate
29 * the regulatory domains in 5 structures by frequency and change
30 * the flags on our reg_notifier() on a case by case basis.
33 /* Only these channels all allow active scan on all world regulatory domains */
34 #define ATH9K_2GHZ_CH01_11 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0)
36 /* We enable active scan on these a case by case basis by regulatory domain */
37 #define ATH9K_2GHZ_CH12_13 REG_RULE(2467-10, 2472+10, 40, 0, 20,\
38 NL80211_RRF_PASSIVE_SCAN)
39 #define ATH9K_2GHZ_CH14 REG_RULE(2484-10, 2484+10, 40, 0, 20,\
40 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_OFDM)
42 /* We allow IBSS on these on a case by case basis by regulatory domain */
43 #define ATH9K_5GHZ_5150_5350 REG_RULE(5150-10, 5350+10, 40, 0, 30,\
44 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
45 #define ATH9K_5GHZ_5470_5850 REG_RULE(5470-10, 5850+10, 40, 0, 30,\
46 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
47 #define ATH9K_5GHZ_5725_5850 REG_RULE(5725-10, 5850+10, 40, 0, 30,\
48 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS)
50 #define ATH9K_2GHZ_ALL ATH9K_2GHZ_CH01_11, \
54 #define ATH9K_5GHZ_ALL ATH9K_5GHZ_5150_5350, \
57 /* This one skips what we call "mid band" */
58 #define ATH9K_5GHZ_NO_MIDBAND ATH9K_5GHZ_5150_5350, \
63 static const struct ieee80211_regdomain ath_world_regdom_60_61_62
= {
72 /* Can be used by 0x63 and 0x65 */
73 static const struct ieee80211_regdomain ath_world_regdom_63_65
= {
79 ATH9K_5GHZ_NO_MIDBAND
,
83 /* Can be used by 0x64 only */
84 static const struct ieee80211_regdomain ath_world_regdom_64
= {
89 ATH9K_5GHZ_NO_MIDBAND
,
93 /* Can be used by 0x66 and 0x69 */
94 static const struct ieee80211_regdomain ath_world_regdom_66_69
= {
103 /* Can be used by 0x67, 0x68, 0x6A and 0x6C */
104 static const struct ieee80211_regdomain ath_world_regdom_67_68_6A_6C
= {
114 static inline bool is_wwr_sku(u16 regd
)
116 return ((regd
& COUNTRY_ERD_FLAG
) != COUNTRY_ERD_FLAG
) &&
117 (((regd
& WORLD_SKU_MASK
) == WORLD_SKU_PREFIX
) ||
121 static u16
ath_regd_get_eepromRD(struct ath_regulatory
*reg
)
123 return reg
->current_rd
& ~WORLDWIDE_ROAMING_FLAG
;
126 bool ath_is_world_regd(struct ath_regulatory
*reg
)
128 return is_wwr_sku(ath_regd_get_eepromRD(reg
));
130 EXPORT_SYMBOL(ath_is_world_regd
);
132 static const struct ieee80211_regdomain
*ath_default_world_regdomain(void)
134 /* this is the most restrictive */
135 return &ath_world_regdom_64
;
139 ieee80211_regdomain
*ath_world_regdomain(struct ath_regulatory
*reg
)
141 switch (reg
->regpair
->regDmnEnum
) {
145 return &ath_world_regdom_60_61_62
;
148 return &ath_world_regdom_63_65
;
150 return &ath_world_regdom_64
;
153 return &ath_world_regdom_66_69
;
158 return &ath_world_regdom_67_68_6A_6C
;
161 return ath_default_world_regdomain();
165 bool ath_is_49ghz_allowed(u16 regdomain
)
168 return regdomain
== MKK9_MKKC
;
170 EXPORT_SYMBOL(ath_is_49ghz_allowed
);
172 /* Frequency is one where radar detection is required */
173 static bool ath_is_radar_freq(u16 center_freq
)
175 return (center_freq
>= 5260 && center_freq
<= 5700);
179 * N.B: These exception rules do not apply radar freqs.
181 * - We enable adhoc (or beaconing) if allowed by 11d
182 * - We enable active scan if the channel is allowed by 11d
183 * - If no country IE has been processed and a we determine we have
184 * received a beacon on a channel we can enable active scan and
185 * adhoc (or beaconing).
188 ath_reg_apply_beaconing_flags(struct wiphy
*wiphy
,
189 enum nl80211_reg_initiator initiator
)
191 enum ieee80211_band band
;
192 struct ieee80211_supported_band
*sband
;
193 const struct ieee80211_reg_rule
*reg_rule
;
194 struct ieee80211_channel
*ch
;
199 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
201 if (!wiphy
->bands
[band
])
204 sband
= wiphy
->bands
[band
];
206 for (i
= 0; i
< sband
->n_channels
; i
++) {
208 ch
= &sband
->channels
[i
];
210 if (ath_is_radar_freq(ch
->center_freq
) ||
211 (ch
->flags
& IEEE80211_CHAN_RADAR
))
214 if (initiator
== NL80211_REGDOM_SET_BY_COUNTRY_IE
) {
215 r
= freq_reg_info(wiphy
,
222 * If 11d had a rule for this channel ensure
223 * we enable adhoc/beaconing if it allows us to
224 * use it. Note that we would have disabled it
225 * by applying our static world regdomain by
226 * default during init, prior to calling our
229 if (!(reg_rule
->flags
&
230 NL80211_RRF_NO_IBSS
))
232 ~IEEE80211_CHAN_NO_IBSS
;
233 if (!(reg_rule
->flags
&
234 NL80211_RRF_PASSIVE_SCAN
))
236 ~IEEE80211_CHAN_PASSIVE_SCAN
;
238 if (ch
->beacon_found
)
239 ch
->flags
&= ~(IEEE80211_CHAN_NO_IBSS
|
240 IEEE80211_CHAN_PASSIVE_SCAN
);
247 /* Allows active scan scan on Ch 12 and 13 */
249 ath_reg_apply_active_scan_flags(struct wiphy
*wiphy
,
250 enum nl80211_reg_initiator initiator
)
252 struct ieee80211_supported_band
*sband
;
253 struct ieee80211_channel
*ch
;
254 const struct ieee80211_reg_rule
*reg_rule
;
258 sband
= wiphy
->bands
[IEEE80211_BAND_2GHZ
];
263 * If no country IE has been received always enable active scan
264 * on these channels. This is only done for specific regulatory SKUs
266 if (initiator
!= NL80211_REGDOM_SET_BY_COUNTRY_IE
) {
267 ch
= &sband
->channels
[11]; /* CH 12 */
268 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
269 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
270 ch
= &sband
->channels
[12]; /* CH 13 */
271 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
272 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
277 * If a country IE has been received check its rule for this
278 * channel first before enabling active scan. The passive scan
279 * would have been enforced by the initial processing of our
280 * custom regulatory domain.
283 ch
= &sband
->channels
[11]; /* CH 12 */
284 r
= freq_reg_info(wiphy
, ch
->center_freq
, bandwidth
, ®_rule
);
286 if (!(reg_rule
->flags
& NL80211_RRF_PASSIVE_SCAN
))
287 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
288 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
291 ch
= &sband
->channels
[12]; /* CH 13 */
292 r
= freq_reg_info(wiphy
, ch
->center_freq
, bandwidth
, ®_rule
);
294 if (!(reg_rule
->flags
& NL80211_RRF_PASSIVE_SCAN
))
295 if (ch
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
296 ch
->flags
&= ~IEEE80211_CHAN_PASSIVE_SCAN
;
300 /* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */
301 static void ath_reg_apply_radar_flags(struct wiphy
*wiphy
)
303 struct ieee80211_supported_band
*sband
;
304 struct ieee80211_channel
*ch
;
307 if (!wiphy
->bands
[IEEE80211_BAND_5GHZ
])
310 sband
= wiphy
->bands
[IEEE80211_BAND_5GHZ
];
312 for (i
= 0; i
< sband
->n_channels
; i
++) {
313 ch
= &sband
->channels
[i
];
314 if (!ath_is_radar_freq(ch
->center_freq
))
316 /* We always enable radar detection/DFS on this
317 * frequency range. Additionally we also apply on
318 * this frequency range:
319 * - If STA mode does not yet have DFS supports disable
321 * - If adhoc mode does not support DFS yet then
322 * disable adhoc in the frequency.
323 * - If AP mode does not yet support radar detection/DFS
324 * do not allow AP mode
326 if (!(ch
->flags
& IEEE80211_CHAN_DISABLED
))
327 ch
->flags
|= IEEE80211_CHAN_RADAR
|
328 IEEE80211_CHAN_NO_IBSS
|
329 IEEE80211_CHAN_PASSIVE_SCAN
;
333 static void ath_reg_apply_world_flags(struct wiphy
*wiphy
,
334 enum nl80211_reg_initiator initiator
,
335 struct ath_regulatory
*reg
)
337 switch (reg
->regpair
->regDmnEnum
) {
343 ath_reg_apply_beaconing_flags(wiphy
, initiator
);
346 ath_reg_apply_beaconing_flags(wiphy
, initiator
);
347 ath_reg_apply_active_scan_flags(wiphy
, initiator
);
352 static u16
ath_regd_find_country_by_name(char *alpha2
)
356 for (i
= 0; i
< ARRAY_SIZE(allCountries
); i
++) {
357 if (!memcmp(allCountries
[i
].isoName
, alpha2
, 2))
358 return allCountries
[i
].countryCode
;
364 int ath_reg_notifier_apply(struct wiphy
*wiphy
,
365 struct regulatory_request
*request
,
366 struct ath_regulatory
*reg
)
368 struct ath_common
*common
= container_of(reg
, struct ath_common
,
372 /* We always apply this */
373 ath_reg_apply_radar_flags(wiphy
);
376 * This would happen when we have sent a custom regulatory request
377 * a world regulatory domain and the scheduler hasn't yet processed
378 * any pending requests in the queue.
383 switch (request
->initiator
) {
384 case NL80211_REGDOM_SET_BY_CORE
:
386 * If common->reg_world_copy is world roaming it means we *were*
387 * world roaming... so we now have to restore that data.
389 if (!ath_is_world_regd(&common
->reg_world_copy
))
392 memcpy(reg
, &common
->reg_world_copy
,
393 sizeof(struct ath_regulatory
));
395 case NL80211_REGDOM_SET_BY_DRIVER
:
396 case NL80211_REGDOM_SET_BY_USER
:
398 case NL80211_REGDOM_SET_BY_COUNTRY_IE
:
399 if (!ath_is_world_regd(reg
))
402 country_code
= ath_regd_find_country_by_name(request
->alpha2
);
403 if (country_code
== (u16
) -1)
406 reg
->current_rd
= COUNTRY_ERD_FLAG
;
407 reg
->current_rd
|= country_code
;
409 printk(KERN_DEBUG
"ath: regdomain 0x%0x updated by CountryIE\n",
411 __ath_regd_init(reg
);
413 ath_reg_apply_world_flags(wiphy
, request
->initiator
, reg
);
420 EXPORT_SYMBOL(ath_reg_notifier_apply
);
422 static bool ath_regd_is_eeprom_valid(struct ath_regulatory
*reg
)
424 u16 rd
= ath_regd_get_eepromRD(reg
);
427 if (rd
& COUNTRY_ERD_FLAG
) {
428 /* EEPROM value is a country code */
429 u16 cc
= rd
& ~COUNTRY_ERD_FLAG
;
431 "ath: EEPROM indicates we should expect "
433 for (i
= 0; i
< ARRAY_SIZE(allCountries
); i
++)
434 if (allCountries
[i
].countryCode
== cc
)
437 /* EEPROM value is a regpair value */
438 if (rd
!= CTRY_DEFAULT
)
439 printk(KERN_DEBUG
"ath: EEPROM indicates we "
440 "should expect a direct regpair map\n");
441 for (i
= 0; i
< ARRAY_SIZE(regDomainPairs
); i
++)
442 if (regDomainPairs
[i
].regDmnEnum
== rd
)
446 "ath: invalid regulatory domain/country code 0x%x\n", rd
);
450 /* EEPROM country code to regpair mapping */
451 static struct country_code_to_enum_rd
*
452 ath_regd_find_country(u16 countryCode
)
456 for (i
= 0; i
< ARRAY_SIZE(allCountries
); i
++) {
457 if (allCountries
[i
].countryCode
== countryCode
)
458 return &allCountries
[i
];
463 /* EEPROM rd code to regpair mapping */
464 static struct country_code_to_enum_rd
*
465 ath_regd_find_country_by_rd(int regdmn
)
469 for (i
= 0; i
< ARRAY_SIZE(allCountries
); i
++) {
470 if (allCountries
[i
].regDmnEnum
== regdmn
)
471 return &allCountries
[i
];
476 /* Returns the map of the EEPROM set RD to a country code */
477 static u16
ath_regd_get_default_country(u16 rd
)
479 if (rd
& COUNTRY_ERD_FLAG
) {
480 struct country_code_to_enum_rd
*country
= NULL
;
481 u16 cc
= rd
& ~COUNTRY_ERD_FLAG
;
483 country
= ath_regd_find_country(cc
);
491 static struct reg_dmn_pair_mapping
*
492 ath_get_regpair(int regdmn
)
496 if (regdmn
== NO_ENUMRD
)
498 for (i
= 0; i
< ARRAY_SIZE(regDomainPairs
); i
++) {
499 if (regDomainPairs
[i
].regDmnEnum
== regdmn
)
500 return ®DomainPairs
[i
];
506 ath_regd_init_wiphy(struct ath_regulatory
*reg
,
508 int (*reg_notifier
)(struct wiphy
*wiphy
,
509 struct regulatory_request
*request
))
511 const struct ieee80211_regdomain
*regd
;
513 wiphy
->reg_notifier
= reg_notifier
;
514 wiphy
->flags
|= WIPHY_FLAG_STRICT_REGULATORY
;
516 if (ath_is_world_regd(reg
)) {
518 * Anything applied here (prior to wiphy registration) gets
519 * saved on the wiphy orig_* parameters
521 regd
= ath_world_regdomain(reg
);
522 wiphy
->flags
|= WIPHY_FLAG_CUSTOM_REGULATORY
;
525 * This gets applied in the case of the absence of CRDA,
526 * it's our own custom world regulatory domain, similar to
527 * cfg80211's but we enable passive scanning.
529 regd
= ath_default_world_regdomain();
531 wiphy_apply_custom_regulatory(wiphy
, regd
);
532 ath_reg_apply_radar_flags(wiphy
);
533 ath_reg_apply_world_flags(wiphy
, NL80211_REGDOM_SET_BY_DRIVER
, reg
);
538 * Some users have reported their EEPROM programmed with
539 * 0x8000 set, this is not a supported regulatory domain
540 * but since we have more than one user with it we need
541 * a solution for them. We default to 0x64, which is the
542 * default Atheros world regulatory domain.
544 static void ath_regd_sanitize(struct ath_regulatory
*reg
)
546 if (reg
->current_rd
!= COUNTRY_ERD_FLAG
)
548 printk(KERN_DEBUG
"ath: EEPROM regdomain sanitized\n");
549 reg
->current_rd
= 0x64;
552 static int __ath_regd_init(struct ath_regulatory
*reg
)
554 struct country_code_to_enum_rd
*country
= NULL
;
560 ath_regd_sanitize(reg
);
562 printk(KERN_DEBUG
"ath: EEPROM regdomain: 0x%0x\n", reg
->current_rd
);
564 if (!ath_regd_is_eeprom_valid(reg
)) {
565 printk(KERN_ERR
"ath: Invalid EEPROM contents\n");
569 regdmn
= ath_regd_get_eepromRD(reg
);
570 reg
->country_code
= ath_regd_get_default_country(regdmn
);
572 if (reg
->country_code
== CTRY_DEFAULT
&&
573 regdmn
== CTRY_DEFAULT
) {
574 printk(KERN_DEBUG
"ath: EEPROM indicates default "
575 "country code should be used\n");
576 reg
->country_code
= CTRY_UNITED_STATES
;
579 if (reg
->country_code
== CTRY_DEFAULT
) {
582 printk(KERN_DEBUG
"ath: doing EEPROM country->regdmn "
584 country
= ath_regd_find_country(reg
->country_code
);
585 if (country
== NULL
) {
587 "ath: no valid country maps found for "
588 "country code: 0x%0x\n",
592 regdmn
= country
->regDmnEnum
;
593 printk(KERN_DEBUG
"ath: country maps to "
594 "regdmn code: 0x%0x\n",
599 reg
->regpair
= ath_get_regpair(regdmn
);
602 printk(KERN_DEBUG
"ath: "
603 "No regulatory domain pair found, cannot continue\n");
608 country
= ath_regd_find_country_by_rd(regdmn
);
611 reg
->alpha2
[0] = country
->isoName
[0];
612 reg
->alpha2
[1] = country
->isoName
[1];
614 reg
->alpha2
[0] = '0';
615 reg
->alpha2
[1] = '0';
618 printk(KERN_DEBUG
"ath: Country alpha2 being used: %c%c\n",
619 reg
->alpha2
[0], reg
->alpha2
[1]);
620 printk(KERN_DEBUG
"ath: Regpair used: 0x%0x\n",
621 reg
->regpair
->regDmnEnum
);
627 ath_regd_init(struct ath_regulatory
*reg
,
629 int (*reg_notifier
)(struct wiphy
*wiphy
,
630 struct regulatory_request
*request
))
632 struct ath_common
*common
= container_of(reg
, struct ath_common
,
636 r
= __ath_regd_init(reg
);
640 if (ath_is_world_regd(reg
))
641 memcpy(&common
->reg_world_copy
, reg
,
642 sizeof(struct ath_regulatory
));
644 ath_regd_init_wiphy(reg
, wiphy
, reg_notifier
);
648 EXPORT_SYMBOL(ath_regd_init
);
650 u32
ath_regd_get_band_ctl(struct ath_regulatory
*reg
,
651 enum ieee80211_band band
)
654 (reg
->country_code
== CTRY_DEFAULT
&&
655 is_wwr_sku(ath_regd_get_eepromRD(reg
)))) {
660 case IEEE80211_BAND_2GHZ
:
661 return reg
->regpair
->reg_2ghz_ctl
;
662 case IEEE80211_BAND_5GHZ
:
663 return reg
->regpair
->reg_5ghz_ctl
;
668 EXPORT_SYMBOL(ath_regd_get_band_ctl
);