wlan_cfg.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988
  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. #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. /*
  30. * FIX THIS -
  31. * For now, all these configuration parameters are hardcoded.
  32. * Many of these should actually be coming from dts file/ini file
  33. */
  34. /*
  35. * The max allowed size for tx comp ring is 8191.
  36. * This is limitted by h/w ring max size.
  37. * As this is not a power of 2 it does not work with nss offload so the
  38. * nearest available size which is power of 2 is 4096 chosen for nss
  39. */
  40. #define WLAN_CFG_TX_RING_MASK_0 0x1
  41. #define WLAN_CFG_TX_RING_MASK_1 0x2
  42. #define WLAN_CFG_TX_RING_MASK_2 0x4
  43. #define WLAN_CFG_TX_RING_MASK_3 0x0
  44. #define WLAN_CFG_RX_RING_MASK_0 0x1
  45. #define WLAN_CFG_RX_RING_MASK_1 0x2
  46. #define WLAN_CFG_RX_RING_MASK_2 0x4
  47. #define WLAN_CFG_RX_RING_MASK_3 0x8
  48. #define WLAN_CFG_RX_MON_RING_MASK_0 0x1
  49. #define WLAN_CFG_RX_MON_RING_MASK_1 0x2
  50. #define WLAN_CFG_RX_MON_RING_MASK_2 0x4
  51. #define WLAN_CFG_RX_MON_RING_MASK_3 0x0
  52. #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0 0x1
  53. #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1 0x2
  54. #define WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2 0x4
  55. #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0 0x1
  56. #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1 0x2
  57. #define WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2 0x4
  58. #define WLAN_CFG_RX_ERR_RING_MASK_0 0x1
  59. #define WLAN_CFG_RX_ERR_RING_MASK_1 0x0
  60. #define WLAN_CFG_RX_ERR_RING_MASK_2 0x0
  61. #define WLAN_CFG_RX_ERR_RING_MASK_3 0x0
  62. #define WLAN_CFG_RX_WBM_REL_RING_MASK_0 0x1
  63. #define WLAN_CFG_RX_WBM_REL_RING_MASK_1 0x0
  64. #define WLAN_CFG_RX_WBM_REL_RING_MASK_2 0x0
  65. #define WLAN_CFG_RX_WBM_REL_RING_MASK_3 0x0
  66. #define WLAN_CFG_REO_STATUS_RING_MASK_0 0x1
  67. #define WLAN_CFG_REO_STATUS_RING_MASK_1 0x0
  68. #define WLAN_CFG_REO_STATUS_RING_MASK_2 0x0
  69. #define WLAN_CFG_REO_STATUS_RING_MASK_3 0x0
  70. #define WLAN_CFG_RXDMA2HOST_RING_MASK_0 0x1
  71. #define WLAN_CFG_RXDMA2HOST_RING_MASK_1 0x2
  72. #define WLAN_CFG_RXDMA2HOST_RING_MASK_2 0x4
  73. #define WLAN_CFG_RXDMA2HOST_RING_MASK_3 0x0
  74. #define WLAN_CFG_HOST2RXDMA_RING_MASK_0 0x1
  75. #define WLAN_CFG_HOST2RXDMA_RING_MASK_1 0x2
  76. #define WLAN_CFG_HOST2RXDMA_RING_MASK_2 0x4
  77. #define WLAN_CFG_HOST2RXDMA_RING_MASK_3 0x0
  78. #if defined(WLAN_MAX_PDEVS) && (WLAN_MAX_PDEVS == 1)
  79. static const int tx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  80. WLAN_CFG_TX_RING_MASK_0, 0, 0, 0, 0, 0, 0};
  81. #ifndef IPA_OFFLOAD
  82. static const int rx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  83. 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};
  84. #else
  85. static const int rx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  86. 0, WLAN_CFG_RX_RING_MASK_0, WLAN_CFG_RX_RING_MASK_1, WLAN_CFG_RX_RING_MASK_2, 0, 0, 0};
  87. #endif
  88. static const int rx_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  89. 0, WLAN_CFG_RX_MON_RING_MASK_0, WLAN_CFG_RX_MON_RING_MASK_1, 0, 0, 0, 0};
  90. static const int host2rxdma_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  91. 0, 0, 0, 0, 0, 0, 0};
  92. static const int rxdma2host_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  93. 0, 0, 0, 0, 0, WLAN_CFG_RXDMA2HOST_RING_MASK_0, WLAN_CFG_RXDMA2HOST_RING_MASK_1};
  94. static const int host2rxdma_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  95. 0, 0, 0, 0, 0, 0, 0};
  96. static const int rxdma2host_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  97. 0, 0, 0, 0, 0, 0, 0};
  98. static const int rx_err_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  99. 0, 0, 0, 0, 0, 0, WLAN_CFG_RX_ERR_RING_MASK_0};
  100. static const int rx_wbm_rel_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  101. 0, 0, 0, 0, 0, 0, WLAN_CFG_RX_WBM_REL_RING_MASK_0};
  102. static const int reo_status_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  103. 0, 0, 0, 0, 0, 0, WLAN_CFG_REO_STATUS_RING_MASK_0};
  104. #else
  105. static const int tx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  106. WLAN_CFG_TX_RING_MASK_0,
  107. WLAN_CFG_TX_RING_MASK_1,
  108. WLAN_CFG_TX_RING_MASK_2,
  109. WLAN_CFG_TX_RING_MASK_3};
  110. static const int rx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  111. 0,
  112. 0,
  113. 0,
  114. 0,
  115. 0,
  116. 0,
  117. 0,
  118. WLAN_CFG_RX_RING_MASK_0,
  119. WLAN_CFG_RX_RING_MASK_1,
  120. WLAN_CFG_RX_RING_MASK_2,
  121. WLAN_CFG_RX_RING_MASK_3};
  122. static const int rx_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  123. 0,
  124. 0,
  125. 0,
  126. 0,
  127. WLAN_CFG_RX_MON_RING_MASK_0,
  128. WLAN_CFG_RX_MON_RING_MASK_1,
  129. WLAN_CFG_RX_MON_RING_MASK_2};
  130. static const int host2rxdma_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  131. WLAN_CFG_HOST2RXDMA_RING_MASK_0,
  132. WLAN_CFG_HOST2RXDMA_RING_MASK_1,
  133. WLAN_CFG_HOST2RXDMA_RING_MASK_2,
  134. WLAN_CFG_HOST2RXDMA_RING_MASK_3};
  135. static const int rxdma2host_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  136. WLAN_CFG_RXDMA2HOST_RING_MASK_0,
  137. WLAN_CFG_RXDMA2HOST_RING_MASK_1,
  138. WLAN_CFG_RXDMA2HOST_RING_MASK_2,
  139. WLAN_CFG_RXDMA2HOST_RING_MASK_3};
  140. static const int host2rxdma_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  141. 0,
  142. 0,
  143. 0,
  144. 0,
  145. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_0,
  146. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_1,
  147. WLAN_CFG_HOST2RXDMA_MON_RING_MASK_2};
  148. static const int rxdma2host_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  149. 0,
  150. 0,
  151. 0,
  152. 0,
  153. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_0,
  154. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_1,
  155. WLAN_CFG_RXDMA2HOST_MON_RING_MASK_2};
  156. static const int rx_err_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  157. WLAN_CFG_RX_ERR_RING_MASK_0,
  158. WLAN_CFG_RX_ERR_RING_MASK_1,
  159. WLAN_CFG_RX_ERR_RING_MASK_2,
  160. WLAN_CFG_RX_ERR_RING_MASK_3};
  161. static const int rx_wbm_rel_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  162. WLAN_CFG_RX_WBM_REL_RING_MASK_0,
  163. WLAN_CFG_RX_WBM_REL_RING_MASK_1,
  164. WLAN_CFG_RX_WBM_REL_RING_MASK_2,
  165. WLAN_CFG_RX_WBM_REL_RING_MASK_3};
  166. static const int reo_status_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  167. WLAN_CFG_REO_STATUS_RING_MASK_0,
  168. WLAN_CFG_REO_STATUS_RING_MASK_1,
  169. WLAN_CFG_REO_STATUS_RING_MASK_2,
  170. WLAN_CFG_REO_STATUS_RING_MASK_3};
  171. #endif /* MAX_PDEV_CNT == 1 */
  172. /**
  173. * g_wlan_srng_cfg[] - Per ring_type specific configuration
  174. *
  175. */
  176. struct wlan_srng_cfg g_wlan_srng_cfg[MAX_RING_TYPES];
  177. /* REO_DST ring configuration */
  178. struct wlan_srng_cfg wlan_srng_reo_cfg = {
  179. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_REO_RING,
  180. .batch_count_threshold = 0,
  181. .low_threshold = 0,
  182. };
  183. /* WBM2SW_RELEASE ring configuration */
  184. struct wlan_srng_cfg wlan_srng_wbm_release_cfg = {
  185. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_WBM_RELEASE_RING,
  186. .batch_count_threshold = 0,
  187. .low_threshold = 0,
  188. };
  189. /* RXDMA_BUF ring configuration */
  190. struct wlan_srng_cfg wlan_srng_rxdma_buf_cfg = {
  191. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
  192. .batch_count_threshold = 0,
  193. .low_threshold = WLAN_CFG_RXDMA_REFILL_RING_SIZE >> 3,
  194. };
  195. /* RXDMA_MONITOR_BUF ring configuration */
  196. struct wlan_srng_cfg wlan_srng_rxdma_monitor_buf_cfg = {
  197. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
  198. .batch_count_threshold = 0,
  199. .low_threshold = WLAN_CFG_RXDMA_MONITOR_BUF_RING_SIZE >> 3,
  200. };
  201. /* RXDMA_MONITOR_STATUS ring configuration */
  202. struct wlan_srng_cfg wlan_srng_rxdma_monitor_status_cfg = {
  203. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_RX,
  204. .batch_count_threshold = 0,
  205. .low_threshold = WLAN_CFG_RXDMA_MONITOR_STATUS_RING_SIZE >> 3,
  206. };
  207. /* DEFAULT_CONFIG ring configuration */
  208. struct wlan_srng_cfg wlan_srng_default_cfg = {
  209. .timer_threshold = WLAN_CFG_INT_TIMER_THRESHOLD_OTHER,
  210. .batch_count_threshold = WLAN_CFG_INT_BATCH_THRESHOLD_OTHER,
  211. .low_threshold = 0,
  212. };
  213. void wlan_set_srng_cfg(struct wlan_srng_cfg **wlan_cfg)
  214. {
  215. g_wlan_srng_cfg[REO_DST] = wlan_srng_reo_cfg;
  216. g_wlan_srng_cfg[WBM2SW_RELEASE] = wlan_srng_wbm_release_cfg;
  217. g_wlan_srng_cfg[REO_EXCEPTION] = wlan_srng_default_cfg;
  218. g_wlan_srng_cfg[REO_REINJECT] = wlan_srng_default_cfg;
  219. g_wlan_srng_cfg[REO_CMD] = wlan_srng_default_cfg;
  220. g_wlan_srng_cfg[REO_STATUS] = wlan_srng_default_cfg;
  221. g_wlan_srng_cfg[TCL_DATA] = wlan_srng_default_cfg;
  222. g_wlan_srng_cfg[TCL_CMD] = wlan_srng_default_cfg;
  223. g_wlan_srng_cfg[TCL_STATUS] = wlan_srng_default_cfg;
  224. g_wlan_srng_cfg[WBM_IDLE_LINK] = wlan_srng_default_cfg;
  225. g_wlan_srng_cfg[SW2WBM_RELEASE] = wlan_srng_default_cfg;
  226. g_wlan_srng_cfg[RXDMA_BUF] = wlan_srng_rxdma_buf_cfg;
  227. g_wlan_srng_cfg[RXDMA_DST] = wlan_srng_default_cfg;
  228. g_wlan_srng_cfg[RXDMA_MONITOR_BUF] =
  229. wlan_srng_rxdma_monitor_buf_cfg;
  230. g_wlan_srng_cfg[RXDMA_MONITOR_STATUS] =
  231. wlan_srng_rxdma_monitor_status_cfg;
  232. g_wlan_srng_cfg[RXDMA_MONITOR_DST] = wlan_srng_default_cfg;
  233. g_wlan_srng_cfg[RXDMA_MONITOR_DESC] = wlan_srng_default_cfg;
  234. g_wlan_srng_cfg[DIR_BUF_RX_DMA_SRC] = wlan_srng_default_cfg;
  235. #ifdef WLAN_FEATURE_CIF_CFR
  236. g_wlan_srng_cfg[WIFI_POS_SRC] = wlan_srng_default_cfg;
  237. #endif
  238. *wlan_cfg = g_wlan_srng_cfg;
  239. }
  240. /**
  241. * wlan_cfg_soc_attach() - Allocate and prepare SoC configuration
  242. * @psoc - Object manager psoc
  243. * Return: wlan_cfg_ctx - Handle to Configuration context
  244. */
  245. struct wlan_cfg_dp_soc_ctxt *wlan_cfg_soc_attach(void *psoc)
  246. {
  247. int i = 0;
  248. struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx =
  249. qdf_mem_malloc(sizeof(struct wlan_cfg_dp_soc_ctxt));
  250. if (!wlan_cfg_ctx)
  251. return NULL;
  252. wlan_cfg_ctx->rxdma1_enable = WLAN_CFG_RXDMA1_ENABLE;
  253. wlan_cfg_ctx->num_int_ctxts = WLAN_CFG_INT_NUM_CONTEXTS;
  254. wlan_cfg_ctx->max_clients = cfg_get(psoc, CFG_DP_MAX_CLIENTS);
  255. wlan_cfg_ctx->max_alloc_size = cfg_get(psoc, CFG_DP_MAX_ALLOC_SIZE);
  256. wlan_cfg_ctx->per_pdev_tx_ring = cfg_get(psoc, CFG_DP_PDEV_TX_RING);
  257. wlan_cfg_ctx->num_tcl_data_rings = cfg_get(psoc, CFG_DP_TCL_DATA_RINGS);
  258. wlan_cfg_ctx->per_pdev_rx_ring = cfg_get(psoc, CFG_DP_PDEV_RX_RING);
  259. wlan_cfg_ctx->per_pdev_lmac_ring = cfg_get(psoc, CFG_DP_PDEV_LMAC_RING);
  260. wlan_cfg_ctx->num_reo_dest_rings = cfg_get(psoc, CFG_DP_REO_DEST_RINGS);
  261. wlan_cfg_ctx->num_tx_desc_pool = MAX_TXDESC_POOLS;
  262. wlan_cfg_ctx->num_tx_ext_desc_pool = cfg_get(psoc,
  263. CFG_DP_TX_EXT_DESC_POOLS);
  264. wlan_cfg_ctx->num_tx_desc = cfg_get(psoc, CFG_DP_TX_DESC);
  265. wlan_cfg_ctx->min_tx_desc = WLAN_CFG_NUM_TX_DESC_MIN;
  266. wlan_cfg_ctx->num_tx_ext_desc = cfg_get(psoc, CFG_DP_TX_EXT_DESC);
  267. wlan_cfg_ctx->htt_packet_type = cfg_get(psoc, CFG_DP_HTT_PACKET_TYPE);
  268. wlan_cfg_ctx->max_peer_id = cfg_get(psoc, CFG_DP_MAX_PEER_ID);
  269. wlan_cfg_ctx->tx_ring_size = cfg_get(psoc, CFG_DP_TX_RING_SIZE);
  270. wlan_cfg_ctx->tx_comp_ring_size = cfg_get(psoc,
  271. CFG_DP_TX_COMPL_RING_SIZE);
  272. wlan_cfg_ctx->tx_comp_ring_size_nss =
  273. cfg_get(psoc, CFG_DP_NSS_COMP_RING_SIZE);
  274. wlan_cfg_ctx->int_batch_threshold_tx =
  275. cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_TX);
  276. wlan_cfg_ctx->int_timer_threshold_tx =
  277. cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_TX);
  278. wlan_cfg_ctx->int_batch_threshold_rx =
  279. cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_RX);
  280. wlan_cfg_ctx->int_timer_threshold_rx =
  281. cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_RX);
  282. wlan_cfg_ctx->int_batch_threshold_other =
  283. cfg_get(psoc, CFG_DP_INT_BATCH_THRESHOLD_OTHER);
  284. wlan_cfg_ctx->int_timer_threshold_other =
  285. cfg_get(psoc, CFG_DP_INT_TIMER_THRESHOLD_OTHER);
  286. for (i = 0; i < WLAN_CFG_INT_NUM_CONTEXTS; i++) {
  287. wlan_cfg_ctx->int_tx_ring_mask[i] = tx_ring_mask[i];
  288. wlan_cfg_ctx->int_rx_ring_mask[i] = rx_ring_mask[i];
  289. wlan_cfg_ctx->int_rx_mon_ring_mask[i] = rx_mon_ring_mask[i];
  290. wlan_cfg_ctx->int_rx_err_ring_mask[i] = rx_err_ring_mask[i];
  291. wlan_cfg_ctx->int_rx_wbm_rel_ring_mask[i] =
  292. rx_wbm_rel_ring_mask[i];
  293. wlan_cfg_ctx->int_reo_status_ring_mask[i] =
  294. reo_status_ring_mask[i];
  295. wlan_cfg_ctx->int_rxdma2host_ring_mask[i] =
  296. rxdma2host_ring_mask[i];
  297. wlan_cfg_ctx->int_host2rxdma_ring_mask[i] =
  298. host2rxdma_ring_mask[i];
  299. wlan_cfg_ctx->int_host2rxdma_mon_ring_mask[i] =
  300. host2rxdma_mon_ring_mask[i];
  301. wlan_cfg_ctx->int_rxdma2host_mon_ring_mask[i] =
  302. rxdma2host_mon_ring_mask[i];
  303. }
  304. /* This is default mapping and can be overridden by HW config
  305. * received from FW */
  306. wlan_cfg_set_hw_macid(wlan_cfg_ctx, 0, 1);
  307. if (MAX_PDEV_CNT > 1)
  308. wlan_cfg_set_hw_macid(wlan_cfg_ctx, 1, 3);
  309. if (MAX_PDEV_CNT > 2)
  310. wlan_cfg_set_hw_macid(wlan_cfg_ctx, 2, 2);
  311. wlan_cfg_ctx->base_hw_macid = cfg_get(psoc, CFG_DP_BASE_HW_MAC_ID);
  312. wlan_cfg_ctx->rx_hash = cfg_get(psoc, CFG_DP_RX_HASH);
  313. wlan_cfg_ctx->tso_enabled = cfg_get(psoc, CFG_DP_TSO);
  314. wlan_cfg_ctx->lro_enabled = cfg_get(psoc, CFG_DP_LRO);
  315. wlan_cfg_ctx->sg_enabled = cfg_get(psoc, CFG_DP_SG);
  316. wlan_cfg_ctx->gro_enabled = cfg_get(psoc, CFG_DP_GRO);
  317. wlan_cfg_ctx->ol_tx_csum_enabled = cfg_get(psoc, CFG_DP_OL_TX_CSUM);
  318. wlan_cfg_ctx->ol_rx_csum_enabled = cfg_get(psoc, CFG_DP_OL_RX_CSUM);
  319. wlan_cfg_ctx->rawmode_enabled = cfg_get(psoc, CFG_DP_RAWMODE);
  320. wlan_cfg_ctx->peer_flow_ctrl_enabled =
  321. cfg_get(psoc, CFG_DP_PEER_FLOW_CTRL);
  322. wlan_cfg_ctx->napi_enabled = cfg_get(psoc, CFG_DP_NAPI);
  323. /*Enable checksum offload by default*/
  324. wlan_cfg_ctx->tcp_udp_checksumoffload =
  325. cfg_get(psoc, CFG_DP_TCP_UDP_CKSUM_OFFLOAD);
  326. wlan_cfg_ctx->per_pkt_trace = cfg_get(psoc, CFG_DP_PER_PKT_LOGGING);
  327. wlan_cfg_ctx->defrag_timeout_check =
  328. cfg_get(psoc, CFG_DP_DEFRAG_TIMEOUT_CHECK);
  329. wlan_cfg_ctx->rx_defrag_min_timeout =
  330. cfg_get(psoc, CFG_DP_RX_DEFRAG_TIMEOUT);
  331. wlan_cfg_ctx->wbm_release_ring = cfg_get(psoc,
  332. CFG_DP_WBM_RELEASE_RING);
  333. wlan_cfg_ctx->tcl_cmd_ring = cfg_get(psoc,
  334. CFG_DP_TCL_CMD_RING);
  335. wlan_cfg_ctx->tcl_status_ring = cfg_get(psoc,
  336. CFG_DP_TCL_STATUS_RING);
  337. wlan_cfg_ctx->reo_reinject_ring = cfg_get(psoc,
  338. CFG_DP_REO_REINJECT_RING);
  339. wlan_cfg_ctx->rx_release_ring = cfg_get(psoc,
  340. CFG_DP_RX_RELEASE_RING);
  341. wlan_cfg_ctx->reo_exception_ring = cfg_get(psoc,
  342. CFG_DP_REO_EXCEPTION_RING);
  343. wlan_cfg_ctx->reo_cmd_ring = cfg_get(psoc,
  344. CFG_DP_REO_CMD_RING);
  345. wlan_cfg_ctx->reo_status_ring = cfg_get(psoc,
  346. CFG_DP_REO_STATUS_RING);
  347. wlan_cfg_ctx->rxdma_refill_ring = cfg_get(psoc,
  348. CFG_DP_RXDMA_REFILL_RING);
  349. wlan_cfg_ctx->rxdma_err_dst_ring = cfg_get(psoc,
  350. CFG_DP_RXDMA_ERR_DST_RING);
  351. wlan_cfg_ctx->enable_data_stall_detection =
  352. cfg_get(psoc, CFG_DP_ENABLE_DATA_STALL_DETECTION);
  353. wlan_cfg_ctx->tx_flow_start_queue_offset =
  354. cfg_get(psoc, CFG_DP_TX_FLOW_START_QUEUE_OFFSET);
  355. wlan_cfg_ctx->tx_flow_stop_queue_threshold =
  356. cfg_get(psoc, CFG_DP_TX_FLOW_STOP_QUEUE_TH);
  357. wlan_cfg_ctx->disable_intra_bss_fwd =
  358. cfg_get(psoc, CFG_DP_AP_STA_SECURITY_SEPERATION);
  359. return wlan_cfg_ctx;
  360. }
  361. void wlan_cfg_soc_detach(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
  362. {
  363. qdf_mem_free(wlan_cfg_ctx);
  364. }
  365. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_pdev_attach(void *psoc)
  366. {
  367. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx =
  368. qdf_mem_malloc(sizeof(struct wlan_cfg_dp_pdev_ctxt));
  369. if (!wlan_cfg_ctx)
  370. return NULL;
  371. wlan_cfg_ctx->rx_dma_buf_ring_size = cfg_get(psoc,
  372. CFG_DP_RXDMA_BUF_RING);
  373. wlan_cfg_ctx->dma_mon_buf_ring_size = cfg_get(psoc,
  374. CFG_DP_RXDMA_MONITOR_BUF_RING);
  375. wlan_cfg_ctx->dma_mon_dest_ring_size = cfg_get(psoc,
  376. CFG_DP_RXDMA_MONITOR_DST_RING);
  377. wlan_cfg_ctx->dma_mon_status_ring_size = cfg_get(psoc,
  378. CFG_DP_RXDMA_MONITOR_STATUS_RING);
  379. wlan_cfg_ctx->rxdma_monitor_desc_ring = cfg_get(psoc,
  380. CFG_DP_RXDMA_MONITOR_DESC_RING);
  381. wlan_cfg_ctx->num_mac_rings = NUM_RXDMA_RINGS_PER_PDEV;
  382. return wlan_cfg_ctx;
  383. }
  384. void wlan_cfg_pdev_detach(struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx)
  385. {
  386. if (wlan_cfg_ctx)
  387. qdf_mem_free(wlan_cfg_ctx);
  388. }
  389. void wlan_cfg_set_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg, int num)
  390. {
  391. cfg->num_int_ctxts = num;
  392. }
  393. void wlan_cfg_set_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val)
  394. {
  395. cfg->max_peer_id = val;
  396. }
  397. void wlan_cfg_set_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val)
  398. {
  399. cfg->max_ast_idx = val;
  400. }
  401. int wlan_cfg_get_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg)
  402. {
  403. return cfg->max_ast_idx;
  404. }
  405. void wlan_cfg_set_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  406. int context, int mask)
  407. {
  408. cfg->int_tx_ring_mask[context] = mask;
  409. }
  410. void wlan_cfg_set_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  411. int context, int mask)
  412. {
  413. cfg->int_rx_ring_mask[context] = mask;
  414. }
  415. void wlan_cfg_set_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  416. int context, int mask)
  417. {
  418. cfg->int_rx_mon_ring_mask[context] = mask;
  419. }
  420. int wlan_cfg_get_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  421. int context)
  422. {
  423. return cfg->int_host2rxdma_mon_ring_mask[context];
  424. }
  425. void wlan_cfg_set_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  426. int context, int mask)
  427. {
  428. cfg->int_host2rxdma_mon_ring_mask[context] = mask;
  429. }
  430. int wlan_cfg_get_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  431. int context)
  432. {
  433. return cfg->int_rxdma2host_mon_ring_mask[context];
  434. }
  435. void wlan_cfg_set_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  436. int context, int mask)
  437. {
  438. cfg->int_rxdma2host_mon_ring_mask[context] = mask;
  439. }
  440. void wlan_cfg_set_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  441. int context, int mask)
  442. {
  443. cfg->int_rxdma2host_ring_mask[context] = mask;
  444. }
  445. int wlan_cfg_get_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  446. int context)
  447. {
  448. return cfg->int_rxdma2host_ring_mask[context];
  449. }
  450. void wlan_cfg_set_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  451. int context, int mask)
  452. {
  453. cfg->int_host2rxdma_ring_mask[context] = mask;
  454. }
  455. int wlan_cfg_get_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  456. int context)
  457. {
  458. return cfg->int_host2rxdma_ring_mask[context];
  459. }
  460. void wlan_cfg_set_hw_macid(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx,
  461. int hw_macid)
  462. {
  463. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  464. cfg->hw_macid[pdev_idx] = hw_macid;
  465. }
  466. int wlan_cfg_get_hw_macid(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx)
  467. {
  468. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  469. return cfg->hw_macid[pdev_idx];
  470. }
  471. int wlan_cfg_get_hw_mac_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx)
  472. {
  473. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  474. return cfg->hw_macid[pdev_idx] - cfg->base_hw_macid;
  475. }
  476. void wlan_cfg_set_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  477. int context, int mask)
  478. {
  479. cfg->int_ce_ring_mask[context] = mask;
  480. }
  481. void wlan_cfg_set_rxbuf_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context,
  482. int mask)
  483. {
  484. cfg->int_rx_ring_mask[context] = mask;
  485. }
  486. int wlan_cfg_set_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  487. int context, int mask)
  488. {
  489. return cfg->int_rx_err_ring_mask[context] = mask;
  490. }
  491. int wlan_cfg_set_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  492. int context, int mask)
  493. {
  494. return cfg->int_rx_wbm_rel_ring_mask[context] = mask;
  495. }
  496. int wlan_cfg_set_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  497. int context, int mask)
  498. {
  499. return cfg->int_reo_status_ring_mask[context] = mask;
  500. }
  501. int wlan_cfg_get_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg)
  502. {
  503. return cfg->num_int_ctxts;
  504. }
  505. int wlan_cfg_get_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  506. {
  507. return cfg->int_tx_ring_mask[context];
  508. }
  509. int wlan_cfg_get_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  510. {
  511. return cfg->int_rx_ring_mask[context];
  512. }
  513. int wlan_cfg_get_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  514. int context)
  515. {
  516. return cfg->int_rx_err_ring_mask[context];
  517. }
  518. int wlan_cfg_get_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  519. int context)
  520. {
  521. return cfg->int_rx_wbm_rel_ring_mask[context];
  522. }
  523. int wlan_cfg_get_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  524. int context)
  525. {
  526. return cfg->int_reo_status_ring_mask[context];
  527. }
  528. int wlan_cfg_get_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  529. {
  530. return cfg->int_rx_mon_ring_mask[context];
  531. }
  532. int wlan_cfg_get_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  533. {
  534. return cfg->int_ce_ring_mask[context];
  535. }
  536. uint32_t wlan_cfg_get_max_clients(struct wlan_cfg_dp_soc_ctxt *cfg)
  537. {
  538. return cfg->max_clients;
  539. }
  540. uint32_t wlan_cfg_max_alloc_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  541. {
  542. return cfg->max_alloc_size;
  543. }
  544. int wlan_cfg_per_pdev_tx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  545. {
  546. return cfg->per_pdev_tx_ring;
  547. }
  548. int wlan_cfg_per_pdev_lmac_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  549. {
  550. return cfg->per_pdev_lmac_ring;
  551. }
  552. int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
  553. {
  554. return cfg->num_tcl_data_rings;
  555. }
  556. int wlan_cfg_tx_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  557. {
  558. return cfg->tx_ring_size;
  559. }
  560. int wlan_cfg_tx_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  561. {
  562. return cfg->tx_comp_ring_size;
  563. }
  564. int wlan_cfg_per_pdev_rx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  565. {
  566. return cfg->per_pdev_rx_ring;
  567. }
  568. int wlan_cfg_num_reo_dest_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
  569. {
  570. return cfg->num_reo_dest_rings;
  571. }
  572. int wlan_cfg_pkt_type(struct wlan_cfg_dp_soc_ctxt *cfg)
  573. {
  574. return cfg->htt_packet_type; /*htt_pkt_type_ethernet*/
  575. }
  576. int wlan_cfg_get_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
  577. {
  578. return cfg->num_tx_desc_pool;
  579. }
  580. void wlan_cfg_set_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool)
  581. {
  582. cfg->num_tx_desc_pool = num_pool;
  583. }
  584. int wlan_cfg_get_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
  585. {
  586. return cfg->num_tx_ext_desc_pool;
  587. }
  588. void wlan_cfg_set_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool)
  589. {
  590. cfg->num_tx_ext_desc_pool = num_pool;
  591. }
  592. int wlan_cfg_get_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  593. {
  594. return cfg->reo_dst_ring_size;
  595. }
  596. void wlan_cfg_set_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg,
  597. int reo_dst_ring_size)
  598. {
  599. cfg->reo_dst_ring_size = reo_dst_ring_size;
  600. }
  601. void wlan_cfg_set_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg,
  602. bool raw_mode_war)
  603. {
  604. cfg->raw_mode_war = raw_mode_war;
  605. }
  606. bool wlan_cfg_get_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg)
  607. {
  608. return cfg->raw_mode_war;
  609. }
  610. int wlan_cfg_get_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  611. {
  612. return cfg->num_tx_desc;
  613. }
  614. void wlan_cfg_set_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_desc)
  615. {
  616. cfg->num_tx_desc = num_desc;
  617. }
  618. int wlan_cfg_get_min_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  619. {
  620. return cfg->min_tx_desc;
  621. }
  622. int wlan_cfg_get_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  623. {
  624. return cfg->num_tx_ext_desc;
  625. }
  626. void wlan_cfg_set_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_ext_desc)
  627. {
  628. cfg->num_tx_ext_desc = num_ext_desc;
  629. }
  630. uint32_t wlan_cfg_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg)
  631. {
  632. /* TODO: This should be calculated based on target capabilities */
  633. return cfg->max_peer_id;
  634. }
  635. int wlan_cfg_get_dma_mon_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  636. {
  637. return cfg->dma_mon_buf_ring_size;
  638. }
  639. int wlan_cfg_get_dma_mon_dest_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  640. {
  641. return cfg->dma_mon_dest_ring_size;
  642. }
  643. int wlan_cfg_get_dma_mon_stat_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  644. {
  645. return cfg->dma_mon_status_ring_size;
  646. }
  647. int
  648. wlan_cfg_get_dma_mon_desc_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  649. {
  650. return cfg->rxdma_monitor_desc_ring;
  651. }
  652. int wlan_cfg_get_rx_dma_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  653. {
  654. return cfg->rx_dma_buf_ring_size;
  655. }
  656. int wlan_cfg_get_num_mac_rings(struct wlan_cfg_dp_pdev_ctxt *cfg)
  657. {
  658. return cfg->num_mac_rings;
  659. }
  660. bool wlan_cfg_is_gro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  661. {
  662. return cfg->gro_enabled;
  663. }
  664. bool wlan_cfg_is_lro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  665. {
  666. return cfg->lro_enabled;
  667. }
  668. bool wlan_cfg_is_ipa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  669. {
  670. return cfg->ipa_enabled;
  671. }
  672. void wlan_cfg_set_rx_hash(struct wlan_cfg_dp_soc_ctxt *cfg, bool val)
  673. {
  674. cfg->rx_hash = val;
  675. }
  676. bool wlan_cfg_is_rx_hash_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  677. {
  678. return cfg->rx_hash;
  679. }
  680. int wlan_cfg_get_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg)
  681. {
  682. return cfg->nss_enabled;
  683. }
  684. void wlan_cfg_set_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg, int nss_enabled)
  685. {
  686. cfg->nss_enabled = nss_enabled;
  687. }
  688. int wlan_cfg_get_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg)
  689. {
  690. return cfg->nss_cfg;
  691. }
  692. void wlan_cfg_set_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg, int nss_cfg)
  693. {
  694. cfg->nss_cfg = nss_cfg;
  695. if (cfg->nss_cfg)
  696. cfg->tx_comp_ring_size = cfg->tx_comp_ring_size_nss;
  697. }
  698. int wlan_cfg_get_int_batch_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
  699. {
  700. return cfg->int_batch_threshold_tx;
  701. }
  702. int wlan_cfg_get_int_timer_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
  703. {
  704. return cfg->int_timer_threshold_tx;
  705. }
  706. int wlan_cfg_get_int_batch_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
  707. {
  708. return cfg->int_batch_threshold_rx;
  709. }
  710. int wlan_cfg_get_int_timer_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
  711. {
  712. return cfg->int_timer_threshold_rx;
  713. }
  714. int wlan_cfg_get_int_batch_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
  715. {
  716. return cfg->int_batch_threshold_other;
  717. }
  718. int wlan_cfg_get_int_timer_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
  719. {
  720. return cfg->int_timer_threshold_other;
  721. }
  722. int wlan_cfg_get_int_timer_threshold_mon(struct wlan_cfg_dp_soc_ctxt *cfg)
  723. {
  724. return cfg->int_timer_threshold_mon;
  725. }
  726. int wlan_cfg_get_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg)
  727. {
  728. return cfg->tcp_udp_checksumoffload;
  729. }
  730. int wlan_cfg_get_rx_defrag_min_timeout(struct wlan_cfg_dp_soc_ctxt *cfg)
  731. {
  732. return cfg->rx_defrag_min_timeout;
  733. }
  734. int wlan_cfg_get_defrag_timeout_check(struct wlan_cfg_dp_soc_ctxt *cfg)
  735. {
  736. return cfg->defrag_timeout_check;
  737. }
  738. int
  739. wlan_cfg_get_dp_soc_wbm_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  740. {
  741. return cfg->wbm_release_ring;
  742. }
  743. int
  744. wlan_cfg_get_dp_soc_tcl_cmd_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  745. {
  746. return cfg->tcl_cmd_ring;
  747. }
  748. int
  749. wlan_cfg_get_dp_soc_tcl_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  750. {
  751. return cfg->tcl_status_ring;
  752. }
  753. int
  754. wlan_cfg_get_dp_soc_reo_reinject_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  755. {
  756. return cfg->reo_reinject_ring;
  757. }
  758. int
  759. wlan_cfg_get_dp_soc_rx_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  760. {
  761. return cfg->rx_release_ring;
  762. }
  763. int
  764. wlan_cfg_get_dp_soc_reo_exception_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  765. {
  766. return cfg->reo_exception_ring;
  767. }
  768. int
  769. wlan_cfg_get_dp_soc_reo_cmd_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  770. {
  771. return cfg->reo_cmd_ring;
  772. }
  773. int
  774. wlan_cfg_get_dp_soc_reo_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  775. {
  776. return cfg->reo_status_ring;
  777. }
  778. int
  779. wlan_cfg_get_dp_soc_rxdma_refill_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  780. {
  781. return cfg->rxdma_refill_ring;
  782. }
  783. int
  784. wlan_cfg_get_dp_soc_rxdma_err_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  785. {
  786. return cfg->rxdma_err_dst_ring;
  787. }
  788. bool
  789. wlan_cfg_get_dp_caps(struct wlan_cfg_dp_soc_ctxt *cfg,
  790. enum cdp_capabilities dp_caps)
  791. {
  792. switch (dp_caps) {
  793. case CDP_CFG_DP_TSO:
  794. return cfg->tso_enabled;
  795. case CDP_CFG_DP_LRO:
  796. return cfg->lro_enabled;
  797. case CDP_CFG_DP_SG:
  798. return cfg->sg_enabled;
  799. case CDP_CFG_DP_GRO:
  800. return cfg->gro_enabled;
  801. case CDP_CFG_DP_OL_TX_CSUM:
  802. return cfg->ol_tx_csum_enabled;
  803. case CDP_CFG_DP_OL_RX_CSUM:
  804. return cfg->ol_rx_csum_enabled;
  805. case CDP_CFG_DP_RAWMODE:
  806. return cfg->rawmode_enabled;
  807. case CDP_CFG_DP_PEER_FLOW_CTRL:
  808. return cfg->peer_flow_ctrl_enabled;
  809. default:
  810. return false;
  811. }
  812. }
  813. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  814. /**
  815. * wlan_cfg_get_tx_flow_stop_queue_th() - Get flow control stop threshold
  816. * @cfg: config context
  817. *
  818. * Return: stop threshold
  819. */
  820. int wlan_cfg_get_tx_flow_stop_queue_th(struct wlan_cfg_dp_soc_ctxt *cfg)
  821. {
  822. return cfg->tx_flow_stop_queue_threshold;
  823. }
  824. /**
  825. * wlan_cfg_get_tx_flow_start_queue_offset() - Get flow control start offset
  826. * for TX to resume
  827. * @cfg: config context
  828. *
  829. * Return: stop threshold
  830. */
  831. int wlan_cfg_get_tx_flow_start_queue_offset(struct wlan_cfg_dp_soc_ctxt *cfg)
  832. {
  833. return cfg->tx_flow_start_queue_offset;
  834. }
  835. #endif /* QCA_LL_TX_FLOW_CONTROL_V2 */