trans-gen2.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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) 2017 Intel Deutschland GmbH
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of version 2 of the GNU General Public License as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * BSD LICENSE
  20. *
  21. * Copyright(c) 2017 Intel Deutschland GmbH
  22. * All rights reserved.
  23. *
  24. * Redistribution and use in source and binary forms, with or without
  25. * modification, are permitted provided that the following conditions
  26. * are met:
  27. *
  28. * * Redistributions of source code must retain the above copyright
  29. * notice, this list of conditions and the following disclaimer.
  30. * * Redistributions in binary form must reproduce the above copyright
  31. * notice, this list of conditions and the following disclaimer in
  32. * the documentation and/or other materials provided with the
  33. * distribution.
  34. * * Neither the name Intel Corporation nor the names of its
  35. * contributors may be used to endorse or promote products derived
  36. * from this software without specific prior written permission.
  37. *
  38. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  39. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  40. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  41. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  42. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  43. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  44. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  45. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  46. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  47. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  48. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  49. *
  50. *****************************************************************************/
  51. #include "iwl-trans.h"
  52. #include "iwl-context-info.h"
  53. #include "internal.h"
  54. /*
  55. * Start up NIC's basic functionality after it has been reset
  56. * (e.g. after platform boot, or shutdown via iwl_pcie_apm_stop())
  57. * NOTE: This does not load uCode nor start the embedded processor
  58. */
  59. static int iwl_pcie_gen2_apm_init(struct iwl_trans *trans)
  60. {
  61. int ret = 0;
  62. IWL_DEBUG_INFO(trans, "Init card's basic functions\n");
  63. /*
  64. * Use "set_bit" below rather than "write", to preserve any hardware
  65. * bits already set by default after reset.
  66. */
  67. /*
  68. * Disable L0s without affecting L1;
  69. * don't wait for ICH L0s (ICH bug W/A)
  70. */
  71. iwl_set_bit(trans, CSR_GIO_CHICKEN_BITS,
  72. CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
  73. /* Set FH wait threshold to maximum (HW error during stress W/A) */
  74. iwl_set_bit(trans, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
  75. /*
  76. * Enable HAP INTA (interrupt from management bus) to
  77. * wake device's PCI Express link L1a -> L0s
  78. */
  79. iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
  80. CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
  81. iwl_pcie_apm_config(trans);
  82. /*
  83. * Set "initialization complete" bit to move adapter from
  84. * D0U* --> D0A* (powered-up active) state.
  85. */
  86. iwl_set_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
  87. /*
  88. * Wait for clock stabilization; once stabilized, access to
  89. * device-internal resources is supported, e.g. iwl_write_prph()
  90. * and accesses to uCode SRAM.
  91. */
  92. ret = iwl_poll_bit(trans, CSR_GP_CNTRL,
  93. CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
  94. CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
  95. if (ret < 0) {
  96. IWL_DEBUG_INFO(trans, "Failed to init the card\n");
  97. return ret;
  98. }
  99. set_bit(STATUS_DEVICE_ENABLED, &trans->status);
  100. return 0;
  101. }
  102. static void iwl_pcie_gen2_apm_stop(struct iwl_trans *trans, bool op_mode_leave)
  103. {
  104. IWL_DEBUG_INFO(trans, "Stop card, put in low power state\n");
  105. if (op_mode_leave) {
  106. if (!test_bit(STATUS_DEVICE_ENABLED, &trans->status))
  107. iwl_pcie_gen2_apm_init(trans);
  108. /* inform ME that we are leaving */
  109. iwl_set_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
  110. CSR_RESET_LINK_PWR_MGMT_DISABLED);
  111. iwl_set_bit(trans, CSR_HW_IF_CONFIG_REG,
  112. CSR_HW_IF_CONFIG_REG_PREPARE |
  113. CSR_HW_IF_CONFIG_REG_ENABLE_PME);
  114. mdelay(1);
  115. iwl_clear_bit(trans, CSR_DBG_LINK_PWR_MGMT_REG,
  116. CSR_RESET_LINK_PWR_MGMT_DISABLED);
  117. mdelay(5);
  118. }
  119. clear_bit(STATUS_DEVICE_ENABLED, &trans->status);
  120. /* Stop device's DMA activity */
  121. iwl_pcie_apm_stop_master(trans);
  122. iwl_pcie_sw_reset(trans);
  123. /*
  124. * Clear "initialization complete" bit to move adapter from
  125. * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
  126. */
  127. iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
  128. }
  129. void _iwl_trans_pcie_gen2_stop_device(struct iwl_trans *trans, bool low_power)
  130. {
  131. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  132. lockdep_assert_held(&trans_pcie->mutex);
  133. if (trans_pcie->is_down)
  134. return;
  135. trans_pcie->is_down = true;
  136. /* tell the device to stop sending interrupts */
  137. iwl_disable_interrupts(trans);
  138. /* device going down, Stop using ICT table */
  139. iwl_pcie_disable_ict(trans);
  140. /*
  141. * If a HW restart happens during firmware loading,
  142. * then the firmware loading might call this function
  143. * and later it might be called again due to the
  144. * restart. So don't process again if the device is
  145. * already dead.
  146. */
  147. if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) {
  148. IWL_DEBUG_INFO(trans,
  149. "DEVICE_ENABLED bit was set and is now cleared\n");
  150. iwl_pcie_gen2_tx_stop(trans);
  151. iwl_pcie_rx_stop(trans);
  152. }
  153. iwl_pcie_ctxt_info_free_paging(trans);
  154. iwl_pcie_ctxt_info_free(trans);
  155. /* Make sure (redundant) we've released our request to stay awake */
  156. iwl_clear_bit(trans, CSR_GP_CNTRL,
  157. CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
  158. /* Stop the device, and put it in low power state */
  159. iwl_pcie_gen2_apm_stop(trans, false);
  160. iwl_pcie_sw_reset(trans);
  161. /*
  162. * Upon stop, the IVAR table gets erased, so msi-x won't
  163. * work. This causes a bug in RF-KILL flows, since the interrupt
  164. * that enables radio won't fire on the correct irq, and the
  165. * driver won't be able to handle the interrupt.
  166. * Configure the IVAR table again after reset.
  167. */
  168. iwl_pcie_conf_msix_hw(trans_pcie);
  169. /*
  170. * Upon stop, the APM issues an interrupt if HW RF kill is set.
  171. * This is a bug in certain verions of the hardware.
  172. * Certain devices also keep sending HW RF kill interrupt all
  173. * the time, unless the interrupt is ACKed even if the interrupt
  174. * should be masked. Re-ACK all the interrupts here.
  175. */
  176. iwl_disable_interrupts(trans);
  177. /* clear all status bits */
  178. clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
  179. clear_bit(STATUS_INT_ENABLED, &trans->status);
  180. clear_bit(STATUS_TPOWER_PMI, &trans->status);
  181. /*
  182. * Even if we stop the HW, we still want the RF kill
  183. * interrupt
  184. */
  185. iwl_enable_rfkill_int(trans);
  186. /* re-take ownership to prevent other users from stealing the device */
  187. iwl_pcie_prepare_card_hw(trans);
  188. }
  189. void iwl_trans_pcie_gen2_stop_device(struct iwl_trans *trans, bool low_power)
  190. {
  191. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  192. bool was_in_rfkill;
  193. mutex_lock(&trans_pcie->mutex);
  194. trans_pcie->opmode_down = true;
  195. was_in_rfkill = test_bit(STATUS_RFKILL_OPMODE, &trans->status);
  196. _iwl_trans_pcie_gen2_stop_device(trans, low_power);
  197. iwl_trans_pcie_handle_stop_rfkill(trans, was_in_rfkill);
  198. mutex_unlock(&trans_pcie->mutex);
  199. }
  200. static int iwl_pcie_gen2_nic_init(struct iwl_trans *trans)
  201. {
  202. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  203. /* TODO: most of the logic can be removed in A0 - but not in Z0 */
  204. spin_lock(&trans_pcie->irq_lock);
  205. iwl_pcie_gen2_apm_init(trans);
  206. spin_unlock(&trans_pcie->irq_lock);
  207. iwl_op_mode_nic_config(trans->op_mode);
  208. /* Allocate the RX queue, or reset if it is already allocated */
  209. if (iwl_pcie_gen2_rx_init(trans))
  210. return -ENOMEM;
  211. /* Allocate or reset and init all Tx and Command queues */
  212. if (iwl_pcie_gen2_tx_init(trans))
  213. return -ENOMEM;
  214. /* enable shadow regs in HW */
  215. iwl_set_bit(trans, CSR_MAC_SHADOW_REG_CTRL, 0x800FFFFF);
  216. IWL_DEBUG_INFO(trans, "Enabling shadow registers in device\n");
  217. return 0;
  218. }
  219. void iwl_trans_pcie_gen2_fw_alive(struct iwl_trans *trans, u32 scd_addr)
  220. {
  221. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  222. iwl_pcie_reset_ict(trans);
  223. /* make sure all queue are not stopped/used */
  224. memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
  225. memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
  226. /* now that we got alive we can free the fw image & the context info.
  227. * paging memory cannot be freed included since FW will still use it
  228. */
  229. iwl_pcie_ctxt_info_free(trans);
  230. }
  231. int iwl_trans_pcie_gen2_start_fw(struct iwl_trans *trans,
  232. const struct fw_img *fw, bool run_in_rfkill)
  233. {
  234. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  235. bool hw_rfkill;
  236. int ret;
  237. /* This may fail if AMT took ownership of the device */
  238. if (iwl_pcie_prepare_card_hw(trans)) {
  239. IWL_WARN(trans, "Exit HW not ready\n");
  240. ret = -EIO;
  241. goto out;
  242. }
  243. iwl_enable_rfkill_int(trans);
  244. iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
  245. /*
  246. * We enabled the RF-Kill interrupt and the handler may very
  247. * well be running. Disable the interrupts to make sure no other
  248. * interrupt can be fired.
  249. */
  250. iwl_disable_interrupts(trans);
  251. /* Make sure it finished running */
  252. iwl_pcie_synchronize_irqs(trans);
  253. mutex_lock(&trans_pcie->mutex);
  254. /* If platform's RF_KILL switch is NOT set to KILL */
  255. hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
  256. if (hw_rfkill && !run_in_rfkill) {
  257. ret = -ERFKILL;
  258. goto out;
  259. }
  260. /* Someone called stop_device, don't try to start_fw */
  261. if (trans_pcie->is_down) {
  262. IWL_WARN(trans,
  263. "Can't start_fw since the HW hasn't been started\n");
  264. ret = -EIO;
  265. goto out;
  266. }
  267. /* make sure rfkill handshake bits are cleared */
  268. iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
  269. iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR,
  270. CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
  271. /* clear (again), then enable host interrupts */
  272. iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
  273. ret = iwl_pcie_gen2_nic_init(trans);
  274. if (ret) {
  275. IWL_ERR(trans, "Unable to init nic\n");
  276. goto out;
  277. }
  278. ret = iwl_pcie_ctxt_info_init(trans, fw);
  279. if (ret)
  280. goto out;
  281. /* re-check RF-Kill state since we may have missed the interrupt */
  282. hw_rfkill = iwl_pcie_check_hw_rf_kill(trans);
  283. if (hw_rfkill && !run_in_rfkill)
  284. ret = -ERFKILL;
  285. out:
  286. mutex_unlock(&trans_pcie->mutex);
  287. return ret;
  288. }