blob: b382b16b89d7da1fa21be4f3f5981ccf47a03bdc [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 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08008 * Copyright(c) 2008 - 2012 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 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -080033 * Copyright(c) 2005 - 2012 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>
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080068#include <net/mac80211.h>
Tomas Winkler3395f6e2008-03-25 16:33:37 -070069#include "iwl-io.h"
Johannes Bergeae63b82012-03-06 13:31:06 -080070#include "iwl-prph.h"
Johannes Berg1023fdc2012-05-15 12:16:34 +020071#include "iwl-debug.h"
72#include "dev.h"
73#include "agn.h"
74#include "eeprom.h"
Assaf Krauss34cf6ff2008-03-06 10:40:20 -080075
Assaf Kraussbf85ea42008-03-14 10:38:49 -070076/************************** EEPROM BANDS ****************************
77 *
78 * The iwl_eeprom_band definitions below provide the mapping from the
79 * EEPROM contents to the specific channel number supported for each
80 * band.
81 *
82 * For example, iwl_priv->eeprom.band_3_channels[4] from the band_3
83 * definition below maps to physical channel 42 in the 5.2GHz spectrum.
84 * The specific geography and calibration information for that channel
85 * is contained in the eeprom map itself.
86 *
87 * During init, we copy the eeprom information and channel map
88 * information into priv->channel_info_24/52 and priv->channel_map_24/52
89 *
90 * channel_map_24/52 provides the index in the channel_info array for a
91 * given channel. We have to have two separate maps as there is channel
92 * overlap with the 2.4GHz and 5.2GHz spectrum as seen in band_1 and
93 * band_2
94 *
95 * A value of 0xff stored in the channel_map indicates that the channel
96 * is not supported by the hardware at all.
97 *
98 * A value of 0xfe in the channel_map indicates that the channel is not
99 * valid for Tx with the current hardware. This means that
100 * while the system can tune and receive on a given channel, it may not
101 * be able to associate or transmit any frames on that
102 * channel. There is no corresponding channel information for that
103 * entry.
104 *
105 *********************************************************************/
106
107/* 2.4 GHz */
108const u8 iwl_eeprom_band_1[14] = {
109 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
110};
111
112/* 5.2 GHz bands */
113static const u8 iwl_eeprom_band_2[] = { /* 4915-5080MHz */
114 183, 184, 185, 187, 188, 189, 192, 196, 7, 8, 11, 12, 16
115};
116
117static const u8 iwl_eeprom_band_3[] = { /* 5170-5320MHz */
118 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
119};
120
121static const u8 iwl_eeprom_band_4[] = { /* 5500-5700MHz */
122 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
123};
124
125static const u8 iwl_eeprom_band_5[] = { /* 5725-5825MHz */
126 145, 149, 153, 157, 161, 165
127};
128
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700129static const u8 iwl_eeprom_band_6[] = { /* 2.4 ht40 channel */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700130 1, 2, 3, 4, 5, 6, 7
131};
132
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700133static const u8 iwl_eeprom_band_7[] = { /* 5.2 ht40 channel */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700134 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157
135};
136
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800137/******************************************************************************
138 *
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700139 * generic NVM functions
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800140 *
141******************************************************************************/
142
Don Fry16b80b72011-04-20 15:25:14 -0700143/*
144 * The device's EEPROM semaphore prevents conflicts between driver and uCode
145 * when accessing the EEPROM; each access is a series of pulses to/from the
146 * EEPROM chip, not a single event, so even reads could conflict if they
147 * weren't arbitrated by the semaphore.
148 */
Emmanuel Grumbach90304742012-02-13 11:17:57 +0200149
150#define EEPROM_SEM_TIMEOUT 10 /* milliseconds */
151#define EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
152
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200153static int iwl_eeprom_acquire_semaphore(struct iwl_trans *trans)
Don Fry16b80b72011-04-20 15:25:14 -0700154{
155 u16 count;
156 int ret;
157
158 for (count = 0; count < EEPROM_SEM_RETRY_LIMIT; count++) {
159 /* Request semaphore */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200160 iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
Don Fry16b80b72011-04-20 15:25:14 -0700161 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM);
162
163 /* See if we got it */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200164 ret = iwl_poll_bit(trans, CSR_HW_IF_CONFIG_REG,
Don Fry16b80b72011-04-20 15:25:14 -0700165 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM,
166 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM,
167 EEPROM_SEM_TIMEOUT);
168 if (ret >= 0) {
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200169 IWL_DEBUG_EEPROM(trans,
Don Fry16b80b72011-04-20 15:25:14 -0700170 "Acquired semaphore after %d tries.\n",
171 count+1);
172 return ret;
173 }
174 }
175
176 return ret;
177}
178
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200179static void iwl_eeprom_release_semaphore(struct iwl_trans *trans)
Don Fry16b80b72011-04-20 15:25:14 -0700180{
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200181 iwl_clear_bit(trans, CSR_HW_IF_CONFIG_REG,
Don Fry16b80b72011-04-20 15:25:14 -0700182 CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM);
183
184}
185
Johannes Berg11483b52012-04-09 17:46:58 -0700186static int iwl_eeprom_verify_signature(struct iwl_priv *priv)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800187{
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700188 u32 gp = iwl_read32(priv->trans, CSR_EEPROM_GP) &
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200189 CSR_EEPROM_GP_VALID_MSK;
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700190 int ret = 0;
191
Johannes Berg11483b52012-04-09 17:46:58 -0700192 IWL_DEBUG_EEPROM(priv, "EEPROM signature=0x%08x\n", gp);
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700193 switch (gp) {
194 case CSR_EEPROM_GP_BAD_SIG_EEP_GOOD_SIG_OTP:
Johannes Berg11483b52012-04-09 17:46:58 -0700195 if (priv->nvm_device_type != NVM_DEVICE_TYPE_OTP) {
196 IWL_ERR(priv, "EEPROM with bad signature: 0x%08x\n",
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700197 gp);
198 ret = -ENOENT;
199 }
200 break;
201 case CSR_EEPROM_GP_GOOD_SIG_EEP_LESS_THAN_4K:
202 case CSR_EEPROM_GP_GOOD_SIG_EEP_MORE_THAN_4K:
Johannes Berg11483b52012-04-09 17:46:58 -0700203 if (priv->nvm_device_type != NVM_DEVICE_TYPE_EEPROM) {
204 IWL_ERR(priv, "OTP with bad signature: 0x%08x\n", gp);
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700205 ret = -ENOENT;
206 }
207 break;
208 case CSR_EEPROM_GP_BAD_SIGNATURE_BOTH_EEP_AND_OTP:
209 default:
Johannes Berg11483b52012-04-09 17:46:58 -0700210 IWL_ERR(priv, "bad EEPROM/OTP signature, type=%s, "
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700211 "EEPROM_GP=0x%08x\n",
Johannes Berg11483b52012-04-09 17:46:58 -0700212 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700213 ? "OTP" : "EEPROM", gp);
214 ret = -ENOENT;
215 break;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800216 }
Wey-Yi Guyf41bb892009-10-02 13:44:06 -0700217 return ret;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800218}
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800219
Johannes Berg11483b52012-04-09 17:46:58 -0700220u16 iwl_eeprom_query16(struct iwl_priv *priv, size_t offset)
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700221{
Johannes Berg11483b52012-04-09 17:46:58 -0700222 if (!priv->eeprom)
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700223 return 0;
Johannes Berg11483b52012-04-09 17:46:58 -0700224 return (u16)priv->eeprom[offset] | ((u16)priv->eeprom[offset + 1] << 8);
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700225}
226
227int iwl_eeprom_check_version(struct iwl_priv *priv)
228{
229 u16 eeprom_ver;
230 u16 calib_ver;
231
Johannes Berg11483b52012-04-09 17:46:58 -0700232 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
233 calib_ver = iwl_eeprom_calib_version(priv);
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700234
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200235 if (eeprom_ver < priv->cfg->eeprom_ver ||
236 calib_ver < priv->cfg->eeprom_calib_ver)
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700237 goto err;
238
239 IWL_INFO(priv, "device EEPROM VER=0x%x, CALIB=0x%x\n",
240 eeprom_ver, calib_ver);
241
242 return 0;
243err:
244 IWL_ERR(priv, "Unsupported (too old) EEPROM VER=0x%x < 0x%x "
245 "CALIB=0x%x < 0x%x\n",
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200246 eeprom_ver, priv->cfg->eeprom_ver,
247 calib_ver, priv->cfg->eeprom_calib_ver);
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700248 return -EINVAL;
249
250}
251
Johannes Berg54708d82012-03-05 11:24:31 -0800252int iwl_eeprom_init_hw_params(struct iwl_priv *priv)
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700253{
254 u16 radio_cfg;
255
Johannes Berg11483b52012-04-09 17:46:58 -0700256 priv->hw_params.sku = iwl_eeprom_query16(priv, EEPROM_SKU_CAP);
Johannes Berg9e295112012-04-09 17:46:55 -0700257 if (priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE &&
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200258 !priv->cfg->ht_params) {
Johannes Berg54708d82012-03-05 11:24:31 -0800259 IWL_ERR(priv, "Invalid 11n configuration\n");
260 return -EINVAL;
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700261 }
Johannes Berg54708d82012-03-05 11:24:31 -0800262
Johannes Berg9e295112012-04-09 17:46:55 -0700263 if (!priv->hw_params.sku) {
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700264 IWL_ERR(priv, "Invalid device sku\n");
265 return -EINVAL;
266 }
267
Johannes Berg9e295112012-04-09 17:46:55 -0700268 IWL_INFO(priv, "Device SKU: 0x%X\n", priv->hw_params.sku);
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700269
Johannes Berg11483b52012-04-09 17:46:58 -0700270 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
Johannes Berg7e79a392012-03-05 11:24:32 -0800271
Johannes Berg9e295112012-04-09 17:46:55 -0700272 priv->hw_params.valid_tx_ant = EEPROM_RF_CFG_TX_ANT_MSK(radio_cfg);
273 priv->hw_params.valid_rx_ant = EEPROM_RF_CFG_RX_ANT_MSK(radio_cfg);
Johannes Berg7e79a392012-03-05 11:24:32 -0800274
275 /* check overrides (some devices have wrong EEPROM) */
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200276 if (priv->cfg->valid_tx_ant)
277 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
278 if (priv->cfg->valid_rx_ant)
279 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
Johannes Berg7e79a392012-03-05 11:24:32 -0800280
Johannes Berg9e295112012-04-09 17:46:55 -0700281 if (!priv->hw_params.valid_tx_ant || !priv->hw_params.valid_rx_ant) {
Johannes Berg7e79a392012-03-05 11:24:32 -0800282 IWL_ERR(priv, "Invalid chain (0x%X, 0x%X)\n",
Johannes Berg9e295112012-04-09 17:46:55 -0700283 priv->hw_params.valid_tx_ant,
284 priv->hw_params.valid_rx_ant);
Johannes Berg7e79a392012-03-05 11:24:32 -0800285 return -EINVAL;
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700286 }
Johannes Berg7e79a392012-03-05 11:24:32 -0800287
Johannes Berg2587d362012-05-21 20:18:19 +0200288 priv->hw_params.tx_chains_num =
289 num_of_ant(priv->hw_params.valid_tx_ant);
290 if (priv->cfg->rx_with_siso_diversity)
291 priv->hw_params.rx_chains_num = 1;
292 else
293 priv->hw_params.rx_chains_num =
294 num_of_ant(priv->hw_params.valid_rx_ant);
295
Johannes Berg7e79a392012-03-05 11:24:32 -0800296 IWL_INFO(priv, "Valid Tx ant: 0x%X, Valid Rx ant: 0x%X\n",
Johannes Berg9e295112012-04-09 17:46:55 -0700297 priv->hw_params.valid_tx_ant, priv->hw_params.valid_rx_ant);
Johannes Berg7e79a392012-03-05 11:24:32 -0800298
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700299 return 0;
300}
301
Johannes Berg11483b52012-04-09 17:46:58 -0700302u16 iwl_eeprom_calib_version(struct iwl_priv *priv)
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700303{
Johannes Berg11483b52012-04-09 17:46:58 -0700304 struct iwl_eeprom_calib_hdr *hdr;
305
306 hdr = (struct iwl_eeprom_calib_hdr *)iwl_eeprom_query_addr(priv,
307 EEPROM_CALIB_ALL);
308 return hdr->version;
309}
310
311static u32 eeprom_indirect_address(struct iwl_priv *priv, u32 address)
312{
313 u16 offset = 0;
314
315 if ((address & INDIRECT_ADDRESS) == 0)
316 return address;
317
318 switch (address & INDIRECT_TYPE_MSK) {
319 case INDIRECT_HOST:
320 offset = iwl_eeprom_query16(priv, EEPROM_LINK_HOST);
321 break;
322 case INDIRECT_GENERAL:
323 offset = iwl_eeprom_query16(priv, EEPROM_LINK_GENERAL);
324 break;
325 case INDIRECT_REGULATORY:
326 offset = iwl_eeprom_query16(priv, EEPROM_LINK_REGULATORY);
327 break;
328 case INDIRECT_TXP_LIMIT:
329 offset = iwl_eeprom_query16(priv, EEPROM_LINK_TXP_LIMIT);
330 break;
331 case INDIRECT_TXP_LIMIT_SIZE:
332 offset = iwl_eeprom_query16(priv, EEPROM_LINK_TXP_LIMIT_SIZE);
333 break;
334 case INDIRECT_CALIBRATION:
335 offset = iwl_eeprom_query16(priv, EEPROM_LINK_CALIBRATION);
336 break;
337 case INDIRECT_PROCESS_ADJST:
338 offset = iwl_eeprom_query16(priv, EEPROM_LINK_PROCESS_ADJST);
339 break;
340 case INDIRECT_OTHERS:
341 offset = iwl_eeprom_query16(priv, EEPROM_LINK_OTHERS);
342 break;
343 default:
344 IWL_ERR(priv, "illegal indirect type: 0x%X\n",
345 address & INDIRECT_TYPE_MSK);
346 break;
347 }
348
349 /* translate the offset from words to byte */
350 return (address & ADDRESS_MSK) + (offset << 1);
351}
352
353const u8 *iwl_eeprom_query_addr(struct iwl_priv *priv, size_t offset)
354{
355 u32 address = eeprom_indirect_address(priv, offset);
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200356 BUG_ON(address >= priv->cfg->base_params->eeprom_size);
Johannes Berg11483b52012-04-09 17:46:58 -0700357 return &priv->eeprom[address];
358}
359
360void iwl_eeprom_get_mac(struct iwl_priv *priv, u8 *mac)
361{
362 const u8 *addr = iwl_eeprom_query_addr(priv,
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700363 EEPROM_MAC_ADDRESS);
364 memcpy(mac, addr, ETH_ALEN);
365}
366
367/******************************************************************************
368 *
369 * OTP related functions
370 *
371******************************************************************************/
372
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200373static void iwl_set_otp_access(struct iwl_trans *trans,
374 enum iwl_access_mode mode)
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700375{
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200376 iwl_read32(trans, CSR_OTP_GP_REG);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700377
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700378 if (mode == IWL_OTP_ACCESS_ABSOLUTE)
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200379 iwl_clear_bit(trans, CSR_OTP_GP_REG,
Johannes Berg70817b52011-05-11 03:29:25 -0700380 CSR_OTP_GP_REG_OTP_ACCESS_MODE);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700381 else
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200382 iwl_set_bit(trans, CSR_OTP_GP_REG,
Johannes Berg70817b52011-05-11 03:29:25 -0700383 CSR_OTP_GP_REG_OTP_ACCESS_MODE);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700384}
385
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200386static int iwl_get_nvm_type(struct iwl_trans *trans, u32 hw_rev)
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700387{
388 u32 otpgp;
389 int nvm_type;
390
391 /* OTP only valid for CP/PP and after */
Johannes Berge98a1302011-04-05 09:42:08 -0700392 switch (hw_rev & CSR_HW_REV_TYPE_MSK) {
Wey-Yi Guyb23a0522009-07-17 09:30:21 -0700393 case CSR_HW_REV_TYPE_NONE:
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200394 IWL_ERR(trans, "Unknown hardware type\n");
Wey-Yi Guyb23a0522009-07-17 09:30:21 -0700395 return -ENOENT;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700396 case CSR_HW_REV_TYPE_5300:
397 case CSR_HW_REV_TYPE_5350:
398 case CSR_HW_REV_TYPE_5100:
399 case CSR_HW_REV_TYPE_5150:
400 nvm_type = NVM_DEVICE_TYPE_EEPROM;
401 break;
402 default:
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200403 otpgp = iwl_read32(trans, CSR_OTP_GP_REG);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700404 if (otpgp & CSR_OTP_GP_REG_DEVICE_SELECT)
405 nvm_type = NVM_DEVICE_TYPE_OTP;
406 else
407 nvm_type = NVM_DEVICE_TYPE_EEPROM;
408 break;
409 }
410 return nvm_type;
411}
412
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200413static int iwl_init_otp_access(struct iwl_trans *trans)
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700414{
415 int ret;
416
417 /* Enable 40MHz radio clock */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200418 iwl_write32(trans, CSR_GP_CNTRL,
419 iwl_read32(trans, CSR_GP_CNTRL) |
Johannes Berg02a7fa02011-04-05 09:42:12 -0700420 CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700421
422 /* wait for clock to be ready */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200423 ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
Johannes Berg02a7fa02011-04-05 09:42:12 -0700424 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
425 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
426 25000);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700427 if (ret < 0)
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200428 IWL_ERR(trans, "Time out access OTP\n");
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700429 else {
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200430 iwl_set_bits_prph(trans, APMG_PS_CTRL_REG,
Reinette Chatred77b0342009-05-22 14:37:55 -0700431 APMG_PS_CTRL_VAL_RESET_REQ);
432 udelay(5);
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200433 iwl_clear_bits_prph(trans, APMG_PS_CTRL_REG,
Reinette Chatred77b0342009-05-22 14:37:55 -0700434 APMG_PS_CTRL_VAL_RESET_REQ);
Wey-Yi Guy32004ee2009-10-16 14:25:56 -0700435
436 /*
437 * CSR auto clock gate disable bit -
438 * this is only applicable for HW with OTP shadow RAM
439 */
Emmanuel Grumbach035f7ff2012-03-26 08:57:01 -0700440 if (trans->cfg->base_params->shadow_ram_support)
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200441 iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
Wey-Yi Guy32004ee2009-10-16 14:25:56 -0700442 CSR_RESET_LINK_PWR_MGMT_DISABLED);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700443 }
444 return ret;
445}
446
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200447static int iwl_read_otp_word(struct iwl_trans *trans, u16 addr,
448 __le16 *eeprom_data)
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700449{
450 int ret = 0;
451 u32 r;
452 u32 otpgp;
453
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200454 iwl_write32(trans, CSR_EEPROM_REG,
Johannes Berg02a7fa02011-04-05 09:42:12 -0700455 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200456 ret = iwl_poll_bit(trans, CSR_EEPROM_REG,
Johannes Berg02a7fa02011-04-05 09:42:12 -0700457 CSR_EEPROM_REG_READ_VALID_MSK,
458 CSR_EEPROM_REG_READ_VALID_MSK,
459 IWL_EEPROM_ACCESS_TIMEOUT);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700460 if (ret < 0) {
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200461 IWL_ERR(trans, "Time out reading OTP[%d]\n", addr);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700462 return ret;
463 }
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200464 r = iwl_read32(trans, CSR_EEPROM_REG);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700465 /* check for ECC errors: */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200466 otpgp = iwl_read32(trans, CSR_OTP_GP_REG);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700467 if (otpgp & CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK) {
468 /* stop in this case */
469 /* set the uncorrectable OTP ECC bit for acknowledgement */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200470 iwl_set_bit(trans, CSR_OTP_GP_REG,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700471 CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK);
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200472 IWL_ERR(trans, "Uncorrectable OTP ECC error, abort OTP read\n");
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700473 return -EINVAL;
474 }
475 if (otpgp & CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK) {
476 /* continue in this case */
477 /* set the correctable OTP ECC bit for acknowledgement */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200478 iwl_set_bit(trans, CSR_OTP_GP_REG,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700479 CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK);
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200480 IWL_ERR(trans, "Correctable OTP ECC error, continue read\n");
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700481 }
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800482 *eeprom_data = cpu_to_le16(r >> 16);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700483 return 0;
484}
485
486/*
487 * iwl_is_otp_empty: check for empty OTP
488 */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200489static bool iwl_is_otp_empty(struct iwl_trans *trans)
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700490{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800491 u16 next_link_addr = 0;
492 __le16 link_value;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700493 bool is_empty = false;
494
495 /* locate the beginning of OTP link list */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200496 if (!iwl_read_otp_word(trans, next_link_addr, &link_value)) {
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700497 if (!link_value) {
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200498 IWL_ERR(trans, "OTP is empty\n");
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700499 is_empty = true;
500 }
501 } else {
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200502 IWL_ERR(trans, "Unable to read first block of OTP list.\n");
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700503 is_empty = true;
504 }
505
506 return is_empty;
507}
508
509
510/*
511 * iwl_find_otp_image: find EEPROM image in OTP
512 * finding the OTP block that contains the EEPROM image.
513 * the last valid block on the link list (the block _before_ the last block)
514 * is the block we should read and used to configure the device.
515 * If all the available OTP blocks are full, the last block will be the block
516 * we should read and used to configure the device.
517 * only perform this operation if shadow RAM is disabled
518 */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200519static int iwl_find_otp_image(struct iwl_trans *trans,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700520 u16 *validblockaddr)
521{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800522 u16 next_link_addr = 0, valid_addr;
523 __le16 link_value = 0;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700524 int usedblocks = 0;
525
526 /* set addressing mode to absolute to traverse the link list */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200527 iwl_set_otp_access(trans, IWL_OTP_ACCESS_ABSOLUTE);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700528
529 /* checking for empty OTP or error */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200530 if (iwl_is_otp_empty(trans))
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700531 return -EINVAL;
532
533 /*
534 * start traverse link list
535 * until reach the max number of OTP blocks
536 * different devices have different number of OTP blocks
537 */
538 do {
539 /* save current valid block address
540 * check for more block on the link list
541 */
542 valid_addr = next_link_addr;
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800543 next_link_addr = le16_to_cpu(link_value) * sizeof(u16);
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200544 IWL_DEBUG_EEPROM(trans, "OTP blocks %d addr 0x%x\n",
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700545 usedblocks, next_link_addr);
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200546 if (iwl_read_otp_word(trans, next_link_addr, &link_value))
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700547 return -EINVAL;
548 if (!link_value) {
549 /*
Jay Sternberg2facba72009-10-02 13:43:55 -0700550 * reach the end of link list, return success and
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700551 * set address point to the starting address
552 * of the image
553 */
Jay Sternberg2facba72009-10-02 13:43:55 -0700554 *validblockaddr = valid_addr;
555 /* skip first 2 bytes (link list pointer) */
556 *validblockaddr += 2;
557 return 0;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700558 }
559 /* more in the link list, continue */
560 usedblocks++;
Emmanuel Grumbach035f7ff2012-03-26 08:57:01 -0700561 } while (usedblocks <= trans->cfg->base_params->max_ll_items);
Jay Sternberg2facba72009-10-02 13:43:55 -0700562
563 /* OTP has no valid blocks */
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200564 IWL_DEBUG_EEPROM(trans, "OTP has no valid blocks\n");
Jay Sternberg2facba72009-10-02 13:43:55 -0700565 return -EINVAL;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700566}
567
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700568/******************************************************************************
569 *
570 * Tx Power related functions
571 *
572******************************************************************************/
573/**
574 * iwl_get_max_txpower_avg - get the highest tx power from all chains.
575 * find the highest tx power from all chains for the channel
576 */
Johannes Berg706c4ff2012-03-05 11:24:33 -0800577static s8 iwl_get_max_txpower_avg(const struct iwl_cfg *cfg,
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700578 struct iwl_eeprom_enhanced_txpwr *enhanced_txpower,
579 int element, s8 *max_txpower_in_half_dbm)
Wey-Yi Guy3be63ff2010-10-08 16:05:19 -0700580{
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700581 s8 max_txpower_avg = 0; /* (dBm) */
582
583 /* Take the highest tx power from any valid chains */
Don Fry1431b212011-11-10 06:55:26 -0800584 if ((cfg->valid_tx_ant & ANT_A) &&
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700585 (enhanced_txpower[element].chain_a_max > max_txpower_avg))
586 max_txpower_avg = enhanced_txpower[element].chain_a_max;
Don Fry1431b212011-11-10 06:55:26 -0800587 if ((cfg->valid_tx_ant & ANT_B) &&
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700588 (enhanced_txpower[element].chain_b_max > max_txpower_avg))
589 max_txpower_avg = enhanced_txpower[element].chain_b_max;
Don Fry1431b212011-11-10 06:55:26 -0800590 if ((cfg->valid_tx_ant & ANT_C) &&
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700591 (enhanced_txpower[element].chain_c_max > max_txpower_avg))
592 max_txpower_avg = enhanced_txpower[element].chain_c_max;
Don Fry1431b212011-11-10 06:55:26 -0800593 if (((cfg->valid_tx_ant == ANT_AB) |
594 (cfg->valid_tx_ant == ANT_BC) |
595 (cfg->valid_tx_ant == ANT_AC)) &&
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700596 (enhanced_txpower[element].mimo2_max > max_txpower_avg))
597 max_txpower_avg = enhanced_txpower[element].mimo2_max;
Don Fry1431b212011-11-10 06:55:26 -0800598 if ((cfg->valid_tx_ant == ANT_ABC) &&
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700599 (enhanced_txpower[element].mimo3_max > max_txpower_avg))
600 max_txpower_avg = enhanced_txpower[element].mimo3_max;
601
602 /*
603 * max. tx power in EEPROM is in 1/2 dBm format
604 * convert from 1/2 dBm to dBm (round-up convert)
605 * but we also do not want to loss 1/2 dBm resolution which
606 * will impact performance
607 */
608 *max_txpower_in_half_dbm = max_txpower_avg;
609 return (max_txpower_avg & 0x01) + (max_txpower_avg >> 1);
610}
611
612static void
613iwl_eeprom_enh_txp_read_element(struct iwl_priv *priv,
614 struct iwl_eeprom_enhanced_txpwr *txp,
615 s8 max_txpower_avg)
616{
617 int ch_idx;
618 bool is_ht40 = txp->flags & IWL_EEPROM_ENH_TXP_FL_40MHZ;
619 enum ieee80211_band band;
620
621 band = txp->flags & IWL_EEPROM_ENH_TXP_FL_BAND_52G ?
622 IEEE80211_BAND_5GHZ : IEEE80211_BAND_2GHZ;
623
624 for (ch_idx = 0; ch_idx < priv->channel_count; ch_idx++) {
625 struct iwl_channel_info *ch_info = &priv->channel_info[ch_idx];
626
627 /* update matching channel or from common data only */
628 if (txp->channel != 0 && ch_info->channel != txp->channel)
629 continue;
630
631 /* update matching band only */
632 if (band != ch_info->band)
633 continue;
634
635 if (ch_info->max_power_avg < max_txpower_avg && !is_ht40) {
636 ch_info->max_power_avg = max_txpower_avg;
637 ch_info->curr_txpow = max_txpower_avg;
638 ch_info->scan_power = max_txpower_avg;
639 }
640
641 if (is_ht40 && ch_info->ht40_max_power_avg < max_txpower_avg)
642 ch_info->ht40_max_power_avg = max_txpower_avg;
643 }
644}
645
646#define EEPROM_TXP_OFFS (0x00 | INDIRECT_ADDRESS | INDIRECT_TXP_LIMIT)
647#define EEPROM_TXP_ENTRY_LEN sizeof(struct iwl_eeprom_enhanced_txpwr)
648#define EEPROM_TXP_SZ_OFFS (0x00 | INDIRECT_ADDRESS | INDIRECT_TXP_LIMIT_SIZE)
649
650#define TXP_CHECK_AND_PRINT(x) ((txp->flags & IWL_EEPROM_ENH_TXP_FL_##x) \
651 ? # x " " : "")
652
Johannes Berg51dc51d2012-03-07 09:52:20 -0800653static void iwl_eeprom_enhanced_txpower(struct iwl_priv *priv)
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700654{
655 struct iwl_eeprom_enhanced_txpwr *txp_array, *txp;
656 int idx, entries;
657 __le16 *txp_len;
658 s8 max_txp_avg, max_txp_avg_halfdbm;
659
660 BUILD_BUG_ON(sizeof(struct iwl_eeprom_enhanced_txpwr) != 8);
661
662 /* the length is in 16-bit words, but we want entries */
Johannes Berg11483b52012-04-09 17:46:58 -0700663 txp_len = (__le16 *) iwl_eeprom_query_addr(priv, EEPROM_TXP_SZ_OFFS);
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700664 entries = le16_to_cpup(txp_len) * 2 / EEPROM_TXP_ENTRY_LEN;
665
Johannes Berg11483b52012-04-09 17:46:58 -0700666 txp_array = (void *) iwl_eeprom_query_addr(priv, EEPROM_TXP_OFFS);
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700667
668 for (idx = 0; idx < entries; idx++) {
669 txp = &txp_array[idx];
670 /* skip invalid entries */
671 if (!(txp->flags & IWL_EEPROM_ENH_TXP_FL_VALID))
672 continue;
673
674 IWL_DEBUG_EEPROM(priv, "%s %d:\t %s%s%s%s%s%s%s%s (0x%02x)\n",
675 (txp->channel && (txp->flags &
676 IWL_EEPROM_ENH_TXP_FL_COMMON_TYPE)) ?
677 "Common " : (txp->channel) ?
678 "Channel" : "Common",
679 (txp->channel),
680 TXP_CHECK_AND_PRINT(VALID),
681 TXP_CHECK_AND_PRINT(BAND_52G),
682 TXP_CHECK_AND_PRINT(OFDM),
683 TXP_CHECK_AND_PRINT(40MHZ),
684 TXP_CHECK_AND_PRINT(HT_AP),
685 TXP_CHECK_AND_PRINT(RES1),
686 TXP_CHECK_AND_PRINT(RES2),
687 TXP_CHECK_AND_PRINT(COMMON_TYPE),
688 txp->flags);
689 IWL_DEBUG_EEPROM(priv, "\t\t chain_A: 0x%02x "
690 "chain_B: 0X%02x chain_C: 0X%02x\n",
691 txp->chain_a_max, txp->chain_b_max,
692 txp->chain_c_max);
693 IWL_DEBUG_EEPROM(priv, "\t\t MIMO2: 0x%02x "
694 "MIMO3: 0x%02x High 20_on_40: 0x%02x "
695 "Low 20_on_40: 0x%02x\n",
696 txp->mimo2_max, txp->mimo3_max,
697 ((txp->delta_20_in_40 & 0xf0) >> 4),
698 (txp->delta_20_in_40 & 0x0f));
699
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200700 max_txp_avg = iwl_get_max_txpower_avg(priv->cfg, txp_array, idx,
Wey-Yi Guy701cb092011-09-15 11:46:41 -0700701 &max_txp_avg_halfdbm);
702
703 /*
704 * Update the user limit values values to the highest
705 * power supported by any channel
706 */
707 if (max_txp_avg > priv->tx_power_user_lmt)
708 priv->tx_power_user_lmt = max_txp_avg;
709 if (max_txp_avg_halfdbm > priv->tx_power_lmt_in_half_dbm)
710 priv->tx_power_lmt_in_half_dbm = max_txp_avg_halfdbm;
711
712 iwl_eeprom_enh_txp_read_element(priv, txp, max_txp_avg);
713 }
Wey-Yi Guy3be63ff2010-10-08 16:05:19 -0700714}
Wey-Yi Guy3be63ff2010-10-08 16:05:19 -0700715
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800716/**
717 * iwl_eeprom_init - read EEPROM contents
718 *
Johannes Berg11483b52012-04-09 17:46:58 -0700719 * Load the EEPROM contents from adapter into priv->eeprom
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800720 *
721 * NOTE: This routine uses the non-debug IO access functions.
722 */
Johannes Berg11483b52012-04-09 17:46:58 -0700723int iwl_eeprom_init(struct iwl_priv *priv, u32 hw_rev)
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800724{
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800725 __le16 *e;
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700726 u32 gp = iwl_read32(priv->trans, CSR_EEPROM_GP);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700727 int sz;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800728 int ret;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800729 u16 addr;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700730 u16 validblockaddr = 0;
731 u16 cache_addr = 0;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700732
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700733 priv->nvm_device_type = iwl_get_nvm_type(priv->trans, hw_rev);
Johannes Berg11483b52012-04-09 17:46:58 -0700734 if (priv->nvm_device_type == -ENOENT)
Wey-Yi Guyb23a0522009-07-17 09:30:21 -0700735 return -ENOENT;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700736 /* allocate eeprom */
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200737 sz = priv->cfg->base_params->eeprom_size;
Johannes Berg11483b52012-04-09 17:46:58 -0700738 IWL_DEBUG_EEPROM(priv, "NVM size = %d\n", sz);
739 priv->eeprom = kzalloc(sz, GFP_KERNEL);
740 if (!priv->eeprom) {
Tomas Winkler073d3f52008-04-21 15:41:52 -0700741 ret = -ENOMEM;
742 goto alloc_err;
743 }
Johannes Berg11483b52012-04-09 17:46:58 -0700744 e = (__le16 *)priv->eeprom;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800745
Johannes Berg11483b52012-04-09 17:46:58 -0700746 ret = iwl_eeprom_verify_signature(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700747 if (ret < 0) {
Johannes Berg11483b52012-04-09 17:46:58 -0700748 IWL_ERR(priv, "EEPROM not found, EEPROM_GP=0x%08x\n", gp);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700749 ret = -ENOENT;
750 goto err;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800751 }
752
753 /* Make sure driver (instead of uCode) is allowed to read EEPROM */
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700754 ret = iwl_eeprom_acquire_semaphore(priv->trans);
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800755 if (ret < 0) {
Johannes Berg11483b52012-04-09 17:46:58 -0700756 IWL_ERR(priv, "Failed to acquire EEPROM semaphore.\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -0700757 ret = -ENOENT;
758 goto err;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800759 }
Ben Cahill88521362009-10-30 14:36:06 -0700760
Johannes Berg11483b52012-04-09 17:46:58 -0700761 if (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP) {
Ben Cahill88521362009-10-30 14:36:06 -0700762
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700763 ret = iwl_init_otp_access(priv->trans);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700764 if (ret) {
Johannes Berg11483b52012-04-09 17:46:58 -0700765 IWL_ERR(priv, "Failed to initialize OTP access.\n");
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700766 ret = -ENOENT;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700767 goto done;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800768 }
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700769 iwl_write32(priv->trans, CSR_EEPROM_GP,
770 iwl_read32(priv->trans, CSR_EEPROM_GP) &
Johannes Berg02a7fa02011-04-05 09:42:12 -0700771 ~CSR_EEPROM_GP_IF_OWNER_MSK);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700772
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700773 iwl_set_bit(priv->trans, CSR_OTP_GP_REG,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700774 CSR_OTP_GP_REG_ECC_CORR_STATUS_MSK |
775 CSR_OTP_GP_REG_ECC_UNCORR_STATUS_MSK);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700776 /* traversing the linked list if no shadow ram supported */
Emmanuel Grumbach21522682012-03-22 17:51:44 +0200777 if (!priv->cfg->base_params->shadow_ram_support) {
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700778 if (iwl_find_otp_image(priv->trans, &validblockaddr)) {
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700779 ret = -ENOENT;
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700780 goto done;
781 }
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700782 }
783 for (addr = validblockaddr; addr < validblockaddr + sz;
784 addr += sizeof(u16)) {
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800785 __le16 eeprom_data;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700786
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700787 ret = iwl_read_otp_word(priv->trans, addr,
Johannes Berg11483b52012-04-09 17:46:58 -0700788 &eeprom_data);
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700789 if (ret)
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700790 goto done;
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700791 e[cache_addr / 2] = eeprom_data;
792 cache_addr += sizeof(u16);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700793 }
794 } else {
795 /* eeprom is an array of 16bit values */
796 for (addr = 0; addr < sz; addr += sizeof(u16)) {
797 u32 r;
798
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700799 iwl_write32(priv->trans, CSR_EEPROM_REG,
Johannes Berg02a7fa02011-04-05 09:42:12 -0700800 CSR_EEPROM_REG_MSK_ADDR & (addr << 1));
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700801
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700802 ret = iwl_poll_bit(priv->trans, CSR_EEPROM_REG,
Abhijeet Kolekar1739d332009-10-02 13:44:05 -0700803 CSR_EEPROM_REG_READ_VALID_MSK,
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700804 CSR_EEPROM_REG_READ_VALID_MSK,
805 IWL_EEPROM_ACCESS_TIMEOUT);
806 if (ret < 0) {
Johannes Berg11483b52012-04-09 17:46:58 -0700807 IWL_ERR(priv,
Emmanuel Grumbachca77d532012-02-13 11:24:47 +0200808 "Time out reading EEPROM[%d]\n", addr);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700809 goto done;
810 }
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700811 r = iwl_read32(priv->trans, CSR_EEPROM_REG);
Johannes Bergaf6b8ee2009-12-14 14:12:08 -0800812 e[addr / 2] = cpu_to_le16(r >> 16);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700813 }
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800814 }
Johannes Bergd1358f62010-04-28 12:09:15 -0700815
Johannes Berg11483b52012-04-09 17:46:58 -0700816 IWL_DEBUG_EEPROM(priv, "NVM Type: %s, version: 0x%x\n",
817 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
Johannes Bergd1358f62010-04-28 12:09:15 -0700818 ? "OTP" : "EEPROM",
Johannes Berg11483b52012-04-09 17:46:58 -0700819 iwl_eeprom_query16(priv, EEPROM_VERSION));
Johannes Bergd1358f62010-04-28 12:09:15 -0700820
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800821 ret = 0;
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800822done:
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700823 iwl_eeprom_release_semaphore(priv->trans);
Johannes Bergd1358f62010-04-28 12:09:15 -0700824
Tomas Winkler073d3f52008-04-21 15:41:52 -0700825err:
826 if (ret)
Johannes Berg11483b52012-04-09 17:46:58 -0700827 iwl_eeprom_free(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700828alloc_err:
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800829 return ret;
830}
Assaf Krauss34cf6ff2008-03-06 10:40:20 -0800831
Johannes Berg11483b52012-04-09 17:46:58 -0700832void iwl_eeprom_free(struct iwl_priv *priv)
Tomas Winkler073d3f52008-04-21 15:41:52 -0700833{
Johannes Berg11483b52012-04-09 17:46:58 -0700834 kfree(priv->eeprom);
835 priv->eeprom = NULL;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700836}
Tomas Winkler073d3f52008-04-21 15:41:52 -0700837
Johannes Berg11483b52012-04-09 17:46:58 -0700838static void iwl_init_band_reference(struct iwl_priv *priv,
Tomas Winkler073d3f52008-04-21 15:41:52 -0700839 int eep_band, int *eeprom_ch_count,
840 const struct iwl_eeprom_channel **eeprom_ch_info,
841 const u8 **eeprom_ch_index)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700842{
Johannes Berge9676692012-04-10 14:10:28 -0700843 u32 offset = priv->lib->
Tomas Winkler073d3f52008-04-21 15:41:52 -0700844 eeprom_ops.regulatory_bands[eep_band - 1];
845 switch (eep_band) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700846 case 1: /* 2.4GHz band */
847 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_1);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700848 *eeprom_ch_info = (struct iwl_eeprom_channel *)
Johannes Berg11483b52012-04-09 17:46:58 -0700849 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700850 *eeprom_ch_index = iwl_eeprom_band_1;
851 break;
852 case 2: /* 4.9GHz band */
853 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_2);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700854 *eeprom_ch_info = (struct iwl_eeprom_channel *)
Johannes Berg11483b52012-04-09 17:46:58 -0700855 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700856 *eeprom_ch_index = iwl_eeprom_band_2;
857 break;
858 case 3: /* 5.2GHz band */
859 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_3);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700860 *eeprom_ch_info = (struct iwl_eeprom_channel *)
Johannes Berg11483b52012-04-09 17:46:58 -0700861 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700862 *eeprom_ch_index = iwl_eeprom_band_3;
863 break;
864 case 4: /* 5.5GHz band */
865 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_4);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700866 *eeprom_ch_info = (struct iwl_eeprom_channel *)
Johannes Berg11483b52012-04-09 17:46:58 -0700867 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700868 *eeprom_ch_index = iwl_eeprom_band_4;
869 break;
870 case 5: /* 5.7GHz band */
871 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_5);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700872 *eeprom_ch_info = (struct iwl_eeprom_channel *)
Johannes Berg11483b52012-04-09 17:46:58 -0700873 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700874 *eeprom_ch_index = iwl_eeprom_band_5;
875 break;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700876 case 6: /* 2.4GHz ht40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700877 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_6);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700878 *eeprom_ch_info = (struct iwl_eeprom_channel *)
Johannes Berg11483b52012-04-09 17:46:58 -0700879 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700880 *eeprom_ch_index = iwl_eeprom_band_6;
881 break;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700882 case 7: /* 5 GHz ht40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700883 *eeprom_ch_count = ARRAY_SIZE(iwl_eeprom_band_7);
Tomas Winkler073d3f52008-04-21 15:41:52 -0700884 *eeprom_ch_info = (struct iwl_eeprom_channel *)
Johannes Berg11483b52012-04-09 17:46:58 -0700885 iwl_eeprom_query_addr(priv, offset);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700886 *eeprom_ch_index = iwl_eeprom_band_7;
887 break;
888 default:
889 BUG();
890 return;
891 }
892}
893
894#define CHECK_AND_PRINT(x) ((eeprom_ch->flags & EEPROM_CHANNEL_##x) \
895 ? # x " " : "")
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700896/**
Zhu Yi3b247162009-08-13 13:30:53 -0700897 * iwl_mod_ht40_chan_info - Copy ht40 channel info into driver's priv.
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700898 *
899 * Does not set up a command, or touch hardware.
900 */
Zhu Yi3b247162009-08-13 13:30:53 -0700901static int iwl_mod_ht40_chan_info(struct iwl_priv *priv,
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700902 enum ieee80211_band band, u16 channel,
Tomas Winkler073d3f52008-04-21 15:41:52 -0700903 const struct iwl_eeprom_channel *eeprom_ch,
Zhu Yi3b247162009-08-13 13:30:53 -0700904 u8 clear_ht40_extension_channel)
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700905{
906 struct iwl_channel_info *ch_info;
907
908 ch_info = (struct iwl_channel_info *)
Assaf Krauss8622e702008-03-21 13:53:43 -0700909 iwl_get_channel_info(priv, band, channel);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700910
911 if (!is_channel_valid(ch_info))
912 return -1;
913
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800914 IWL_DEBUG_EEPROM(priv, "HT40 Ch. %d [%sGHz] %s%s%s%s%s(0x%02x %ddBm):"
Tomas Winkler630fe9b2008-06-12 09:47:08 +0800915 " Ad-Hoc %ssupported\n",
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700916 ch_info->channel,
917 is_channel_a_band(ch_info) ?
918 "5.2" : "2.4",
919 CHECK_AND_PRINT(IBSS),
920 CHECK_AND_PRINT(ACTIVE),
921 CHECK_AND_PRINT(RADAR),
922 CHECK_AND_PRINT(WIDE),
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700923 CHECK_AND_PRINT(DFS),
924 eeprom_ch->flags,
925 eeprom_ch->max_power_avg,
926 ((eeprom_ch->flags & EEPROM_CHANNEL_IBSS)
927 && !(eeprom_ch->flags & EEPROM_CHANNEL_RADAR)) ?
928 "" : "not ");
929
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700930 ch_info->ht40_eeprom = *eeprom_ch;
931 ch_info->ht40_max_power_avg = eeprom_ch->max_power_avg;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700932 ch_info->ht40_flags = eeprom_ch->flags;
Reinette Chatre6c3069b2009-12-14 14:12:13 -0800933 if (eeprom_ch->flags & EEPROM_CHANNEL_VALID)
934 ch_info->ht40_extension_channel &= ~clear_ht40_extension_channel;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700935
936 return 0;
937}
938
939#define CHECK_AND_PRINT_I(x) ((eeprom_ch_info[ch].flags & EEPROM_CHANNEL_##x) \
940 ? # x " " : "")
941
942/**
943 * iwl_init_channel_map - Set up driver's info for all possible channels
944 */
945int iwl_init_channel_map(struct iwl_priv *priv)
946{
947 int eeprom_ch_count = 0;
948 const u8 *eeprom_ch_index = NULL;
Tomas Winkler073d3f52008-04-21 15:41:52 -0700949 const struct iwl_eeprom_channel *eeprom_ch_info = NULL;
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700950 int band, ch;
951 struct iwl_channel_info *ch_info;
952
953 if (priv->channel_count) {
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800954 IWL_DEBUG_EEPROM(priv, "Channel map already initialized.\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700955 return 0;
956 }
957
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800958 IWL_DEBUG_EEPROM(priv, "Initializing regulatory info from EEPROM\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700959
960 priv->channel_count =
961 ARRAY_SIZE(iwl_eeprom_band_1) +
962 ARRAY_SIZE(iwl_eeprom_band_2) +
963 ARRAY_SIZE(iwl_eeprom_band_3) +
964 ARRAY_SIZE(iwl_eeprom_band_4) +
965 ARRAY_SIZE(iwl_eeprom_band_5);
966
Wey-Yi Guyd058ff82010-12-03 10:33:35 -0800967 IWL_DEBUG_EEPROM(priv, "Parsing data for %d channels.\n",
968 priv->channel_count);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700969
Emmanuel Grumbach7f90dce2011-09-22 15:14:53 -0700970 priv->channel_info = kcalloc(priv->channel_count,
971 sizeof(struct iwl_channel_info),
972 GFP_KERNEL);
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700973 if (!priv->channel_info) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800974 IWL_ERR(priv, "Could not allocate channel_info\n");
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700975 priv->channel_count = 0;
976 return -ENOMEM;
977 }
978
979 ch_info = priv->channel_info;
980
981 /* Loop through the 5 EEPROM bands adding them in order to the
982 * channel map we maintain (that contains additional information than
983 * what just in the EEPROM) */
984 for (band = 1; band <= 5; band++) {
985
986 iwl_init_band_reference(priv, band, &eeprom_ch_count,
987 &eeprom_ch_info, &eeprom_ch_index);
988
989 /* Loop through each band adding each of the channels */
990 for (ch = 0; ch < eeprom_ch_count; ch++) {
991 ch_info->channel = eeprom_ch_index[ch];
992 ch_info->band = (band == 1) ? IEEE80211_BAND_2GHZ :
993 IEEE80211_BAND_5GHZ;
994
995 /* permanently store EEPROM's channel regulatory flags
996 * and max power in channel info database. */
997 ch_info->eeprom = eeprom_ch_info[ch];
998
999 /* Copy the run-time flags so they are there even on
1000 * invalid channels */
1001 ch_info->flags = eeprom_ch_info[ch].flags;
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001002 /* First write that ht40 is not enabled, and then enable
Emmanuel Grumbach963f5512008-06-12 09:47:00 +08001003 * one by one */
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001004 ch_info->ht40_extension_channel =
Zhu Yi3b247162009-08-13 13:30:53 -07001005 IEEE80211_CHAN_NO_HT40;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001006
1007 if (!(is_channel_valid(ch_info))) {
Wey-Yi Guyd058ff82010-12-03 10:33:35 -08001008 IWL_DEBUG_EEPROM(priv,
1009 "Ch. %d Flags %x [%sGHz] - "
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001010 "No traffic\n",
1011 ch_info->channel,
1012 ch_info->flags,
1013 is_channel_a_band(ch_info) ?
1014 "5.2" : "2.4");
1015 ch_info++;
1016 continue;
1017 }
1018
1019 /* Initialize regulatory-based run-time data */
1020 ch_info->max_power_avg = ch_info->curr_txpow =
1021 eeprom_ch_info[ch].max_power_avg;
1022 ch_info->scan_power = eeprom_ch_info[ch].max_power_avg;
1023 ch_info->min_power = 0;
1024
Wey-Yi Guyd058ff82010-12-03 10:33:35 -08001025 IWL_DEBUG_EEPROM(priv, "Ch. %d [%sGHz] "
1026 "%s%s%s%s%s%s(0x%02x %ddBm):"
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001027 " Ad-Hoc %ssupported\n",
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001028 ch_info->channel,
1029 is_channel_a_band(ch_info) ?
1030 "5.2" : "2.4",
1031 CHECK_AND_PRINT_I(VALID),
1032 CHECK_AND_PRINT_I(IBSS),
1033 CHECK_AND_PRINT_I(ACTIVE),
1034 CHECK_AND_PRINT_I(RADAR),
1035 CHECK_AND_PRINT_I(WIDE),
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001036 CHECK_AND_PRINT_I(DFS),
1037 eeprom_ch_info[ch].flags,
1038 eeprom_ch_info[ch].max_power_avg,
1039 ((eeprom_ch_info[ch].
1040 flags & EEPROM_CHANNEL_IBSS)
1041 && !(eeprom_ch_info[ch].
1042 flags & EEPROM_CHANNEL_RADAR))
1043 ? "" : "not ");
1044
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001045 ch_info++;
1046 }
1047 }
1048
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001049 /* Check if we do have HT40 channels */
Johannes Berge9676692012-04-10 14:10:28 -07001050 if (priv->lib->eeprom_ops.regulatory_bands[5] ==
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001051 EEPROM_REGULATORY_BAND_NO_HT40 &&
Johannes Berge9676692012-04-10 14:10:28 -07001052 priv->lib->eeprom_ops.regulatory_bands[6] ==
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001053 EEPROM_REGULATORY_BAND_NO_HT40)
Samuel Ortize6148912009-01-23 13:45:15 -08001054 return 0;
1055
Wey-Yi Guy7aafef12009-08-07 15:41:38 -07001056 /* Two additional EEPROM bands for 2.4 and 5 GHz HT40 channels */
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001057 for (band = 6; band <= 7; band++) {
1058 enum ieee80211_band ieeeband;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001059
1060 iwl_init_band_reference(priv, band, &eeprom_ch_count,
1061 &eeprom_ch_info, &eeprom_ch_index);
1062
1063 /* EEPROM band 6 is 2.4, band 7 is 5 GHz */
1064 ieeeband =
1065 (band == 6) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
1066
1067 /* Loop through each band adding each of the channels */
1068 for (ch = 0; ch < eeprom_ch_count; ch++) {
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001069 /* Set up driver's info for lower half */
Zhu Yi3b247162009-08-13 13:30:53 -07001070 iwl_mod_ht40_chan_info(priv, ieeeband,
Tomas Winklerda6833c2008-05-15 13:54:15 +08001071 eeprom_ch_index[ch],
Zhu Yi3b247162009-08-13 13:30:53 -07001072 &eeprom_ch_info[ch],
1073 IEEE80211_CHAN_NO_HT40PLUS);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001074
1075 /* Set up driver's info for upper half */
Zhu Yi3b247162009-08-13 13:30:53 -07001076 iwl_mod_ht40_chan_info(priv, ieeeband,
1077 eeprom_ch_index[ch] + 4,
1078 &eeprom_ch_info[ch],
1079 IEEE80211_CHAN_NO_HT40MINUS);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001080 }
1081 }
1082
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -07001083 /* for newer device (6000 series and up)
1084 * EEPROM contain enhanced tx power information
1085 * driver need to process addition information
1086 * to determine the max channel tx power limits
1087 */
Johannes Berge9676692012-04-10 14:10:28 -07001088 if (priv->lib->eeprom_ops.enhanced_txpower)
Johannes Berg51dc51d2012-03-07 09:52:20 -08001089 iwl_eeprom_enhanced_txpower(priv);
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -07001090
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001091 return 0;
1092}
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001093
1094/*
Tomas Winklerda6833c2008-05-15 13:54:15 +08001095 * iwl_free_channel_map - undo allocations in iwl_init_channel_map
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001096 */
1097void iwl_free_channel_map(struct iwl_priv *priv)
1098{
1099 kfree(priv->channel_info);
1100 priv->channel_count = 0;
1101}
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001102
1103/**
1104 * iwl_get_channel_info - Find driver's private channel info
1105 *
1106 * Based on band and channel number.
1107 */
Tomas Winkler82a66bb2008-05-29 16:35:28 +08001108const struct iwl_channel_info *iwl_get_channel_info(const struct iwl_priv *priv,
1109 enum ieee80211_band band, u16 channel)
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001110{
1111 int i;
1112
1113 switch (band) {
1114 case IEEE80211_BAND_5GHZ:
1115 for (i = 14; i < priv->channel_count; i++) {
1116 if (priv->channel_info[i].channel == channel)
1117 return &priv->channel_info[i];
1118 }
1119 break;
1120 case IEEE80211_BAND_2GHZ:
1121 if (channel >= 1 && channel <= 14)
1122 return &priv->channel_info[channel - 1];
1123 break;
1124 default:
1125 BUG();
1126 }
1127
1128 return NULL;
1129}
Wey-Yi Guy86cb3b42011-06-14 15:23:39 -07001130
1131void iwl_rf_config(struct iwl_priv *priv)
1132{
1133 u16 radio_cfg;
1134
Johannes Berg11483b52012-04-09 17:46:58 -07001135 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
Wey-Yi Guy86cb3b42011-06-14 15:23:39 -07001136
1137 /* write radio config values to register */
1138 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX) {
Emmanuel Grumbach7b6a2be2012-05-29 17:30:43 +03001139 u32 reg_val =
1140 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <<
1141 CSR_HW_IF_CONFIG_REG_POS_PHY_TYPE |
1142 EEPROM_RF_CFG_STEP_MSK(radio_cfg) <<
1143 CSR_HW_IF_CONFIG_REG_POS_PHY_STEP |
1144 EEPROM_RF_CFG_DASH_MSK(radio_cfg) <<
1145 CSR_HW_IF_CONFIG_REG_POS_PHY_DASH;
1146
1147 iwl_set_bits_mask(priv->trans, CSR_HW_IF_CONFIG_REG,
1148 CSR_HW_IF_CONFIG_REG_MSK_PHY_TYPE |
1149 CSR_HW_IF_CONFIG_REG_MSK_PHY_STEP |
1150 CSR_HW_IF_CONFIG_REG_MSK_PHY_DASH, reg_val);
1151
Wey-Yi Guy86cb3b42011-06-14 15:23:39 -07001152 IWL_INFO(priv, "Radio type=0x%x-0x%x-0x%x\n",
1153 EEPROM_RF_CFG_TYPE_MSK(radio_cfg),
1154 EEPROM_RF_CFG_STEP_MSK(radio_cfg),
1155 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
1156 } else
1157 WARN_ON(1);
1158
1159 /* set CSR_HW_CONFIG_REG for uCode use */
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001160 iwl_set_bit(priv->trans, CSR_HW_IF_CONFIG_REG,
Wey-Yi Guy86cb3b42011-06-14 15:23:39 -07001161 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
1162 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
1163}