iwl-7000.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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) 2012 - 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2013 - 2014 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) 2012 - 2014 Intel Corporation. All rights reserved.
  35. * Copyright(c) 2013 - 2014 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 IWL7260_UCODE_API_MAX 17
  71. #define IWL7265_UCODE_API_MAX 19
  72. #define IWL7265D_UCODE_API_MAX 19
  73. /* Oldest version we won't warn about */
  74. #define IWL7260_UCODE_API_OK 13
  75. #define IWL7265_UCODE_API_OK 13
  76. #define IWL7265D_UCODE_API_OK 13
  77. /* Lowest firmware API version supported */
  78. #define IWL7260_UCODE_API_MIN 13
  79. #define IWL7265_UCODE_API_MIN 13
  80. #define IWL7265D_UCODE_API_MIN 13
  81. /* NVM versions */
  82. #define IWL7260_NVM_VERSION 0x0a1d
  83. #define IWL7260_TX_POWER_VERSION 0xffff /* meaningless */
  84. #define IWL3160_NVM_VERSION 0x709
  85. #define IWL3160_TX_POWER_VERSION 0xffff /* meaningless */
  86. #define IWL3165_NVM_VERSION 0x709
  87. #define IWL3165_TX_POWER_VERSION 0xffff /* meaningless */
  88. #define IWL7265_NVM_VERSION 0x0a1d
  89. #define IWL7265_TX_POWER_VERSION 0xffff /* meaningless */
  90. #define IWL7265D_NVM_VERSION 0x0c11
  91. #define IWL7265_TX_POWER_VERSION 0xffff /* meaningless */
  92. /* DCCM offsets and lengths */
  93. #define IWL7000_DCCM_OFFSET 0x800000
  94. #define IWL7260_DCCM_LEN 0x14000
  95. #define IWL3160_DCCM_LEN 0x10000
  96. #define IWL7265_DCCM_LEN 0x17A00
  97. #define IWL7260_FW_PRE "iwlwifi-7260-"
  98. #define IWL7260_MODULE_FIRMWARE(api) IWL7260_FW_PRE __stringify(api) ".ucode"
  99. #define IWL3160_FW_PRE "iwlwifi-3160-"
  100. #define IWL3160_MODULE_FIRMWARE(api) IWL3160_FW_PRE __stringify(api) ".ucode"
  101. #define IWL7265_FW_PRE "iwlwifi-7265-"
  102. #define IWL7265_MODULE_FIRMWARE(api) IWL7265_FW_PRE __stringify(api) ".ucode"
  103. #define IWL7265D_FW_PRE "iwlwifi-7265D-"
  104. #define IWL7265D_MODULE_FIRMWARE(api) IWL7265D_FW_PRE __stringify(api) ".ucode"
  105. #define NVM_HW_SECTION_NUM_FAMILY_7000 0
  106. static const struct iwl_base_params iwl7000_base_params = {
  107. .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_7000,
  108. .num_of_queues = 31,
  109. .pll_cfg_val = 0,
  110. .shadow_ram_support = true,
  111. .led_compensation = 57,
  112. .wd_timeout = IWL_LONG_WD_TIMEOUT,
  113. .max_event_log_size = 512,
  114. .shadow_reg_enable = true,
  115. .pcie_l1_allowed = true,
  116. .apmg_wake_up_wa = true,
  117. };
  118. static const struct iwl_tt_params iwl7000_high_temp_tt_params = {
  119. .ct_kill_entry = 118,
  120. .ct_kill_exit = 96,
  121. .ct_kill_duration = 5,
  122. .dynamic_smps_entry = 114,
  123. .dynamic_smps_exit = 110,
  124. .tx_protection_entry = 114,
  125. .tx_protection_exit = 108,
  126. .tx_backoff = {
  127. {.temperature = 112, .backoff = 300},
  128. {.temperature = 113, .backoff = 800},
  129. {.temperature = 114, .backoff = 1500},
  130. {.temperature = 115, .backoff = 3000},
  131. {.temperature = 116, .backoff = 5000},
  132. {.temperature = 117, .backoff = 10000},
  133. },
  134. .support_ct_kill = true,
  135. .support_dynamic_smps = true,
  136. .support_tx_protection = true,
  137. .support_tx_backoff = true,
  138. };
  139. static const struct iwl_ht_params iwl7000_ht_params = {
  140. .stbc = true,
  141. .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
  142. };
  143. #define IWL_DEVICE_7000_COMMON \
  144. .device_family = IWL_DEVICE_FAMILY_7000, \
  145. .max_inst_size = IWL60_RTC_INST_SIZE, \
  146. .max_data_size = IWL60_RTC_DATA_SIZE, \
  147. .base_params = &iwl7000_base_params, \
  148. .led_mode = IWL_LED_RF_STATE, \
  149. .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_7000, \
  150. .non_shared_ant = ANT_A, \
  151. .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, \
  152. .dccm_offset = IWL7000_DCCM_OFFSET
  153. #define IWL_DEVICE_7000 \
  154. IWL_DEVICE_7000_COMMON, \
  155. .ucode_api_max = IWL7260_UCODE_API_MAX, \
  156. .ucode_api_ok = IWL7260_UCODE_API_OK, \
  157. .ucode_api_min = IWL7260_UCODE_API_MIN
  158. #define IWL_DEVICE_7005 \
  159. IWL_DEVICE_7000_COMMON, \
  160. .ucode_api_max = IWL7265_UCODE_API_MAX, \
  161. .ucode_api_ok = IWL7265_UCODE_API_OK, \
  162. .ucode_api_min = IWL7265_UCODE_API_MIN
  163. #define IWL_DEVICE_7005D \
  164. IWL_DEVICE_7000_COMMON, \
  165. .ucode_api_max = IWL7265D_UCODE_API_MAX, \
  166. .ucode_api_ok = IWL7265D_UCODE_API_OK, \
  167. .ucode_api_min = IWL7265D_UCODE_API_MIN
  168. const struct iwl_cfg iwl7260_2ac_cfg = {
  169. .name = "Intel(R) Dual Band Wireless AC 7260",
  170. .fw_name_pre = IWL7260_FW_PRE,
  171. IWL_DEVICE_7000,
  172. .ht_params = &iwl7000_ht_params,
  173. .nvm_ver = IWL7260_NVM_VERSION,
  174. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  175. .host_interrupt_operation_mode = true,
  176. .lp_xtal_workaround = true,
  177. .dccm_len = IWL7260_DCCM_LEN,
  178. };
  179. const struct iwl_cfg iwl7260_2ac_cfg_high_temp = {
  180. .name = "Intel(R) Dual Band Wireless AC 7260",
  181. .fw_name_pre = IWL7260_FW_PRE,
  182. IWL_DEVICE_7000,
  183. .ht_params = &iwl7000_ht_params,
  184. .nvm_ver = IWL7260_NVM_VERSION,
  185. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  186. .high_temp = true,
  187. .host_interrupt_operation_mode = true,
  188. .lp_xtal_workaround = true,
  189. .dccm_len = IWL7260_DCCM_LEN,
  190. .thermal_params = &iwl7000_high_temp_tt_params,
  191. };
  192. const struct iwl_cfg iwl7260_2n_cfg = {
  193. .name = "Intel(R) Dual Band Wireless N 7260",
  194. .fw_name_pre = IWL7260_FW_PRE,
  195. IWL_DEVICE_7000,
  196. .ht_params = &iwl7000_ht_params,
  197. .nvm_ver = IWL7260_NVM_VERSION,
  198. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  199. .host_interrupt_operation_mode = true,
  200. .lp_xtal_workaround = true,
  201. .dccm_len = IWL7260_DCCM_LEN,
  202. };
  203. const struct iwl_cfg iwl7260_n_cfg = {
  204. .name = "Intel(R) Wireless N 7260",
  205. .fw_name_pre = IWL7260_FW_PRE,
  206. IWL_DEVICE_7000,
  207. .ht_params = &iwl7000_ht_params,
  208. .nvm_ver = IWL7260_NVM_VERSION,
  209. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  210. .host_interrupt_operation_mode = true,
  211. .lp_xtal_workaround = true,
  212. .dccm_len = IWL7260_DCCM_LEN,
  213. };
  214. const struct iwl_cfg iwl3160_2ac_cfg = {
  215. .name = "Intel(R) Dual Band Wireless AC 3160",
  216. .fw_name_pre = IWL3160_FW_PRE,
  217. IWL_DEVICE_7000,
  218. .ht_params = &iwl7000_ht_params,
  219. .nvm_ver = IWL3160_NVM_VERSION,
  220. .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
  221. .host_interrupt_operation_mode = true,
  222. .dccm_len = IWL3160_DCCM_LEN,
  223. };
  224. const struct iwl_cfg iwl3160_2n_cfg = {
  225. .name = "Intel(R) Dual Band Wireless N 3160",
  226. .fw_name_pre = IWL3160_FW_PRE,
  227. IWL_DEVICE_7000,
  228. .ht_params = &iwl7000_ht_params,
  229. .nvm_ver = IWL3160_NVM_VERSION,
  230. .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
  231. .host_interrupt_operation_mode = true,
  232. .dccm_len = IWL3160_DCCM_LEN,
  233. };
  234. const struct iwl_cfg iwl3160_n_cfg = {
  235. .name = "Intel(R) Wireless N 3160",
  236. .fw_name_pre = IWL3160_FW_PRE,
  237. IWL_DEVICE_7000,
  238. .ht_params = &iwl7000_ht_params,
  239. .nvm_ver = IWL3160_NVM_VERSION,
  240. .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
  241. .host_interrupt_operation_mode = true,
  242. .dccm_len = IWL3160_DCCM_LEN,
  243. };
  244. static const struct iwl_pwr_tx_backoff iwl7265_pwr_tx_backoffs[] = {
  245. {.pwr = 1600, .backoff = 0},
  246. {.pwr = 1300, .backoff = 467},
  247. {.pwr = 900, .backoff = 1900},
  248. {.pwr = 800, .backoff = 2630},
  249. {.pwr = 700, .backoff = 3720},
  250. {.pwr = 600, .backoff = 5550},
  251. {.pwr = 500, .backoff = 9350},
  252. {0},
  253. };
  254. static const struct iwl_ht_params iwl7265_ht_params = {
  255. .stbc = true,
  256. .ldpc = true,
  257. .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
  258. };
  259. const struct iwl_cfg iwl3165_2ac_cfg = {
  260. .name = "Intel(R) Dual Band Wireless AC 3165",
  261. .fw_name_pre = IWL7265D_FW_PRE,
  262. IWL_DEVICE_7005D,
  263. .ht_params = &iwl7000_ht_params,
  264. .nvm_ver = IWL3165_NVM_VERSION,
  265. .nvm_calib_ver = IWL3165_TX_POWER_VERSION,
  266. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  267. .dccm_len = IWL7265_DCCM_LEN,
  268. };
  269. const struct iwl_cfg iwl7265_2ac_cfg = {
  270. .name = "Intel(R) Dual Band Wireless AC 7265",
  271. .fw_name_pre = IWL7265_FW_PRE,
  272. IWL_DEVICE_7005,
  273. .ht_params = &iwl7265_ht_params,
  274. .nvm_ver = IWL7265_NVM_VERSION,
  275. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  276. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  277. .dccm_len = IWL7265_DCCM_LEN,
  278. };
  279. const struct iwl_cfg iwl7265_2n_cfg = {
  280. .name = "Intel(R) Dual Band Wireless N 7265",
  281. .fw_name_pre = IWL7265_FW_PRE,
  282. IWL_DEVICE_7005,
  283. .ht_params = &iwl7265_ht_params,
  284. .nvm_ver = IWL7265_NVM_VERSION,
  285. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  286. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  287. .dccm_len = IWL7265_DCCM_LEN,
  288. };
  289. const struct iwl_cfg iwl7265_n_cfg = {
  290. .name = "Intel(R) Wireless N 7265",
  291. .fw_name_pre = IWL7265_FW_PRE,
  292. IWL_DEVICE_7005,
  293. .ht_params = &iwl7265_ht_params,
  294. .nvm_ver = IWL7265_NVM_VERSION,
  295. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  296. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  297. .dccm_len = IWL7265_DCCM_LEN,
  298. };
  299. const struct iwl_cfg iwl7265d_2ac_cfg = {
  300. .name = "Intel(R) Dual Band Wireless AC 7265",
  301. .fw_name_pre = IWL7265D_FW_PRE,
  302. IWL_DEVICE_7005D,
  303. .ht_params = &iwl7265_ht_params,
  304. .nvm_ver = IWL7265D_NVM_VERSION,
  305. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  306. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  307. .dccm_len = IWL7265_DCCM_LEN,
  308. };
  309. const struct iwl_cfg iwl7265d_2n_cfg = {
  310. .name = "Intel(R) Dual Band Wireless N 7265",
  311. .fw_name_pre = IWL7265D_FW_PRE,
  312. IWL_DEVICE_7005D,
  313. .ht_params = &iwl7265_ht_params,
  314. .nvm_ver = IWL7265D_NVM_VERSION,
  315. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  316. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  317. .dccm_len = IWL7265_DCCM_LEN,
  318. };
  319. const struct iwl_cfg iwl7265d_n_cfg = {
  320. .name = "Intel(R) Wireless N 7265",
  321. .fw_name_pre = IWL7265D_FW_PRE,
  322. IWL_DEVICE_7005D,
  323. .ht_params = &iwl7265_ht_params,
  324. .nvm_ver = IWL7265D_NVM_VERSION,
  325. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  326. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  327. .dccm_len = IWL7265_DCCM_LEN,
  328. };
  329. MODULE_FIRMWARE(IWL7260_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
  330. MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
  331. MODULE_FIRMWARE(IWL7265_MODULE_FIRMWARE(IWL7265_UCODE_API_OK));
  332. MODULE_FIRMWARE(IWL7265D_MODULE_FIRMWARE(IWL7265D_UCODE_API_OK));