iwl-8000.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /******************************************************************************
  2. *
  3. * This file is provided under a dual BSD/GPLv2 license. When using or
  4. * redistributing this file, you may do so under either license.
  5. *
  6. * GPL LICENSE SUMMARY
  7. *
  8. * Copyright(c) 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2014 - 2015 Intel Mobile Communications GmbH
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of version 2 of the GNU General Public License as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  23. * USA
  24. *
  25. * The full GNU General Public License is included in this distribution
  26. * in the file called COPYING.
  27. *
  28. * Contact Information:
  29. * Intel Linux Wireless <ilw@linux.intel.com>
  30. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  31. *
  32. * BSD LICENSE
  33. *
  34. * Copyright(c) 2014 Intel Corporation. All rights reserved.
  35. * Copyright(c) 2014 - 2015 Intel Mobile Communications GmbH
  36. * All rights reserved.
  37. *
  38. * Redistribution and use in source and binary forms, with or without
  39. * modification, are permitted provided that the following conditions
  40. * are met:
  41. *
  42. * * Redistributions of source code must retain the above copyright
  43. * notice, this list of conditions and the following disclaimer.
  44. * * Redistributions in binary form must reproduce the above copyright
  45. * notice, this list of conditions and the following disclaimer in
  46. * the documentation and/or other materials provided with the
  47. * distribution.
  48. * * Neither the name Intel Corporation nor the names of its
  49. * contributors may be used to endorse or promote products derived
  50. * from this software without specific prior written permission.
  51. *
  52. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  53. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  54. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  55. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  56. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  57. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  58. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  59. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  60. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  61. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  62. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  63. *
  64. *****************************************************************************/
  65. #include <linux/module.h>
  66. #include <linux/stringify.h>
  67. #include "iwl-config.h"
  68. #include "iwl-agn-hw.h"
  69. /* Highest firmware API version supported */
  70. #define IWL8000_UCODE_API_MAX 19
  71. /* Oldest version we won't warn about */
  72. #define IWL8000_UCODE_API_OK 13
  73. /* Lowest firmware API version supported */
  74. #define IWL8000_UCODE_API_MIN 13
  75. /* NVM versions */
  76. #define IWL8000_NVM_VERSION 0x0a1d
  77. #define IWL8000_TX_POWER_VERSION 0xffff /* meaningless */
  78. /* Memory offsets and lengths */
  79. #define IWL8260_DCCM_OFFSET 0x800000
  80. #define IWL8260_DCCM_LEN 0x18000
  81. #define IWL8260_DCCM2_OFFSET 0x880000
  82. #define IWL8260_DCCM2_LEN 0x8000
  83. #define IWL8260_SMEM_OFFSET 0x400000
  84. #define IWL8260_SMEM_LEN 0x68000
  85. #define IWL8000_FW_PRE "iwlwifi-8000"
  86. #define IWL8000_MODULE_FIRMWARE(api) \
  87. IWL8000_FW_PRE "-" __stringify(api) ".ucode"
  88. #define NVM_HW_SECTION_NUM_FAMILY_8000 10
  89. #define DEFAULT_NVM_FILE_FAMILY_8000B "nvmData-8000B"
  90. #define DEFAULT_NVM_FILE_FAMILY_8000C "nvmData-8000C"
  91. /* Max SDIO RX/TX aggregation sizes of the ADDBA request/response */
  92. #define MAX_RX_AGG_SIZE_8260_SDIO 21
  93. #define MAX_TX_AGG_SIZE_8260_SDIO 40
  94. /* Max A-MPDU exponent for HT and VHT */
  95. #define MAX_HT_AMPDU_EXPONENT_8260_SDIO IEEE80211_HT_MAX_AMPDU_32K
  96. #define MAX_VHT_AMPDU_EXPONENT_8260_SDIO IEEE80211_VHT_MAX_AMPDU_32K
  97. static const struct iwl_base_params iwl8000_base_params = {
  98. .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_8000,
  99. .num_of_queues = 31,
  100. .pll_cfg_val = 0,
  101. .shadow_ram_support = true,
  102. .led_compensation = 57,
  103. .wd_timeout = IWL_LONG_WD_TIMEOUT,
  104. .max_event_log_size = 512,
  105. .shadow_reg_enable = true,
  106. .pcie_l1_allowed = true,
  107. };
  108. static const struct iwl_ht_params iwl8000_ht_params = {
  109. .stbc = true,
  110. .ldpc = true,
  111. .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
  112. };
  113. static const struct iwl_tt_params iwl8000_tt_params = {
  114. .ct_kill_entry = 115,
  115. .ct_kill_exit = 93,
  116. .ct_kill_duration = 5,
  117. .dynamic_smps_entry = 111,
  118. .dynamic_smps_exit = 107,
  119. .tx_protection_entry = 112,
  120. .tx_protection_exit = 105,
  121. .tx_backoff = {
  122. {.temperature = 110, .backoff = 200},
  123. {.temperature = 111, .backoff = 600},
  124. {.temperature = 112, .backoff = 1200},
  125. {.temperature = 113, .backoff = 2000},
  126. {.temperature = 114, .backoff = 4000},
  127. },
  128. .support_ct_kill = true,
  129. .support_dynamic_smps = true,
  130. .support_tx_protection = true,
  131. .support_tx_backoff = true,
  132. };
  133. #define IWL_DEVICE_8000 \
  134. .ucode_api_max = IWL8000_UCODE_API_MAX, \
  135. .ucode_api_ok = IWL8000_UCODE_API_OK, \
  136. .ucode_api_min = IWL8000_UCODE_API_MIN, \
  137. .device_family = IWL_DEVICE_FAMILY_8000, \
  138. .max_inst_size = IWL60_RTC_INST_SIZE, \
  139. .max_data_size = IWL60_RTC_DATA_SIZE, \
  140. .base_params = &iwl8000_base_params, \
  141. .led_mode = IWL_LED_RF_STATE, \
  142. .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_8000, \
  143. .d0i3 = true, \
  144. .features = NETIF_F_RXCSUM, \
  145. .non_shared_ant = ANT_A, \
  146. .dccm_offset = IWL8260_DCCM_OFFSET, \
  147. .dccm_len = IWL8260_DCCM_LEN, \
  148. .dccm2_offset = IWL8260_DCCM2_OFFSET, \
  149. .dccm2_len = IWL8260_DCCM2_LEN, \
  150. .smem_offset = IWL8260_SMEM_OFFSET, \
  151. .smem_len = IWL8260_SMEM_LEN, \
  152. .default_nvm_file_B_step = DEFAULT_NVM_FILE_FAMILY_8000B, \
  153. .default_nvm_file_C_step = DEFAULT_NVM_FILE_FAMILY_8000C, \
  154. .thermal_params = &iwl8000_tt_params, \
  155. .apmg_not_supported = true
  156. const struct iwl_cfg iwl8260_2n_cfg = {
  157. .name = "Intel(R) Dual Band Wireless N 8260",
  158. .fw_name_pre = IWL8000_FW_PRE,
  159. IWL_DEVICE_8000,
  160. .ht_params = &iwl8000_ht_params,
  161. .nvm_ver = IWL8000_NVM_VERSION,
  162. .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
  163. };
  164. const struct iwl_cfg iwl8260_2ac_cfg = {
  165. .name = "Intel(R) Dual Band Wireless AC 8260",
  166. .fw_name_pre = IWL8000_FW_PRE,
  167. IWL_DEVICE_8000,
  168. .ht_params = &iwl8000_ht_params,
  169. .nvm_ver = IWL8000_NVM_VERSION,
  170. .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
  171. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  172. };
  173. const struct iwl_cfg iwl4165_2ac_cfg = {
  174. .name = "Intel(R) Dual Band Wireless AC 4165",
  175. .fw_name_pre = IWL8000_FW_PRE,
  176. IWL_DEVICE_8000,
  177. .ht_params = &iwl8000_ht_params,
  178. .nvm_ver = IWL8000_NVM_VERSION,
  179. .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
  180. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  181. };
  182. const struct iwl_cfg iwl8260_2ac_sdio_cfg = {
  183. .name = "Intel(R) Dual Band Wireless-AC 8260",
  184. .fw_name_pre = IWL8000_FW_PRE,
  185. IWL_DEVICE_8000,
  186. .ht_params = &iwl8000_ht_params,
  187. .nvm_ver = IWL8000_NVM_VERSION,
  188. .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
  189. .max_rx_agg_size = MAX_RX_AGG_SIZE_8260_SDIO,
  190. .max_tx_agg_size = MAX_TX_AGG_SIZE_8260_SDIO,
  191. .disable_dummy_notification = true,
  192. .max_ht_ampdu_exponent = MAX_HT_AMPDU_EXPONENT_8260_SDIO,
  193. .max_vht_ampdu_exponent = MAX_VHT_AMPDU_EXPONENT_8260_SDIO,
  194. };
  195. const struct iwl_cfg iwl4165_2ac_sdio_cfg = {
  196. .name = "Intel(R) Dual Band Wireless-AC 4165",
  197. .fw_name_pre = IWL8000_FW_PRE,
  198. IWL_DEVICE_8000,
  199. .ht_params = &iwl8000_ht_params,
  200. .nvm_ver = IWL8000_NVM_VERSION,
  201. .nvm_calib_ver = IWL8000_TX_POWER_VERSION,
  202. .max_rx_agg_size = MAX_RX_AGG_SIZE_8260_SDIO,
  203. .max_tx_agg_size = MAX_TX_AGG_SIZE_8260_SDIO,
  204. .bt_shared_single_ant = true,
  205. .disable_dummy_notification = true,
  206. .max_ht_ampdu_exponent = MAX_HT_AMPDU_EXPONENT_8260_SDIO,
  207. .max_vht_ampdu_exponent = MAX_VHT_AMPDU_EXPONENT_8260_SDIO,
  208. };
  209. MODULE_FIRMWARE(IWL8000_MODULE_FIRMWARE(IWL8000_UCODE_API_OK));