hif.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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_cb {
  22. int (*tx_completion)(struct ath10k *ar,
  23. struct sk_buff *wbuf,
  24. unsigned transfer_id);
  25. int (*rx_completion)(struct ath10k *ar,
  26. struct sk_buff *wbuf,
  27. u8 pipe_id);
  28. };
  29. struct ath10k_hif_ops {
  30. /* Send the head of a buffer to HIF for transmission to the target. */
  31. int (*send_head)(struct ath10k *ar, u8 pipe_id,
  32. unsigned int transfer_id,
  33. unsigned int nbytes,
  34. struct sk_buff *buf);
  35. /*
  36. * API to handle HIF-specific BMI message exchanges, this API is
  37. * synchronous and only allowed to be called from a context that
  38. * can block (sleep)
  39. */
  40. int (*exchange_bmi_msg)(struct ath10k *ar,
  41. void *request, u32 request_len,
  42. void *response, u32 *response_len);
  43. int (*start)(struct ath10k *ar);
  44. void (*stop)(struct ath10k *ar);
  45. int (*map_service_to_pipe)(struct ath10k *ar, u16 service_id,
  46. u8 *ul_pipe, u8 *dl_pipe,
  47. int *ul_is_polled, int *dl_is_polled);
  48. void (*get_default_pipe)(struct ath10k *ar, u8 *ul_pipe, u8 *dl_pipe);
  49. /*
  50. * Check if prior sends have completed.
  51. *
  52. * Check whether the pipe in question has any completed
  53. * sends that have not yet been processed.
  54. * This function is only relevant for HIF pipes that are configured
  55. * to be polled rather than interrupt-driven.
  56. */
  57. void (*send_complete_check)(struct ath10k *ar, u8 pipe_id, int force);
  58. void (*init)(struct ath10k *ar,
  59. struct ath10k_hif_cb *callbacks);
  60. u16 (*get_free_queue_number)(struct ath10k *ar, u8 pipe_id);
  61. };
  62. static inline int ath10k_hif_send_head(struct ath10k *ar, u8 pipe_id,
  63. unsigned int transfer_id,
  64. unsigned int nbytes,
  65. struct sk_buff *buf)
  66. {
  67. return ar->hif.ops->send_head(ar, pipe_id, transfer_id, nbytes, buf);
  68. }
  69. static inline int ath10k_hif_exchange_bmi_msg(struct ath10k *ar,
  70. void *request, u32 request_len,
  71. void *response, u32 *response_len)
  72. {
  73. return ar->hif.ops->exchange_bmi_msg(ar, request, request_len,
  74. response, response_len);
  75. }
  76. static inline int ath10k_hif_start(struct ath10k *ar)
  77. {
  78. return ar->hif.ops->start(ar);
  79. }
  80. static inline void ath10k_hif_stop(struct ath10k *ar)
  81. {
  82. return ar->hif.ops->stop(ar);
  83. }
  84. static inline int ath10k_hif_map_service_to_pipe(struct ath10k *ar,
  85. u16 service_id,
  86. u8 *ul_pipe, u8 *dl_pipe,
  87. int *ul_is_polled,
  88. int *dl_is_polled)
  89. {
  90. return ar->hif.ops->map_service_to_pipe(ar, service_id,
  91. ul_pipe, dl_pipe,
  92. ul_is_polled, dl_is_polled);
  93. }
  94. static inline void ath10k_hif_get_default_pipe(struct ath10k *ar,
  95. u8 *ul_pipe, u8 *dl_pipe)
  96. {
  97. ar->hif.ops->get_default_pipe(ar, ul_pipe, dl_pipe);
  98. }
  99. static inline void ath10k_hif_send_complete_check(struct ath10k *ar,
  100. u8 pipe_id, int force)
  101. {
  102. ar->hif.ops->send_complete_check(ar, pipe_id, force);
  103. }
  104. static inline void ath10k_hif_init(struct ath10k *ar,
  105. struct ath10k_hif_cb *callbacks)
  106. {
  107. ar->hif.ops->init(ar, callbacks);
  108. }
  109. static inline u16 ath10k_hif_get_free_queue_number(struct ath10k *ar,
  110. u8 pipe_id)
  111. {
  112. return ar->hif.ops->get_free_queue_number(ar, pipe_id);
  113. }
  114. #endif /* _HIF_H_ */