wlan_cfg.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709
  1. /*
  2. * Copyright (c) 2016-2017 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 "wlan_cfg.h"
  26. /*
  27. * FIX THIS -
  28. * For now, all these configuration parameters are hardcoded.
  29. * Many of these should actually be coming from dts file/ini file
  30. */
  31. #ifdef CONFIG_MCL
  32. #define WLAN_CFG_PER_PDEV_RX_RING 0
  33. #define NUM_RXDMA_RINGS_PER_PDEV 2
  34. #define WLAN_LRO_ENABLE 1
  35. #ifdef IPA_OFFLOAD
  36. #define WLAN_CFG_TX_RING_SIZE 2048
  37. #else
  38. #define WLAN_CFG_TX_RING_SIZE 512
  39. #endif
  40. #define WLAN_CFG_TX_COMP_RING_SIZE 1024
  41. /* Tx Descriptor and Tx Extension Descriptor pool sizes */
  42. #define WLAN_CFG_NUM_TX_DESC 1024
  43. #define WLAN_CFG_NUM_TX_EXT_DESC 1024
  44. /* Interrupt Mitigation - Batch threshold in terms of number of frames */
  45. #define WLAN_CFG_INT_BATCH_THRESHOLD_TX 1
  46. #define WLAN_CFG_INT_BATCH_THRESHOLD_RX 1
  47. #define WLAN_CFG_INT_BATCH_THRESHOLD_OTHER 1
  48. /* Interrupt Mitigation - Timer threshold in us */
  49. #define WLAN_CFG_INT_TIMER_THRESHOLD_TX 8
  50. #define WLAN_CFG_INT_TIMER_THRESHOLD_RX 8
  51. #define WLAN_CFG_INT_TIMER_THRESHOLD_OTHER 8
  52. #endif
  53. #ifdef CONFIG_WIN
  54. #define WLAN_CFG_PER_PDEV_RX_RING 0
  55. #define NUM_RXDMA_RINGS_PER_PDEV 1
  56. #define WLAN_LRO_ENABLE 0
  57. /* Tx Descriptor and Tx Extension Descriptor pool sizes */
  58. #define WLAN_CFG_NUM_TX_DESC (32 << 10)
  59. #define WLAN_CFG_NUM_TX_EXT_DESC (8 << 10)
  60. /* Interrupt Mitigation - Batch threshold in terms of number of frames */
  61. #define WLAN_CFG_INT_BATCH_THRESHOLD_TX 256
  62. #define WLAN_CFG_INT_BATCH_THRESHOLD_RX 128
  63. #define WLAN_CFG_INT_BATCH_THRESHOLD_OTHER 1
  64. /* Interrupt Mitigation - Timer threshold in us */
  65. #define WLAN_CFG_INT_TIMER_THRESHOLD_TX 1000
  66. #define WLAN_CFG_INT_TIMER_THRESHOLD_RX 500
  67. #define WLAN_CFG_INT_TIMER_THRESHOLD_OTHER 1000
  68. #define WLAN_CFG_TX_RING_SIZE 512
  69. /* Size the completion ring using following 2 parameters
  70. * - NAPI schedule latency (assuming 1 netdev competing for CPU) = 20 ms (2 jiffies)
  71. * - Worst case PPS requirement = 400K PPS
  72. *
  73. * Ring size = 20 * 400 = 8000
  74. * 8192 is nearest power of 2
  75. */
  76. #define WLAN_CFG_TX_COMP_RING_SIZE (8 << 10)
  77. #endif
  78. /*
  79. * The max allowed size for tx comp ring is 8191.
  80. * This is limitted by h/w ring max size.
  81. * As this is not a power of 2 it does not work with nss offload so the
  82. * nearest available size which is power of 2 is 4096 choosen for nss
  83. */
  84. #define NSS_TX_COMP_RING_SIZE (4 << 10)
  85. #define RXDMA_BUF_RING_SIZE 2048
  86. #define RXDMA_MONITOR_BUF_RING_SIZE 2048
  87. #define RXDMA_MONITOR_DEST_RING_SIZE 2048
  88. #define RXDMA_MONITOR_STATUS_RING_SIZE 2048
  89. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  90. /* Per vdev pools */
  91. #define WLAN_CFG_NUM_TX_DESC_POOL 3
  92. #define WLAN_CFG_NUM_TXEXT_DESC_POOL 3
  93. #else /* QCA_LL_TX_FLOW_CONTROL_V2 */
  94. #ifdef TX_PER_PDEV_DESC_POOL
  95. #define WLAN_CFG_NUM_TX_DESC_POOL MAX_PDEV_CNT
  96. #define WLAN_CFG_NUM_TXEXT_DESC_POOL MAX_PDEV_CNT
  97. #else /* TX_PER_PDEV_DESC_POOL */
  98. #define WLAN_CFG_NUM_TX_DESC_POOL 3
  99. #define WLAN_CFG_NUM_TXEXT_DESC_POOL 3
  100. #endif /* TX_PER_PDEV_DESC_POOL */
  101. #endif /* QCA_LL_TX_FLOW_CONTROL_V2 */
  102. #define WLAN_CFG_TX_RING_MASK_0 0x1
  103. #define WLAN_CFG_TX_RING_MASK_1 0x2
  104. #define WLAN_CFG_TX_RING_MASK_2 0x4
  105. #define WLAN_CFG_TX_RING_MASK_3 0x0
  106. #define WLAN_CFG_RX_RING_MASK_0 0x1
  107. #define WLAN_CFG_RX_RING_MASK_1 0x2
  108. #define WLAN_CFG_RX_RING_MASK_2 0x4
  109. #define WLAN_CFG_RX_RING_MASK_3 0x8
  110. #define WLAN_CFG_RX_MON_RING_MASK_0 0x1
  111. #define WLAN_CFG_RX_MON_RING_MASK_1 0x2
  112. #define WLAN_CFG_RX_MON_RING_MASK_2 0x4
  113. #define WLAN_CFG_RX_MON_RING_MASK_3 0x0
  114. #define WLAN_CFG_RX_ERR_RING_MASK_0 0x1
  115. #define WLAN_CFG_RX_ERR_RING_MASK_1 0x0
  116. #define WLAN_CFG_RX_ERR_RING_MASK_2 0x0
  117. #define WLAN_CFG_RX_ERR_RING_MASK_3 0x0
  118. #define WLAN_CFG_RX_WBM_REL_RING_MASK_0 0x1
  119. #define WLAN_CFG_RX_WBM_REL_RING_MASK_1 0x0
  120. #define WLAN_CFG_RX_WBM_REL_RING_MASK_2 0x0
  121. #define WLAN_CFG_RX_WBM_REL_RING_MASK_3 0x0
  122. #define WLAN_CFG_REO_STATUS_RING_MASK_0 0x1
  123. #define WLAN_CFG_REO_STATUS_RING_MASK_1 0x0
  124. #define WLAN_CFG_REO_STATUS_RING_MASK_2 0x0
  125. #define WLAN_CFG_REO_STATUS_RING_MASK_3 0x0
  126. #define WLAN_CFG_RXDMA2HOST_RING_MASK_0 0x1
  127. #define WLAN_CFG_RXDMA2HOST_RING_MASK_1 0x2
  128. #define WLAN_CFG_RXDMA2HOST_RING_MASK_2 0x4
  129. #define WLAN_CFG_RXDMA2HOST_RING_MASK_3 0x0
  130. #define WLAN_CFG_HOST2RXDMA_RING_MASK_0 0x1
  131. #define WLAN_CFG_HOST2RXDMA_RING_MASK_1 0x2
  132. #define WLAN_CFG_HOST2RXDMA_RING_MASK_2 0x4
  133. #define WLAN_CFG_HOST2RXDMA_RING_MASK_3 0x0
  134. #define WLAN_CFG_DP_TX_NUM_POOLS 3
  135. /* Change this to a lower value to enforce scattered idle list mode */
  136. #define WLAN_CFG_MAX_ALLOC_SIZE (2 << 20)
  137. #define WLAN_CFG_MAX_CLIENTS 64
  138. #ifdef CONFIG_MCL
  139. #ifdef IPA_OFFLOAD
  140. #define WLAN_CFG_PER_PDEV_TX_RING 0
  141. #else
  142. #define WLAN_CFG_PER_PDEV_TX_RING 1
  143. #endif
  144. #else
  145. #define WLAN_CFG_PER_PDEV_TX_RING 0
  146. #endif
  147. #define WLAN_CFG_NUM_TCL_DATA_RINGS 3
  148. #define WLAN_CFG_NUM_REO_DEST_RING 4
  149. #define WLAN_CFG_HTT_PKT_TYPE 2
  150. #define WLAN_CFG_MAX_PEER_ID 64
  151. #ifdef CONFIG_MCL
  152. static const int tx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  153. 0,
  154. WLAN_CFG_TX_RING_MASK_0,
  155. 0,
  156. 0,
  157. 0,
  158. 0,
  159. 0};
  160. static const int rx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  161. 0,
  162. 0,
  163. WLAN_CFG_RX_RING_MASK_0,
  164. 0,
  165. WLAN_CFG_RX_RING_MASK_1,
  166. WLAN_CFG_RX_RING_MASK_2,
  167. WLAN_CFG_RX_RING_MASK_3};
  168. static const int rx_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  169. 0,
  170. 0,
  171. 0,
  172. WLAN_CFG_RX_MON_RING_MASK_0,
  173. WLAN_CFG_RX_MON_RING_MASK_1,
  174. WLAN_CFG_RX_MON_RING_MASK_2,
  175. WLAN_CFG_RX_MON_RING_MASK_3};
  176. #else
  177. static const int tx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  178. WLAN_CFG_TX_RING_MASK_0,
  179. WLAN_CFG_TX_RING_MASK_1,
  180. WLAN_CFG_TX_RING_MASK_2,
  181. WLAN_CFG_TX_RING_MASK_3};
  182. static const int rx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  183. WLAN_CFG_RX_RING_MASK_0,
  184. WLAN_CFG_RX_RING_MASK_1,
  185. WLAN_CFG_RX_RING_MASK_2,
  186. WLAN_CFG_RX_RING_MASK_3};
  187. static const int rx_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  188. WLAN_CFG_RX_MON_RING_MASK_0,
  189. WLAN_CFG_RX_MON_RING_MASK_1,
  190. WLAN_CFG_RX_MON_RING_MASK_2,
  191. WLAN_CFG_RX_MON_RING_MASK_3};
  192. #endif
  193. static const int rx_err_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  194. WLAN_CFG_RX_ERR_RING_MASK_0,
  195. WLAN_CFG_RX_ERR_RING_MASK_1,
  196. WLAN_CFG_RX_ERR_RING_MASK_2,
  197. WLAN_CFG_RX_ERR_RING_MASK_3};
  198. static const int rx_wbm_rel_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  199. WLAN_CFG_RX_WBM_REL_RING_MASK_0,
  200. WLAN_CFG_RX_WBM_REL_RING_MASK_1,
  201. WLAN_CFG_RX_WBM_REL_RING_MASK_2,
  202. WLAN_CFG_RX_WBM_REL_RING_MASK_3};
  203. static const int reo_status_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  204. WLAN_CFG_REO_STATUS_RING_MASK_0,
  205. WLAN_CFG_REO_STATUS_RING_MASK_1,
  206. WLAN_CFG_REO_STATUS_RING_MASK_2,
  207. WLAN_CFG_REO_STATUS_RING_MASK_3};
  208. static const int rxdma2host_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  209. WLAN_CFG_RXDMA2HOST_RING_MASK_0,
  210. WLAN_CFG_RXDMA2HOST_RING_MASK_1,
  211. WLAN_CFG_RXDMA2HOST_RING_MASK_2,
  212. WLAN_CFG_RXDMA2HOST_RING_MASK_3};
  213. static const int host2rxdma_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS] = {
  214. WLAN_CFG_HOST2RXDMA_RING_MASK_0,
  215. WLAN_CFG_HOST2RXDMA_RING_MASK_1,
  216. WLAN_CFG_HOST2RXDMA_RING_MASK_2,
  217. WLAN_CFG_HOST2RXDMA_RING_MASK_3};
  218. /**
  219. * struct wlan_cfg_dp_pdev_ctxt - Configuration parameters for pdev (radio)
  220. * @rx_dma_buf_ring_size - Size of RxDMA buffer ring
  221. * @dma_mon_buf_ring_size - Size of RxDMA Monitor buffer ring
  222. * @dma_mon_dest_ring_size - Size of RxDMA Monitor Destination ring
  223. * @dma_mon_status_ring_size - Size of RxDMA Monitor Status ring
  224. */
  225. struct wlan_cfg_dp_pdev_ctxt {
  226. int rx_dma_buf_ring_size;
  227. int dma_mon_buf_ring_size;
  228. int dma_mon_dest_ring_size;
  229. int dma_mon_status_ring_size;
  230. int num_mac_rings;
  231. int nss_enabled;
  232. };
  233. /**
  234. * wlan_cfg_soc_attach() - Allocate and prepare SoC configuration
  235. *
  236. * Return: wlan_cfg_ctx - Handle to Configuration context
  237. */
  238. struct wlan_cfg_dp_soc_ctxt *wlan_cfg_soc_attach()
  239. {
  240. int i = 0;
  241. struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx =
  242. qdf_mem_malloc(sizeof(struct wlan_cfg_dp_soc_ctxt));
  243. if (wlan_cfg_ctx == NULL)
  244. return NULL;
  245. wlan_cfg_ctx->num_int_ctxts = WLAN_CFG_INT_NUM_CONTEXTS;
  246. wlan_cfg_ctx->max_clients = WLAN_CFG_MAX_CLIENTS;
  247. wlan_cfg_ctx->max_alloc_size = WLAN_CFG_MAX_ALLOC_SIZE;
  248. wlan_cfg_ctx->per_pdev_tx_ring = WLAN_CFG_PER_PDEV_TX_RING;
  249. wlan_cfg_ctx->num_tcl_data_rings = WLAN_CFG_NUM_TCL_DATA_RINGS;
  250. wlan_cfg_ctx->per_pdev_rx_ring = WLAN_CFG_PER_PDEV_RX_RING;
  251. wlan_cfg_ctx->num_reo_dest_rings = WLAN_CFG_NUM_REO_DEST_RING;
  252. wlan_cfg_ctx->num_tx_desc_pool = MAX_TXDESC_POOLS;
  253. wlan_cfg_ctx->num_tx_ext_desc_pool = WLAN_CFG_NUM_TXEXT_DESC_POOL;
  254. wlan_cfg_ctx->num_tx_desc = WLAN_CFG_NUM_TX_DESC;
  255. wlan_cfg_ctx->num_tx_ext_desc = WLAN_CFG_NUM_TX_EXT_DESC;
  256. wlan_cfg_ctx->htt_packet_type = WLAN_CFG_HTT_PKT_TYPE;
  257. wlan_cfg_ctx->max_peer_id = WLAN_CFG_MAX_PEER_ID;
  258. wlan_cfg_ctx->tx_ring_size = WLAN_CFG_TX_RING_SIZE;
  259. wlan_cfg_ctx->tx_comp_ring_size = WLAN_CFG_TX_COMP_RING_SIZE;
  260. wlan_cfg_ctx->int_batch_threshold_tx = WLAN_CFG_INT_BATCH_THRESHOLD_TX;
  261. wlan_cfg_ctx->int_timer_threshold_tx = WLAN_CFG_INT_TIMER_THRESHOLD_TX;
  262. wlan_cfg_ctx->int_batch_threshold_rx = WLAN_CFG_INT_BATCH_THRESHOLD_RX;
  263. wlan_cfg_ctx->int_timer_threshold_rx = WLAN_CFG_INT_TIMER_THRESHOLD_RX;
  264. wlan_cfg_ctx->int_batch_threshold_other =
  265. WLAN_CFG_INT_BATCH_THRESHOLD_OTHER;
  266. wlan_cfg_ctx->int_timer_threshold_other =
  267. WLAN_CFG_INT_TIMER_THRESHOLD_OTHER;
  268. for (i = 0; i < WLAN_CFG_INT_NUM_CONTEXTS; i++) {
  269. wlan_cfg_ctx->int_tx_ring_mask[i] = tx_ring_mask[i];
  270. wlan_cfg_ctx->int_rx_ring_mask[i] = rx_ring_mask[i];
  271. wlan_cfg_ctx->int_rx_mon_ring_mask[i] = rx_mon_ring_mask[i];
  272. wlan_cfg_ctx->int_rx_err_ring_mask[i] = rx_err_ring_mask[i];
  273. wlan_cfg_ctx->int_rx_wbm_rel_ring_mask[i] =
  274. rx_wbm_rel_ring_mask[i];
  275. wlan_cfg_ctx->int_reo_status_ring_mask[i] =
  276. reo_status_ring_mask[i];
  277. wlan_cfg_ctx->int_rxdma2host_ring_mask[i] =
  278. rxdma2host_ring_mask[i];
  279. wlan_cfg_ctx->int_host2rxdma_ring_mask[i] =
  280. host2rxdma_ring_mask[i];
  281. }
  282. /* This is default mapping and can be overridden by HW config
  283. * received from FW */
  284. wlan_cfg_set_hw_macid(wlan_cfg_ctx, 0, 1);
  285. if (MAX_PDEV_CNT > 1)
  286. wlan_cfg_set_hw_macid(wlan_cfg_ctx, 1, 3);
  287. if (MAX_PDEV_CNT > 2)
  288. wlan_cfg_set_hw_macid(wlan_cfg_ctx, 2, 2);
  289. wlan_cfg_ctx->base_hw_macid = 1;
  290. return wlan_cfg_ctx;
  291. }
  292. void wlan_cfg_soc_detach(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx)
  293. {
  294. qdf_mem_free(wlan_cfg_ctx);
  295. }
  296. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_pdev_attach(void)
  297. {
  298. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx =
  299. qdf_mem_malloc(sizeof(struct wlan_cfg_dp_pdev_ctxt));
  300. if (wlan_cfg_ctx == NULL)
  301. return NULL;
  302. wlan_cfg_ctx->rx_dma_buf_ring_size = RXDMA_BUF_RING_SIZE;
  303. wlan_cfg_ctx->dma_mon_buf_ring_size = RXDMA_MONITOR_BUF_RING_SIZE;
  304. wlan_cfg_ctx->dma_mon_dest_ring_size = RXDMA_MONITOR_DEST_RING_SIZE;
  305. wlan_cfg_ctx->dma_mon_status_ring_size = RXDMA_MONITOR_STATUS_RING_SIZE;
  306. wlan_cfg_ctx->num_mac_rings = NUM_RXDMA_RINGS_PER_PDEV;
  307. return wlan_cfg_ctx;
  308. }
  309. void wlan_cfg_pdev_detach(struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_ctx)
  310. {
  311. qdf_mem_free(wlan_cfg_ctx);
  312. }
  313. void wlan_cfg_set_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg, int num)
  314. {
  315. cfg->num_int_ctxts = num;
  316. }
  317. void wlan_cfg_set_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val)
  318. {
  319. cfg->max_peer_id = val;;
  320. }
  321. void wlan_cfg_set_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  322. int context, int mask)
  323. {
  324. cfg->int_tx_ring_mask[context] = mask;
  325. }
  326. void wlan_cfg_set_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  327. int context, int mask)
  328. {
  329. cfg->int_rx_ring_mask[context] = mask;
  330. }
  331. void wlan_cfg_set_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  332. int context, int mask)
  333. {
  334. cfg->int_rx_mon_ring_mask[context] = mask;
  335. }
  336. void wlan_cfg_set_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  337. int context, int mask)
  338. {
  339. cfg->int_rxdma2host_ring_mask[context] = mask;
  340. }
  341. int wlan_cfg_get_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  342. int context)
  343. {
  344. return cfg->int_rxdma2host_ring_mask[context];
  345. }
  346. void wlan_cfg_set_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  347. int context, int mask)
  348. {
  349. cfg->int_host2rxdma_ring_mask[context] = mask;
  350. }
  351. int wlan_cfg_get_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  352. int context)
  353. {
  354. return cfg->int_host2rxdma_ring_mask[context];
  355. }
  356. void wlan_cfg_set_hw_macid(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx,
  357. int hw_macid)
  358. {
  359. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  360. cfg->hw_macid[pdev_idx] = hw_macid;
  361. }
  362. int wlan_cfg_get_hw_macid(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx)
  363. {
  364. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  365. return cfg->hw_macid[pdev_idx];
  366. }
  367. int wlan_cfg_get_hw_mac_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx)
  368. {
  369. qdf_assert_always(pdev_idx < MAX_PDEV_CNT);
  370. return cfg->hw_macid[pdev_idx] - cfg->base_hw_macid;
  371. }
  372. void wlan_cfg_set_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  373. int context, int mask)
  374. {
  375. cfg->int_ce_ring_mask[context] = mask;
  376. }
  377. void wlan_cfg_set_rxbuf_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context,
  378. int mask)
  379. {
  380. cfg->int_rx_ring_mask[context] = mask;
  381. }
  382. int wlan_cfg_set_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  383. int context, int mask)
  384. {
  385. return cfg->int_rx_err_ring_mask[context] = mask;
  386. }
  387. int wlan_cfg_set_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  388. int context, int mask)
  389. {
  390. return cfg->int_rx_wbm_rel_ring_mask[context] = mask;
  391. }
  392. int wlan_cfg_set_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  393. int context, int mask)
  394. {
  395. return cfg->int_reo_status_ring_mask[context] = mask;
  396. }
  397. int wlan_cfg_get_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg)
  398. {
  399. return cfg->num_int_ctxts;
  400. }
  401. int wlan_cfg_get_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  402. {
  403. return cfg->int_tx_ring_mask[context];
  404. }
  405. int wlan_cfg_get_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  406. {
  407. return cfg->int_rx_ring_mask[context];
  408. }
  409. int wlan_cfg_get_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  410. int context)
  411. {
  412. return cfg->int_rx_err_ring_mask[context];
  413. }
  414. int wlan_cfg_get_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  415. int context)
  416. {
  417. return cfg->int_rx_wbm_rel_ring_mask[context];
  418. }
  419. int wlan_cfg_get_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  420. int context)
  421. {
  422. return cfg->int_reo_status_ring_mask[context];
  423. }
  424. int wlan_cfg_get_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  425. {
  426. return cfg->int_rx_mon_ring_mask[context];
  427. }
  428. int wlan_cfg_get_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context)
  429. {
  430. return cfg->int_ce_ring_mask[context];
  431. }
  432. uint32_t wlan_cfg_get_max_clients(struct wlan_cfg_dp_soc_ctxt *cfg)
  433. {
  434. return cfg->max_clients;
  435. }
  436. uint32_t wlan_cfg_max_alloc_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  437. {
  438. return cfg->max_alloc_size;
  439. }
  440. int wlan_cfg_per_pdev_tx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  441. {
  442. return cfg->per_pdev_tx_ring;
  443. }
  444. int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
  445. {
  446. return cfg->num_tcl_data_rings;
  447. }
  448. int wlan_cfg_tx_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  449. {
  450. return cfg->tx_ring_size;
  451. }
  452. int wlan_cfg_tx_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg)
  453. {
  454. return cfg->tx_comp_ring_size;
  455. }
  456. int wlan_cfg_per_pdev_rx_ring(struct wlan_cfg_dp_soc_ctxt *cfg)
  457. {
  458. return cfg->per_pdev_rx_ring;
  459. }
  460. int wlan_cfg_num_reo_dest_rings(struct wlan_cfg_dp_soc_ctxt *cfg)
  461. {
  462. return cfg->num_reo_dest_rings;
  463. }
  464. int wlan_cfg_pkt_type(struct wlan_cfg_dp_soc_ctxt *cfg)
  465. {
  466. return cfg->htt_packet_type; /*htt_pkt_type_ethernet*/
  467. }
  468. int wlan_cfg_get_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
  469. {
  470. return cfg->num_tx_desc_pool;
  471. }
  472. int wlan_cfg_get_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg)
  473. {
  474. return cfg->num_tx_ext_desc_pool;
  475. }
  476. int wlan_cfg_get_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  477. {
  478. return cfg->num_tx_desc;
  479. }
  480. int wlan_cfg_get_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg)
  481. {
  482. return cfg->num_tx_ext_desc;
  483. }
  484. uint32_t wlan_cfg_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg)
  485. {
  486. /* TODO: This should be calculated based on target capabilities */
  487. return cfg->max_peer_id;
  488. }
  489. int wlan_cfg_get_dma_mon_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  490. {
  491. return cfg->dma_mon_buf_ring_size;
  492. }
  493. int wlan_cfg_get_dma_mon_dest_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  494. {
  495. return cfg->dma_mon_dest_ring_size;
  496. }
  497. int wlan_cfg_get_dma_mon_stat_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  498. {
  499. return cfg->dma_mon_status_ring_size;
  500. }
  501. int wlan_cfg_get_rx_dma_buf_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg)
  502. {
  503. return cfg->rx_dma_buf_ring_size;
  504. }
  505. int wlan_cfg_get_num_mac_rings(struct wlan_cfg_dp_pdev_ctxt *cfg)
  506. {
  507. return cfg->num_mac_rings;
  508. }
  509. bool wlan_cfg_is_lro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  510. {
  511. return cfg->lro_enabled;
  512. }
  513. void wlan_cfg_set_rx_hash(struct wlan_cfg_dp_soc_ctxt *cfg, bool val)
  514. {
  515. cfg->rx_hash = val;
  516. }
  517. bool wlan_cfg_is_rx_hash_enabled(struct wlan_cfg_dp_soc_ctxt *cfg)
  518. {
  519. return cfg->rx_hash;
  520. }
  521. int wlan_cfg_get_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg)
  522. {
  523. return cfg->nss_enabled;
  524. }
  525. void wlan_cfg_set_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg, int nss_enabled)
  526. {
  527. cfg->nss_enabled = nss_enabled;
  528. }
  529. int wlan_cfg_get_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg)
  530. {
  531. return cfg->nss_cfg;
  532. }
  533. void wlan_cfg_set_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg, int nss_cfg)
  534. {
  535. cfg->nss_cfg = nss_cfg;
  536. if (cfg->nss_cfg)
  537. cfg->tx_comp_ring_size = NSS_TX_COMP_RING_SIZE;
  538. }
  539. int wlan_cfg_get_int_batch_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
  540. {
  541. return cfg->int_batch_threshold_tx;
  542. }
  543. int wlan_cfg_get_int_timer_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg)
  544. {
  545. return cfg->int_timer_threshold_tx;
  546. }
  547. int wlan_cfg_get_int_batch_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
  548. {
  549. return cfg->int_batch_threshold_rx;
  550. }
  551. int wlan_cfg_get_int_timer_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
  552. {
  553. return cfg->int_timer_threshold_rx;
  554. }
  555. int wlan_cfg_get_int_batch_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
  556. {
  557. return cfg->int_batch_threshold_other;
  558. }
  559. int wlan_cfg_get_int_timer_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg)
  560. {
  561. return cfg->int_timer_threshold_other;
  562. }
  563. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  564. /**
  565. * wlan_cfg_get_tx_flow_stop_queue_th() - Get flow control stop threshold
  566. * @cfg: config context
  567. *
  568. * Return: stop threshold
  569. */
  570. int wlan_cfg_get_tx_flow_stop_queue_th(struct wlan_cfg_dp_soc_ctxt *cfg)
  571. {
  572. return cfg->tx_flow_stop_queue_threshold;
  573. }
  574. /**
  575. * wlan_cfg_get_tx_flow_start_queue_offset() - Get flow control start offset
  576. * for TX to resume
  577. * @cfg: config context
  578. *
  579. * Return: stop threshold
  580. */
  581. int wlan_cfg_get_tx_flow_start_queue_offset(struct wlan_cfg_dp_soc_ctxt *cfg)
  582. {
  583. return cfg->tx_flow_start_queue_offset;
  584. }
  585. #endif /* QCA_LL_TX_FLOW_CONTROL_V2 */