blob: c84a0299d43e0f12b3ad80128eea8838cb2bb2ff [file] [log] [blame]
Eran Harary503ab8c2013-11-20 07:28:58 +02001/******************************************************************************
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 *
8 * Copyright(c) 2014 Intel Corporation. All rights reserved.
Eran Harary4fb06282015-04-19 10:05:18 +03009 * Copyright(c) 2014 - 2015 Intel Mobile Communications GmbH
Eran Harary503ab8c2013-11-20 07:28:58 +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
13 * published by the Free Software Foundation.
14 *
15 * 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.
19 *
20 * 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
24 *
25 * The full GNU General Public License is included in this distribution
26 * in the file called COPYING.
27 *
28 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020029 * Intel Linux Wireless <linuxwifi@intel.com>
Eran Harary503ab8c2013-11-20 07:28:58 +020030 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
34 * Copyright(c) 2014 Intel Corporation. All rights reserved.
Eran Harary4fb06282015-04-19 10:05:18 +030035 * Copyright(c) 2014 - 2015 Intel Mobile Communications GmbH
Eran Harary503ab8c2013-11-20 07:28:58 +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 *
64 *****************************************************************************/
65
66#include <linux/module.h>
67#include <linux/stringify.h>
68#include "iwl-config.h"
69#include "iwl-agn-hw.h"
70
71/* Highest firmware API version supported */
Emmanuel Grumbachf370f5c2016-01-05 16:30:04 +020072#define IWL8000_UCODE_API_MAX 20
Eran Harary503ab8c2013-11-20 07:28:58 +020073
74/* Oldest version we won't warn about */
Emmanuel Grumbach3c1f84a2015-08-26 13:48:55 +030075#define IWL8000_UCODE_API_OK 13
Eran Harary503ab8c2013-11-20 07:28:58 +020076
77/* Lowest firmware API version supported */
Emmanuel Grumbach3c1f84a2015-08-26 13:48:55 +030078#define IWL8000_UCODE_API_MIN 13
Eran Harary503ab8c2013-11-20 07:28:58 +020079
80/* NVM versions */
81#define IWL8000_NVM_VERSION 0x0a1d
82#define IWL8000_TX_POWER_VERSION 0xffff /* meaningless */
83
Liad Kaufmanaddfaad2014-12-02 11:16:04 +020084/* Memory offsets and lengths */
Liad Kaufmanf53bf4c2014-12-01 10:44:18 +020085#define IWL8260_DCCM_OFFSET 0x800000
86#define IWL8260_DCCM_LEN 0x18000
Ido Yariv86138322014-12-10 12:39:27 -050087#define IWL8260_DCCM2_OFFSET 0x880000
88#define IWL8260_DCCM2_LEN 0x8000
Liad Kaufmanaddfaad2014-12-02 11:16:04 +020089#define IWL8260_SMEM_OFFSET 0x400000
90#define IWL8260_SMEM_LEN 0x68000
Liad Kaufmanf53bf4c2014-12-01 10:44:18 +020091
Liad Kaufman2bf65082014-09-18 17:22:58 +030092#define IWL8000_FW_PRE "iwlwifi-8000"
Liad Kaufman405b7332014-09-23 15:15:17 +030093#define IWL8000_MODULE_FIRMWARE(api) \
94 IWL8000_FW_PRE "-" __stringify(api) ".ucode"
Eran Harary503ab8c2013-11-20 07:28:58 +020095
Eran Hararyae2b21b2014-01-09 08:08:24 +020096#define NVM_HW_SECTION_NUM_FAMILY_8000 10
Eran Hararyd383c742015-03-24 10:59:46 +020097#define DEFAULT_NVM_FILE_FAMILY_8000B "nvmData-8000B"
98#define DEFAULT_NVM_FILE_FAMILY_8000C "nvmData-8000C"
Eran Hararyae2b21b2014-01-09 08:08:24 +020099
Alexander Bondar9d012d02015-06-04 10:32:43 +0300100/* Max SDIO RX/TX aggregation sizes of the ADDBA request/response */
101#define MAX_RX_AGG_SIZE_8260_SDIO 21
102#define MAX_TX_AGG_SIZE_8260_SDIO 40
Oren Givon745160e2014-06-16 10:54:52 +0300103
Eran Hararyc064ddf2014-09-30 06:42:06 +0200104/* Max A-MPDU exponent for HT and VHT */
105#define MAX_HT_AMPDU_EXPONENT_8260_SDIO IEEE80211_HT_MAX_AMPDU_32K
106#define MAX_VHT_AMPDU_EXPONENT_8260_SDIO IEEE80211_VHT_MAX_AMPDU_32K
107
Eran Harary503ab8c2013-11-20 07:28:58 +0200108static const struct iwl_base_params iwl8000_base_params = {
Eran Harary30085542014-04-22 10:47:48 +0300109 .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_8000,
Liad Kaufman79f68282015-08-24 16:23:58 +0300110 .num_of_queues = 31,
Eran Harary503ab8c2013-11-20 07:28:58 +0200111 .pll_cfg_val = 0,
112 .shadow_ram_support = true,
113 .led_compensation = 57,
114 .wd_timeout = IWL_LONG_WD_TIMEOUT,
115 .max_event_log_size = 512,
116 .shadow_reg_enable = true,
117 .pcie_l1_allowed = true,
118};
119
120static const struct iwl_ht_params iwl8000_ht_params = {
Eyal Shapirab2603622014-10-23 15:30:47 +0300121 .stbc = true,
Eyal Shapira099d8082014-08-28 02:33:05 +0300122 .ldpc = true,
Eran Harary503ab8c2013-11-20 07:28:58 +0200123 .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
124};
125
Ido Yariv8ce7db42015-05-04 23:01:46 -0400126static const struct iwl_tt_params iwl8000_tt_params = {
127 .ct_kill_entry = 115,
128 .ct_kill_exit = 93,
129 .ct_kill_duration = 5,
130 .dynamic_smps_entry = 111,
131 .dynamic_smps_exit = 107,
132 .tx_protection_entry = 112,
133 .tx_protection_exit = 105,
134 .tx_backoff = {
135 {.temperature = 110, .backoff = 200},
136 {.temperature = 111, .backoff = 600},
137 {.temperature = 112, .backoff = 1200},
138 {.temperature = 113, .backoff = 2000},
139 {.temperature = 114, .backoff = 4000},
140 },
141 .support_ct_kill = true,
142 .support_dynamic_smps = true,
143 .support_tx_protection = true,
144 .support_tx_backoff = true,
145};
146
Eran Harary4fb06282015-04-19 10:05:18 +0300147#define IWL_DEVICE_8000 \
148 .ucode_api_max = IWL8000_UCODE_API_MAX, \
149 .ucode_api_ok = IWL8000_UCODE_API_OK, \
150 .ucode_api_min = IWL8000_UCODE_API_MIN, \
151 .device_family = IWL_DEVICE_FAMILY_8000, \
152 .max_inst_size = IWL60_RTC_INST_SIZE, \
153 .max_data_size = IWL60_RTC_DATA_SIZE, \
154 .base_params = &iwl8000_base_params, \
155 .led_mode = IWL_LED_RF_STATE, \
156 .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_8000, \
Avri Altman93190fb2014-12-27 09:09:47 +0200157 .features = NETIF_F_RXCSUM, \
Eran Harary4fb06282015-04-19 10:05:18 +0300158 .non_shared_ant = ANT_A, \
159 .dccm_offset = IWL8260_DCCM_OFFSET, \
160 .dccm_len = IWL8260_DCCM_LEN, \
161 .dccm2_offset = IWL8260_DCCM2_OFFSET, \
162 .dccm2_len = IWL8260_DCCM2_LEN, \
163 .smem_offset = IWL8260_SMEM_OFFSET, \
164 .smem_len = IWL8260_SMEM_LEN, \
165 .default_nvm_file_B_step = DEFAULT_NVM_FILE_FAMILY_8000B, \
Ido Yariv8ce7db42015-05-04 23:01:46 -0400166 .default_nvm_file_C_step = DEFAULT_NVM_FILE_FAMILY_8000C, \
Avri Altman95411d02015-05-11 11:04:34 +0300167 .thermal_params = &iwl8000_tt_params, \
168 .apmg_not_supported = true
Eran Harary503ab8c2013-11-20 07:28:58 +0200169
Oren Givond4200cb2014-09-04 09:16:49 +0200170const struct iwl_cfg iwl8260_2n_cfg = {
171 .name = "Intel(R) Dual Band Wireless N 8260",
172 .fw_name_pre = IWL8000_FW_PRE,
173 IWL_DEVICE_8000,
174 .ht_params = &iwl8000_ht_params,
175 .nvm_ver = IWL8000_NVM_VERSION,
176 .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
177};
178
Eran Harary503ab8c2013-11-20 07:28:58 +0200179const struct iwl_cfg iwl8260_2ac_cfg = {
180 .name = "Intel(R) Dual Band Wireless AC 8260",
181 .fw_name_pre = IWL8000_FW_PRE,
182 IWL_DEVICE_8000,
183 .ht_params = &iwl8000_ht_params,
184 .nvm_ver = IWL8000_NVM_VERSION,
185 .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
Eran Hararyc064ddf2014-09-30 06:42:06 +0200186 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
Eran Harary503ab8c2013-11-20 07:28:58 +0200187};
188
Oren Givonabf10f82015-11-01 15:27:58 +0200189const struct iwl_cfg iwl8265_2ac_cfg = {
190 .name = "Intel(R) Dual Band Wireless AC 8265",
191 .fw_name_pre = IWL8000_FW_PRE,
192 IWL_DEVICE_8000,
193 .ht_params = &iwl8000_ht_params,
194 .nvm_ver = IWL8000_NVM_VERSION,
195 .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
196 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
197};
198
Oren Givon9b8a7a92014-12-23 10:39:48 +0200199const struct iwl_cfg iwl4165_2ac_cfg = {
200 .name = "Intel(R) Dual Band Wireless AC 4165",
201 .fw_name_pre = IWL8000_FW_PRE,
202 IWL_DEVICE_8000,
203 .ht_params = &iwl8000_ht_params,
204 .nvm_ver = IWL8000_NVM_VERSION,
205 .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
206 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
207};
208
Eran Harary52ab4c82014-06-01 14:55:21 +0300209const struct iwl_cfg iwl8260_2ac_sdio_cfg = {
Ariej Marjieh9d913562014-02-03 23:34:47 +0200210 .name = "Intel(R) Dual Band Wireless-AC 8260",
211 .fw_name_pre = IWL8000_FW_PRE,
212 IWL_DEVICE_8000,
213 .ht_params = &iwl8000_ht_params,
214 .nvm_ver = IWL8000_NVM_VERSION,
215 .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
Oren Givon745160e2014-06-16 10:54:52 +0300216 .max_rx_agg_size = MAX_RX_AGG_SIZE_8260_SDIO,
Alexander Bondar9d012d02015-06-04 10:32:43 +0300217 .max_tx_agg_size = MAX_TX_AGG_SIZE_8260_SDIO,
Eran Harary161bdb72014-07-27 08:03:06 +0300218 .disable_dummy_notification = true,
Eran Hararyc064ddf2014-09-30 06:42:06 +0200219 .max_ht_ampdu_exponent = MAX_HT_AMPDU_EXPONENT_8260_SDIO,
220 .max_vht_ampdu_exponent = MAX_VHT_AMPDU_EXPONENT_8260_SDIO,
Ariej Marjieh9d913562014-02-03 23:34:47 +0200221};
222
Oren Givon773cb0252014-12-01 11:40:46 +0200223const struct iwl_cfg iwl4165_2ac_sdio_cfg = {
224 .name = "Intel(R) Dual Band Wireless-AC 4165",
Oren Givon3c4e2992014-10-14 11:26:52 +0300225 .fw_name_pre = IWL8000_FW_PRE,
226 IWL_DEVICE_8000,
227 .ht_params = &iwl8000_ht_params,
228 .nvm_ver = IWL8000_NVM_VERSION,
229 .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
Oren Givon3c4e2992014-10-14 11:26:52 +0300230 .max_rx_agg_size = MAX_RX_AGG_SIZE_8260_SDIO,
Alexander Bondar9d012d02015-06-04 10:32:43 +0300231 .max_tx_agg_size = MAX_TX_AGG_SIZE_8260_SDIO,
Oren Givon3c4e2992014-10-14 11:26:52 +0300232 .bt_shared_single_ant = true,
233 .disable_dummy_notification = true,
234 .max_ht_ampdu_exponent = MAX_HT_AMPDU_EXPONENT_8260_SDIO,
235 .max_vht_ampdu_exponent = MAX_VHT_AMPDU_EXPONENT_8260_SDIO,
236};
237
Eran Harary503ab8c2013-11-20 07:28:58 +0200238MODULE_FIRMWARE(IWL8000_MODULE_FIRMWARE(IWL8000_UCODE_API_OK));