blob: 2e823bdc4757b15ab16c743ec8f7617d54ff91b2 [file] [log] [blame]
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -08001/******************************************************************************
2 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02003 * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -08004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
Emmanuel Grumbachd01c5362015-11-17 15:39:56 +020022 * Intel Linux Wireless <linuxwifi@intel.com>
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080023 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080027#include <linux/module.h>
Evgeni Golov8fcbd4dc2011-06-12 05:34:31 -070028#include <linux/stringify.h>
Johannes Berge9676692012-04-10 14:10:28 -070029#include "iwl-config.h"
Johannes Berg0db19cd2012-04-03 20:57:59 +020030#include "iwl-agn-hw.h"
Johannes Berg1023fdc2012-05-15 12:16:34 +020031#include "dvm/commands.h" /* needed for BT for now */
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080032
33/* Highest firmware API version supported */
Johannes Bergca9a4602011-07-23 10:24:45 -070034#define IWL2030_UCODE_API_MAX 6
35#define IWL2000_UCODE_API_MAX 6
36#define IWL105_UCODE_API_MAX 6
37#define IWL135_UCODE_API_MAX 6
38
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080039/* Lowest firmware API version supported */
40#define IWL2030_UCODE_API_MIN 5
41#define IWL2000_UCODE_API_MIN 5
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -070042#define IWL105_UCODE_API_MIN 5
Wey-Yi Guy54e9c402011-07-01 07:47:59 -070043#define IWL135_UCODE_API_MIN 5
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080044
Johannes Berg586aed92012-04-03 20:41:07 +020045/* EEPROM version */
46#define EEPROM_2000_TX_POWER_VERSION (6)
47#define EEPROM_2000_EEPROM_VERSION (0x805)
48
49
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080050#define IWL2030_FW_PRE "iwlwifi-2030-"
Evgeni Golov8fcbd4dc2011-06-12 05:34:31 -070051#define IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE __stringify(api) ".ucode"
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080052
53#define IWL2000_FW_PRE "iwlwifi-2000-"
Evgeni Golov8fcbd4dc2011-06-12 05:34:31 -070054#define IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE __stringify(api) ".ucode"
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080055
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -070056#define IWL105_FW_PRE "iwlwifi-105-"
Evgeni Golov8fcbd4dc2011-06-12 05:34:31 -070057#define IWL105_MODULE_FIRMWARE(api) IWL105_FW_PRE __stringify(api) ".ucode"
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080058
Wey-Yi Guy54e9c402011-07-01 07:47:59 -070059#define IWL135_FW_PRE "iwlwifi-135-"
Fry, Donald H5092e472011-09-15 11:46:37 -070060#define IWL135_MODULE_FIRMWARE(api) IWL135_FW_PRE __stringify(api) ".ucode"
Wey-Yi Guy54e9c402011-07-01 07:47:59 -070061
Johannes Berg6794f3e2012-03-06 13:30:56 -080062static const struct iwl_base_params iwl2000_base_params = {
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080063 .eeprom_size = OTP_LOW_IMAGE_SIZE,
64 .num_of_queues = IWLAGN_NUM_QUEUES,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080065 .pll_cfg_val = 0,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080066 .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
67 .shadow_ram_support = true,
68 .led_compensation = 51,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080069 .wd_timeout = IWL_DEF_WD_TIMEOUT,
70 .max_event_log_size = 512,
Meenakshi Venkataraman66a77072012-05-16 22:35:59 +020071 .shadow_reg_enable = false, /* TODO: fix bugs using this feature */
Emmanuel Grumbache03bbb62014-04-13 10:49:16 +030072 .scd_chain_ext_wa = true,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080073};
74
75
Johannes Berg6794f3e2012-03-06 13:30:56 -080076static const struct iwl_base_params iwl2030_base_params = {
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080077 .eeprom_size = OTP_LOW_IMAGE_SIZE,
78 .num_of_queues = IWLAGN_NUM_QUEUES,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080079 .pll_cfg_val = 0,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080080 .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
81 .shadow_ram_support = true,
82 .led_compensation = 57,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080083 .wd_timeout = IWL_LONG_WD_TIMEOUT,
84 .max_event_log_size = 512,
Meenakshi Venkataraman66a77072012-05-16 22:35:59 +020085 .shadow_reg_enable = false, /* TODO: fix bugs using this feature */
Emmanuel Grumbache03bbb62014-04-13 10:49:16 +030086 .scd_chain_ext_wa = true,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080087};
88
Johannes Berg6794f3e2012-03-06 13:30:56 -080089static const struct iwl_ht_params iwl2000_ht_params = {
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080090 .ht_greenfield_support = true,
91 .use_rts_for_aggregation = true, /* use rts/cts protection */
Johannes Berg57fbcce2016-04-12 15:56:15 +020092 .ht40_bands = BIT(NL80211_BAND_2GHZ),
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080093};
94
Johannes Berg26a7ca92012-05-21 11:55:54 +020095static const struct iwl_eeprom_params iwl20x0_eeprom_params = {
96 .regulatory_bands = {
97 EEPROM_REG_BAND_1_CHANNELS,
98 EEPROM_REG_BAND_2_CHANNELS,
99 EEPROM_REG_BAND_3_CHANNELS,
100 EEPROM_REG_BAND_4_CHANNELS,
101 EEPROM_REG_BAND_5_CHANNELS,
102 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
103 EEPROM_REGULATORY_BAND_NO_HT40,
104 },
105 .enhanced_txpower = true,
106};
107
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800108#define IWL_DEVICE_2000 \
109 .fw_name_pre = IWL2000_FW_PRE, \
110 .ucode_api_max = IWL2000_UCODE_API_MAX, \
111 .ucode_api_min = IWL2000_UCODE_API_MIN, \
Johannes Berg2d771cb2012-04-09 17:47:00 -0700112 .device_family = IWL_DEVICE_FAMILY_2000, \
Emmanuel Grumbachdae66d02012-02-07 12:56:26 +0200113 .max_inst_size = IWL60_RTC_INST_SIZE, \
114 .max_data_size = IWL60_RTC_DATA_SIZE, \
Johannes Berg0d8877a2013-05-17 10:36:29 +0200115 .nvm_ver = EEPROM_2000_EEPROM_VERSION, \
116 .nvm_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800117 .base_params = &iwl2000_base_params, \
Johannes Berg26a7ca92012-05-21 11:55:54 +0200118 .eeprom_params = &iwl20x0_eeprom_params, \
Emmanuel Grumbach540623c2015-02-23 02:40:07 +0200119 .led_mode = IWL_LED_RF_STATE, \
120 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
121
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800122
Johannes Berg706c4ff2012-03-05 11:24:33 -0800123const struct iwl_cfg iwl2000_2bgn_cfg = {
Don Fry6195d132011-12-06 10:42:41 -0800124 .name = "Intel(R) Centrino(R) Wireless-N 2200 BGN",
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800125 IWL_DEVICE_2000,
126 .ht_params = &iwl2000_ht_params,
127};
128
Johannes Berg706c4ff2012-03-05 11:24:33 -0800129const struct iwl_cfg iwl2000_2bgn_d_cfg = {
Don Fry6195d132011-12-06 10:42:41 -0800130 .name = "Intel(R) Centrino(R) Wireless-N 2200D BGN",
Wey-Yi Guy1603dd42011-08-25 23:11:17 -0700131 IWL_DEVICE_2000,
Wey-Yi Guyec8f7342011-09-06 09:31:23 -0700132 .ht_params = &iwl2000_ht_params,
Wey-Yi Guy1603dd42011-08-25 23:11:17 -0700133};
134
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800135#define IWL_DEVICE_2030 \
136 .fw_name_pre = IWL2030_FW_PRE, \
137 .ucode_api_max = IWL2030_UCODE_API_MAX, \
138 .ucode_api_min = IWL2030_UCODE_API_MIN, \
Johannes Berg2d771cb2012-04-09 17:47:00 -0700139 .device_family = IWL_DEVICE_FAMILY_2030, \
Emmanuel Grumbachdae66d02012-02-07 12:56:26 +0200140 .max_inst_size = IWL60_RTC_INST_SIZE, \
141 .max_data_size = IWL60_RTC_DATA_SIZE, \
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200142 .nvm_ver = EEPROM_2000_EEPROM_VERSION, \
143 .nvm_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800144 .base_params = &iwl2030_base_params, \
Johannes Berg26a7ca92012-05-21 11:55:54 +0200145 .eeprom_params = &iwl20x0_eeprom_params, \
Emmanuel Grumbach540623c2015-02-23 02:40:07 +0200146 .led_mode = IWL_LED_RF_STATE, \
147 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800148
Johannes Berg706c4ff2012-03-05 11:24:33 -0800149const struct iwl_cfg iwl2030_2bgn_cfg = {
Don Fry6195d132011-12-06 10:42:41 -0800150 .name = "Intel(R) Centrino(R) Wireless-N 2230 BGN",
Wey-Yi Guy96234cc2011-01-24 11:44:42 -0800151 IWL_DEVICE_2030,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800152 .ht_params = &iwl2000_ht_params,
153};
154
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700155#define IWL_DEVICE_105 \
156 .fw_name_pre = IWL105_FW_PRE, \
157 .ucode_api_max = IWL105_UCODE_API_MAX, \
158 .ucode_api_min = IWL105_UCODE_API_MIN, \
Johannes Berg2d771cb2012-04-09 17:47:00 -0700159 .device_family = IWL_DEVICE_FAMILY_105, \
Emmanuel Grumbachdae66d02012-02-07 12:56:26 +0200160 .max_inst_size = IWL60_RTC_INST_SIZE, \
161 .max_data_size = IWL60_RTC_DATA_SIZE, \
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200162 .nvm_ver = EEPROM_2000_EEPROM_VERSION, \
163 .nvm_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800164 .base_params = &iwl2000_base_params, \
Johannes Berg26a7ca92012-05-21 11:55:54 +0200165 .eeprom_params = &iwl20x0_eeprom_params, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800166 .led_mode = IWL_LED_RF_STATE, \
Emmanuel Grumbach540623c2015-02-23 02:40:07 +0200167 .rx_with_siso_diversity = true, \
168 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800169
Johannes Berg706c4ff2012-03-05 11:24:33 -0800170const struct iwl_cfg iwl105_bgn_cfg = {
Don Fry6195d132011-12-06 10:42:41 -0800171 .name = "Intel(R) Centrino(R) Wireless-N 105 BGN",
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700172 IWL_DEVICE_105,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800173 .ht_params = &iwl2000_ht_params,
174};
175
Johannes Berg706c4ff2012-03-05 11:24:33 -0800176const struct iwl_cfg iwl105_bgn_d_cfg = {
Don Fry6195d132011-12-06 10:42:41 -0800177 .name = "Intel(R) Centrino(R) Wireless-N 105D BGN",
Wey-Yi Guyb319d3e2011-10-10 07:27:01 -0700178 IWL_DEVICE_105,
179 .ht_params = &iwl2000_ht_params,
180};
181
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700182#define IWL_DEVICE_135 \
Wey-Yi Guy54e9c402011-07-01 07:47:59 -0700183 .fw_name_pre = IWL135_FW_PRE, \
184 .ucode_api_max = IWL135_UCODE_API_MAX, \
185 .ucode_api_min = IWL135_UCODE_API_MIN, \
Johannes Berg2d771cb2012-04-09 17:47:00 -0700186 .device_family = IWL_DEVICE_FAMILY_135, \
Emmanuel Grumbachdae66d02012-02-07 12:56:26 +0200187 .max_inst_size = IWL60_RTC_INST_SIZE, \
188 .max_data_size = IWL60_RTC_DATA_SIZE, \
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200189 .nvm_ver = EEPROM_2000_EEPROM_VERSION, \
190 .nvm_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800191 .base_params = &iwl2030_base_params, \
Johannes Berg26a7ca92012-05-21 11:55:54 +0200192 .eeprom_params = &iwl20x0_eeprom_params, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800193 .led_mode = IWL_LED_RF_STATE, \
Emmanuel Grumbach540623c2015-02-23 02:40:07 +0200194 .rx_with_siso_diversity = true, \
195 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800196
Johannes Berg706c4ff2012-03-05 11:24:33 -0800197const struct iwl_cfg iwl135_bgn_cfg = {
Don Fry6195d132011-12-06 10:42:41 -0800198 .name = "Intel(R) Centrino(R) Wireless-N 135 BGN",
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700199 IWL_DEVICE_135,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800200 .ht_params = &iwl2000_ht_params,
201};
202
Emmanuel Grumbach9d9b21d2016-03-24 08:44:57 +0200203MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX));
204MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX));
205MODULE_FIRMWARE(IWL105_MODULE_FIRMWARE(IWL105_UCODE_API_MAX));
206MODULE_FIRMWARE(IWL135_MODULE_FIRMWARE(IWL135_UCODE_API_MAX));