hal_api.h 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. /*
  2. * Copyright (c) 2016-2019 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_API_H_
  19. #define _HAL_API_H_
  20. #include "qdf_types.h"
  21. #include "qdf_util.h"
  22. #include "qdf_atomic.h"
  23. #include "hal_internal.h"
  24. #include "hif.h"
  25. #include "hif_io32.h"
  26. /* calculate the register address offset from bar0 of shadow register x */
  27. #if defined(QCA_WIFI_QCA6390) || defined(QCA_WIFI_QCA6490)
  28. #define SHADOW_REGISTER_START_ADDRESS_OFFSET 0x000008FC
  29. #define SHADOW_REGISTER_END_ADDRESS_OFFSET \
  30. ((SHADOW_REGISTER_START_ADDRESS_OFFSET) + (4 * (MAX_SHADOW_REGISTERS)))
  31. #define SHADOW_REGISTER(x) ((SHADOW_REGISTER_START_ADDRESS_OFFSET) + (4 * (x)))
  32. #elif defined(QCA_WIFI_QCA6290)
  33. #define SHADOW_REGISTER_START_ADDRESS_OFFSET 0x00003024
  34. #define SHADOW_REGISTER_END_ADDRESS_OFFSET \
  35. ((SHADOW_REGISTER_START_ADDRESS_OFFSET) + (4 * (MAX_SHADOW_REGISTERS)))
  36. #define SHADOW_REGISTER(x) ((SHADOW_REGISTER_START_ADDRESS_OFFSET) + (4 * (x)))
  37. #endif /* QCA_WIFI_QCA6390 || QCA_WIFI_QCA6490 */
  38. #define MAX_UNWINDOWED_ADDRESS 0x80000
  39. #if defined(QCA_WIFI_QCA6390) || defined(QCA_WIFI_QCA6490) || \
  40. defined(QCA_WIFI_QCN9000)
  41. #define WINDOW_ENABLE_BIT 0x40000000
  42. #else
  43. #define WINDOW_ENABLE_BIT 0x80000000
  44. #endif
  45. #define WINDOW_REG_ADDRESS 0x310C
  46. #define WINDOW_SHIFT 19
  47. #define WINDOW_VALUE_MASK 0x3F
  48. #define WINDOW_START MAX_UNWINDOWED_ADDRESS
  49. #define WINDOW_RANGE_MASK 0x7FFFF
  50. /*
  51. * BAR + 4K is always accessible, any access outside this
  52. * space requires force wake procedure.
  53. * OFFSET = 4K - 32 bytes = 0xFE0
  54. */
  55. #define MAPPED_REF_OFF 0xFE0
  56. /**
  57. * hal_ring_desc - opaque handle for DP ring descriptor
  58. */
  59. struct hal_ring_desc;
  60. typedef struct hal_ring_desc *hal_ring_desc_t;
  61. /**
  62. * hal_link_desc - opaque handle for DP link descriptor
  63. */
  64. struct hal_link_desc;
  65. typedef struct hal_link_desc *hal_link_desc_t;
  66. /**
  67. * hal_rxdma_desc - opaque handle for DP rxdma dst ring descriptor
  68. */
  69. struct hal_rxdma_desc;
  70. typedef struct hal_rxdma_desc *hal_rxdma_desc_t;
  71. #ifdef ENABLE_VERBOSE_DEBUG
  72. static inline void
  73. hal_set_verbose_debug(bool flag)
  74. {
  75. is_hal_verbose_debug_enabled = flag;
  76. }
  77. #endif
  78. #ifdef HAL_REGISTER_WRITE_DEBUG
  79. /**
  80. * hal_reg_write_result_check() - check register writing result
  81. * @hal_soc: HAL soc handle
  82. * @offset: register offset to read
  83. * @exp_val: the expected value of register
  84. * @ret_confirm: result confirm flag
  85. *
  86. * Return: none
  87. */
  88. static inline void hal_reg_write_result_check(struct hal_soc *hal_soc,
  89. uint32_t offset,
  90. uint32_t exp_val,
  91. bool ret_confirm)
  92. {
  93. uint32_t value;
  94. if (!ret_confirm)
  95. return;
  96. value = qdf_ioread32(hal_soc->dev_base_addr + offset);
  97. if (exp_val != value) {
  98. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO_HIGH,
  99. "register offset 0x%x write failed!\n", offset);
  100. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO_HIGH,
  101. "the expectation 0x%x, actual value 0x%x\n",
  102. exp_val,
  103. value);
  104. }
  105. }
  106. #else
  107. /* no op */
  108. #define hal_reg_write_result_check(_hal_soc, _offset, _exp_val, _ret_confirm)
  109. #endif
  110. #if !defined(QCA_WIFI_QCA6390) && !defined(QCA_WIFI_QCA6490)
  111. static inline void hal_lock_reg_access(struct hal_soc *soc,
  112. unsigned long *flags)
  113. {
  114. qdf_spin_lock_irqsave(&soc->register_access_lock);
  115. }
  116. static inline void hal_unlock_reg_access(struct hal_soc *soc,
  117. unsigned long *flags)
  118. {
  119. qdf_spin_unlock_irqrestore(&soc->register_access_lock);
  120. }
  121. #else
  122. static inline void hal_lock_reg_access(struct hal_soc *soc,
  123. unsigned long *flags)
  124. {
  125. pld_lock_reg_window(soc->qdf_dev->dev, flags);
  126. }
  127. static inline void hal_unlock_reg_access(struct hal_soc *soc,
  128. unsigned long *flags)
  129. {
  130. pld_unlock_reg_window(soc->qdf_dev->dev, flags);
  131. }
  132. #endif
  133. #ifdef PCIE_REG_WINDOW_LOCAL_NO_CACHE
  134. static inline void hal_select_window(struct hal_soc *hal_soc, uint32_t offset,
  135. bool ret_confirm)
  136. {
  137. uint32_t window = (offset >> WINDOW_SHIFT) & WINDOW_VALUE_MASK;
  138. qdf_iowrite32(hal_soc->dev_base_addr + WINDOW_REG_ADDRESS,
  139. WINDOW_ENABLE_BIT | window);
  140. hal_soc->register_window = window;
  141. hal_reg_write_result_check(hal_soc, WINDOW_REG_ADDRESS,
  142. WINDOW_ENABLE_BIT | window,
  143. ret_confirm);
  144. }
  145. #else
  146. static inline void hal_select_window(struct hal_soc *hal_soc, uint32_t offset,
  147. bool ret_confirm)
  148. {
  149. uint32_t window = (offset >> WINDOW_SHIFT) & WINDOW_VALUE_MASK;
  150. if (window != hal_soc->register_window) {
  151. qdf_iowrite32(hal_soc->dev_base_addr + WINDOW_REG_ADDRESS,
  152. WINDOW_ENABLE_BIT | window);
  153. hal_soc->register_window = window;
  154. hal_reg_write_result_check(
  155. hal_soc,
  156. WINDOW_REG_ADDRESS,
  157. WINDOW_ENABLE_BIT | window,
  158. ret_confirm);
  159. }
  160. }
  161. #endif
  162. /**
  163. * hal_write32_mb() - Access registers to update configuration
  164. * @hal_soc: hal soc handle
  165. * @offset: offset address from the BAR
  166. * @value: value to write
  167. *
  168. * Return: None
  169. *
  170. * Description: Register address space is split below:
  171. * SHADOW REGION UNWINDOWED REGION WINDOWED REGION
  172. * |--------------------|-------------------|------------------|
  173. * BAR NO FORCE WAKE BAR+4K FORCE WAKE BAR+512K FORCE WAKE
  174. *
  175. * 1. Any access to the shadow region, doesn't need force wake
  176. * and windowing logic to access.
  177. * 2. Any access beyond BAR + 4K:
  178. * If init_phase enabled, no force wake is needed and access
  179. * should be based on windowed or unwindowed access.
  180. * If init_phase disabled, force wake is needed and access
  181. * should be based on windowed or unwindowed access.
  182. *
  183. * note1: WINDOW_RANGE_MASK = (1 << WINDOW_SHIFT) -1
  184. * note2: 1 << WINDOW_SHIFT = MAX_UNWINDOWED_ADDRESS
  185. * note3: WINDOW_VALUE_MASK = big enough that trying to write past
  186. * that window would be a bug
  187. */
  188. #if !defined(QCA_WIFI_QCA6390) && !defined(QCA_WIFI_QCA6490)
  189. static inline void hal_write32_mb(struct hal_soc *hal_soc, uint32_t offset,
  190. uint32_t value, bool ret_confirm)
  191. {
  192. unsigned long flags;
  193. if (!hal_soc->use_register_windowing ||
  194. offset < MAX_UNWINDOWED_ADDRESS) {
  195. qdf_iowrite32(hal_soc->dev_base_addr + offset, value);
  196. hal_reg_write_result_check(hal_soc, offset,
  197. value, ret_confirm);
  198. } else {
  199. hal_lock_reg_access(hal_soc, &flags);
  200. hal_select_window(hal_soc, offset, ret_confirm);
  201. qdf_iowrite32(hal_soc->dev_base_addr + WINDOW_START +
  202. (offset & WINDOW_RANGE_MASK), value);
  203. hal_reg_write_result_check(
  204. hal_soc,
  205. WINDOW_START + (offset & WINDOW_RANGE_MASK),
  206. value, ret_confirm);
  207. hal_unlock_reg_access(hal_soc, &flags);
  208. }
  209. }
  210. #else
  211. static inline void hal_write32_mb(struct hal_soc *hal_soc, uint32_t offset,
  212. uint32_t value, bool ret_confirm)
  213. {
  214. int ret;
  215. unsigned long flags;
  216. /* Region < BAR + 4K can be directly accessed */
  217. if (offset < MAPPED_REF_OFF) {
  218. qdf_iowrite32(hal_soc->dev_base_addr + offset, value);
  219. return;
  220. }
  221. /* Region greater than BAR + 4K */
  222. if (!hal_soc->init_phase) {
  223. ret = hif_force_wake_request(hal_soc->hif_handle);
  224. if (ret) {
  225. hal_err("Wake up request failed");
  226. QDF_BUG(0);
  227. return;
  228. }
  229. }
  230. if (!hal_soc->use_register_windowing ||
  231. offset < MAX_UNWINDOWED_ADDRESS) {
  232. qdf_iowrite32(hal_soc->dev_base_addr + offset, value);
  233. hal_reg_write_result_check(hal_soc, offset,
  234. value, ret_confirm);
  235. } else {
  236. hal_lock_reg_access(hal_soc, &flags);
  237. hal_select_window(hal_soc, offset, ret_confirm);
  238. qdf_iowrite32(hal_soc->dev_base_addr + WINDOW_START +
  239. (offset & WINDOW_RANGE_MASK), value);
  240. hal_reg_write_result_check(
  241. hal_soc,
  242. WINDOW_START + (offset & WINDOW_RANGE_MASK),
  243. value,
  244. ret_confirm);
  245. hal_unlock_reg_access(hal_soc, &flags);
  246. }
  247. if (!hal_soc->init_phase) {
  248. ret = hif_force_wake_release(hal_soc->hif_handle);
  249. if (ret) {
  250. hal_err("Wake up request failed");
  251. QDF_BUG(0);
  252. return;
  253. }
  254. }
  255. }
  256. #endif
  257. /**
  258. * hal_write_address_32_mb - write a value to a register
  259. *
  260. */
  261. static inline
  262. void hal_write_address_32_mb(struct hal_soc *hal_soc,
  263. void __iomem *addr, uint32_t value)
  264. {
  265. uint32_t offset;
  266. if (!hal_soc->use_register_windowing)
  267. return qdf_iowrite32(addr, value);
  268. offset = addr - hal_soc->dev_base_addr;
  269. hal_write32_mb(hal_soc, offset, value, false);
  270. }
  271. #if !defined(QCA_WIFI_QCA6390) && !defined(QCA_WIFI_QCA6490)
  272. /**
  273. * hal_read32_mb() - Access registers to read configuration
  274. * @hal_soc: hal soc handle
  275. * @offset: offset address from the BAR
  276. * @value: value to write
  277. *
  278. * Description: Register address space is split below:
  279. * SHADOW REGION UNWINDOWED REGION WINDOWED REGION
  280. * |--------------------|-------------------|------------------|
  281. * BAR NO FORCE WAKE BAR+4K FORCE WAKE BAR+512K FORCE WAKE
  282. *
  283. * 1. Any access to the shadow region, doesn't need force wake
  284. * and windowing logic to access.
  285. * 2. Any access beyond BAR + 4K:
  286. * If init_phase enabled, no force wake is needed and access
  287. * should be based on windowed or unwindowed access.
  288. * If init_phase disabled, force wake is needed and access
  289. * should be based on windowed or unwindowed access.
  290. *
  291. * Return: < 0 for failure/>= 0 for success
  292. */
  293. static inline
  294. uint32_t hal_read32_mb(struct hal_soc *hal_soc, uint32_t offset)
  295. {
  296. uint32_t ret;
  297. unsigned long flags;
  298. if (!hal_soc->use_register_windowing ||
  299. offset < MAX_UNWINDOWED_ADDRESS) {
  300. return qdf_ioread32(hal_soc->dev_base_addr + offset);
  301. }
  302. hal_lock_reg_access(hal_soc, &flags);
  303. hal_select_window(hal_soc, offset, false);
  304. ret = qdf_ioread32(hal_soc->dev_base_addr + WINDOW_START +
  305. (offset & WINDOW_RANGE_MASK));
  306. hal_unlock_reg_access(hal_soc, &flags);
  307. return ret;
  308. }
  309. #else
  310. static
  311. uint32_t hal_read32_mb(struct hal_soc *hal_soc, uint32_t offset)
  312. {
  313. uint32_t ret;
  314. unsigned long flags;
  315. /* Region < BAR + 4K can be directly accessed */
  316. if (offset < MAPPED_REF_OFF)
  317. return qdf_ioread32(hal_soc->dev_base_addr + offset);
  318. if ((!hal_soc->init_phase) &&
  319. hif_force_wake_request(hal_soc->hif_handle)) {
  320. hal_err("Wake up request failed");
  321. QDF_BUG(0);
  322. return 0;
  323. }
  324. if (!hal_soc->use_register_windowing ||
  325. offset < MAX_UNWINDOWED_ADDRESS) {
  326. ret = qdf_ioread32(hal_soc->dev_base_addr + offset);
  327. } else {
  328. hal_lock_reg_access(hal_soc, &flags);
  329. hal_select_window(hal_soc, offset, false);
  330. ret = qdf_ioread32(hal_soc->dev_base_addr + WINDOW_START +
  331. (offset & WINDOW_RANGE_MASK));
  332. hal_unlock_reg_access(hal_soc, &flags);
  333. }
  334. if ((!hal_soc->init_phase) &&
  335. hif_force_wake_release(hal_soc->hif_handle)) {
  336. hal_err("Wake up release failed");
  337. QDF_BUG(0);
  338. return 0;
  339. }
  340. return ret;
  341. }
  342. #endif
  343. /**
  344. * hal_read_address_32_mb() - Read 32-bit value from the register
  345. * @soc: soc handle
  346. * @addr: register address to read
  347. *
  348. * Return: 32-bit value
  349. */
  350. static inline
  351. uint32_t hal_read_address_32_mb(struct hal_soc *soc,
  352. void __iomem *addr)
  353. {
  354. uint32_t offset;
  355. uint32_t ret;
  356. if (!soc->use_register_windowing)
  357. return qdf_ioread32(addr);
  358. offset = addr - soc->dev_base_addr;
  359. ret = hal_read32_mb(soc, offset);
  360. return ret;
  361. }
  362. /**
  363. * hal_attach - Initialize HAL layer
  364. * @hif_handle: Opaque HIF handle
  365. * @qdf_dev: QDF device
  366. *
  367. * Return: Opaque HAL SOC handle
  368. * NULL on failure (if given ring is not available)
  369. *
  370. * This function should be called as part of HIF initialization (for accessing
  371. * copy engines). DP layer will get hal_soc handle using hif_get_hal_handle()
  372. */
  373. void *hal_attach(struct hif_opaque_softc *hif_handle, qdf_device_t qdf_dev);
  374. /**
  375. * hal_detach - Detach HAL layer
  376. * @hal_soc: HAL SOC handle
  377. *
  378. * This function should be called as part of HIF detach
  379. *
  380. */
  381. extern void hal_detach(void *hal_soc);
  382. /* SRNG type to be passed in APIs hal_srng_get_entrysize and hal_srng_setup */
  383. enum hal_ring_type {
  384. REO_DST = 0,
  385. REO_EXCEPTION = 1,
  386. REO_REINJECT = 2,
  387. REO_CMD = 3,
  388. REO_STATUS = 4,
  389. TCL_DATA = 5,
  390. TCL_CMD = 6,
  391. TCL_STATUS = 7,
  392. CE_SRC = 8,
  393. CE_DST = 9,
  394. CE_DST_STATUS = 10,
  395. WBM_IDLE_LINK = 11,
  396. SW2WBM_RELEASE = 12,
  397. WBM2SW_RELEASE = 13,
  398. RXDMA_BUF = 14,
  399. RXDMA_DST = 15,
  400. RXDMA_MONITOR_BUF = 16,
  401. RXDMA_MONITOR_STATUS = 17,
  402. RXDMA_MONITOR_DST = 18,
  403. RXDMA_MONITOR_DESC = 19,
  404. DIR_BUF_RX_DMA_SRC = 20,
  405. #ifdef WLAN_FEATURE_CIF_CFR
  406. WIFI_POS_SRC,
  407. #endif
  408. MAX_RING_TYPES
  409. };
  410. #define HAL_SRNG_LMAC_RING 0x80000000
  411. /* SRNG flags passed in hal_srng_params.flags */
  412. #define HAL_SRNG_MSI_SWAP 0x00000008
  413. #define HAL_SRNG_RING_PTR_SWAP 0x00000010
  414. #define HAL_SRNG_DATA_TLV_SWAP 0x00000020
  415. #define HAL_SRNG_LOW_THRES_INTR_ENABLE 0x00010000
  416. #define HAL_SRNG_MSI_INTR 0x00020000
  417. #define HAL_SRNG_CACHED_DESC 0x00040000
  418. #define PN_SIZE_24 0
  419. #define PN_SIZE_48 1
  420. #define PN_SIZE_128 2
  421. #ifdef FORCE_WAKE
  422. /**
  423. * hal_set_init_phase() - Indicate initialization of
  424. * datapath rings
  425. * @soc: hal_soc handle
  426. * @init_phase: flag to indicate datapath rings
  427. * initialization status
  428. *
  429. * Return: None
  430. */
  431. void hal_set_init_phase(hal_soc_handle_t soc, bool init_phase);
  432. #else
  433. static inline
  434. void hal_set_init_phase(hal_soc_handle_t soc, bool init_phase)
  435. {
  436. }
  437. #endif /* FORCE_WAKE */
  438. /**
  439. * hal_srng_get_entrysize - Returns size of ring entry in bytes. Should be
  440. * used by callers for calculating the size of memory to be allocated before
  441. * calling hal_srng_setup to setup the ring
  442. *
  443. * @hal_soc: Opaque HAL SOC handle
  444. * @ring_type: one of the types from hal_ring_type
  445. *
  446. */
  447. extern uint32_t hal_srng_get_entrysize(void *hal_soc, int ring_type);
  448. /**
  449. * hal_srng_max_entries - Returns maximum possible number of ring entries
  450. * @hal_soc: Opaque HAL SOC handle
  451. * @ring_type: one of the types from hal_ring_type
  452. *
  453. * Return: Maximum number of entries for the given ring_type
  454. */
  455. uint32_t hal_srng_max_entries(void *hal_soc, int ring_type);
  456. /**
  457. * hal_srng_dump - Dump ring status
  458. * @srng: hal srng pointer
  459. */
  460. void hal_srng_dump(struct hal_srng *srng);
  461. /**
  462. * hal_srng_get_dir - Returns the direction of the ring
  463. * @hal_soc: Opaque HAL SOC handle
  464. * @ring_type: one of the types from hal_ring_type
  465. *
  466. * Return: Ring direction
  467. */
  468. enum hal_srng_dir hal_srng_get_dir(void *hal_soc, int ring_type);
  469. /* HAL memory information */
  470. struct hal_mem_info {
  471. /* dev base virutal addr */
  472. void *dev_base_addr;
  473. /* dev base physical addr */
  474. void *dev_base_paddr;
  475. /* Remote virtual pointer memory for HW/FW updates */
  476. void *shadow_rdptr_mem_vaddr;
  477. /* Remote physical pointer memory for HW/FW updates */
  478. void *shadow_rdptr_mem_paddr;
  479. /* Shared memory for ring pointer updates from host to FW */
  480. void *shadow_wrptr_mem_vaddr;
  481. /* Shared physical memory for ring pointer updates from host to FW */
  482. void *shadow_wrptr_mem_paddr;
  483. };
  484. /* SRNG parameters to be passed to hal_srng_setup */
  485. struct hal_srng_params {
  486. /* Physical base address of the ring */
  487. qdf_dma_addr_t ring_base_paddr;
  488. /* Virtual base address of the ring */
  489. void *ring_base_vaddr;
  490. /* Number of entries in ring */
  491. uint32_t num_entries;
  492. /* max transfer length */
  493. uint16_t max_buffer_length;
  494. /* MSI Address */
  495. qdf_dma_addr_t msi_addr;
  496. /* MSI data */
  497. uint32_t msi_data;
  498. /* Interrupt timer threshold – in micro seconds */
  499. uint32_t intr_timer_thres_us;
  500. /* Interrupt batch counter threshold – in number of ring entries */
  501. uint32_t intr_batch_cntr_thres_entries;
  502. /* Low threshold – in number of ring entries
  503. * (valid for src rings only)
  504. */
  505. uint32_t low_threshold;
  506. /* Misc flags */
  507. uint32_t flags;
  508. /* Unique ring id */
  509. uint8_t ring_id;
  510. /* Source or Destination ring */
  511. enum hal_srng_dir ring_dir;
  512. /* Size of ring entry */
  513. uint32_t entry_size;
  514. /* hw register base address */
  515. void *hwreg_base[MAX_SRNG_REG_GROUPS];
  516. };
  517. /* hal_construct_shadow_config() - initialize the shadow registers for dp rings
  518. * @hal_soc: hal handle
  519. *
  520. * Return: QDF_STATUS_OK on success
  521. */
  522. extern QDF_STATUS hal_construct_shadow_config(void *hal_soc);
  523. /* hal_set_one_shadow_config() - add a config for the specified ring
  524. * @hal_soc: hal handle
  525. * @ring_type: ring type
  526. * @ring_num: ring num
  527. *
  528. * The ring type and ring num uniquely specify the ring. After this call,
  529. * the hp/tp will be added as the next entry int the shadow register
  530. * configuration table. The hal code will use the shadow register address
  531. * in place of the hp/tp address.
  532. *
  533. * This function is exposed, so that the CE module can skip configuring shadow
  534. * registers for unused ring and rings assigned to the firmware.
  535. *
  536. * Return: QDF_STATUS_OK on success
  537. */
  538. extern QDF_STATUS hal_set_one_shadow_config(void *hal_soc, int ring_type,
  539. int ring_num);
  540. /**
  541. * hal_get_shadow_config() - retrieve the config table
  542. * @hal_soc: hal handle
  543. * @shadow_config: will point to the table after
  544. * @num_shadow_registers_configured: will contain the number of valid entries
  545. */
  546. extern void hal_get_shadow_config(void *hal_soc,
  547. struct pld_shadow_reg_v2_cfg **shadow_config,
  548. int *num_shadow_registers_configured);
  549. /**
  550. * hal_srng_setup - Initialize HW SRNG ring.
  551. *
  552. * @hal_soc: Opaque HAL SOC handle
  553. * @ring_type: one of the types from hal_ring_type
  554. * @ring_num: Ring number if there are multiple rings of
  555. * same type (staring from 0)
  556. * @mac_id: valid MAC Id should be passed if ring type is one of lmac rings
  557. * @ring_params: SRNG ring params in hal_srng_params structure.
  558. * Callers are expected to allocate contiguous ring memory of size
  559. * 'num_entries * entry_size' bytes and pass the physical and virtual base
  560. * addresses through 'ring_base_paddr' and 'ring_base_vaddr' in hal_srng_params
  561. * structure. Ring base address should be 8 byte aligned and size of each ring
  562. * entry should be queried using the API hal_srng_get_entrysize
  563. *
  564. * Return: Opaque pointer to ring on success
  565. * NULL on failure (if given ring is not available)
  566. */
  567. extern void *hal_srng_setup(void *hal_soc, int ring_type, int ring_num,
  568. int mac_id, struct hal_srng_params *ring_params);
  569. /* Remapping ids of REO rings */
  570. #define REO_REMAP_TCL 0
  571. #define REO_REMAP_SW1 1
  572. #define REO_REMAP_SW2 2
  573. #define REO_REMAP_SW3 3
  574. #define REO_REMAP_SW4 4
  575. #define REO_REMAP_RELEASE 5
  576. #define REO_REMAP_FW 6
  577. #define REO_REMAP_UNUSED 7
  578. /*
  579. * Macro to access HWIO_REO_R0_DESTINATION_RING_CTRL_IX_0
  580. * to map destination to rings
  581. */
  582. #define HAL_REO_REMAP_IX0(_VALUE, _OFFSET) \
  583. ((_VALUE) << \
  584. (HWIO_REO_R0_DESTINATION_RING_CTRL_IX_0_DEST_RING_MAPPING_ ## \
  585. _OFFSET ## _SHFT))
  586. /*
  587. * Macro to access HWIO_REO_R0_DESTINATION_RING_CTRL_IX_1
  588. * to map destination to rings
  589. */
  590. #define HAL_REO_REMAP_IX2(_VALUE, _OFFSET) \
  591. ((_VALUE) << \
  592. (HWIO_REO_R0_DESTINATION_RING_CTRL_IX_2_DEST_RING_MAPPING_ ## \
  593. _OFFSET ## _SHFT))
  594. /*
  595. * Macro to access HWIO_REO_R0_DESTINATION_RING_CTRL_IX_3
  596. * to map destination to rings
  597. */
  598. #define HAL_REO_REMAP_IX3(_VALUE, _OFFSET) \
  599. ((_VALUE) << \
  600. (HWIO_REO_R0_DESTINATION_RING_CTRL_IX_3_DEST_RING_MAPPING_ ## \
  601. _OFFSET ## _SHFT))
  602. /**
  603. * hal_reo_read_write_ctrl_ix - Read or write REO_DESTINATION_RING_CTRL_IX
  604. * @hal_soc_hdl: HAL SOC handle
  605. * @read: boolean value to indicate if read or write
  606. * @ix0: pointer to store IX0 reg value
  607. * @ix1: pointer to store IX1 reg value
  608. * @ix2: pointer to store IX2 reg value
  609. * @ix3: pointer to store IX3 reg value
  610. */
  611. void hal_reo_read_write_ctrl_ix(hal_soc_handle_t hal_soc_hdl, bool read,
  612. uint32_t *ix0, uint32_t *ix1,
  613. uint32_t *ix2, uint32_t *ix3);
  614. /**
  615. * hal_srng_set_hp_paddr() - Set physical address to dest SRNG head pointer
  616. * @sring: sring pointer
  617. * @paddr: physical address
  618. */
  619. extern void hal_srng_dst_set_hp_paddr(struct hal_srng *sring, uint64_t paddr);
  620. /**
  621. * hal_srng_dst_init_hp() - Initilaize head pointer with cached head pointer
  622. * @srng: sring pointer
  623. * @vaddr: virtual address
  624. */
  625. extern void hal_srng_dst_init_hp(struct hal_srng *srng, uint32_t *vaddr);
  626. /**
  627. * hal_srng_cleanup - Deinitialize HW SRNG ring.
  628. * @hal_soc: Opaque HAL SOC handle
  629. * @hal_srng: Opaque HAL SRNG pointer
  630. */
  631. void hal_srng_cleanup(void *hal_soc, hal_ring_handle_t hal_ring_hdl);
  632. static inline bool hal_srng_initialized(hal_ring_handle_t hal_ring_hdl)
  633. {
  634. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  635. return !!srng->initialized;
  636. }
  637. /**
  638. * hal_srng_dst_peek - Check if there are any entries in the ring (peek)
  639. * @hal_soc: Opaque HAL SOC handle
  640. * @hal_ring_hdl: Destination ring pointer
  641. *
  642. * Caller takes responsibility for any locking needs.
  643. *
  644. * Return: Opaque pointer for next ring entry; NULL on failire
  645. */
  646. static inline
  647. void *hal_srng_dst_peek(hal_soc_handle_t hal_soc_hdl,
  648. hal_ring_handle_t hal_ring_hdl)
  649. {
  650. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  651. if (srng->u.dst_ring.tp != srng->u.dst_ring.cached_hp)
  652. return (void *)(&srng->ring_base_vaddr[srng->u.dst_ring.tp]);
  653. return NULL;
  654. }
  655. /**
  656. * hal_srng_access_start_unlocked - Start ring access (unlocked). Should use
  657. * hal_srng_access_start if locked access is required
  658. *
  659. * @hal_soc: Opaque HAL SOC handle
  660. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  661. *
  662. * Return: 0 on success; error on failire
  663. */
  664. static inline int
  665. hal_srng_access_start_unlocked(hal_soc_handle_t hal_soc_hdl,
  666. hal_ring_handle_t hal_ring_hdl)
  667. {
  668. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  669. struct hal_soc *soc = (struct hal_soc *)hal_soc_hdl;
  670. uint32_t *desc;
  671. if (srng->ring_dir == HAL_SRNG_SRC_RING)
  672. srng->u.src_ring.cached_tp =
  673. *(volatile uint32_t *)(srng->u.src_ring.tp_addr);
  674. else {
  675. srng->u.dst_ring.cached_hp =
  676. *(volatile uint32_t *)(srng->u.dst_ring.hp_addr);
  677. if (srng->flags & HAL_SRNG_CACHED_DESC) {
  678. desc = hal_srng_dst_peek(hal_soc_hdl, hal_ring_hdl);
  679. if (qdf_likely(desc)) {
  680. qdf_mem_dma_cache_sync(soc->qdf_dev,
  681. qdf_mem_virt_to_phys
  682. (desc),
  683. QDF_DMA_FROM_DEVICE,
  684. (srng->entry_size *
  685. sizeof(uint32_t)));
  686. qdf_prefetch(desc);
  687. }
  688. }
  689. }
  690. return 0;
  691. }
  692. /**
  693. * hal_srng_access_start - Start (locked) ring access
  694. *
  695. * @hal_soc: Opaque HAL SOC handle
  696. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  697. *
  698. * Return: 0 on success; error on failire
  699. */
  700. static inline int hal_srng_access_start(hal_soc_handle_t hal_soc_hdl,
  701. hal_ring_handle_t hal_ring_hdl)
  702. {
  703. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  704. if (qdf_unlikely(!hal_ring_hdl)) {
  705. qdf_print("Error: Invalid hal_ring\n");
  706. return -EINVAL;
  707. }
  708. SRNG_LOCK(&(srng->lock));
  709. return hal_srng_access_start_unlocked(hal_soc_hdl, hal_ring_hdl);
  710. }
  711. /**
  712. * hal_srng_dst_get_next - Get next entry from a destination ring and move
  713. * cached tail pointer
  714. *
  715. * @hal_soc: Opaque HAL SOC handle
  716. * @hal_ring_hdl: Destination ring pointer
  717. *
  718. * Return: Opaque pointer for next ring entry; NULL on failire
  719. */
  720. static inline
  721. void *hal_srng_dst_get_next(void *hal_soc,
  722. hal_ring_handle_t hal_ring_hdl)
  723. {
  724. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  725. struct hal_soc *soc = (struct hal_soc *)hal_soc;
  726. uint32_t *desc;
  727. uint32_t *desc_next;
  728. uint32_t tp;
  729. if (srng->u.dst_ring.tp != srng->u.dst_ring.cached_hp) {
  730. desc = &(srng->ring_base_vaddr[srng->u.dst_ring.tp]);
  731. /* TODO: Using % is expensive, but we have to do this since
  732. * size of some SRNG rings is not power of 2 (due to descriptor
  733. * sizes). Need to create separate API for rings used
  734. * per-packet, with sizes power of 2 (TCL2SW, REO2SW,
  735. * SW2RXDMA and CE rings)
  736. */
  737. srng->u.dst_ring.tp = (srng->u.dst_ring.tp + srng->entry_size) %
  738. srng->ring_size;
  739. if (srng->flags & HAL_SRNG_CACHED_DESC) {
  740. tp = srng->u.dst_ring.tp;
  741. desc_next = &srng->ring_base_vaddr[tp];
  742. qdf_mem_dma_cache_sync(soc->qdf_dev,
  743. qdf_mem_virt_to_phys(desc_next),
  744. QDF_DMA_FROM_DEVICE,
  745. (srng->entry_size *
  746. sizeof(uint32_t)));
  747. qdf_prefetch(desc_next);
  748. }
  749. return (void *)desc;
  750. }
  751. return NULL;
  752. }
  753. /**
  754. * hal_srng_dst_get_next_hp - Get next entry from a destination ring and move
  755. * cached head pointer
  756. *
  757. * @hal_soc: Opaque HAL SOC handle
  758. * @hal_ring_hdl: Destination ring pointer
  759. *
  760. * Return: Opaque pointer for next ring entry; NULL on failire
  761. */
  762. static inline void *
  763. hal_srng_dst_get_next_hp(hal_soc_handle_t hal_soc_hdl,
  764. hal_ring_handle_t hal_ring_hdl)
  765. {
  766. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  767. uint32_t *desc;
  768. /* TODO: Using % is expensive, but we have to do this since
  769. * size of some SRNG rings is not power of 2 (due to descriptor
  770. * sizes). Need to create separate API for rings used
  771. * per-packet, with sizes power of 2 (TCL2SW, REO2SW,
  772. * SW2RXDMA and CE rings)
  773. */
  774. uint32_t next_hp = (srng->u.dst_ring.cached_hp + srng->entry_size) %
  775. srng->ring_size;
  776. if (next_hp != srng->u.dst_ring.tp) {
  777. desc = &(srng->ring_base_vaddr[srng->u.dst_ring.cached_hp]);
  778. srng->u.dst_ring.cached_hp = next_hp;
  779. return (void *)desc;
  780. }
  781. return NULL;
  782. }
  783. /**
  784. * hal_srng_dst_peek_sync - Check if there are any entries in the ring (peek)
  785. * @hal_soc: Opaque HAL SOC handle
  786. * @hal_ring_hdl: Destination ring pointer
  787. *
  788. * Sync cached head pointer with HW.
  789. * Caller takes responsibility for any locking needs.
  790. *
  791. * Return: Opaque pointer for next ring entry; NULL on failire
  792. */
  793. static inline
  794. void *hal_srng_dst_peek_sync(hal_soc_handle_t hal_soc_hdl,
  795. hal_ring_handle_t hal_ring_hdl)
  796. {
  797. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  798. srng->u.dst_ring.cached_hp =
  799. *(volatile uint32_t *)(srng->u.dst_ring.hp_addr);
  800. if (srng->u.dst_ring.tp != srng->u.dst_ring.cached_hp)
  801. return (void *)(&(srng->ring_base_vaddr[srng->u.dst_ring.tp]));
  802. return NULL;
  803. }
  804. /**
  805. * hal_srng_dst_peek_sync_locked - Peek for any entries in the ring
  806. * @hal_soc: Opaque HAL SOC handle
  807. * @hal_ring_hdl: Destination ring pointer
  808. *
  809. * Sync cached head pointer with HW.
  810. * This function takes up SRNG_LOCK. Should not be called with SRNG lock held.
  811. *
  812. * Return: Opaque pointer for next ring entry; NULL on failire
  813. */
  814. static inline
  815. void *hal_srng_dst_peek_sync_locked(hal_soc_handle_t hal_soc_hdl,
  816. hal_ring_handle_t hal_ring_hdl)
  817. {
  818. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  819. void *ring_desc_ptr = NULL;
  820. if (qdf_unlikely(!hal_ring_hdl)) {
  821. qdf_print("Error: Invalid hal_ring\n");
  822. return NULL;
  823. }
  824. SRNG_LOCK(&srng->lock);
  825. ring_desc_ptr = hal_srng_dst_peek_sync(hal_soc_hdl, hal_ring_hdl);
  826. SRNG_UNLOCK(&srng->lock);
  827. return ring_desc_ptr;
  828. }
  829. /**
  830. * hal_srng_dst_num_valid - Returns number of valid entries (to be processed
  831. * by SW) in destination ring
  832. *
  833. * @hal_soc: Opaque HAL SOC handle
  834. * @hal_ring_hdl: Destination ring pointer
  835. * @sync_hw_ptr: Sync cached head pointer with HW
  836. *
  837. */
  838. static inline
  839. uint32_t hal_srng_dst_num_valid(void *hal_soc,
  840. hal_ring_handle_t hal_ring_hdl,
  841. int sync_hw_ptr)
  842. {
  843. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  844. uint32_t hp;
  845. uint32_t tp = srng->u.dst_ring.tp;
  846. if (sync_hw_ptr) {
  847. hp = *(volatile uint32_t *)(srng->u.dst_ring.hp_addr);
  848. srng->u.dst_ring.cached_hp = hp;
  849. } else {
  850. hp = srng->u.dst_ring.cached_hp;
  851. }
  852. if (hp >= tp)
  853. return (hp - tp) / srng->entry_size;
  854. else
  855. return (srng->ring_size - tp + hp) / srng->entry_size;
  856. }
  857. /**
  858. * hal_srng_dst_num_valid_locked - Returns num valid entries to be processed
  859. *
  860. * @hal_soc: Opaque HAL SOC handle
  861. * @hal_ring_hdl: Destination ring pointer
  862. * @sync_hw_ptr: Sync cached head pointer with HW
  863. *
  864. * Returns number of valid entries to be processed by the host driver. The
  865. * function takes up SRNG lock.
  866. *
  867. * Return: Number of valid destination entries
  868. */
  869. static inline uint32_t
  870. hal_srng_dst_num_valid_locked(hal_soc_handle_t hal_soc,
  871. hal_ring_handle_t hal_ring_hdl,
  872. int sync_hw_ptr)
  873. {
  874. uint32_t num_valid;
  875. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  876. SRNG_LOCK(&srng->lock);
  877. num_valid = hal_srng_dst_num_valid(hal_soc, hal_ring_hdl, sync_hw_ptr);
  878. SRNG_UNLOCK(&srng->lock);
  879. return num_valid;
  880. }
  881. /**
  882. * hal_srng_src_reap_next - Reap next entry from a source ring and move reap
  883. * pointer. This can be used to release any buffers associated with completed
  884. * ring entries. Note that this should not be used for posting new descriptor
  885. * entries. Posting of new entries should be done only using
  886. * hal_srng_src_get_next_reaped when this function is used for reaping.
  887. *
  888. * @hal_soc: Opaque HAL SOC handle
  889. * @hal_ring_hdl: Source ring pointer
  890. *
  891. * Return: Opaque pointer for next ring entry; NULL on failire
  892. */
  893. static inline void *
  894. hal_srng_src_reap_next(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  895. {
  896. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  897. uint32_t *desc;
  898. /* TODO: Using % is expensive, but we have to do this since
  899. * size of some SRNG rings is not power of 2 (due to descriptor
  900. * sizes). Need to create separate API for rings used
  901. * per-packet, with sizes power of 2 (TCL2SW, REO2SW,
  902. * SW2RXDMA and CE rings)
  903. */
  904. uint32_t next_reap_hp = (srng->u.src_ring.reap_hp + srng->entry_size) %
  905. srng->ring_size;
  906. if (next_reap_hp != srng->u.src_ring.cached_tp) {
  907. desc = &(srng->ring_base_vaddr[next_reap_hp]);
  908. srng->u.src_ring.reap_hp = next_reap_hp;
  909. return (void *)desc;
  910. }
  911. return NULL;
  912. }
  913. /**
  914. * hal_srng_src_get_next_reaped - Get next entry from a source ring that is
  915. * already reaped using hal_srng_src_reap_next, for posting new entries to
  916. * the ring
  917. *
  918. * @hal_soc: Opaque HAL SOC handle
  919. * @hal_ring_hdl: Source ring pointer
  920. *
  921. * Return: Opaque pointer for next (reaped) source ring entry; NULL on failire
  922. */
  923. static inline void *
  924. hal_srng_src_get_next_reaped(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  925. {
  926. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  927. uint32_t *desc;
  928. if (srng->u.src_ring.hp != srng->u.src_ring.reap_hp) {
  929. desc = &(srng->ring_base_vaddr[srng->u.src_ring.hp]);
  930. srng->u.src_ring.hp = (srng->u.src_ring.hp + srng->entry_size) %
  931. srng->ring_size;
  932. return (void *)desc;
  933. }
  934. return NULL;
  935. }
  936. /**
  937. * hal_srng_src_pending_reap_next - Reap next entry from a source ring and
  938. * move reap pointer. This API is used in detach path to release any buffers
  939. * associated with ring entries which are pending reap.
  940. *
  941. * @hal_soc: Opaque HAL SOC handle
  942. * @hal_ring_hdl: Source ring pointer
  943. *
  944. * Return: Opaque pointer for next ring entry; NULL on failire
  945. */
  946. static inline void *
  947. hal_srng_src_pending_reap_next(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  948. {
  949. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  950. uint32_t *desc;
  951. uint32_t next_reap_hp = (srng->u.src_ring.reap_hp + srng->entry_size) %
  952. srng->ring_size;
  953. if (next_reap_hp != srng->u.src_ring.hp) {
  954. desc = &(srng->ring_base_vaddr[next_reap_hp]);
  955. srng->u.src_ring.reap_hp = next_reap_hp;
  956. return (void *)desc;
  957. }
  958. return NULL;
  959. }
  960. /**
  961. * hal_srng_src_done_val -
  962. *
  963. * @hal_soc: Opaque HAL SOC handle
  964. * @hal_ring_hdl: Source ring pointer
  965. *
  966. * Return: Opaque pointer for next ring entry; NULL on failire
  967. */
  968. static inline uint32_t
  969. hal_srng_src_done_val(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  970. {
  971. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  972. /* TODO: Using % is expensive, but we have to do this since
  973. * size of some SRNG rings is not power of 2 (due to descriptor
  974. * sizes). Need to create separate API for rings used
  975. * per-packet, with sizes power of 2 (TCL2SW, REO2SW,
  976. * SW2RXDMA and CE rings)
  977. */
  978. uint32_t next_reap_hp = (srng->u.src_ring.reap_hp + srng->entry_size) %
  979. srng->ring_size;
  980. if (next_reap_hp == srng->u.src_ring.cached_tp)
  981. return 0;
  982. if (srng->u.src_ring.cached_tp > next_reap_hp)
  983. return (srng->u.src_ring.cached_tp - next_reap_hp) /
  984. srng->entry_size;
  985. else
  986. return ((srng->ring_size - next_reap_hp) +
  987. srng->u.src_ring.cached_tp) / srng->entry_size;
  988. }
  989. /**
  990. * hal_get_entrysize_from_srng() - Retrieve ring entry size
  991. * @hal_ring_hdl: Source ring pointer
  992. *
  993. * Return: uint8_t
  994. */
  995. static inline
  996. uint8_t hal_get_entrysize_from_srng(hal_ring_handle_t hal_ring_hdl)
  997. {
  998. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  999. return srng->entry_size;
  1000. }
  1001. /**
  1002. * hal_get_sw_hptp - Get SW head and tail pointer location for any ring
  1003. * @hal_soc: Opaque HAL SOC handle
  1004. * @hal_ring_hdl: Source ring pointer
  1005. * @tailp: Tail Pointer
  1006. * @headp: Head Pointer
  1007. *
  1008. * Return: Update tail pointer and head pointer in arguments.
  1009. */
  1010. static inline
  1011. void hal_get_sw_hptp(void *hal_soc, hal_ring_handle_t hal_ring_hdl,
  1012. uint32_t *tailp, uint32_t *headp)
  1013. {
  1014. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1015. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  1016. *headp = srng->u.src_ring.hp;
  1017. *tailp = *srng->u.src_ring.tp_addr;
  1018. } else {
  1019. *tailp = srng->u.dst_ring.tp;
  1020. *headp = *srng->u.dst_ring.hp_addr;
  1021. }
  1022. }
  1023. /**
  1024. * hal_srng_src_get_next - Get next entry from a source ring and move cached tail pointer
  1025. *
  1026. * @hal_soc: Opaque HAL SOC handle
  1027. * @hal_ring_hdl: Source ring pointer
  1028. *
  1029. * Return: Opaque pointer for next ring entry; NULL on failire
  1030. */
  1031. static inline
  1032. void *hal_srng_src_get_next(void *hal_soc,
  1033. hal_ring_handle_t hal_ring_hdl)
  1034. {
  1035. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1036. uint32_t *desc;
  1037. /* TODO: Using % is expensive, but we have to do this since
  1038. * size of some SRNG rings is not power of 2 (due to descriptor
  1039. * sizes). Need to create separate API for rings used
  1040. * per-packet, with sizes power of 2 (TCL2SW, REO2SW,
  1041. * SW2RXDMA and CE rings)
  1042. */
  1043. uint32_t next_hp = (srng->u.src_ring.hp + srng->entry_size) %
  1044. srng->ring_size;
  1045. if (next_hp != srng->u.src_ring.cached_tp) {
  1046. desc = &(srng->ring_base_vaddr[srng->u.src_ring.hp]);
  1047. srng->u.src_ring.hp = next_hp;
  1048. /* TODO: Since reap function is not used by all rings, we can
  1049. * remove the following update of reap_hp in this function
  1050. * if we can ensure that only hal_srng_src_get_next_reaped
  1051. * is used for the rings requiring reap functionality
  1052. */
  1053. srng->u.src_ring.reap_hp = next_hp;
  1054. return (void *)desc;
  1055. }
  1056. return NULL;
  1057. }
  1058. /**
  1059. * hal_srng_src_peek - Get next entry from a ring without moving head pointer.
  1060. * hal_srng_src_get_next should be called subsequently to move the head pointer
  1061. *
  1062. * @hal_soc: Opaque HAL SOC handle
  1063. * @hal_ring_hdl: Source ring pointer
  1064. *
  1065. * Return: Opaque pointer for next ring entry; NULL on failire
  1066. */
  1067. static inline
  1068. void *hal_srng_src_peek(hal_soc_handle_t hal_soc_hdl,
  1069. hal_ring_handle_t hal_ring_hdl)
  1070. {
  1071. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1072. uint32_t *desc;
  1073. /* TODO: Using % is expensive, but we have to do this since
  1074. * size of some SRNG rings is not power of 2 (due to descriptor
  1075. * sizes). Need to create separate API for rings used
  1076. * per-packet, with sizes power of 2 (TCL2SW, REO2SW,
  1077. * SW2RXDMA and CE rings)
  1078. */
  1079. if (((srng->u.src_ring.hp + srng->entry_size) %
  1080. srng->ring_size) != srng->u.src_ring.cached_tp) {
  1081. desc = &(srng->ring_base_vaddr[srng->u.src_ring.hp]);
  1082. return (void *)desc;
  1083. }
  1084. return NULL;
  1085. }
  1086. /**
  1087. * hal_srng_src_num_avail - Returns number of available entries in src ring
  1088. *
  1089. * @hal_soc: Opaque HAL SOC handle
  1090. * @hal_ring_hdl: Source ring pointer
  1091. * @sync_hw_ptr: Sync cached tail pointer with HW
  1092. *
  1093. */
  1094. static inline uint32_t
  1095. hal_srng_src_num_avail(void *hal_soc,
  1096. hal_ring_handle_t hal_ring_hdl, int sync_hw_ptr)
  1097. {
  1098. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1099. uint32_t tp;
  1100. uint32_t hp = srng->u.src_ring.hp;
  1101. if (sync_hw_ptr) {
  1102. tp = *(srng->u.src_ring.tp_addr);
  1103. srng->u.src_ring.cached_tp = tp;
  1104. } else {
  1105. tp = srng->u.src_ring.cached_tp;
  1106. }
  1107. if (tp > hp)
  1108. return ((tp - hp) / srng->entry_size) - 1;
  1109. else
  1110. return ((srng->ring_size - hp + tp) / srng->entry_size) - 1;
  1111. }
  1112. /**
  1113. * hal_srng_access_end_unlocked - End ring access (unlocked) - update cached
  1114. * ring head/tail pointers to HW.
  1115. * This should be used only if hal_srng_access_start_unlocked to start ring
  1116. * access
  1117. *
  1118. * @hal_soc: Opaque HAL SOC handle
  1119. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  1120. *
  1121. * Return: 0 on success; error on failire
  1122. */
  1123. static inline void
  1124. hal_srng_access_end_unlocked(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  1125. {
  1126. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1127. /* TODO: See if we need a write memory barrier here */
  1128. if (srng->flags & HAL_SRNG_LMAC_RING) {
  1129. /* For LMAC rings, ring pointer updates are done through FW and
  1130. * hence written to a shared memory location that is read by FW
  1131. */
  1132. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  1133. *(srng->u.src_ring.hp_addr) = srng->u.src_ring.hp;
  1134. } else {
  1135. *(srng->u.dst_ring.tp_addr) = srng->u.dst_ring.tp;
  1136. }
  1137. } else {
  1138. if (srng->ring_dir == HAL_SRNG_SRC_RING)
  1139. hal_write_address_32_mb(hal_soc,
  1140. srng->u.src_ring.hp_addr,
  1141. srng->u.src_ring.hp);
  1142. else
  1143. hal_write_address_32_mb(hal_soc,
  1144. srng->u.dst_ring.tp_addr,
  1145. srng->u.dst_ring.tp);
  1146. }
  1147. }
  1148. /**
  1149. * hal_srng_access_end - Unlock ring access and update cached ring head/tail
  1150. * pointers to HW
  1151. * This should be used only if hal_srng_access_start to start ring access
  1152. *
  1153. * @hal_soc: Opaque HAL SOC handle
  1154. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  1155. *
  1156. * Return: 0 on success; error on failire
  1157. */
  1158. static inline void
  1159. hal_srng_access_end(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  1160. {
  1161. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1162. if (qdf_unlikely(!hal_ring_hdl)) {
  1163. qdf_print("Error: Invalid hal_ring\n");
  1164. return;
  1165. }
  1166. hal_srng_access_end_unlocked(hal_soc, hal_ring_hdl);
  1167. SRNG_UNLOCK(&(srng->lock));
  1168. }
  1169. /**
  1170. * hal_srng_access_end_reap - Unlock ring access
  1171. * This should be used only if hal_srng_access_start to start ring access
  1172. * and should be used only while reaping SRC ring completions
  1173. *
  1174. * @hal_soc: Opaque HAL SOC handle
  1175. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  1176. *
  1177. * Return: 0 on success; error on failire
  1178. */
  1179. static inline void
  1180. hal_srng_access_end_reap(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  1181. {
  1182. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1183. SRNG_UNLOCK(&(srng->lock));
  1184. }
  1185. /* TODO: Check if the following definitions is available in HW headers */
  1186. #define WBM_IDLE_SCATTER_BUF_SIZE 32704
  1187. #define NUM_MPDUS_PER_LINK_DESC 6
  1188. #define NUM_MSDUS_PER_LINK_DESC 7
  1189. #define REO_QUEUE_DESC_ALIGN 128
  1190. #define LINK_DESC_ALIGN 128
  1191. #define ADDRESS_MATCH_TAG_VAL 0x5
  1192. /* Number of mpdu link pointers is 9 in case of TX_MPDU_QUEUE_HEAD and 14 in
  1193. * of TX_MPDU_QUEUE_EXT. We are defining a common average count here
  1194. */
  1195. #define NUM_MPDU_LINKS_PER_QUEUE_DESC 12
  1196. /* TODO: Check with HW team on the scatter buffer size supported. As per WBM
  1197. * MLD, scatter_buffer_size in IDLE_LIST_CONTROL register is 9 bits and size
  1198. * should be specified in 16 word units. But the number of bits defined for
  1199. * this field in HW header files is 5.
  1200. */
  1201. #define WBM_IDLE_SCATTER_BUF_NEXT_PTR_SIZE 8
  1202. /**
  1203. * hal_idle_list_scatter_buf_size - Get the size of each scatter buffer
  1204. * in an idle list
  1205. *
  1206. * @hal_soc: Opaque HAL SOC handle
  1207. *
  1208. */
  1209. static inline
  1210. uint32_t hal_idle_list_scatter_buf_size(hal_soc_handle_t hal_soc_hdl)
  1211. {
  1212. return WBM_IDLE_SCATTER_BUF_SIZE;
  1213. }
  1214. /**
  1215. * hal_get_link_desc_size - Get the size of each link descriptor
  1216. *
  1217. * @hal_soc: Opaque HAL SOC handle
  1218. *
  1219. */
  1220. static inline uint32_t hal_get_link_desc_size(hal_soc_handle_t hal_soc_hdl)
  1221. {
  1222. struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
  1223. if (!hal_soc || !hal_soc->ops) {
  1224. qdf_print("Error: Invalid ops\n");
  1225. QDF_BUG(0);
  1226. return -EINVAL;
  1227. }
  1228. if (!hal_soc->ops->hal_get_link_desc_size) {
  1229. qdf_print("Error: Invalid function pointer\n");
  1230. QDF_BUG(0);
  1231. return -EINVAL;
  1232. }
  1233. return hal_soc->ops->hal_get_link_desc_size();
  1234. }
  1235. /**
  1236. * hal_get_link_desc_align - Get the required start address alignment for
  1237. * link descriptors
  1238. *
  1239. * @hal_soc: Opaque HAL SOC handle
  1240. *
  1241. */
  1242. static inline
  1243. uint32_t hal_get_link_desc_align(hal_soc_handle_t hal_soc_hdl)
  1244. {
  1245. return LINK_DESC_ALIGN;
  1246. }
  1247. /**
  1248. * hal_num_mpdus_per_link_desc - Get number of mpdus each link desc can hold
  1249. *
  1250. * @hal_soc: Opaque HAL SOC handle
  1251. *
  1252. */
  1253. static inline
  1254. uint32_t hal_num_mpdus_per_link_desc(hal_soc_handle_t hal_soc_hdl)
  1255. {
  1256. return NUM_MPDUS_PER_LINK_DESC;
  1257. }
  1258. /**
  1259. * hal_num_msdus_per_link_desc - Get number of msdus each link desc can hold
  1260. *
  1261. * @hal_soc: Opaque HAL SOC handle
  1262. *
  1263. */
  1264. static inline
  1265. uint32_t hal_num_msdus_per_link_desc(hal_soc_handle_t hal_soc_hdl)
  1266. {
  1267. return NUM_MSDUS_PER_LINK_DESC;
  1268. }
  1269. /**
  1270. * hal_num_mpdu_links_per_queue_desc - Get number of mpdu links each queue
  1271. * descriptor can hold
  1272. *
  1273. * @hal_soc: Opaque HAL SOC handle
  1274. *
  1275. */
  1276. static inline
  1277. uint32_t hal_num_mpdu_links_per_queue_desc(hal_soc_handle_t hal_soc_hdl)
  1278. {
  1279. return NUM_MPDU_LINKS_PER_QUEUE_DESC;
  1280. }
  1281. /**
  1282. * hal_idle_list_scatter_buf_num_entries - Get the number of link desc entries
  1283. * that the given buffer size
  1284. *
  1285. * @hal_soc: Opaque HAL SOC handle
  1286. * @scatter_buf_size: Size of scatter buffer
  1287. *
  1288. */
  1289. static inline
  1290. uint32_t hal_idle_scatter_buf_num_entries(hal_soc_handle_t hal_soc_hdl,
  1291. uint32_t scatter_buf_size)
  1292. {
  1293. return (scatter_buf_size - WBM_IDLE_SCATTER_BUF_NEXT_PTR_SIZE) /
  1294. hal_srng_get_entrysize(hal_soc_hdl, WBM_IDLE_LINK);
  1295. }
  1296. /**
  1297. * hal_idle_list_num_scatter_bufs - Get the number of sctater buffer
  1298. * each given buffer size
  1299. *
  1300. * @hal_soc: Opaque HAL SOC handle
  1301. * @total_mem: size of memory to be scattered
  1302. * @scatter_buf_size: Size of scatter buffer
  1303. *
  1304. */
  1305. static inline
  1306. uint32_t hal_idle_list_num_scatter_bufs(hal_soc_handle_t hal_soc_hdl,
  1307. uint32_t total_mem,
  1308. uint32_t scatter_buf_size)
  1309. {
  1310. uint8_t rem = (total_mem % (scatter_buf_size -
  1311. WBM_IDLE_SCATTER_BUF_NEXT_PTR_SIZE)) ? 1 : 0;
  1312. uint32_t num_scatter_bufs = (total_mem / (scatter_buf_size -
  1313. WBM_IDLE_SCATTER_BUF_NEXT_PTR_SIZE)) + rem;
  1314. return num_scatter_bufs;
  1315. }
  1316. enum hal_pn_type {
  1317. HAL_PN_NONE,
  1318. HAL_PN_WPA,
  1319. HAL_PN_WAPI_EVEN,
  1320. HAL_PN_WAPI_UNEVEN,
  1321. };
  1322. #define HAL_RX_MAX_BA_WINDOW 256
  1323. /**
  1324. * hal_get_reo_qdesc_align - Get start address alignment for reo
  1325. * queue descriptors
  1326. *
  1327. * @hal_soc: Opaque HAL SOC handle
  1328. *
  1329. */
  1330. static inline
  1331. uint32_t hal_get_reo_qdesc_align(hal_soc_handle_t hal_soc_hdl)
  1332. {
  1333. return REO_QUEUE_DESC_ALIGN;
  1334. }
  1335. /**
  1336. * hal_reo_qdesc_setup - Setup HW REO queue descriptor
  1337. *
  1338. * @hal_soc: Opaque HAL SOC handle
  1339. * @ba_window_size: BlockAck window size
  1340. * @start_seq: Starting sequence number
  1341. * @hw_qdesc_vaddr: Virtual address of REO queue descriptor memory
  1342. * @hw_qdesc_paddr: Physical address of REO queue descriptor memory
  1343. * @pn_type: PN type (one of the types defined in 'enum hal_pn_type')
  1344. *
  1345. */
  1346. void hal_reo_qdesc_setup(hal_soc_handle_t hal_soc_hdl,
  1347. int tid, uint32_t ba_window_size,
  1348. uint32_t start_seq, void *hw_qdesc_vaddr,
  1349. qdf_dma_addr_t hw_qdesc_paddr,
  1350. int pn_type);
  1351. /**
  1352. * hal_srng_get_hp_addr - Get head pointer physical address
  1353. *
  1354. * @hal_soc: Opaque HAL SOC handle
  1355. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  1356. *
  1357. */
  1358. static inline qdf_dma_addr_t
  1359. hal_srng_get_hp_addr(void *hal_soc,
  1360. hal_ring_handle_t hal_ring_hdl)
  1361. {
  1362. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1363. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  1364. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  1365. return hal->shadow_wrptr_mem_paddr +
  1366. ((unsigned long)(srng->u.src_ring.hp_addr) -
  1367. (unsigned long)(hal->shadow_wrptr_mem_vaddr));
  1368. } else {
  1369. return hal->shadow_rdptr_mem_paddr +
  1370. ((unsigned long)(srng->u.dst_ring.hp_addr) -
  1371. (unsigned long)(hal->shadow_rdptr_mem_vaddr));
  1372. }
  1373. }
  1374. /**
  1375. * hal_srng_get_tp_addr - Get tail pointer physical address
  1376. *
  1377. * @hal_soc: Opaque HAL SOC handle
  1378. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  1379. *
  1380. */
  1381. static inline qdf_dma_addr_t
  1382. hal_srng_get_tp_addr(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  1383. {
  1384. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1385. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  1386. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  1387. return hal->shadow_rdptr_mem_paddr +
  1388. ((unsigned long)(srng->u.src_ring.tp_addr) -
  1389. (unsigned long)(hal->shadow_rdptr_mem_vaddr));
  1390. } else {
  1391. return hal->shadow_wrptr_mem_paddr +
  1392. ((unsigned long)(srng->u.dst_ring.tp_addr) -
  1393. (unsigned long)(hal->shadow_wrptr_mem_vaddr));
  1394. }
  1395. }
  1396. /**
  1397. * hal_srng_get_num_entries - Get total entries in the HAL Srng
  1398. *
  1399. * @hal_soc: Opaque HAL SOC handle
  1400. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  1401. *
  1402. * Return: total number of entries in hal ring
  1403. */
  1404. static inline
  1405. uint32_t hal_srng_get_num_entries(hal_soc_handle_t hal_soc_hdl,
  1406. hal_ring_handle_t hal_ring_hdl)
  1407. {
  1408. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1409. return srng->num_entries;
  1410. }
  1411. /**
  1412. * hal_get_srng_params - Retrieve SRNG parameters for a given ring from HAL
  1413. *
  1414. * @hal_soc: Opaque HAL SOC handle
  1415. * @hal_ring_hdl: Ring pointer (Source or Destination ring)
  1416. * @ring_params: SRNG parameters will be returned through this structure
  1417. */
  1418. void hal_get_srng_params(hal_soc_handle_t hal_soc_hdl,
  1419. hal_ring_handle_t hal_ring_hdl,
  1420. struct hal_srng_params *ring_params);
  1421. /**
  1422. * hal_mem_info - Retrieve hal memory base address
  1423. *
  1424. * @hal_soc: Opaque HAL SOC handle
  1425. * @mem: pointer to structure to be updated with hal mem info
  1426. */
  1427. void hal_get_meminfo(hal_soc_handle_t hal_soc_hdl, struct hal_mem_info *mem);
  1428. /**
  1429. * hal_get_target_type - Return target type
  1430. *
  1431. * @hal_soc: Opaque HAL SOC handle
  1432. */
  1433. uint32_t hal_get_target_type(hal_soc_handle_t hal_soc_hdl);
  1434. /**
  1435. * hal_get_ba_aging_timeout - Retrieve BA aging timeout
  1436. *
  1437. * @hal_soc: Opaque HAL SOC handle
  1438. * @ac: Access category
  1439. * @value: timeout duration in millisec
  1440. */
  1441. void hal_get_ba_aging_timeout(hal_soc_handle_t hal_soc_hdl, uint8_t ac,
  1442. uint32_t *value);
  1443. /**
  1444. * hal_set_aging_timeout - Set BA aging timeout
  1445. *
  1446. * @hal_soc: Opaque HAL SOC handle
  1447. * @ac: Access category in millisec
  1448. * @value: timeout duration value
  1449. */
  1450. void hal_set_ba_aging_timeout(hal_soc_handle_t hal_soc_hdl, uint8_t ac,
  1451. uint32_t value);
  1452. /**
  1453. * hal_srng_dst_hw_init - Private function to initialize SRNG
  1454. * destination ring HW
  1455. * @hal_soc: HAL SOC handle
  1456. * @srng: SRNG ring pointer
  1457. */
  1458. static inline void hal_srng_dst_hw_init(struct hal_soc *hal,
  1459. struct hal_srng *srng)
  1460. {
  1461. hal->ops->hal_srng_dst_hw_init(hal, srng);
  1462. }
  1463. /**
  1464. * hal_srng_src_hw_init - Private function to initialize SRNG
  1465. * source ring HW
  1466. * @hal_soc: HAL SOC handle
  1467. * @srng: SRNG ring pointer
  1468. */
  1469. static inline void hal_srng_src_hw_init(struct hal_soc *hal,
  1470. struct hal_srng *srng)
  1471. {
  1472. hal->ops->hal_srng_src_hw_init(hal, srng);
  1473. }
  1474. /**
  1475. * hal_get_hw_hptp() - Get HW head and tail pointer value for any ring
  1476. * @hal_soc: Opaque HAL SOC handle
  1477. * @hal_ring_hdl: Source ring pointer
  1478. * @headp: Head Pointer
  1479. * @tailp: Tail Pointer
  1480. * @ring_type: Ring
  1481. *
  1482. * Return: Update tail pointer and head pointer in arguments.
  1483. */
  1484. static inline
  1485. void hal_get_hw_hptp(hal_soc_handle_t hal_soc_hdl,
  1486. hal_ring_handle_t hal_ring_hdl,
  1487. uint32_t *headp, uint32_t *tailp,
  1488. uint8_t ring_type)
  1489. {
  1490. struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
  1491. hal_soc->ops->hal_get_hw_hptp(hal_soc, hal_ring_hdl,
  1492. headp, tailp, ring_type);
  1493. }
  1494. /**
  1495. * hal_reo_setup - Initialize HW REO block
  1496. *
  1497. * @hal_soc: Opaque HAL SOC handle
  1498. * @reo_params: parameters needed by HAL for REO config
  1499. */
  1500. static inline void hal_reo_setup(hal_soc_handle_t hal_soc_hdl,
  1501. void *reoparams)
  1502. {
  1503. struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
  1504. hal_soc->ops->hal_reo_setup(hal_soc, reoparams);
  1505. }
  1506. /**
  1507. * hal_setup_link_idle_list - Setup scattered idle list using the
  1508. * buffer list provided
  1509. *
  1510. * @hal_soc: Opaque HAL SOC handle
  1511. * @scatter_bufs_base_paddr: Array of physical base addresses
  1512. * @scatter_bufs_base_vaddr: Array of virtual base addresses
  1513. * @num_scatter_bufs: Number of scatter buffers in the above lists
  1514. * @scatter_buf_size: Size of each scatter buffer
  1515. * @last_buf_end_offset: Offset to the last entry
  1516. * @num_entries: Total entries of all scatter bufs
  1517. *
  1518. */
  1519. static inline
  1520. void hal_setup_link_idle_list(hal_soc_handle_t hal_soc_hdl,
  1521. qdf_dma_addr_t scatter_bufs_base_paddr[],
  1522. void *scatter_bufs_base_vaddr[],
  1523. uint32_t num_scatter_bufs,
  1524. uint32_t scatter_buf_size,
  1525. uint32_t last_buf_end_offset,
  1526. uint32_t num_entries)
  1527. {
  1528. struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
  1529. hal_soc->ops->hal_setup_link_idle_list(hal_soc, scatter_bufs_base_paddr,
  1530. scatter_bufs_base_vaddr, num_scatter_bufs,
  1531. scatter_buf_size, last_buf_end_offset,
  1532. num_entries);
  1533. }
  1534. /**
  1535. * hal_srng_dump_ring_desc() - Dump ring descriptor info
  1536. *
  1537. * @hal_soc: Opaque HAL SOC handle
  1538. * @hal_ring_hdl: Source ring pointer
  1539. * @ring_desc: Opaque ring descriptor handle
  1540. */
  1541. static inline void hal_srng_dump_ring_desc(hal_soc_handle_t hal_soc_hdl,
  1542. hal_ring_handle_t hal_ring_hdl,
  1543. hal_ring_desc_t ring_desc)
  1544. {
  1545. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1546. QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO_HIGH,
  1547. ring_desc, (srng->entry_size << 2));
  1548. }
  1549. /**
  1550. * hal_srng_dump_ring() - Dump last 128 descs of the ring
  1551. *
  1552. * @hal_soc: Opaque HAL SOC handle
  1553. * @hal_ring_hdl: Source ring pointer
  1554. */
  1555. static inline void hal_srng_dump_ring(hal_soc_handle_t hal_soc_hdl,
  1556. hal_ring_handle_t hal_ring_hdl)
  1557. {
  1558. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1559. uint32_t *desc;
  1560. uint32_t tp, i;
  1561. tp = srng->u.dst_ring.tp;
  1562. for (i = 0; i < 128; i++) {
  1563. if (!tp)
  1564. tp = srng->ring_size;
  1565. desc = &srng->ring_base_vaddr[tp - srng->entry_size];
  1566. QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_DP,
  1567. QDF_TRACE_LEVEL_DEBUG,
  1568. desc, (srng->entry_size << 2));
  1569. tp -= srng->entry_size;
  1570. }
  1571. }
  1572. /*
  1573. * hal_rxdma_desc_to_hal_ring_desc - API to convert rxdma ring desc
  1574. * to opaque dp_ring desc type
  1575. * @ring_desc - rxdma ring desc
  1576. *
  1577. * Return: hal_rxdma_desc_t type
  1578. */
  1579. static inline
  1580. hal_ring_desc_t hal_rxdma_desc_to_hal_ring_desc(hal_rxdma_desc_t ring_desc)
  1581. {
  1582. return (hal_ring_desc_t)ring_desc;
  1583. }
  1584. /**
  1585. * hal_srng_set_event() - Set hal_srng event
  1586. * @hal_ring_hdl: Source ring pointer
  1587. * @event: SRNG ring event
  1588. *
  1589. * Return: None
  1590. */
  1591. static inline void hal_srng_set_event(hal_ring_handle_t hal_ring_hdl, int event)
  1592. {
  1593. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1594. qdf_atomic_set_bit(event, &srng->srng_event);
  1595. }
  1596. /**
  1597. * hal_srng_clear_event() - Clear hal_srng event
  1598. * @hal_ring_hdl: Source ring pointer
  1599. * @event: SRNG ring event
  1600. *
  1601. * Return: None
  1602. */
  1603. static inline
  1604. void hal_srng_clear_event(hal_ring_handle_t hal_ring_hdl, int event)
  1605. {
  1606. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1607. qdf_atomic_clear_bit(event, &srng->srng_event);
  1608. }
  1609. /**
  1610. * hal_srng_get_clear_event() - Clear srng event and return old value
  1611. * @hal_ring_hdl: Source ring pointer
  1612. * @event: SRNG ring event
  1613. *
  1614. * Return: Return old event value
  1615. */
  1616. static inline
  1617. int hal_srng_get_clear_event(hal_ring_handle_t hal_ring_hdl, int event)
  1618. {
  1619. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1620. return qdf_atomic_test_and_clear_bit(event, &srng->srng_event);
  1621. }
  1622. /**
  1623. * hal_srng_set_flush_last_ts() - Record last flush time stamp
  1624. * @hal_ring_hdl: Source ring pointer
  1625. *
  1626. * Return: None
  1627. */
  1628. static inline void hal_srng_set_flush_last_ts(hal_ring_handle_t hal_ring_hdl)
  1629. {
  1630. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1631. srng->last_flush_ts = qdf_get_log_timestamp();
  1632. }
  1633. /**
  1634. * hal_srng_inc_flush_cnt() - Increment flush counter
  1635. * @hal_ring_hdl: Source ring pointer
  1636. *
  1637. * Return: None
  1638. */
  1639. static inline void hal_srng_inc_flush_cnt(hal_ring_handle_t hal_ring_hdl)
  1640. {
  1641. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  1642. srng->flush_count++;
  1643. }
  1644. #endif /* _HAL_APIH_ */