wlan_cfg.c 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379
  1. /*
  2. * Copyright (c) 2016-2020 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #if defined(CONFIG_HL_SUPPORT)
  19. #include "wlan_tgt_def_config_hl.h"
  20. #else
  21. #include "wlan_tgt_def_config.h"
  22. #endif
  23. #include "qdf_trace.h"
  24. #include "qdf_mem.h"
  25. #include <cdp_txrx_ops.h>
  26. #include "wlan_cfg.h"
  27. #include "cfg_ucfg_api.h"
  28. #include "hal_api.h"
  29. #include "dp_types.h"
  30. /*
  31. * FIX THIS -
  32. * For now, all these configuration parameters are hardcoded.
  33. * Many of these should actually be coming from dts file/ini file
  34. */
  35. /*
  36. * The max allowed size for tx comp ring is 8191.
  37. * This is limitted by h/w ring max size.
  38. * As this is not a power of 2 it does not work with nss offload so the
  39. * nearest available size which is power of 2 is 4096 chosen for nss
  40. */
  41. #define WLAN_CFG_TX_RING_MASK_0 0x1
  42. #define WLAN_CFG_TX_RING_MASK_1 0x2
  43. #define WLAN_CFG_TX_RING_MASK_2 0x4
  44. #define WLAN_CFG_TX_RING_MASK_3 0x0
  45. #define WLAN_CFG_RX_RING_MASK_0 0x1
  46. #define WLAN_CFG_RX_RING_MASK_1 0x2
  47. #define WLAN_CFG_RX_RING_MASK_2 0x4
  48. #define WLAN_CFG_RX_RING_MASK_3 0x8
  49. #define WLAN_CFG_RX_MON_RING_MASK_0 0x1
  50. #define WLAN_CFG_RX_MON_RING_MASK_1 0x2
  51. #define WLAN_CFG_RX_MON_RING_MASK_2 0x4
  52. #define WLAN_CFG_RX_MON_RING_MASK_3 0x0
  53. #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 0x1
  54. #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 0x2
  55. #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2 0x4
  56. #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 0x1
  57. #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 0x2
  58. #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2 0x4
  59. #define WLAN_CFG_RX_ERR_RING_MASK_0 0x1
  60. #define WLAN_CFG_RX_ERR_RING_MASK_1 0x0
  61. #define WLAN_CFG_RX_ERR_RING_MASK_2 0x0
  62. #define WLAN_CFG_RX_ERR_RING_MASK_3 0x0
  63. #define WLAN_CFG_RX_WBM_REL_RING_MASK_0 0x1
  64. #define WLAN_CFG_RX_WBM_REL_RING_MASK_1 0x0
  65. #define WLAN_CFG_RX_WBM_REL_RING_MASK_2 0x0
  66. #define WLAN_CFG_RX_WBM_REL_RING_MASK_3 0x0
  67. #define WLAN_CFG_REO_STATUS_RING_MASK_0 0x1
  68. #define WLAN_CFG_REO_STATUS_RING_MASK_1 0x0
  69. #define WLAN_CFG_REO_STATUS_RING_MASK_2 0x0
  70. #define WLAN_CFG_REO_STATUS_RING_MASK_3 0x0
  71. #define WLAN_CFG_RXDMA2HOST_RING_MASK_0 0x1
  72. #define WLAN_CFG_RXDMA2HOST_RING_MASK_1 0x2
  73. #define WLAN_CFG_RXDMA2HOST_RING_MASK_2 0x4
  74. #define WLAN_CFG_RXDMA2HOST_RING_MASK_3 0x0
  75. #define WLAN_CFG_HOST2RXDMA_RING_MASK_0 0x1
  76. #define WLAN_CFG_HOST2RXDMA_RING_MASK_1 0x2
  77. #define WLAN_CFG_HOST2RXDMA_RING_MASK_2 0x4
  78. #define WLAN_CFG_HOST2RXDMA_RING_MASK_3 0x0
  79. #if defined(WLAN_MAX_PDEVS) && (WLAN_MAX_PDEVS == 1)
  80. static const int tx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  81. WLAN_CFG_TX_RING_MASK_0, 0, 0, 0, 0, 0, 0};
  82. #ifndef IPA_OFFLOAD
  83. static const int rx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  84. 0, WLAN_CFG_RX_RING_MASK_0, WLAN_CFG_RX_RING_MASK_1, WLAN_CFG_RX_RING_MASK_2, WLAN_CFG_RX_RING_MASK_3, 0, 0};
  85. #else
  86. static const int rx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  87. 0, WLAN_CFG_RX_RING_MASK_0, WLAN_CFG_RX_RING_MASK_1, WLAN_CFG_RX_RING_MASK_2, 0, 0, 0};
  88. #endif
  89. static const int rx_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  90. 0, WLAN_CFG_RX_MON_RING_MASK_0, WLAN_CFG_RX_MON_RING_MASK_1, 0, 0, 0, 0};
  91. static const int host2rxdma_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  92. 0, 0, 0, 0, 0, 0, 0};
  93. static const int rxdma2host_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  94. 0, 0, 0, 0, 0, WLAN_CFG_RXDMA2HOST_RING_MASK_0, WLAN_CFG_RXDMA2HOST_RING_MASK_1};
  95. static const int host2rxdma_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  96. 0, 0, 0, 0, 0, 0, 0};
  97. static const int rxdma2host_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  98. 0, 0, 0, 0, 0, 0, 0};
  99. static const int rx_err_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  100. 0, 0, 0, 0, 0, 0, WLAN_CFG_RX_ERR_RING_MASK_0};
  101. static const int rx_wbm_rel_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  102. 0, 0, 0, 0, 0, 0, WLAN_CFG_RX_WBM_REL_RING_MASK_0};
  103. static const int reo_status_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  104. 0, 0, 0, 0, 0, 0, WLAN_CFG_REO_STATUS_RING_MASK_0};
  105. static const int tx_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  106. 0, 0, 0, 0, 0, 0, 0};
  107. static const int rx_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  108. 0, 0, 0, 0, 0, 0, 0};
  109. static const int rx_mon_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  110. 0, 0, 0, 0, 0, 0, 0};
  111. static const int host2rxdma_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  112. 0, 0, 0, 0, 0, 0, 0};
  113. static const int rxdma2host_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  114. 0, 0, 0, 0, 0, 0, 0};
  115. static const int host2rxdma_mon_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  116. 0, 0, 0, 0, 0, 0, 0};
  117. static const int rxdma2host_mon_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  118. 0, 0, 0, 0, 0, 0, 0};
  119. static const int rx_err_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  120. 0, 0, 0, 0, 0, 0, 0};
  121. static const int rx_wbm_rel_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  122. 0, 0, 0, 0, 0, 0, 0};
  123. static const int reo_status_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  124. 0, 0, 0, 0, 0, 0, 0};
  125. #else
  126. static const int tx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  127. WLAN_CFG_TX_RING_MASK_0,
  128. WLAN_CFG_TX_RING_MASK_1,
  129. WLAN_CFG_TX_RING_MASK_2,
  130. WLAN_CFG_TX_RING_MASK_3};
  131. static const int rx_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  132. 0,
  133. 0,
  134. 0,
  135. 0,
  136. WLAN_CFG_RX_RING_MASK_0,
  137. WLAN_CFG_RX_RING_MASK_1,
  138. WLAN_CFG_RX_RING_MASK_2,
  139. WLAN_CFG_RX_RING_MASK_3};
  140. static const int rx_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  141. 0,
  142. 0,
  143. 0,
  144. WLAN_CFG_RX_MON_RING_MASK_0,
  145. WLAN_CFG_RX_MON_RING_MASK_1,
  146. WLAN_CFG_RX_MON_RING_MASK_2};
  147. static const int host2rxdma_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  148. 0,
  149. 0,
  150. 0,
  151. WLAN_CFG_HOST2RXDMA_RING_MASK_0,
  152. WLAN_CFG_HOST2RXDMA_RING_MASK_1,
  153. WLAN_CFG_HOST2RXDMA_RING_MASK_2,
  154. WLAN_CFG_HOST2RXDMA_RING_MASK_3};
  155. static const int rxdma2host_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  156. 0,
  157. 0,
  158. 0,
  159. WLAN_CFG_RXDMA2HOST_RING_MASK_0,
  160. WLAN_CFG_RXDMA2HOST_RING_MASK_1,
  161. WLAN_CFG_RXDMA2HOST_RING_MASK_2,
  162. WLAN_CFG_RXDMA2HOST_RING_MASK_3};
  163. static const int host2rxdma_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  164. 0,
  165. 0,
  166. 0,
  167. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
  168. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
  169. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2};
  170. static const int rxdma2host_mon_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  171. 0,
  172. 0,
  173. 0,
  174. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
  175. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
  176. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2};
  177. static const int rx_err_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  178. 0,
  179. 0,
  180. 0,
  181. WLAN_CFG_RX_ERR_RING_MASK_0,
  182. WLAN_CFG_RX_ERR_RING_MASK_1,
  183. WLAN_CFG_RX_ERR_RING_MASK_2,
  184. WLAN_CFG_RX_ERR_RING_MASK_3};
  185. static const int rx_wbm_rel_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  186. 0,
  187. 0,
  188. 0,
  189. WLAN_CFG_RX_WBM_REL_RING_MASK_0,
  190. WLAN_CFG_RX_WBM_REL_RING_MASK_1,
  191. WLAN_CFG_RX_WBM_REL_RING_MASK_2,
  192. WLAN_CFG_RX_WBM_REL_RING_MASK_3};
  193. static const int reo_status_ring_mask_msi[WLAN_CFG_INT_NUM_CONTEXTS] = {
  194. 0,
  195. 0,
  196. 0,
  197. WLAN_CFG_REO_STATUS_RING_MASK_0,
  198. WLAN_CFG_REO_STATUS_RING_MASK_1,
  199. WLAN_CFG_REO_STATUS_RING_MASK_2,
  200. WLAN_CFG_REO_STATUS_RING_MASK_3};
  201. static const int tx_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  202. WLAN_CFG_TX_RING_MASK_0,
  203. WLAN_CFG_TX_RING_MASK_1,
  204. WLAN_CFG_TX_RING_MASK_2,
  205. WLAN_CFG_TX_RING_MASK_3};
  206. static const int rx_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  207. 0,
  208. 0,
  209. 0,
  210. 0,
  211. 0,
  212. 0,
  213. 0,
  214. WLAN_CFG_RX_RING_MASK_0,
  215. WLAN_CFG_RX_RING_MASK_1,
  216. WLAN_CFG_RX_RING_MASK_2,
  217. WLAN_CFG_RX_RING_MASK_3};
  218. static const int rx_mon_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  219. 0,
  220. 0,
  221. 0,
  222. 0,
  223. WLAN_CFG_RX_MON_RING_MASK_0,
  224. WLAN_CFG_RX_MON_RING_MASK_1,
  225. WLAN_CFG_RX_MON_RING_MASK_2};
  226. static const int host2rxdma_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  227. WLAN_CFG_HOST2RXDMA_RING_MASK_0,
  228. WLAN_CFG_HOST2RXDMA_RING_MASK_1,
  229. WLAN_CFG_HOST2RXDMA_RING_MASK_2,
  230. WLAN_CFG_HOST2RXDMA_RING_MASK_3};
  231. static const int rxdma2host_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  232. WLAN_CFG_RXDMA2HOST_RING_MASK_0,
  233. WLAN_CFG_RXDMA2HOST_RING_MASK_1,
  234. WLAN_CFG_RXDMA2HOST_RING_MASK_2,
  235. WLAN_CFG_RXDMA2HOST_RING_MASK_3};
  236. static const int host2rxdma_mon_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  237. 0,
  238. 0,
  239. 0,
  240. 0,
  241. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
  242. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
  243. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2};
  244. static const int rxdma2host_mon_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  245. 0,
  246. 0,
  247. 0,
  248. 0,
  249. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
  250. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
  251. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2};
  252. static const int rx_err_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  253. WLAN_CFG_RX_ERR_RING_MASK_0,
  254. WLAN_CFG_RX_ERR_RING_MASK_1,
  255. WLAN_CFG_RX_ERR_RING_MASK_2,
  256. WLAN_CFG_RX_ERR_RING_MASK_3};
  257. static const int rx_wbm_rel_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  258. WLAN_CFG_RX_WBM_REL_RING_MASK_0,
  259. WLAN_CFG_RX_WBM_REL_RING_MASK_1,
  260. WLAN_CFG_RX_WBM_REL_RING_MASK_2,
  261. WLAN_CFG_RX_WBM_REL_RING_MASK_3};
  262. static const int reo_status_ring_mask_integrated[WLAN_CFG_INT_NUM_CONTEXTS] = {
  263. WLAN_CFG_REO_STATUS_RING_MASK_0,
  264. WLAN_CFG_REO_STATUS_RING_MASK_1,
  265. WLAN_CFG_REO_STATUS_RING_MASK_2,
  266. WLAN_CFG_REO_STATUS_RING_MASK_3};
  267. #endif /* MAX_PDEV_CNT == 1 */
  268. /**
  269. * g_wlan_srng_cfg[] - Per ring_type specific configuration
  270. *
  271. */
  272. struct wlan_srng_cfg g_wlan_srng_cfg[MAX_RING_TYPES];
  273. /* REO_DST ring configuration */
  274. struct wlan_srng_cfg wlan_srng_reo_cfg = {
  275. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_REO_RING,
  276. .batch_count_threshold = 0,
  277. .low_threshold = 0,
  278. };
  279. /* WBM2SW_RELEASE ring configuration */
  280. struct wlan_srng_cfg wlan_srng_wbm_release_cfg = {
  281. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_WBM_RELEASE_RING,
  282. .batch_count_threshold = 0,
  283. .low_threshold = 0,
  284. };
  285. /* RXDMA_BUF ring configuration */
  286. struct wlan_srng_cfg wlan_srng_rxdma_buf_cfg = {
  287. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
  288. .batch_count_threshold = 0,
  289. .low_threshold = WLAN_CFG_RXDMA_REFILL_RING_SIZE >> 3,
  290. };
  291. /* RXDMA_MONITOR_BUF ring configuration */
  292. struct wlan_srng_cfg wlan_srng_rxdma_monitor_buf_cfg = {
  293. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
  294. .batch_count_threshold = 0,
  295. .low_threshold = WLAN_CFG_RXDMA_MONITOR_BUF_RING_SIZE >> 3,
  296. };
  297. /* RXDMA_MONITOR_STATUS ring configuration */
  298. struct wlan_srng_cfg wlan_srng_rxdma_monitor_status_cfg = {
  299. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
  300. .batch_count_threshold = 0,
  301. .low_threshold = WLAN_CFG_RXDMA_MONITOR_STATUS_RING_SIZE >> 3,
  302. };
  303. /* DEFAULT_CONFIG ring configuration */
  304. struct wlan_srng_cfg wlan_srng_default_cfg = {
  305. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_OTHER,
  306. .batch_count_threshold = WLAN_CFG_INT_BATCH_THRESHOLD_OTHER,
  307. .low_threshold = 0,
  308. };
  309. void wlan_set_srng_cfg(struct wlan_srng_cfg **wlan_cfg)
  310. {
  311. g_wlan_srng_cfg[REO_DST] = wlan_srng_reo_cfg;
  312. g_wlan_srng_cfg[WBM2SW_RELEASE] = wlan_srng_wbm_release_cfg;
  313. g_wlan_srng_cfg[REO_EXCEPTION] = wlan_srng_default_cfg;
  314. g_wlan_srng_cfg[REO_REINJECT] = wlan_srng_default_cfg;
  315. g_wlan_srng_cfg[REO_CMD] = wlan_srng_default_cfg;
  316. g_wlan_srng_cfg[REO_STATUS] = wlan_srng_default_cfg;
  317. g_wlan_srng_cfg[TCL_DATA] = wlan_srng_default_cfg;
  318. g_wlan_srng_cfg[TCL_CMD_CREDIT] = wlan_srng_default_cfg;
  319. g_wlan_srng_cfg[TCL_STATUS] = wlan_srng_default_cfg;
  320. g_wlan_srng_cfg[WBM_IDLE_LINK] = wlan_srng_default_cfg;
  321. g_wlan_srng_cfg[SW2WBM_RELEASE] = wlan_srng_default_cfg;
  322. g_wlan_srng_cfg[RXDMA_BUF] = wlan_srng_rxdma_buf_cfg;
  323. g_wlan_srng_cfg[RXDMA_DST] = wlan_srng_default_cfg;
  324. g_wlan_srng_cfg[RXDMA_MONITOR_BUF] =
  325. wlan_srng_rxdma_monitor_buf_cfg;
  326. g_wlan_srng_cfg[RXDMA_MONITOR_STATUS] =
  327. wlan_srng_rxdma_monitor_status_cfg;
  328. g_wlan_srng_cfg[RXDMA_MONITOR_DST] = wlan_srng_default_cfg;
  329. g_wlan_srng_cfg[RXDMA_MONITOR_DESC] = wlan_srng_default_cfg;
  330. g_wlan_srng_cfg[DIR_BUF_RX_DMA_SRC] = wlan_srng_default_cfg;
  331. #ifdef WLAN_FEATURE_CIF_CFR
  332. g_wlan_srng_cfg[WIFI_POS_SRC] = wlan_srng_default_cfg;
  333. #endif
  334. *wlan_cfg = g_wlan_srng_cfg;
  335. }
  336. static const uint8_t rx_fst_toeplitz_key[WLAN_CFG_RX_FST_TOEPLITZ_KEYLEN] = {
  337. 0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2,
  338. 0x41, 0x67, 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0,
  339. 0xd0, 0xca, 0x2b, 0xcb, 0xae, 0x7b, 0x30, 0xb4,
  340. 0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30, 0xf2, 0x0c,
  341. 0x6a, 0x42, 0xb7, 0x3b, 0xbe, 0xac, 0x01, 0xfa
  342. };
  343. void wlan_cfg_fill_interrupt_mask(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
  344. int interrupt_mode,
  345. bool is_monitor_mode) {
  346. int i = 0;
  347. if (interrupt_mode == DP_INTR_INTEGRATED) {
  348. for (i = 0; i < WLAN_CFG_INT_NUM_CONTEXTS; i++) {
  349. wlan_cfg_ctx->int_tx_ring_mask[i] =
  350. tx_ring_mask_integrated[i];
  351. wlan_cfg_ctx->int_rx_ring_mask[i] =
  352. rx_ring_mask_integrated[i];
  353. wlan_cfg_ctx->int_rx_mon_ring_mask[i] =
  354. rx_mon_ring_mask_integrated[i];
  355. wlan_cfg_ctx->int_rx_err_ring_mask[i] =
  356. rx_err_ring_mask_integrated[i];
  357. wlan_cfg_ctx->int_rx_wbm_rel_ring_mask[i] =
  358. rx_wbm_rel_ring_mask_integrated[i];
  359. wlan_cfg_ctx->int_reo_status_ring_mask[i] =
  360. reo_status_ring_mask_integrated[i];
  361. wlan_cfg_ctx->int_rxdma2host_ring_mask[i] =
  362. rxdma2host_ring_mask_integrated[i];
  363. wlan_cfg_ctx->int_host2rxdma_ring_mask[i] =
  364. host2rxdma_ring_mask_integrated[i];
  365. wlan_cfg_ctx->int_host2rxdma_mon_ring_mask[i] =
  366. host2rxdma_mon_ring_mask_integrated[i];
  367. wlan_cfg_ctx->int_rxdma2host_mon_ring_mask[i] =
  368. rxdma2host_mon_ring_mask_integrated[i];
  369. }
  370. } else if (interrupt_mode == DP_INTR_MSI || interrupt_mode ==
  371. DP_INTR_POLL) {
  372. for (i = 0; i < WLAN_CFG_INT_NUM_CONTEXTS; i++) {
  373. wlan_cfg_ctx->int_tx_ring_mask[i] = tx_ring_mask_msi[i];
  374. wlan_cfg_ctx->int_rx_mon_ring_mask[i] =
  375. rx_mon_ring_mask_msi[i];
  376. wlan_cfg_ctx->int_rx_err_ring_mask[i] =
  377. rx_err_ring_mask_msi[i];
  378. wlan_cfg_ctx->int_rx_wbm_rel_ring_mask[i] =
  379. rx_wbm_rel_ring_mask_msi[i];
  380. wlan_cfg_ctx->int_reo_status_ring_mask[i] =
  381. reo_status_ring_mask_msi[i];
  382. if (is_monitor_mode) {
  383. wlan_cfg_ctx->int_rx_ring_mask[i] = 0;
  384. wlan_cfg_ctx->int_rxdma2host_ring_mask[i] = 0;
  385. } else {
  386. wlan_cfg_ctx->int_rx_ring_mask[i] =
  387. rx_ring_mask_msi[i];
  388. wlan_cfg_ctx->int_rxdma2host_ring_mask[i] =
  389. rxdma2host_ring_mask_msi[i];
  390. }
  391. wlan_cfg_ctx->int_host2rxdma_ring_mask[i] =
  392. host2rxdma_ring_mask_msi[i];
  393. wlan_cfg_ctx->int_host2rxdma_mon_ring_mask[i] =
  394. host2rxdma_mon_ring_mask_msi[i];
  395. wlan_cfg_ctx->int_rxdma2host_mon_ring_mask[i] =
  396. rxdma2host_mon_ring_mask_msi[i];
  397. }
  398. } else {
  399. qdf_err("Interrupt mode %d", interrupt_mode);
  400. }
  401. }
  402. /**
  403. * wlan_cfg_soc_attach() - Allocate and prepare SoC configuration
  404. * @psoc - Object manager psoc
  405. * Return: wlan_cfg_ctx - Handle to Configuration context
  406. */
  407. struct wlan_cfg_dp_soc_ctxt *
  408. wlan_cfg_soc_attach(struct cdp_ctrl_objmgr_psoc *psoc)
  409. {
  410. struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx =
  411. qdf_mem_malloc(sizeof(struct wlan_cfg_dp_soc_ctxt));
  412. if (!wlan_cfg_ctx)
  413. return NULL;
  414. wlan_cfg_ctx->rxdma1_enable = WLAN_CFG_RXDMA1_ENABLE;
  415. wlan_cfg_ctx->num_int_ctxts = WLAN_CFG_INT_NUM_CONTEXTS;
  416. wlan_cfg_ctx->max_clients = cfg_get(psoc, CFG_DP_MAX_CLIENTS);
  417. wlan_cfg_ctx->max_alloc_size = cfg_get(psoc, CFG_DP_MAX_ALLOC_SIZE);
  418. wlan_cfg_ctx->per_pdev_tx_ring = cfg_get(psoc, CFG_DP_PDEV_TX_RING);
  419. wlan_cfg_ctx->num_tcl_data_rings = cfg_get(psoc, CFG_DP_TCL_DATA_RINGS);
  420. wlan_cfg_ctx->per_pdev_rx_ring = cfg_get(psoc, CFG_DP_PDEV_RX_RING);
  421. wlan_cfg_ctx->per_pdev_lmac_ring = cfg_get(psoc, CFG_DP_PDEV_LMAC_RING);
  422. wlan_cfg_ctx->num_reo_dest_rings = cfg_get(psoc, CFG_DP_REO_DEST_RINGS);
  423. wlan_cfg_ctx->num_tx_desc_pool = MAX_TXDESC_POOLS;
  424. wlan_cfg_ctx->num_tx_ext_desc_pool = cfg_get(psoc,
  425. CFG_DP_TX_EXT_DESC_POOLS);
  426. wlan_cfg_ctx->num_tx_desc = cfg_get(psoc, CFG_DP_TX_DESC);
  427. wlan_cfg_ctx->min_tx_desc = WLAN_CFG_NUM_TX_DESC_MIN;
  428. wlan_cfg_ctx->num_tx_ext_desc = cfg_get(psoc, CFG_DP_TX_EXT_DESC);
  429. wlan_cfg_ctx->htt_packet_type = cfg_get(psoc, CFG_DP_HTT_PACKET_TYPE);
  430. wlan_cfg_ctx->max_peer_id = cfg_get(psoc, CFG_DP_MAX_PEER_ID);
  431. wlan_cfg_ctx->tx_ring_size = cfg_get(psoc, CFG_DP_TX_RING_SIZE);
  432. wlan_cfg_ctx->tx_comp_ring_size = cfg_get(psoc,
  433. CFG_DP_TX_COMPL_RING_SIZE);
  434. wlan_cfg_ctx->tx_comp_ring_size_nss =
  435. cfg_get(psoc, CFG_DP_NSS_COMP_RING_SIZE);
  436. wlan_cfg_ctx->int_batch_threshold_tx =
  437. cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_TX);
  438. wlan_cfg_ctx->int_timer_threshold_tx =
  439. cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_TX);
  440. wlan_cfg_ctx->int_batch_threshold_rx =
  441. cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_RX);
  442. wlan_cfg_ctx->int_timer_threshold_rx =
  443. cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_RX);
  444. wlan_cfg_ctx->int_batch_threshold_other =
  445. cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_OTHER);
  446. wlan_cfg_ctx->int_timer_threshold_other =
  447. cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_OTHER);
  448. wlan_cfg_ctx->pktlog_buffer_size =
  449. cfg_get(psoc, CFG_DP_PKTLOG_BUFFER_SIZE);
  450. /* This is default mapping and can be overridden by HW config
  451. * received from FW */
  452. wlan_cfg_set_hw_mac_idx(wlan_cfg_ctx, 0, 0);
  453. if (MAX_PDEV_CNT > 1)
  454. wlan_cfg_set_hw_mac_idx(wlan_cfg_ctx, 1, 2);
  455. if (MAX_PDEV_CNT > 2)
  456. wlan_cfg_set_hw_mac_idx(wlan_cfg_ctx, 2, 1);
  457. wlan_cfg_ctx->base_hw_macid = cfg_get(psoc, CFG_DP_BASE_HW_MAC_ID);
  458. wlan_cfg_ctx->rx_hash = cfg_get(psoc, CFG_DP_RX_HASH);
  459. wlan_cfg_ctx->tso_enabled = cfg_get(psoc, CFG_DP_TSO);
  460. wlan_cfg_ctx->lro_enabled = cfg_get(psoc, CFG_DP_LRO);
  461. wlan_cfg_ctx->sg_enabled = cfg_get(psoc, CFG_DP_SG);
  462. wlan_cfg_ctx->gro_enabled = cfg_get(psoc, CFG_DP_GRO);
  463. wlan_cfg_ctx->ol_tx_csum_enabled = cfg_get(psoc, CFG_DP_OL_TX_CSUM);
  464. wlan_cfg_ctx->ol_rx_csum_enabled = cfg_get(psoc, CFG_DP_OL_RX_CSUM);
  465. wlan_cfg_ctx->rawmode_enabled = cfg_get(psoc, CFG_DP_RAWMODE);
  466. wlan_cfg_ctx->peer_flow_ctrl_enabled =
  467. cfg_get(psoc, CFG_DP_PEER_FLOW_CTRL);
  468. wlan_cfg_ctx->napi_enabled = cfg_get(psoc, CFG_DP_NAPI);
  469. wlan_cfg_ctx->p2p_tcp_udp_checksumoffload =
  470. cfg_get(psoc, CFG_DP_P2P_TCP_UDP_CKSUM_OFFLOAD);
  471. wlan_cfg_ctx->nan_tcp_udp_checksumoffload =
  472. cfg_get(psoc, CFG_DP_NAN_TCP_UDP_CKSUM_OFFLOAD);
  473. wlan_cfg_ctx->tcp_udp_checksumoffload =
  474. cfg_get(psoc, CFG_DP_TCP_UDP_CKSUM_OFFLOAD);
  475. wlan_cfg_ctx->per_pkt_trace = cfg_get(psoc, CFG_DP_PER_PKT_LOGGING);
  476. wlan_cfg_ctx->defrag_timeout_check =
  477. cfg_get(psoc, CFG_DP_DEFRAG_TIMEOUT_CHECK);
  478. wlan_cfg_ctx->rx_defrag_min_timeout =
  479. cfg_get(psoc, CFG_DP_RX_DEFRAG_TIMEOUT);
  480. wlan_cfg_ctx->wbm_release_ring = cfg_get(psoc,
  481. CFG_DP_WBM_RELEASE_RING);
  482. wlan_cfg_ctx->tcl_cmd_credit_ring = cfg_get(psoc,
  483. CFG_DP_TCL_CMD_CREDIT_RING);
  484. wlan_cfg_ctx->tcl_status_ring = cfg_get(psoc,
  485. CFG_DP_TCL_STATUS_RING);
  486. wlan_cfg_ctx->reo_reinject_ring = cfg_get(psoc,
  487. CFG_DP_REO_REINJECT_RING);
  488. wlan_cfg_ctx->rx_release_ring = cfg_get(psoc,
  489. CFG_DP_RX_RELEASE_RING);
  490. wlan_cfg_ctx->reo_exception_ring = cfg_get(psoc,
  491. CFG_DP_REO_EXCEPTION_RING);
  492. wlan_cfg_ctx->reo_cmd_ring = cfg_get(psoc,
  493. CFG_DP_REO_CMD_RING);
  494. wlan_cfg_ctx->reo_status_ring = cfg_get(psoc,
  495. CFG_DP_REO_STATUS_RING);
  496. wlan_cfg_ctx->rxdma_refill_ring = cfg_get(psoc,
  497. CFG_DP_RXDMA_REFILL_RING);
  498. wlan_cfg_ctx->tx_desc_limit_0 = cfg_get(psoc,
  499. CFG_DP_TX_DESC_LIMIT_0);
  500. wlan_cfg_ctx->tx_desc_limit_1 = cfg_get(psoc,
  501. CFG_DP_TX_DESC_LIMIT_1);
  502. wlan_cfg_ctx->tx_desc_limit_2 = cfg_get(psoc,
  503. CFG_DP_TX_DESC_LIMIT_2);
  504. wlan_cfg_ctx->tx_device_limit = cfg_get(psoc,
  505. CFG_DP_TX_DEVICE_LIMIT);
  506. wlan_cfg_ctx->tx_sw_internode_queue = cfg_get(psoc,
  507. CFG_DP_TX_SW_INTERNODE_QUEUE);
  508. wlan_cfg_ctx->rxdma_err_dst_ring = cfg_get(psoc,
  509. CFG_DP_RXDMA_ERR_DST_RING);
  510. wlan_cfg_ctx->enable_data_stall_detection =
  511. cfg_get(psoc, CFG_DP_ENABLE_DATA_STALL_DETECTION);
  512. wlan_cfg_ctx->tx_flow_start_queue_offset =
  513. cfg_get(psoc, CFG_DP_TX_FLOW_START_QUEUE_OFFSET);
  514. wlan_cfg_ctx->tx_flow_stop_queue_threshold =
  515. cfg_get(psoc, CFG_DP_TX_FLOW_STOP_QUEUE_TH);
  516. wlan_cfg_ctx->disable_intra_bss_fwd =
  517. cfg_get(psoc, CFG_DP_AP_STA_SECURITY_SEPERATION);
  518. wlan_cfg_ctx->rx_sw_desc_weight = cfg_get(psoc,
  519. CFG_DP_RX_SW_DESC_WEIGHT);
  520. wlan_cfg_ctx->rx_toeplitz_hash_key = (uint8_t *)rx_fst_toeplitz_key;
  521. wlan_cfg_ctx->rx_flow_max_search = WLAN_CFG_RX_FST_MAX_SEARCH;
  522. wlan_cfg_ctx->is_rx_flow_tag_enabled =
  523. cfg_get(psoc, CFG_DP_RX_FLOW_TAG_ENABLE);
  524. wlan_cfg_ctx->is_rx_flow_search_table_per_pdev =
  525. cfg_get(psoc, CFG_DP_RX_FLOW_SEARCH_TABLE_PER_PDEV);
  526. wlan_cfg_ctx->rx_flow_search_table_size =
  527. cfg_get(psoc, CFG_DP_RX_FLOW_SEARCH_TABLE_SIZE);
  528. wlan_cfg_ctx->is_rx_mon_protocol_flow_tag_enabled =
  529. cfg_get(psoc, CFG_DP_RX_MON_PROTOCOL_FLOW_TAG_ENABLE);
  530. wlan_cfg_ctx->mon_drop_thresh =
  531. cfg_get(psoc, CFG_DP_RXDMA_MONITOR_RX_DROP_THRESHOLD);
  532. wlan_cfg_ctx->is_rx_fisa_enabled = cfg_get(psoc, CFG_DP_RX_FISA_ENABLE);
  533. wlan_cfg_ctx->reo_rings_mapping = cfg_get(psoc, CFG_DP_REO_RINGS_MAP);
  534. wlan_cfg_ctx->pext_stats_enabled = cfg_get(psoc, CFG_DP_PEER_EXT_STATS);
  535. return wlan_cfg_ctx;
  536. }
  537. void wlan_cfg_soc_detach(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
  538. {
  539. qdf_mem_free(wlan_cfg_ctx);
  540. }
  541. struct wlan_cfg_dp_pdev_ctxt *
  542. wlan_cfg_pdev_attach(struct cdp_ctrl_objmgr_psoc *psoc)
  543. {
  544. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx =
  545. qdf_mem_malloc(sizeof(struct wlan_cfg_dp_pdev_ctxt));
  546. if (!wlan_cfg_ctx)
  547. return NULL;
  548. wlan_cfg_ctx->rx_dma_buf_ring_size = cfg_get(psoc,
  549. CFG_DP_RXDMA_BUF_RING);
  550. wlan_cfg_ctx->dma_mon_buf_ring_size = cfg_get(psoc,
  551. CFG_DP_RXDMA_MONITOR_BUF_RING);
  552. wlan_cfg_ctx->dma_mon_dest_ring_size = cfg_get(psoc,
  553. CFG_DP_RXDMA_MONITOR_DST_RING);
  554. wlan_cfg_ctx->dma_mon_status_ring_size = cfg_get(psoc,
  555. CFG_DP_RXDMA_MONITOR_STATUS_RING);
  556. wlan_cfg_ctx->rxdma_monitor_desc_ring = cfg_get(psoc,
  557. CFG_DP_RXDMA_MONITOR_DESC_RING);
  558. wlan_cfg_ctx->num_mac_rings = NUM_RXDMA_RINGS_PER_PDEV;
  559. return wlan_cfg_ctx;
  560. }
  561. void wlan_cfg_set_mon_delayed_replenish_entries(
  562. struct wlan_cfg_dp_soc_ctxt *cfg,
  563. uint32_t val)
  564. {
  565. cfg->delayed_replenish_entries = val;
  566. }
  567. int wlan_cfg_get_mon_delayed_replenish_entries(struct wlan_cfg_dp_soc_ctxt *cfg)
  568. {
  569. return cfg->delayed_replenish_entries;
  570. }
  571. void wlan_cfg_pdev_detach(struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx)
  572. {
  573. if (wlan_cfg_ctx)
  574. qdf_mem_free(wlan_cfg_ctx);
  575. }
  576. int wlan_cfg_get_mon_drop_thresh(struct wlan_cfg_dp_soc_ctxt *cfg)
  577. {
  578. return cfg->mon_drop_thresh;
  579. }
  580. void wlan_cfg_set_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg, int num)
  581. {
  582. cfg->num_int_ctxts = num;
  583. }
  584. void wlan_cfg_set_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val)
  585. {
  586. cfg->max_peer_id = val;
  587. }
  588. void wlan_cfg_set_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val)
  589. {
  590. cfg->max_ast_idx = val;
  591. }
  592. int wlan_cfg_get_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg)
  593. {
  594. return cfg->max_ast_idx;
  595. }
  596. void wlan_cfg_set_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  597. int context, int mask)
  598. {
  599. cfg->int_tx_ring_mask[context] = mask;
  600. }
  601. void wlan_cfg_set_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  602. int context, int mask)
  603. {
  604. cfg->int_rx_ring_mask[context] = mask;
  605. }
  606. void wlan_cfg_set_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  607. int context, int mask)
  608. {
  609. cfg->int_rx_mon_ring_mask[context] = mask;
  610. }
  611. int wlan_cfg_get_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  612. int context)
  613. {
  614. return cfg->int_host2rxdma_mon_ring_mask[context];
  615. }
  616. void wlan_cfg_set_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  617. int context, int mask)
  618. {
  619. cfg->int_host2rxdma_mon_ring_mask[context] = mask;
  620. }
  621. int wlan_cfg_get_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  622. int context)
  623. {
  624. return cfg->int_rxdma2host_mon_ring_mask[context];
  625. }
  626. void wlan_cfg_set_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  627. int context, int mask)
  628. {
  629. cfg->int_rxdma2host_mon_ring_mask[context] = mask;
  630. }
  631. void wlan_cfg_set_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  632. int context, int mask)
  633. {
  634. cfg->int_rxdma2host_ring_mask[context] = mask;
  635. }
  636. int wlan_cfg_get_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  637. int context)
  638. {
  639. return cfg->int_rxdma2host_ring_mask[context];
  640. }
  641. void wlan_cfg_set_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  642. int context, int mask)
  643. {
  644. cfg->int_host2rxdma_ring_mask[context] = mask;
  645. }
  646. int wlan_cfg_get_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  647. int context)
  648. {
  649. return cfg->int_host2rxdma_ring_mask[context];
  650. }
  651. void wlan_cfg_set_hw_mac_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx,
  652. int hw_macid)
  653. {
  654. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  655. cfg->hw_macid[pdev_idx] = hw_macid;
  656. }
  657. int wlan_cfg_get_hw_mac_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx)
  658. {
  659. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  660. return cfg->hw_macid[pdev_idx];
  661. }
  662. int wlan_cfg_get_target_pdev_id(struct wlan_cfg_dp_soc_ctxt *cfg,
  663. int hw_macid)
  664. {
  665. int idx;
  666. for (idx = 0; idx < MAX_PDEV_CNT; idx++) {
  667. if (cfg->hw_macid[idx] == hw_macid)
  668. return (idx + 1);
  669. }
  670. qdf_assert_always(idx < MAX_PDEV_CNT);
  671. return WLAN_INVALID_PDEV_ID;
  672. }
  673. void wlan_cfg_set_pdev_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx,
  674. int hw_macid)
  675. {
  676. qdf_assert_always((pdev_idx < MAX_PDEV_CNT) ||
  677. (pdev_idx == INVALID_PDEV_ID));
  678. qdf_assert_always(hw_macid < MAX_NUM_LMAC_HW);
  679. cfg->hw_macid_pdev_id_map[hw_macid] = pdev_idx;
  680. }
  681. int wlan_cfg_get_pdev_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int hw_macid)
  682. {
  683. qdf_assert_always(hw_macid < MAX_NUM_LMAC_HW);
  684. return cfg->hw_macid_pdev_id_map[hw_macid];
  685. }
  686. void wlan_cfg_set_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  687. int context, int mask)
  688. {
  689. cfg->int_ce_ring_mask[context] = mask;
  690. }
  691. void wlan_cfg_set_rxbuf_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context,
  692. int mask)
  693. {
  694. cfg->int_rx_ring_mask[context] = mask;
  695. }
  696. int wlan_cfg_set_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  697. int context, int mask)
  698. {
  699. return cfg->int_rx_err_ring_mask[context] = mask;
  700. }
  701. int wlan_cfg_set_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  702. int context, int mask)
  703. {
  704. return cfg->int_rx_wbm_rel_ring_mask[context] = mask;
  705. }
  706. int wlan_cfg_set_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  707. int context, int mask)
  708. {
  709. return cfg->int_reo_status_ring_mask[context] = mask;
  710. }
  711. int wlan_cfg_get_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg)
  712. {
  713. return cfg->num_int_ctxts;
  714. }
  715. int wlan_cfg_get_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  716. {
  717. return cfg->int_tx_ring_mask[context];
  718. }
  719. int wlan_cfg_get_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  720. {
  721. return cfg->int_rx_ring_mask[context];
  722. }
  723. int wlan_cfg_get_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  724. int context)
  725. {
  726. return cfg->int_rx_err_ring_mask[context];
  727. }
  728. int wlan_cfg_get_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  729. int context)
  730. {
  731. return cfg->int_rx_wbm_rel_ring_mask[context];
  732. }
  733. int wlan_cfg_get_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  734. int context)
  735. {
  736. return cfg->int_reo_status_ring_mask[context];
  737. }
  738. int wlan_cfg_get_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  739. {
  740. return cfg->int_rx_mon_ring_mask[context];
  741. }
  742. int wlan_cfg_get_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  743. {
  744. return cfg->int_ce_ring_mask[context];
  745. }
  746. uint32_t wlan_cfg_get_max_clients(struct wlan_cfg_dp_soc_ctxt *cfg)
  747. {
  748. return cfg->max_clients;
  749. }
  750. uint32_t wlan_cfg_max_alloc_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  751. {
  752. return cfg->max_alloc_size;
  753. }
  754. int wlan_cfg_per_pdev_tx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  755. {
  756. return cfg->per_pdev_tx_ring;
  757. }
  758. int wlan_cfg_per_pdev_lmac_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  759. {
  760. return cfg->per_pdev_lmac_ring;
  761. }
  762. #ifdef DP_MEMORY_OPT
  763. int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
  764. {
  765. return 1;
  766. }
  767. #else
  768. int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
  769. {
  770. return cfg->num_tcl_data_rings;
  771. }
  772. #endif
  773. int wlan_cfg_tx_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  774. {
  775. return cfg->tx_ring_size;
  776. }
  777. int wlan_cfg_tx_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  778. {
  779. return cfg->tx_comp_ring_size;
  780. }
  781. int wlan_cfg_per_pdev_rx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  782. {
  783. return cfg->per_pdev_rx_ring;
  784. }
  785. int wlan_cfg_num_reo_dest_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
  786. {
  787. return cfg->num_reo_dest_rings;
  788. }
  789. int wlan_cfg_pkt_type(struct wlan_cfg_dp_soc_ctxt *cfg)
  790. {
  791. return cfg->htt_packet_type; /*htt_pkt_type_ethernet*/
  792. }
  793. int wlan_cfg_get_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
  794. {
  795. return cfg->num_tx_desc_pool;
  796. }
  797. void wlan_cfg_set_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool)
  798. {
  799. cfg->num_tx_desc_pool = num_pool;
  800. }
  801. int wlan_cfg_get_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
  802. {
  803. return cfg->num_tx_ext_desc_pool;
  804. }
  805. void wlan_cfg_set_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool)
  806. {
  807. cfg->num_tx_ext_desc_pool = num_pool;
  808. }
  809. int wlan_cfg_get_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  810. {
  811. return cfg->reo_dst_ring_size;
  812. }
  813. void wlan_cfg_set_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg,
  814. int reo_dst_ring_size)
  815. {
  816. cfg->reo_dst_ring_size = reo_dst_ring_size;
  817. }
  818. void wlan_cfg_set_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg,
  819. bool raw_mode_war)
  820. {
  821. cfg->raw_mode_war = raw_mode_war;
  822. }
  823. bool wlan_cfg_get_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg)
  824. {
  825. return cfg->raw_mode_war;
  826. }
  827. int wlan_cfg_get_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  828. {
  829. return cfg->num_tx_desc;
  830. }
  831. void wlan_cfg_set_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_desc)
  832. {
  833. cfg->num_tx_desc = num_desc;
  834. }
  835. int wlan_cfg_get_min_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  836. {
  837. return cfg->min_tx_desc;
  838. }
  839. int wlan_cfg_get_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  840. {
  841. return cfg->num_tx_ext_desc;
  842. }
  843. void wlan_cfg_set_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_ext_desc)
  844. {
  845. cfg->num_tx_ext_desc = num_ext_desc;
  846. }
  847. uint32_t wlan_cfg_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg)
  848. {
  849. /* TODO: This should be calculated based on target capabilities */
  850. return cfg->max_peer_id;
  851. }
  852. int wlan_cfg_get_dma_mon_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  853. {
  854. return cfg->dma_mon_buf_ring_size;
  855. }
  856. int wlan_cfg_get_dma_mon_dest_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  857. {
  858. return cfg->dma_mon_dest_ring_size;
  859. }
  860. int wlan_cfg_get_dma_mon_stat_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  861. {
  862. return cfg->dma_mon_status_ring_size;
  863. }
  864. int
  865. wlan_cfg_get_dma_mon_desc_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  866. {
  867. return cfg->rxdma_monitor_desc_ring;
  868. }
  869. int wlan_cfg_get_rx_dma_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  870. {
  871. return cfg->rx_dma_buf_ring_size;
  872. }
  873. int wlan_cfg_get_num_mac_rings(struct wlan_cfg_dp_pdev_ctxt *cfg)
  874. {
  875. return cfg->num_mac_rings;
  876. }
  877. bool wlan_cfg_is_gro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  878. {
  879. return cfg->gro_enabled;
  880. }
  881. bool wlan_cfg_is_lro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  882. {
  883. return cfg->lro_enabled;
  884. }
  885. bool wlan_cfg_is_ipa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  886. {
  887. return cfg->ipa_enabled;
  888. }
  889. void wlan_cfg_set_rx_hash(struct wlan_cfg_dp_soc_ctxt *cfg, bool val)
  890. {
  891. cfg->rx_hash = val;
  892. }
  893. bool wlan_cfg_is_rx_hash_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  894. {
  895. return cfg->rx_hash;
  896. }
  897. int wlan_cfg_get_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg)
  898. {
  899. return cfg->nss_enabled;
  900. }
  901. void wlan_cfg_set_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg, int nss_enabled)
  902. {
  903. cfg->nss_enabled = nss_enabled;
  904. }
  905. int wlan_cfg_get_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg)
  906. {
  907. return cfg->nss_cfg;
  908. }
  909. void wlan_cfg_set_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg, int nss_cfg)
  910. {
  911. cfg->nss_cfg = nss_cfg;
  912. if (cfg->nss_cfg)
  913. cfg->tx_comp_ring_size = cfg->tx_comp_ring_size_nss;
  914. }
  915. int wlan_cfg_get_int_batch_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
  916. {
  917. return cfg->int_batch_threshold_tx;
  918. }
  919. int wlan_cfg_get_int_timer_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
  920. {
  921. return cfg->int_timer_threshold_tx;
  922. }
  923. int wlan_cfg_get_int_batch_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
  924. {
  925. return cfg->int_batch_threshold_rx;
  926. }
  927. int wlan_cfg_get_int_timer_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
  928. {
  929. return cfg->int_timer_threshold_rx;
  930. }
  931. int wlan_cfg_get_int_batch_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
  932. {
  933. return cfg->int_batch_threshold_other;
  934. }
  935. int wlan_cfg_get_int_timer_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
  936. {
  937. return cfg->int_timer_threshold_other;
  938. }
  939. int wlan_cfg_get_int_timer_threshold_mon(struct wlan_cfg_dp_soc_ctxt *cfg)
  940. {
  941. return cfg->int_timer_threshold_mon;
  942. }
  943. int wlan_cfg_get_p2p_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg)
  944. {
  945. return cfg->p2p_tcp_udp_checksumoffload;
  946. }
  947. int wlan_cfg_get_nan_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg)
  948. {
  949. return cfg->nan_tcp_udp_checksumoffload;
  950. }
  951. int wlan_cfg_get_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg)
  952. {
  953. return cfg->tcp_udp_checksumoffload;
  954. }
  955. int wlan_cfg_get_rx_defrag_min_timeout(struct wlan_cfg_dp_soc_ctxt *cfg)
  956. {
  957. return cfg->rx_defrag_min_timeout;
  958. }
  959. int wlan_cfg_get_defrag_timeout_check(struct wlan_cfg_dp_soc_ctxt *cfg)
  960. {
  961. return cfg->defrag_timeout_check;
  962. }
  963. int
  964. wlan_cfg_get_dp_soc_wbm_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  965. {
  966. return cfg->wbm_release_ring;
  967. }
  968. int
  969. wlan_cfg_get_dp_soc_tcl_cmd_credit_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  970. {
  971. return cfg->tcl_cmd_credit_ring;
  972. }
  973. int
  974. wlan_cfg_get_dp_soc_tcl_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  975. {
  976. return cfg->tcl_status_ring;
  977. }
  978. int
  979. wlan_cfg_get_dp_soc_reo_reinject_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  980. {
  981. return cfg->reo_reinject_ring;
  982. }
  983. int
  984. wlan_cfg_get_dp_soc_rx_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  985. {
  986. return cfg->rx_release_ring;
  987. }
  988. int
  989. wlan_cfg_get_dp_soc_reo_exception_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  990. {
  991. return cfg->reo_exception_ring;
  992. }
  993. int
  994. wlan_cfg_get_dp_soc_reo_cmd_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  995. {
  996. return cfg->reo_cmd_ring;
  997. }
  998. int
  999. wlan_cfg_get_dp_soc_reo_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  1000. {
  1001. return cfg->reo_status_ring;
  1002. }
  1003. int
  1004. wlan_cfg_get_dp_soc_rxdma_refill_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  1005. {
  1006. return cfg->rxdma_refill_ring;
  1007. }
  1008. int
  1009. wlan_cfg_get_dp_soc_tx_desc_limit_0(struct wlan_cfg_dp_soc_ctxt *cfg)
  1010. {
  1011. return cfg->tx_desc_limit_0;
  1012. }
  1013. int
  1014. wlan_cfg_get_dp_soc_tx_desc_limit_1(struct wlan_cfg_dp_soc_ctxt *cfg)
  1015. {
  1016. return cfg->tx_desc_limit_1;
  1017. }
  1018. int
  1019. wlan_cfg_get_dp_soc_tx_desc_limit_2(struct wlan_cfg_dp_soc_ctxt *cfg)
  1020. {
  1021. return cfg->tx_desc_limit_2;
  1022. }
  1023. int
  1024. wlan_cfg_get_dp_soc_tx_device_limit(struct wlan_cfg_dp_soc_ctxt *cfg)
  1025. {
  1026. return cfg->tx_device_limit;
  1027. }
  1028. int
  1029. wlan_cfg_get_dp_soc_tx_sw_internode_queue(struct wlan_cfg_dp_soc_ctxt *cfg)
  1030. {
  1031. return cfg->tx_sw_internode_queue;
  1032. }
  1033. int
  1034. wlan_cfg_get_dp_soc_rxdma_err_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  1035. {
  1036. return cfg->rxdma_err_dst_ring;
  1037. }
  1038. int
  1039. wlan_cfg_get_dp_soc_rx_sw_desc_weight(struct wlan_cfg_dp_soc_ctxt *cfg)
  1040. {
  1041. return cfg->rx_sw_desc_weight;
  1042. }
  1043. uint32_t
  1044. wlan_cfg_get_reo_rings_mapping(struct wlan_cfg_dp_soc_ctxt *cfg)
  1045. {
  1046. return cfg->reo_rings_mapping;
  1047. }
  1048. bool
  1049. wlan_cfg_get_dp_caps(struct wlan_cfg_dp_soc_ctxt *cfg,
  1050. enum cdp_capabilities dp_caps)
  1051. {
  1052. switch (dp_caps) {
  1053. case CDP_CFG_DP_TSO:
  1054. return cfg->tso_enabled;
  1055. case CDP_CFG_DP_LRO:
  1056. return cfg->lro_enabled;
  1057. case CDP_CFG_DP_SG:
  1058. return cfg->sg_enabled;
  1059. case CDP_CFG_DP_GRO:
  1060. return cfg->gro_enabled;
  1061. case CDP_CFG_DP_OL_TX_CSUM:
  1062. return cfg->ol_tx_csum_enabled;
  1063. case CDP_CFG_DP_OL_RX_CSUM:
  1064. return cfg->ol_rx_csum_enabled;
  1065. case CDP_CFG_DP_RAWMODE:
  1066. return cfg->rawmode_enabled;
  1067. case CDP_CFG_DP_PEER_FLOW_CTRL:
  1068. return cfg->peer_flow_ctrl_enabled;
  1069. default:
  1070. return false;
  1071. }
  1072. }
  1073. void wlan_cfg_set_tso_desc_attach_defer(struct wlan_cfg_dp_soc_ctxt *cfg,
  1074. bool val)
  1075. {
  1076. cfg->is_tso_desc_attach_defer = val;
  1077. }
  1078. bool wlan_cfg_is_tso_desc_attach_defer(struct wlan_cfg_dp_soc_ctxt *cfg)
  1079. {
  1080. return cfg->is_tso_desc_attach_defer;
  1081. }
  1082. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  1083. /**
  1084. * wlan_cfg_get_tx_flow_stop_queue_th() - Get flow control stop threshold
  1085. * @cfg: config context
  1086. *
  1087. * Return: stop threshold
  1088. */
  1089. int wlan_cfg_get_tx_flow_stop_queue_th(struct wlan_cfg_dp_soc_ctxt *cfg)
  1090. {
  1091. return cfg->tx_flow_stop_queue_threshold;
  1092. }
  1093. /**
  1094. * wlan_cfg_get_tx_flow_start_queue_offset() - Get flow control start offset
  1095. * for TX to resume
  1096. * @cfg: config context
  1097. *
  1098. * Return: stop threshold
  1099. */
  1100. int wlan_cfg_get_tx_flow_start_queue_offset(struct wlan_cfg_dp_soc_ctxt *cfg)
  1101. {
  1102. return cfg->tx_flow_start_queue_offset;
  1103. }
  1104. #endif /* QCA_LL_TX_FLOW_CONTROL_V2 */
  1105. void wlan_cfg_set_rx_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg,
  1106. bool val)
  1107. {
  1108. cfg->is_rx_flow_tag_enabled = val;
  1109. }
  1110. uint8_t *wlan_cfg_rx_fst_get_hash_key(struct wlan_cfg_dp_soc_ctxt *cfg)
  1111. {
  1112. return cfg->rx_toeplitz_hash_key;
  1113. }
  1114. uint8_t wlan_cfg_rx_fst_get_max_search(struct wlan_cfg_dp_soc_ctxt *cfg)
  1115. {
  1116. return cfg->rx_flow_max_search;
  1117. }
  1118. bool wlan_cfg_is_rx_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  1119. {
  1120. return cfg->is_rx_flow_tag_enabled;
  1121. }
  1122. #ifdef WLAN_SUPPORT_RX_FISA
  1123. bool wlan_cfg_is_rx_fisa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  1124. {
  1125. return (bool)(cfg->is_rx_fisa_enabled);
  1126. }
  1127. #else
  1128. bool wlan_cfg_is_rx_fisa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  1129. {
  1130. return false;
  1131. }
  1132. #endif
  1133. void
  1134. wlan_cfg_set_rx_flow_search_table_per_pdev(struct wlan_cfg_dp_soc_ctxt *cfg,
  1135. bool val)
  1136. {
  1137. cfg->is_rx_flow_search_table_per_pdev = val;
  1138. }
  1139. bool wlan_cfg_is_rx_flow_search_table_per_pdev(struct wlan_cfg_dp_soc_ctxt *cfg)
  1140. {
  1141. return cfg->is_rx_flow_search_table_per_pdev;
  1142. }
  1143. void wlan_cfg_set_rx_flow_search_table_size(struct wlan_cfg_dp_soc_ctxt *cfg,
  1144. uint16_t val)
  1145. {
  1146. cfg->rx_flow_search_table_size = val;
  1147. }
  1148. uint16_t
  1149. wlan_cfg_get_rx_flow_search_table_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  1150. {
  1151. return cfg->rx_flow_search_table_size;
  1152. }
  1153. void
  1154. wlan_cfg_set_rx_mon_protocol_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg,
  1155. bool val)
  1156. {
  1157. cfg->is_rx_mon_protocol_flow_tag_enabled = val;
  1158. }
  1159. bool
  1160. wlan_cfg_is_rx_mon_protocol_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  1161. {
  1162. return cfg->is_rx_mon_protocol_flow_tag_enabled;
  1163. }
  1164. void
  1165. wlan_cfg_set_peer_ext_stats(struct wlan_cfg_dp_soc_ctxt *cfg,
  1166. bool val)
  1167. {
  1168. cfg->pext_stats_enabled = val;
  1169. }
  1170. bool
  1171. wlan_cfg_is_peer_ext_stats_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  1172. {
  1173. return cfg->pext_stats_enabled;
  1174. }