Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Wey-Yi Guy | 4e31826 | 2011-12-27 11:21:32 -0800 | [diff] [blame] | 3 | * Copyright(c) 2008 - 2012 Intel Corporation. All rights reserved. |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 4 | * |
| 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: |
| 22 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 24 | * |
| 25 | *****************************************************************************/ |
| 26 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 27 | #include <linux/module.h> |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 28 | #include <linux/stringify.h> |
Johannes Berg | e967669 | 2012-04-10 14:10:28 -0700 | [diff] [blame] | 29 | #include "iwl-config.h" |
Johannes Berg | cebcbd7 | 2011-09-15 11:46:46 -0700 | [diff] [blame] | 30 | #include "iwl-cfg.h" |
Johannes Berg | 0db19cd | 2012-04-03 20:57:59 +0200 | [diff] [blame^] | 31 | #include "iwl-agn-hw.h" |
| 32 | #include "iwl-commands.h" /* needed for BT for now */ |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 33 | |
| 34 | /* Highest firmware API version supported */ |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 35 | #define IWL6000_UCODE_API_MAX 6 |
Wey-Yi Guy | 62cb3c6 | 2010-09-28 17:43:10 -0700 | [diff] [blame] | 36 | #define IWL6050_UCODE_API_MAX 5 |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 37 | #define IWL6000G2_UCODE_API_MAX 6 |
| 38 | |
| 39 | /* Oldest version we won't warn about */ |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 40 | #define IWL6000_UCODE_API_OK 4 |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 41 | #define IWL6000G2_UCODE_API_OK 5 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 42 | |
| 43 | /* Lowest firmware API version supported */ |
Wey-Yi Guy | 4424642 | 2009-10-23 13:42:34 -0700 | [diff] [blame] | 44 | #define IWL6000_UCODE_API_MIN 4 |
| 45 | #define IWL6050_UCODE_API_MIN 4 |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 46 | #define IWL6000G2_UCODE_API_MIN 4 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 47 | |
Johannes Berg | 586aed9 | 2012-04-03 20:41:07 +0200 | [diff] [blame] | 48 | /* EEPROM versions */ |
| 49 | #define EEPROM_6000_TX_POWER_VERSION (4) |
| 50 | #define EEPROM_6000_EEPROM_VERSION (0x423) |
| 51 | #define EEPROM_6050_TX_POWER_VERSION (4) |
| 52 | #define EEPROM_6050_EEPROM_VERSION (0x532) |
| 53 | #define EEPROM_6150_TX_POWER_VERSION (6) |
| 54 | #define EEPROM_6150_EEPROM_VERSION (0x553) |
| 55 | #define EEPROM_6005_TX_POWER_VERSION (6) |
| 56 | #define EEPROM_6005_EEPROM_VERSION (0x709) |
| 57 | #define EEPROM_6030_TX_POWER_VERSION (6) |
| 58 | #define EEPROM_6030_EEPROM_VERSION (0x709) |
| 59 | #define EEPROM_6035_TX_POWER_VERSION (6) |
| 60 | #define EEPROM_6035_EEPROM_VERSION (0x753) |
| 61 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 62 | #define IWL6000_FW_PRE "iwlwifi-6000-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 63 | #define IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE __stringify(api) ".ucode" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 64 | |
| 65 | #define IWL6050_FW_PRE "iwlwifi-6050-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 66 | #define IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE __stringify(api) ".ucode" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 67 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 68 | #define IWL6005_FW_PRE "iwlwifi-6000g2a-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 69 | #define IWL6005_MODULE_FIRMWARE(api) IWL6005_FW_PRE __stringify(api) ".ucode" |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 70 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 71 | #define IWL6030_FW_PRE "iwlwifi-6000g2b-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 72 | #define IWL6030_MODULE_FIRMWARE(api) IWL6030_FW_PRE __stringify(api) ".ucode" |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 73 | |
Johannes Berg | 6794f3e | 2012-03-06 13:30:56 -0800 | [diff] [blame] | 74 | static const struct iwl_base_params iwl6000_base_params = { |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 75 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 76 | .num_of_queues = IWLAGN_NUM_QUEUES, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 77 | .pll_cfg_val = 0, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 78 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 79 | .shadow_ram_support = true, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 80 | .led_compensation = 51, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 81 | .adv_thermal_throttle = true, |
| 82 | .support_ct_kill_exit = true, |
| 83 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 84 | .chain_noise_scale = 1000, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 85 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 86 | .max_event_log_size = 512, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 87 | .shadow_reg_enable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
Johannes Berg | 6794f3e | 2012-03-06 13:30:56 -0800 | [diff] [blame] | 90 | static const struct iwl_base_params iwl6050_base_params = { |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 91 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 92 | .num_of_queues = IWLAGN_NUM_QUEUES, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 93 | .pll_cfg_val = 0, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 94 | .max_ll_items = OTP_MAX_LL_ITEMS_6x50, |
| 95 | .shadow_ram_support = true, |
| 96 | .led_compensation = 51, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 97 | .adv_thermal_throttle = true, |
| 98 | .support_ct_kill_exit = true, |
| 99 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 100 | .chain_noise_scale = 1500, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 101 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 102 | .max_event_log_size = 1024, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 103 | .shadow_reg_enable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 104 | }; |
Johannes Berg | 6794f3e | 2012-03-06 13:30:56 -0800 | [diff] [blame] | 105 | |
| 106 | static const struct iwl_base_params iwl6000_g2_base_params = { |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 107 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 108 | .num_of_queues = IWLAGN_NUM_QUEUES, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 109 | .pll_cfg_val = 0, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 110 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 111 | .shadow_ram_support = true, |
Wey-Yi Guy | 4fb3324 | 2010-11-29 10:45:16 -0800 | [diff] [blame] | 112 | .led_compensation = 57, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 113 | .adv_thermal_throttle = true, |
| 114 | .support_ct_kill_exit = true, |
| 115 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 116 | .chain_noise_scale = 1000, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 117 | .wd_timeout = IWL_LONG_WD_TIMEOUT, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 118 | .max_event_log_size = 512, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 119 | .shadow_reg_enable = true, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 120 | }; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 121 | |
Johannes Berg | 6794f3e | 2012-03-06 13:30:56 -0800 | [diff] [blame] | 122 | static const struct iwl_ht_params iwl6000_ht_params = { |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 123 | .ht_greenfield_support = true, |
| 124 | .use_rts_for_aggregation = true, /* use rts/cts protection */ |
| 125 | }; |
| 126 | |
Johannes Berg | 6794f3e | 2012-03-06 13:30:56 -0800 | [diff] [blame] | 127 | static const struct iwl_bt_params iwl6000_bt_params = { |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 128 | /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */ |
| 129 | .advanced_bt_coexist = true, |
Wey-Yi Guy | 66e863a5 | 2010-11-08 14:54:37 -0800 | [diff] [blame] | 130 | .agg_time_limit = BT_AGG_THRESHOLD_DEF, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 131 | .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE, |
| 132 | .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT, |
Wey-Yi Guy | e366176 | 2010-11-23 10:58:54 -0800 | [diff] [blame] | 133 | .bt_sco_disable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 136 | #define IWL_DEVICE_6005 \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 137 | .fw_name_pre = IWL6005_FW_PRE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 138 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 139 | .ucode_api_ok = IWL6000G2_UCODE_API_OK, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 140 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, \ |
Johannes Berg | 2d771cb | 2012-04-09 17:47:00 -0700 | [diff] [blame] | 141 | .device_family = IWL_DEVICE_FAMILY_6005, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 142 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 143 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 144 | .eeprom_ver = EEPROM_6005_EEPROM_VERSION, \ |
| 145 | .eeprom_calib_ver = EEPROM_6005_TX_POWER_VERSION, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 146 | .base_params = &iwl6000_g2_base_params, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 147 | .need_temp_offset_calib = true, \ |
| 148 | .led_mode = IWL_LED_RF_STATE |
| 149 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 150 | const struct iwl_cfg iwl6005_2agn_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 151 | .name = "Intel(R) Centrino(R) Advanced-N 6205 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 152 | IWL_DEVICE_6005, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 153 | .ht_params = &iwl6000_ht_params, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 154 | }; |
| 155 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 156 | const struct iwl_cfg iwl6005_2abg_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 157 | .name = "Intel(R) Centrino(R) Advanced-N 6205 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 158 | IWL_DEVICE_6005, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 159 | }; |
| 160 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 161 | const struct iwl_cfg iwl6005_2bg_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 162 | .name = "Intel(R) Centrino(R) Advanced-N 6205 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 163 | IWL_DEVICE_6005, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 164 | }; |
| 165 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 166 | const struct iwl_cfg iwl6005_2agn_sff_cfg = { |
Wey-Yi Guy | 6a9ae0d | 2011-08-25 23:10:56 -0700 | [diff] [blame] | 167 | .name = "Intel(R) Centrino(R) Advanced-N 6205S AGN", |
| 168 | IWL_DEVICE_6005, |
| 169 | .ht_params = &iwl6000_ht_params, |
| 170 | }; |
| 171 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 172 | const struct iwl_cfg iwl6005_2agn_d_cfg = { |
Wey-Yi Guy | 5131a60 | 2011-10-10 07:27:00 -0700 | [diff] [blame] | 173 | .name = "Intel(R) Centrino(R) Advanced-N 6205D AGN", |
| 174 | IWL_DEVICE_6005, |
| 175 | .ht_params = &iwl6000_ht_params, |
| 176 | }; |
| 177 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 178 | const struct iwl_cfg iwl6005_2agn_mow1_cfg = { |
Wey-Yi Guy | 3789112 | 2012-02-22 10:21:09 -0800 | [diff] [blame] | 179 | .name = "Intel(R) Centrino(R) Advanced-N 6206 AGN", |
| 180 | IWL_DEVICE_6005, |
| 181 | .ht_params = &iwl6000_ht_params, |
| 182 | }; |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 183 | |
| 184 | const struct iwl_cfg iwl6005_2agn_mow2_cfg = { |
Wey-Yi Guy | 3789112 | 2012-02-22 10:21:09 -0800 | [diff] [blame] | 185 | .name = "Intel(R) Centrino(R) Advanced-N 6207 AGN", |
| 186 | IWL_DEVICE_6005, |
| 187 | .ht_params = &iwl6000_ht_params, |
| 188 | }; |
| 189 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 190 | #define IWL_DEVICE_6030 \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 191 | .fw_name_pre = IWL6030_FW_PRE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 192 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 193 | .ucode_api_ok = IWL6000G2_UCODE_API_OK, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 194 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, \ |
Johannes Berg | 2d771cb | 2012-04-09 17:47:00 -0700 | [diff] [blame] | 195 | .device_family = IWL_DEVICE_FAMILY_6030, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 196 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 197 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 198 | .eeprom_ver = EEPROM_6030_EEPROM_VERSION, \ |
| 199 | .eeprom_calib_ver = EEPROM_6030_TX_POWER_VERSION, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 200 | .base_params = &iwl6000_g2_base_params, \ |
| 201 | .bt_params = &iwl6000_bt_params, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 202 | .need_temp_offset_calib = true, \ |
| 203 | .led_mode = IWL_LED_RF_STATE, \ |
Stanislaw Gruszka | cd017f2 | 2010-12-23 15:12:30 +0100 | [diff] [blame] | 204 | .adv_pm = true \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 205 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 206 | const struct iwl_cfg iwl6030_2agn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 207 | .name = "Intel(R) Centrino(R) Advanced-N 6230 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 208 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 209 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 210 | }; |
| 211 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 212 | const struct iwl_cfg iwl6030_2abg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 213 | .name = "Intel(R) Centrino(R) Advanced-N 6230 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 214 | IWL_DEVICE_6030, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 215 | }; |
| 216 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 217 | const struct iwl_cfg iwl6030_2bgn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 218 | .name = "Intel(R) Centrino(R) Advanced-N 6230 BGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 219 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 220 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 9f6e1ba | 2010-05-11 15:21:54 -0700 | [diff] [blame] | 221 | }; |
| 222 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 223 | const struct iwl_cfg iwl6030_2bg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 224 | .name = "Intel(R) Centrino(R) Advanced-N 6230 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 225 | IWL_DEVICE_6030, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 226 | }; |
| 227 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 228 | const struct iwl_cfg iwl6035_2agn_cfg = { |
Don Fry | 6195d13 | 2011-12-06 10:42:41 -0800 | [diff] [blame] | 229 | .name = "Intel(R) Centrino(R) Advanced-N 6235 AGN", |
Wey-Yi Guy | d103e34 | 2011-03-10 03:17:16 -0800 | [diff] [blame] | 230 | IWL_DEVICE_6030, |
| 231 | .ht_params = &iwl6000_ht_params, |
| 232 | }; |
| 233 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 234 | const struct iwl_cfg iwl1030_bgn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 235 | .name = "Intel(R) Centrino(R) Wireless-N 1030 BGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 236 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 237 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 238 | }; |
| 239 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 240 | const struct iwl_cfg iwl1030_bg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 241 | .name = "Intel(R) Centrino(R) Wireless-N 1030 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 242 | IWL_DEVICE_6030, |
| 243 | }; |
| 244 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 245 | const struct iwl_cfg iwl130_bgn_cfg = { |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 246 | .name = "Intel(R) Centrino(R) Wireless-N 130 BGN", |
| 247 | IWL_DEVICE_6030, |
| 248 | .ht_params = &iwl6000_ht_params, |
| 249 | .rx_with_siso_diversity = true, |
| 250 | }; |
| 251 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 252 | const struct iwl_cfg iwl130_bg_cfg = { |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 253 | .name = "Intel(R) Centrino(R) Wireless-N 130 BG", |
| 254 | IWL_DEVICE_6030, |
| 255 | .rx_with_siso_diversity = true, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 256 | }; |
| 257 | |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 258 | /* |
| 259 | * "i": Internal configuration, use internal Power Amplifier |
| 260 | */ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 261 | #define IWL_DEVICE_6000i \ |
| 262 | .fw_name_pre = IWL6000_FW_PRE, \ |
| 263 | .ucode_api_max = IWL6000_UCODE_API_MAX, \ |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 264 | .ucode_api_ok = IWL6000_UCODE_API_OK, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 265 | .ucode_api_min = IWL6000_UCODE_API_MIN, \ |
Johannes Berg | 2d771cb | 2012-04-09 17:47:00 -0700 | [diff] [blame] | 266 | .device_family = IWL_DEVICE_FAMILY_6000i, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 267 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 268 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 269 | .valid_tx_ant = ANT_BC, /* .cfg overwrite */ \ |
| 270 | .valid_rx_ant = ANT_BC, /* .cfg overwrite */ \ |
| 271 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, \ |
| 272 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 273 | .base_params = &iwl6000_base_params, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 274 | .led_mode = IWL_LED_BLINK |
| 275 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 276 | const struct iwl_cfg iwl6000i_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 277 | .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 278 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 279 | .ht_params = &iwl6000_ht_params, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 280 | }; |
| 281 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 282 | const struct iwl_cfg iwl6000i_2abg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 283 | .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 284 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 285 | }; |
| 286 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 287 | const struct iwl_cfg iwl6000i_2bg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 288 | .name = "Intel(R) Centrino(R) Advanced-N 6200 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 289 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 290 | }; |
| 291 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 292 | #define IWL_DEVICE_6050 \ |
| 293 | .fw_name_pre = IWL6050_FW_PRE, \ |
| 294 | .ucode_api_max = IWL6050_UCODE_API_MAX, \ |
| 295 | .ucode_api_min = IWL6050_UCODE_API_MIN, \ |
Johannes Berg | 2d771cb | 2012-04-09 17:47:00 -0700 | [diff] [blame] | 296 | .device_family = IWL_DEVICE_FAMILY_6050, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 297 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 298 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | ff458ed | 2011-01-31 13:56:03 -0800 | [diff] [blame] | 299 | .valid_tx_ant = ANT_AB, /* .cfg overwrite */ \ |
| 300 | .valid_rx_ant = ANT_AB, /* .cfg overwrite */ \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 301 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, \ |
| 302 | .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 303 | .base_params = &iwl6050_base_params, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 304 | .led_mode = IWL_LED_BLINK, \ |
| 305 | .internal_wimax_coex = true |
| 306 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 307 | const struct iwl_cfg iwl6050_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 308 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 309 | IWL_DEVICE_6050, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 310 | .ht_params = &iwl6000_ht_params, |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 311 | }; |
| 312 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 313 | const struct iwl_cfg iwl6050_2abg_cfg = { |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 314 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG", |
| 315 | IWL_DEVICE_6050, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 316 | }; |
| 317 | |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 318 | #define IWL_DEVICE_6150 \ |
| 319 | .fw_name_pre = IWL6050_FW_PRE, \ |
| 320 | .ucode_api_max = IWL6050_UCODE_API_MAX, \ |
| 321 | .ucode_api_min = IWL6050_UCODE_API_MIN, \ |
Johannes Berg | 2d771cb | 2012-04-09 17:47:00 -0700 | [diff] [blame] | 322 | .device_family = IWL_DEVICE_FAMILY_6150, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 323 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 324 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 325 | .eeprom_ver = EEPROM_6150_EEPROM_VERSION, \ |
| 326 | .eeprom_calib_ver = EEPROM_6150_TX_POWER_VERSION, \ |
| 327 | .base_params = &iwl6050_base_params, \ |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 328 | .led_mode = IWL_LED_BLINK, \ |
| 329 | .internal_wimax_coex = true |
| 330 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 331 | const struct iwl_cfg iwl6150_bgn_cfg = { |
Wey-Yi Guy | f9dc646 | 2010-11-17 12:13:52 -0800 | [diff] [blame] | 332 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN", |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 333 | IWL_DEVICE_6150, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 334 | .ht_params = &iwl6000_ht_params, |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 335 | }; |
| 336 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 337 | const struct iwl_cfg iwl6150_bg_cfg = { |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 338 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BG", |
| 339 | IWL_DEVICE_6150, |
Shanyu Zhao | 0326433 | 2010-06-29 17:27:27 -0700 | [diff] [blame] | 340 | }; |
| 341 | |
Johannes Berg | 706c4ff | 2012-03-05 11:24:33 -0800 | [diff] [blame] | 342 | const struct iwl_cfg iwl6000_3agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 343 | .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN", |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 344 | .fw_name_pre = IWL6000_FW_PRE, |
| 345 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 346 | .ucode_api_ok = IWL6000_UCODE_API_OK, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 347 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
Johannes Berg | 2d771cb | 2012-04-09 17:47:00 -0700 | [diff] [blame] | 348 | .device_family = IWL_DEVICE_FAMILY_6000, |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 349 | .max_inst_size = IWL60_RTC_INST_SIZE, |
| 350 | .max_data_size = IWL60_RTC_DATA_SIZE, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 351 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 352 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 353 | .base_params = &iwl6000_base_params, |
| 354 | .ht_params = &iwl6000_ht_params, |
Wey-Yi Guy | 564b344 | 2010-11-09 09:21:34 -0800 | [diff] [blame] | 355 | .led_mode = IWL_LED_BLINK, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 356 | }; |
| 357 | |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 358 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_OK)); |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 359 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 360 | MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |
| 361 | MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |