blob: 833194a2c6397dab4a7c41b78cbada46a1622d87 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090066#include <linux/slab.h>
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080067#include <linux/init.h>
68
69#include <net/mac80211.h>
70
Tomas Winkler5a36ba02008-04-24 11:55:37 -070071#include "iwl-commands.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070072#include "iwl-dev.h"
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080073#include "iwl-core.h"
Tomas Winkler0a6857e2008-03-12 16:58:49 -070074#include "iwl-debug.h"
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080075#include "iwl-eeprom.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070076#include "iwl-io.h"
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080077
Assaf Kraussbf85ea42008-03-14 10:38:49 -070078/************************** EEPROM BANDS ****************************
79 *
80 * The iwl_eeprom_band definitions below provide the mapping from the
81 * EEPROM contents to the specific channel number supported for each
82 * band.
83 *
84 * For example, iwl_priv->eeprom.band_3_channels[4] from the band_3
85 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
86 * The specific geography and calibration information for that channel
87 * is contained in the eeprom map itself.
88 *
89 * During init, we copy the eeprom information and channel map
90 * information into priv->channel_info_24/52 and priv->channel_map_24/52
91 *
92 * channel_map_24/52 provides the index in the channel_info array for a
93 * given channel. We have to have two separate maps as there is channel
94 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
95 * band_2
96 *
97 * A value of 0xff stored in the channel_map indicates that the channel
98 * is not supported by the hardware at all.
99 *
100 * A value of 0xfe in the channel_map indicates that the channel is not
101 * valid for Tx with the current hardware. This means that
102 * while the system can tune and receive on a given channel, it may not
103 * be able to associate or transmit any frames on that
104 * channel. There is no corresponding channel information for that
105 * entry.
106 *
107 *********************************************************************/
108
109/* 2.4 GHz */
110const u8 iwl_eeprom_band_1[14] = {
111 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
112};
113
114/* 5.2 GHz bands */
115static const u8 iwl_eeprom_band_2[] = { /* 4915-5080MHz */
116 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
117};
118
119static const u8 iwl_eeprom_band_3[] = { /* 5170-5320MHz */
120 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
121};
122
123static const u8 iwl_eeprom_band_4[] = { /* 5500-5700MHz */
124 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
125};
126
127static const u8 iwl_eeprom_band_5[] = { /* 5725-5825MHz */
128 145, 149, 153, 157, 161, 165
129};
130
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700131static const u8 iwl_eeprom_band_6[] = { /* 2.4 ht40 channel */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700132 1, 2, 3, 4, 5, 6, 7
133};
134
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700135static const u8 iwl_eeprom_band_7[] = { /* 5.2 ht40 channel */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700136 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157
137};
138
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800139/******************************************************************************
140 *
141 * EEPROM related functions
142 *
143******************************************************************************/
144
Johannes Bergd3f5ba92010-09-22 18:02:00 +0200145static int iwl_eeprom_verify_signature(struct iwl_priv *priv)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800146{
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700147 u32 gp = iwl_read32(priv, CSR_EEPROM_GP) & CSR_EEPROM_GP_VALID_MSK;
148 int ret = 0;
149
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800150 IWL_DEBUG_EEPROM(priv, "EEPROM signature=0x%08x\n", gp);
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700151 switch (gp) {
152 case CSR_EEPROM_GP_BAD_SIG_EEP_GOOD_SIG_OTP:
153 if (priv->nvm_device_type != NVM_DEVICE_TYPE_OTP) {
154 IWL_ERR(priv, "EEPROM with bad signature: 0x%08x\n",
155 gp);
156 ret = -ENOENT;
157 }
158 break;
159 case CSR_EEPROM_GP_GOOD_SIG_EEP_LESS_THAN_4K:
160 case CSR_EEPROM_GP_GOOD_SIG_EEP_MORE_THAN_4K:
161 if (priv->nvm_device_type != NVM_DEVICE_TYPE_EEPROM) {
162 IWL_ERR(priv, "OTP with bad signature: 0x%08x\n", gp);
163 ret = -ENOENT;
164 }
165 break;
166 case CSR_EEPROM_GP_BAD_SIGNATURE_BOTH_EEP_AND_OTP:
167 default:
168 IWL_ERR(priv, "bad EEPROM/OTP signature, type=%s, "
169 "EEPROM_GP=0x%08x\n",
170 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
171 ? "OTP" : "EEPROM", gp);
172 ret = -ENOENT;
173 break;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800174 }
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700175 return ret;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800176}
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800177
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700178static void iwl_set_otp_access(struct iwl_priv *priv, enum iwl_access_mode mode)
179{
180 u32 otpgp;
181
182 otpgp = iwl_read32(priv, CSR_OTP_GP_REG);
183 if (mode == IWL_OTP_ACCESS_ABSOLUTE)
184 iwl_clear_bit(priv, CSR_OTP_GP_REG,
185 CSR_OTP_GP_REG_OTP_ACCESS_MODE);
186 else
187 iwl_set_bit(priv, CSR_OTP_GP_REG,
188 CSR_OTP_GP_REG_OTP_ACCESS_MODE);
189}
190
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700191static int iwlcore_get_nvm_type(struct iwl_priv *priv)
192{
193 u32 otpgp;
194 int nvm_type;
195
196 /* OTP only valid for CP/PP and after */
197 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
Wey-Yi Guyb23a0522009-07-17 09:30:21 -0700198 case CSR_HW_REV_TYPE_NONE:
199 IWL_ERR(priv, "Unknown hardware type\n");
200 return -ENOENT;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700201 case CSR_HW_REV_TYPE_3945:
202 case CSR_HW_REV_TYPE_4965:
203 case CSR_HW_REV_TYPE_5300:
204 case CSR_HW_REV_TYPE_5350:
205 case CSR_HW_REV_TYPE_5100:
206 case CSR_HW_REV_TYPE_5150:
207 nvm_type = NVM_DEVICE_TYPE_EEPROM;
208 break;
209 default:
210 otpgp = iwl_read32(priv, CSR_OTP_GP_REG);
211 if (otpgp & CSR_OTP_GP_REG_DEVICE_SELECT)
212 nvm_type = NVM_DEVICE_TYPE_OTP;
213 else
214 nvm_type = NVM_DEVICE_TYPE_EEPROM;
215 break;
216 }
217 return nvm_type;
218}
219
Tomas Winkler073d3f52008-04-21 15:41:52 -0700220const u8 *iwlcore_eeprom_query_addr(const struct iwl_priv *priv, size_t offset)
221{
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700222 BUG_ON(offset >= priv->cfg->base_params->eeprom_size);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700223 return &priv->eeprom[offset];
224}
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800225
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700226static int iwl_init_otp_access(struct iwl_priv *priv)
227{
228 int ret;
229
230 /* Enable 40MHz radio clock */
231 _iwl_write32(priv, CSR_GP_CNTRL,
232 _iwl_read32(priv, CSR_GP_CNTRL) |
233 CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
234
235 /* wait for clock to be ready */
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700236 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
237 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700238 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
239 25000);
240 if (ret < 0)
241 IWL_ERR(priv, "Time out access OTP\n");
242 else {
Reinette Chatred77b0342009-05-22 14:37:55 -0700243 iwl_set_bits_prph(priv, APMG_PS_CTRL_REG,
244 APMG_PS_CTRL_VAL_RESET_REQ);
245 udelay(5);
246 iwl_clear_bits_prph(priv, APMG_PS_CTRL_REG,
247 APMG_PS_CTRL_VAL_RESET_REQ);
Wey-Yi Guy32004ee2009-10-16 14:25:56 -0700248
249 /*
250 * CSR auto clock gate disable bit -
251 * this is only applicable for HW with OTP shadow RAM
252 */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700253 if (priv->cfg->base_params->shadow_ram_support)
Wey-Yi Guy32004ee2009-10-16 14:25:56 -0700254 iwl_set_bit(priv, CSR_DBG_LINK_PWR_MGMT_REG,
255 CSR_RESET_LINK_PWR_MGMT_DISABLED);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700256 }
257 return ret;
258}
259
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800260static int iwl_read_otp_word(struct iwl_priv *priv, u16 addr, __le16 *eeprom_data)
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700261{
262 int ret = 0;
263 u32 r;
264 u32 otpgp;
265
266 _iwl_write32(priv, CSR_EEPROM_REG,
267 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700268 ret = iwl_poll_bit(priv, CSR_EEPROM_REG,
269 CSR_EEPROM_REG_READ_VALID_MSK,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700270 CSR_EEPROM_REG_READ_VALID_MSK,
271 IWL_EEPROM_ACCESS_TIMEOUT);
272 if (ret < 0) {
273 IWL_ERR(priv, "Time out reading OTP[%d]\n", addr);
274 return ret;
275 }
276 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
277 /* check for ECC errors: */
278 otpgp = iwl_read32(priv, CSR_OTP_GP_REG);
279 if (otpgp & CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK) {
280 /* stop in this case */
281 /* set the uncorrectable OTP ECC bit for acknowledgement */
282 iwl_set_bit(priv, CSR_OTP_GP_REG,
283 CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK);
284 IWL_ERR(priv, "Uncorrectable OTP ECC error, abort OTP read\n");
285 return -EINVAL;
286 }
287 if (otpgp & CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK) {
288 /* continue in this case */
289 /* set the correctable OTP ECC bit for acknowledgement */
290 iwl_set_bit(priv, CSR_OTP_GP_REG,
291 CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK);
292 IWL_ERR(priv, "Correctable OTP ECC error, continue read\n");
293 }
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800294 *eeprom_data = cpu_to_le16(r >> 16);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700295 return 0;
296}
297
298/*
299 * iwl_is_otp_empty: check for empty OTP
300 */
301static bool iwl_is_otp_empty(struct iwl_priv *priv)
302{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800303 u16 next_link_addr = 0;
304 __le16 link_value;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700305 bool is_empty = false;
306
307 /* locate the beginning of OTP link list */
308 if (!iwl_read_otp_word(priv, next_link_addr, &link_value)) {
309 if (!link_value) {
310 IWL_ERR(priv, "OTP is empty\n");
311 is_empty = true;
312 }
313 } else {
314 IWL_ERR(priv, "Unable to read first block of OTP list.\n");
315 is_empty = true;
316 }
317
318 return is_empty;
319}
320
321
322/*
323 * iwl_find_otp_image: find EEPROM image in OTP
324 * finding the OTP block that contains the EEPROM image.
325 * the last valid block on the link list (the block _before_ the last block)
326 * is the block we should read and used to configure the device.
327 * If all the available OTP blocks are full, the last block will be the block
328 * we should read and used to configure the device.
329 * only perform this operation if shadow RAM is disabled
330 */
331static int iwl_find_otp_image(struct iwl_priv *priv,
332 u16 *validblockaddr)
333{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800334 u16 next_link_addr = 0, valid_addr;
335 __le16 link_value = 0;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700336 int usedblocks = 0;
337
338 /* set addressing mode to absolute to traverse the link list */
339 iwl_set_otp_access(priv, IWL_OTP_ACCESS_ABSOLUTE);
340
341 /* checking for empty OTP or error */
342 if (iwl_is_otp_empty(priv))
343 return -EINVAL;
344
345 /*
346 * start traverse link list
347 * until reach the max number of OTP blocks
348 * different devices have different number of OTP blocks
349 */
350 do {
351 /* save current valid block address
352 * check for more block on the link list
353 */
354 valid_addr = next_link_addr;
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800355 next_link_addr = le16_to_cpu(link_value) * sizeof(u16);
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800356 IWL_DEBUG_EEPROM(priv, "OTP blocks %d addr 0x%x\n",
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700357 usedblocks, next_link_addr);
358 if (iwl_read_otp_word(priv, next_link_addr, &link_value))
359 return -EINVAL;
360 if (!link_value) {
361 /*
Jay Sternberg2facba72009-10-02 13:43:55 -0700362 * reach the end of link list, return success and
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700363 * set address point to the starting address
364 * of the image
365 */
Jay Sternberg2facba72009-10-02 13:43:55 -0700366 *validblockaddr = valid_addr;
367 /* skip first 2 bytes (link list pointer) */
368 *validblockaddr += 2;
369 return 0;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700370 }
371 /* more in the link list, continue */
372 usedblocks++;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700373 } while (usedblocks <= priv->cfg->base_params->max_ll_items);
Jay Sternberg2facba72009-10-02 13:43:55 -0700374
375 /* OTP has no valid blocks */
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800376 IWL_DEBUG_EEPROM(priv, "OTP has no valid blocks\n");
Jay Sternberg2facba72009-10-02 13:43:55 -0700377 return -EINVAL;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700378}
379
Wey-Yi Guy3be63ff2010-10-08 16:05:19 -0700380const u8 *iwl_eeprom_query_addr(const struct iwl_priv *priv, size_t offset)
381{
382 return priv->cfg->ops->lib->eeprom_ops.query_addr(priv, offset);
383}
Wey-Yi Guy3be63ff2010-10-08 16:05:19 -0700384
385u16 iwl_eeprom_query16(const struct iwl_priv *priv, size_t offset)
386{
387 if (!priv->eeprom)
388 return 0;
389 return (u16)priv->eeprom[offset] | ((u16)priv->eeprom[offset + 1] << 8);
390}
Wey-Yi Guy3be63ff2010-10-08 16:05:19 -0700391
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800392/**
393 * iwl_eeprom_init - read EEPROM contents
394 *
395 * Load the EEPROM contents from adapter into priv->eeprom
396 *
397 * NOTE: This routine uses the non-debug IO access functions.
398 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700399int iwl_eeprom_init(struct iwl_priv *priv)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800400{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800401 __le16 *e;
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700402 u32 gp = iwl_read32(priv, CSR_EEPROM_GP);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700403 int sz;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800404 int ret;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800405 u16 addr;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700406 u16 validblockaddr = 0;
407 u16 cache_addr = 0;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700408
409 priv->nvm_device_type = iwlcore_get_nvm_type(priv);
Wey-Yi Guyb23a0522009-07-17 09:30:21 -0700410 if (priv->nvm_device_type == -ENOENT)
411 return -ENOENT;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700412 /* allocate eeprom */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700413 sz = priv->cfg->base_params->eeprom_size;
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800414 IWL_DEBUG_EEPROM(priv, "NVM size = %d\n", sz);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700415 priv->eeprom = kzalloc(sz, GFP_KERNEL);
416 if (!priv->eeprom) {
417 ret = -ENOMEM;
418 goto alloc_err;
419 }
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800420 e = (__le16 *)priv->eeprom;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800421
Reinette Chatref8701fe2009-12-10 14:37:22 -0800422 priv->cfg->ops->lib->apm_ops.init(priv);
Reinette Chatree43ab942009-11-13 11:56:32 -0800423
Johannes Bergd3f5ba92010-09-22 18:02:00 +0200424 ret = iwl_eeprom_verify_signature(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700425 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800426 IWL_ERR(priv, "EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700427 ret = -ENOENT;
428 goto err;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800429 }
430
431 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
432 ret = priv->cfg->ops->lib->eeprom_ops.acquire_semaphore(priv);
433 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800434 IWL_ERR(priv, "Failed to acquire EEPROM semaphore.\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -0700435 ret = -ENOENT;
436 goto err;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800437 }
Ben Cahill88521362009-10-30 14:36:06 -0700438
Reinette Chatree43ab942009-11-13 11:56:32 -0800439 if (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP) {
Ben Cahill88521362009-10-30 14:36:06 -0700440
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700441 ret = iwl_init_otp_access(priv);
442 if (ret) {
443 IWL_ERR(priv, "Failed to initialize OTP access.\n");
444 ret = -ENOENT;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700445 goto done;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800446 }
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700447 _iwl_write32(priv, CSR_EEPROM_GP,
448 iwl_read32(priv, CSR_EEPROM_GP) &
449 ~CSR_EEPROM_GP_IF_OWNER_MSK);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700450
451 iwl_set_bit(priv, CSR_OTP_GP_REG,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700452 CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK |
453 CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700454 /* traversing the linked list if no shadow ram supported */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700455 if (!priv->cfg->base_params->shadow_ram_support) {
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700456 if (iwl_find_otp_image(priv, &validblockaddr)) {
457 ret = -ENOENT;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700458 goto done;
459 }
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700460 }
461 for (addr = validblockaddr; addr < validblockaddr + sz;
462 addr += sizeof(u16)) {
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800463 __le16 eeprom_data;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700464
465 ret = iwl_read_otp_word(priv, addr, &eeprom_data);
466 if (ret)
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700467 goto done;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700468 e[cache_addr / 2] = eeprom_data;
469 cache_addr += sizeof(u16);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700470 }
471 } else {
472 /* eeprom is an array of 16bit values */
473 for (addr = 0; addr < sz; addr += sizeof(u16)) {
474 u32 r;
475
476 _iwl_write32(priv, CSR_EEPROM_REG,
477 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
478
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700479 ret = iwl_poll_bit(priv, CSR_EEPROM_REG,
480 CSR_EEPROM_REG_READ_VALID_MSK,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700481 CSR_EEPROM_REG_READ_VALID_MSK,
482 IWL_EEPROM_ACCESS_TIMEOUT);
483 if (ret < 0) {
484 IWL_ERR(priv, "Time out reading EEPROM[%d]\n", addr);
485 goto done;
486 }
487 r = _iwl_read_direct32(priv, CSR_EEPROM_REG);
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800488 e[addr / 2] = cpu_to_le16(r >> 16);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700489 }
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800490 }
Johannes Bergd1358f62010-04-28 12:09:15 -0700491
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800492 IWL_DEBUG_EEPROM(priv, "NVM Type: %s, version: 0x%x\n",
Johannes Bergd1358f62010-04-28 12:09:15 -0700493 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
494 ? "OTP" : "EEPROM",
495 iwl_eeprom_query16(priv, EEPROM_VERSION));
496
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800497 ret = 0;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800498done:
499 priv->cfg->ops->lib->eeprom_ops.release_semaphore(priv);
Johannes Bergd1358f62010-04-28 12:09:15 -0700500
Tomas Winkler073d3f52008-04-21 15:41:52 -0700501err:
502 if (ret)
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700503 iwl_eeprom_free(priv);
Reinette Chatref8701fe2009-12-10 14:37:22 -0800504 /* Reset chip to save power until we load uCode during "up". */
Johannes Berg14e8e4a2010-09-22 18:02:10 +0200505 iwl_apm_stop(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700506alloc_err:
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800507 return ret;
508}
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800509
Tomas Winkler073d3f52008-04-21 15:41:52 -0700510void iwl_eeprom_free(struct iwl_priv *priv)
511{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300512 kfree(priv->eeprom);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700513 priv->eeprom = NULL;
514}
Tomas Winkler073d3f52008-04-21 15:41:52 -0700515
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700516static void iwl_init_band_reference(const struct iwl_priv *priv,
Tomas Winkler073d3f52008-04-21 15:41:52 -0700517 int eep_band, int *eeprom_ch_count,
518 const struct iwl_eeprom_channel **eeprom_ch_info,
519 const u8 **eeprom_ch_index)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700520{
Tomas Winkler073d3f52008-04-21 15:41:52 -0700521 u32 offset = priv->cfg->ops->lib->
522 eeprom_ops.regulatory_bands[eep_band - 1];
523 switch (eep_band) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700524 case 1: /* 2.4GHz band */
525 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_1);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700526 *eeprom_ch_info = (struct iwl_eeprom_channel *)
527 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700528 *eeprom_ch_index = iwl_eeprom_band_1;
529 break;
530 case 2: /* 4.9GHz band */
531 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_2);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700532 *eeprom_ch_info = (struct iwl_eeprom_channel *)
533 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700534 *eeprom_ch_index = iwl_eeprom_band_2;
535 break;
536 case 3: /* 5.2GHz band */
537 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_3);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700538 *eeprom_ch_info = (struct iwl_eeprom_channel *)
539 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700540 *eeprom_ch_index = iwl_eeprom_band_3;
541 break;
542 case 4: /* 5.5GHz band */
543 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_4);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700544 *eeprom_ch_info = (struct iwl_eeprom_channel *)
545 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700546 *eeprom_ch_index = iwl_eeprom_band_4;
547 break;
548 case 5: /* 5.7GHz band */
549 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_5);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700550 *eeprom_ch_info = (struct iwl_eeprom_channel *)
551 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700552 *eeprom_ch_index = iwl_eeprom_band_5;
553 break;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700554 case 6: /* 2.4GHz ht40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700555 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_6);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700556 *eeprom_ch_info = (struct iwl_eeprom_channel *)
557 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700558 *eeprom_ch_index = iwl_eeprom_band_6;
559 break;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700560 case 7: /* 5 GHz ht40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700561 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_7);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700562 *eeprom_ch_info = (struct iwl_eeprom_channel *)
563 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700564 *eeprom_ch_index = iwl_eeprom_band_7;
565 break;
566 default:
567 BUG();
568 return;
569 }
570}
571
572#define CHECK_AND_PRINT(x) ((eeprom_ch->flags & EEPROM_CHANNEL_##x) \
573 ? # x " " : "")
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700574/**
Zhu Yi3b247162009-08-13 13:30:53 -0700575 * iwl_mod_ht40_chan_info - Copy ht40 channel info into driver's priv.
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700576 *
577 * Does not set up a command, or touch hardware.
578 */
Zhu Yi3b247162009-08-13 13:30:53 -0700579static int iwl_mod_ht40_chan_info(struct iwl_priv *priv,
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700580 enum ieee80211_band band, u16 channel,
Tomas Winkler073d3f52008-04-21 15:41:52 -0700581 const struct iwl_eeprom_channel *eeprom_ch,
Zhu Yi3b247162009-08-13 13:30:53 -0700582 u8 clear_ht40_extension_channel)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700583{
584 struct iwl_channel_info *ch_info;
585
586 ch_info = (struct iwl_channel_info *)
Assaf Krauss8622e702008-03-21 13:53:43 -0700587 iwl_get_channel_info(priv, band, channel);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700588
589 if (!is_channel_valid(ch_info))
590 return -1;
591
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800592 IWL_DEBUG_EEPROM(priv, "HT40 Ch. %d [%sGHz] %s%s%s%s%s(0x%02x %ddBm):"
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800593 " Ad-Hoc %ssupported\n",
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700594 ch_info->channel,
595 is_channel_a_band(ch_info) ?
596 "5.2" : "2.4",
597 CHECK_AND_PRINT(IBSS),
598 CHECK_AND_PRINT(ACTIVE),
599 CHECK_AND_PRINT(RADAR),
600 CHECK_AND_PRINT(WIDE),
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700601 CHECK_AND_PRINT(DFS),
602 eeprom_ch->flags,
603 eeprom_ch->max_power_avg,
604 ((eeprom_ch->flags & EEPROM_CHANNEL_IBSS)
605 && !(eeprom_ch->flags & EEPROM_CHANNEL_RADAR)) ?
606 "" : "not ");
607
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700608 ch_info->ht40_eeprom = *eeprom_ch;
609 ch_info->ht40_max_power_avg = eeprom_ch->max_power_avg;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700610 ch_info->ht40_flags = eeprom_ch->flags;
Reinette Chatre6c3069b2009-12-14 14:12:13 -0800611 if (eeprom_ch->flags & EEPROM_CHANNEL_VALID)
612 ch_info->ht40_extension_channel &= ~clear_ht40_extension_channel;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700613
614 return 0;
615}
616
617#define CHECK_AND_PRINT_I(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
618 ? # x " " : "")
619
620/**
621 * iwl_init_channel_map - Set up driver's info for all possible channels
622 */
623int iwl_init_channel_map(struct iwl_priv *priv)
624{
625 int eeprom_ch_count = 0;
626 const u8 *eeprom_ch_index = NULL;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700627 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700628 int band, ch;
629 struct iwl_channel_info *ch_info;
630
631 if (priv->channel_count) {
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800632 IWL_DEBUG_EEPROM(priv, "Channel map already initialized.\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700633 return 0;
634 }
635
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800636 IWL_DEBUG_EEPROM(priv, "Initializing regulatory info from EEPROM\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700637
638 priv->channel_count =
639 ARRAY_SIZE(iwl_eeprom_band_1) +
640 ARRAY_SIZE(iwl_eeprom_band_2) +
641 ARRAY_SIZE(iwl_eeprom_band_3) +
642 ARRAY_SIZE(iwl_eeprom_band_4) +
643 ARRAY_SIZE(iwl_eeprom_band_5);
644
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800645 IWL_DEBUG_EEPROM(priv, "Parsing data for %d channels.\n",
646 priv->channel_count);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700647
648 priv->channel_info = kzalloc(sizeof(struct iwl_channel_info) *
649 priv->channel_count, GFP_KERNEL);
650 if (!priv->channel_info) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800651 IWL_ERR(priv, "Could not allocate channel_info\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700652 priv->channel_count = 0;
653 return -ENOMEM;
654 }
655
656 ch_info = priv->channel_info;
657
658 /* Loop through the 5 EEPROM bands adding them in order to the
659 * channel map we maintain (that contains additional information than
660 * what just in the EEPROM) */
661 for (band = 1; band <= 5; band++) {
662
663 iwl_init_band_reference(priv, band, &eeprom_ch_count,
664 &eeprom_ch_info, &eeprom_ch_index);
665
666 /* Loop through each band adding each of the channels */
667 for (ch = 0; ch < eeprom_ch_count; ch++) {
668 ch_info->channel = eeprom_ch_index[ch];
669 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
670 IEEE80211_BAND_5GHZ;
671
672 /* permanently store EEPROM's channel regulatory flags
673 * and max power in channel info database. */
674 ch_info->eeprom = eeprom_ch_info[ch];
675
676 /* Copy the run-time flags so they are there even on
677 * invalid channels */
678 ch_info->flags = eeprom_ch_info[ch].flags;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700679 /* First write that ht40 is not enabled, and then enable
Emmanuel Grumbach963f5512008-06-12 09:47:00 +0800680 * one by one */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700681 ch_info->ht40_extension_channel =
Zhu Yi3b247162009-08-13 13:30:53 -0700682 IEEE80211_CHAN_NO_HT40;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700683
684 if (!(is_channel_valid(ch_info))) {
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800685 IWL_DEBUG_EEPROM(priv,
686 "Ch. %d Flags %x [%sGHz] - "
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700687 "No traffic\n",
688 ch_info->channel,
689 ch_info->flags,
690 is_channel_a_band(ch_info) ?
691 "5.2" : "2.4");
692 ch_info++;
693 continue;
694 }
695
696 /* Initialize regulatory-based run-time data */
697 ch_info->max_power_avg = ch_info->curr_txpow =
698 eeprom_ch_info[ch].max_power_avg;
699 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
700 ch_info->min_power = 0;
701
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800702 IWL_DEBUG_EEPROM(priv, "Ch. %d [%sGHz] "
703 "%s%s%s%s%s%s(0x%02x %ddBm):"
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800704 " Ad-Hoc %ssupported\n",
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700705 ch_info->channel,
706 is_channel_a_band(ch_info) ?
707 "5.2" : "2.4",
708 CHECK_AND_PRINT_I(VALID),
709 CHECK_AND_PRINT_I(IBSS),
710 CHECK_AND_PRINT_I(ACTIVE),
711 CHECK_AND_PRINT_I(RADAR),
712 CHECK_AND_PRINT_I(WIDE),
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700713 CHECK_AND_PRINT_I(DFS),
714 eeprom_ch_info[ch].flags,
715 eeprom_ch_info[ch].max_power_avg,
716 ((eeprom_ch_info[ch].
717 flags & EEPROM_CHANNEL_IBSS)
718 && !(eeprom_ch_info[ch].
719 flags & EEPROM_CHANNEL_RADAR))
720 ? "" : "not ");
721
Winkler, Tomas62ea9c52009-01-19 15:30:29 -0800722 /* Set the tx_power_user_lmt to the highest power
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700723 * supported by any channel */
724 if (eeprom_ch_info[ch].max_power_avg >
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800725 priv->tx_power_user_lmt)
726 priv->tx_power_user_lmt =
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700727 eeprom_ch_info[ch].max_power_avg;
728
729 ch_info++;
730 }
731 }
732
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700733 /* Check if we do have HT40 channels */
Reinette Chatrea89d03c2009-02-10 15:19:04 -0800734 if (priv->cfg->ops->lib->eeprom_ops.regulatory_bands[5] ==
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700735 EEPROM_REGULATORY_BAND_NO_HT40 &&
Reinette Chatrea89d03c2009-02-10 15:19:04 -0800736 priv->cfg->ops->lib->eeprom_ops.regulatory_bands[6] ==
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700737 EEPROM_REGULATORY_BAND_NO_HT40)
Samuel Ortize6148912009-01-23 13:45:15 -0800738 return 0;
739
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700740 /* Two additional EEPROM bands for 2.4 and 5 GHz HT40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700741 for (band = 6; band <= 7; band++) {
742 enum ieee80211_band ieeeband;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700743
744 iwl_init_band_reference(priv, band, &eeprom_ch_count,
745 &eeprom_ch_info, &eeprom_ch_index);
746
747 /* EEPROM band 6 is 2.4, band 7 is 5 GHz */
748 ieeeband =
749 (band == 6) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
750
751 /* Loop through each band adding each of the channels */
752 for (ch = 0; ch < eeprom_ch_count; ch++) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700753 /* Set up driver's info for lower half */
Zhu Yi3b247162009-08-13 13:30:53 -0700754 iwl_mod_ht40_chan_info(priv, ieeeband,
Tomas Winklerda6833cb2008-05-15 13:54:15 +0800755 eeprom_ch_index[ch],
Zhu Yi3b247162009-08-13 13:30:53 -0700756 &eeprom_ch_info[ch],
757 IEEE80211_CHAN_NO_HT40PLUS);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700758
759 /* Set up driver's info for upper half */
Zhu Yi3b247162009-08-13 13:30:53 -0700760 iwl_mod_ht40_chan_info(priv, ieeeband,
761 eeprom_ch_index[ch] + 4,
762 &eeprom_ch_info[ch],
763 IEEE80211_CHAN_NO_HT40MINUS);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700764 }
765 }
766
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700767 /* for newer device (6000 series and up)
768 * EEPROM contain enhanced tx power information
769 * driver need to process addition information
770 * to determine the max channel tx power limits
771 */
772 if (priv->cfg->ops->lib->eeprom_ops.update_enhanced_txpower)
773 priv->cfg->ops->lib->eeprom_ops.update_enhanced_txpower(priv);
774
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700775 return 0;
776}
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700777
778/*
Tomas Winklerda6833cb2008-05-15 13:54:15 +0800779 * iwl_free_channel_map - undo allocations in iwl_init_channel_map
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700780 */
781void iwl_free_channel_map(struct iwl_priv *priv)
782{
783 kfree(priv->channel_info);
784 priv->channel_count = 0;
785}
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700786
787/**
788 * iwl_get_channel_info - Find driver's private channel info
789 *
790 * Based on band and channel number.
791 */
Tomas Winkler82a66bb2008-05-29 16:35:28 +0800792const struct iwl_channel_info *iwl_get_channel_info(const struct iwl_priv *priv,
793 enum ieee80211_band band, u16 channel)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700794{
795 int i;
796
797 switch (band) {
798 case IEEE80211_BAND_5GHZ:
799 for (i = 14; i < priv->channel_count; i++) {
800 if (priv->channel_info[i].channel == channel)
801 return &priv->channel_info[i];
802 }
803 break;
804 case IEEE80211_BAND_2GHZ:
805 if (channel >= 1 && channel <= 14)
806 return &priv->channel_info[channel - 1];
807 break;
808 default:
809 BUG();
810 }
811
812 return NULL;
813}