if_snoc.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. /*
  2. * Copyright (c) 2015-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * DOC: if_snoc.c
  28. *
  29. * c file for snoc specif implementations.
  30. */
  31. #include "hif.h"
  32. #include "hif_main.h"
  33. #include "hif_debug.h"
  34. #include "hif_io32.h"
  35. #include "ce_main.h"
  36. #include "ce_tasklet.h"
  37. #include "snoc_api.h"
  38. #include <soc/qcom/icnss.h>
  39. #include "pld_common.h"
  40. #include "qdf_util.h"
  41. /**
  42. * hif_disable_isr(): disable isr
  43. *
  44. * This function disables isr and kills tasklets
  45. *
  46. * @hif_ctx: struct hif_softc
  47. *
  48. * Return: void
  49. */
  50. void hif_snoc_disable_isr(struct hif_softc *scn)
  51. {
  52. hif_nointrs(scn);
  53. ce_tasklet_kill(scn);
  54. hif_grp_tasklet_kill(scn);
  55. qdf_atomic_set(&scn->active_tasklet_cnt, 0);
  56. qdf_atomic_set(&scn->active_grp_tasklet_cnt, 0);
  57. }
  58. /**
  59. * hif_dump_registers(): dump bus debug registers
  60. * @scn: struct hif_opaque_softc
  61. *
  62. * This function dumps hif bus debug registers
  63. *
  64. * Return: 0 for success or error code
  65. */
  66. int hif_snoc_dump_registers(struct hif_softc *hif_ctx)
  67. {
  68. int status;
  69. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  70. status = hif_dump_ce_registers(scn);
  71. if (status)
  72. HIF_ERROR("%s: Dump CE Registers Failed", __func__);
  73. return 0;
  74. }
  75. void hif_snoc_display_stats(struct hif_softc *hif_ctx)
  76. {
  77. struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(hif_ctx);
  78. if (hif_state == NULL) {
  79. HIF_ERROR("%s, hif_ctx null", __func__);
  80. return;
  81. }
  82. hif_display_ce_stats(hif_state);
  83. }
  84. void hif_snoc_clear_stats(struct hif_softc *hif_ctx)
  85. {
  86. struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(hif_ctx);
  87. if (hif_state == NULL) {
  88. HIF_ERROR("%s, hif_ctx null", __func__);
  89. return;
  90. }
  91. hif_clear_ce_stats(hif_state);
  92. }
  93. /**
  94. * hif_snoc_close(): hif_bus_close
  95. *
  96. * Return: n/a
  97. */
  98. void hif_snoc_close(struct hif_softc *scn)
  99. {
  100. hif_ce_close(scn);
  101. }
  102. /**
  103. * hif_bus_open(): hif_bus_open
  104. * @hif_ctx: hif context
  105. * @bus_type: bus type
  106. *
  107. * Return: n/a
  108. */
  109. QDF_STATUS hif_snoc_open(struct hif_softc *hif_ctx, enum qdf_bus_type bus_type)
  110. {
  111. return hif_ce_open(hif_ctx);
  112. }
  113. /**
  114. * hif_snoc_get_soc_info() - populates scn with hw info
  115. *
  116. * fills in the virtual and physical base address as well as
  117. * soc version info.
  118. *
  119. * return 0 or QDF_STATUS_E_FAILURE
  120. */
  121. static QDF_STATUS hif_snoc_get_soc_info(struct hif_softc *scn)
  122. {
  123. int ret;
  124. struct pld_soc_info soc_info;
  125. qdf_mem_zero(&soc_info, sizeof(soc_info));
  126. ret = pld_get_soc_info(scn->qdf_dev->dev, &soc_info);
  127. if (ret < 0) {
  128. HIF_ERROR("%s: pld_get_soc_info error = %d", __func__, ret);
  129. return QDF_STATUS_E_FAILURE;
  130. }
  131. scn->mem = soc_info.v_addr;
  132. scn->mem_pa = soc_info.p_addr;
  133. scn->target_info.soc_version = soc_info.soc_id;
  134. scn->target_info.target_version = soc_info.soc_id;
  135. scn->target_info.target_revision = 0;
  136. return QDF_STATUS_SUCCESS;
  137. }
  138. /**
  139. * hif_bus_configure() - configure the snoc bus
  140. * @scn: pointer to the hif context.
  141. *
  142. * return: 0 for success. nonzero for failure.
  143. */
  144. int hif_snoc_bus_configure(struct hif_softc *scn)
  145. {
  146. int ret;
  147. ret = hif_snoc_get_soc_info(scn);
  148. if (ret)
  149. return ret;
  150. hif_ce_prepare_config(scn);
  151. ret = hif_wlan_enable(scn);
  152. if (ret) {
  153. HIF_ERROR("%s: hif_wlan_enable error = %d",
  154. __func__, ret);
  155. return ret;
  156. }
  157. ret = hif_config_ce(scn);
  158. if (ret)
  159. hif_wlan_disable(scn);
  160. return ret;
  161. }
  162. /**
  163. * hif_snoc_get_target_type(): Get the target type
  164. *
  165. * This function is used to query the target type.
  166. *
  167. * @ol_sc: hif_softc struct pointer
  168. * @dev: device pointer
  169. * @bdev: bus dev pointer
  170. * @bid: bus id pointer
  171. * @hif_type: HIF type such as HIF_TYPE_QCA6180
  172. * @target_type: target type such as TARGET_TYPE_QCA6180
  173. *
  174. * Return: 0 for success
  175. */
  176. static inline int hif_snoc_get_target_type(struct hif_softc *ol_sc,
  177. struct device *dev, void *bdev, const hif_bus_id *bid,
  178. uint32_t *hif_type, uint32_t *target_type)
  179. {
  180. /* TODO: need to use HW version. Hard code for now */
  181. #ifdef QCA_WIFI_3_0_ADRASTEA
  182. *hif_type = HIF_TYPE_ADRASTEA;
  183. *target_type = TARGET_TYPE_ADRASTEA;
  184. #else
  185. *hif_type = 0;
  186. *target_type = 0;
  187. #endif
  188. return 0;
  189. }
  190. /**
  191. * hif_enable_bus(): hif_enable_bus
  192. * @dev: dev
  193. * @bdev: bus dev
  194. * @bid: bus id
  195. * @type: bus type
  196. *
  197. * Return: QDF_STATUS
  198. */
  199. QDF_STATUS hif_snoc_enable_bus(struct hif_softc *ol_sc,
  200. struct device *dev, void *bdev,
  201. const hif_bus_id *bid,
  202. enum hif_enable_type type)
  203. {
  204. int ret;
  205. int hif_type;
  206. int target_type;
  207. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
  208. ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(37));
  209. #else
  210. ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(37));
  211. #endif
  212. if (ret) {
  213. HIF_ERROR("%s: failed to set dma mask error = %d",
  214. __func__, ret);
  215. return ret;
  216. }
  217. ret = qdf_device_init_wakeup(ol_sc->qdf_dev, true);
  218. if (ret == -EEXIST)
  219. HIF_WARN("%s: device_init_wakeup already done",
  220. __func__);
  221. else if (ret) {
  222. HIF_ERROR("%s: device_init_wakeup: err= %d",
  223. __func__, ret);
  224. return ret;
  225. }
  226. if (!ol_sc) {
  227. HIF_ERROR("%s: hif_ctx is NULL", __func__);
  228. return QDF_STATUS_E_NOMEM;
  229. }
  230. ret = hif_snoc_get_target_type(ol_sc, dev, bdev, bid,
  231. &hif_type, &target_type);
  232. if (ret < 0) {
  233. HIF_ERROR("%s: invalid device id/revision_id", __func__);
  234. return QDF_STATUS_E_FAILURE;
  235. }
  236. ol_sc->target_info.target_type = target_type;
  237. hif_register_tbl_attach(ol_sc, hif_type);
  238. hif_target_register_tbl_attach(ol_sc, target_type);
  239. /* the bus should remain on durring suspend for snoc */
  240. hif_vote_link_up(GET_HIF_OPAQUE_HDL(ol_sc));
  241. HIF_TRACE("%s: X - hif_type = 0x%x, target_type = 0x%x",
  242. __func__, hif_type, target_type);
  243. return QDF_STATUS_SUCCESS;
  244. }
  245. /**
  246. * hif_disable_bus(): hif_disable_bus
  247. *
  248. * This function disables the bus
  249. *
  250. * @bdev: bus dev
  251. *
  252. * Return: none
  253. */
  254. void hif_snoc_disable_bus(struct hif_softc *scn)
  255. {
  256. int ret;
  257. hif_vote_link_down(GET_HIF_OPAQUE_HDL(scn));
  258. ret = qdf_device_init_wakeup(scn->qdf_dev, false);
  259. if (ret)
  260. HIF_ERROR("%s: device_init_wakeup: err %d", __func__, ret);
  261. }
  262. /**
  263. * hif_nointrs(): disable IRQ
  264. *
  265. * This function stops interrupt(s)
  266. *
  267. * @scn: struct hif_softc
  268. *
  269. * Return: none
  270. */
  271. void hif_snoc_nointrs(struct hif_softc *scn)
  272. {
  273. struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
  274. if (scn->request_irq_done) {
  275. ce_unregister_irq(hif_state, 0xfff);
  276. scn->request_irq_done = false;
  277. }
  278. }
  279. /**
  280. * ce_irq_enable() - enable copy engine IRQ
  281. * @scn: struct hif_softc
  282. * @ce_id: ce_id
  283. *
  284. * Return: N/A
  285. */
  286. void hif_snoc_irq_enable(struct hif_softc *scn,
  287. int ce_id)
  288. {
  289. ce_enable_irq_in_individual_register(scn, ce_id);
  290. }
  291. /**
  292. * ce_irq_disable() - disable copy engine IRQ
  293. * @scn: struct hif_softc
  294. * @ce_id: ce_id
  295. *
  296. * Return: N/A
  297. */
  298. void hif_snoc_irq_disable(struct hif_softc *scn, int ce_id)
  299. {
  300. ce_disable_irq_in_individual_register(scn, ce_id);
  301. }
  302. /*
  303. * hif_snoc_setup_wakeup_sources() - enable/disable irq wake on correct irqs
  304. * @hif_softc: hif context
  305. *
  306. * Firmware will send a wakeup request to the HTC_CTRL_RSVD_SVC when waking up
  307. * the host driver. Ensure that the copy complete interrupt from this copy
  308. * engine can wake up the apps processor.
  309. *
  310. * Return: 0 for success
  311. */
  312. QDF_STATUS hif_snoc_setup_wakeup_sources(struct hif_softc *scn, bool enable)
  313. {
  314. struct hif_opaque_softc *hif_hdl = GET_HIF_OPAQUE_HDL(scn);
  315. uint8_t ul_pipe, dl_pipe;
  316. int ul_is_polled, dl_is_polled;
  317. int irq_to_wake_on;
  318. QDF_STATUS status;
  319. int ret;
  320. status = hif_map_service_to_pipe(hif_hdl, HTC_CTRL_RSVD_SVC,
  321. &ul_pipe, &dl_pipe,
  322. &ul_is_polled, &dl_is_polled);
  323. if (status) {
  324. HIF_ERROR("%s: pipe_mapping failure", __func__);
  325. return status;
  326. }
  327. irq_to_wake_on = icnss_get_irq(dl_pipe);
  328. if (irq_to_wake_on < 0) {
  329. HIF_ERROR("%s: failed to map ce to irq", __func__);
  330. return QDF_STATUS_E_RESOURCES;
  331. }
  332. if (enable)
  333. ret = enable_irq_wake(irq_to_wake_on);
  334. else
  335. ret = disable_irq_wake(irq_to_wake_on);
  336. if (ret) {
  337. HIF_ERROR("%s: Fail to setup wake IRQ!", __func__);
  338. return QDF_STATUS_E_RESOURCES;
  339. }
  340. HIF_INFO("%s: expecting wake from ce %d, irq %d enable %d",
  341. __func__, dl_pipe, irq_to_wake_on, enable);
  342. return QDF_STATUS_SUCCESS;
  343. }
  344. /**
  345. * hif_snoc_bus_suspend() - prepare to suspend the bus
  346. * @scn: hif context
  347. *
  348. * Setup wakeup interrupt configuration.
  349. * Disable CE interrupts (wakeup interrupt will still wake apps)
  350. * Drain tasklets. - make sure that we don't suspend while processing
  351. * the wakeup message.
  352. *
  353. * Return: 0 on success.
  354. */
  355. int hif_snoc_bus_suspend(struct hif_softc *scn)
  356. {
  357. if (hif_snoc_setup_wakeup_sources(scn, true) != QDF_STATUS_SUCCESS)
  358. return -EFAULT;
  359. return 0;
  360. }
  361. /**
  362. * hif_snoc_bus_resume() - snoc bus resume function
  363. * @scn: hif context
  364. *
  365. * Clear wakeup interrupt configuration.
  366. * Reenable ce interrupts
  367. *
  368. * Return: 0 on success
  369. */
  370. int hif_snoc_bus_resume(struct hif_softc *scn)
  371. {
  372. if (hif_snoc_setup_wakeup_sources(scn, false) != QDF_STATUS_SUCCESS)
  373. QDF_BUG(0);
  374. return 0;
  375. }
  376. /**
  377. * hif_snoc_bus_suspend_noirq() - ensure there are no pending transactions
  378. * @scn: hif context
  379. *
  380. * Ensure that if we recieved the wakeup message before the irq
  381. * was disabled that the message is pocessed before suspending.
  382. *
  383. * Return: -EBUSY if we fail to flush the tasklets.
  384. */
  385. int hif_snoc_bus_suspend_noirq(struct hif_softc *scn)
  386. {
  387. if (hif_drain_tasklets(scn) != 0)
  388. return -EBUSY;
  389. return 0;
  390. }