qal_vbus_dev.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: qal_vbus_dev
  20. * QCA abstraction layer (QAL) virtual bus management APIs
  21. */
  22. #if !defined(__QAL_VBUS_DEV_H)
  23. #define __QAL_VBUS_DEV_H
  24. /* Include Files */
  25. #include <qdf_types.h>
  26. #include <i_qal_vbus_dev.h>
  27. struct qdf_vbus_resource;
  28. struct qdf_vbus_rstctl;
  29. struct qdf_dev_clk;
  30. struct qdf_pfm_hndl;
  31. struct qdf_pfm_drv;
  32. #ifdef ENHANCED_OS_ABSTRACTION
  33. /**
  34. * qal_vbus_get_iorsc() - acquire io resource
  35. * @devnum: Device Number
  36. * @flag: Property bitmap for the io resource
  37. * @devname: Device name string
  38. *
  39. * This function will allocate the io resource for a device
  40. *
  41. * Return: QDF_STATUS_SUCCESS on success
  42. */
  43. QDF_STATUS
  44. qal_vbus_get_iorsc(int devnum, uint32_t flag, char *devname);
  45. /**
  46. * qdf_vbus_release_iorsc() - release io resource
  47. * @devnum: Device Number
  48. *
  49. * This function will release the io resource attached to a device
  50. *
  51. * Return: QDF_STATUS_SUCCESS on success
  52. */
  53. QDF_STATUS
  54. qal_vbus_release_iorsc(int devnum);
  55. /**
  56. * qal_vbus_enable_devclk() - enable device clock
  57. * @clk: Device clock
  58. *
  59. * This function will enable the clock for a device
  60. *
  61. * Return: QDF_STATUS_SUCCESS on success
  62. */
  63. QDF_STATUS
  64. qal_vbus_enable_devclk(struct qdf_dev_clk *clk);
  65. /**
  66. * qal_vbus_disable_devclk() - disable device clock
  67. * @clk: Device clock
  68. *
  69. * This function will disable the clock for a device
  70. *
  71. * Return: QDF_STATUS_SUCCESS on success
  72. */
  73. QDF_STATUS
  74. qal_vbus_disable_devclk(struct qdf_dev_clk *clk);
  75. /**
  76. * qal_vbus_acquire_dev_rstctl() - get device reset control
  77. * @pfhndl: Device handle
  78. * @state: Device state information
  79. * @rstctl: Device reset control handle
  80. *
  81. * This function will acquire the control to reset the device
  82. *
  83. * Return: QDF_STATUS_SUCCESS on success
  84. */
  85. QDF_STATUS
  86. qal_vbus_get_dev_rstctl(struct qdf_pfm_hndl *pfhndl, const char *state,
  87. struct qdf_vbus_rstctl **rstctl);
  88. /**
  89. * qal_vbus_release_dev_rstctl() - release device reset control
  90. * @pfhndl: Device handle
  91. * @rstctl: Device reset control handle
  92. *
  93. * This function will release the control to reset the device
  94. *
  95. * Return: QDF_STATUS_SUCCESS on success
  96. */
  97. QDF_STATUS
  98. qal_vbus_release_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  99. struct qdf_vbus_rstctl *rstctl);
  100. /**
  101. * qal_vbus_activate_dev_rstctl() - activate device reset control
  102. * @pfhndl: Device handle
  103. * @rstctl: Device reset control handle
  104. *
  105. * This function will activate the reset control for the device
  106. *
  107. * Return: QDF_STATUS_SUCCESS on success
  108. */
  109. QDF_STATUS
  110. qal_vbus_activate_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  111. struct qdf_vbus_rstctl *rstctl);
  112. /**
  113. * qal_vbus_deactivate_dev_rstctl() - deactivate device reset control
  114. * @pfhndl: Device handle
  115. * @rstctl: Device reset control handle
  116. *
  117. * This function will deactivate the reset control for the device
  118. *
  119. * Return: QDF_STATUS_SUCCESS on success
  120. */
  121. QDF_STATUS
  122. qal_vbus_deactivate_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  123. struct qdf_vbus_rstctl *rstctl);
  124. /**
  125. * qal_vbus_get_resource() - get resource
  126. * @pfhndl: Device handle
  127. * @rsc: Resource handle
  128. * @restype: Resource type
  129. * @residx: Resource index
  130. *
  131. * This function will acquire a particular resource and attach it to the device
  132. *
  133. * Return: QDF_STATUS_SUCCESS on success
  134. */
  135. QDF_STATUS
  136. qal_vbus_get_resource(struct qdf_pfm_hndl *pfhndl,
  137. struct qdf_vbus_resource **rsc, uint32_t restype,
  138. uint32_t residx);
  139. /**
  140. * qal_vbus_get_irq() - get irq
  141. * @pfhndl: Device handle
  142. * @str: Device identifier
  143. * @irq: irq number
  144. *
  145. * This function will acquire an irq for the device
  146. *
  147. * Return: QDF_STATUS_SUCCESS on success
  148. */
  149. QDF_STATUS
  150. qal_vbus_get_irq(struct qdf_pfm_hndl *pfhndl, const char *str, int *irq);
  151. /**
  152. * qal_vbus_register_driver() - register driver
  153. * @pfdev: Device handle
  154. *
  155. * This function will initialize a device
  156. *
  157. * Return: QDF_STATUS_SUCCESS on success
  158. */
  159. QDF_STATUS
  160. qal_vbus_register_driver(struct qdf_pfm_drv *pfdev);
  161. /**
  162. * qal_vbus_deregister_driver() - deregister driver
  163. * @pfdev: Device handle
  164. *
  165. * This function will deregister the driver for a device
  166. *
  167. * Return: QDF_STATUS_SUCCESS on success
  168. */
  169. QDF_STATUS
  170. qal_vbus_deregister_driver(struct qdf_pfm_drv *pfdev);
  171. #else
  172. static inline QDF_STATUS
  173. qal_vbus_get_iorsc(int devnum, uint32_t flag, char *devname)
  174. {
  175. return __qal_vbus_get_iorsc(devnum, flag, devname);
  176. }
  177. static inline QDF_STATUS
  178. qal_vbus_release_iorsc(int devnum)
  179. {
  180. return __qal_vbus_release_iorsc(devnum);
  181. }
  182. static inline QDF_STATUS
  183. qal_vbus_enable_devclk(struct qdf_dev_clk *clk)
  184. {
  185. return __qal_vbus_enable_devclk(clk);
  186. }
  187. static inline QDF_STATUS
  188. qal_vbus_disable_devclk(struct qdf_dev_clk *clk)
  189. {
  190. return __qal_vbus_disable_devclk(clk);
  191. }
  192. static inline QDF_STATUS
  193. qal_vbus_get_dev_rstctl(struct qdf_pfm_hndl *pfhndl, const char *state,
  194. struct qdf_vbus_rstctl **rstctl)
  195. {
  196. return __qal_vbus_get_dev_rstctl(pfhndl, state, rstctl);
  197. }
  198. static inline QDF_STATUS
  199. qal_vbus_release_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  200. struct qdf_vbus_rstctl *rstctl)
  201. {
  202. return __qal_vbus_release_dev_rstctl(pfhndl, rstctl);
  203. }
  204. static inline QDF_STATUS
  205. qal_vbus_activate_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  206. struct qdf_vbus_rstctl *rstctl)
  207. {
  208. return __qal_vbus_activate_dev_rstctl(pfhndl, rstctl);
  209. }
  210. static inline QDF_STATUS
  211. qal_vbus_deactivate_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  212. struct qdf_vbus_rstctl *rstctl)
  213. {
  214. return __qal_vbus_deactivate_dev_rstctl(pfhndl, rstctl);
  215. }
  216. static inline QDF_STATUS
  217. qal_vbus_get_resource(struct qdf_pfm_hndl *pfhndl,
  218. struct qdf_vbus_resource **rsc, uint32_t restype,
  219. uint32_t residx)
  220. {
  221. return __qal_vbus_get_resource(pfhndl, rsc, restype, residx);
  222. }
  223. static inline QDF_STATUS
  224. qal_vbus_get_irq(struct qdf_pfm_hndl *pfhndl, const char *str, int *irq)
  225. {
  226. return __qal_vbus_get_irq(pfhndl, str, irq);
  227. }
  228. static inline QDF_STATUS
  229. qal_vbus_register_driver(struct qdf_pfm_drv *pfdev)
  230. {
  231. return __qal_vbus_register_driver(pfdev);
  232. }
  233. static inline QDF_STATUS
  234. qal_vbus_deregister_driver(struct qdf_pfm_drv *pfdev)
  235. {
  236. return __qal_vbus_deregister_driver(pfdev);
  237. }
  238. #endif
  239. #endif /* __QAL_VBUS_DEV_H */