hal_internal.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. /*
  2. * Copyright (c) 2016-2020 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. #ifndef _HAL_INTERNAL_H_
  19. #define _HAL_INTERNAL_H_
  20. #include "qdf_types.h"
  21. #include "qdf_atomic.h"
  22. #include "qdf_lock.h"
  23. #include "qdf_mem.h"
  24. #include "qdf_nbuf.h"
  25. #include "pld_common.h"
  26. #define hal_alert(params...) QDF_TRACE_FATAL(QDF_MODULE_ID_TXRX, params)
  27. #define hal_err(params...) QDF_TRACE_ERROR(QDF_MODULE_ID_TXRX, params)
  28. #define hal_warn(params...) QDF_TRACE_WARN(QDF_MODULE_ID_TXRX, params)
  29. #define hal_info(params...) QDF_TRACE_INFO(QDF_MODULE_ID_TXRX, params)
  30. #define hal_debug(params...) QDF_TRACE_DEBUG(QDF_MODULE_ID_TXRX, params)
  31. #define hal_alert_rl(params...) QDF_TRACE_FATAL_RL(QDF_MODULE_ID_HAL, params)
  32. #define hal_err_rl(params...) QDF_TRACE_ERROR_RL(QDF_MODULE_ID_HAL, params)
  33. #define hal_warn_rl(params...) QDF_TRACE_WARN_RL(QDF_MODULE_ID_HAL, params)
  34. #define hal_info_rl(params...) QDF_TRACE_INFO_RL(QDF_MODULE_ID_HAL, params)
  35. #define hal_debug_rl(params...) QDF_TRACE_DEBUG_RL(QDF_MODULE_ID_HAL, params)
  36. #ifdef ENABLE_VERBOSE_DEBUG
  37. extern bool is_hal_verbose_debug_enabled;
  38. #define hal_verbose_debug(params...) \
  39. if (unlikely(is_hal_verbose_debug_enabled)) \
  40. do {\
  41. QDF_TRACE_DEBUG(QDF_MODULE_ID_TXRX, params); \
  42. } while (0)
  43. #define hal_verbose_hex_dump(params...) \
  44. if (unlikely(is_hal_verbose_debug_enabled)) \
  45. do {\
  46. QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_TXRX, \
  47. QDF_TRACE_LEVEL_DEBUG, \
  48. params); \
  49. } while (0)
  50. #else
  51. #define hal_verbose_debug(params...) QDF_TRACE_DEBUG(QDF_MODULE_ID_TXRX, params)
  52. #define hal_verbose_hex_dump(params...) \
  53. QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_DEBUG, \
  54. params)
  55. #endif
  56. /*
  57. * dp_hal_soc - opaque handle for DP HAL soc
  58. */
  59. struct hal_soc_handle;
  60. typedef struct hal_soc_handle *hal_soc_handle_t;
  61. /* TBD: This should be movded to shared HW header file */
  62. enum hal_srng_ring_id {
  63. /* UMAC rings */
  64. HAL_SRNG_REO2SW1 = 0,
  65. HAL_SRNG_REO2SW2 = 1,
  66. HAL_SRNG_REO2SW3 = 2,
  67. HAL_SRNG_REO2SW4 = 3,
  68. HAL_SRNG_REO2TCL = 4,
  69. HAL_SRNG_SW2REO = 5,
  70. /* 6-7 unused */
  71. HAL_SRNG_REO_CMD = 8,
  72. HAL_SRNG_REO_STATUS = 9,
  73. /* 10-15 unused */
  74. HAL_SRNG_SW2TCL1 = 16,
  75. HAL_SRNG_SW2TCL2 = 17,
  76. HAL_SRNG_SW2TCL3 = 18,
  77. HAL_SRNG_SW2TCL4 = 19, /* FW2TCL ring */
  78. /* 20-23 unused */
  79. HAL_SRNG_SW2TCL_CMD = 24,
  80. HAL_SRNG_TCL_STATUS = 25,
  81. /* 26-31 unused */
  82. HAL_SRNG_CE_0_SRC = 32,
  83. HAL_SRNG_CE_1_SRC = 33,
  84. HAL_SRNG_CE_2_SRC = 34,
  85. HAL_SRNG_CE_3_SRC = 35,
  86. HAL_SRNG_CE_4_SRC = 36,
  87. HAL_SRNG_CE_5_SRC = 37,
  88. HAL_SRNG_CE_6_SRC = 38,
  89. HAL_SRNG_CE_7_SRC = 39,
  90. HAL_SRNG_CE_8_SRC = 40,
  91. HAL_SRNG_CE_9_SRC = 41,
  92. HAL_SRNG_CE_10_SRC = 42,
  93. HAL_SRNG_CE_11_SRC = 43,
  94. /* 44-55 unused */
  95. HAL_SRNG_CE_0_DST = 56,
  96. HAL_SRNG_CE_1_DST = 57,
  97. HAL_SRNG_CE_2_DST = 58,
  98. HAL_SRNG_CE_3_DST = 59,
  99. HAL_SRNG_CE_4_DST = 60,
  100. HAL_SRNG_CE_5_DST = 61,
  101. HAL_SRNG_CE_6_DST = 62,
  102. HAL_SRNG_CE_7_DST = 63,
  103. HAL_SRNG_CE_8_DST = 64,
  104. HAL_SRNG_CE_9_DST = 65,
  105. HAL_SRNG_CE_10_DST = 66,
  106. HAL_SRNG_CE_11_DST = 67,
  107. /* 68-79 unused */
  108. HAL_SRNG_CE_0_DST_STATUS = 80,
  109. HAL_SRNG_CE_1_DST_STATUS = 81,
  110. HAL_SRNG_CE_2_DST_STATUS = 82,
  111. HAL_SRNG_CE_3_DST_STATUS = 83,
  112. HAL_SRNG_CE_4_DST_STATUS = 84,
  113. HAL_SRNG_CE_5_DST_STATUS = 85,
  114. HAL_SRNG_CE_6_DST_STATUS = 86,
  115. HAL_SRNG_CE_7_DST_STATUS = 87,
  116. HAL_SRNG_CE_8_DST_STATUS = 88,
  117. HAL_SRNG_CE_9_DST_STATUS = 89,
  118. HAL_SRNG_CE_10_DST_STATUS = 90,
  119. HAL_SRNG_CE_11_DST_STATUS = 91,
  120. /* 92-103 unused */
  121. HAL_SRNG_WBM_IDLE_LINK = 104,
  122. HAL_SRNG_WBM_SW_RELEASE = 105,
  123. HAL_SRNG_WBM2SW0_RELEASE = 106,
  124. HAL_SRNG_WBM2SW1_RELEASE = 107,
  125. HAL_SRNG_WBM2SW2_RELEASE = 108,
  126. HAL_SRNG_WBM2SW3_RELEASE = 109,
  127. /* 110-127 unused */
  128. HAL_SRNG_UMAC_ID_END = 127,
  129. /* LMAC rings - The following set will be replicated for each LMAC */
  130. HAL_SRNG_LMAC1_ID_START = 128,
  131. HAL_SRNG_WMAC1_SW2RXDMA0_BUF0 = HAL_SRNG_LMAC1_ID_START,
  132. #ifdef IPA_OFFLOAD
  133. HAL_SRNG_WMAC1_SW2RXDMA0_BUF1 = (HAL_SRNG_LMAC1_ID_START + 1),
  134. HAL_SRNG_WMAC1_SW2RXDMA0_BUF2 = (HAL_SRNG_LMAC1_ID_START + 2),
  135. HAL_SRNG_WMAC1_SW2RXDMA1_BUF = (HAL_SRNG_WMAC1_SW2RXDMA0_BUF2 + 1),
  136. #else
  137. HAL_SRNG_WMAC1_SW2RXDMA1_BUF = (HAL_SRNG_WMAC1_SW2RXDMA0_BUF0 + 1),
  138. #endif
  139. HAL_SRNG_WMAC1_SW2RXDMA2_BUF = (HAL_SRNG_WMAC1_SW2RXDMA1_BUF + 1),
  140. HAL_SRNG_WMAC1_SW2RXDMA0_STATBUF = (HAL_SRNG_WMAC1_SW2RXDMA2_BUF + 1),
  141. HAL_SRNG_WMAC1_SW2RXDMA1_STATBUF =
  142. (HAL_SRNG_WMAC1_SW2RXDMA0_STATBUF + 1),
  143. HAL_SRNG_WMAC1_RXDMA2SW0 = (HAL_SRNG_WMAC1_SW2RXDMA1_STATBUF + 1),
  144. HAL_SRNG_WMAC1_RXDMA2SW1 = (HAL_SRNG_WMAC1_RXDMA2SW0 + 1),
  145. HAL_SRNG_WMAC1_SW2RXDMA1_DESC = (HAL_SRNG_WMAC1_RXDMA2SW1 + 1),
  146. #ifdef WLAN_FEATURE_CIF_CFR
  147. HAL_SRNG_WIFI_POS_SRC_DMA_RING = (HAL_SRNG_WMAC1_SW2RXDMA1_DESC + 1),
  148. HAL_SRNG_DIR_BUF_RX_SRC_DMA_RING = (HAL_SRNG_WIFI_POS_SRC_DMA_RING + 1),
  149. #else
  150. HAL_SRNG_DIR_BUF_RX_SRC_DMA_RING = (HAL_SRNG_WMAC1_SW2RXDMA1_DESC + 1),
  151. #endif
  152. /* -142 unused */
  153. HAL_SRNG_LMAC1_ID_END = 143
  154. };
  155. #define HAL_RXDMA_MAX_RING_SIZE 0xFFFF
  156. #define HAL_MAX_LMACS 3
  157. #define HAL_MAX_RINGS_PER_LMAC (HAL_SRNG_LMAC1_ID_END - HAL_SRNG_LMAC1_ID_START)
  158. #define HAL_MAX_LMAC_RINGS (HAL_MAX_LMACS * HAL_MAX_RINGS_PER_LMAC)
  159. #define HAL_SRNG_ID_MAX (HAL_SRNG_UMAC_ID_END + HAL_MAX_LMAC_RINGS)
  160. enum hal_srng_dir {
  161. HAL_SRNG_SRC_RING,
  162. HAL_SRNG_DST_RING
  163. };
  164. /* Lock wrappers for SRNG */
  165. #define hal_srng_lock_t qdf_spinlock_t
  166. #define SRNG_LOCK_INIT(_lock) qdf_spinlock_create(_lock)
  167. #define SRNG_LOCK(_lock) qdf_spin_lock_bh(_lock)
  168. #define SRNG_UNLOCK(_lock) qdf_spin_unlock_bh(_lock)
  169. #define SRNG_LOCK_DESTROY(_lock) qdf_spinlock_destroy(_lock)
  170. struct hal_soc;
  171. /**
  172. * dp_hal_ring - opaque handle for DP HAL SRNG
  173. */
  174. struct hal_ring_handle;
  175. typedef struct hal_ring_handle *hal_ring_handle_t;
  176. #define MAX_SRNG_REG_GROUPS 2
  177. /* Hal Srng bit mask
  178. * HAL_SRNG_FLUSH_EVENT: SRNG HP TP flush in case of link down
  179. */
  180. #define HAL_SRNG_FLUSH_EVENT BIT(0)
  181. /* Common SRNG ring structure for source and destination rings */
  182. struct hal_srng {
  183. /* Unique SRNG ring ID */
  184. uint8_t ring_id;
  185. /* Ring initialization done */
  186. uint8_t initialized;
  187. /* Interrupt/MSI value assigned to this ring */
  188. int irq;
  189. /* Physical base address of the ring */
  190. qdf_dma_addr_t ring_base_paddr;
  191. /* Virtual base address of the ring */
  192. uint32_t *ring_base_vaddr;
  193. /* Number of entries in ring */
  194. uint32_t num_entries;
  195. /* Ring size */
  196. uint32_t ring_size;
  197. /* Ring size mask */
  198. uint32_t ring_size_mask;
  199. /* Size of ring entry */
  200. uint32_t entry_size;
  201. /* Interrupt timer threshold – in micro seconds */
  202. uint32_t intr_timer_thres_us;
  203. /* Interrupt batch counter threshold – in number of ring entries */
  204. uint32_t intr_batch_cntr_thres_entries;
  205. /* MSI Address */
  206. qdf_dma_addr_t msi_addr;
  207. /* MSI data */
  208. uint32_t msi_data;
  209. /* Misc flags */
  210. uint32_t flags;
  211. /* Lock for serializing ring index updates */
  212. hal_srng_lock_t lock;
  213. /* Start offset of SRNG register groups for this ring
  214. * TBD: See if this is required - register address can be derived
  215. * from ring ID
  216. */
  217. void *hwreg_base[MAX_SRNG_REG_GROUPS];
  218. /* Source or Destination ring */
  219. enum hal_srng_dir ring_dir;
  220. union {
  221. struct {
  222. /* SW tail pointer */
  223. uint32_t tp;
  224. /* Shadow head pointer location to be updated by HW */
  225. uint32_t *hp_addr;
  226. /* Cached head pointer */
  227. uint32_t cached_hp;
  228. /* Tail pointer location to be updated by SW – This
  229. * will be a register address and need not be
  230. * accessed through SW structure */
  231. uint32_t *tp_addr;
  232. /* Current SW loop cnt */
  233. uint32_t loop_cnt;
  234. /* max transfer size */
  235. uint16_t max_buffer_length;
  236. } dst_ring;
  237. struct {
  238. /* SW head pointer */
  239. uint32_t hp;
  240. /* SW reap head pointer */
  241. uint32_t reap_hp;
  242. /* Shadow tail pointer location to be updated by HW */
  243. uint32_t *tp_addr;
  244. /* Cached tail pointer */
  245. uint32_t cached_tp;
  246. /* Head pointer location to be updated by SW – This
  247. * will be a register address and need not be accessed
  248. * through SW structure */
  249. uint32_t *hp_addr;
  250. /* Low threshold – in number of ring entries */
  251. uint32_t low_threshold;
  252. } src_ring;
  253. } u;
  254. struct hal_soc *hal_soc;
  255. /* Number of times hp/tp updated in runtime resume */
  256. uint32_t flush_count;
  257. /* hal srng event flag*/
  258. unsigned long srng_event;
  259. /* last flushed time stamp */
  260. uint64_t last_flush_ts;
  261. };
  262. /* HW SRNG configuration table */
  263. struct hal_hw_srng_config {
  264. int start_ring_id;
  265. uint16_t max_rings;
  266. uint16_t entry_size;
  267. uint32_t reg_start[MAX_SRNG_REG_GROUPS];
  268. uint16_t reg_size[MAX_SRNG_REG_GROUPS];
  269. uint8_t lmac_ring;
  270. enum hal_srng_dir ring_dir;
  271. uint32_t max_size;
  272. };
  273. #define MAX_SHADOW_REGISTERS 36
  274. /* REO parameters to be passed to hal_reo_setup */
  275. struct hal_reo_params {
  276. /** rx hash steering enabled or disabled */
  277. bool rx_hash_enabled;
  278. /** reo remap 1 register */
  279. uint32_t remap1;
  280. /** reo remap 2 register */
  281. uint32_t remap2;
  282. /** fragment destination ring */
  283. uint8_t frag_dst_ring;
  284. /** padding */
  285. uint8_t padding[3];
  286. };
  287. struct hal_hw_txrx_ops {
  288. /* init and setup */
  289. void (*hal_srng_dst_hw_init)(struct hal_soc *hal,
  290. struct hal_srng *srng);
  291. void (*hal_srng_src_hw_init)(struct hal_soc *hal,
  292. struct hal_srng *srng);
  293. void (*hal_get_hw_hptp)(struct hal_soc *hal,
  294. hal_ring_handle_t hal_ring_hdl,
  295. uint32_t *headp, uint32_t *tailp,
  296. uint8_t ring_type);
  297. void (*hal_reo_setup)(struct hal_soc *hal_soc, void *reoparams);
  298. void (*hal_setup_link_idle_list)(
  299. struct hal_soc *hal_soc,
  300. qdf_dma_addr_t scatter_bufs_base_paddr[],
  301. void *scatter_bufs_base_vaddr[],
  302. uint32_t num_scatter_bufs,
  303. uint32_t scatter_buf_size,
  304. uint32_t last_buf_end_offset,
  305. uint32_t num_entries);
  306. qdf_iomem_t (*hal_get_window_address)(struct hal_soc *hal_soc,
  307. qdf_iomem_t addr);
  308. /* tx */
  309. void (*hal_tx_desc_set_dscp_tid_table_id)(void *desc, uint8_t id);
  310. void (*hal_tx_set_dscp_tid_map)(struct hal_soc *hal_soc, uint8_t *map,
  311. uint8_t id);
  312. void (*hal_tx_update_dscp_tid)(struct hal_soc *hal_soc, uint8_t tid,
  313. uint8_t id,
  314. uint8_t dscp);
  315. void (*hal_tx_desc_set_lmac_id)(void *desc, uint8_t lmac_id);
  316. void (*hal_tx_desc_set_buf_addr)(void *desc, dma_addr_t paddr,
  317. uint8_t pool_id, uint32_t desc_id, uint8_t type);
  318. void (*hal_tx_desc_set_search_type)(void *desc, uint8_t search_type);
  319. void (*hal_tx_desc_set_search_index)(void *desc, uint32_t search_index);
  320. void (*hal_tx_desc_set_cache_set_num)(void *desc, uint8_t search_index);
  321. void (*hal_tx_comp_get_status)(void *desc, void *ts,
  322. struct hal_soc *hal);
  323. uint8_t (*hal_tx_comp_get_release_reason)(void *hal_desc);
  324. uint8_t (*hal_get_wbm_internal_error)(void *hal_desc);
  325. void (*hal_tx_desc_set_mesh_en)(void *desc, uint8_t en);
  326. /* rx */
  327. uint32_t (*hal_rx_msdu_start_nss_get)(uint8_t *);
  328. void (*hal_rx_mon_hw_desc_get_mpdu_status)(void *hw_desc_addr,
  329. struct mon_rx_status *rs);
  330. uint8_t (*hal_rx_get_tlv)(void *rx_tlv);
  331. void (*hal_rx_proc_phyrx_other_receive_info_tlv)(void *rx_tlv_hdr,
  332. void *ppdu_info_handle);
  333. void (*hal_rx_dump_msdu_start_tlv)(void *msdu_start, uint8_t dbg_level);
  334. void (*hal_rx_dump_msdu_end_tlv)(void *msdu_end,
  335. uint8_t dbg_level);
  336. uint32_t (*hal_get_link_desc_size)(void);
  337. uint32_t (*hal_rx_mpdu_start_tid_get)(uint8_t *buf);
  338. uint32_t (*hal_rx_msdu_start_reception_type_get)(uint8_t *buf);
  339. uint16_t (*hal_rx_msdu_end_da_idx_get)(uint8_t *buf);
  340. void* (*hal_rx_msdu_desc_info_get_ptr)(void *msdu_details_ptr);
  341. void* (*hal_rx_link_desc_msdu0_ptr)(void *msdu_link_ptr);
  342. void (*hal_reo_status_get_header)(uint32_t *d, int b, void *h);
  343. uint32_t (*hal_rx_status_get_tlv_info)(void *rx_tlv_hdr,
  344. void *ppdu_info,
  345. hal_soc_handle_t hal_soc_hdl,
  346. qdf_nbuf_t nbuf);
  347. void (*hal_rx_wbm_err_info_get)(void *wbm_desc,
  348. void *wbm_er_info);
  349. void (*hal_rx_dump_mpdu_start_tlv)(void *mpdustart,
  350. uint8_t dbg_level);
  351. void (*hal_tx_set_pcp_tid_map)(struct hal_soc *hal_soc, uint8_t *map);
  352. void (*hal_tx_update_pcp_tid_map)(struct hal_soc *hal_soc, uint8_t pcp,
  353. uint8_t id);
  354. void (*hal_tx_set_tidmap_prty)(struct hal_soc *hal_soc, uint8_t prio);
  355. uint8_t (*hal_rx_get_rx_fragment_number)(uint8_t *buf);
  356. uint8_t (*hal_rx_msdu_end_da_is_mcbc_get)(uint8_t *buf);
  357. uint8_t (*hal_rx_msdu_end_sa_is_valid_get)(uint8_t *buf);
  358. uint16_t (*hal_rx_msdu_end_sa_idx_get)(uint8_t *buf);
  359. uint32_t (*hal_rx_desc_is_first_msdu)(void *hw_desc_addr);
  360. uint32_t (*hal_rx_msdu_end_l3_hdr_padding_get)(uint8_t *buf);
  361. uint32_t (*hal_rx_encryption_info_valid)(uint8_t *buf);
  362. void (*hal_rx_print_pn)(uint8_t *buf);
  363. uint8_t (*hal_rx_msdu_end_first_msdu_get)(uint8_t *buf);
  364. uint8_t (*hal_rx_msdu_end_da_is_valid_get)(uint8_t *buf);
  365. uint8_t (*hal_rx_msdu_end_last_msdu_get)(uint8_t *buf);
  366. bool (*hal_rx_get_mpdu_mac_ad4_valid)(uint8_t *buf);
  367. uint32_t (*hal_rx_mpdu_start_sw_peer_id_get)(uint8_t *buf);
  368. uint32_t (*hal_rx_mpdu_get_to_ds)(uint8_t *buf);
  369. uint32_t (*hal_rx_mpdu_get_fr_ds)(uint8_t *buf);
  370. uint8_t (*hal_rx_get_mpdu_frame_control_valid)(uint8_t *buf);
  371. QDF_STATUS
  372. (*hal_rx_mpdu_get_addr1)(uint8_t *buf, uint8_t *mac_addr);
  373. QDF_STATUS
  374. (*hal_rx_mpdu_get_addr2)(uint8_t *buf, uint8_t *mac_addr);
  375. QDF_STATUS
  376. (*hal_rx_mpdu_get_addr3)(uint8_t *buf, uint8_t *mac_addr);
  377. QDF_STATUS
  378. (*hal_rx_mpdu_get_addr4)(uint8_t *buf, uint8_t *mac_addr);
  379. uint8_t (*hal_rx_get_mpdu_sequence_control_valid)(uint8_t *buf);
  380. bool (*hal_rx_is_unicast)(uint8_t *buf);
  381. uint32_t (*hal_rx_tid_get)(hal_soc_handle_t hal_soc_hdl, uint8_t *buf);
  382. uint32_t (*hal_rx_hw_desc_get_ppduid_get)(void *rx_tlv_hdr,
  383. void *rxdma_dst_ring_desc);
  384. uint32_t (*hal_rx_mpdu_start_mpdu_qos_control_valid_get)(uint8_t *buf);
  385. uint32_t (*hal_rx_msdu_end_sa_sw_peer_id_get)(uint8_t *buf);
  386. void * (*hal_rx_msdu0_buffer_addr_lsb)(void *link_desc_addr);
  387. void * (*hal_rx_msdu_desc_info_ptr_get)(void *msdu0);
  388. void * (*hal_ent_mpdu_desc_info)(void *hw_addr);
  389. void * (*hal_dst_mpdu_desc_info)(void *hw_addr);
  390. uint8_t (*hal_rx_get_fc_valid)(uint8_t *buf);
  391. uint8_t (*hal_rx_get_to_ds_flag)(uint8_t *buf);
  392. uint8_t (*hal_rx_get_mac_addr2_valid)(uint8_t *buf);
  393. uint8_t (*hal_rx_get_filter_category)(uint8_t *buf);
  394. uint32_t (*hal_rx_get_ppdu_id)(uint8_t *buf);
  395. void (*hal_reo_config)(struct hal_soc *soc,
  396. uint32_t reg_val,
  397. struct hal_reo_params *reo_params);
  398. uint32_t (*hal_rx_msdu_flow_idx_get)(uint8_t *buf);
  399. bool (*hal_rx_msdu_flow_idx_invalid)(uint8_t *buf);
  400. bool (*hal_rx_msdu_flow_idx_timeout)(uint8_t *buf);
  401. uint32_t (*hal_rx_msdu_fse_metadata_get)(uint8_t *buf);
  402. uint16_t (*hal_rx_msdu_cce_metadata_get)(uint8_t *buf);
  403. void
  404. (*hal_rx_msdu_get_flow_params)(
  405. uint8_t *buf,
  406. bool *flow_invalid,
  407. bool *flow_timeout,
  408. uint32_t *flow_index);
  409. uint16_t (*hal_rx_tlv_get_tcp_chksum)(uint8_t *buf);
  410. uint16_t (*hal_rx_get_rx_sequence)(uint8_t *buf);
  411. void (*hal_rx_get_bb_info)(void *rx_tlv, void *ppdu_info_handle);
  412. void (*hal_rx_get_rtt_info)(void *rx_tlv, void *ppdu_info_handle);
  413. void (*hal_rx_msdu_packet_metadata_get)(uint8_t *buf,
  414. void *msdu_pkt_metadata);
  415. uint16_t (*hal_rx_get_fisa_cumulative_l4_checksum)(uint8_t *buf);
  416. uint16_t (*hal_rx_get_fisa_cumulative_ip_length)(uint8_t *buf);
  417. bool (*hal_rx_get_udp_proto)(uint8_t *buf);
  418. bool (*hal_rx_get_fisa_flow_agg_continuation)(uint8_t *buf);
  419. uint8_t (*hal_rx_get_fisa_flow_agg_count)(uint8_t *buf);
  420. bool (*hal_rx_get_fisa_timeout)(uint8_t *buf);
  421. uint8_t (*hal_rx_mpdu_start_tlv_tag_valid)(void *rx_tlv_hdr);
  422. };
  423. /**
  424. * struct hal_soc_stats - Hal layer stats
  425. * @reg_write_fail: number of failed register writes
  426. *
  427. * This structure holds all the statistics at HAL layer.
  428. */
  429. struct hal_soc_stats {
  430. uint32_t reg_write_fail;
  431. };
  432. #ifdef ENABLE_HAL_REG_WR_HISTORY
  433. /* The history size should always be a power of 2 */
  434. #define HAL_REG_WRITE_HIST_SIZE 8
  435. /**
  436. * struct hal_reg_write_fail_entry - Record of
  437. * register write which failed.
  438. * @timestamp: timestamp of reg write failure
  439. * @reg_offset: offset of register where the write failed
  440. * @write_val: the value which was to be written
  441. * @read_val: the value read back from the register after write
  442. */
  443. struct hal_reg_write_fail_entry {
  444. uint64_t timestamp;
  445. uint32_t reg_offset;
  446. uint32_t write_val;
  447. uint32_t read_val;
  448. };
  449. /**
  450. * struct hal_reg_write_fail_history - Hal layer history
  451. * of all the register write failures.
  452. * @index: index to add the new record
  453. * @record: array of all the records in history
  454. *
  455. * This structure holds the history of register write
  456. * failures at HAL layer.
  457. */
  458. struct hal_reg_write_fail_history {
  459. qdf_atomic_t index;
  460. struct hal_reg_write_fail_entry record[HAL_REG_WRITE_HIST_SIZE];
  461. };
  462. #endif
  463. /**
  464. * HAL context to be used to access SRNG APIs (currently used by data path
  465. * and transport (CE) modules)
  466. */
  467. struct hal_soc {
  468. /* HIF handle to access HW registers */
  469. struct hif_opaque_softc *hif_handle;
  470. /* QDF device handle */
  471. qdf_device_t qdf_dev;
  472. /* Device base address */
  473. void *dev_base_addr;
  474. /* HAL internal state for all SRNG rings.
  475. * TODO: See if this is required
  476. */
  477. struct hal_srng srng_list[HAL_SRNG_ID_MAX];
  478. /* Remote pointer memory for HW/FW updates */
  479. uint32_t *shadow_rdptr_mem_vaddr;
  480. qdf_dma_addr_t shadow_rdptr_mem_paddr;
  481. /* Shared memory for ring pointer updates from host to FW */
  482. uint32_t *shadow_wrptr_mem_vaddr;
  483. qdf_dma_addr_t shadow_wrptr_mem_paddr;
  484. /* REO blocking resource index */
  485. uint8_t reo_res_bitmap;
  486. uint8_t index;
  487. uint32_t target_type;
  488. /* shadow register configuration */
  489. struct pld_shadow_reg_v2_cfg shadow_config[MAX_SHADOW_REGISTERS];
  490. int num_shadow_registers_configured;
  491. bool use_register_windowing;
  492. uint32_t register_window;
  493. qdf_spinlock_t register_access_lock;
  494. /* Static window map configuration for multiple window write*/
  495. bool static_window_map;
  496. /* srng table */
  497. struct hal_hw_srng_config *hw_srng_table;
  498. int32_t *hal_hw_reg_offset;
  499. struct hal_hw_txrx_ops *ops;
  500. /* Indicate srngs initialization */
  501. bool init_phase;
  502. /* Hal level stats */
  503. struct hal_soc_stats stats;
  504. #ifdef ENABLE_HAL_REG_WR_HISTORY
  505. struct hal_reg_write_fail_history *reg_wr_fail_hist;
  506. #endif
  507. };
  508. void hal_qca6750_attach(struct hal_soc *hal_soc);
  509. void hal_qca6490_attach(struct hal_soc *hal_soc);
  510. void hal_qca6390_attach(struct hal_soc *hal_soc);
  511. void hal_qca6290_attach(struct hal_soc *hal_soc);
  512. void hal_qca8074_attach(struct hal_soc *hal_soc);
  513. /*
  514. * hal_soc_to_dp_hal_roc - API to convert hal_soc to opaque
  515. * dp_hal_soc handle type
  516. * @hal_soc - hal_soc type
  517. *
  518. * Return: hal_soc_handle_t type
  519. */
  520. static inline
  521. hal_soc_handle_t hal_soc_to_hal_soc_handle(struct hal_soc *hal_soc)
  522. {
  523. return (hal_soc_handle_t)hal_soc;
  524. }
  525. /*
  526. * hal_srng_to_hal_ring_handle - API to convert hal_srng to opaque
  527. * dp_hal_ring handle type
  528. * @hal_srng - hal_srng type
  529. *
  530. * Return: hal_ring_handle_t type
  531. */
  532. static inline
  533. hal_ring_handle_t hal_srng_to_hal_ring_handle(struct hal_srng *hal_srng)
  534. {
  535. return (hal_ring_handle_t)hal_srng;
  536. }
  537. /*
  538. * hal_ring_handle_to_hal_srng - API to convert dp_hal_ring to hal_srng handle
  539. * @hal_ring - hal_ring_handle_t type
  540. *
  541. * Return: hal_srng pointer type
  542. */
  543. static inline
  544. struct hal_srng *hal_ring_handle_to_hal_srng(hal_ring_handle_t hal_ring)
  545. {
  546. return (struct hal_srng *)hal_ring;
  547. }
  548. #endif /* _HAL_INTERNAL_H_ */