hif.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * Copyright (c) 2005-2011 Atheros Communications Inc.
  3. * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  12. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  15. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. #ifndef _HIF_H_
  18. #define _HIF_H_
  19. #include <linux/kernel.h>
  20. #include "core.h"
  21. struct ath10k_hif_sg_item {
  22. u16 transfer_id;
  23. void *transfer_context; /* NULL = tx completion callback not called */
  24. void *vaddr; /* for debugging mostly */
  25. u32 paddr;
  26. u16 len;
  27. };
  28. struct ath10k_hif_cb {
  29. int (*tx_completion)(struct ath10k *ar,
  30. struct sk_buff *wbuf,
  31. unsigned transfer_id);
  32. int (*rx_completion)(struct ath10k *ar,
  33. struct sk_buff *wbuf,
  34. u8 pipe_id);
  35. };
  36. struct ath10k_hif_ops {
  37. /* send a scatter-gather list to the target */
  38. int (*tx_sg)(struct ath10k *ar, u8 pipe_id,
  39. struct ath10k_hif_sg_item *items, int n_items);
  40. /*
  41. * API to handle HIF-specific BMI message exchanges, this API is
  42. * synchronous and only allowed to be called from a context that
  43. * can block (sleep)
  44. */
  45. int (*exchange_bmi_msg)(struct ath10k *ar,
  46. void *request, u32 request_len,
  47. void *response, u32 *response_len);
  48. /* Post BMI phase, after FW is loaded. Starts regular operation */
  49. int (*start)(struct ath10k *ar);
  50. /* Clean up what start() did. This does not revert to BMI phase. If
  51. * desired so, call power_down() and power_up() */
  52. void (*stop)(struct ath10k *ar);
  53. int (*map_service_to_pipe)(struct ath10k *ar, u16 service_id,
  54. u8 *ul_pipe, u8 *dl_pipe,
  55. int *ul_is_polled, int *dl_is_polled);
  56. void (*get_default_pipe)(struct ath10k *ar, u8 *ul_pipe, u8 *dl_pipe);
  57. /*
  58. * Check if prior sends have completed.
  59. *
  60. * Check whether the pipe in question has any completed
  61. * sends that have not yet been processed.
  62. * This function is only relevant for HIF pipes that are configured
  63. * to be polled rather than interrupt-driven.
  64. */
  65. void (*send_complete_check)(struct ath10k *ar, u8 pipe_id, int force);
  66. void (*set_callbacks)(struct ath10k *ar,
  67. struct ath10k_hif_cb *callbacks);
  68. u16 (*get_free_queue_number)(struct ath10k *ar, u8 pipe_id);
  69. /* Power up the device and enter BMI transfer mode for FW download */
  70. int (*power_up)(struct ath10k *ar);
  71. /* Power down the device and free up resources. stop() must be called
  72. * before this if start() was called earlier */
  73. void (*power_down)(struct ath10k *ar);
  74. int (*suspend)(struct ath10k *ar);
  75. int (*resume)(struct ath10k *ar);
  76. };
  77. static inline int ath10k_hif_tx_sg(struct ath10k *ar, u8 pipe_id,
  78. struct ath10k_hif_sg_item *items,
  79. int n_items)
  80. {
  81. return ar->hif.ops->tx_sg(ar, pipe_id, items, n_items);
  82. }
  83. static inline int ath10k_hif_exchange_bmi_msg(struct ath10k *ar,
  84. void *request, u32 request_len,
  85. void *response, u32 *response_len)
  86. {
  87. return ar->hif.ops->exchange_bmi_msg(ar, request, request_len,
  88. response, response_len);
  89. }
  90. static inline int ath10k_hif_start(struct ath10k *ar)
  91. {
  92. return ar->hif.ops->start(ar);
  93. }
  94. static inline void ath10k_hif_stop(struct ath10k *ar)
  95. {
  96. return ar->hif.ops->stop(ar);
  97. }
  98. static inline int ath10k_hif_map_service_to_pipe(struct ath10k *ar,
  99. u16 service_id,
  100. u8 *ul_pipe, u8 *dl_pipe,
  101. int *ul_is_polled,
  102. int *dl_is_polled)
  103. {
  104. return ar->hif.ops->map_service_to_pipe(ar, service_id,
  105. ul_pipe, dl_pipe,
  106. ul_is_polled, dl_is_polled);
  107. }
  108. static inline void ath10k_hif_get_default_pipe(struct ath10k *ar,
  109. u8 *ul_pipe, u8 *dl_pipe)
  110. {
  111. ar->hif.ops->get_default_pipe(ar, ul_pipe, dl_pipe);
  112. }
  113. static inline void ath10k_hif_send_complete_check(struct ath10k *ar,
  114. u8 pipe_id, int force)
  115. {
  116. ar->hif.ops->send_complete_check(ar, pipe_id, force);
  117. }
  118. static inline void ath10k_hif_set_callbacks(struct ath10k *ar,
  119. struct ath10k_hif_cb *callbacks)
  120. {
  121. ar->hif.ops->set_callbacks(ar, callbacks);
  122. }
  123. static inline u16 ath10k_hif_get_free_queue_number(struct ath10k *ar,
  124. u8 pipe_id)
  125. {
  126. return ar->hif.ops->get_free_queue_number(ar, pipe_id);
  127. }
  128. static inline int ath10k_hif_power_up(struct ath10k *ar)
  129. {
  130. return ar->hif.ops->power_up(ar);
  131. }
  132. static inline void ath10k_hif_power_down(struct ath10k *ar)
  133. {
  134. ar->hif.ops->power_down(ar);
  135. }
  136. static inline int ath10k_hif_suspend(struct ath10k *ar)
  137. {
  138. if (!ar->hif.ops->suspend)
  139. return -EOPNOTSUPP;
  140. return ar->hif.ops->suspend(ar);
  141. }
  142. static inline int ath10k_hif_resume(struct ath10k *ar)
  143. {
  144. if (!ar->hif.ops->resume)
  145. return -EOPNOTSUPP;
  146. return ar->hif.ops->resume(ar);
  147. }
  148. #endif /* _HIF_H_ */