blob: 79c8f74685d555609a7f5b75932ddb07c585a58d [file] [log] [blame]
Johannes Berg99cd4712013-01-24 13:52:01 +01001/******************************************************************************
2 *
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +02003 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
Johannes Berg99cd4712013-01-24 13:52:01 +01005 *
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +02006 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
Johannes Berg99cd4712013-01-24 13:52:01 +010013 * published by the Free Software Foundation.
14 *
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020015 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
Johannes Berg99cd4712013-01-24 13:52:01 +010019 *
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020020 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
Johannes Berg99cd4712013-01-24 13:52:01 +010024 *
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020025 * The full GNU General Public License is included in this distribution
26 * in the file called COPYING.
Johannes Berg99cd4712013-01-24 13:52:01 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020032 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
Johannes Berg99cd4712013-01-24 13:52:01 +010064 *****************************************************************************/
65
66#include <linux/module.h>
67#include <linux/stringify.h>
68#include "iwl-config.h"
69#include "iwl-agn-hw.h"
Johannes Berg99cd4712013-01-24 13:52:01 +010070
71/* Highest firmware API version supported */
Emmanuel Grumbachd88c8952014-09-01 09:50:14 +030072#define IWL7260_UCODE_API_MAX 10
73#define IWL3160_UCODE_API_MAX 10
Johannes Berg99cd4712013-01-24 13:52:01 +010074
75/* Oldest version we won't warn about */
Emmanuel Grumbachf0d5bb02014-04-09 19:34:19 +030076#define IWL7260_UCODE_API_OK 9
77#define IWL3160_UCODE_API_OK 9
Johannes Berg99cd4712013-01-24 13:52:01 +010078
79/* Lowest firmware API version supported */
Emmanuel Grumbachc13b1722014-03-27 19:12:12 +020080#define IWL7260_UCODE_API_MIN 8
81#define IWL3160_UCODE_API_MIN 8
Johannes Berg99cd4712013-01-24 13:52:01 +010082
83/* NVM versions */
84#define IWL7260_NVM_VERSION 0x0a1d
85#define IWL7260_TX_POWER_VERSION 0xffff /* meaningless */
86#define IWL3160_NVM_VERSION 0x709
87#define IWL3160_TX_POWER_VERSION 0xffff /* meaningless */
Oren Givon498abba2014-09-08 08:57:05 +030088#define IWL3165_NVM_VERSION 0x709
89#define IWL3165_TX_POWER_VERSION 0xffff /* meaningless */
Eran Hararyc4aee082013-10-08 08:03:07 +020090#define IWL7265_NVM_VERSION 0x0a1d
91#define IWL7265_TX_POWER_VERSION 0xffff /* meaningless */
Johannes Berg99cd4712013-01-24 13:52:01 +010092
93#define IWL7260_FW_PRE "iwlwifi-7260-"
94#define IWL7260_MODULE_FIRMWARE(api) IWL7260_FW_PRE __stringify(api) ".ucode"
95
96#define IWL3160_FW_PRE "iwlwifi-3160-"
97#define IWL3160_MODULE_FIRMWARE(api) IWL3160_FW_PRE __stringify(api) ".ucode"
98
Oren Givon498abba2014-09-08 08:57:05 +030099#define IWL3165_FW_PRE "iwlwifi-3165-"
100#define IWL3165_MODULE_FIRMWARE(api) IWL3165_FW_PRE __stringify(api) ".ucode"
101
Eran Hararyc4aee082013-10-08 08:03:07 +0200102#define IWL7265_FW_PRE "iwlwifi-7265-"
103#define IWL7265_MODULE_FIRMWARE(api) IWL7265_FW_PRE __stringify(api) ".ucode"
104
Eran Hararyae2b21b2014-01-09 08:08:24 +0200105#define NVM_HW_SECTION_NUM_FAMILY_7000 0
106
Johannes Berg99cd4712013-01-24 13:52:01 +0100107static const struct iwl_base_params iwl7000_base_params = {
Eran Harary30085542014-04-22 10:47:48 +0300108 .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_7000,
Johannes Berg99cd4712013-01-24 13:52:01 +0100109 .num_of_queues = IWLAGN_NUM_QUEUES,
110 .pll_cfg_val = 0,
111 .shadow_ram_support = true,
112 .led_compensation = 57,
Johannes Berg99cd4712013-01-24 13:52:01 +0100113 .wd_timeout = IWL_LONG_WD_TIMEOUT,
114 .max_event_log_size = 512,
Emmanuel Grumbachb4152102013-05-01 09:42:06 +0300115 .shadow_reg_enable = true,
Emmanuel Grumbachf2532b02013-07-02 15:47:29 +0300116 .pcie_l1_allowed = true,
Emmanuel Grumbache7f76342014-03-25 10:00:31 +0200117 .apmg_wake_up_wa = true,
Johannes Berg99cd4712013-01-24 13:52:01 +0100118};
119
120static const struct iwl_ht_params iwl7000_ht_params = {
Eyal Shapira183d2812013-11-12 22:37:28 +0200121 .stbc = true,
Johannes Berg99cd4712013-01-24 13:52:01 +0100122 .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
123};
124
125#define IWL_DEVICE_7000 \
126 .ucode_api_max = IWL7260_UCODE_API_MAX, \
127 .ucode_api_ok = IWL7260_UCODE_API_OK, \
128 .ucode_api_min = IWL7260_UCODE_API_MIN, \
129 .device_family = IWL_DEVICE_FAMILY_7000, \
130 .max_inst_size = IWL60_RTC_INST_SIZE, \
131 .max_data_size = IWL60_RTC_DATA_SIZE, \
132 .base_params = &iwl7000_base_params, \
Eran Hararyae2b21b2014-01-09 08:08:24 +0200133 .led_mode = IWL_LED_RF_STATE, \
134 .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_7000
Johannes Berg99cd4712013-01-24 13:52:01 +0100135
136
137const struct iwl_cfg iwl7260_2ac_cfg = {
Oren Givon93fc6412013-04-23 18:19:11 +0300138 .name = "Intel(R) Dual Band Wireless AC 7260",
Johannes Berg99cd4712013-01-24 13:52:01 +0100139 .fw_name_pre = IWL7260_FW_PRE,
140 IWL_DEVICE_7000,
141 .ht_params = &iwl7000_ht_params,
142 .nvm_ver = IWL7260_NVM_VERSION,
143 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
Emmanuel Grumbach6960a052013-11-11 15:23:01 +0200144 .host_interrupt_operation_mode = true,
Alexander Bondara812cba2014-02-18 16:45:00 +0100145 .lp_xtal_workaround = true,
Johannes Berg99cd4712013-01-24 13:52:01 +0100146};
147
Eytan Lifshitz6be497f2013-07-24 14:49:18 +0300148const struct iwl_cfg iwl7260_2ac_cfg_high_temp = {
149 .name = "Intel(R) Dual Band Wireless AC 7260",
150 .fw_name_pre = IWL7260_FW_PRE,
151 IWL_DEVICE_7000,
152 .ht_params = &iwl7000_ht_params,
153 .nvm_ver = IWL7260_NVM_VERSION,
154 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
155 .high_temp = true,
Emmanuel Grumbach6960a052013-11-11 15:23:01 +0200156 .host_interrupt_operation_mode = true,
Alexander Bondara812cba2014-02-18 16:45:00 +0100157 .lp_xtal_workaround = true,
Eytan Lifshitz6be497f2013-07-24 14:49:18 +0300158};
159
Oren Givon93fc6412013-04-23 18:19:11 +0300160const struct iwl_cfg iwl7260_2n_cfg = {
161 .name = "Intel(R) Dual Band Wireless N 7260",
162 .fw_name_pre = IWL7260_FW_PRE,
163 IWL_DEVICE_7000,
164 .ht_params = &iwl7000_ht_params,
165 .nvm_ver = IWL7260_NVM_VERSION,
166 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
Emmanuel Grumbach6960a052013-11-11 15:23:01 +0200167 .host_interrupt_operation_mode = true,
Alexander Bondara812cba2014-02-18 16:45:00 +0100168 .lp_xtal_workaround = true,
Oren Givon93fc6412013-04-23 18:19:11 +0300169};
170
171const struct iwl_cfg iwl7260_n_cfg = {
172 .name = "Intel(R) Wireless N 7260",
173 .fw_name_pre = IWL7260_FW_PRE,
174 IWL_DEVICE_7000,
175 .ht_params = &iwl7000_ht_params,
176 .nvm_ver = IWL7260_NVM_VERSION,
177 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
Emmanuel Grumbach6960a052013-11-11 15:23:01 +0200178 .host_interrupt_operation_mode = true,
Alexander Bondara812cba2014-02-18 16:45:00 +0100179 .lp_xtal_workaround = true,
Oren Givon93fc6412013-04-23 18:19:11 +0300180};
181
182const struct iwl_cfg iwl3160_2ac_cfg = {
183 .name = "Intel(R) Dual Band Wireless AC 3160",
184 .fw_name_pre = IWL3160_FW_PRE,
185 IWL_DEVICE_7000,
186 .ht_params = &iwl7000_ht_params,
187 .nvm_ver = IWL3160_NVM_VERSION,
188 .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
Emmanuel Grumbach6960a052013-11-11 15:23:01 +0200189 .host_interrupt_operation_mode = true,
Oren Givon93fc6412013-04-23 18:19:11 +0300190};
191
192const struct iwl_cfg iwl3160_2n_cfg = {
193 .name = "Intel(R) Dual Band Wireless N 3160",
194 .fw_name_pre = IWL3160_FW_PRE,
195 IWL_DEVICE_7000,
196 .ht_params = &iwl7000_ht_params,
197 .nvm_ver = IWL3160_NVM_VERSION,
198 .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
Emmanuel Grumbach6960a052013-11-11 15:23:01 +0200199 .host_interrupt_operation_mode = true,
Oren Givon93fc6412013-04-23 18:19:11 +0300200};
201
202const struct iwl_cfg iwl3160_n_cfg = {
203 .name = "Intel(R) Wireless N 3160",
Johannes Berg99cd4712013-01-24 13:52:01 +0100204 .fw_name_pre = IWL3160_FW_PRE,
205 IWL_DEVICE_7000,
206 .ht_params = &iwl7000_ht_params,
207 .nvm_ver = IWL3160_NVM_VERSION,
208 .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
Emmanuel Grumbach6960a052013-11-11 15:23:01 +0200209 .host_interrupt_operation_mode = true,
Johannes Berg99cd4712013-01-24 13:52:01 +0100210};
211
Ido Yariv8e0dc202014-01-16 21:13:47 -0500212static const struct iwl_pwr_tx_backoff iwl7265_pwr_tx_backoffs[] = {
213 {.pwr = 1600, .backoff = 0},
214 {.pwr = 1300, .backoff = 467},
215 {.pwr = 900, .backoff = 1900},
216 {.pwr = 800, .backoff = 2630},
217 {.pwr = 700, .backoff = 3720},
218 {.pwr = 600, .backoff = 5550},
219 {.pwr = 500, .backoff = 9350},
220 {0},
221};
222
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300223static const struct iwl_ht_params iwl7265_ht_params = {
224 .stbc = true,
225 .ldpc = true,
226 .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
227};
228
Oren Givon498abba2014-09-08 08:57:05 +0300229const struct iwl_cfg iwl3165_2ac_cfg = {
230 .name = "Intel(R) Dual Band Wireless AC 3165",
231 .fw_name_pre = IWL3165_FW_PRE,
232 IWL_DEVICE_7000,
233 .ht_params = &iwl7000_ht_params,
234 .nvm_ver = IWL3165_NVM_VERSION,
235 .nvm_calib_ver = IWL3165_TX_POWER_VERSION,
236 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
237};
238
Eran Hararyc4aee082013-10-08 08:03:07 +0200239const struct iwl_cfg iwl7265_2ac_cfg = {
240 .name = "Intel(R) Dual Band Wireless AC 7265",
241 .fw_name_pre = IWL7265_FW_PRE,
242 IWL_DEVICE_7000,
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300243 .ht_params = &iwl7265_ht_params,
Eran Hararyc4aee082013-10-08 08:03:07 +0200244 .nvm_ver = IWL7265_NVM_VERSION,
245 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
Ido Yariv8e0dc202014-01-16 21:13:47 -0500246 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
Eran Hararyc4aee082013-10-08 08:03:07 +0200247};
248
Oren Givon53e88cb2013-11-19 03:48:19 +0200249const struct iwl_cfg iwl7265_2n_cfg = {
250 .name = "Intel(R) Dual Band Wireless N 7265",
251 .fw_name_pre = IWL7265_FW_PRE,
252 IWL_DEVICE_7000,
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300253 .ht_params = &iwl7265_ht_params,
Oren Givon53e88cb2013-11-19 03:48:19 +0200254 .nvm_ver = IWL7265_NVM_VERSION,
255 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
Ido Yariv8e0dc202014-01-16 21:13:47 -0500256 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
Oren Givon53e88cb2013-11-19 03:48:19 +0200257};
258
259const struct iwl_cfg iwl7265_n_cfg = {
260 .name = "Intel(R) Wireless N 7265",
261 .fw_name_pre = IWL7265_FW_PRE,
262 IWL_DEVICE_7000,
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300263 .ht_params = &iwl7265_ht_params,
Oren Givon53e88cb2013-11-19 03:48:19 +0200264 .nvm_ver = IWL7265_NVM_VERSION,
265 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
Ido Yariv8e0dc202014-01-16 21:13:47 -0500266 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
Oren Givon53e88cb2013-11-19 03:48:19 +0200267};
268
Johannes Berg99cd4712013-01-24 13:52:01 +0100269MODULE_FIRMWARE(IWL7260_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
270MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL3160_UCODE_API_OK));
Oren Givon498abba2014-09-08 08:57:05 +0300271MODULE_FIRMWARE(IWL3165_MODULE_FIRMWARE(IWL3160_UCODE_API_OK));
Emmanuel Grumbach08a732f2014-03-24 22:17:15 +0200272MODULE_FIRMWARE(IWL7265_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));