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> |
| 18 | #include <linux/slab.h> |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 19 | #include "ath9k.h" |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 20 | #include "regd_common.h" |
| 21 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 22 | /* |
| 23 | * This is a set of common rules used by our world regulatory domains. |
| 24 | * We have 12 world regulatory domains. To save space we consolidate |
| 25 | * the regulatory domains in 5 structures by frequency and change |
| 26 | * the flags on our reg_notifier() on a case by case basis. |
| 27 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 28 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 29 | /* Only these channels all allow active scan on all world regulatory domains */ |
| 30 | #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] | 31 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 32 | /* We enable active scan on these a case by case basis by regulatory domain */ |
| 33 | #define ATH9K_2GHZ_CH12_13 REG_RULE(2467-10, 2472+10, 40, 0, 20,\ |
| 34 | NL80211_RRF_PASSIVE_SCAN) |
| 35 | #define ATH9K_2GHZ_CH14 REG_RULE(2484-10, 2484+10, 40, 0, 20,\ |
| 36 | NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_OFDM) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 37 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 38 | /* We allow IBSS on these on a case by case basis by regulatory domain */ |
| 39 | #define ATH9K_5GHZ_5150_5350 REG_RULE(5150-10, 5350+10, 40, 0, 30,\ |
| 40 | NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS) |
| 41 | #define ATH9K_5GHZ_5470_5850 REG_RULE(5470-10, 5850+10, 40, 0, 30,\ |
| 42 | NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS) |
| 43 | #define ATH9K_5GHZ_5725_5850 REG_RULE(5725-10, 5850+10, 40, 0, 30,\ |
| 44 | NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS) |
| 45 | |
| 46 | #define ATH9K_2GHZ_ALL ATH9K_2GHZ_CH01_11, \ |
| 47 | ATH9K_2GHZ_CH12_13, \ |
| 48 | ATH9K_2GHZ_CH14 |
| 49 | |
| 50 | #define ATH9K_5GHZ_ALL ATH9K_5GHZ_5150_5350, \ |
| 51 | ATH9K_5GHZ_5470_5850 |
| 52 | /* This one skips what we call "mid band" */ |
| 53 | #define ATH9K_5GHZ_NO_MIDBAND ATH9K_5GHZ_5150_5350, \ |
| 54 | ATH9K_5GHZ_5725_5850 |
| 55 | |
| 56 | /* Can be used for: |
| 57 | * 0x60, 0x61, 0x62 */ |
| 58 | static const struct ieee80211_regdomain ath9k_world_regdom_60_61_62 = { |
| 59 | .n_reg_rules = 5, |
| 60 | .alpha2 = "99", |
| 61 | .reg_rules = { |
| 62 | ATH9K_2GHZ_ALL, |
| 63 | ATH9K_5GHZ_ALL, |
| 64 | } |
| 65 | }; |
| 66 | |
| 67 | /* Can be used by 0x63 and 0x65 */ |
| 68 | static const struct ieee80211_regdomain ath9k_world_regdom_63_65 = { |
| 69 | .n_reg_rules = 4, |
| 70 | .alpha2 = "99", |
| 71 | .reg_rules = { |
| 72 | ATH9K_2GHZ_CH01_11, |
| 73 | ATH9K_2GHZ_CH12_13, |
| 74 | ATH9K_5GHZ_NO_MIDBAND, |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | /* Can be used by 0x64 only */ |
| 79 | static const struct ieee80211_regdomain ath9k_world_regdom_64 = { |
| 80 | .n_reg_rules = 3, |
| 81 | .alpha2 = "99", |
| 82 | .reg_rules = { |
| 83 | ATH9K_2GHZ_CH01_11, |
| 84 | ATH9K_5GHZ_NO_MIDBAND, |
| 85 | } |
| 86 | }; |
| 87 | |
| 88 | /* Can be used by 0x66 and 0x69 */ |
| 89 | static const struct ieee80211_regdomain ath9k_world_regdom_66_69 = { |
| 90 | .n_reg_rules = 3, |
| 91 | .alpha2 = "99", |
| 92 | .reg_rules = { |
| 93 | ATH9K_2GHZ_CH01_11, |
| 94 | ATH9K_5GHZ_ALL, |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 | /* Can be used by 0x67, 0x6A and 0x68 */ |
| 99 | static const struct ieee80211_regdomain ath9k_world_regdom_67_68_6A = { |
| 100 | .n_reg_rules = 4, |
| 101 | .alpha2 = "99", |
| 102 | .reg_rules = { |
| 103 | ATH9K_2GHZ_CH01_11, |
| 104 | ATH9K_2GHZ_CH12_13, |
| 105 | ATH9K_5GHZ_ALL, |
| 106 | } |
| 107 | }; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 108 | |
Bob Copeland | d0f48f9 | 2009-02-12 13:38:55 -0500 | [diff] [blame] | 109 | static inline bool is_wwr_sku(u16 regd) |
| 110 | { |
| 111 | return ((regd & WORLD_SKU_MASK) == WORLD_SKU_PREFIX) || |
| 112 | (regd == WORLD); |
| 113 | } |
| 114 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 115 | static u16 ath9k_regd_get_eepromRD(struct ath_hw *ah) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 116 | { |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 117 | return ah->regulatory.current_rd & ~WORLDWIDE_ROAMING_FLAG; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 120 | bool ath9k_is_world_regd(struct ath_hw *ah) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 121 | { |
Bob Copeland | d0f48f9 | 2009-02-12 13:38:55 -0500 | [diff] [blame] | 122 | return is_wwr_sku(ath9k_regd_get_eepromRD(ah)); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | const struct ieee80211_regdomain *ath9k_default_world_regdomain(void) |
| 126 | { |
| 127 | /* this is the most restrictive */ |
| 128 | return &ath9k_world_regdom_64; |
| 129 | } |
| 130 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 131 | const struct ieee80211_regdomain *ath9k_world_regdomain(struct ath_hw *ah) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 132 | { |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 133 | switch (ah->regulatory.regpair->regDmnEnum) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 134 | case 0x60: |
| 135 | case 0x61: |
| 136 | case 0x62: |
| 137 | return &ath9k_world_regdom_60_61_62; |
| 138 | case 0x63: |
| 139 | case 0x65: |
| 140 | return &ath9k_world_regdom_63_65; |
| 141 | case 0x64: |
| 142 | return &ath9k_world_regdom_64; |
| 143 | case 0x66: |
| 144 | case 0x69: |
| 145 | return &ath9k_world_regdom_66_69; |
| 146 | case 0x67: |
| 147 | case 0x68: |
| 148 | case 0x6A: |
| 149 | return &ath9k_world_regdom_67_68_6A; |
| 150 | default: |
| 151 | WARN_ON(1); |
| 152 | return ath9k_default_world_regdomain(); |
| 153 | } |
| 154 | } |
| 155 | |
Luis R. Rodriguez | 547e4c2 | 2009-01-28 12:17:48 -0800 | [diff] [blame] | 156 | /* Frequency is one where radar detection is required */ |
| 157 | static bool ath9k_is_radar_freq(u16 center_freq) |
| 158 | { |
| 159 | return (center_freq >= 5260 && center_freq <= 5700); |
| 160 | } |
| 161 | |
Luis R. Rodriguez | 7519a8f | 2009-01-28 12:17:49 -0800 | [diff] [blame] | 162 | /* |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 163 | * N.B: These exception rules do not apply radar freqs. |
| 164 | * |
| 165 | * - We enable adhoc (or beaconing) if allowed by 11d |
| 166 | * - We enable active scan if the channel is allowed by 11d |
| 167 | * - If no country IE has been processed and a we determine we have |
| 168 | * received a beacon on a channel we can enable active scan and |
| 169 | * adhoc (or beaconing). |
Luis R. Rodriguez | 7519a8f | 2009-01-28 12:17:49 -0800 | [diff] [blame] | 170 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 171 | static void ath9k_reg_apply_beaconing_flags( |
| 172 | struct wiphy *wiphy, |
| 173 | enum nl80211_reg_initiator initiator) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 174 | { |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 175 | enum ieee80211_band band; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 176 | struct ieee80211_supported_band *sband; |
| 177 | const struct ieee80211_reg_rule *reg_rule; |
| 178 | struct ieee80211_channel *ch; |
| 179 | unsigned int i; |
| 180 | u32 bandwidth = 0; |
| 181 | int r; |
| 182 | |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 183 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 184 | |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 185 | if (!wiphy->bands[band]) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 186 | continue; |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 187 | |
| 188 | sband = wiphy->bands[band]; |
| 189 | |
| 190 | for (i = 0; i < sband->n_channels; i++) { |
| 191 | |
| 192 | ch = &sband->channels[i]; |
| 193 | |
| 194 | if (ath9k_is_radar_freq(ch->center_freq) || |
| 195 | (ch->flags & IEEE80211_CHAN_RADAR)) |
| 196 | continue; |
| 197 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 198 | if (initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 199 | r = freq_reg_info(wiphy, ch->center_freq, |
| 200 | &bandwidth, ®_rule); |
| 201 | if (r) |
| 202 | continue; |
| 203 | /* |
| 204 | * If 11d had a rule for this channel ensure |
| 205 | * we enable adhoc/beaconing if it allows us to |
| 206 | * use it. Note that we would have disabled it |
| 207 | * by applying our static world regdomain by |
| 208 | * default during init, prior to calling our |
| 209 | * regulatory_hint(). |
| 210 | */ |
| 211 | if (!(reg_rule->flags & |
| 212 | NL80211_RRF_NO_IBSS)) |
| 213 | ch->flags &= |
| 214 | ~IEEE80211_CHAN_NO_IBSS; |
| 215 | if (!(reg_rule->flags & |
| 216 | NL80211_RRF_PASSIVE_SCAN)) |
| 217 | ch->flags &= |
| 218 | ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 219 | } else { |
| 220 | if (ch->beacon_found) |
| 221 | ch->flags &= ~(IEEE80211_CHAN_NO_IBSS | |
| 222 | IEEE80211_CHAN_PASSIVE_SCAN); |
| 223 | } |
| 224 | } |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 225 | } |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 226 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | /* Allows active scan scan on Ch 12 and 13 */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 230 | static void ath9k_reg_apply_active_scan_flags( |
| 231 | struct wiphy *wiphy, |
| 232 | enum nl80211_reg_initiator initiator) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 233 | { |
| 234 | struct ieee80211_supported_band *sband; |
| 235 | struct ieee80211_channel *ch; |
| 236 | const struct ieee80211_reg_rule *reg_rule; |
| 237 | u32 bandwidth = 0; |
| 238 | int r; |
| 239 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 240 | sband = wiphy->bands[IEEE80211_BAND_2GHZ]; |
| 241 | |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 242 | /* |
| 243 | * If no country IE has been received always enable active scan |
| 244 | * on these channels. This is only done for specific regulatory SKUs |
| 245 | */ |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 246 | if (initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 247 | ch = &sband->channels[11]; /* CH 12 */ |
| 248 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 249 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 250 | ch = &sband->channels[12]; /* CH 13 */ |
| 251 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 252 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 253 | return; |
| 254 | } |
| 255 | |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 256 | /* |
| 257 | * If a country IE has been recieved check its rule for this |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 258 | * channel first before enabling active scan. The passive scan |
Luis R. Rodriguez | 8454086 | 2009-02-21 00:20:40 -0500 | [diff] [blame] | 259 | * would have been enforced by the initial processing of our |
| 260 | * custom regulatory domain. |
| 261 | */ |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 262 | |
| 263 | ch = &sband->channels[11]; /* CH 12 */ |
| 264 | r = freq_reg_info(wiphy, ch->center_freq, &bandwidth, ®_rule); |
| 265 | if (!r) { |
| 266 | if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN)) |
| 267 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 268 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 269 | } |
| 270 | |
| 271 | ch = &sband->channels[12]; /* CH 13 */ |
| 272 | r = freq_reg_info(wiphy, ch->center_freq, &bandwidth, ®_rule); |
| 273 | if (!r) { |
| 274 | if (!(reg_rule->flags & NL80211_RRF_PASSIVE_SCAN)) |
| 275 | if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 276 | ch->flags &= ~IEEE80211_CHAN_PASSIVE_SCAN; |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | /* Always apply Radar/DFS rules on freq range 5260 MHz - 5700 MHz */ |
| 281 | void ath9k_reg_apply_radar_flags(struct wiphy *wiphy) |
| 282 | { |
| 283 | struct ieee80211_supported_band *sband; |
| 284 | struct ieee80211_channel *ch; |
| 285 | unsigned int i; |
| 286 | |
| 287 | if (!wiphy->bands[IEEE80211_BAND_5GHZ]) |
| 288 | return; |
| 289 | |
| 290 | sband = wiphy->bands[IEEE80211_BAND_5GHZ]; |
| 291 | |
| 292 | for (i = 0; i < sband->n_channels; i++) { |
| 293 | ch = &sband->channels[i]; |
Luis R. Rodriguez | 547e4c2 | 2009-01-28 12:17:48 -0800 | [diff] [blame] | 294 | if (!ath9k_is_radar_freq(ch->center_freq)) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 295 | continue; |
| 296 | /* We always enable radar detection/DFS on this |
| 297 | * frequency range. Additionally we also apply on |
| 298 | * this frequency range: |
| 299 | * - If STA mode does not yet have DFS supports disable |
| 300 | * active scanning |
| 301 | * - If adhoc mode does not support DFS yet then |
| 302 | * disable adhoc in the frequency. |
| 303 | * - If AP mode does not yet support radar detection/DFS |
| 304 | * do not allow AP mode |
| 305 | */ |
| 306 | if (!(ch->flags & IEEE80211_CHAN_DISABLED)) |
| 307 | ch->flags |= IEEE80211_CHAN_RADAR | |
| 308 | IEEE80211_CHAN_NO_IBSS | |
| 309 | IEEE80211_CHAN_PASSIVE_SCAN; |
| 310 | } |
| 311 | } |
| 312 | |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 313 | void ath9k_reg_apply_world_flags(struct wiphy *wiphy, |
| 314 | enum nl80211_reg_initiator initiator) |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 315 | { |
| 316 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 317 | struct ath_wiphy *aphy = hw->priv; |
| 318 | struct ath_softc *sc = aphy->sc; |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 319 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 320 | |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 321 | switch (ah->regulatory.regpair->regDmnEnum) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 322 | case 0x60: |
| 323 | case 0x63: |
| 324 | case 0x66: |
| 325 | case 0x67: |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 326 | ath9k_reg_apply_beaconing_flags(wiphy, initiator); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 327 | break; |
| 328 | case 0x68: |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 329 | ath9k_reg_apply_beaconing_flags(wiphy, initiator); |
| 330 | ath9k_reg_apply_active_scan_flags(wiphy, initiator); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 331 | break; |
| 332 | } |
| 333 | return; |
| 334 | } |
| 335 | |
| 336 | int ath9k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request) |
| 337 | { |
| 338 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
Jouni Malinen | bce048d | 2009-03-03 19:23:28 +0200 | [diff] [blame] | 339 | struct ath_wiphy *aphy = hw->priv; |
| 340 | struct ath_softc *sc = aphy->sc; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 341 | |
| 342 | /* We always apply this */ |
| 343 | ath9k_reg_apply_radar_flags(wiphy); |
| 344 | |
| 345 | switch (request->initiator) { |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 346 | case NL80211_REGDOM_SET_BY_DRIVER: |
| 347 | case NL80211_REGDOM_SET_BY_CORE: |
| 348 | case NL80211_REGDOM_SET_BY_USER: |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 349 | break; |
Luis R. Rodriguez | 7db90f4 | 2009-03-09 22:07:41 -0400 | [diff] [blame] | 350 | case NL80211_REGDOM_SET_BY_COUNTRY_IE: |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 351 | if (ath9k_is_world_regd(sc->sc_ah)) |
| 352 | ath9k_reg_apply_world_flags(wiphy, request->initiator); |
| 353 | break; |
| 354 | } |
| 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 359 | bool ath9k_regd_is_eeprom_valid(struct ath_hw *ah) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 360 | { |
| 361 | u16 rd = ath9k_regd_get_eepromRD(ah); |
| 362 | int i; |
| 363 | |
| 364 | if (rd & COUNTRY_ERD_FLAG) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 365 | /* EEPROM value is a country code */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 366 | u16 cc = rd & ~COUNTRY_ERD_FLAG; |
| 367 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) |
| 368 | if (allCountries[i].countryCode == cc) |
| 369 | return true; |
| 370 | } else { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 371 | /* EEPROM value is a regpair value */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 372 | for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) |
| 373 | if (regDomainPairs[i].regDmnEnum == rd) |
| 374 | return true; |
| 375 | } |
| 376 | DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 377 | "invalid regulatory domain/country code 0x%x\n", rd); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 378 | return false; |
| 379 | } |
| 380 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 381 | /* EEPROM country code to regpair mapping */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 382 | static struct country_code_to_enum_rd* |
| 383 | ath9k_regd_find_country(u16 countryCode) |
| 384 | { |
| 385 | int i; |
| 386 | |
| 387 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) { |
| 388 | if (allCountries[i].countryCode == countryCode) |
| 389 | return &allCountries[i]; |
| 390 | } |
| 391 | return NULL; |
| 392 | } |
| 393 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 394 | /* EEPROM rd code to regpair mapping */ |
| 395 | static struct country_code_to_enum_rd* |
| 396 | ath9k_regd_find_country_by_rd(int regdmn) |
| 397 | { |
| 398 | int i; |
| 399 | |
| 400 | for (i = 0; i < ARRAY_SIZE(allCountries); i++) { |
| 401 | if (allCountries[i].regDmnEnum == regdmn) |
| 402 | return &allCountries[i]; |
| 403 | } |
| 404 | return NULL; |
| 405 | } |
| 406 | |
| 407 | /* Returns the map of the EEPROM set RD to a country code */ |
Bob Copeland | e775aaf | 2009-02-12 13:38:54 -0500 | [diff] [blame] | 408 | static u16 ath9k_regd_get_default_country(u16 rd) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 409 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 410 | if (rd & COUNTRY_ERD_FLAG) { |
| 411 | struct country_code_to_enum_rd *country = NULL; |
| 412 | u16 cc = rd & ~COUNTRY_ERD_FLAG; |
| 413 | |
| 414 | country = ath9k_regd_find_country(cc); |
| 415 | if (country != NULL) |
| 416 | return cc; |
| 417 | } |
| 418 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 419 | return CTRY_DEFAULT; |
| 420 | } |
| 421 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 422 | static struct reg_dmn_pair_mapping* |
| 423 | ath9k_get_regpair(int regdmn) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 424 | { |
| 425 | int i; |
| 426 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 427 | if (regdmn == NO_ENUMRD) |
| 428 | return NULL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 429 | for (i = 0; i < ARRAY_SIZE(regDomainPairs); i++) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 430 | if (regDomainPairs[i].regDmnEnum == regdmn) |
| 431 | return ®DomainPairs[i]; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 432 | } |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 433 | return NULL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 436 | int ath9k_regd_init(struct ath_hw *ah) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 437 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 438 | struct country_code_to_enum_rd *country = NULL; |
Bob Copeland | e775aaf | 2009-02-12 13:38:54 -0500 | [diff] [blame] | 439 | u16 regdmn; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 440 | |
| 441 | if (!ath9k_regd_is_eeprom_valid(ah)) { |
| 442 | DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY, |
Sujith | 04bd4638 | 2008-11-28 22:18:05 +0530 | [diff] [blame] | 443 | "Invalid EEPROM contents\n"); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 444 | return -EINVAL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Bob Copeland | e775aaf | 2009-02-12 13:38:54 -0500 | [diff] [blame] | 447 | regdmn = ath9k_regd_get_eepromRD(ah); |
| 448 | ah->regulatory.country_code = ath9k_regd_get_default_country(regdmn); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 449 | |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 450 | if (ah->regulatory.country_code == CTRY_DEFAULT && |
Bob Copeland | e775aaf | 2009-02-12 13:38:54 -0500 | [diff] [blame] | 451 | regdmn == CTRY_DEFAULT) |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 452 | ah->regulatory.country_code = CTRY_UNITED_STATES; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 453 | |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 454 | if (ah->regulatory.country_code == CTRY_DEFAULT) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 455 | country = NULL; |
| 456 | } else { |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 457 | country = ath9k_regd_find_country(ah->regulatory.country_code); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 458 | if (country == NULL) { |
| 459 | DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY, |
| 460 | "Country is NULL!!!!, cc= %d\n", |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 461 | ah->regulatory.country_code); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 462 | return -EINVAL; |
| 463 | } else |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 464 | regdmn = country->regDmnEnum; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 465 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 466 | |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 467 | ah->regulatory.regpair = ath9k_get_regpair(regdmn); |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 468 | |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 469 | if (!ah->regulatory.regpair) { |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 470 | DPRINTF(ah->ah_sc, ATH_DBG_FATAL, |
| 471 | "No regulatory domain pair found, cannot continue\n"); |
| 472 | return -EINVAL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 473 | } |
| 474 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 475 | if (!country) |
| 476 | country = ath9k_regd_find_country_by_rd(regdmn); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 477 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 478 | if (country) { |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 479 | ah->regulatory.alpha2[0] = country->isoName[0]; |
| 480 | ah->regulatory.alpha2[1] = country->isoName[1]; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 481 | } else { |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 482 | ah->regulatory.alpha2[0] = '0'; |
| 483 | ah->regulatory.alpha2[1] = '0'; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 484 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 485 | |
| 486 | DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY, |
Luis R. Rodriguez | 0c6666e | 2009-01-26 06:48:10 -0800 | [diff] [blame] | 487 | "Country alpha2 being used: %c%c\n" |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 488 | "Regulatory.Regpair detected: 0x%0x\n", |
| 489 | ah->regulatory.alpha2[0], ah->regulatory.alpha2[1], |
| 490 | ah->regulatory.regpair->regDmnEnum); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 491 | |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 492 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 493 | } |
| 494 | |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 495 | u32 ath9k_regd_get_ctl(struct ath_hw *ah, struct ath9k_channel *chan) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 496 | { |
| 497 | u32 ctl = NO_CTL; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 498 | |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 499 | if (!ah->regulatory.regpair || |
Bob Copeland | d0f48f9 | 2009-02-12 13:38:55 -0500 | [diff] [blame] | 500 | (ah->regulatory.country_code == CTRY_DEFAULT && |
| 501 | is_wwr_sku(ath9k_regd_get_eepromRD(ah)))) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 502 | if (IS_CHAN_B(chan)) |
| 503 | ctl = SD_NO_CTL | CTL_11B; |
| 504 | else if (IS_CHAN_G(chan)) |
| 505 | ctl = SD_NO_CTL | CTL_11G; |
| 506 | else |
| 507 | ctl = SD_NO_CTL | CTL_11A; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 508 | return ctl; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 509 | } |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 510 | |
| 511 | if (IS_CHAN_B(chan)) |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 512 | ctl = ah->regulatory.regpair->reg_2ghz_ctl | CTL_11B; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 513 | else if (IS_CHAN_G(chan)) |
Bob Copeland | 204b190 | 2009-02-21 14:44:18 -0500 | [diff] [blame] | 514 | ctl = ah->regulatory.regpair->reg_2ghz_ctl | CTL_11G; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 515 | else |
Sujith | d6bad49 | 2009-02-09 13:27:08 +0530 | [diff] [blame] | 516 | ctl = ah->regulatory.regpair->reg_5ghz_ctl | CTL_11A; |
Luis R. Rodriguez | 5f8e077 | 2009-01-22 15:16:48 -0800 | [diff] [blame] | 517 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 518 | return ctl; |
| 519 | } |