ce_main.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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. #ifndef __CE_H__
  27. #define __CE_H__
  28. #include "qdf_atomic.h"
  29. #include "qdf_lock.h"
  30. #include "hif_main.h"
  31. #include "qdf_util.h"
  32. #define CE_HTT_T2H_MSG 1
  33. #define CE_HTT_H2T_MSG 4
  34. #define CE_OFFSET 0x00000400
  35. #define CE_USEFUL_SIZE 0x00000058
  36. #define CE_ALL_BITMAP 0xFFFF
  37. /**
  38. * enum ce_id_type
  39. *
  40. * @ce_id_type: Copy engine ID
  41. */
  42. enum ce_id_type {
  43. CE_ID_0,
  44. CE_ID_1,
  45. CE_ID_2,
  46. CE_ID_3,
  47. CE_ID_4,
  48. CE_ID_5,
  49. CE_ID_6,
  50. CE_ID_7,
  51. CE_ID_8,
  52. CE_ID_9,
  53. CE_ID_10,
  54. CE_ID_11,
  55. CE_ID_MAX
  56. };
  57. #ifdef CONFIG_WIN
  58. #define QWLAN_VERSIONSTR "WIN"
  59. #endif
  60. enum ol_ath_hif_pkt_ecodes {
  61. HIF_PIPE_NO_RESOURCE = 0
  62. };
  63. struct HIF_CE_state;
  64. /* Per-pipe state. */
  65. struct HIF_CE_pipe_info {
  66. /* Handle of underlying Copy Engine */
  67. struct CE_handle *ce_hdl;
  68. /* Our pipe number; facilitiates use of pipe_info ptrs. */
  69. uint8_t pipe_num;
  70. /* Convenience back pointer to HIF_CE_state. */
  71. struct HIF_CE_state *HIF_CE_state;
  72. /* Instantaneous number of receive buffers that should be posted */
  73. atomic_t recv_bufs_needed;
  74. qdf_size_t buf_sz;
  75. qdf_spinlock_t recv_bufs_needed_lock;
  76. qdf_spinlock_t completion_freeq_lock;
  77. /* Limit the number of outstanding send requests. */
  78. int num_sends_allowed;
  79. /* adding three counts for debugging ring buffer errors */
  80. uint32_t nbuf_alloc_err_count;
  81. uint32_t nbuf_dma_err_count;
  82. uint32_t nbuf_ce_enqueue_err_count;
  83. };
  84. /**
  85. * struct ce_tasklet_entry
  86. *
  87. * @intr_tq: intr_tq
  88. * @ce_id: ce_id
  89. * @inited: inited
  90. * @hif_ce_state: hif_ce_state
  91. * @from_irq: from_irq
  92. */
  93. struct ce_tasklet_entry {
  94. struct tasklet_struct intr_tq;
  95. enum ce_id_type ce_id;
  96. bool inited;
  97. void *hif_ce_state;
  98. };
  99. struct ce_intr_stats {
  100. uint32_t ce_per_cpu[CE_COUNT_MAX][QDF_MAX_AVAILABLE_CPU];
  101. };
  102. struct HIF_CE_state {
  103. struct hif_softc ol_sc;
  104. bool started;
  105. struct ce_tasklet_entry tasklets[CE_COUNT_MAX];
  106. qdf_spinlock_t keep_awake_lock;
  107. unsigned int keep_awake_count;
  108. bool verified_awake;
  109. bool fake_sleep;
  110. qdf_timer_t sleep_timer;
  111. bool sleep_timer_init;
  112. qdf_time_t sleep_ticks;
  113. struct CE_pipe_config *target_ce_config;
  114. struct CE_attr *host_ce_config;
  115. uint32_t target_ce_config_sz;
  116. /* Per-pipe state. */
  117. struct HIF_CE_pipe_info pipe_info[CE_COUNT_MAX];
  118. /* to be activated after BMI_DONE */
  119. struct hif_msg_callbacks msg_callbacks_pending;
  120. /* current msg callbacks in use */
  121. struct hif_msg_callbacks msg_callbacks_current;
  122. /* Target address used to signal a pending firmware event */
  123. uint32_t fw_indicator_address;
  124. /* Copy Engine used for Diagnostic Accesses */
  125. struct CE_handle *ce_diag;
  126. struct ce_intr_stats stats;
  127. };
  128. /*
  129. * HIA Map Definition
  130. */
  131. struct host_interest_area_t {
  132. uint32_t hi_interconnect_state;
  133. uint32_t hi_early_alloc;
  134. uint32_t hi_option_flag2;
  135. uint32_t hi_board_data;
  136. uint32_t hi_board_data_initialized;
  137. uint32_t hi_failure_state;
  138. uint32_t hi_rddi_msi_num;
  139. uint32_t hi_pcie_perst_couple_en;
  140. uint32_t hi_sw_protocol_version;
  141. };
  142. struct shadow_reg_cfg {
  143. uint16_t ce_id;
  144. uint16_t reg_offset;
  145. };
  146. void hif_ce_stop(struct hif_softc *scn);
  147. int hif_dump_ce_registers(struct hif_softc *scn);
  148. void
  149. hif_ce_dump_target_memory(struct hif_softc *scn, void *ramdump_base,
  150. uint32_t address, uint32_t size);
  151. #ifdef IPA_OFFLOAD
  152. void hif_ce_ipa_get_ce_resource(struct hif_softc *scn,
  153. qdf_dma_addr_t *ce_sr_base_paddr,
  154. uint32_t *ce_sr_ring_size,
  155. qdf_dma_addr_t *ce_reg_paddr);
  156. #else
  157. static inline
  158. void hif_ce_ipa_get_ce_resource(struct hif_softc *scn,
  159. qdf_dma_addr_t *ce_sr_base_paddr,
  160. uint32_t *ce_sr_ring_size,
  161. qdf_dma_addr_t *ce_reg_paddr)
  162. {
  163. return;
  164. }
  165. #endif
  166. int hif_wlan_enable(struct hif_softc *scn);
  167. void hif_wlan_disable(struct hif_softc *scn);
  168. void hif_get_target_ce_config(struct hif_softc *scn,
  169. struct CE_pipe_config **target_ce_config_ret,
  170. int *target_ce_config_sz_ret,
  171. struct service_to_pipe **target_service_to_ce_map_ret,
  172. int *target_service_to_ce_map_sz_ret,
  173. struct shadow_reg_cfg **target_shadow_reg_cfg_ret,
  174. int *shadow_cfg_sz_ret);
  175. #endif /* __CE_H__ */