qal_vbus_dev.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * Copyright (c) 2018 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(__QDF_VBUS_DEV_H)
  23. #define __QDF_VBUS_DEV_H
  24. /* Include Files */
  25. #include <qdf_types.h>
  26. struct qdf_vbus_resource;
  27. struct qdf_vbus_rstctl;
  28. struct qdf_dev_clk;
  29. struct qdf_pfm_hndl;
  30. struct qdf_pfm_drv;
  31. /**
  32. * qal_vbus_get_iorsc() - acquire io resource
  33. * @devnum: Device Number
  34. * @flag: Property bitmap for the io resource
  35. * @devname: Device name string
  36. *
  37. * This function will allocate the io resource for a device
  38. *
  39. * Return: QDF_STATUS_SUCCESS on success
  40. */
  41. QDF_STATUS
  42. qal_vbus_get_iorsc(int devnum, uint32_t flag, char *devname);
  43. /**
  44. * qdf_vbus_release_iorsc() - release io resource
  45. * @devnum: Device Number
  46. *
  47. * This function will release the io resource attached to a device
  48. *
  49. * Return: QDF_STATUS_SUCCESS on success
  50. */
  51. QDF_STATUS
  52. qal_vbus_release_iorsc(int devnum);
  53. /**
  54. * qal_vbus_enable_devclk() - enable device clock
  55. * @clk: Device clock
  56. *
  57. * This function will enable the clock for a device
  58. *
  59. * Return: QDF_STATUS_SUCCESS on success
  60. */
  61. QDF_STATUS
  62. qal_vbus_enable_devclk(struct qdf_dev_clk *clk);
  63. /**
  64. * qal_vbus_disable_devclk() - disable device clock
  65. * @clk: Device clock
  66. *
  67. * This function will disable the clock for a device
  68. *
  69. * Return: QDF_STATUS_SUCCESS on success
  70. */
  71. QDF_STATUS
  72. qal_vbus_disable_devclk(struct qdf_dev_clk *clk);
  73. /**
  74. * qal_vbus_acquire_dev_rstctl() - get device reset control
  75. * @pfhndl: Device handle
  76. * @state: Device state information
  77. * @rstctl: Device reset control handle
  78. *
  79. * This function will acquire the control to reset the device
  80. *
  81. * Return: QDF_STATUS_SUCCESS on success
  82. */
  83. QDF_STATUS
  84. qal_vbus_get_dev_rstctl(struct qdf_pfm_hndl *pfhndl, const char *state,
  85. struct qdf_vbus_rstctl **rstctl);
  86. /**
  87. * qal_vbus_release_dev_rstctl() - release device reset control
  88. * @pfhndl: Device handle
  89. * @rstctl: Device reset control handle
  90. *
  91. * This function will release the control to reset the device
  92. *
  93. * Return: QDF_STATUS_SUCCESS on success
  94. */
  95. QDF_STATUS
  96. qal_vbus_release_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  97. struct qdf_vbus_rstctl *rstctl);
  98. /**
  99. * qal_vbus_activate_dev_rstctl() - activate device reset control
  100. * @pfhndl: Device handle
  101. * @rstctl: Device reset control handle
  102. *
  103. * This function will activate the reset control for the device
  104. *
  105. * Return: QDF_STATUS_SUCCESS on success
  106. */
  107. QDF_STATUS
  108. qal_vbus_activate_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  109. struct qdf_vbus_rstctl *rstctl);
  110. /**
  111. * qal_vbus_deactivate_dev_rstctl() - deactivate device reset control
  112. * @pfhndl: Device handle
  113. * @rstctl: Device reset control handle
  114. *
  115. * This function will deactivate the reset control for the device
  116. *
  117. * Return: QDF_STATUS_SUCCESS on success
  118. */
  119. QDF_STATUS
  120. qal_vbus_deactivate_dev_rstctl(struct qdf_pfm_hndl *pfhndl,
  121. struct qdf_vbus_rstctl *rstctl);
  122. /**
  123. * qal_vbus_get_resource() - get resource
  124. * @pfhndl: Device handle
  125. * @rsc: Resource handle
  126. * @restype: Resource type
  127. * @residx: Resource index
  128. *
  129. * This function will acquire a particular resource and attach it to the device
  130. *
  131. * Return: QDF_STATUS_SUCCESS on success
  132. */
  133. QDF_STATUS
  134. qal_vbus_get_resource(struct qdf_pfm_hndl *pfhndl,
  135. struct qdf_vbus_resource **rsc, uint32_t restype,
  136. uint32_t residx);
  137. /**
  138. * qal_vbus_get_irq() - get irq
  139. * @pfhndl: Device handle
  140. * @str: Device identifier
  141. * @irq: irq number
  142. *
  143. * This function will acquire an irq for the device
  144. *
  145. * Return: QDF_STATUS_SUCCESS on success
  146. */
  147. QDF_STATUS
  148. qal_vbus_get_irq(struct qdf_pfm_hndl *pfhndl, const char *str, int *irq);
  149. /**
  150. * qal_vbus_register_driver() - register driver
  151. * @pfdev: Device handle
  152. *
  153. * This function will initialize a device
  154. *
  155. * Return: QDF_STATUS_SUCCESS on success
  156. */
  157. QDF_STATUS
  158. qal_vbus_register_driver(struct qdf_pfm_drv *pfdev);
  159. /**
  160. * qal_vbus_deregister_driver() - deregister driver
  161. * @pfdev: Device handle
  162. *
  163. * This function will deregister the driver for a device
  164. *
  165. * Return: QDF_STATUS_SUCCESS on success
  166. */
  167. QDF_STATUS
  168. qal_vbus_deregister_driver(struct qdf_pfm_drv *pfdev);
  169. #endif