iwl-7000.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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 10
  71. #define IWL3160_UCODE_API_MAX 10
  72. /* Oldest version we won't warn about */
  73. #define IWL7260_UCODE_API_OK 9
  74. #define IWL3160_UCODE_API_OK 9
  75. /* Lowest firmware API version supported */
  76. #define IWL7260_UCODE_API_MIN 8
  77. #define IWL3160_UCODE_API_MIN 8
  78. /* NVM versions */
  79. #define IWL7260_NVM_VERSION 0x0a1d
  80. #define IWL7260_TX_POWER_VERSION 0xffff /* meaningless */
  81. #define IWL3160_NVM_VERSION 0x709
  82. #define IWL3160_TX_POWER_VERSION 0xffff /* meaningless */
  83. #define IWL3165_NVM_VERSION 0x709
  84. #define IWL3165_TX_POWER_VERSION 0xffff /* meaningless */
  85. #define IWL7265_NVM_VERSION 0x0a1d
  86. #define IWL7265_TX_POWER_VERSION 0xffff /* meaningless */
  87. #define IWL7260_FW_PRE "iwlwifi-7260-"
  88. #define IWL7260_MODULE_FIRMWARE(api) IWL7260_FW_PRE __stringify(api) ".ucode"
  89. #define IWL3160_FW_PRE "iwlwifi-3160-"
  90. #define IWL3160_MODULE_FIRMWARE(api) IWL3160_FW_PRE __stringify(api) ".ucode"
  91. #define IWL3165_FW_PRE "iwlwifi-3165-"
  92. #define IWL3165_MODULE_FIRMWARE(api) IWL3165_FW_PRE __stringify(api) ".ucode"
  93. #define IWL7265_FW_PRE "iwlwifi-7265-"
  94. #define IWL7265_MODULE_FIRMWARE(api) IWL7265_FW_PRE __stringify(api) ".ucode"
  95. #define NVM_HW_SECTION_NUM_FAMILY_7000 0
  96. static const struct iwl_base_params iwl7000_base_params = {
  97. .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_7000,
  98. .num_of_queues = IWLAGN_NUM_QUEUES,
  99. .pll_cfg_val = 0,
  100. .shadow_ram_support = true,
  101. .led_compensation = 57,
  102. .wd_timeout = IWL_LONG_WD_TIMEOUT,
  103. .max_event_log_size = 512,
  104. .shadow_reg_enable = true,
  105. .pcie_l1_allowed = true,
  106. .apmg_wake_up_wa = true,
  107. };
  108. static const struct iwl_ht_params iwl7000_ht_params = {
  109. .stbc = true,
  110. .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
  111. };
  112. #define IWL_DEVICE_7000 \
  113. .ucode_api_max = IWL7260_UCODE_API_MAX, \
  114. .ucode_api_ok = IWL7260_UCODE_API_OK, \
  115. .ucode_api_min = IWL7260_UCODE_API_MIN, \
  116. .device_family = IWL_DEVICE_FAMILY_7000, \
  117. .max_inst_size = IWL60_RTC_INST_SIZE, \
  118. .max_data_size = IWL60_RTC_DATA_SIZE, \
  119. .base_params = &iwl7000_base_params, \
  120. .led_mode = IWL_LED_RF_STATE, \
  121. .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_7000, \
  122. .non_shared_ant = ANT_A
  123. const struct iwl_cfg iwl7260_2ac_cfg = {
  124. .name = "Intel(R) Dual Band Wireless AC 7260",
  125. .fw_name_pre = IWL7260_FW_PRE,
  126. IWL_DEVICE_7000,
  127. .ht_params = &iwl7000_ht_params,
  128. .nvm_ver = IWL7260_NVM_VERSION,
  129. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  130. .host_interrupt_operation_mode = true,
  131. .lp_xtal_workaround = true,
  132. };
  133. const struct iwl_cfg iwl7260_2ac_cfg_high_temp = {
  134. .name = "Intel(R) Dual Band Wireless AC 7260",
  135. .fw_name_pre = IWL7260_FW_PRE,
  136. IWL_DEVICE_7000,
  137. .ht_params = &iwl7000_ht_params,
  138. .nvm_ver = IWL7260_NVM_VERSION,
  139. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  140. .high_temp = true,
  141. .host_interrupt_operation_mode = true,
  142. .lp_xtal_workaround = true,
  143. };
  144. const struct iwl_cfg iwl7260_2n_cfg = {
  145. .name = "Intel(R) Dual Band Wireless N 7260",
  146. .fw_name_pre = IWL7260_FW_PRE,
  147. IWL_DEVICE_7000,
  148. .ht_params = &iwl7000_ht_params,
  149. .nvm_ver = IWL7260_NVM_VERSION,
  150. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  151. .host_interrupt_operation_mode = true,
  152. .lp_xtal_workaround = true,
  153. };
  154. const struct iwl_cfg iwl7260_n_cfg = {
  155. .name = "Intel(R) Wireless N 7260",
  156. .fw_name_pre = IWL7260_FW_PRE,
  157. IWL_DEVICE_7000,
  158. .ht_params = &iwl7000_ht_params,
  159. .nvm_ver = IWL7260_NVM_VERSION,
  160. .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
  161. .host_interrupt_operation_mode = true,
  162. .lp_xtal_workaround = true,
  163. };
  164. const struct iwl_cfg iwl3160_2ac_cfg = {
  165. .name = "Intel(R) Dual Band Wireless AC 3160",
  166. .fw_name_pre = IWL3160_FW_PRE,
  167. IWL_DEVICE_7000,
  168. .ht_params = &iwl7000_ht_params,
  169. .nvm_ver = IWL3160_NVM_VERSION,
  170. .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
  171. .host_interrupt_operation_mode = true,
  172. };
  173. const struct iwl_cfg iwl3160_2n_cfg = {
  174. .name = "Intel(R) Dual Band Wireless N 3160",
  175. .fw_name_pre = IWL3160_FW_PRE,
  176. IWL_DEVICE_7000,
  177. .ht_params = &iwl7000_ht_params,
  178. .nvm_ver = IWL3160_NVM_VERSION,
  179. .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
  180. .host_interrupt_operation_mode = true,
  181. };
  182. const struct iwl_cfg iwl3160_n_cfg = {
  183. .name = "Intel(R) Wireless N 3160",
  184. .fw_name_pre = IWL3160_FW_PRE,
  185. IWL_DEVICE_7000,
  186. .ht_params = &iwl7000_ht_params,
  187. .nvm_ver = IWL3160_NVM_VERSION,
  188. .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
  189. .host_interrupt_operation_mode = true,
  190. };
  191. static const struct iwl_pwr_tx_backoff iwl7265_pwr_tx_backoffs[] = {
  192. {.pwr = 1600, .backoff = 0},
  193. {.pwr = 1300, .backoff = 467},
  194. {.pwr = 900, .backoff = 1900},
  195. {.pwr = 800, .backoff = 2630},
  196. {.pwr = 700, .backoff = 3720},
  197. {.pwr = 600, .backoff = 5550},
  198. {.pwr = 500, .backoff = 9350},
  199. {0},
  200. };
  201. static const struct iwl_ht_params iwl7265_ht_params = {
  202. .stbc = true,
  203. .ldpc = true,
  204. .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
  205. };
  206. const struct iwl_cfg iwl3165_2ac_cfg = {
  207. .name = "Intel(R) Dual Band Wireless AC 3165",
  208. .fw_name_pre = IWL3165_FW_PRE,
  209. IWL_DEVICE_7000,
  210. .ht_params = &iwl7000_ht_params,
  211. .nvm_ver = IWL3165_NVM_VERSION,
  212. .nvm_calib_ver = IWL3165_TX_POWER_VERSION,
  213. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  214. };
  215. const struct iwl_cfg iwl7265_2ac_cfg = {
  216. .name = "Intel(R) Dual Band Wireless AC 7265",
  217. .fw_name_pre = IWL7265_FW_PRE,
  218. IWL_DEVICE_7000,
  219. .ht_params = &iwl7265_ht_params,
  220. .nvm_ver = IWL7265_NVM_VERSION,
  221. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  222. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  223. };
  224. const struct iwl_cfg iwl7265_2n_cfg = {
  225. .name = "Intel(R) Dual Band Wireless N 7265",
  226. .fw_name_pre = IWL7265_FW_PRE,
  227. IWL_DEVICE_7000,
  228. .ht_params = &iwl7265_ht_params,
  229. .nvm_ver = IWL7265_NVM_VERSION,
  230. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  231. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  232. };
  233. const struct iwl_cfg iwl7265_n_cfg = {
  234. .name = "Intel(R) Wireless N 7265",
  235. .fw_name_pre = IWL7265_FW_PRE,
  236. IWL_DEVICE_7000,
  237. .ht_params = &iwl7265_ht_params,
  238. .nvm_ver = IWL7265_NVM_VERSION,
  239. .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
  240. .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
  241. };
  242. MODULE_FIRMWARE(IWL7260_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
  243. MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL3160_UCODE_API_OK));
  244. MODULE_FIRMWARE(IWL3165_MODULE_FIRMWARE(IWL3160_UCODE_API_OK));
  245. MODULE_FIRMWARE(IWL7265_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));