9000.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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) 2015-2017 Intel Deutschland GmbH
  9. * Copyright (C) 2018 Intel Corporation
  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. * BSD LICENSE
  21. *
  22. * Copyright(c) 2015-2017 Intel Deutschland GmbH
  23. * Copyright (C) 2018 Intel Corporation
  24. * All rights reserved.
  25. *
  26. * Redistribution and use in source and binary forms, with or without
  27. * modification, are permitted provided that the following conditions
  28. * are met:
  29. *
  30. * * Redistributions of source code must retain the above copyright
  31. * notice, this list of conditions and the following disclaimer.
  32. * * Redistributions in binary form must reproduce the above copyright
  33. * notice, this list of conditions and the following disclaimer in
  34. * the documentation and/or other materials provided with the
  35. * distribution.
  36. * * Neither the name Intel Corporation nor the names of its
  37. * contributors may be used to endorse or promote products derived
  38. * from this software without specific prior written permission.
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  41. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  42. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  43. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  44. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  46. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  47. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  48. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  49. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  50. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  51. *
  52. *****************************************************************************/
  53. #include <linux/module.h>
  54. #include <linux/stringify.h>
  55. #include "iwl-config.h"
  56. #include "fw/file.h"
  57. /* Highest firmware API version supported */
  58. #define IWL9000_UCODE_API_MAX 38
  59. /* Lowest firmware API version supported */
  60. #define IWL9000_UCODE_API_MIN 30
  61. /* NVM versions */
  62. #define IWL9000_NVM_VERSION 0x0a1d
  63. #define IWL9000_TX_POWER_VERSION 0xffff /* meaningless */
  64. /* Memory offsets and lengths */
  65. #define IWL9000_DCCM_OFFSET 0x800000
  66. #define IWL9000_DCCM_LEN 0x18000
  67. #define IWL9000_DCCM2_OFFSET 0x880000
  68. #define IWL9000_DCCM2_LEN 0x8000
  69. #define IWL9000_SMEM_OFFSET 0x400000
  70. #define IWL9000_SMEM_LEN 0x68000
  71. #define IWL9000A_FW_PRE "iwlwifi-9000-pu-a0-jf-a0-"
  72. #define IWL9000B_FW_PRE "iwlwifi-9000-pu-b0-jf-b0-"
  73. #define IWL9000RFB_FW_PRE "iwlwifi-9000-pu-a0-jf-b0-"
  74. #define IWL9260A_FW_PRE "iwlwifi-9260-th-a0-jf-a0-"
  75. #define IWL9260B_FW_PRE "iwlwifi-9260-th-b0-jf-b0-"
  76. #define IWL9000A_MODULE_FIRMWARE(api) \
  77. IWL9000A_FW_PRE __stringify(api) ".ucode"
  78. #define IWL9000B_MODULE_FIRMWARE(api) \
  79. IWL9000B_FW_PRE __stringify(api) ".ucode"
  80. #define IWL9000RFB_MODULE_FIRMWARE(api) \
  81. IWL9000RFB_FW_PRE __stringify(api) ".ucode"
  82. #define IWL9260A_MODULE_FIRMWARE(api) \
  83. IWL9260A_FW_PRE __stringify(api) ".ucode"
  84. #define IWL9260B_MODULE_FIRMWARE(api) \
  85. IWL9260B_FW_PRE __stringify(api) ".ucode"
  86. #define NVM_HW_SECTION_NUM_FAMILY_9000 10
  87. static const struct iwl_base_params iwl9000_base_params = {
  88. .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_9000,
  89. .num_of_queues = 31,
  90. .shadow_ram_support = true,
  91. .led_compensation = 57,
  92. .wd_timeout = IWL_LONG_WD_TIMEOUT,
  93. .max_event_log_size = 512,
  94. .shadow_reg_enable = true,
  95. .pcie_l1_allowed = true,
  96. };
  97. static const struct iwl_ht_params iwl9000_ht_params = {
  98. .stbc = true,
  99. .ldpc = true,
  100. .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ),
  101. };
  102. static const struct iwl_tt_params iwl9000_tt_params = {
  103. .ct_kill_entry = 115,
  104. .ct_kill_exit = 93,
  105. .ct_kill_duration = 5,
  106. .dynamic_smps_entry = 111,
  107. .dynamic_smps_exit = 107,
  108. .tx_protection_entry = 112,
  109. .tx_protection_exit = 105,
  110. .tx_backoff = {
  111. {.temperature = 110, .backoff = 200},
  112. {.temperature = 111, .backoff = 600},
  113. {.temperature = 112, .backoff = 1200},
  114. {.temperature = 113, .backoff = 2000},
  115. {.temperature = 114, .backoff = 4000},
  116. },
  117. .support_ct_kill = true,
  118. .support_dynamic_smps = true,
  119. .support_tx_protection = true,
  120. .support_tx_backoff = true,
  121. };
  122. #define IWL_DEVICE_9000 \
  123. .ucode_api_max = IWL9000_UCODE_API_MAX, \
  124. .ucode_api_min = IWL9000_UCODE_API_MIN, \
  125. .device_family = IWL_DEVICE_FAMILY_9000, \
  126. .base_params = &iwl9000_base_params, \
  127. .led_mode = IWL_LED_RF_STATE, \
  128. .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_9000, \
  129. .non_shared_ant = ANT_B, \
  130. .dccm_offset = IWL9000_DCCM_OFFSET, \
  131. .dccm_len = IWL9000_DCCM_LEN, \
  132. .dccm2_offset = IWL9000_DCCM2_OFFSET, \
  133. .dccm2_len = IWL9000_DCCM2_LEN, \
  134. .smem_offset = IWL9000_SMEM_OFFSET, \
  135. .smem_len = IWL9000_SMEM_LEN, \
  136. .features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM, \
  137. .thermal_params = &iwl9000_tt_params, \
  138. .apmg_not_supported = true, \
  139. .mq_rx_supported = true, \
  140. .vht_mu_mimo_supported = true, \
  141. .mac_addr_from_csr = true, \
  142. .rf_id = true, \
  143. .nvm_type = IWL_NVM_EXT, \
  144. .dbgc_supported = true, \
  145. .min_umac_error_event_table = 0x800000, \
  146. .csr = &iwl_csr_v1
  147. const struct iwl_cfg iwl9160_2ac_cfg = {
  148. .name = "Intel(R) Dual Band Wireless AC 9160",
  149. .fw_name_pre = IWL9260A_FW_PRE,
  150. .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE,
  151. IWL_DEVICE_9000,
  152. .ht_params = &iwl9000_ht_params,
  153. .nvm_ver = IWL9000_NVM_VERSION,
  154. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  155. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  156. };
  157. const struct iwl_cfg iwl9260_2ac_cfg = {
  158. .name = "Intel(R) Dual Band Wireless AC 9260",
  159. .fw_name_pre = IWL9260A_FW_PRE,
  160. .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE,
  161. IWL_DEVICE_9000,
  162. .ht_params = &iwl9000_ht_params,
  163. .nvm_ver = IWL9000_NVM_VERSION,
  164. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  165. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  166. };
  167. const struct iwl_cfg iwl9270_2ac_cfg = {
  168. .name = "Intel(R) Dual Band Wireless AC 9270",
  169. .fw_name_pre = IWL9260A_FW_PRE,
  170. .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE,
  171. IWL_DEVICE_9000,
  172. .ht_params = &iwl9000_ht_params,
  173. .nvm_ver = IWL9000_NVM_VERSION,
  174. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  175. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  176. };
  177. const struct iwl_cfg iwl9460_2ac_cfg = {
  178. .name = "Intel(R) Dual Band Wireless AC 9460",
  179. .fw_name_pre = IWL9260A_FW_PRE,
  180. .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE,
  181. IWL_DEVICE_9000,
  182. .ht_params = &iwl9000_ht_params,
  183. .nvm_ver = IWL9000_NVM_VERSION,
  184. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  185. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  186. };
  187. const struct iwl_cfg iwl9460_2ac_cfg_soc = {
  188. .name = "Intel(R) Dual Band Wireless AC 9460",
  189. .fw_name_pre = IWL9000A_FW_PRE,
  190. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  191. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  192. IWL_DEVICE_9000,
  193. .ht_params = &iwl9000_ht_params,
  194. .nvm_ver = IWL9000_NVM_VERSION,
  195. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  196. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  197. .integrated = true,
  198. .soc_latency = 5000,
  199. };
  200. const struct iwl_cfg iwl9461_2ac_cfg_soc = {
  201. .name = "Intel(R) Dual Band Wireless AC 9461",
  202. .fw_name_pre = IWL9000A_FW_PRE,
  203. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  204. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  205. IWL_DEVICE_9000,
  206. .ht_params = &iwl9000_ht_params,
  207. .nvm_ver = IWL9000_NVM_VERSION,
  208. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  209. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  210. .integrated = true,
  211. .soc_latency = 5000,
  212. };
  213. const struct iwl_cfg iwl9462_2ac_cfg_soc = {
  214. .name = "Intel(R) Dual Band Wireless AC 9462",
  215. .fw_name_pre = IWL9000A_FW_PRE,
  216. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  217. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  218. IWL_DEVICE_9000,
  219. .ht_params = &iwl9000_ht_params,
  220. .nvm_ver = IWL9000_NVM_VERSION,
  221. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  222. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  223. .integrated = true,
  224. .soc_latency = 5000,
  225. };
  226. const struct iwl_cfg iwl9560_2ac_cfg = {
  227. .name = "Intel(R) Dual Band Wireless AC 9560",
  228. .fw_name_pre = IWL9260A_FW_PRE,
  229. .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE,
  230. IWL_DEVICE_9000,
  231. .ht_params = &iwl9000_ht_params,
  232. .nvm_ver = IWL9000_NVM_VERSION,
  233. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  234. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  235. };
  236. const struct iwl_cfg iwl9560_2ac_cfg_soc = {
  237. .name = "Intel(R) Dual Band Wireless AC 9560",
  238. .fw_name_pre = IWL9000A_FW_PRE,
  239. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  240. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  241. IWL_DEVICE_9000,
  242. .ht_params = &iwl9000_ht_params,
  243. .nvm_ver = IWL9000_NVM_VERSION,
  244. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  245. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  246. .integrated = true,
  247. .soc_latency = 5000,
  248. };
  249. const struct iwl_cfg iwl9460_2ac_cfg_shared_clk = {
  250. .name = "Intel(R) Dual Band Wireless AC 9460",
  251. .fw_name_pre = IWL9000A_FW_PRE,
  252. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  253. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  254. IWL_DEVICE_9000,
  255. .ht_params = &iwl9000_ht_params,
  256. .nvm_ver = IWL9000_NVM_VERSION,
  257. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  258. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  259. .integrated = true,
  260. .soc_latency = 5000,
  261. .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
  262. };
  263. const struct iwl_cfg iwl9461_2ac_cfg_shared_clk = {
  264. .name = "Intel(R) Dual Band Wireless AC 9461",
  265. .fw_name_pre = IWL9000A_FW_PRE,
  266. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  267. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  268. IWL_DEVICE_9000,
  269. .ht_params = &iwl9000_ht_params,
  270. .nvm_ver = IWL9000_NVM_VERSION,
  271. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  272. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  273. .integrated = true,
  274. .soc_latency = 5000,
  275. .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
  276. };
  277. const struct iwl_cfg iwl9462_2ac_cfg_shared_clk = {
  278. .name = "Intel(R) Dual Band Wireless AC 9462",
  279. .fw_name_pre = IWL9000A_FW_PRE,
  280. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  281. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  282. IWL_DEVICE_9000,
  283. .ht_params = &iwl9000_ht_params,
  284. .nvm_ver = IWL9000_NVM_VERSION,
  285. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  286. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  287. .integrated = true,
  288. .soc_latency = 5000,
  289. .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
  290. };
  291. const struct iwl_cfg iwl9560_2ac_cfg_shared_clk = {
  292. .name = "Intel(R) Dual Band Wireless AC 9560",
  293. .fw_name_pre = IWL9000A_FW_PRE,
  294. .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE,
  295. .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE,
  296. IWL_DEVICE_9000,
  297. .ht_params = &iwl9000_ht_params,
  298. .nvm_ver = IWL9000_NVM_VERSION,
  299. .nvm_calib_ver = IWL9000_TX_POWER_VERSION,
  300. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,
  301. .integrated = true,
  302. .soc_latency = 5000,
  303. .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
  304. };
  305. MODULE_FIRMWARE(IWL9000A_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
  306. MODULE_FIRMWARE(IWL9000B_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
  307. MODULE_FIRMWARE(IWL9000RFB_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
  308. MODULE_FIRMWARE(IWL9260A_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
  309. MODULE_FIRMWARE(IWL9260B_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));