hal_api.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  1. /*
  2. * Copyright (c) 2016, The Linux Foundation. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are
  6. * met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above
  10. * copyright notice, this list of conditions and the following
  11. * disclaimer in the documentation and/or other materials provided
  12. * with the distribution.
  13. * * Neither the name of The Linux Foundation nor the names of its
  14. * contributors may be used to endorse or promote products derived
  15. * from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  18. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  21. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  24. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  25. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  26. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  27. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #ifndef _HAL_API_H_
  30. #define _HAL_API_H_
  31. #include "qdf_types.h"
  32. #include "hal_internal.h"
  33. #include "hif_io32.h"
  34. #include "rx_msdu_link.h"
  35. #include "rx_reo_queue.h"
  36. #include "rx_reo_queue_ext.h"
  37. /**
  38. * hal_attach - Initalize HAL layer
  39. * @hif_handle: Opaque HIF handle
  40. * @qdf_dev: QDF device
  41. *
  42. * Return: Opaque HAL SOC handle
  43. * NULL on failure (if given ring is not available)
  44. *
  45. * This function should be called as part of HIF initialization (for accessing
  46. * copy engines). DP layer will get hal_soc handle using hif_get_hal_handle()
  47. */
  48. extern void *hal_attach(void *hif_handle, qdf_device_t qdf_dev);
  49. /**
  50. * hal_detach - Detach HAL layer
  51. * @hal_soc: HAL SOC handle
  52. *
  53. * This function should be called as part of HIF detach
  54. *
  55. */
  56. extern void hal_detach(void *hal_soc);
  57. /* SRNG type to be passed in APIs hal_srng_get_entrysize and hal_srng_setup */
  58. enum hal_ring_type {
  59. REO_DST,
  60. REO_EXCEPTION,
  61. REO_REINJECT,
  62. REO_CMD,
  63. REO_STATUS,
  64. TCL_DATA,
  65. TCL_CMD,
  66. TCL_STATUS,
  67. CE_SRC,
  68. CE_DST,
  69. CE_DST_STATUS,
  70. WBM_IDLE_LINK,
  71. SW2WBM_RELEASE,
  72. WBM2SW_RELEASE,
  73. RXDMA_BUF,
  74. RXDMA_DST,
  75. RXDMA_MONITOR_BUF,
  76. RXDMA_MONITOR_STATUS,
  77. RXDMA_MONITOR_DST,
  78. MAX_RING_TYPES
  79. };
  80. /* SRNG flags passed in hal_srng_params.flags */
  81. #define HAL_SRNG_MSI_SWAP 0x00000008
  82. #define HAL_SRNG_RING_PTR_SWAP 0x00000010
  83. #define HAL_SRNG_DATA_TLV_SWAP 0x00000020
  84. #define HAL_SRNG_LOW_THRES_INTR_ENABLE 0x00010000
  85. #define HAL_SRNG_MSI_INTR 0x00020000
  86. /**
  87. * hal_srng_get_entrysize - Returns size of ring entry in bytes. Should be
  88. * used by callers for calculating the size of memory to be allocated before
  89. * calling hal_srng_setup to setup the ring
  90. *
  91. * @hal_soc: Opaque HAL SOC handle
  92. * @ring_type: one of the types from hal_ring_type
  93. *
  94. */
  95. extern uint32_t hal_srng_get_entrysize(void *hal_soc, int ring_type);
  96. /* SRNG parameters to be passed to hal_srng_setup */
  97. struct hal_srng_params {
  98. /* Physical base address of the ring */
  99. qdf_dma_addr_t ring_base_paddr;
  100. /* Virtual base address of the ring */
  101. void *ring_base_vaddr;
  102. /* Number of entries in ring */
  103. uint32_t num_entries;
  104. /* MSI Address */
  105. qdf_dma_addr_t msi_addr;
  106. /* MSI data */
  107. uint32_t msi_data;
  108. /* Interrupt timer threshold – in micro seconds */
  109. uint32_t intr_timer_thres_us;
  110. /* Interrupt batch counter threshold – in number of ring entries */
  111. uint32_t intr_batch_cntr_thres_entries;
  112. /* Low threshold – in number of ring entries
  113. * (valid for src rings only)
  114. */
  115. uint32_t low_threshold;
  116. /* Misc flags */
  117. uint32_t flags;
  118. /* Unique ring id */
  119. uint8_t ring_id;
  120. };
  121. /**
  122. * hal_srng_setup - Initalize HW SRNG ring.
  123. *
  124. * @hal_soc: Opaque HAL SOC handle
  125. * @ring_type: one of the types from hal_ring_type
  126. * @ring_num: Ring number if there are multiple rings of
  127. * same type (staring from 0)
  128. * @mac_id: valid MAC Id should be passed if ring type is one of lmac rings
  129. * @ring_params: SRNG ring params in hal_srng_params structure.
  130. * Callers are expected to allocate contiguous ring memory of size
  131. * 'num_entries * entry_size' bytes and pass the physical and virtual base
  132. * addresses through 'ring_base_paddr' and 'ring_base_vaddr' in hal_srng_params
  133. * structure. Ring base address should be 8 byte aligned and size of each ring
  134. * entry should be queried using the API hal_srng_get_entrysize
  135. *
  136. * Return: Opaque pointer to ring on success
  137. * NULL on failure (if given ring is not available)
  138. */
  139. extern void *hal_srng_setup(void *hal_soc, int ring_type, int ring_num,
  140. int mac_id, struct hal_srng_params *ring_params);
  141. /**
  142. * hal_srng_cleanup - Deinitialize HW SRNG ring.
  143. * @hal_soc: Opaque HAL SOC handle
  144. * @hal_srng: Opaque HAL SRNG pointer
  145. */
  146. extern void hal_srng_cleanup(void *hal_soc, void *hal_srng);
  147. /**
  148. * hal_srng_access_start_unlocked - Start ring access (unlocked). Should use
  149. * hal_srng_access_start if locked access is required
  150. *
  151. * @hal_soc: Opaque HAL SOC handle
  152. * @hal_ring: Ring pointer (Source or Destination ring)
  153. *
  154. * Return: 0 on success; error on failire
  155. */
  156. static inline int hal_srng_access_start_unlocked(void *hal_soc, void *hal_ring)
  157. {
  158. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  159. if (srng->ring_dir == HAL_SRNG_SRC_RING)
  160. srng->u.src_ring.cached_tp =
  161. *(volatile uint32_t *)(srng->u.src_ring.tp_addr);
  162. else
  163. srng->u.dst_ring.cached_hp =
  164. *(volatile uint32_t *)(srng->u.dst_ring.hp_addr);
  165. return 0;
  166. }
  167. /**
  168. * hal_srng_access_start - Start (locked) ring access
  169. *
  170. * @hal_soc: Opaque HAL SOC handle
  171. * @hal_ring: Ring pointer (Source or Destination ring)
  172. *
  173. * Return: 0 on success; error on failire
  174. */
  175. static inline int hal_srng_access_start(void *hal_soc, void *hal_ring)
  176. {
  177. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  178. SRNG_LOCK(&(srng->lock));
  179. return hal_srng_access_start_unlocked(hal_soc, hal_ring);
  180. }
  181. /**
  182. * hal_srng_dst_get_next - Get next entry from a destination ring and move
  183. * cached tail pointer
  184. *
  185. * @hal_soc: Opaque HAL SOC handle
  186. * @hal_ring: Destination ring pointer
  187. *
  188. * Return: Opaque pointer for next ring entry; NULL on failire
  189. */
  190. static inline void *hal_srng_dst_get_next(void *hal_soc, void *hal_ring)
  191. {
  192. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  193. uint32_t *desc = &(srng->ring_base_vaddr[srng->u.dst_ring.tp]);
  194. uint32_t desc_loop_cnt;
  195. desc_loop_cnt = (desc[srng->entry_size - 1] & SRNG_LOOP_CNT_MASK)
  196. >> SRNG_LOOP_CNT_LSB;
  197. if (srng->u.dst_ring.loop_cnt == desc_loop_cnt) {
  198. srng->u.dst_ring.tp = (srng->u.dst_ring.tp + srng->entry_size) &
  199. srng->ring_size_mask;
  200. srng->u.dst_ring.loop_cnt = (srng->u.dst_ring.loop_cnt +
  201. !srng->u.dst_ring.tp) &
  202. (SRNG_LOOP_CNT_MASK >> SRNG_LOOP_CNT_LSB);
  203. /* TODO: Confirm if loop count mask is same for all rings */
  204. return (void *)desc;
  205. }
  206. return NULL;
  207. }
  208. /**
  209. * hal_srng_dst_peek - Get next entry from a ring without moving tail pointer.
  210. * hal_srng_dst_get_next should be called subsequently to move the tail pointer
  211. * TODO: See if we need an optimized version of get_next that doesn't check for
  212. * loop_cnt
  213. *
  214. * @hal_soc: Opaque HAL SOC handle
  215. * @hal_ring: Destination ring pointer
  216. *
  217. * Return: Opaque pointer for next ring entry; NULL on failire
  218. */
  219. static inline void *hal_srng_dst_peek(void *hal_soc, void *hal_ring)
  220. {
  221. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  222. uint32_t *desc = &(srng->ring_base_vaddr[srng->u.dst_ring.tp]);
  223. uint32_t desc_loop_cnt;
  224. desc_loop_cnt = (desc[srng->entry_size - 1] & SRNG_LOOP_CNT_MASK)
  225. >> SRNG_LOOP_CNT_LSB;
  226. if (srng->u.dst_ring.loop_cnt == desc_loop_cnt)
  227. return (void *)desc;
  228. return NULL;
  229. }
  230. /**
  231. * hal_srng_dst_num_valid - Returns number of valid entries (to be processed
  232. * by SW) in destination ring
  233. *
  234. * @hal_soc: Opaque HAL SOC handle
  235. * @hal_ring: Destination ring pointer
  236. * @sync_hw_ptr: Sync cached head pointer with HW
  237. *
  238. */
  239. static inline uint32_t hal_srng_dst_num_valid(void *hal_soc, void *hal_ring,
  240. int sync_hw_ptr)
  241. {
  242. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  243. uint32 hp;
  244. uint32 tp = srng->u.dst_ring.tp;
  245. if (sync_hw_ptr) {
  246. hp = *(srng->u.dst_ring.hp_addr);
  247. srng->u.dst_ring.cached_hp = hp;
  248. } else {
  249. hp = srng->u.dst_ring.cached_hp;
  250. }
  251. if (hp >= tp)
  252. return (hp - tp) / srng->entry_size;
  253. else
  254. return (srng->ring_size - tp + hp) / srng->entry_size;
  255. }
  256. /**
  257. * hal_srng_src_reap_next - Reap next entry from a source ring and move reap
  258. * pointer. This can be used to release any buffers associated with completed
  259. * ring entries. Note that this should not be used for posting new descriptor
  260. * entries. Posting of new entries should be done only using
  261. * hal_srng_src_get_next_reaped when this function is used for reaping.
  262. *
  263. * @hal_soc: Opaque HAL SOC handle
  264. * @hal_ring: Source ring pointer
  265. *
  266. * Return: Opaque pointer for next ring entry; NULL on failire
  267. */
  268. static inline void *hal_srng_src_reap_next(void *hal_soc, void *hal_ring)
  269. {
  270. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  271. uint32_t *desc;
  272. uint32_t next_reap_hp = (srng->u.src_ring.reap_hp + srng->entry_size) &
  273. srng->ring_size_mask;
  274. if (next_reap_hp != srng->u.src_ring.cached_tp) {
  275. desc = &(srng->ring_base_vaddr[next_reap_hp]);
  276. srng->u.src_ring.reap_hp = next_reap_hp;
  277. return (void *)desc;
  278. }
  279. return NULL;
  280. }
  281. /**
  282. * hal_srng_src_get_next_reaped - Get next entry from a source ring that is
  283. * already reaped using hal_srng_src_reap_next, for posting new entries to
  284. * the ring
  285. *
  286. * @hal_soc: Opaque HAL SOC handle
  287. * @hal_ring: Source ring pointer
  288. *
  289. * Return: Opaque pointer for next (reaped) source ring entry; NULL on failire
  290. */
  291. static inline void *hal_srng_src_get_next_reaped(void *hal_soc, void *hal_ring)
  292. {
  293. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  294. uint32_t *desc;
  295. if (srng->u.src_ring.hp != srng->u.src_ring.reap_hp) {
  296. desc = &(srng->ring_base_vaddr[srng->u.src_ring.hp]);
  297. srng->u.src_ring.hp = (srng->u.src_ring.hp + srng->entry_size) &
  298. srng->ring_size_mask;
  299. return (void *)desc;
  300. }
  301. return NULL;
  302. }
  303. /**
  304. * hal_srng_src_done_val -
  305. *
  306. * @hal_soc: Opaque HAL SOC handle
  307. * @hal_ring: Source ring pointer
  308. *
  309. * Return: Opaque pointer for next ring entry; NULL on failire
  310. */
  311. static inline uint32_t hal_srng_src_done_val(void *hal_soc, void *hal_ring)
  312. {
  313. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  314. uint32_t next_reap_hp = (srng->u.src_ring.reap_hp + srng->entry_size) &
  315. srng->ring_size_mask;
  316. if (next_reap_hp == srng->u.src_ring.cached_tp)
  317. return 0;
  318. if (srng->u.src_ring.cached_tp > next_reap_hp)
  319. return (srng->u.src_ring.cached_tp - next_reap_hp) /
  320. srng->entry_size;
  321. else
  322. return ((srng->ring_size - next_reap_hp) +
  323. srng->u.src_ring.cached_tp) / srng->entry_size;
  324. }
  325. /**
  326. * hal_srng_src_get_next - Get next entry from a source ring and move cached tail pointer
  327. *
  328. * @hal_soc: Opaque HAL SOC handle
  329. * @hal_ring: Source ring pointer
  330. *
  331. * Return: Opaque pointer for next ring entry; NULL on failire
  332. */
  333. static inline void *hal_srng_src_get_next(void *hal_soc, void *hal_ring)
  334. {
  335. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  336. uint32_t *desc;
  337. uint32_t next_hp = (srng->u.src_ring.hp + srng->entry_size) &
  338. srng->ring_size_mask;
  339. if (next_hp != srng->u.src_ring.cached_tp) {
  340. desc = &(srng->ring_base_vaddr[srng->u.src_ring.hp]);
  341. srng->u.src_ring.hp = next_hp;
  342. /* TODO: Since reap function is not used by all rings, we can
  343. * remove the following update of reap_hp in this function
  344. * if we can ensure that only hal_srng_src_get_next_reaped
  345. * is used for the rings requiring reap functionality
  346. */
  347. srng->u.src_ring.reap_hp = next_hp;
  348. return (void *)desc;
  349. }
  350. return NULL;
  351. }
  352. /**
  353. * hal_srng_src_peek - Get next entry from a ring without moving head pointer.
  354. * hal_srng_src_get_next should be called subsequently to move the head pointer
  355. *
  356. * @hal_soc: Opaque HAL SOC handle
  357. * @hal_ring: Source ring pointer
  358. *
  359. * Return: Opaque pointer for next ring entry; NULL on failire
  360. */
  361. static inline void *hal_srng_src_peek(void *hal_soc, void *hal_ring)
  362. {
  363. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  364. uint32_t *desc;
  365. if (((srng->u.src_ring.hp + srng->entry_size) &
  366. srng->ring_size_mask) != srng->u.src_ring.cached_tp) {
  367. desc = &(srng->ring_base_vaddr[srng->u.src_ring.hp]);
  368. return (void *)desc;
  369. }
  370. return NULL;
  371. }
  372. /**
  373. * hal_srng_src_num_avail - Returns number of available entries in src ring
  374. *
  375. * @hal_soc: Opaque HAL SOC handle
  376. * @hal_ring: Source ring pointer
  377. * @sync_hw_ptr: Sync cached tail pointer with HW
  378. *
  379. */
  380. static inline uint32_t hal_srng_src_num_avail(void *hal_soc,
  381. void *hal_ring, int sync_hw_ptr)
  382. {
  383. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  384. uint32 tp;
  385. uint32 hp = srng->u.src_ring.hp;
  386. if (sync_hw_ptr) {
  387. tp = *(srng->u.src_ring.tp_addr);
  388. srng->u.src_ring.cached_tp = tp;
  389. } else {
  390. tp = srng->u.src_ring.cached_tp;
  391. }
  392. if (tp > hp)
  393. return ((tp - hp) / srng->entry_size) - 1;
  394. else
  395. return ((srng->ring_size - hp + tp) / srng->entry_size) - 1;
  396. }
  397. /**
  398. * hal_srng_access_end_unlocked - End ring access (unlocked) - update cached
  399. * ring head/tail pointers to HW.
  400. * This should be used only if hal_srng_access_start_unlocked to start ring
  401. * access
  402. *
  403. * @hal_soc: Opaque HAL SOC handle
  404. * @hal_ring: Ring pointer (Source or Destination ring)
  405. *
  406. * Return: 0 on success; error on failire
  407. */
  408. static inline void hal_srng_access_end_unlocked(void *hal_soc, void *hal_ring)
  409. {
  410. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  411. /* TODO: See if we need a write memory barrier here */
  412. if (srng->flags & HAL_SRNG_LMAC_RING) {
  413. /* For LMAC rings, ring pointer updates are done through FW and
  414. * hence written to a shared memory location that is read by FW
  415. */
  416. if (srng->ring_dir == HAL_SRNG_SRC_RING)
  417. *(srng->u.src_ring.hp_addr) = srng->u.src_ring.hp;
  418. else
  419. *(srng->u.src_ring.tp_addr) = srng->u.dst_ring.tp;
  420. } else {
  421. if (srng->ring_dir == HAL_SRNG_SRC_RING)
  422. hif_write32_mb(srng->u.src_ring.hp_addr,
  423. srng->u.src_ring.hp);
  424. else
  425. hif_write32_mb(srng->u.dst_ring.tp_addr,
  426. srng->u.dst_ring.tp);
  427. }
  428. }
  429. /**
  430. * hal_srng_access_end - Unlock ring access and update cached ring head/tail
  431. * pointers to HW
  432. * This should be used only if hal_srng_access_start to start ring access
  433. *
  434. * @hal_soc: Opaque HAL SOC handle
  435. * @hal_ring: Ring pointer (Source or Destination ring)
  436. *
  437. * Return: 0 on success; error on failire
  438. */
  439. static inline void hal_srng_access_end(void *hal_soc, void *hal_ring)
  440. {
  441. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  442. hal_srng_access_end_unlocked(hal_soc, hal_ring);
  443. SRNG_UNLOCK(&(srng->lock));
  444. }
  445. /* TODO: Check if the following definitions is available in HW headers */
  446. #define WBM_IDLE_DESC_LIST 1
  447. #define WBM_IDLE_SCATTER_BUF_SIZE 32704
  448. #define NUM_MPDUS_PER_LINK_DESC 6
  449. #define NUM_MSDUS_PER_LINK_DESC 7
  450. #define REO_QUEUE_DESC_ALIGN 128
  451. #define LINK_DESC_SIZE (NUM_OF_DWORDS_RX_MSDU_LINK << 2)
  452. #define LINK_DESC_ALIGN 128
  453. /* Number of mpdu link pointers is 9 in case of TX_MPDU_QUEUE_HEAD and 14 in
  454. * of TX_MPDU_QUEUE_EXT. We are defining a common average count here
  455. */
  456. #define NUM_MPDU_LINKS_PER_QUEUE_DESC 12
  457. /* TODO: Check with HW team on the scatter buffer size supported. As per WBM
  458. * MLD, scatter_buffer_size in IDLE_LIST_CONTROL register is 9 bits and size
  459. * should be specified in 16 word units. But the number of bits defined for
  460. * this field in HW header files is 5.
  461. */
  462. #define WBM_IDLE_SCATTER_BUF_NEXT_PTR_SIZE 8
  463. /**
  464. * hal_set_link_desc_addr - Setup link descriptor in a buffer_addr_info
  465. * HW structure
  466. *
  467. * @desc: Descriptor entry (from WBM_IDLE_LINK ring)
  468. * @cookie: SW cookie for the buffer/descriptor
  469. * @link_desc_paddr: Physical address of link descriptor entry
  470. *
  471. */
  472. static inline void hal_set_link_desc_addr(void *desc, uint32_t cookie,
  473. qdf_dma_addr_t link_desc_paddr)
  474. {
  475. uint32_t *buf_addr = (uint32_t *)desc;
  476. HAL_DESC_SET_FIELD(buf_addr, BUFFER_ADDR_INFO_0, BUFFER_ADDR_31_0,
  477. link_desc_paddr & 0xffffffff);
  478. HAL_DESC_SET_FIELD(buf_addr, BUFFER_ADDR_INFO_1, BUFFER_ADDR_39_32,
  479. (uint64_t)link_desc_paddr >> 32);
  480. HAL_DESC_SET_FIELD(buf_addr, BUFFER_ADDR_INFO_1, RETURN_BUFFER_MANAGER,
  481. WBM_IDLE_DESC_LIST);
  482. HAL_DESC_SET_FIELD(buf_addr, BUFFER_ADDR_INFO_1, SW_BUFFER_COOKIE,
  483. cookie);
  484. }
  485. /**
  486. * hal_idle_list_scatter_buf_size - Get the size of each scatter buffer
  487. * in an idle list
  488. *
  489. * @hal_soc: Opaque HAL SOC handle
  490. *
  491. */
  492. static inline uint32_t hal_idle_list_scatter_buf_size(void *hal_soc)
  493. {
  494. return WBM_IDLE_SCATTER_BUF_SIZE;
  495. }
  496. /**
  497. * hal_get_link_desc_size - Get the size of each link descriptor
  498. *
  499. * @hal_soc: Opaque HAL SOC handle
  500. *
  501. */
  502. static inline uint32_t hal_get_link_desc_size(void *hal_soc)
  503. {
  504. return LINK_DESC_SIZE;
  505. }
  506. /**
  507. * hal_get_link_desc_align - Get the required start address alignment for
  508. * link descriptors
  509. *
  510. * @hal_soc: Opaque HAL SOC handle
  511. *
  512. */
  513. static inline uint32_t hal_get_link_desc_align(void *hal_soc)
  514. {
  515. return LINK_DESC_ALIGN;
  516. }
  517. /**
  518. * hal_num_mpdus_per_link_desc - Get number of mpdus each link desc can hold
  519. *
  520. * @hal_soc: Opaque HAL SOC handle
  521. *
  522. */
  523. static inline uint32_t hal_num_mpdus_per_link_desc(void *hal_soc)
  524. {
  525. return NUM_MPDUS_PER_LINK_DESC;
  526. }
  527. /**
  528. * hal_num_msdus_per_link_desc - Get number of msdus each link desc can hold
  529. *
  530. * @hal_soc: Opaque HAL SOC handle
  531. *
  532. */
  533. static inline uint32_t hal_num_msdus_per_link_desc(void *hal_soc)
  534. {
  535. return NUM_MSDUS_PER_LINK_DESC;
  536. }
  537. /**
  538. * hal_num_mpdu_links_per_queue_desc - Get number of mpdu links each queue
  539. * descriptor can hold
  540. *
  541. * @hal_soc: Opaque HAL SOC handle
  542. *
  543. */
  544. static inline uint32_t hal_num_mpdu_links_per_queue_desc(void *hal_soc)
  545. {
  546. return NUM_MPDU_LINKS_PER_QUEUE_DESC;
  547. }
  548. /**
  549. * hal_idle_list_scatter_buf_num_entries - Get the number of link desc entries
  550. * that the given buffer size
  551. *
  552. * @hal_soc: Opaque HAL SOC handle
  553. * @scatter_buf_size: Size of scatter buffer
  554. *
  555. */
  556. static inline uint32_t hal_idle_scatter_buf_num_entries(void *hal_soc,
  557. uint32_t scatter_buf_size)
  558. {
  559. return (scatter_buf_size - WBM_IDLE_SCATTER_BUF_NEXT_PTR_SIZE) /
  560. hal_srng_get_entrysize(hal_soc, WBM_IDLE_LINK);
  561. }
  562. /**
  563. * hal_idle_scatter_buf_setup - Setup scattered idle list using the buffer list
  564. * provided
  565. *
  566. * @hal_soc: Opaque HAL SOC handle
  567. * @idle_scatter_bufs_base_paddr: Array of physical base addresses
  568. * @idle_scatter_bufs_base_vaddr: Array of virtual base addresses
  569. * @num_scatter_bufs: Number of scatter buffers in the above lists
  570. * @scatter_buf_size: Size of each scatter buffer
  571. *
  572. */
  573. extern void hal_setup_link_idle_list(void *hal_soc,
  574. qdf_dma_addr_t scatter_bufs_base_paddr[],
  575. void *scatter_bufs_base_vaddr[], uint32_t num_scatter_bufs,
  576. uint32_t scatter_buf_size, uint32_t last_buf_end_offset);
  577. /**
  578. * hal_reo_setup - Initialize HW REO block
  579. *
  580. * @hal_soc: Opaque HAL SOC handle
  581. */
  582. extern void hal_reo_setup(void *hal_soc);
  583. enum hal_pn_type {
  584. HAL_PN_NONE,
  585. HAL_PN_WPA,
  586. HAL_PN_WAPI_EVEN,
  587. HAL_PN_WAPI_UNEVEN,
  588. };
  589. #define HAL_RX_MAX_BA_WINDOW 256
  590. /**
  591. * hal_get_reo_qdesc_size - Get size of reo queue descriptor
  592. *
  593. * @hal_soc: Opaque HAL SOC handle
  594. * @ba_window_size: BlockAck window size
  595. *
  596. */
  597. static inline uint32_t hal_get_reo_qdesc_size(void *hal_soc,
  598. uint32_t ba_window_size)
  599. {
  600. if (ba_window_size <= 1)
  601. return sizeof(struct rx_reo_queue);
  602. if (ba_window_size <= 105)
  603. return sizeof(struct rx_reo_queue) +
  604. sizeof(struct rx_reo_queue_ext);
  605. if (ba_window_size <= 210)
  606. return sizeof(struct rx_reo_queue) +
  607. (2 * sizeof(struct rx_reo_queue_ext));
  608. return sizeof(struct rx_reo_queue) +
  609. (3 * sizeof(struct rx_reo_queue_ext));
  610. }
  611. /**
  612. * hal_get_reo_qdesc_align - Get start address alignment for reo
  613. * queue descriptors
  614. *
  615. * @hal_soc: Opaque HAL SOC handle
  616. *
  617. */
  618. static inline uint32_t hal_get_reo_qdesc_align(void *hal_soc)
  619. {
  620. return REO_QUEUE_DESC_ALIGN;
  621. }
  622. /**
  623. * hal_reo_qdesc_setup - Setup HW REO queue descriptor
  624. *
  625. * @hal_soc: Opaque HAL SOC handle
  626. * @ba_window_size: BlockAck window size
  627. * @start_seq: Starting sequence number
  628. * @hw_qdesc_vaddr: Virtual address of REO queue descriptor memory
  629. * @hw_qdesc_paddr: Physical address of REO queue descriptor memory
  630. * @pn_type: PN type (one of the types defined in 'enum hal_pn_type')
  631. *
  632. */
  633. extern void hal_reo_qdesc_setup(void *hal_soc, int tid, uint32_t ba_window_size,
  634. uint32_t start_seq, void *hw_qdesc_vaddr, qdf_dma_addr_t hw_qdesc_paddr,
  635. int pn_type);
  636. /**
  637. * hal_srng_get_hp_addr - Get head pointer physical address
  638. *
  639. * @hal_soc: Opaque HAL SOC handle
  640. * @hal_ring: Ring pointer (Source or Destination ring)
  641. *
  642. */
  643. static inline qdf_dma_addr_t hal_srng_get_hp_addr(void *hal_soc, void *hal_ring)
  644. {
  645. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  646. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  647. if (!(srng->flags & HAL_SRNG_LMAC_RING)) {
  648. /* Currently this interface is required only for LMAC rings */
  649. return (qdf_dma_addr_t)NULL;
  650. }
  651. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  652. return hal->shadow_wrptr_mem_paddr + (srng->u.src_ring.hp_addr -
  653. hal->shadow_wrptr_mem_vaddr);
  654. } else {
  655. return hal->shadow_rdptr_mem_paddr + (srng->u.dst_ring.hp_addr -
  656. hal->shadow_rdptr_mem_vaddr);
  657. }
  658. }
  659. /**
  660. * hal_srng_get_tp_addr - Get tail pointer physical address
  661. *
  662. * @hal_soc: Opaque HAL SOC handle
  663. * @hal_ring: Ring pointer (Source or Destination ring)
  664. *
  665. */
  666. static inline qdf_dma_addr_t hal_srng_get_tp_addr(void *hal_soc, void *hal_ring)
  667. {
  668. struct hal_srng *srng = (struct hal_srng *)hal_ring;
  669. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  670. if (!(srng->flags & HAL_SRNG_LMAC_RING)) {
  671. /* Currently this interface is required only for LMAC rings */
  672. return (qdf_dma_addr_t)NULL;
  673. }
  674. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  675. return hal->shadow_rdptr_mem_paddr +
  676. ((unsigned long)(srng->u.src_ring.tp_addr) -
  677. (unsigned long)(hal->shadow_rdptr_mem_vaddr));
  678. } else {
  679. return hal->shadow_wrptr_mem_paddr +
  680. ((unsigned long)(srng->u.dst_ring.tp_addr) -
  681. (unsigned long)(hal->shadow_wrptr_mem_vaddr));
  682. }
  683. }
  684. /**
  685. * hal_get_srng_params - Retreive SRNG parameters for a given ring from HAL
  686. *
  687. * @hal_soc: Opaque HAL SOC handle
  688. * @hal_ring: Ring pointer (Source or Destination ring)
  689. * @ring_params: SRNG parameters will be returned through this structure
  690. */
  691. extern void hal_get_srng_params(void *hal_soc, void *hal_ring,
  692. struct hal_srng_params *ring_params);
  693. #endif /* _HAL_API_H_ */