hal_api.h 22 KB

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