| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-21 21:39:26 +01:00
										 |  |  |  * Copyright(c) 2008 - 2013 Intel Corporation. All rights reserved. | 
					
						
							| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |  * under the terms of version 2 of the GNU General Public License as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, but WITHOUT | 
					
						
							|  |  |  |  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |  * more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License along with | 
					
						
							|  |  |  |  * this program; if not, write to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The full GNU General Public License is included in this distribution in the | 
					
						
							|  |  |  |  * file called LICENSE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Contact Information: | 
					
						
							|  |  |  |  *  Intel Linux Wireless <ilw@linux.intel.com> | 
					
						
							|  |  |  |  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *****************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2011-06-12 05:34:31 -07:00
										 |  |  | #include <linux/stringify.h>
 | 
					
						
							| 
									
										
										
										
											2012-04-10 14:10:28 -07:00
										 |  |  | #include "iwl-config.h"
 | 
					
						
							| 
									
										
										
										
											2012-04-03 20:57:59 +02:00
										 |  |  | #include "iwl-csr.h"
 | 
					
						
							|  |  |  | #include "iwl-agn-hw.h"
 | 
					
						
							| 
									
										
										
										
											2012-05-16 19:13:54 +02:00
										 |  |  | #include "cfg.h"
 | 
					
						
							| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Highest firmware API version supported */ | 
					
						
							| 
									
										
										
										
											2012-04-22 07:55:27 -07:00
										 |  |  | #define IWL1000_UCODE_API_MAX 5
 | 
					
						
							|  |  |  | #define IWL100_UCODE_API_MAX 5
 | 
					
						
							| 
									
										
										
										
											2011-07-23 10:24:45 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Oldest version we won't warn about */ | 
					
						
							|  |  |  | #define IWL1000_UCODE_API_OK 5
 | 
					
						
							|  |  |  | #define IWL100_UCODE_API_OK 5
 | 
					
						
							| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Lowest firmware API version supported */ | 
					
						
							| 
									
										
										
										
											2009-03-06 13:52:55 -08:00
										 |  |  | #define IWL1000_UCODE_API_MIN 1
 | 
					
						
							| 
									
										
										
										
											2010-09-14 15:21:20 -07:00
										 |  |  | #define IWL100_UCODE_API_MIN 5
 | 
					
						
							| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-03 20:41:07 +02:00
										 |  |  | /* EEPROM version */ | 
					
						
							|  |  |  | #define EEPROM_1000_TX_POWER_VERSION	(4)
 | 
					
						
							|  |  |  | #define EEPROM_1000_EEPROM_VERSION	(0x15C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-06 13:52:55 -08:00
										 |  |  | #define IWL1000_FW_PRE "iwlwifi-1000-"
 | 
					
						
							| 
									
										
										
										
											2011-06-12 05:34:31 -07:00
										 |  |  | #define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode"
 | 
					
						
							| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-14 15:21:20 -07:00
										 |  |  | #define IWL100_FW_PRE "iwlwifi-100-"
 | 
					
						
							| 
									
										
										
										
											2011-06-12 05:34:31 -07:00
										 |  |  | #define IWL100_MODULE_FIRMWARE(api) IWL100_FW_PRE __stringify(api) ".ucode"
 | 
					
						
							| 
									
										
										
										
											2010-09-14 15:21:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-24 11:13:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-06 13:30:56 -08:00
										 |  |  | static const struct iwl_base_params iwl1000_base_params = { | 
					
						
							| 
									
										
										
										
											2010-03-16 17:41:23 -07:00
										 |  |  | 	.num_of_queues = IWLAGN_NUM_QUEUES, | 
					
						
							| 
									
										
										
										
											2010-10-06 08:10:00 -07:00
										 |  |  | 	.eeprom_size = OTP_LOW_IMAGE_SIZE, | 
					
						
							| 
									
										
										
										
											2009-10-23 13:42:21 -07:00
										 |  |  | 	.pll_cfg_val = CSR50_ANA_PLL_CFG_VAL, | 
					
						
							| 
									
										
										
										
											2009-08-13 13:30:54 -07:00
										 |  |  | 	.max_ll_items = OTP_MAX_LL_ITEMS_1000, | 
					
						
							|  |  |  | 	.shadow_ram_support = false, | 
					
						
							| 
									
										
										
										
											2009-09-11 10:38:14 -07:00
										 |  |  | 	.led_compensation = 51, | 
					
						
							| 
									
										
										
										
											2009-10-23 13:42:28 -07:00
										 |  |  | 	.support_ct_kill_exit = true, | 
					
						
							| 
									
										
										
										
											2010-02-08 13:53:05 -08:00
										 |  |  | 	.plcp_delta_threshold = IWL_MAX_PLCP_ERR_EXT_LONG_THRESHOLD_DEF, | 
					
						
							| 
									
										
										
										
											2010-02-05 11:33:46 -08:00
										 |  |  | 	.chain_noise_scale = 1000, | 
					
						
							| 
									
										
										
										
											2012-05-30 09:14:41 +02:00
										 |  |  | 	.wd_timeout = IWL_WATCHDOG_DISABLED, | 
					
						
							| 
									
										
										
										
											2010-03-26 12:54:37 -07:00
										 |  |  | 	.max_event_log_size = 128, | 
					
						
							| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2012-03-06 13:30:56 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const struct iwl_ht_params iwl1000_ht_params = { | 
					
						
							| 
									
										
										
										
											2010-10-06 08:10:00 -07:00
										 |  |  | 	.ht_greenfield_support = true, | 
					
						
							|  |  |  | 	.use_rts_for_aggregation = true, /* use rts/cts protection */ | 
					
						
							| 
									
										
										
										
											2012-05-21 20:03:01 +02:00
										 |  |  | 	.ht40_bands = BIT(IEEE80211_BAND_2GHZ), | 
					
						
							| 
									
										
										
										
											2010-10-06 08:10:00 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-21 11:55:54 +02:00
										 |  |  | static const struct iwl_eeprom_params iwl1000_eeprom_params = { | 
					
						
							|  |  |  | 	.regulatory_bands = { | 
					
						
							|  |  |  | 		EEPROM_REG_BAND_1_CHANNELS, | 
					
						
							|  |  |  | 		EEPROM_REG_BAND_2_CHANNELS, | 
					
						
							|  |  |  | 		EEPROM_REG_BAND_3_CHANNELS, | 
					
						
							|  |  |  | 		EEPROM_REG_BAND_4_CHANNELS, | 
					
						
							|  |  |  | 		EEPROM_REG_BAND_5_CHANNELS, | 
					
						
							|  |  |  | 		EEPROM_REG_BAND_24_HT40_CHANNELS, | 
					
						
							|  |  |  | 		EEPROM_REGULATORY_BAND_NO_HT40, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | #define IWL_DEVICE_1000						\
 | 
					
						
							|  |  |  | 	.fw_name_pre = IWL1000_FW_PRE,				\ | 
					
						
							|  |  |  | 	.ucode_api_max = IWL1000_UCODE_API_MAX,			\ | 
					
						
							| 
									
										
										
										
											2011-07-23 10:24:45 -07:00
										 |  |  | 	.ucode_api_ok = IWL1000_UCODE_API_OK,			\ | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	.ucode_api_min = IWL1000_UCODE_API_MIN,			\ | 
					
						
							| 
									
										
										
										
											2012-04-09 17:47:00 -07:00
										 |  |  | 	.device_family = IWL_DEVICE_FAMILY_1000,		\ | 
					
						
							| 
									
										
										
										
											2012-02-07 12:56:26 +02:00
										 |  |  | 	.max_inst_size = IWLAGN_RTC_INST_SIZE,			\ | 
					
						
							|  |  |  | 	.max_data_size = IWLAGN_RTC_DATA_SIZE,			\ | 
					
						
							| 
									
										
										
										
											2012-12-01 20:59:49 +02:00
										 |  |  | 	.nvm_ver = EEPROM_1000_EEPROM_VERSION,		\ | 
					
						
							|  |  |  | 	.nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION,	\ | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	.base_params = &iwl1000_base_params,			\ | 
					
						
							| 
									
										
										
										
											2012-05-21 11:55:54 +02:00
										 |  |  | 	.eeprom_params = &iwl1000_eeprom_params,		\ | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	.led_mode = IWL_LED_BLINK | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-05 11:24:33 -08:00
										 |  |  | const struct iwl_cfg iwl1000_bgn_cfg = { | 
					
						
							| 
									
										
										
										
											2010-10-06 08:10:00 -07:00
										 |  |  | 	.name = "Intel(R) Centrino(R) Wireless-N 1000 BGN", | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	IWL_DEVICE_1000, | 
					
						
							| 
									
										
										
										
											2010-10-06 08:10:00 -07:00
										 |  |  | 	.ht_params = &iwl1000_ht_params, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-01-19 15:30:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-05 11:24:33 -08:00
										 |  |  | const struct iwl_cfg iwl1000_bg_cfg = { | 
					
						
							| 
									
										
										
										
											2010-03-05 17:05:20 -08:00
										 |  |  | 	.name = "Intel(R) Centrino(R) Wireless-N 1000 BG", | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	IWL_DEVICE_1000, | 
					
						
							| 
									
										
										
										
											2009-09-17 10:43:52 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | #define IWL_DEVICE_100						\
 | 
					
						
							|  |  |  | 	.fw_name_pre = IWL100_FW_PRE,				\ | 
					
						
							|  |  |  | 	.ucode_api_max = IWL100_UCODE_API_MAX,			\ | 
					
						
							| 
									
										
										
										
											2011-07-23 10:24:45 -07:00
										 |  |  | 	.ucode_api_ok = IWL100_UCODE_API_OK,			\ | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	.ucode_api_min = IWL100_UCODE_API_MIN,			\ | 
					
						
							| 
									
										
										
										
											2012-04-09 17:47:00 -07:00
										 |  |  | 	.device_family = IWL_DEVICE_FAMILY_100,			\ | 
					
						
							| 
									
										
										
										
											2012-02-07 12:56:26 +02:00
										 |  |  | 	.max_inst_size = IWLAGN_RTC_INST_SIZE,			\ | 
					
						
							|  |  |  | 	.max_data_size = IWLAGN_RTC_DATA_SIZE,			\ | 
					
						
							| 
									
										
										
										
											2012-12-01 20:59:49 +02:00
										 |  |  | 	.nvm_ver = EEPROM_1000_EEPROM_VERSION,		\ | 
					
						
							|  |  |  | 	.nvm_calib_ver = EEPROM_1000_TX_POWER_VERSION,	\ | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	.base_params = &iwl1000_base_params,			\ | 
					
						
							| 
									
										
										
										
											2012-05-21 11:55:54 +02:00
										 |  |  | 	.eeprom_params = &iwl1000_eeprom_params,		\ | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	.led_mode = IWL_LED_RF_STATE,				\ | 
					
						
							|  |  |  | 	.rx_with_siso_diversity = true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-05 11:24:33 -08:00
										 |  |  | const struct iwl_cfg iwl100_bgn_cfg = { | 
					
						
							| 
									
										
										
										
											2010-11-17 12:13:55 -08:00
										 |  |  | 	.name = "Intel(R) Centrino(R) Wireless-N 100 BGN", | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	IWL_DEVICE_100, | 
					
						
							| 
									
										
										
										
											2010-10-06 08:10:00 -07:00
										 |  |  | 	.ht_params = &iwl1000_ht_params, | 
					
						
							| 
									
										
										
										
											2010-09-14 15:21:20 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-05 11:24:33 -08:00
										 |  |  | const struct iwl_cfg iwl100_bg_cfg = { | 
					
						
							| 
									
										
										
										
											2010-11-17 12:13:55 -08:00
										 |  |  | 	.name = "Intel(R) Centrino(R) Wireless-N 100 BG", | 
					
						
							| 
									
										
										
										
											2010-12-08 07:51:50 -08:00
										 |  |  | 	IWL_DEVICE_100, | 
					
						
							| 
									
										
										
										
											2010-09-14 15:21:20 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-22 07:55:27 -07:00
										 |  |  | MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_OK)); | 
					
						
							|  |  |  | MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_OK)); |