if_snoc.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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. /**
  38. * hif_bus_prevent_linkdown(): prevent linkdown
  39. *
  40. * Dummy function for busses and platforms that do not support
  41. * link down. This may need to be replaced with a wakelock.
  42. *
  43. * This is duplicated here because CONFIG_CNSS can be defined
  44. * even though it is not used for the snoc bus.
  45. */
  46. void hif_bus_prevent_linkdown(struct hif_softc *scn, bool flag)
  47. {
  48. HIF_ERROR("wlan: %s pcie power collapse ignored",
  49. (flag ? "disable" : "enable"));
  50. }
  51. /**
  52. * hif_targ_is_awake(): check if target is awake
  53. *
  54. * This function returns true if the target is awake
  55. *
  56. * @scn: struct hif_softc
  57. * @mem: mapped mem base
  58. *
  59. * Return: bool
  60. */
  61. bool hif_targ_is_awake(struct hif_softc *scn, void *__iomem *mem)
  62. {
  63. return true;
  64. }
  65. /**
  66. * hif_reset_soc(): reset soc
  67. *
  68. * this function resets soc
  69. *
  70. * @hif_ctx: HIF context
  71. *
  72. * Return: void
  73. */
  74. /* Function to reset SoC */
  75. void hif_reset_soc(struct hif_opaque_softc *hif_ctx)
  76. {
  77. }
  78. /**
  79. * hif_disable_isr(): disable isr
  80. *
  81. * This function disables isr and kills tasklets
  82. *
  83. * @hif_ctx: struct hif_softc
  84. *
  85. * Return: void
  86. */
  87. void hif_disable_isr(struct hif_opaque_softc *hif_ctx)
  88. {
  89. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx)
  90. hif_nointrs(scn);
  91. ce_tasklet_kill(scn);
  92. cdf_atomic_set(&scn->active_tasklet_cnt, 0);
  93. }
  94. /**
  95. * hif_dump_snoc_registers(): dump CE debug registers
  96. * @scn: struct hif_softc
  97. *
  98. * This function dumps SNOC debug registers
  99. *
  100. * Return: void
  101. */
  102. static void hif_dump_snoc_registers(struct hif_softc *scn)
  103. {
  104. return;
  105. }
  106. /**
  107. * hif_dump_registers(): dump bus debug registers
  108. * @scn: struct hif_opaque_softc
  109. *
  110. * This function dumps hif bus debug registers
  111. *
  112. * Return: 0 for success or error code
  113. */
  114. int hif_dump_registers(struct hif_opaque_softc *hif_ctx)
  115. {
  116. int status;
  117. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx)
  118. status = hif_dump_ce_registers(scn);
  119. if (status)
  120. HIF_ERROR("%s: Dump CE Registers Failed", __func__);
  121. hif_dump_snoc_registers(scn);
  122. return 0;
  123. }
  124. /**
  125. * hif_bus_suspend() - suspend the bus
  126. *
  127. * This function suspends the bus, but snoc doesn't need to suspend.
  128. * Therefore do nothing.
  129. *
  130. * Return: 0 for success and non-zero for failure
  131. */
  132. int hif_bus_suspend(struct hif_opaque_softc *hif_ctx)
  133. {
  134. return 0;
  135. }
  136. /**
  137. * hif_bus_resume() - hif resume API
  138. *
  139. * This function resumes the bus. but snoc doesn't need to resume.
  140. * Therefore do nothing.
  141. *
  142. * Return: 0 for success and non-zero for failure
  143. */
  144. int hif_bus_resume(struct hif_opaque_softc *hif_ctx)
  145. {
  146. return 0;
  147. }
  148. /**
  149. * hif_enable_power_gating(): enable HW power gating
  150. *
  151. * Return: n/a
  152. */
  153. void hif_enable_power_gating(struct hif_opaque_softc *hif_ctx)
  154. {
  155. }
  156. /**
  157. * hif_disable_aspm(): hif_disable_aspm
  158. *
  159. * Return: n/a
  160. */
  161. void hif_disable_aspm(struct hif_opaque_softc *hif_ctx)
  162. {
  163. }
  164. /**
  165. * hif_bus_close(): hif_bus_close
  166. *
  167. * Return: n/a
  168. */
  169. void hif_bus_close(struct hif_softc *scn)
  170. {
  171. }
  172. /**
  173. * hif_bus_get_context_size - API to get Bus Context Size
  174. *
  175. * Return: Sizeof HIF_CE_state
  176. */
  177. int hif_bus_get_context_size(void)
  178. {
  179. return sizeof(struct HIF_CE_state);
  180. }
  181. /**
  182. * hif_bus_open(): hif_bus_open
  183. * @scn: scn
  184. * @bus_type: bus type
  185. *
  186. * Return: n/a
  187. */
  188. CDF_STATUS hif_bus_open(struct hif_softc *scn, enum ath_hal_bus_type bus_type)
  189. {
  190. return CDF_STATUS_SUCCESS;
  191. }
  192. /**
  193. * hif_get_target_type(): Get the target type
  194. *
  195. * This function is used to query the target type.
  196. *
  197. * @ol_sc: hif_softc struct pointer
  198. * @dev: device pointer
  199. * @bdev: bus dev pointer
  200. * @bid: bus id pointer
  201. * @hif_type: HIF type such as HIF_TYPE_QCA6180
  202. * @target_type: target type such as TARGET_TYPE_QCA6180
  203. *
  204. * Return: 0 for success
  205. */
  206. int hif_get_target_type(struct hif_softc *ol_sc, struct device *dev,
  207. void *bdev, const hif_bus_id *bid, uint32_t *hif_type,
  208. uint32_t *target_type)
  209. {
  210. /* TODO: need to use CNSS's HW version. Hard code for now */
  211. #ifdef QCA_WIFI_3_0_ADRASTEA
  212. *hif_type = HIF_TYPE_ADRASTEA;
  213. *target_type = TARGET_TYPE_ADRASTEA;
  214. #else
  215. *hif_type = 0;
  216. *target_type = 0;
  217. #endif
  218. return 0;
  219. }
  220. /**
  221. * hif_enable_bus(): hif_enable_bus
  222. * @dev: dev
  223. * @bdev: bus dev
  224. * @bid: bus id
  225. * @type: bus type
  226. *
  227. * Return: CDF_STATUS
  228. */
  229. CDF_STATUS hif_enable_bus(struct hif_softc *ol_sc,
  230. struct device *dev, void *bdev,
  231. const hif_bus_id *bid,
  232. enum hif_enable_type type)
  233. {
  234. int ret;
  235. int hif_type;
  236. int target_type;
  237. ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
  238. if (ret) {
  239. HIF_ERROR("%s: failed to set dma mask error = %d",
  240. __func__, ret);
  241. return ret;
  242. }
  243. if (!ol_sc) {
  244. HIF_ERROR("%s: hif_ctx is NULL", __func__);
  245. return CDF_STATUS_E_NOMEM;
  246. }
  247. ret = hif_get_target_type(ol_sc, dev, bdev, bid,
  248. &hif_type, &target_type);
  249. if (ret < 0) {
  250. HIF_ERROR("%s: invalid device id/revision_id", __func__);
  251. return CDF_STATUS_E_FAILURE;
  252. }
  253. hif_register_tbl_attach(ol_sc, hif_type);
  254. target_register_tbl_attach(ol_sc, target_type);
  255. HIF_TRACE("%s: X - hif_type = 0x%x, target_type = 0x%x",
  256. __func__, hif_type, target_type);
  257. return CDF_STATUS_SUCCESS;
  258. }
  259. /**
  260. * hif_disable_bus(): hif_disable_bus
  261. *
  262. * This function disables the bus
  263. *
  264. * @bdev: bus dev
  265. *
  266. * Return: none
  267. */
  268. void hif_disable_bus(struct hif_softc *scn)
  269. {
  270. }
  271. /**
  272. * hif_nointrs(): disable IRQ
  273. *
  274. * This function stops interrupt(s)
  275. *
  276. * @scn: struct hif_softc
  277. *
  278. * Return: none
  279. */
  280. void hif_nointrs(struct hif_softc *scn)
  281. {
  282. struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
  283. if (scn->request_irq_done) {
  284. ce_unregister_irq(hif_state, 0xfff);
  285. scn->request_irq_done = false;
  286. }
  287. }