diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-6000.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-6000.c | 331 |
1 files changed, 226 insertions, 105 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index 92b3e64fc14d..9fbf54cd3e1a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
@@ -42,18 +42,22 @@ | |||
42 | #include "iwl-core.h" | 42 | #include "iwl-core.h" |
43 | #include "iwl-io.h" | 43 | #include "iwl-io.h" |
44 | #include "iwl-sta.h" | 44 | #include "iwl-sta.h" |
45 | #include "iwl-agn.h" | ||
45 | #include "iwl-helpers.h" | 46 | #include "iwl-helpers.h" |
46 | #include "iwl-5000-hw.h" | 47 | #include "iwl-agn-hw.h" |
47 | #include "iwl-6000-hw.h" | 48 | #include "iwl-6000-hw.h" |
48 | #include "iwl-agn-led.h" | 49 | #include "iwl-agn-led.h" |
50 | #include "iwl-agn-debugfs.h" | ||
49 | 51 | ||
50 | /* Highest firmware API version supported */ | 52 | /* Highest firmware API version supported */ |
51 | #define IWL6000_UCODE_API_MAX 4 | 53 | #define IWL6000_UCODE_API_MAX 4 |
52 | #define IWL6050_UCODE_API_MAX 4 | 54 | #define IWL6050_UCODE_API_MAX 4 |
55 | #define IWL6000G2_UCODE_API_MAX 4 | ||
53 | 56 | ||
54 | /* Lowest firmware API version supported */ | 57 | /* Lowest firmware API version supported */ |
55 | #define IWL6000_UCODE_API_MIN 4 | 58 | #define IWL6000_UCODE_API_MIN 4 |
56 | #define IWL6050_UCODE_API_MIN 4 | 59 | #define IWL6050_UCODE_API_MIN 4 |
60 | #define IWL6000G2_UCODE_API_MIN 4 | ||
57 | 61 | ||
58 | #define IWL6000_FW_PRE "iwlwifi-6000-" | 62 | #define IWL6000_FW_PRE "iwlwifi-6000-" |
59 | #define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode" | 63 | #define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode" |
@@ -63,6 +67,11 @@ | |||
63 | #define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode" | 67 | #define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode" |
64 | #define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api) | 68 | #define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api) |
65 | 69 | ||
70 | #define IWL6000G2A_FW_PRE "iwlwifi-6000g2a-" | ||
71 | #define _IWL6000G2A_MODULE_FIRMWARE(api) IWL6000G2A_FW_PRE #api ".ucode" | ||
72 | #define IWL6000G2A_MODULE_FIRMWARE(api) _IWL6000G2A_MODULE_FIRMWARE(api) | ||
73 | |||
74 | |||
66 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) | 75 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) |
67 | { | 76 | { |
68 | /* want Celsius */ | 77 | /* want Celsius */ |
@@ -136,7 +145,7 @@ static struct iwl_sensitivity_ranges iwl6000_sensitivity = { | |||
136 | static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) | 145 | static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) |
137 | { | 146 | { |
138 | if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES && | 147 | if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES && |
139 | priv->cfg->mod_params->num_of_queues <= IWL50_NUM_QUEUES) | 148 | priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES) |
140 | priv->cfg->num_of_queues = | 149 | priv->cfg->num_of_queues = |
141 | priv->cfg->mod_params->num_of_queues; | 150 | priv->cfg->mod_params->num_of_queues; |
142 | 151 | ||
@@ -144,7 +153,7 @@ static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) | |||
144 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; | 153 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
145 | priv->hw_params.scd_bc_tbls_size = | 154 | priv->hw_params.scd_bc_tbls_size = |
146 | priv->cfg->num_of_queues * | 155 | priv->cfg->num_of_queues * |
147 | sizeof(struct iwl5000_scd_bc_tbl); | 156 | sizeof(struct iwlagn_scd_bc_tbl); |
148 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); | 157 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); |
149 | priv->hw_params.max_stations = IWL5000_STATION_COUNT; | 158 | priv->hw_params.max_stations = IWL5000_STATION_COUNT; |
150 | priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID; | 159 | priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID; |
@@ -168,24 +177,56 @@ static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) | |||
168 | /* Set initial sensitivity parameters */ | 177 | /* Set initial sensitivity parameters */ |
169 | /* Set initial calibration set */ | 178 | /* Set initial calibration set */ |
170 | priv->hw_params.sens = &iwl6000_sensitivity; | 179 | priv->hw_params.sens = &iwl6000_sensitivity; |
171 | switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) { | 180 | priv->hw_params.calib_init_cfg = |
172 | case CSR_HW_REV_TYPE_6x50: | 181 | BIT(IWL_CALIB_XTAL) | |
173 | priv->hw_params.calib_init_cfg = | 182 | BIT(IWL_CALIB_LO) | |
174 | BIT(IWL_CALIB_XTAL) | | 183 | BIT(IWL_CALIB_TX_IQ) | |
175 | BIT(IWL_CALIB_DC) | | 184 | BIT(IWL_CALIB_BASE_BAND); |
176 | BIT(IWL_CALIB_LO) | | 185 | |
177 | BIT(IWL_CALIB_TX_IQ) | | 186 | return 0; |
178 | BIT(IWL_CALIB_BASE_BAND); | 187 | } |
179 | 188 | ||
180 | break; | 189 | static int iwl6050_hw_set_hw_params(struct iwl_priv *priv) |
181 | default: | 190 | { |
182 | priv->hw_params.calib_init_cfg = | 191 | if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES && |
183 | BIT(IWL_CALIB_XTAL) | | 192 | priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES) |
184 | BIT(IWL_CALIB_LO) | | 193 | priv->cfg->num_of_queues = |
185 | BIT(IWL_CALIB_TX_IQ) | | 194 | priv->cfg->mod_params->num_of_queues; |
186 | BIT(IWL_CALIB_BASE_BAND); | 195 | |
187 | break; | 196 | priv->hw_params.max_txq_num = priv->cfg->num_of_queues; |
188 | } | 197 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
198 | priv->hw_params.scd_bc_tbls_size = | ||
199 | priv->cfg->num_of_queues * | ||
200 | sizeof(struct iwlagn_scd_bc_tbl); | ||
201 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); | ||
202 | priv->hw_params.max_stations = IWL5000_STATION_COUNT; | ||
203 | priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID; | ||
204 | |||
205 | priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE; | ||
206 | priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE; | ||
207 | |||
208 | priv->hw_params.max_bsm_size = 0; | ||
209 | priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) | | ||
210 | BIT(IEEE80211_BAND_5GHZ); | ||
211 | priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR; | ||
212 | |||
213 | priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant); | ||
214 | priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant); | ||
215 | priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant; | ||
216 | priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant; | ||
217 | |||
218 | if (priv->cfg->ops->lib->temp_ops.set_ct_kill) | ||
219 | priv->cfg->ops->lib->temp_ops.set_ct_kill(priv); | ||
220 | |||
221 | /* Set initial sensitivity parameters */ | ||
222 | /* Set initial calibration set */ | ||
223 | priv->hw_params.sens = &iwl6000_sensitivity; | ||
224 | priv->hw_params.calib_init_cfg = | ||
225 | BIT(IWL_CALIB_XTAL) | | ||
226 | BIT(IWL_CALIB_DC) | | ||
227 | BIT(IWL_CALIB_LO) | | ||
228 | BIT(IWL_CALIB_TX_IQ) | | ||
229 | BIT(IWL_CALIB_BASE_BAND); | ||
189 | 230 | ||
190 | return 0; | 231 | return 0; |
191 | } | 232 | } |
@@ -225,25 +266,25 @@ static int iwl6000_hw_channel_switch(struct iwl_priv *priv, u16 channel) | |||
225 | 266 | ||
226 | static struct iwl_lib_ops iwl6000_lib = { | 267 | static struct iwl_lib_ops iwl6000_lib = { |
227 | .set_hw_params = iwl6000_hw_set_hw_params, | 268 | .set_hw_params = iwl6000_hw_set_hw_params, |
228 | .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl, | 269 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, |
229 | .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl, | 270 | .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl, |
230 | .txq_set_sched = iwl5000_txq_set_sched, | 271 | .txq_set_sched = iwlagn_txq_set_sched, |
231 | .txq_agg_enable = iwl5000_txq_agg_enable, | 272 | .txq_agg_enable = iwlagn_txq_agg_enable, |
232 | .txq_agg_disable = iwl5000_txq_agg_disable, | 273 | .txq_agg_disable = iwlagn_txq_agg_disable, |
233 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, | 274 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, |
234 | .txq_free_tfd = iwl_hw_txq_free_tfd, | 275 | .txq_free_tfd = iwl_hw_txq_free_tfd, |
235 | .txq_init = iwl_hw_tx_queue_init, | 276 | .txq_init = iwl_hw_tx_queue_init, |
236 | .rx_handler_setup = iwl5000_rx_handler_setup, | 277 | .rx_handler_setup = iwlagn_rx_handler_setup, |
237 | .setup_deferred_work = iwl5000_setup_deferred_work, | 278 | .setup_deferred_work = iwlagn_setup_deferred_work, |
238 | .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr, | 279 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
239 | .load_ucode = iwl5000_load_ucode, | 280 | .load_ucode = iwlagn_load_ucode, |
240 | .dump_nic_event_log = iwl_dump_nic_event_log, | 281 | .dump_nic_event_log = iwl_dump_nic_event_log, |
241 | .dump_nic_error_log = iwl_dump_nic_error_log, | 282 | .dump_nic_error_log = iwl_dump_nic_error_log, |
242 | .dump_csr = iwl_dump_csr, | 283 | .dump_csr = iwl_dump_csr, |
243 | .dump_fh = iwl_dump_fh, | 284 | .dump_fh = iwl_dump_fh, |
244 | .init_alive_start = iwl5000_init_alive_start, | 285 | .init_alive_start = iwlagn_init_alive_start, |
245 | .alive_notify = iwl5000_alive_notify, | 286 | .alive_notify = iwlagn_alive_notify, |
246 | .send_tx_power = iwl5000_send_tx_power, | 287 | .send_tx_power = iwlagn_send_tx_power, |
247 | .update_chain_flags = iwl_update_chain_flags, | 288 | .update_chain_flags = iwl_update_chain_flags, |
248 | .set_channel_switch = iwl6000_hw_channel_switch, | 289 | .set_channel_switch = iwl6000_hw_channel_switch, |
249 | .apm_ops = { | 290 | .apm_ops = { |
@@ -254,60 +295,67 @@ static struct iwl_lib_ops iwl6000_lib = { | |||
254 | }, | 295 | }, |
255 | .eeprom_ops = { | 296 | .eeprom_ops = { |
256 | .regulatory_bands = { | 297 | .regulatory_bands = { |
257 | EEPROM_5000_REG_BAND_1_CHANNELS, | 298 | EEPROM_REG_BAND_1_CHANNELS, |
258 | EEPROM_5000_REG_BAND_2_CHANNELS, | 299 | EEPROM_REG_BAND_2_CHANNELS, |
259 | EEPROM_5000_REG_BAND_3_CHANNELS, | 300 | EEPROM_REG_BAND_3_CHANNELS, |
260 | EEPROM_5000_REG_BAND_4_CHANNELS, | 301 | EEPROM_REG_BAND_4_CHANNELS, |
261 | EEPROM_5000_REG_BAND_5_CHANNELS, | 302 | EEPROM_REG_BAND_5_CHANNELS, |
262 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, | 303 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
263 | EEPROM_5000_REG_BAND_52_HT40_CHANNELS | 304 | EEPROM_REG_BAND_52_HT40_CHANNELS |
264 | }, | 305 | }, |
265 | .verify_signature = iwlcore_eeprom_verify_signature, | 306 | .verify_signature = iwlcore_eeprom_verify_signature, |
266 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, | 307 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, |
267 | .release_semaphore = iwlcore_eeprom_release_semaphore, | 308 | .release_semaphore = iwlcore_eeprom_release_semaphore, |
268 | .calib_version = iwl5000_eeprom_calib_version, | 309 | .calib_version = iwlagn_eeprom_calib_version, |
269 | .query_addr = iwl5000_eeprom_query_addr, | 310 | .query_addr = iwlagn_eeprom_query_addr, |
270 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, | 311 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
271 | }, | 312 | }, |
272 | .post_associate = iwl_post_associate, | 313 | .post_associate = iwl_post_associate, |
273 | .isr = iwl_isr_ict, | 314 | .isr = iwl_isr_ict, |
274 | .config_ap = iwl_config_ap, | 315 | .config_ap = iwl_config_ap, |
275 | .temp_ops = { | 316 | .temp_ops = { |
276 | .temperature = iwl5000_temperature, | 317 | .temperature = iwlagn_temperature, |
277 | .set_ct_kill = iwl6000_set_ct_threshold, | 318 | .set_ct_kill = iwl6000_set_ct_threshold, |
278 | }, | 319 | }, |
279 | .add_bcast_station = iwl_add_bcast_station, | 320 | .manage_ibss_station = iwlagn_manage_ibss_station, |
321 | .debugfs_ops = { | ||
322 | .rx_stats_read = iwl_ucode_rx_stats_read, | ||
323 | .tx_stats_read = iwl_ucode_tx_stats_read, | ||
324 | .general_stats_read = iwl_ucode_general_stats_read, | ||
325 | }, | ||
326 | .recover_from_tx_stall = iwl_bg_monitor_recover, | ||
327 | .check_plcp_health = iwl_good_plcp_health, | ||
328 | .check_ack_health = iwl_good_ack_health, | ||
280 | }; | 329 | }; |
281 | 330 | ||
282 | static const struct iwl_ops iwl6000_ops = { | 331 | static const struct iwl_ops iwl6000_ops = { |
283 | .ucode = &iwl5000_ucode, | ||
284 | .lib = &iwl6000_lib, | 332 | .lib = &iwl6000_lib, |
285 | .hcmd = &iwl5000_hcmd, | 333 | .hcmd = &iwlagn_hcmd, |
286 | .utils = &iwl5000_hcmd_utils, | 334 | .utils = &iwlagn_hcmd_utils, |
287 | .led = &iwlagn_led_ops, | 335 | .led = &iwlagn_led_ops, |
288 | }; | 336 | }; |
289 | 337 | ||
290 | static struct iwl_lib_ops iwl6050_lib = { | 338 | static struct iwl_lib_ops iwl6050_lib = { |
291 | .set_hw_params = iwl6000_hw_set_hw_params, | 339 | .set_hw_params = iwl6050_hw_set_hw_params, |
292 | .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl, | 340 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, |
293 | .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl, | 341 | .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl, |
294 | .txq_set_sched = iwl5000_txq_set_sched, | 342 | .txq_set_sched = iwlagn_txq_set_sched, |
295 | .txq_agg_enable = iwl5000_txq_agg_enable, | 343 | .txq_agg_enable = iwlagn_txq_agg_enable, |
296 | .txq_agg_disable = iwl5000_txq_agg_disable, | 344 | .txq_agg_disable = iwlagn_txq_agg_disable, |
297 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, | 345 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, |
298 | .txq_free_tfd = iwl_hw_txq_free_tfd, | 346 | .txq_free_tfd = iwl_hw_txq_free_tfd, |
299 | .txq_init = iwl_hw_tx_queue_init, | 347 | .txq_init = iwl_hw_tx_queue_init, |
300 | .rx_handler_setup = iwl5000_rx_handler_setup, | 348 | .rx_handler_setup = iwlagn_rx_handler_setup, |
301 | .setup_deferred_work = iwl5000_setup_deferred_work, | 349 | .setup_deferred_work = iwlagn_setup_deferred_work, |
302 | .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr, | 350 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
303 | .load_ucode = iwl5000_load_ucode, | 351 | .load_ucode = iwlagn_load_ucode, |
304 | .dump_nic_event_log = iwl_dump_nic_event_log, | 352 | .dump_nic_event_log = iwl_dump_nic_event_log, |
305 | .dump_nic_error_log = iwl_dump_nic_error_log, | 353 | .dump_nic_error_log = iwl_dump_nic_error_log, |
306 | .dump_csr = iwl_dump_csr, | 354 | .dump_csr = iwl_dump_csr, |
307 | .dump_fh = iwl_dump_fh, | 355 | .dump_fh = iwl_dump_fh, |
308 | .init_alive_start = iwl5000_init_alive_start, | 356 | .init_alive_start = iwlagn_init_alive_start, |
309 | .alive_notify = iwl5000_alive_notify, | 357 | .alive_notify = iwlagn_alive_notify, |
310 | .send_tx_power = iwl5000_send_tx_power, | 358 | .send_tx_power = iwlagn_send_tx_power, |
311 | .update_chain_flags = iwl_update_chain_flags, | 359 | .update_chain_flags = iwl_update_chain_flags, |
312 | .set_channel_switch = iwl6000_hw_channel_switch, | 360 | .set_channel_switch = iwl6000_hw_channel_switch, |
313 | .apm_ops = { | 361 | .apm_ops = { |
@@ -318,45 +366,90 @@ static struct iwl_lib_ops iwl6050_lib = { | |||
318 | }, | 366 | }, |
319 | .eeprom_ops = { | 367 | .eeprom_ops = { |
320 | .regulatory_bands = { | 368 | .regulatory_bands = { |
321 | EEPROM_5000_REG_BAND_1_CHANNELS, | 369 | EEPROM_REG_BAND_1_CHANNELS, |
322 | EEPROM_5000_REG_BAND_2_CHANNELS, | 370 | EEPROM_REG_BAND_2_CHANNELS, |
323 | EEPROM_5000_REG_BAND_3_CHANNELS, | 371 | EEPROM_REG_BAND_3_CHANNELS, |
324 | EEPROM_5000_REG_BAND_4_CHANNELS, | 372 | EEPROM_REG_BAND_4_CHANNELS, |
325 | EEPROM_5000_REG_BAND_5_CHANNELS, | 373 | EEPROM_REG_BAND_5_CHANNELS, |
326 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, | 374 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
327 | EEPROM_5000_REG_BAND_52_HT40_CHANNELS | 375 | EEPROM_REG_BAND_52_HT40_CHANNELS |
328 | }, | 376 | }, |
329 | .verify_signature = iwlcore_eeprom_verify_signature, | 377 | .verify_signature = iwlcore_eeprom_verify_signature, |
330 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, | 378 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, |
331 | .release_semaphore = iwlcore_eeprom_release_semaphore, | 379 | .release_semaphore = iwlcore_eeprom_release_semaphore, |
332 | .calib_version = iwl5000_eeprom_calib_version, | 380 | .calib_version = iwlagn_eeprom_calib_version, |
333 | .query_addr = iwl5000_eeprom_query_addr, | 381 | .query_addr = iwlagn_eeprom_query_addr, |
334 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, | 382 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
335 | }, | 383 | }, |
336 | .post_associate = iwl_post_associate, | 384 | .post_associate = iwl_post_associate, |
337 | .isr = iwl_isr_ict, | 385 | .isr = iwl_isr_ict, |
338 | .config_ap = iwl_config_ap, | 386 | .config_ap = iwl_config_ap, |
339 | .temp_ops = { | 387 | .temp_ops = { |
340 | .temperature = iwl5000_temperature, | 388 | .temperature = iwlagn_temperature, |
341 | .set_ct_kill = iwl6000_set_ct_threshold, | 389 | .set_ct_kill = iwl6000_set_ct_threshold, |
342 | .set_calib_version = iwl6050_set_calib_version, | 390 | .set_calib_version = iwl6050_set_calib_version, |
343 | }, | 391 | }, |
344 | .add_bcast_station = iwl_add_bcast_station, | 392 | .manage_ibss_station = iwlagn_manage_ibss_station, |
393 | .debugfs_ops = { | ||
394 | .rx_stats_read = iwl_ucode_rx_stats_read, | ||
395 | .tx_stats_read = iwl_ucode_tx_stats_read, | ||
396 | .general_stats_read = iwl_ucode_general_stats_read, | ||
397 | }, | ||
398 | .recover_from_tx_stall = iwl_bg_monitor_recover, | ||
399 | .check_plcp_health = iwl_good_plcp_health, | ||
400 | .check_ack_health = iwl_good_ack_health, | ||
345 | }; | 401 | }; |
346 | 402 | ||
347 | static const struct iwl_ops iwl6050_ops = { | 403 | static const struct iwl_ops iwl6050_ops = { |
348 | .ucode = &iwl5000_ucode, | ||
349 | .lib = &iwl6050_lib, | 404 | .lib = &iwl6050_lib, |
350 | .hcmd = &iwl5000_hcmd, | 405 | .hcmd = &iwlagn_hcmd, |
351 | .utils = &iwl5000_hcmd_utils, | 406 | .utils = &iwlagn_hcmd_utils, |
352 | .led = &iwlagn_led_ops, | 407 | .led = &iwlagn_led_ops, |
353 | }; | 408 | }; |
354 | 409 | ||
410 | |||
411 | struct iwl_cfg iwl6000g2a_2agn_cfg = { | ||
412 | .name = "6000 Series 2x2 AGN Gen2a", | ||
413 | .fw_name_pre = IWL6000G2A_FW_PRE, | ||
414 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, | ||
415 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, | ||
416 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, | ||
417 | .ops = &iwl6000_ops, | ||
418 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | ||
419 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, | ||
420 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, | ||
421 | .num_of_queues = IWLAGN_NUM_QUEUES, | ||
422 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, | ||
423 | .mod_params = &iwlagn_mod_params, | ||
424 | .valid_tx_ant = ANT_AB, | ||
425 | .valid_rx_ant = ANT_AB, | ||
426 | .pll_cfg_val = 0, | ||
427 | .set_l0s = true, | ||
428 | .use_bsm = false, | ||
429 | .pa_type = IWL_PA_SYSTEM, | ||
430 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | ||
431 | .shadow_ram_support = true, | ||
432 | .ht_greenfield_support = true, | ||
433 | .led_compensation = 51, | ||
434 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
435 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | ||
436 | .supports_idle = true, | ||
437 | .adv_thermal_throttle = true, | ||
438 | .support_ct_kill_exit = true, | ||
439 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | ||
440 | .chain_noise_scale = 1000, | ||
441 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
442 | .max_event_log_size = 512, | ||
443 | .ucode_tracing = true, | ||
444 | .sensitivity_calib_by_driver = true, | ||
445 | .chain_noise_calib_by_driver = true, | ||
446 | }; | ||
447 | |||
355 | /* | 448 | /* |
356 | * "i": Internal configuration, use internal Power Amplifier | 449 | * "i": Internal configuration, use internal Power Amplifier |
357 | */ | 450 | */ |
358 | struct iwl_cfg iwl6000i_2agn_cfg = { | 451 | struct iwl_cfg iwl6000i_2agn_cfg = { |
359 | .name = "6000 Series 2x2 AGN", | 452 | .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN", |
360 | .fw_name_pre = IWL6000_FW_PRE, | 453 | .fw_name_pre = IWL6000_FW_PRE, |
361 | .ucode_api_max = IWL6000_UCODE_API_MAX, | 454 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
362 | .ucode_api_min = IWL6000_UCODE_API_MIN, | 455 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
@@ -364,10 +457,10 @@ struct iwl_cfg iwl6000i_2agn_cfg = { | |||
364 | .ops = &iwl6000_ops, | 457 | .ops = &iwl6000_ops, |
365 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | 458 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
366 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, | 459 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
367 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | 460 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
368 | .num_of_queues = IWL50_NUM_QUEUES, | 461 | .num_of_queues = IWLAGN_NUM_QUEUES, |
369 | .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES, | 462 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
370 | .mod_params = &iwl50_mod_params, | 463 | .mod_params = &iwlagn_mod_params, |
371 | .valid_tx_ant = ANT_BC, | 464 | .valid_tx_ant = ANT_BC, |
372 | .valid_rx_ant = ANT_BC, | 465 | .valid_rx_ant = ANT_BC, |
373 | .pll_cfg_val = 0, | 466 | .pll_cfg_val = 0, |
@@ -385,10 +478,15 @@ struct iwl_cfg iwl6000i_2agn_cfg = { | |||
385 | .support_ct_kill_exit = true, | 478 | .support_ct_kill_exit = true, |
386 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | 479 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
387 | .chain_noise_scale = 1000, | 480 | .chain_noise_scale = 1000, |
481 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
482 | .max_event_log_size = 1024, | ||
483 | .ucode_tracing = true, | ||
484 | .sensitivity_calib_by_driver = true, | ||
485 | .chain_noise_calib_by_driver = true, | ||
388 | }; | 486 | }; |
389 | 487 | ||
390 | struct iwl_cfg iwl6000i_2abg_cfg = { | 488 | struct iwl_cfg iwl6000i_2abg_cfg = { |
391 | .name = "6000 Series 2x2 ABG", | 489 | .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG", |
392 | .fw_name_pre = IWL6000_FW_PRE, | 490 | .fw_name_pre = IWL6000_FW_PRE, |
393 | .ucode_api_max = IWL6000_UCODE_API_MAX, | 491 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
394 | .ucode_api_min = IWL6000_UCODE_API_MIN, | 492 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
@@ -396,10 +494,10 @@ struct iwl_cfg iwl6000i_2abg_cfg = { | |||
396 | .ops = &iwl6000_ops, | 494 | .ops = &iwl6000_ops, |
397 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | 495 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
398 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, | 496 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
399 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | 497 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
400 | .num_of_queues = IWL50_NUM_QUEUES, | 498 | .num_of_queues = IWLAGN_NUM_QUEUES, |
401 | .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES, | 499 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
402 | .mod_params = &iwl50_mod_params, | 500 | .mod_params = &iwlagn_mod_params, |
403 | .valid_tx_ant = ANT_BC, | 501 | .valid_tx_ant = ANT_BC, |
404 | .valid_rx_ant = ANT_BC, | 502 | .valid_rx_ant = ANT_BC, |
405 | .pll_cfg_val = 0, | 503 | .pll_cfg_val = 0, |
@@ -408,7 +506,6 @@ struct iwl_cfg iwl6000i_2abg_cfg = { | |||
408 | .pa_type = IWL_PA_INTERNAL, | 506 | .pa_type = IWL_PA_INTERNAL, |
409 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 507 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
410 | .shadow_ram_support = true, | 508 | .shadow_ram_support = true, |
411 | .ht_greenfield_support = true, | ||
412 | .led_compensation = 51, | 509 | .led_compensation = 51, |
413 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 510 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
414 | .supports_idle = true, | 511 | .supports_idle = true, |
@@ -416,10 +513,15 @@ struct iwl_cfg iwl6000i_2abg_cfg = { | |||
416 | .support_ct_kill_exit = true, | 513 | .support_ct_kill_exit = true, |
417 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | 514 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
418 | .chain_noise_scale = 1000, | 515 | .chain_noise_scale = 1000, |
516 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
517 | .max_event_log_size = 1024, | ||
518 | .ucode_tracing = true, | ||
519 | .sensitivity_calib_by_driver = true, | ||
520 | .chain_noise_calib_by_driver = true, | ||
419 | }; | 521 | }; |
420 | 522 | ||
421 | struct iwl_cfg iwl6000i_2bg_cfg = { | 523 | struct iwl_cfg iwl6000i_2bg_cfg = { |
422 | .name = "6000 Series 2x2 BG", | 524 | .name = "Intel(R) Centrino(R) Advanced-N 6200 BG", |
423 | .fw_name_pre = IWL6000_FW_PRE, | 525 | .fw_name_pre = IWL6000_FW_PRE, |
424 | .ucode_api_max = IWL6000_UCODE_API_MAX, | 526 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
425 | .ucode_api_min = IWL6000_UCODE_API_MIN, | 527 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
@@ -427,10 +529,10 @@ struct iwl_cfg iwl6000i_2bg_cfg = { | |||
427 | .ops = &iwl6000_ops, | 529 | .ops = &iwl6000_ops, |
428 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | 530 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
429 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, | 531 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
430 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | 532 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
431 | .num_of_queues = IWL50_NUM_QUEUES, | 533 | .num_of_queues = IWLAGN_NUM_QUEUES, |
432 | .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES, | 534 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
433 | .mod_params = &iwl50_mod_params, | 535 | .mod_params = &iwlagn_mod_params, |
434 | .valid_tx_ant = ANT_BC, | 536 | .valid_tx_ant = ANT_BC, |
435 | .valid_rx_ant = ANT_BC, | 537 | .valid_rx_ant = ANT_BC, |
436 | .pll_cfg_val = 0, | 538 | .pll_cfg_val = 0, |
@@ -439,7 +541,6 @@ struct iwl_cfg iwl6000i_2bg_cfg = { | |||
439 | .pa_type = IWL_PA_INTERNAL, | 541 | .pa_type = IWL_PA_INTERNAL, |
440 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 542 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
441 | .shadow_ram_support = true, | 543 | .shadow_ram_support = true, |
442 | .ht_greenfield_support = true, | ||
443 | .led_compensation = 51, | 544 | .led_compensation = 51, |
444 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 545 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
445 | .supports_idle = true, | 546 | .supports_idle = true, |
@@ -447,10 +548,15 @@ struct iwl_cfg iwl6000i_2bg_cfg = { | |||
447 | .support_ct_kill_exit = true, | 548 | .support_ct_kill_exit = true, |
448 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | 549 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
449 | .chain_noise_scale = 1000, | 550 | .chain_noise_scale = 1000, |
551 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
552 | .max_event_log_size = 1024, | ||
553 | .ucode_tracing = true, | ||
554 | .sensitivity_calib_by_driver = true, | ||
555 | .chain_noise_calib_by_driver = true, | ||
450 | }; | 556 | }; |
451 | 557 | ||
452 | struct iwl_cfg iwl6050_2agn_cfg = { | 558 | struct iwl_cfg iwl6050_2agn_cfg = { |
453 | .name = "6050 Series 2x2 AGN", | 559 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN", |
454 | .fw_name_pre = IWL6050_FW_PRE, | 560 | .fw_name_pre = IWL6050_FW_PRE, |
455 | .ucode_api_max = IWL6050_UCODE_API_MAX, | 561 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
456 | .ucode_api_min = IWL6050_UCODE_API_MIN, | 562 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
@@ -458,10 +564,10 @@ struct iwl_cfg iwl6050_2agn_cfg = { | |||
458 | .ops = &iwl6050_ops, | 564 | .ops = &iwl6050_ops, |
459 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | 565 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
460 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, | 566 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, |
461 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | 567 | .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, |
462 | .num_of_queues = IWL50_NUM_QUEUES, | 568 | .num_of_queues = IWLAGN_NUM_QUEUES, |
463 | .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES, | 569 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
464 | .mod_params = &iwl50_mod_params, | 570 | .mod_params = &iwlagn_mod_params, |
465 | .valid_tx_ant = ANT_AB, | 571 | .valid_tx_ant = ANT_AB, |
466 | .valid_rx_ant = ANT_AB, | 572 | .valid_rx_ant = ANT_AB, |
467 | .pll_cfg_val = 0, | 573 | .pll_cfg_val = 0, |
@@ -479,10 +585,15 @@ struct iwl_cfg iwl6050_2agn_cfg = { | |||
479 | .support_ct_kill_exit = true, | 585 | .support_ct_kill_exit = true, |
480 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | 586 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
481 | .chain_noise_scale = 1500, | 587 | .chain_noise_scale = 1500, |
588 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
589 | .max_event_log_size = 1024, | ||
590 | .ucode_tracing = true, | ||
591 | .sensitivity_calib_by_driver = true, | ||
592 | .chain_noise_calib_by_driver = true, | ||
482 | }; | 593 | }; |
483 | 594 | ||
484 | struct iwl_cfg iwl6050_2abg_cfg = { | 595 | struct iwl_cfg iwl6050_2abg_cfg = { |
485 | .name = "6050 Series 2x2 ABG", | 596 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG", |
486 | .fw_name_pre = IWL6050_FW_PRE, | 597 | .fw_name_pre = IWL6050_FW_PRE, |
487 | .ucode_api_max = IWL6050_UCODE_API_MAX, | 598 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
488 | .ucode_api_min = IWL6050_UCODE_API_MIN, | 599 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
@@ -490,10 +601,10 @@ struct iwl_cfg iwl6050_2abg_cfg = { | |||
490 | .ops = &iwl6050_ops, | 601 | .ops = &iwl6050_ops, |
491 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | 602 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
492 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, | 603 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, |
493 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | 604 | .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, |
494 | .num_of_queues = IWL50_NUM_QUEUES, | 605 | .num_of_queues = IWLAGN_NUM_QUEUES, |
495 | .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES, | 606 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
496 | .mod_params = &iwl50_mod_params, | 607 | .mod_params = &iwlagn_mod_params, |
497 | .valid_tx_ant = ANT_AB, | 608 | .valid_tx_ant = ANT_AB, |
498 | .valid_rx_ant = ANT_AB, | 609 | .valid_rx_ant = ANT_AB, |
499 | .pll_cfg_val = 0, | 610 | .pll_cfg_val = 0, |
@@ -502,7 +613,6 @@ struct iwl_cfg iwl6050_2abg_cfg = { | |||
502 | .pa_type = IWL_PA_SYSTEM, | 613 | .pa_type = IWL_PA_SYSTEM, |
503 | .max_ll_items = OTP_MAX_LL_ITEMS_6x50, | 614 | .max_ll_items = OTP_MAX_LL_ITEMS_6x50, |
504 | .shadow_ram_support = true, | 615 | .shadow_ram_support = true, |
505 | .ht_greenfield_support = true, | ||
506 | .led_compensation = 51, | 616 | .led_compensation = 51, |
507 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, | 617 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
508 | .supports_idle = true, | 618 | .supports_idle = true, |
@@ -510,10 +620,15 @@ struct iwl_cfg iwl6050_2abg_cfg = { | |||
510 | .support_ct_kill_exit = true, | 620 | .support_ct_kill_exit = true, |
511 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | 621 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
512 | .chain_noise_scale = 1500, | 622 | .chain_noise_scale = 1500, |
623 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
624 | .max_event_log_size = 1024, | ||
625 | .ucode_tracing = true, | ||
626 | .sensitivity_calib_by_driver = true, | ||
627 | .chain_noise_calib_by_driver = true, | ||
513 | }; | 628 | }; |
514 | 629 | ||
515 | struct iwl_cfg iwl6000_3agn_cfg = { | 630 | struct iwl_cfg iwl6000_3agn_cfg = { |
516 | .name = "6000 Series 3x3 AGN", | 631 | .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN", |
517 | .fw_name_pre = IWL6000_FW_PRE, | 632 | .fw_name_pre = IWL6000_FW_PRE, |
518 | .ucode_api_max = IWL6000_UCODE_API_MAX, | 633 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
519 | .ucode_api_min = IWL6000_UCODE_API_MIN, | 634 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
@@ -521,10 +636,10 @@ struct iwl_cfg iwl6000_3agn_cfg = { | |||
521 | .ops = &iwl6000_ops, | 636 | .ops = &iwl6000_ops, |
522 | .eeprom_size = OTP_LOW_IMAGE_SIZE, | 637 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
523 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, | 638 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
524 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, | 639 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
525 | .num_of_queues = IWL50_NUM_QUEUES, | 640 | .num_of_queues = IWLAGN_NUM_QUEUES, |
526 | .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES, | 641 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
527 | .mod_params = &iwl50_mod_params, | 642 | .mod_params = &iwlagn_mod_params, |
528 | .valid_tx_ant = ANT_ABC, | 643 | .valid_tx_ant = ANT_ABC, |
529 | .valid_rx_ant = ANT_ABC, | 644 | .valid_rx_ant = ANT_ABC, |
530 | .pll_cfg_val = 0, | 645 | .pll_cfg_val = 0, |
@@ -542,7 +657,13 @@ struct iwl_cfg iwl6000_3agn_cfg = { | |||
542 | .support_ct_kill_exit = true, | 657 | .support_ct_kill_exit = true, |
543 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, | 658 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
544 | .chain_noise_scale = 1000, | 659 | .chain_noise_scale = 1000, |
660 | .monitor_recover_period = IWL_MONITORING_PERIOD, | ||
661 | .max_event_log_size = 1024, | ||
662 | .ucode_tracing = true, | ||
663 | .sensitivity_calib_by_driver = true, | ||
664 | .chain_noise_calib_by_driver = true, | ||
545 | }; | 665 | }; |
546 | 666 | ||
547 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); | 667 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); |
548 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); | 668 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); |
669 | MODULE_FIRMWARE(IWL6000G2A_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); | ||