iwl-1000.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  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. #include <linux/kernel.h>
  27. #include <linux/module.h>
  28. #include <linux/init.h>
  29. #include <linux/delay.h>
  30. #include <linux/skbuff.h>
  31. #include <linux/netdevice.h>
  32. #include <linux/wireless.h>
  33. #include <net/mac80211.h>
  34. #include <linux/etherdevice.h>
  35. #include <asm/unaligned.h>
  36. #include <linux/stringify.h>
  37. #include "iwl-eeprom.h"
  38. #include "iwl-dev.h"
  39. #include "iwl-core.h"
  40. #include "iwl-io.h"
  41. #include "iwl-sta.h"
  42. #include "iwl-agn.h"
  43. #include "iwl-helpers.h"
  44. #include "iwl-agn-hw.h"
  45. /* Highest firmware API version supported */
  46. #define IWL1000_UCODE_API_MAX 5
  47. #define IWL100_UCODE_API_MAX 5
  48. /* Lowest firmware API version supported */
  49. #define IWL1000_UCODE_API_MIN 1
  50. #define IWL100_UCODE_API_MIN 5
  51. #define IWL1000_FW_PRE "iwlwifi-1000-"
  52. #define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode"
  53. #define IWL100_FW_PRE "iwlwifi-100-"
  54. #define IWL100_MODULE_FIRMWARE(api) IWL100_FW_PRE __stringify(api) ".ucode"
  55. /*
  56. * For 1000, use advance thermal throttling critical temperature threshold,
  57. * but legacy thermal management implementation for now.
  58. * This is for the reason of 1000 uCode using advance thermal throttling API
  59. * but not implement ct_kill_exit based on ct_kill exit temperature
  60. * so the thermal throttling will still based on legacy thermal throttling
  61. * management.
  62. * The code here need to be modified once 1000 uCode has the advanced thermal
  63. * throttling algorithm in place
  64. */
  65. static void iwl1000_set_ct_threshold(struct iwl_priv *priv)
  66. {
  67. /* want Celsius */
  68. priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD_LEGACY;
  69. priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
  70. }
  71. /* NIC configuration for 1000 series */
  72. static void iwl1000_nic_config(struct iwl_priv *priv)
  73. {
  74. /* set CSR_HW_CONFIG_REG for uCode use */
  75. iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
  76. CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
  77. CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
  78. /* Setting digital SVR for 1000 card to 1.32V */
  79. /* locking is acquired in iwl_set_bits_mask_prph() function */
  80. iwl_set_bits_mask_prph(priv, APMG_DIGITAL_SVR_REG,
  81. APMG_SVR_DIGITAL_VOLTAGE_1_32,
  82. ~APMG_SVR_VOLTAGE_CONFIG_BIT_MSK);
  83. }
  84. static struct iwl_sensitivity_ranges iwl1000_sensitivity = {
  85. .min_nrg_cck = 95,
  86. .max_nrg_cck = 0, /* not used, set to 0 */
  87. .auto_corr_min_ofdm = 90,
  88. .auto_corr_min_ofdm_mrc = 170,
  89. .auto_corr_min_ofdm_x1 = 120,
  90. .auto_corr_min_ofdm_mrc_x1 = 240,
  91. .auto_corr_max_ofdm = 120,
  92. .auto_corr_max_ofdm_mrc = 210,
  93. .auto_corr_max_ofdm_x1 = 155,
  94. .auto_corr_max_ofdm_mrc_x1 = 290,
  95. .auto_corr_min_cck = 125,
  96. .auto_corr_max_cck = 200,
  97. .auto_corr_min_cck_mrc = 170,
  98. .auto_corr_max_cck_mrc = 400,
  99. .nrg_th_cck = 95,
  100. .nrg_th_ofdm = 95,
  101. .barker_corr_th_min = 190,
  102. .barker_corr_th_min_mrc = 390,
  103. .nrg_th_cca = 62,
  104. };
  105. static int iwl1000_hw_set_hw_params(struct iwl_priv *priv)
  106. {
  107. if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES &&
  108. iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES)
  109. priv->cfg->base_params->num_of_queues =
  110. iwlagn_mod_params.num_of_queues;
  111. priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues;
  112. priv->hw_params.scd_bc_tbls_size =
  113. priv->cfg->base_params->num_of_queues *
  114. sizeof(struct iwlagn_scd_bc_tbl);
  115. priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
  116. priv->hw_params.max_stations = IWLAGN_STATION_COUNT;
  117. priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID;
  118. priv->hw_params.max_data_size = IWLAGN_RTC_DATA_SIZE;
  119. priv->hw_params.max_inst_size = IWLAGN_RTC_INST_SIZE;
  120. priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
  121. BIT(IEEE80211_BAND_5GHZ);
  122. priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
  123. if (priv->cfg->rx_with_siso_diversity)
  124. priv->hw_params.rx_chains_num = 1;
  125. else
  126. priv->hw_params.rx_chains_num =
  127. num_of_ant(priv->cfg->valid_rx_ant);
  128. priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
  129. priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
  130. iwl1000_set_ct_threshold(priv);
  131. /* Set initial sensitivity parameters */
  132. /* Set initial calibration set */
  133. priv->hw_params.sens = &iwl1000_sensitivity;
  134. priv->hw_params.calib_init_cfg =
  135. BIT(IWL_CALIB_XTAL) |
  136. BIT(IWL_CALIB_LO) |
  137. BIT(IWL_CALIB_TX_IQ) |
  138. BIT(IWL_CALIB_TX_IQ_PERD) |
  139. BIT(IWL_CALIB_BASE_BAND);
  140. if (priv->cfg->need_dc_calib)
  141. priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_DC);
  142. priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS;
  143. return 0;
  144. }
  145. static struct iwl_lib_ops iwl1000_lib = {
  146. .set_hw_params = iwl1000_hw_set_hw_params,
  147. .nic_config = iwl1000_nic_config,
  148. .eeprom_ops = {
  149. .regulatory_bands = {
  150. EEPROM_REG_BAND_1_CHANNELS,
  151. EEPROM_REG_BAND_2_CHANNELS,
  152. EEPROM_REG_BAND_3_CHANNELS,
  153. EEPROM_REG_BAND_4_CHANNELS,
  154. EEPROM_REG_BAND_5_CHANNELS,
  155. EEPROM_REG_BAND_24_HT40_CHANNELS,
  156. EEPROM_REGULATORY_BAND_NO_HT40,
  157. },
  158. },
  159. .temperature = iwlagn_temperature,
  160. };
  161. static struct iwl_base_params iwl1000_base_params = {
  162. .num_of_queues = IWLAGN_NUM_QUEUES,
  163. .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
  164. .eeprom_size = OTP_LOW_IMAGE_SIZE,
  165. .pll_cfg_val = CSR50_ANA_PLL_CFG_VAL,
  166. .max_ll_items = OTP_MAX_LL_ITEMS_1000,
  167. .shadow_ram_support = false,
  168. .led_compensation = 51,
  169. .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
  170. .support_ct_kill_exit = true,
  171. .plcp_delta_threshold = IWL_MAX_PLCP_ERR_EXT_LONG_THRESHOLD_DEF,
  172. .chain_noise_scale = 1000,
  173. .wd_timeout = IWL_DEF_WD_TIMEOUT,
  174. .max_event_log_size = 128,
  175. };
  176. static struct iwl_ht_params iwl1000_ht_params = {
  177. .ht_greenfield_support = true,
  178. .use_rts_for_aggregation = true, /* use rts/cts protection */
  179. .smps_mode = IEEE80211_SMPS_STATIC,
  180. };
  181. #define IWL_DEVICE_1000 \
  182. .fw_name_pre = IWL1000_FW_PRE, \
  183. .ucode_api_max = IWL1000_UCODE_API_MAX, \
  184. .ucode_api_min = IWL1000_UCODE_API_MIN, \
  185. .eeprom_ver = EEPROM_1000_EEPROM_VERSION, \
  186. .eeprom_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
  187. .lib = &iwl1000_lib, \
  188. .base_params = &iwl1000_base_params, \
  189. .led_mode = IWL_LED_BLINK
  190. struct iwl_cfg iwl1000_bgn_cfg = {
  191. .name = "Intel(R) Centrino(R) Wireless-N 1000 BGN",
  192. IWL_DEVICE_1000,
  193. .ht_params = &iwl1000_ht_params,
  194. };
  195. struct iwl_cfg iwl1000_bg_cfg = {
  196. .name = "Intel(R) Centrino(R) Wireless-N 1000 BG",
  197. IWL_DEVICE_1000,
  198. };
  199. #define IWL_DEVICE_100 \
  200. .fw_name_pre = IWL100_FW_PRE, \
  201. .ucode_api_max = IWL100_UCODE_API_MAX, \
  202. .ucode_api_min = IWL100_UCODE_API_MIN, \
  203. .eeprom_ver = EEPROM_1000_EEPROM_VERSION, \
  204. .eeprom_calib_ver = EEPROM_1000_TX_POWER_VERSION, \
  205. .lib = &iwl1000_lib, \
  206. .base_params = &iwl1000_base_params, \
  207. .led_mode = IWL_LED_RF_STATE, \
  208. .rx_with_siso_diversity = true
  209. struct iwl_cfg iwl100_bgn_cfg = {
  210. .name = "Intel(R) Centrino(R) Wireless-N 100 BGN",
  211. IWL_DEVICE_100,
  212. .ht_params = &iwl1000_ht_params,
  213. };
  214. struct iwl_cfg iwl100_bg_cfg = {
  215. .name = "Intel(R) Centrino(R) Wireless-N 100 BG",
  216. IWL_DEVICE_100,
  217. };
  218. MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX));
  219. MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_MAX));