wlan_cfg.c 19 KB

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