blob: a8dd2fd78b59d0ceadbc807e4840c5588448f426 [file] [log] [blame]
Assaf Krauss34cf6ff2008-03-06 10:40:20 -08001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Reinette Chatre1f447802010-01-15 13:43:41 -08008 * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved.
Assaf Krauss34cf6ff2008-03-06 10:40:20 -08009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
25 * in the file called LICENSE.GPL.
26 *
27 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080028 * Intel Linux Wireless <ilw@linux.intel.com>
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080029 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
Reinette Chatre1f447802010-01-15 13:43:41 -080033 * Copyright(c) 2005 - 2010 Intel Corporation. All rights reserved.
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080034 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *****************************************************************************/
62
63
64#include <linux/kernel.h>
65#include <linux/module.h>
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080066#include <linux/init.h>
67
68#include <net/mac80211.h>
69
Tomas Winkler5a36ba02008-04-24 11:55:37 -070070#include "iwl-commands.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070071#include "iwl-dev.h"
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080072#include "iwl-core.h"
Tomas Winkler0a6857e2008-03-12 16:58:49 -070073#include "iwl-debug.h"
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080074#include "iwl-eeprom.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070075#include "iwl-io.h"
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080076
Assaf Kraussbf85ea42008-03-14 10:38:49 -070077/************************** EEPROM BANDS ****************************
78 *
79 * The iwl_eeprom_band definitions below provide the mapping from the
80 * EEPROM contents to the specific channel number supported for each
81 * band.
82 *
83 * For example, iwl_priv->eeprom.band_3_channels[4] from the band_3
84 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
85 * The specific geography and calibration information for that channel
86 * is contained in the eeprom map itself.
87 *
88 * During init, we copy the eeprom information and channel map
89 * information into priv->channel_info_24/52 and priv->channel_map_24/52
90 *
91 * channel_map_24/52 provides the index in the channel_info array for a
92 * given channel. We have to have two separate maps as there is channel
93 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
94 * band_2
95 *
96 * A value of 0xff stored in the channel_map indicates that the channel
97 * is not supported by the hardware at all.
98 *
99 * A value of 0xfe in the channel_map indicates that the channel is not
100 * valid for Tx with the current hardware. This means that
101 * while the system can tune and receive on a given channel, it may not
102 * be able to associate or transmit any frames on that
103 * channel. There is no corresponding channel information for that
104 * entry.
105 *
106 *********************************************************************/
107
108/* 2.4 GHz */
109const u8 iwl_eeprom_band_1[14] = {
110 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
111};
112
113/* 5.2 GHz bands */
114static const u8 iwl_eeprom_band_2[] = { /* 4915-5080MHz */
115 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
116};
117
118static const u8 iwl_eeprom_band_3[] = { /* 5170-5320MHz */
119 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
120};
121
122static const u8 iwl_eeprom_band_4[] = { /* 5500-5700MHz */
123 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
124};
125
126static const u8 iwl_eeprom_band_5[] = { /* 5725-5825MHz */
127 145, 149, 153, 157, 161, 165
128};
129
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700130static const u8 iwl_eeprom_band_6[] = { /* 2.4 ht40 channel */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700131 1, 2, 3, 4, 5, 6, 7
132};
133
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700134static const u8 iwl_eeprom_band_7[] = { /* 5.2 ht40 channel */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700135 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157
136};
137
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700138/**
139 * struct iwl_txpwr_section: eeprom section information
140 * @offset: indirect address into eeprom image
141 * @count: number of "struct iwl_eeprom_enhanced_txpwr" in this section
142 * @band: band type for the section
143 * @is_common - true: common section, false: channel section
144 * @is_cck - true: cck section, false: not cck section
145 * @is_ht_40 - true: all channel in the section are HT40 channel,
146 * false: legacy or HT 20 MHz
147 * ignore if it is common section
148 * @iwl_eeprom_section_channel: channel array in the section,
149 * ignore if common section
150 */
151struct iwl_txpwr_section {
152 u32 offset;
153 u8 count;
154 enum ieee80211_band band;
155 bool is_common;
156 bool is_cck;
157 bool is_ht40;
158 u8 iwl_eeprom_section_channel[EEPROM_MAX_TXPOWER_SECTION_ELEMENTS];
159};
160
161/**
162 * section 1 - 3 are regulatory tx power apply to all channels based on
163 * modulation: CCK, OFDM
164 * Band: 2.4GHz, 5.2GHz
165 * section 4 - 10 are regulatory tx power apply to specified channels
166 * For example:
167 * 1L - Channel 1 Legacy
168 * 1HT - Channel 1 HT
169 * (1,+1) - Channel 1 HT40 "_above_"
170 *
171 * Section 1: all CCK channels
172 * Section 2: all 2.4 GHz OFDM (Legacy, HT and HT40) channels
173 * Section 3: all 5.2 GHz OFDM (Legacy, HT and HT40) channels
174 * Section 4: 2.4 GHz 20MHz channels: 1L, 1HT, 2L, 2HT, 10L, 10HT, 11L, 11HT
175 * Section 5: 2.4 GHz 40MHz channels: (1,+1) (2,+1) (6,+1) (7,+1) (9,+1)
176 * Section 6: 5.2 GHz 20MHz channels: 36L, 64L, 100L, 36HT, 64HT, 100HT
177 * Section 7: 5.2 GHz 40MHz channels: (36,+1) (60,+1) (100,+1)
178 * Section 8: 2.4 GHz channel: 13L, 13HT
179 * Section 9: 2.4 GHz channel: 140L, 140HT
180 * Section 10: 2.4 GHz 40MHz channels: (132,+1) (44,+1)
181 *
182 */
183static const struct iwl_txpwr_section enhinfo[] = {
184 { EEPROM_LB_CCK_20_COMMON, 1, IEEE80211_BAND_2GHZ, true, true, false },
185 { EEPROM_LB_OFDM_COMMON, 3, IEEE80211_BAND_2GHZ, true, false, false },
186 { EEPROM_HB_OFDM_COMMON, 3, IEEE80211_BAND_5GHZ, true, false, false },
187 { EEPROM_LB_OFDM_20_BAND, 8, IEEE80211_BAND_2GHZ,
188 false, false, false,
189 {1, 1, 2, 2, 10, 10, 11, 11 } },
190 { EEPROM_LB_OFDM_HT40_BAND, 5, IEEE80211_BAND_2GHZ,
191 false, false, true,
192 { 1, 2, 6, 7, 9 } },
193 { EEPROM_HB_OFDM_20_BAND, 6, IEEE80211_BAND_5GHZ,
194 false, false, false,
195 { 36, 64, 100, 36, 64, 100 } },
196 { EEPROM_HB_OFDM_HT40_BAND, 3, IEEE80211_BAND_5GHZ,
197 false, false, true,
198 { 36, 60, 100 } },
199 { EEPROM_LB_OFDM_20_CHANNEL_13, 2, IEEE80211_BAND_2GHZ,
200 false, false, false,
201 { 13, 13 } },
202 { EEPROM_HB_OFDM_20_CHANNEL_140, 2, IEEE80211_BAND_5GHZ,
203 false, false, false,
204 { 140, 140 } },
205 { EEPROM_HB_OFDM_HT40_BAND_1, 2, IEEE80211_BAND_5GHZ,
206 false, false, true,
207 { 132, 44 } },
208};
209
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800210/******************************************************************************
211 *
212 * EEPROM related functions
213 *
214******************************************************************************/
215
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700216int iwlcore_eeprom_verify_signature(struct iwl_priv *priv)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800217{
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700218 u32 gp = iwl_read32(priv, CSR_EEPROM_GP) & CSR_EEPROM_GP_VALID_MSK;
219 int ret = 0;
220
221 IWL_DEBUG_INFO(priv, "EEPROM signature=0x%08x\n", gp);
222 switch (gp) {
223 case CSR_EEPROM_GP_BAD_SIG_EEP_GOOD_SIG_OTP:
224 if (priv->nvm_device_type != NVM_DEVICE_TYPE_OTP) {
225 IWL_ERR(priv, "EEPROM with bad signature: 0x%08x\n",
226 gp);
227 ret = -ENOENT;
228 }
229 break;
230 case CSR_EEPROM_GP_GOOD_SIG_EEP_LESS_THAN_4K:
231 case CSR_EEPROM_GP_GOOD_SIG_EEP_MORE_THAN_4K:
232 if (priv->nvm_device_type != NVM_DEVICE_TYPE_EEPROM) {
233 IWL_ERR(priv, "OTP with bad signature: 0x%08x\n", gp);
234 ret = -ENOENT;
235 }
236 break;
237 case CSR_EEPROM_GP_BAD_SIGNATURE_BOTH_EEP_AND_OTP:
238 default:
239 IWL_ERR(priv, "bad EEPROM/OTP signature, type=%s, "
240 "EEPROM_GP=0x%08x\n",
241 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
242 ? "OTP" : "EEPROM", gp);
243 ret = -ENOENT;
244 break;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800245 }
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700246 return ret;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800247}
248EXPORT_SYMBOL(iwlcore_eeprom_verify_signature);
249
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700250static void iwl_set_otp_access(struct iwl_priv *priv, enum iwl_access_mode mode)
251{
252 u32 otpgp;
253
254 otpgp = iwl_read32(priv, CSR_OTP_GP_REG);
255 if (mode == IWL_OTP_ACCESS_ABSOLUTE)
256 iwl_clear_bit(priv, CSR_OTP_GP_REG,
257 CSR_OTP_GP_REG_OTP_ACCESS_MODE);
258 else
259 iwl_set_bit(priv, CSR_OTP_GP_REG,
260 CSR_OTP_GP_REG_OTP_ACCESS_MODE);
261}
262
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700263static int iwlcore_get_nvm_type(struct iwl_priv *priv)
264{
265 u32 otpgp;
266 int nvm_type;
267
268 /* OTP only valid for CP/PP and after */
269 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
Wey-Yi Guyb23a0522009-07-17 09:30:21 -0700270 case CSR_HW_REV_TYPE_NONE:
271 IWL_ERR(priv, "Unknown hardware type\n");
272 return -ENOENT;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700273 case CSR_HW_REV_TYPE_3945:
274 case CSR_HW_REV_TYPE_4965:
275 case CSR_HW_REV_TYPE_5300:
276 case CSR_HW_REV_TYPE_5350:
277 case CSR_HW_REV_TYPE_5100:
278 case CSR_HW_REV_TYPE_5150:
279 nvm_type = NVM_DEVICE_TYPE_EEPROM;
280 break;
281 default:
282 otpgp = iwl_read32(priv, CSR_OTP_GP_REG);
283 if (otpgp & CSR_OTP_GP_REG_DEVICE_SELECT)
284 nvm_type = NVM_DEVICE_TYPE_OTP;
285 else
286 nvm_type = NVM_DEVICE_TYPE_EEPROM;
287 break;
288 }
289 return nvm_type;
290}
291
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800292/*
293 * The device's EEPROM semaphore prevents conflicts between driver and uCode
294 * when accessing the EEPROM; each access is a series of pulses to/from the
295 * EEPROM chip, not a single event, so even reads could conflict if they
296 * weren't arbitrated by the semaphore.
297 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700298int iwlcore_eeprom_acquire_semaphore(struct iwl_priv *priv)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800299{
300 u16 count;
301 int ret;
302
303 for (count = 0; count < EEPROM_SEM_RETRY_LIMIT; count++) {
304 /* Request semaphore */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700305 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
306 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM);
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800307
308 /* See if we got it */
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700309 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
310 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM,
Zhu, Yi73d7b5a2008-12-05 07:58:40 -0800311 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM,
312 EEPROM_SEM_TIMEOUT);
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800313 if (ret >= 0) {
Tomas Winklere1623442009-01-27 14:27:56 -0800314 IWL_DEBUG_IO(priv, "Acquired semaphore after %d tries.\n",
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800315 count+1);
316 return ret;
317 }
318 }
319
320 return ret;
321}
322EXPORT_SYMBOL(iwlcore_eeprom_acquire_semaphore);
323
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700324void iwlcore_eeprom_release_semaphore(struct iwl_priv *priv)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800325{
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700326 iwl_clear_bit(priv, CSR_HW_IF_CONFIG_REG,
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800327 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM);
328
329}
330EXPORT_SYMBOL(iwlcore_eeprom_release_semaphore);
331
Tomas Winkler073d3f52008-04-21 15:41:52 -0700332const u8 *iwlcore_eeprom_query_addr(const struct iwl_priv *priv, size_t offset)
333{
334 BUG_ON(offset >= priv->cfg->eeprom_size);
335 return &priv->eeprom[offset];
336}
337EXPORT_SYMBOL(iwlcore_eeprom_query_addr);
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800338
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700339static int iwl_init_otp_access(struct iwl_priv *priv)
340{
341 int ret;
342
343 /* Enable 40MHz radio clock */
344 _iwl_write32(priv, CSR_GP_CNTRL,
345 _iwl_read32(priv, CSR_GP_CNTRL) |
346 CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
347
348 /* wait for clock to be ready */
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700349 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
350 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700351 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
352 25000);
353 if (ret < 0)
354 IWL_ERR(priv, "Time out access OTP\n");
355 else {
Reinette Chatred77b0342009-05-22 14:37:55 -0700356 iwl_set_bits_prph(priv, APMG_PS_CTRL_REG,
357 APMG_PS_CTRL_VAL_RESET_REQ);
358 udelay(5);
359 iwl_clear_bits_prph(priv, APMG_PS_CTRL_REG,
360 APMG_PS_CTRL_VAL_RESET_REQ);
Wey-Yi Guy32004ee2009-10-16 14:25:56 -0700361
362 /*
363 * CSR auto clock gate disable bit -
364 * this is only applicable for HW with OTP shadow RAM
365 */
366 if (priv->cfg->shadow_ram_support)
367 iwl_set_bit(priv, CSR_DBG_LINK_PWR_MGMT_REG,
368 CSR_RESET_LINK_PWR_MGMT_DISABLED);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700369 }
370 return ret;
371}
372
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800373static int iwl_read_otp_word(struct iwl_priv *priv, u16 addr, __le16 *eeprom_data)
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700374{
375 int ret = 0;
376 u32 r;
377 u32 otpgp;
378
379 _iwl_write32(priv, CSR_EEPROM_REG,
380 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700381 ret = iwl_poll_bit(priv, CSR_EEPROM_REG,
382 CSR_EEPROM_REG_READ_VALID_MSK,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700383 CSR_EEPROM_REG_READ_VALID_MSK,
384 IWL_EEPROM_ACCESS_TIMEOUT);
385 if (ret < 0) {
386 IWL_ERR(priv, "Time out reading OTP[%d]\n", addr);
387 return ret;
388 }
389 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
390 /* check for ECC errors: */
391 otpgp = iwl_read32(priv, CSR_OTP_GP_REG);
392 if (otpgp & CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK) {
393 /* stop in this case */
394 /* set the uncorrectable OTP ECC bit for acknowledgement */
395 iwl_set_bit(priv, CSR_OTP_GP_REG,
396 CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK);
397 IWL_ERR(priv, "Uncorrectable OTP ECC error, abort OTP read\n");
398 return -EINVAL;
399 }
400 if (otpgp & CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK) {
401 /* continue in this case */
402 /* set the correctable OTP ECC bit for acknowledgement */
403 iwl_set_bit(priv, CSR_OTP_GP_REG,
404 CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK);
405 IWL_ERR(priv, "Correctable OTP ECC error, continue read\n");
406 }
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800407 *eeprom_data = cpu_to_le16(r >> 16);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700408 return 0;
409}
410
411/*
412 * iwl_is_otp_empty: check for empty OTP
413 */
414static bool iwl_is_otp_empty(struct iwl_priv *priv)
415{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800416 u16 next_link_addr = 0;
417 __le16 link_value;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700418 bool is_empty = false;
419
420 /* locate the beginning of OTP link list */
421 if (!iwl_read_otp_word(priv, next_link_addr, &link_value)) {
422 if (!link_value) {
423 IWL_ERR(priv, "OTP is empty\n");
424 is_empty = true;
425 }
426 } else {
427 IWL_ERR(priv, "Unable to read first block of OTP list.\n");
428 is_empty = true;
429 }
430
431 return is_empty;
432}
433
434
435/*
436 * iwl_find_otp_image: find EEPROM image in OTP
437 * finding the OTP block that contains the EEPROM image.
438 * the last valid block on the link list (the block _before_ the last block)
439 * is the block we should read and used to configure the device.
440 * If all the available OTP blocks are full, the last block will be the block
441 * we should read and used to configure the device.
442 * only perform this operation if shadow RAM is disabled
443 */
444static int iwl_find_otp_image(struct iwl_priv *priv,
445 u16 *validblockaddr)
446{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800447 u16 next_link_addr = 0, valid_addr;
448 __le16 link_value = 0;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700449 int usedblocks = 0;
450
451 /* set addressing mode to absolute to traverse the link list */
452 iwl_set_otp_access(priv, IWL_OTP_ACCESS_ABSOLUTE);
453
454 /* checking for empty OTP or error */
455 if (iwl_is_otp_empty(priv))
456 return -EINVAL;
457
458 /*
459 * start traverse link list
460 * until reach the max number of OTP blocks
461 * different devices have different number of OTP blocks
462 */
463 do {
464 /* save current valid block address
465 * check for more block on the link list
466 */
467 valid_addr = next_link_addr;
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800468 next_link_addr = le16_to_cpu(link_value) * sizeof(u16);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700469 IWL_DEBUG_INFO(priv, "OTP blocks %d addr 0x%x\n",
470 usedblocks, next_link_addr);
471 if (iwl_read_otp_word(priv, next_link_addr, &link_value))
472 return -EINVAL;
473 if (!link_value) {
474 /*
Jay Sternberg2facba72009-10-02 13:43:55 -0700475 * reach the end of link list, return success and
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700476 * set address point to the starting address
477 * of the image
478 */
Jay Sternberg2facba72009-10-02 13:43:55 -0700479 *validblockaddr = valid_addr;
480 /* skip first 2 bytes (link list pointer) */
481 *validblockaddr += 2;
482 return 0;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700483 }
484 /* more in the link list, continue */
485 usedblocks++;
Jay Sternberg2facba72009-10-02 13:43:55 -0700486 } while (usedblocks <= priv->cfg->max_ll_items);
487
488 /* OTP has no valid blocks */
489 IWL_DEBUG_INFO(priv, "OTP has no valid blocks\n");
490 return -EINVAL;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700491}
492
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800493/**
494 * iwl_eeprom_init - read EEPROM contents
495 *
496 * Load the EEPROM contents from adapter into priv->eeprom
497 *
498 * NOTE: This routine uses the non-debug IO access functions.
499 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700500int iwl_eeprom_init(struct iwl_priv *priv)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800501{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800502 __le16 *e;
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700503 u32 gp = iwl_read32(priv, CSR_EEPROM_GP);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700504 int sz;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800505 int ret;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800506 u16 addr;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700507 u16 validblockaddr = 0;
508 u16 cache_addr = 0;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700509
510 priv->nvm_device_type = iwlcore_get_nvm_type(priv);
Wey-Yi Guyb23a0522009-07-17 09:30:21 -0700511 if (priv->nvm_device_type == -ENOENT)
512 return -ENOENT;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700513 /* allocate eeprom */
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700514 IWL_DEBUG_INFO(priv, "NVM size = %d\n", priv->cfg->eeprom_size);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700515 sz = priv->cfg->eeprom_size;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700516 priv->eeprom = kzalloc(sz, GFP_KERNEL);
517 if (!priv->eeprom) {
518 ret = -ENOMEM;
519 goto alloc_err;
520 }
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800521 e = (__le16 *)priv->eeprom;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800522
Reinette Chatref8701fe2009-12-10 14:37:22 -0800523 priv->cfg->ops->lib->apm_ops.init(priv);
Reinette Chatree43ab942009-11-13 11:56:32 -0800524
Tomas Winkler073d3f52008-04-21 15:41:52 -0700525 ret = priv->cfg->ops->lib->eeprom_ops.verify_signature(priv);
526 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800527 IWL_ERR(priv, "EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700528 ret = -ENOENT;
529 goto err;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800530 }
531
532 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
533 ret = priv->cfg->ops->lib->eeprom_ops.acquire_semaphore(priv);
534 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800535 IWL_ERR(priv, "Failed to acquire EEPROM semaphore.\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -0700536 ret = -ENOENT;
537 goto err;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800538 }
Ben Cahill88521362009-10-30 14:36:06 -0700539
Reinette Chatree43ab942009-11-13 11:56:32 -0800540 if (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP) {
Ben Cahill88521362009-10-30 14:36:06 -0700541
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700542 ret = iwl_init_otp_access(priv);
543 if (ret) {
544 IWL_ERR(priv, "Failed to initialize OTP access.\n");
545 ret = -ENOENT;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700546 goto done;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800547 }
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700548 _iwl_write32(priv, CSR_EEPROM_GP,
549 iwl_read32(priv, CSR_EEPROM_GP) &
550 ~CSR_EEPROM_GP_IF_OWNER_MSK);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700551
552 iwl_set_bit(priv, CSR_OTP_GP_REG,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700553 CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK |
554 CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700555 /* traversing the linked list if no shadow ram supported */
556 if (!priv->cfg->shadow_ram_support) {
557 if (iwl_find_otp_image(priv, &validblockaddr)) {
558 ret = -ENOENT;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700559 goto done;
560 }
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700561 }
562 for (addr = validblockaddr; addr < validblockaddr + sz;
563 addr += sizeof(u16)) {
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800564 __le16 eeprom_data;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700565
566 ret = iwl_read_otp_word(priv, addr, &eeprom_data);
567 if (ret)
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700568 goto done;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700569 e[cache_addr / 2] = eeprom_data;
570 cache_addr += sizeof(u16);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700571 }
572 } else {
573 /* eeprom is an array of 16bit values */
574 for (addr = 0; addr < sz; addr += sizeof(u16)) {
575 u32 r;
576
577 _iwl_write32(priv, CSR_EEPROM_REG,
578 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
579
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700580 ret = iwl_poll_bit(priv, CSR_EEPROM_REG,
581 CSR_EEPROM_REG_READ_VALID_MSK,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700582 CSR_EEPROM_REG_READ_VALID_MSK,
583 IWL_EEPROM_ACCESS_TIMEOUT);
584 if (ret < 0) {
585 IWL_ERR(priv, "Time out reading EEPROM[%d]\n", addr);
586 goto done;
587 }
588 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800589 e[addr / 2] = cpu_to_le16(r >> 16);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700590 }
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800591 }
Johannes Bergd1358f62010-04-28 12:09:15 -0700592
593 IWL_DEBUG_INFO(priv, "NVM Type: %s, version: 0x%x\n",
594 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
595 ? "OTP" : "EEPROM",
596 iwl_eeprom_query16(priv, EEPROM_VERSION));
597
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800598 ret = 0;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800599done:
600 priv->cfg->ops->lib->eeprom_ops.release_semaphore(priv);
Johannes Bergd1358f62010-04-28 12:09:15 -0700601
Tomas Winkler073d3f52008-04-21 15:41:52 -0700602err:
603 if (ret)
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700604 iwl_eeprom_free(priv);
Reinette Chatref8701fe2009-12-10 14:37:22 -0800605 /* Reset chip to save power until we load uCode during "up". */
606 priv->cfg->ops->lib->apm_ops.stop(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700607alloc_err:
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800608 return ret;
609}
610EXPORT_SYMBOL(iwl_eeprom_init);
611
Tomas Winkler073d3f52008-04-21 15:41:52 -0700612void iwl_eeprom_free(struct iwl_priv *priv)
613{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300614 kfree(priv->eeprom);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700615 priv->eeprom = NULL;
616}
617EXPORT_SYMBOL(iwl_eeprom_free);
618
Tomas Winkler8614f362008-04-23 17:14:55 -0700619int iwl_eeprom_check_version(struct iwl_priv *priv)
620{
Tomas Winkler0ef2ca62008-10-23 23:48:51 -0700621 u16 eeprom_ver;
622 u16 calib_ver;
623
624 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
625 calib_ver = priv->cfg->ops->lib->eeprom_ops.calib_version(priv);
626
627 if (eeprom_ver < priv->cfg->eeprom_ver ||
628 calib_ver < priv->cfg->eeprom_calib_ver)
629 goto err;
630
631 return 0;
632err:
Reinette Chatre9906a072009-05-08 13:44:40 -0700633 IWL_ERR(priv, "Unsupported (too old) EEPROM VER=0x%x < 0x%x CALIB=0x%x < 0x%x\n",
Tomas Winkler0ef2ca62008-10-23 23:48:51 -0700634 eeprom_ver, priv->cfg->eeprom_ver,
635 calib_ver, priv->cfg->eeprom_calib_ver);
636 return -EINVAL;
637
Tomas Winkler8614f362008-04-23 17:14:55 -0700638}
639EXPORT_SYMBOL(iwl_eeprom_check_version);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700640
641const u8 *iwl_eeprom_query_addr(const struct iwl_priv *priv, size_t offset)
642{
643 return priv->cfg->ops->lib->eeprom_ops.query_addr(priv, offset);
644}
645EXPORT_SYMBOL(iwl_eeprom_query_addr);
646
647u16 iwl_eeprom_query16(const struct iwl_priv *priv, size_t offset)
648{
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700649 if (!priv->eeprom)
650 return 0;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700651 return (u16)priv->eeprom[offset] | ((u16)priv->eeprom[offset + 1] << 8);
652}
653EXPORT_SYMBOL(iwl_eeprom_query16);
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800654
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700655void iwl_eeprom_get_mac(const struct iwl_priv *priv, u8 *mac)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800656{
Tomas Winkler073d3f52008-04-21 15:41:52 -0700657 const u8 *addr = priv->cfg->ops->lib->eeprom_ops.query_addr(priv,
658 EEPROM_MAC_ADDRESS);
659 memcpy(mac, addr, ETH_ALEN);
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800660}
661EXPORT_SYMBOL(iwl_eeprom_get_mac);
662
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700663static void iwl_init_band_reference(const struct iwl_priv *priv,
Tomas Winkler073d3f52008-04-21 15:41:52 -0700664 int eep_band, int *eeprom_ch_count,
665 const struct iwl_eeprom_channel **eeprom_ch_info,
666 const u8 **eeprom_ch_index)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700667{
Tomas Winkler073d3f52008-04-21 15:41:52 -0700668 u32 offset = priv->cfg->ops->lib->
669 eeprom_ops.regulatory_bands[eep_band - 1];
670 switch (eep_band) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700671 case 1: /* 2.4GHz band */
672 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_1);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700673 *eeprom_ch_info = (struct iwl_eeprom_channel *)
674 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700675 *eeprom_ch_index = iwl_eeprom_band_1;
676 break;
677 case 2: /* 4.9GHz band */
678 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_2);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700679 *eeprom_ch_info = (struct iwl_eeprom_channel *)
680 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700681 *eeprom_ch_index = iwl_eeprom_band_2;
682 break;
683 case 3: /* 5.2GHz band */
684 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_3);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700685 *eeprom_ch_info = (struct iwl_eeprom_channel *)
686 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700687 *eeprom_ch_index = iwl_eeprom_band_3;
688 break;
689 case 4: /* 5.5GHz band */
690 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_4);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700691 *eeprom_ch_info = (struct iwl_eeprom_channel *)
692 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700693 *eeprom_ch_index = iwl_eeprom_band_4;
694 break;
695 case 5: /* 5.7GHz band */
696 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_5);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700697 *eeprom_ch_info = (struct iwl_eeprom_channel *)
698 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700699 *eeprom_ch_index = iwl_eeprom_band_5;
700 break;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700701 case 6: /* 2.4GHz ht40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700702 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_6);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700703 *eeprom_ch_info = (struct iwl_eeprom_channel *)
704 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700705 *eeprom_ch_index = iwl_eeprom_band_6;
706 break;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700707 case 7: /* 5 GHz ht40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700708 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_7);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700709 *eeprom_ch_info = (struct iwl_eeprom_channel *)
710 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700711 *eeprom_ch_index = iwl_eeprom_band_7;
712 break;
713 default:
714 BUG();
715 return;
716 }
717}
718
719#define CHECK_AND_PRINT(x) ((eeprom_ch->flags & EEPROM_CHANNEL_##x) \
720 ? # x " " : "")
721
722/**
Zhu Yi3b247162009-08-13 13:30:53 -0700723 * iwl_mod_ht40_chan_info - Copy ht40 channel info into driver's priv.
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700724 *
725 * Does not set up a command, or touch hardware.
726 */
Zhu Yi3b247162009-08-13 13:30:53 -0700727static int iwl_mod_ht40_chan_info(struct iwl_priv *priv,
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700728 enum ieee80211_band band, u16 channel,
Tomas Winkler073d3f52008-04-21 15:41:52 -0700729 const struct iwl_eeprom_channel *eeprom_ch,
Zhu Yi3b247162009-08-13 13:30:53 -0700730 u8 clear_ht40_extension_channel)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700731{
732 struct iwl_channel_info *ch_info;
733
734 ch_info = (struct iwl_channel_info *)
Assaf Krauss8622e702008-03-21 13:53:43 -0700735 iwl_get_channel_info(priv, band, channel);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700736
737 if (!is_channel_valid(ch_info))
738 return -1;
739
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700740 IWL_DEBUG_INFO(priv, "HT40 Ch. %d [%sGHz] %s%s%s%s%s(0x%02x %ddBm):"
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800741 " Ad-Hoc %ssupported\n",
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700742 ch_info->channel,
743 is_channel_a_band(ch_info) ?
744 "5.2" : "2.4",
745 CHECK_AND_PRINT(IBSS),
746 CHECK_AND_PRINT(ACTIVE),
747 CHECK_AND_PRINT(RADAR),
748 CHECK_AND_PRINT(WIDE),
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700749 CHECK_AND_PRINT(DFS),
750 eeprom_ch->flags,
751 eeprom_ch->max_power_avg,
752 ((eeprom_ch->flags & EEPROM_CHANNEL_IBSS)
753 && !(eeprom_ch->flags & EEPROM_CHANNEL_RADAR)) ?
754 "" : "not ");
755
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700756 ch_info->ht40_eeprom = *eeprom_ch;
757 ch_info->ht40_max_power_avg = eeprom_ch->max_power_avg;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700758 ch_info->ht40_flags = eeprom_ch->flags;
Reinette Chatre6c3069b2009-12-14 14:12:13 -0800759 if (eeprom_ch->flags & EEPROM_CHANNEL_VALID)
760 ch_info->ht40_extension_channel &= ~clear_ht40_extension_channel;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700761
762 return 0;
763}
764
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700765/**
766 * iwl_get_max_txpower_avg - get the highest tx power from all chains.
767 * find the highest tx power from all chains for the channel
768 */
769static s8 iwl_get_max_txpower_avg(struct iwl_priv *priv,
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800770 struct iwl_eeprom_enhanced_txpwr *enhanced_txpower,
771 int element, s8 *max_txpower_in_half_dbm)
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700772{
773 s8 max_txpower_avg = 0; /* (dBm) */
774
775 IWL_DEBUG_INFO(priv, "%d - "
776 "chain_a: %d dB chain_b: %d dB "
777 "chain_c: %d dB mimo2: %d dB mimo3: %d dB\n",
778 element,
779 enhanced_txpower[element].chain_a_max >> 1,
780 enhanced_txpower[element].chain_b_max >> 1,
781 enhanced_txpower[element].chain_c_max >> 1,
782 enhanced_txpower[element].mimo2_max >> 1,
783 enhanced_txpower[element].mimo3_max >> 1);
784 /* Take the highest tx power from any valid chains */
785 if ((priv->cfg->valid_tx_ant & ANT_A) &&
786 (enhanced_txpower[element].chain_a_max > max_txpower_avg))
787 max_txpower_avg = enhanced_txpower[element].chain_a_max;
788 if ((priv->cfg->valid_tx_ant & ANT_B) &&
789 (enhanced_txpower[element].chain_b_max > max_txpower_avg))
790 max_txpower_avg = enhanced_txpower[element].chain_b_max;
791 if ((priv->cfg->valid_tx_ant & ANT_C) &&
792 (enhanced_txpower[element].chain_c_max > max_txpower_avg))
793 max_txpower_avg = enhanced_txpower[element].chain_c_max;
794 if (((priv->cfg->valid_tx_ant == ANT_AB) |
795 (priv->cfg->valid_tx_ant == ANT_BC) |
796 (priv->cfg->valid_tx_ant == ANT_AC)) &&
797 (enhanced_txpower[element].mimo2_max > max_txpower_avg))
798 max_txpower_avg = enhanced_txpower[element].mimo2_max;
799 if ((priv->cfg->valid_tx_ant == ANT_ABC) &&
800 (enhanced_txpower[element].mimo3_max > max_txpower_avg))
801 max_txpower_avg = enhanced_txpower[element].mimo3_max;
802
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800803 /*
804 * max. tx power in EEPROM is in 1/2 dBm format
805 * convert from 1/2 dBm to dBm (round-up convert)
806 * but we also do not want to loss 1/2 dBm resolution which
807 * will impact performance
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700808 */
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800809 *max_txpower_in_half_dbm = max_txpower_avg;
810 return (max_txpower_avg & 0x01) + (max_txpower_avg >> 1);
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700811}
812
813/**
814 * iwl_update_common_txpower: update channel tx power
815 * update tx power per band based on EEPROM enhanced tx power info.
816 */
817static s8 iwl_update_common_txpower(struct iwl_priv *priv,
818 struct iwl_eeprom_enhanced_txpwr *enhanced_txpower,
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800819 int section, int element, s8 *max_txpower_in_half_dbm)
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700820{
821 struct iwl_channel_info *ch_info;
822 int ch;
823 bool is_ht40 = false;
824 s8 max_txpower_avg; /* (dBm) */
825
826 /* it is common section, contain all type (Legacy, HT and HT40)
827 * based on the element in the section to determine
828 * is it HT 40 or not
829 */
830 if (element == EEPROM_TXPOWER_COMMON_HT40_INDEX)
831 is_ht40 = true;
832 max_txpower_avg =
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800833 iwl_get_max_txpower_avg(priv, enhanced_txpower,
834 element, max_txpower_in_half_dbm);
835
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700836 ch_info = priv->channel_info;
837
838 for (ch = 0; ch < priv->channel_count; ch++) {
839 /* find matching band and update tx power if needed */
840 if ((ch_info->band == enhinfo[section].band) &&
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800841 (ch_info->max_power_avg < max_txpower_avg) &&
842 (!is_ht40)) {
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700843 /* Update regulatory-based run-time data */
844 ch_info->max_power_avg = ch_info->curr_txpow =
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800845 max_txpower_avg;
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700846 ch_info->scan_power = max_txpower_avg;
847 }
848 if ((ch_info->band == enhinfo[section].band) && is_ht40 &&
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700849 (ch_info->ht40_max_power_avg < max_txpower_avg)) {
850 /* Update regulatory-based run-time data */
851 ch_info->ht40_max_power_avg = max_txpower_avg;
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700852 }
853 ch_info++;
854 }
855 return max_txpower_avg;
856}
857
858/**
859 * iwl_update_channel_txpower: update channel tx power
860 * update channel tx power based on EEPROM enhanced tx power info.
861 */
862static s8 iwl_update_channel_txpower(struct iwl_priv *priv,
863 struct iwl_eeprom_enhanced_txpwr *enhanced_txpower,
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800864 int section, int element, s8 *max_txpower_in_half_dbm)
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700865{
866 struct iwl_channel_info *ch_info;
867 int ch;
868 u8 channel;
869 s8 max_txpower_avg; /* (dBm) */
870
871 channel = enhinfo[section].iwl_eeprom_section_channel[element];
872 max_txpower_avg =
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800873 iwl_get_max_txpower_avg(priv, enhanced_txpower,
874 element, max_txpower_in_half_dbm);
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700875
876 ch_info = priv->channel_info;
877 for (ch = 0; ch < priv->channel_count; ch++) {
878 /* find matching channel and update tx power if needed */
879 if (ch_info->channel == channel) {
880 if ((ch_info->max_power_avg < max_txpower_avg) &&
881 (!enhinfo[section].is_ht40)) {
882 /* Update regulatory-based run-time data */
883 ch_info->max_power_avg = max_txpower_avg;
884 ch_info->curr_txpow = max_txpower_avg;
885 ch_info->scan_power = max_txpower_avg;
886 }
887 if ((enhinfo[section].is_ht40) &&
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700888 (ch_info->ht40_max_power_avg < max_txpower_avg)) {
889 /* Update regulatory-based run-time data */
890 ch_info->ht40_max_power_avg = max_txpower_avg;
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700891 }
892 break;
893 }
894 ch_info++;
895 }
896 return max_txpower_avg;
897}
898
899/**
900 * iwlcore_eeprom_enhanced_txpower: process enhanced tx power info
901 */
902void iwlcore_eeprom_enhanced_txpower(struct iwl_priv *priv)
903{
904 int eeprom_section_count = 0;
905 int section, element;
906 struct iwl_eeprom_enhanced_txpwr *enhanced_txpower;
907 u32 offset;
908 s8 max_txpower_avg; /* (dBm) */
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800909 s8 max_txpower_in_half_dbm; /* (half-dBm) */
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700910
911 /* Loop through all the sections
912 * adjust bands and channel's max tx power
913 * Set the tx_power_user_lmt to the highest power
914 * supported by any channels and chains
915 */
916 for (section = 0; section < ARRAY_SIZE(enhinfo); section++) {
917 eeprom_section_count = enhinfo[section].count;
918 offset = enhinfo[section].offset;
919 enhanced_txpower = (struct iwl_eeprom_enhanced_txpwr *)
920 iwl_eeprom_query_addr(priv, offset);
921
Wey-Yi Guy85f0d9e2009-11-13 11:56:23 -0800922 /*
923 * check for valid entry -
924 * different version of EEPROM might contain different set
925 * of enhanced tx power table
926 * always check for valid entry before process
927 * the information
928 */
929 if (!enhanced_txpower->common || enhanced_txpower->reserved)
930 continue;
931
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700932 for (element = 0; element < eeprom_section_count; element++) {
933 if (enhinfo[section].is_common)
934 max_txpower_avg =
935 iwl_update_common_txpower(priv,
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800936 enhanced_txpower, section,
937 element,
938 &max_txpower_in_half_dbm);
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700939 else
940 max_txpower_avg =
941 iwl_update_channel_txpower(priv,
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800942 enhanced_txpower, section,
943 element,
944 &max_txpower_in_half_dbm);
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700945
946 /* Update the tx_power_user_lmt to the highest power
947 * supported by any channel */
948 if (max_txpower_avg > priv->tx_power_user_lmt)
949 priv->tx_power_user_lmt = max_txpower_avg;
Wey-Yi Guyae16fc32009-11-13 11:56:30 -0800950
951 /*
952 * Update the tx_power_lmt_in_half_dbm to
953 * the highest power supported by any channel
954 */
955 if (max_txpower_in_half_dbm >
956 priv->tx_power_lmt_in_half_dbm)
957 priv->tx_power_lmt_in_half_dbm =
958 max_txpower_in_half_dbm;
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700959 }
960 }
961}
962EXPORT_SYMBOL(iwlcore_eeprom_enhanced_txpower);
963
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700964#define CHECK_AND_PRINT_I(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
965 ? # x " " : "")
966
967/**
968 * iwl_init_channel_map - Set up driver's info for all possible channels
969 */
970int iwl_init_channel_map(struct iwl_priv *priv)
971{
972 int eeprom_ch_count = 0;
973 const u8 *eeprom_ch_index = NULL;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700974 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700975 int band, ch;
976 struct iwl_channel_info *ch_info;
977
978 if (priv->channel_count) {
Tomas Winklere1623442009-01-27 14:27:56 -0800979 IWL_DEBUG_INFO(priv, "Channel map already initialized.\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700980 return 0;
981 }
982
Tomas Winklere1623442009-01-27 14:27:56 -0800983 IWL_DEBUG_INFO(priv, "Initializing regulatory info from EEPROM\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700984
985 priv->channel_count =
986 ARRAY_SIZE(iwl_eeprom_band_1) +
987 ARRAY_SIZE(iwl_eeprom_band_2) +
988 ARRAY_SIZE(iwl_eeprom_band_3) +
989 ARRAY_SIZE(iwl_eeprom_band_4) +
990 ARRAY_SIZE(iwl_eeprom_band_5);
991
Tomas Winklere1623442009-01-27 14:27:56 -0800992 IWL_DEBUG_INFO(priv, "Parsing data for %d channels.\n", priv->channel_count);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700993
994 priv->channel_info = kzalloc(sizeof(struct iwl_channel_info) *
995 priv->channel_count, GFP_KERNEL);
996 if (!priv->channel_info) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800997 IWL_ERR(priv, "Could not allocate channel_info\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700998 priv->channel_count = 0;
999 return -ENOMEM;
1000 }
1001
1002 ch_info = priv->channel_info;
1003
1004 /* Loop through the 5 EEPROM bands adding them in order to the
1005 * channel map we maintain (that contains additional information than
1006 * what just in the EEPROM) */
1007 for (band = 1; band <= 5; band++) {
1008
1009 iwl_init_band_reference(priv, band, &eeprom_ch_count,
1010 &eeprom_ch_info, &eeprom_ch_index);
1011
1012 /* Loop through each band adding each of the channels */
1013 for (ch = 0; ch < eeprom_ch_count; ch++) {
1014 ch_info->channel = eeprom_ch_index[ch];
1015 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
1016 IEEE80211_BAND_5GHZ;
1017
1018 /* permanently store EEPROM's channel regulatory flags
1019 * and max power in channel info database. */
1020 ch_info->eeprom = eeprom_ch_info[ch];
1021
1022 /* Copy the run-time flags so they are there even on
1023 * invalid channels */
1024 ch_info->flags = eeprom_ch_info[ch].flags;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001025 /* First write that ht40 is not enabled, and then enable
Emmanuel Grumbach963f5512008-06-12 09:47:00 +08001026 * one by one */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001027 ch_info->ht40_extension_channel =
Zhu Yi3b247162009-08-13 13:30:53 -07001028 IEEE80211_CHAN_NO_HT40;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001029
1030 if (!(is_channel_valid(ch_info))) {
Tomas Winklere1623442009-01-27 14:27:56 -08001031 IWL_DEBUG_INFO(priv, "Ch. %d Flags %x [%sGHz] - "
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001032 "No traffic\n",
1033 ch_info->channel,
1034 ch_info->flags,
1035 is_channel_a_band(ch_info) ?
1036 "5.2" : "2.4");
1037 ch_info++;
1038 continue;
1039 }
1040
1041 /* Initialize regulatory-based run-time data */
1042 ch_info->max_power_avg = ch_info->curr_txpow =
1043 eeprom_ch_info[ch].max_power_avg;
1044 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
1045 ch_info->min_power = 0;
1046
Tomas Winklere1623442009-01-27 14:27:56 -08001047 IWL_DEBUG_INFO(priv, "Ch. %d [%sGHz] %s%s%s%s%s%s(0x%02x %ddBm):"
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001048 " Ad-Hoc %ssupported\n",
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001049 ch_info->channel,
1050 is_channel_a_band(ch_info) ?
1051 "5.2" : "2.4",
1052 CHECK_AND_PRINT_I(VALID),
1053 CHECK_AND_PRINT_I(IBSS),
1054 CHECK_AND_PRINT_I(ACTIVE),
1055 CHECK_AND_PRINT_I(RADAR),
1056 CHECK_AND_PRINT_I(WIDE),
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001057 CHECK_AND_PRINT_I(DFS),
1058 eeprom_ch_info[ch].flags,
1059 eeprom_ch_info[ch].max_power_avg,
1060 ((eeprom_ch_info[ch].
1061 flags & EEPROM_CHANNEL_IBSS)
1062 && !(eeprom_ch_info[ch].
1063 flags & EEPROM_CHANNEL_RADAR))
1064 ? "" : "not ");
1065
Winkler, Tomas62ea9c52009-01-19 15:30:29 -08001066 /* Set the tx_power_user_lmt to the highest power
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001067 * supported by any channel */
1068 if (eeprom_ch_info[ch].max_power_avg >
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001069 priv->tx_power_user_lmt)
1070 priv->tx_power_user_lmt =
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001071 eeprom_ch_info[ch].max_power_avg;
1072
1073 ch_info++;
1074 }
1075 }
1076
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001077 /* Check if we do have HT40 channels */
Reinette Chatrea89d03c2009-02-10 15:19:04 -08001078 if (priv->cfg->ops->lib->eeprom_ops.regulatory_bands[5] ==
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001079 EEPROM_REGULATORY_BAND_NO_HT40 &&
Reinette Chatrea89d03c2009-02-10 15:19:04 -08001080 priv->cfg->ops->lib->eeprom_ops.regulatory_bands[6] ==
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001081 EEPROM_REGULATORY_BAND_NO_HT40)
Samuel Ortize6148912009-01-23 13:45:15 -08001082 return 0;
1083
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001084 /* Two additional EEPROM bands for 2.4 and 5 GHz HT40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001085 for (band = 6; band <= 7; band++) {
1086 enum ieee80211_band ieeeband;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001087
1088 iwl_init_band_reference(priv, band, &eeprom_ch_count,
1089 &eeprom_ch_info, &eeprom_ch_index);
1090
1091 /* EEPROM band 6 is 2.4, band 7 is 5 GHz */
1092 ieeeband =
1093 (band == 6) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
1094
1095 /* Loop through each band adding each of the channels */
1096 for (ch = 0; ch < eeprom_ch_count; ch++) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001097 /* Set up driver's info for lower half */
Zhu Yi3b247162009-08-13 13:30:53 -07001098 iwl_mod_ht40_chan_info(priv, ieeeband,
Tomas Winklerda6833c2008-05-15 13:54:15 +08001099 eeprom_ch_index[ch],
Zhu Yi3b247162009-08-13 13:30:53 -07001100 &eeprom_ch_info[ch],
1101 IEEE80211_CHAN_NO_HT40PLUS);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001102
1103 /* Set up driver's info for upper half */
Zhu Yi3b247162009-08-13 13:30:53 -07001104 iwl_mod_ht40_chan_info(priv, ieeeband,
1105 eeprom_ch_index[ch] + 4,
1106 &eeprom_ch_info[ch],
1107 IEEE80211_CHAN_NO_HT40MINUS);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001108 }
1109 }
1110
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -07001111 /* for newer device (6000 series and up)
1112 * EEPROM contain enhanced tx power information
1113 * driver need to process addition information
1114 * to determine the max channel tx power limits
1115 */
1116 if (priv->cfg->ops->lib->eeprom_ops.update_enhanced_txpower)
1117 priv->cfg->ops->lib->eeprom_ops.update_enhanced_txpower(priv);
1118
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001119 return 0;
1120}
1121EXPORT_SYMBOL(iwl_init_channel_map);
1122
1123/*
Tomas Winklerda6833c2008-05-15 13:54:15 +08001124 * iwl_free_channel_map - undo allocations in iwl_init_channel_map
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001125 */
1126void iwl_free_channel_map(struct iwl_priv *priv)
1127{
1128 kfree(priv->channel_info);
1129 priv->channel_count = 0;
1130}
Samuel Ortize6148912009-01-23 13:45:15 -08001131EXPORT_SYMBOL(iwl_free_channel_map);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001132
1133/**
1134 * iwl_get_channel_info - Find driver's private channel info
1135 *
1136 * Based on band and channel number.
1137 */
Tomas Winkler82a66bb2008-05-29 16:35:28 +08001138const struct iwl_channel_info *iwl_get_channel_info(const struct iwl_priv *priv,
1139 enum ieee80211_band band, u16 channel)
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001140{
1141 int i;
1142
1143 switch (band) {
1144 case IEEE80211_BAND_5GHZ:
1145 for (i = 14; i < priv->channel_count; i++) {
1146 if (priv->channel_info[i].channel == channel)
1147 return &priv->channel_info[i];
1148 }
1149 break;
1150 case IEEE80211_BAND_2GHZ:
1151 if (channel >= 1 && channel <= 14)
1152 return &priv->channel_info[channel - 1];
1153 break;
1154 default:
1155 BUG();
1156 }
1157
1158 return NULL;
1159}
Assaf Krauss8622e702008-03-21 13:53:43 -07001160EXPORT_SYMBOL(iwl_get_channel_info);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001161