| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* | 
| Sujith | cee075a | 2009-03-13 09:07:23 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2009 Atheros Communications Inc. | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3 | * | 
|  | 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 |  | 
|  | 17 | #include <linux/kernel.h> | 
| Paul Gortmaker | ee40fa0 | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 18 | #include <linux/export.h> | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 19 | #include <net/cfg80211.h> | 
|  | 20 | #include <net/mac80211.h> | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 21 | #include "regd.h" | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 22 | #include "regd_common.h" | 
|  | 23 |  | 
| Luis R. Rodriguez | de1c732 | 2011-12-08 23:59:24 +0530 | [diff] [blame] | 24 | static int __ath_regd_init(struct ath_regulatory *reg); | 
|  | 25 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 26 | /* | 
|  | 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. | 
|  | 31 | */ | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 32 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 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) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 35 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 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) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 41 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 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) | 
|  | 49 |  | 
|  | 50 | #define ATH9K_2GHZ_ALL		ATH9K_2GHZ_CH01_11, \ | 
|  | 51 | ATH9K_2GHZ_CH12_13, \ | 
|  | 52 | ATH9K_2GHZ_CH14 | 
|  | 53 |  | 
|  | 54 | #define ATH9K_5GHZ_ALL		ATH9K_5GHZ_5150_5350, \ | 
|  | 55 | ATH9K_5GHZ_5470_5850 | 
| Luis de Bethencourt | cfcfe44 | 2010-03-30 16:44:33 +0100 | [diff] [blame] | 56 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 57 | /* This one skips what we call "mid band" */ | 
|  | 58 | #define ATH9K_5GHZ_NO_MIDBAND	ATH9K_5GHZ_5150_5350, \ | 
|  | 59 | ATH9K_5GHZ_5725_5850 | 
|  | 60 |  | 
|  | 61 | /* Can be used for: | 
|  | 62 | * 0x60, 0x61, 0x62 */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 63 | static const struct ieee80211_regdomain ath_world_regdom_60_61_62 = { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 64 | .n_reg_rules = 5, | 
|  | 65 | .alpha2 =  "99", | 
|  | 66 | .reg_rules = { | 
|  | 67 | ATH9K_2GHZ_ALL, | 
|  | 68 | ATH9K_5GHZ_ALL, | 
|  | 69 | } | 
|  | 70 | }; | 
|  | 71 |  | 
|  | 72 | /* Can be used by 0x63 and 0x65 */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 73 | static const struct ieee80211_regdomain ath_world_regdom_63_65 = { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 74 | .n_reg_rules = 4, | 
|  | 75 | .alpha2 =  "99", | 
|  | 76 | .reg_rules = { | 
|  | 77 | ATH9K_2GHZ_CH01_11, | 
|  | 78 | ATH9K_2GHZ_CH12_13, | 
|  | 79 | ATH9K_5GHZ_NO_MIDBAND, | 
|  | 80 | } | 
|  | 81 | }; | 
|  | 82 |  | 
|  | 83 | /* Can be used by 0x64 only */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 84 | static const struct ieee80211_regdomain ath_world_regdom_64 = { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 85 | .n_reg_rules = 3, | 
|  | 86 | .alpha2 =  "99", | 
|  | 87 | .reg_rules = { | 
|  | 88 | ATH9K_2GHZ_CH01_11, | 
|  | 89 | ATH9K_5GHZ_NO_MIDBAND, | 
|  | 90 | } | 
|  | 91 | }; | 
|  | 92 |  | 
|  | 93 | /* Can be used by 0x66 and 0x69 */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 94 | static const struct ieee80211_regdomain ath_world_regdom_66_69 = { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 95 | .n_reg_rules = 3, | 
|  | 96 | .alpha2 =  "99", | 
|  | 97 | .reg_rules = { | 
|  | 98 | ATH9K_2GHZ_CH01_11, | 
|  | 99 | ATH9K_5GHZ_ALL, | 
|  | 100 | } | 
|  | 101 | }; | 
|  | 102 |  | 
| Senthil Balasubramanian | 34a0a20 | 2011-04-14 16:41:30 +0530 | [diff] [blame] | 103 | /* Can be used by 0x67, 0x68, 0x6A and 0x6C */ | 
|  | 104 | static const struct ieee80211_regdomain ath_world_regdom_67_68_6A_6C = { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 105 | .n_reg_rules = 4, | 
|  | 106 | .alpha2 =  "99", | 
|  | 107 | .reg_rules = { | 
|  | 108 | ATH9K_2GHZ_CH01_11, | 
|  | 109 | ATH9K_2GHZ_CH12_13, | 
|  | 110 | ATH9K_5GHZ_ALL, | 
|  | 111 | } | 
|  | 112 | }; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 113 |  | 
| Bob Copeland | d0f48f9 | 2009-02-12 13:38:55 -0500 | [diff] [blame] | 114 | static inline bool is_wwr_sku(u16 regd) | 
|  | 115 | { | 
| Christian Lamparter | 641eabb | 2010-02-07 16:01:55 +0100 | [diff] [blame] | 116 | return ((regd & COUNTRY_ERD_FLAG) != COUNTRY_ERD_FLAG) && | 
|  | 117 | (((regd & WORLD_SKU_MASK) == WORLD_SKU_PREFIX) || | 
|  | 118 | (regd == WORLD)); | 
| Bob Copeland | d0f48f9 | 2009-02-12 13:38:55 -0500 | [diff] [blame] | 119 | } | 
|  | 120 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 121 | static u16 ath_regd_get_eepromRD(struct ath_regulatory *reg) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 122 | { | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 123 | return reg->current_rd & ~WORLDWIDE_ROAMING_FLAG; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 124 | } | 
|  | 125 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 126 | bool ath_is_world_regd(struct ath_regulatory *reg) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 127 | { | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 128 | return is_wwr_sku(ath_regd_get_eepromRD(reg)); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 129 | } | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 130 | EXPORT_SYMBOL(ath_is_world_regd); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 131 |  | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 132 | static const struct ieee80211_regdomain *ath_default_world_regdomain(void) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 133 | { | 
|  | 134 | /* this is the most restrictive */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 135 | return &ath_world_regdom_64; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 136 | } | 
|  | 137 |  | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 138 | static const struct | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 139 | ieee80211_regdomain *ath_world_regdomain(struct ath_regulatory *reg) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 140 | { | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 141 | switch (reg->regpair->regDmnEnum) { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 142 | case 0x60: | 
|  | 143 | case 0x61: | 
|  | 144 | case 0x62: | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 145 | return &ath_world_regdom_60_61_62; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 146 | case 0x63: | 
|  | 147 | case 0x65: | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 148 | return &ath_world_regdom_63_65; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 149 | case 0x64: | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 150 | return &ath_world_regdom_64; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 151 | case 0x66: | 
|  | 152 | case 0x69: | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 153 | return &ath_world_regdom_66_69; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 154 | case 0x67: | 
|  | 155 | case 0x68: | 
|  | 156 | case 0x6A: | 
| Senthil Balasubramanian | 34a0a20 | 2011-04-14 16:41:30 +0530 | [diff] [blame] | 157 | case 0x6C: | 
|  | 158 | return &ath_world_regdom_67_68_6A_6C; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 159 | default: | 
|  | 160 | WARN_ON(1); | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 161 | return ath_default_world_regdomain(); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 162 | } | 
|  | 163 | } | 
|  | 164 |  | 
| Bruno Randolf | 5719efd | 2011-01-25 13:15:33 +0900 | [diff] [blame] | 165 | bool ath_is_49ghz_allowed(u16 regdomain) | 
|  | 166 | { | 
|  | 167 | /* possibly more */ | 
|  | 168 | return regdomain == MKK9_MKKC; | 
|  | 169 | } | 
|  | 170 | EXPORT_SYMBOL(ath_is_49ghz_allowed); | 
|  | 171 |  | 
| Luis R. Rodriguez | 547e4c2 | 2009-01-28 12:17:48 -0800 | [diff] [blame] | 172 | /* Frequency is one where radar detection is required */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 173 | static bool ath_is_radar_freq(u16 center_freq) | 
| Luis R. Rodriguez | 547e4c2 | 2009-01-28 12:17:48 -0800 | [diff] [blame] | 174 | { | 
|  | 175 | return (center_freq >= 5260 && center_freq <= 5700); | 
|  | 176 | } | 
|  | 177 |  | 
| Luis R. Rodriguez | 7519a8f | 2009-01-28 12:17:49 -0800 | [diff] [blame] | 178 | /* | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 179 | * N.B: These exception rules do not apply radar freqs. | 
|  | 180 | * | 
|  | 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). | 
| Luis R. Rodriguez | 7519a8f | 2009-01-28 12:17:49 -0800 | [diff] [blame] | 186 | */ | 
| Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 187 | static void | 
|  | 188 | ath_reg_apply_beaconing_flags(struct wiphy *wiphy, | 
|  | 189 | enum nl80211_reg_initiator initiator) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 190 | { | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 191 | enum ieee80211_band band; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 192 | struct ieee80211_supported_band *sband; | 
|  | 193 | const struct ieee80211_reg_rule *reg_rule; | 
|  | 194 | struct ieee80211_channel *ch; | 
|  | 195 | unsigned int i; | 
|  | 196 | u32 bandwidth = 0; | 
|  | 197 | int r; | 
|  | 198 |  | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 199 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 200 |  | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 201 | if (!wiphy->bands[band]) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 202 | continue; | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 203 |  | 
|  | 204 | sband = wiphy->bands[band]; | 
|  | 205 |  | 
|  | 206 | for (i = 0; i < sband->n_channels; i++) { | 
|  | 207 |  | 
|  | 208 | ch = &sband->channels[i]; | 
|  | 209 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 210 | if (ath_is_radar_freq(ch->center_freq) || | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 211 | (ch->flags & IEEE80211_CHAN_RADAR)) | 
|  | 212 | continue; | 
|  | 213 |  | 
| Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 214 | if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) { | 
| Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 215 | r = freq_reg_info(wiphy, | 
|  | 216 | ch->center_freq, | 
|  | 217 | bandwidth, | 
|  | 218 | ®_rule); | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 219 | if (r) | 
|  | 220 | continue; | 
|  | 221 | /* | 
|  | 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 | 
|  | 227 | * regulatory_hint(). | 
|  | 228 | */ | 
|  | 229 | if (!(reg_rule->flags & | 
|  | 230 | NL80211_RRF_NO_IBSS)) | 
|  | 231 | ch->flags &= | 
|  | 232 | ~IEEE80211_CHAN_NO_IBSS; | 
|  | 233 | if (!(reg_rule->flags & | 
|  | 234 | NL80211_RRF_PASSIVE_SCAN)) | 
|  | 235 | ch->flags &= | 
|  | 236 | ~IEEE80211_CHAN_PASSIVE_SCAN; | 
|  | 237 | } else { | 
|  | 238 | if (ch->beacon_found) | 
|  | 239 | ch->flags &= ~(IEEE80211_CHAN_NO_IBSS | | 
|  | 240 | IEEE80211_CHAN_PASSIVE_SCAN); | 
|  | 241 | } | 
|  | 242 | } | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 243 | } | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 244 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
|  | 247 | /* Allows active scan scan on Ch 12 and 13 */ | 
| Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 248 | static void | 
|  | 249 | ath_reg_apply_active_scan_flags(struct wiphy *wiphy, | 
|  | 250 | enum nl80211_reg_initiator initiator) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 251 | { | 
|  | 252 | struct ieee80211_supported_band *sband; | 
|  | 253 | struct ieee80211_channel *ch; | 
|  | 254 | const struct ieee80211_reg_rule *reg_rule; | 
|  | 255 | u32 bandwidth = 0; | 
|  | 256 | int r; | 
|  | 257 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 258 | sband = wiphy->bands[IEEE80211_BAND_2GHZ]; | 
| Helmut Schaa | a59be08 | 2011-11-08 14:01:13 +0100 | [diff] [blame] | 259 | if (!sband) | 
|  | 260 | return; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 261 |  | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 262 | /* | 
|  | 263 | * If no country IE has been received always enable active scan | 
|  | 264 | * on these channels. This is only done for specific regulatory SKUs | 
|  | 265 | */ | 
| Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 266 | if (initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 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; | 
|  | 273 | return; | 
|  | 274 | } | 
|  | 275 |  | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 276 | /* | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 277 | * If a country IE has been received check its rule for this | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 278 | * channel first before enabling active scan. The passive scan | 
| Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 279 | * would have been enforced by the initial processing of our | 
|  | 280 | * custom regulatory domain. | 
|  | 281 | */ | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 282 |  | 
|  | 283 | ch = &sband->channels[11]; /* CH 12 */ | 
| Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 284 | r = freq_reg_info(wiphy, ch->center_freq, bandwidth, ®_rule); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 285 | if (!r) { | 
|  | 286 | if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN)) | 
|  | 287 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) | 
|  | 288 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; | 
|  | 289 | } | 
|  | 290 |  | 
|  | 291 | ch = &sband->channels[12]; /* CH 13 */ | 
| Luis R. Rodriguez | 038659e | 2009-05-02 00:37:17 -0400 | [diff] [blame] | 292 | r = freq_reg_info(wiphy, ch->center_freq, bandwidth, ®_rule); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 293 | if (!r) { | 
|  | 294 | if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN)) | 
|  | 295 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) | 
|  | 296 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; | 
|  | 297 | } | 
|  | 298 | } | 
|  | 299 |  | 
|  | 300 | /* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */ | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 301 | static void ath_reg_apply_radar_flags(struct wiphy *wiphy) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 302 | { | 
|  | 303 | struct ieee80211_supported_band *sband; | 
|  | 304 | struct ieee80211_channel *ch; | 
|  | 305 | unsigned int i; | 
|  | 306 |  | 
|  | 307 | if (!wiphy->bands[IEEE80211_BAND_5GHZ]) | 
|  | 308 | return; | 
|  | 309 |  | 
|  | 310 | sband = wiphy->bands[IEEE80211_BAND_5GHZ]; | 
|  | 311 |  | 
|  | 312 | for (i = 0; i < sband->n_channels; i++) { | 
|  | 313 | ch = &sband->channels[i]; | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 314 | if (!ath_is_radar_freq(ch->center_freq)) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 315 | continue; | 
|  | 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 | 
|  | 320 | *   active scanning | 
|  | 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 | 
|  | 325 | */ | 
|  | 326 | if (!(ch->flags & IEEE80211_CHAN_DISABLED)) | 
|  | 327 | ch->flags |= IEEE80211_CHAN_RADAR | | 
|  | 328 | IEEE80211_CHAN_NO_IBSS | | 
|  | 329 | IEEE80211_CHAN_PASSIVE_SCAN; | 
|  | 330 | } | 
|  | 331 | } | 
|  | 332 |  | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 333 | static void ath_reg_apply_world_flags(struct wiphy *wiphy, | 
| Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 334 | enum nl80211_reg_initiator initiator, | 
|  | 335 | struct ath_regulatory *reg) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 336 | { | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 337 | switch (reg->regpair->regDmnEnum) { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 338 | case 0x60: | 
|  | 339 | case 0x63: | 
|  | 340 | case 0x66: | 
|  | 341 | case 0x67: | 
| Luis R. Rodriguez | 2290a9c | 2011-04-14 14:55:36 -0700 | [diff] [blame] | 342 | case 0x6C: | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 343 | ath_reg_apply_beaconing_flags(wiphy, initiator); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 344 | break; | 
|  | 345 | case 0x68: | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 346 | ath_reg_apply_beaconing_flags(wiphy, initiator); | 
|  | 347 | ath_reg_apply_active_scan_flags(wiphy, initiator); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 348 | break; | 
|  | 349 | } | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 350 | } | 
|  | 351 |  | 
| Luis R. Rodriguez | de1c732 | 2011-12-08 23:59:24 +0530 | [diff] [blame] | 352 | static u16 ath_regd_find_country_by_name(char *alpha2) | 
|  | 353 | { | 
|  | 354 | unsigned int i; | 
|  | 355 |  | 
|  | 356 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) { | 
|  | 357 | if (!memcmp(allCountries[i].isoName, alpha2, 2)) | 
|  | 358 | return allCountries[i].countryCode; | 
|  | 359 | } | 
|  | 360 |  | 
|  | 361 | return -1; | 
|  | 362 | } | 
|  | 363 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 364 | int ath_reg_notifier_apply(struct wiphy *wiphy, | 
| Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 365 | struct regulatory_request *request, | 
|  | 366 | struct ath_regulatory *reg) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 367 | { | 
| Luis R. Rodriguez | de1c732 | 2011-12-08 23:59:24 +0530 | [diff] [blame] | 368 | struct ath_common *common = container_of(reg, struct ath_common, | 
|  | 369 | regulatory); | 
|  | 370 | u16 country_code; | 
|  | 371 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 372 | /* We always apply this */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 373 | ath_reg_apply_radar_flags(wiphy); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 374 |  | 
| Luis R. Rodriguez | 931299c | 2010-12-15 19:24:12 -0800 | [diff] [blame] | 375 | /* | 
|  | 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. | 
|  | 379 | */ | 
|  | 380 | if (!request) | 
|  | 381 | return 0; | 
|  | 382 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 383 | switch (request->initiator) { | 
| Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 384 | case NL80211_REGDOM_SET_BY_CORE: | 
| Luis R. Rodriguez | de1c732 | 2011-12-08 23:59:24 +0530 | [diff] [blame] | 385 | /* | 
|  | 386 | * If common->reg_world_copy is world roaming it means we *were* | 
|  | 387 | * world roaming... so we now have to restore that data. | 
|  | 388 | */ | 
|  | 389 | if (!ath_is_world_regd(&common->reg_world_copy)) | 
|  | 390 | break; | 
|  | 391 |  | 
|  | 392 | memcpy(reg, &common->reg_world_copy, | 
|  | 393 | sizeof(struct ath_regulatory)); | 
|  | 394 | break; | 
|  | 395 | case NL80211_REGDOM_SET_BY_DRIVER: | 
| Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 396 | case NL80211_REGDOM_SET_BY_USER: | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 397 | break; | 
| Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 398 | case NL80211_REGDOM_SET_BY_COUNTRY_IE: | 
| Luis R. Rodriguez | de1c732 | 2011-12-08 23:59:24 +0530 | [diff] [blame] | 399 | if (!ath_is_world_regd(reg)) | 
|  | 400 | break; | 
|  | 401 |  | 
|  | 402 | country_code = ath_regd_find_country_by_name(request->alpha2); | 
|  | 403 | if (country_code == (u16) -1) | 
|  | 404 | break; | 
|  | 405 |  | 
|  | 406 | reg->current_rd = COUNTRY_ERD_FLAG; | 
|  | 407 | reg->current_rd |= country_code; | 
|  | 408 |  | 
|  | 409 | printk(KERN_DEBUG "ath: regdomain 0x%0x updated by CountryIE\n", | 
|  | 410 | reg->current_rd); | 
|  | 411 | __ath_regd_init(reg); | 
|  | 412 |  | 
|  | 413 | ath_reg_apply_world_flags(wiphy, request->initiator, reg); | 
|  | 414 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 415 | break; | 
|  | 416 | } | 
|  | 417 |  | 
|  | 418 | return 0; | 
|  | 419 | } | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 420 | EXPORT_SYMBOL(ath_reg_notifier_apply); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 421 |  | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 422 | static bool ath_regd_is_eeprom_valid(struct ath_regulatory *reg) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 423 | { | 
| Luis de Bethencourt | cfcfe44 | 2010-03-30 16:44:33 +0100 | [diff] [blame] | 424 | u16 rd = ath_regd_get_eepromRD(reg); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 425 | int i; | 
|  | 426 |  | 
|  | 427 | if (rd & COUNTRY_ERD_FLAG) { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 428 | /* EEPROM value is a country code */ | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 429 | u16 cc = rd & ~COUNTRY_ERD_FLAG; | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 430 | printk(KERN_DEBUG | 
|  | 431 | "ath: EEPROM indicates we should expect " | 
|  | 432 | "a country code\n"); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 433 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) | 
|  | 434 | if (allCountries[i].countryCode == cc) | 
|  | 435 | return true; | 
|  | 436 | } else { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 437 | /* EEPROM value is a regpair value */ | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 438 | if (rd != CTRY_DEFAULT) | 
|  | 439 | printk(KERN_DEBUG "ath: EEPROM indicates we " | 
|  | 440 | "should expect a direct regpair map\n"); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 441 | for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) | 
|  | 442 | if (regDomainPairs[i].regDmnEnum == rd) | 
|  | 443 | return true; | 
|  | 444 | } | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 445 | printk(KERN_DEBUG | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 446 | "ath: invalid regulatory domain/country code 0x%x\n", rd); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 447 | return false; | 
|  | 448 | } | 
|  | 449 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 450 | /* EEPROM country code to regpair mapping */ | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 451 | static struct country_code_to_enum_rd* | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 452 | ath_regd_find_country(u16 countryCode) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 453 | { | 
|  | 454 | int i; | 
|  | 455 |  | 
|  | 456 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) { | 
|  | 457 | if (allCountries[i].countryCode == countryCode) | 
|  | 458 | return &allCountries[i]; | 
|  | 459 | } | 
|  | 460 | return NULL; | 
|  | 461 | } | 
|  | 462 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 463 | /* EEPROM rd code to regpair mapping */ | 
|  | 464 | static struct country_code_to_enum_rd* | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 465 | ath_regd_find_country_by_rd(int regdmn) | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 466 | { | 
|  | 467 | int i; | 
|  | 468 |  | 
|  | 469 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) { | 
|  | 470 | if (allCountries[i].regDmnEnum == regdmn) | 
|  | 471 | return &allCountries[i]; | 
|  | 472 | } | 
|  | 473 | return NULL; | 
|  | 474 | } | 
|  | 475 |  | 
|  | 476 | /* Returns the map of the EEPROM set RD to a country code */ | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 477 | static u16 ath_regd_get_default_country(u16 rd) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 478 | { | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 479 | if (rd & COUNTRY_ERD_FLAG) { | 
|  | 480 | struct country_code_to_enum_rd *country = NULL; | 
|  | 481 | u16 cc = rd & ~COUNTRY_ERD_FLAG; | 
|  | 482 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 483 | country = ath_regd_find_country(cc); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 484 | if (country != NULL) | 
|  | 485 | return cc; | 
|  | 486 | } | 
|  | 487 |  | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 488 | return CTRY_DEFAULT; | 
|  | 489 | } | 
|  | 490 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 491 | static struct reg_dmn_pair_mapping* | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 492 | ath_get_regpair(int regdmn) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 493 | { | 
|  | 494 | int i; | 
|  | 495 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 496 | if (regdmn == NO_ENUMRD) | 
|  | 497 | return NULL; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 498 | for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) { | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 499 | if (regDomainPairs[i].regDmnEnum == regdmn) | 
|  | 500 | return ®DomainPairs[i]; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 501 | } | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 502 | return NULL; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 503 | } | 
|  | 504 |  | 
| Luis R. Rodriguez | 6b2b2ff | 2009-03-30 22:30:34 -0400 | [diff] [blame] | 505 | static int | 
|  | 506 | ath_regd_init_wiphy(struct ath_regulatory *reg, | 
|  | 507 | struct wiphy *wiphy, | 
|  | 508 | int (*reg_notifier)(struct wiphy *wiphy, | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 509 | struct regulatory_request *request)) | 
|  | 510 | { | 
|  | 511 | const struct ieee80211_regdomain *regd; | 
|  | 512 |  | 
|  | 513 | wiphy->reg_notifier = reg_notifier; | 
| Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 514 | wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY; | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 515 |  | 
|  | 516 | if (ath_is_world_regd(reg)) { | 
|  | 517 | /* | 
|  | 518 | * Anything applied here (prior to wiphy registration) gets | 
|  | 519 | * saved on the wiphy orig_* parameters | 
|  | 520 | */ | 
|  | 521 | regd = ath_world_regdomain(reg); | 
| Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 522 | wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 523 | } else { | 
|  | 524 | /* | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 525 | * This gets applied in the case of the absence of CRDA, | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 526 | * it's our own custom world regulatory domain, similar to | 
|  | 527 | * cfg80211's but we enable passive scanning. | 
|  | 528 | */ | 
|  | 529 | regd = ath_default_world_regdomain(); | 
|  | 530 | } | 
|  | 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); | 
|  | 534 | return 0; | 
|  | 535 | } | 
|  | 536 |  | 
| Luis R. Rodriguez | 5d2214a | 2009-07-20 08:32:47 -0700 | [diff] [blame] | 537 | /* | 
|  | 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. | 
|  | 543 | */ | 
|  | 544 | static void ath_regd_sanitize(struct ath_regulatory *reg) | 
|  | 545 | { | 
|  | 546 | if (reg->current_rd != COUNTRY_ERD_FLAG) | 
|  | 547 | return; | 
|  | 548 | printk(KERN_DEBUG "ath: EEPROM regdomain sanitized\n"); | 
|  | 549 | reg->current_rd = 0x64; | 
|  | 550 | } | 
|  | 551 |  | 
| Luis R. Rodriguez | 43fcb43 | 2011-12-08 23:59:23 +0530 | [diff] [blame] | 552 | static int __ath_regd_init(struct ath_regulatory *reg) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 553 | { | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 554 | struct country_code_to_enum_rd *country = NULL; | 
| Bob Copeland | e775aaf | 2009-02-12 13:38:54 -0500 | [diff] [blame] | 555 | u16 regdmn; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 556 |  | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 557 | if (!reg) | 
|  | 558 | return -EINVAL; | 
|  | 559 |  | 
| Luis R. Rodriguez | 5d2214a | 2009-07-20 08:32:47 -0700 | [diff] [blame] | 560 | ath_regd_sanitize(reg); | 
|  | 561 |  | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 562 | printk(KERN_DEBUG "ath: EEPROM regdomain: 0x%0x\n", reg->current_rd); | 
|  | 563 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 564 | if (!ath_regd_is_eeprom_valid(reg)) { | 
| Luis R. Rodriguez | 85efc86 | 2009-04-13 21:41:46 -0400 | [diff] [blame] | 565 | printk(KERN_ERR "ath: Invalid EEPROM contents\n"); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 566 | return -EINVAL; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 567 | } | 
|  | 568 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 569 | regdmn = ath_regd_get_eepromRD(reg); | 
|  | 570 | reg->country_code = ath_regd_get_default_country(regdmn); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 571 |  | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 572 | if (reg->country_code == CTRY_DEFAULT && | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 573 | regdmn == CTRY_DEFAULT) { | 
|  | 574 | printk(KERN_DEBUG "ath: EEPROM indicates default " | 
|  | 575 | "country code should be used\n"); | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 576 | reg->country_code = CTRY_UNITED_STATES; | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 577 | } | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 578 |  | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 579 | if (reg->country_code == CTRY_DEFAULT) { | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 580 | country = NULL; | 
|  | 581 | } else { | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 582 | printk(KERN_DEBUG "ath: doing EEPROM country->regdmn " | 
|  | 583 | "map search\n"); | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 584 | country = ath_regd_find_country(reg->country_code); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 585 | if (country == NULL) { | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 586 | printk(KERN_DEBUG | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 587 | "ath: no valid country maps found for " | 
|  | 588 | "country code: 0x%0x\n", | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 589 | reg->country_code); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 590 | return -EINVAL; | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 591 | } else { | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 592 | regdmn = country->regDmnEnum; | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 593 | printk(KERN_DEBUG "ath: country maps to " | 
|  | 594 | "regdmn code: 0x%0x\n", | 
|  | 595 | regdmn); | 
|  | 596 | } | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 597 | } | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 598 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 599 | reg->regpair = ath_get_regpair(regdmn); | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 600 |  | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 601 | if (!reg->regpair) { | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 602 | printk(KERN_DEBUG "ath: " | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 603 | "No regulatory domain pair found, cannot continue\n"); | 
|  | 604 | return -EINVAL; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 605 | } | 
|  | 606 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 607 | if (!country) | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 608 | country = ath_regd_find_country_by_rd(regdmn); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 609 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 610 | if (country) { | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 611 | reg->alpha2[0] = country->isoName[0]; | 
|  | 612 | reg->alpha2[1] = country->isoName[1]; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 613 | } else { | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 614 | reg->alpha2[0] = '0'; | 
|  | 615 | reg->alpha2[1] = '0'; | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 616 | } | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 617 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 618 | printk(KERN_DEBUG "ath: Country alpha2 being used: %c%c\n", | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 619 | reg->alpha2[0], reg->alpha2[1]); | 
| Luis R. Rodriguez | e03e5ffd | 2009-06-02 16:30:56 -0400 | [diff] [blame] | 620 | printk(KERN_DEBUG "ath: Regpair used: 0x%0x\n", | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 621 | reg->regpair->regDmnEnum); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 622 |  | 
| Luis R. Rodriguez | 43fcb43 | 2011-12-08 23:59:23 +0530 | [diff] [blame] | 623 | return 0; | 
|  | 624 | } | 
|  | 625 |  | 
|  | 626 | int | 
|  | 627 | ath_regd_init(struct ath_regulatory *reg, | 
|  | 628 | struct wiphy *wiphy, | 
|  | 629 | int (*reg_notifier)(struct wiphy *wiphy, | 
|  | 630 | struct regulatory_request *request)) | 
|  | 631 | { | 
| Luis R. Rodriguez | de1c732 | 2011-12-08 23:59:24 +0530 | [diff] [blame] | 632 | struct ath_common *common = container_of(reg, struct ath_common, | 
|  | 633 | regulatory); | 
| Luis R. Rodriguez | 43fcb43 | 2011-12-08 23:59:23 +0530 | [diff] [blame] | 634 | int r; | 
|  | 635 |  | 
|  | 636 | r = __ath_regd_init(reg); | 
|  | 637 | if (r) | 
|  | 638 | return r; | 
|  | 639 |  | 
| Luis R. Rodriguez | de1c732 | 2011-12-08 23:59:24 +0530 | [diff] [blame] | 640 | if (ath_is_world_regd(reg)) | 
|  | 641 | memcpy(&common->reg_world_copy, reg, | 
|  | 642 | sizeof(struct ath_regulatory)); | 
|  | 643 |  | 
| Bob Copeland | e3bb249 | 2009-03-30 22:30:30 -0400 | [diff] [blame] | 644 | ath_regd_init_wiphy(reg, wiphy, reg_notifier); | 
| Luis R. Rodriguez | 43fcb43 | 2011-12-08 23:59:23 +0530 | [diff] [blame] | 645 |  | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 646 | return 0; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 647 | } | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 648 | EXPORT_SYMBOL(ath_regd_init); | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 649 |  | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 650 | u32 ath_regd_get_band_ctl(struct ath_regulatory *reg, | 
|  | 651 | enum ieee80211_band band) | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 652 | { | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 653 | if (!reg->regpair || | 
|  | 654 | (reg->country_code == CTRY_DEFAULT && | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 655 | is_wwr_sku(ath_regd_get_eepromRD(reg)))) { | 
| Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 656 | return SD_NO_CTL; | 
| Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 657 | } | 
| Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 658 |  | 
| Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 659 | switch (band) { | 
|  | 660 | case IEEE80211_BAND_2GHZ: | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 661 | return reg->regpair->reg_2ghz_ctl; | 
| Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 662 | case IEEE80211_BAND_5GHZ: | 
| Bob Copeland | c02cf37 | 2009-03-30 22:30:28 -0400 | [diff] [blame] | 663 | return reg->regpair->reg_5ghz_ctl; | 
| Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 664 | default: | 
|  | 665 | return NO_CTL; | 
|  | 666 | } | 
| Bob Copeland | fc2ada3 | 2009-03-30 22:30:27 -0400 | [diff] [blame] | 667 | } | 
| Bob Copeland | 3a702e4 | 2009-03-30 22:30:29 -0400 | [diff] [blame] | 668 | EXPORT_SYMBOL(ath_regd_get_band_ctl); |