trans-gen2.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  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. /* Reset the entire device */
  123. iwl_set_bit(trans, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
  124. usleep_range(1000, 2000);
  125. /*
  126. * Clear "initialization complete" bit to move adapter from
  127. * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
  128. */
  129. iwl_clear_bit(trans, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
  130. }
  131. void _iwl_trans_pcie_gen2_stop_device(struct iwl_trans *trans, bool low_power)
  132. {
  133. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  134. bool hw_rfkill, was_hw_rfkill;
  135. lockdep_assert_held(&trans_pcie->mutex);
  136. if (trans_pcie->is_down)
  137. return;
  138. trans_pcie->is_down = true;
  139. was_hw_rfkill = iwl_is_rfkill_set(trans);
  140. /* tell the device to stop sending interrupts */
  141. iwl_disable_interrupts(trans);
  142. /* device going down, Stop using ICT table */
  143. iwl_pcie_disable_ict(trans);
  144. /*
  145. * If a HW restart happens during firmware loading,
  146. * then the firmware loading might call this function
  147. * and later it might be called again due to the
  148. * restart. So don't process again if the device is
  149. * already dead.
  150. */
  151. if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) {
  152. IWL_DEBUG_INFO(trans,
  153. "DEVICE_ENABLED bit was set and is now cleared\n");
  154. iwl_pcie_gen2_tx_stop(trans);
  155. iwl_pcie_rx_stop(trans);
  156. }
  157. iwl_pcie_ctxt_info_free_paging(trans);
  158. iwl_pcie_ctxt_info_free(trans);
  159. /* Make sure (redundant) we've released our request to stay awake */
  160. iwl_clear_bit(trans, CSR_GP_CNTRL,
  161. CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
  162. /* Stop the device, and put it in low power state */
  163. iwl_pcie_gen2_apm_stop(trans, false);
  164. /* stop and reset the on-board processor */
  165. iwl_write32(trans, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
  166. usleep_range(1000, 2000);
  167. /*
  168. * Upon stop, the IVAR table gets erased, so msi-x won't
  169. * work. This causes a bug in RF-KILL flows, since the interrupt
  170. * that enables radio won't fire on the correct irq, and the
  171. * driver won't be able to handle the interrupt.
  172. * Configure the IVAR table again after reset.
  173. */
  174. iwl_pcie_conf_msix_hw(trans_pcie);
  175. /*
  176. * Upon stop, the APM issues an interrupt if HW RF kill is set.
  177. * This is a bug in certain verions of the hardware.
  178. * Certain devices also keep sending HW RF kill interrupt all
  179. * the time, unless the interrupt is ACKed even if the interrupt
  180. * should be masked. Re-ACK all the interrupts here.
  181. */
  182. iwl_disable_interrupts(trans);
  183. /* clear all status bits */
  184. clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
  185. clear_bit(STATUS_INT_ENABLED, &trans->status);
  186. clear_bit(STATUS_TPOWER_PMI, &trans->status);
  187. clear_bit(STATUS_RFKILL, &trans->status);
  188. /*
  189. * Even if we stop the HW, we still want the RF kill
  190. * interrupt
  191. */
  192. iwl_enable_rfkill_int(trans);
  193. /*
  194. * Check again since the RF kill state may have changed while
  195. * all the interrupts were disabled, in this case we couldn't
  196. * receive the RF kill interrupt and update the state in the
  197. * op_mode.
  198. * Don't call the op_mode if the rkfill state hasn't changed.
  199. * This allows the op_mode to call stop_device from the rfkill
  200. * notification without endless recursion. Under very rare
  201. * circumstances, we might have a small recursion if the rfkill
  202. * state changed exactly now while we were called from stop_device.
  203. * This is very unlikely but can happen and is supported.
  204. */
  205. hw_rfkill = iwl_is_rfkill_set(trans);
  206. if (hw_rfkill)
  207. set_bit(STATUS_RFKILL, &trans->status);
  208. else
  209. clear_bit(STATUS_RFKILL, &trans->status);
  210. if (hw_rfkill != was_hw_rfkill)
  211. iwl_trans_pcie_rf_kill(trans, hw_rfkill);
  212. /* re-take ownership to prevent other users from stealing the device */
  213. iwl_pcie_prepare_card_hw(trans);
  214. }
  215. void iwl_trans_pcie_gen2_stop_device(struct iwl_trans *trans, bool low_power)
  216. {
  217. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  218. mutex_lock(&trans_pcie->mutex);
  219. _iwl_trans_pcie_gen2_stop_device(trans, low_power);
  220. mutex_unlock(&trans_pcie->mutex);
  221. }
  222. static int iwl_pcie_gen2_nic_init(struct iwl_trans *trans)
  223. {
  224. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  225. /* TODO: most of the logic can be removed in A0 - but not in Z0 */
  226. spin_lock(&trans_pcie->irq_lock);
  227. iwl_pcie_gen2_apm_init(trans);
  228. spin_unlock(&trans_pcie->irq_lock);
  229. iwl_op_mode_nic_config(trans->op_mode);
  230. /* Allocate the RX queue, or reset if it is already allocated */
  231. if (iwl_pcie_gen2_rx_init(trans))
  232. return -ENOMEM;
  233. /* Allocate or reset and init all Tx and Command queues */
  234. if (iwl_pcie_gen2_tx_init(trans))
  235. return -ENOMEM;
  236. /* enable shadow regs in HW */
  237. iwl_set_bit(trans, CSR_MAC_SHADOW_REG_CTRL, 0x800FFFFF);
  238. IWL_DEBUG_INFO(trans, "Enabling shadow registers in device\n");
  239. return 0;
  240. }
  241. void iwl_trans_pcie_gen2_fw_alive(struct iwl_trans *trans, u32 scd_addr)
  242. {
  243. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  244. iwl_pcie_reset_ict(trans);
  245. /* make sure all queue are not stopped/used */
  246. memset(trans_pcie->queue_stopped, 0, sizeof(trans_pcie->queue_stopped));
  247. memset(trans_pcie->queue_used, 0, sizeof(trans_pcie->queue_used));
  248. /* now that we got alive we can free the fw image & the context info.
  249. * paging memory cannot be freed included since FW will still use it
  250. */
  251. iwl_pcie_ctxt_info_free(trans);
  252. }
  253. int iwl_trans_pcie_gen2_start_fw(struct iwl_trans *trans,
  254. const struct fw_img *fw, bool run_in_rfkill)
  255. {
  256. struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
  257. bool hw_rfkill;
  258. int ret;
  259. /* This may fail if AMT took ownership of the device */
  260. if (iwl_pcie_prepare_card_hw(trans)) {
  261. IWL_WARN(trans, "Exit HW not ready\n");
  262. ret = -EIO;
  263. goto out;
  264. }
  265. iwl_enable_rfkill_int(trans);
  266. iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
  267. /*
  268. * We enabled the RF-Kill interrupt and the handler may very
  269. * well be running. Disable the interrupts to make sure no other
  270. * interrupt can be fired.
  271. */
  272. iwl_disable_interrupts(trans);
  273. /* Make sure it finished running */
  274. iwl_pcie_synchronize_irqs(trans);
  275. mutex_lock(&trans_pcie->mutex);
  276. /* If platform's RF_KILL switch is NOT set to KILL */
  277. hw_rfkill = iwl_trans_check_hw_rf_kill(trans);
  278. if (hw_rfkill && !run_in_rfkill) {
  279. ret = -ERFKILL;
  280. goto out;
  281. }
  282. /* Someone called stop_device, don't try to start_fw */
  283. if (trans_pcie->is_down) {
  284. IWL_WARN(trans,
  285. "Can't start_fw since the HW hasn't been started\n");
  286. ret = -EIO;
  287. goto out;
  288. }
  289. /* make sure rfkill handshake bits are cleared */
  290. iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
  291. iwl_write32(trans, CSR_UCODE_DRV_GP1_CLR,
  292. CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
  293. /* clear (again), then enable host interrupts */
  294. iwl_write32(trans, CSR_INT, 0xFFFFFFFF);
  295. ret = iwl_pcie_gen2_nic_init(trans);
  296. if (ret) {
  297. IWL_ERR(trans, "Unable to init nic\n");
  298. goto out;
  299. }
  300. ret = iwl_pcie_ctxt_info_init(trans, fw);
  301. if (ret)
  302. goto out;
  303. /* re-check RF-Kill state since we may have missed the interrupt */
  304. hw_rfkill = iwl_trans_check_hw_rf_kill(trans);
  305. if (hw_rfkill && !run_in_rfkill)
  306. ret = -ERFKILL;
  307. out:
  308. mutex_unlock(&trans_pcie->mutex);
  309. return ret;
  310. }