wlan_cfg.h 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232
  1. /*
  2. * Copyright (c) 2013-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef __WLAN_CFG_H
  19. #define __WLAN_CFG_H
  20. /*
  21. * Temporary place holders. These should come either from target config
  22. * or platform configuration
  23. */
  24. #if defined(WLAN_MAX_PDEVS) && (WLAN_MAX_PDEVS == 1)
  25. #define WLAN_CFG_DST_RING_CACHED_DESC 0
  26. #define MAX_PDEV_CNT 1
  27. #define WLAN_CFG_INT_NUM_CONTEXTS 7
  28. #define WLAN_CFG_RXDMA1_ENABLE 1
  29. /*
  30. * This mask defines how many transmit frames account for 1 NAPI work unit
  31. * 0 means each tx completion is 1 unit
  32. */
  33. #define DP_TX_NAPI_BUDGET_DIV_MASK 0
  34. /* PPDU Stats Configuration - Configure bitmask for enabling tx ppdu tlv's */
  35. #define DP_PPDU_TXLITE_STATS_BITMASK_CFG 0x3FFF
  36. #define NUM_RXDMA_RINGS_PER_PDEV 2
  37. #else
  38. #define WLAN_CFG_DST_RING_CACHED_DESC 1
  39. #define MAX_PDEV_CNT 3
  40. #define WLAN_CFG_INT_NUM_CONTEXTS 11
  41. #define NUM_RXDMA_RINGS_PER_PDEV 1
  42. #endif
  43. #define WLAN_CFG_INT_NUM_CONTEXTS_MAX 11
  44. /* Tx configuration */
  45. #define MAX_LINK_DESC_BANKS 8
  46. #define MAX_TXDESC_POOLS 4
  47. #define MAX_TCL_DATA_RINGS 4
  48. /* Rx configuration */
  49. #define MAX_RXDESC_POOLS 4
  50. #define MAX_REO_DEST_RINGS 4
  51. #define MAX_RX_MAC_RINGS 2
  52. /* DP process status */
  53. #if defined(MAX_PDEV_CNT) && (MAX_PDEV_CNT == 1)
  54. #define CONFIG_PROCESS_RX_STATUS 1
  55. #define CONFIG_PROCESS_TX_STATUS 1
  56. #else
  57. #define CONFIG_PROCESS_RX_STATUS 0
  58. #define CONFIG_PROCESS_TX_STATUS 0
  59. #endif
  60. /* Miscellaneous configuration */
  61. #define MAX_IDLE_SCATTER_BUFS 16
  62. #define DP_MAX_IRQ_PER_CONTEXT 12
  63. #define MAX_HTT_METADATA_LEN 32
  64. #define MAX_NUM_PEER_ID_PER_PEER 8
  65. #define DP_MAX_TIDS 17
  66. #define DP_NON_QOS_TID 16
  67. #define WLAN_CFG_RX_FST_MAX_SEARCH 2
  68. #define WLAN_CFG_RX_FST_TOEPLITZ_KEYLEN 40
  69. struct wlan_cfg_dp_pdev_ctxt;
  70. /**
  71. * struct wlan_srng_cfg - Per ring configuration parameters
  72. * @timer_threshold: Config to control interrupts based on timer duration
  73. * @batch_count_threshold: Config to control interrupts based on
  74. * number of packets in the ring
  75. * @low_threshold: Config to control low threshold interrupts for SRC rings
  76. */
  77. struct wlan_srng_cfg {
  78. uint32_t timer_threshold;
  79. uint32_t batch_count_threshold;
  80. uint32_t low_threshold;
  81. };
  82. /**
  83. * struct wlan_cfg_dp_soc_ctxt - Configuration parameters for SoC (core TxRx)
  84. * @num_int_ctxts: Number of NAPI/Interrupt contexts to be registered for DP
  85. * @max_clients: Maximum number of peers/stations supported by device
  86. * @max_alloc_size: Maximum allocation size for any dynamic memory
  87. * allocation request for this device
  88. * @per_pdev_tx_ring: 0: TCL ring is not mapped per radio
  89. * 1: Each TCL ring is mapped to one radio/pdev
  90. * @num_tcl_data_rings: Number of TCL Data rings supported by device
  91. * @per_pdev_rx_ring: 0: REO ring is not mapped per radio
  92. * 1: Each REO ring is mapped to one radio/pdev
  93. * @num_tx_desc_pool: Number of Tx Descriptor pools
  94. * @num_tx_ext_desc_pool: Number of Tx MSDU extension Descriptor pools
  95. * @num_tx_desc: Number of Tx Descriptors per pool
  96. * @min_tx_desc: Minimum number of Tx Descriptors per pool
  97. * @num_tx_ext_desc: Number of Tx MSDU extension Descriptors per pool
  98. * @max_peer_id: Maximum value of peer id that FW can assign for a client
  99. * @htt_packet_type: Default 802.11 encapsulation type for any VAP created
  100. * @int_tx_ring_mask: Bitmap of Tx interrupts mapped to each NAPI/Intr context
  101. * @int_rx_ring_mask: Bitmap of Rx interrupts mapped to each NAPI/Intr context
  102. * @int_rx_mon_ring_mask: Bitmap of Rx monitor ring interrupts mapped to each
  103. * NAPI/Intr context
  104. * @int_rx_err_ring_mask: Bitmap of Rx err ring interrupts mapped to each
  105. * NAPI/Intr context
  106. * @int_wbm_rel_ring_mask: Bitmap of wbm rel ring interrupts mapped to each
  107. * NAPI/Intr context
  108. * @int_reo_status_ring_mask: Bitmap of reo status ring interrupts mapped to
  109. * each NAPI/Intr context
  110. * @int_ce_ring_mask: Bitmap of CE interrupts mapped to each NAPI/Intr context
  111. * @lro_enabled: enable/disable lro feature
  112. * @rx_hash: Enable hash based steering of rx packets
  113. * @tso_enabled: enable/disable tso feature
  114. * @lro_enabled: enable/disable LRO feature
  115. * @sg_enabled: enable disable scatter gather feature
  116. * @gro_enabled: enable disable GRO feature
  117. * @ipa_enabled: Flag indicating if IPA is enabled
  118. * @ol_tx_csum_enabled: Flag indicating if TX csum is enabled
  119. * @ol_rx_csum_enabled: Flag indicating if Rx csum is enabled
  120. * @rawmode_enabled: Flag indicating if RAW mode is enabled
  121. * @peer_flow_ctrl_enabled: Flag indicating if peer flow control is enabled
  122. * @napi_enabled: enable/disable interrupt mode for reaping tx and rx packets
  123. * @tcp_udp_checksumoffload: enable/disable checksum offload
  124. * @nss_cfg: nss configuration
  125. * @rx_defrag_min_timeout: rx defrag minimum timeout
  126. * @wbm_release_ring: wbm release ring size
  127. * @tcl_cmd_ring: tcl cmd ring size
  128. * @tcl_status_ring: tcl status ring size
  129. * @reo_reinject_ring: reo reinject ring
  130. * @rx_release_ring: rx release ring size
  131. * @reo_exception_ring: reo exception ring size
  132. * @reo_cmd_ring: reo cmd ring size
  133. * @reo_status_ring: reo status ting size
  134. * @rxdma_refill_ring: rxdma refill ring size
  135. * @rxdma_err_dst_ring: rxdma error detination ring size
  136. * @raw_mode_war: enable/disable raw mode war
  137. * @enable_data_stall_detection: flag to enable data stall detection
  138. * @disable_intra_bss_fwd: flag to disable intra bss forwarding
  139. * @rxdma1_enable: flag to indicate if rxdma1 is enabled
  140. * @tx_desc_limit_0: tx_desc limit for 5G H
  141. * @tx_desc_limit_1: tx_desc limit for 2G
  142. * @tx_desc_limit_2: tx_desc limit for 5G L
  143. * @tx_device_limit: tx device limit
  144. * @tx_sw_internode_queue: tx sw internode queue
  145. * @tx_comp_loop_pkt_limit: Max # of packets to be processed in 1 tx comp loop
  146. * @rx_reap_loop_pkt_limit: Max # of packets to be processed in 1 rx reap loop
  147. * @rx_hp_oos_update_limit: Max # of HP OOS (out of sync) updates
  148. * @rx_enable_eol_data_check: flag to enable check for more ring data at end of
  149. * dp_rx_process loop
  150. * @tx_comp_enable_eol_data_check: flag to enable/disable checking for more data
  151. * at end of tx_comp_handler loop.
  152. * @rx_sw_desc_weight: rx sw descriptor weight configuration
  153. * @is_rx_mon_protocol_flow_tag_enabled: flag to enable/disable RX protocol or
  154. * flow tagging in monitor/mon-lite mode
  155. * @is_rx_flow_tag_enabled: flag to enable/disable RX flow tagging using FSE
  156. * @is_rx_flow_search_table_per_pdev: flag to indicate if a per-SOC or per-pdev
  157. * table should be used
  158. * @rx_flow_search_table_size: indicates the number of flows in the flow search
  159. * table
  160. * @rx_flow_max_search: max skid length for each hash entry
  161. * @rx_toeplitz_hash_key: toeplitz key pointer used for hash computation over
  162. * 5 tuple flow entry
  163. */
  164. struct wlan_cfg_dp_soc_ctxt {
  165. int num_int_ctxts;
  166. int max_clients;
  167. int max_alloc_size;
  168. int per_pdev_tx_ring;
  169. int num_tcl_data_rings;
  170. int per_pdev_rx_ring;
  171. int per_pdev_lmac_ring;
  172. int num_reo_dest_rings;
  173. int num_tx_desc_pool;
  174. int num_tx_ext_desc_pool;
  175. int num_tx_desc;
  176. int min_tx_desc;
  177. int num_tx_ext_desc;
  178. int max_peer_id;
  179. int htt_packet_type;
  180. int int_batch_threshold_tx;
  181. int int_timer_threshold_tx;
  182. int int_batch_threshold_rx;
  183. int int_timer_threshold_rx;
  184. int int_batch_threshold_other;
  185. int int_timer_threshold_other;
  186. int int_timer_threshold_mon;
  187. int tx_ring_size;
  188. int tx_comp_ring_size;
  189. int tx_comp_ring_size_nss;
  190. int int_tx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  191. int int_rx_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  192. int int_rx_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  193. int int_host2rxdma_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  194. int int_rxdma2host_mon_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  195. int int_ce_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  196. int int_rx_err_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  197. int int_rx_wbm_rel_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  198. int int_reo_status_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  199. int int_rxdma2host_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  200. int int_host2rxdma_ring_mask[WLAN_CFG_INT_NUM_CONTEXTS];
  201. int hw_macid[MAX_PDEV_CNT];
  202. int base_hw_macid;
  203. bool rx_hash;
  204. bool tso_enabled;
  205. bool lro_enabled;
  206. bool sg_enabled;
  207. bool gro_enabled;
  208. bool ipa_enabled;
  209. bool ol_tx_csum_enabled;
  210. bool ol_rx_csum_enabled;
  211. bool rawmode_enabled;
  212. bool peer_flow_ctrl_enabled;
  213. bool napi_enabled;
  214. bool tcp_udp_checksumoffload;
  215. bool defrag_timeout_check;
  216. int nss_cfg;
  217. uint32_t tx_flow_stop_queue_threshold;
  218. uint32_t tx_flow_start_queue_offset;
  219. int rx_defrag_min_timeout;
  220. int reo_dst_ring_size;
  221. int wbm_release_ring;
  222. int tcl_cmd_ring;
  223. int tcl_status_ring;
  224. int reo_reinject_ring;
  225. int rx_release_ring;
  226. int reo_exception_ring;
  227. int reo_cmd_ring;
  228. int reo_status_ring;
  229. int rxdma_refill_ring;
  230. int rxdma_err_dst_ring;
  231. uint32_t per_pkt_trace;
  232. bool raw_mode_war;
  233. bool enable_data_stall_detection;
  234. bool disable_intra_bss_fwd;
  235. bool rxdma1_enable;
  236. int max_ast_idx;
  237. int tx_desc_limit_0;
  238. int tx_desc_limit_1;
  239. int tx_desc_limit_2;
  240. int tx_device_limit;
  241. int tx_sw_internode_queue;
  242. int mon_drop_thresh;
  243. #ifdef WLAN_FEATURE_RX_SOFTIRQ_TIME_LIMIT
  244. uint32_t tx_comp_loop_pkt_limit;
  245. uint32_t rx_reap_loop_pkt_limit;
  246. uint32_t rx_hp_oos_update_limit;
  247. bool rx_enable_eol_data_check;
  248. bool tx_comp_enable_eol_data_check;
  249. #endif /* WLAN_FEATURE_RX_SOFTIRQ_TIME_LIMIT */
  250. int rx_sw_desc_weight;
  251. bool is_rx_mon_protocol_flow_tag_enabled;
  252. bool is_rx_flow_tag_enabled;
  253. bool is_rx_flow_search_table_per_pdev;
  254. uint16_t rx_flow_search_table_size;
  255. uint16_t rx_flow_max_search;
  256. uint8_t *rx_toeplitz_hash_key;
  257. };
  258. /**
  259. * struct wlan_cfg_dp_pdev_ctxt - Configuration parameters for pdev (radio)
  260. * @rx_dma_buf_ring_size - Size of RxDMA buffer ring
  261. * @dma_mon_buf_ring_size - Size of RxDMA Monitor buffer ring
  262. * @dma_mon_dest_ring_size - Size of RxDMA Monitor Destination ring
  263. * @dma_mon_status_ring_size - Size of RxDMA Monitor Status ring
  264. * @rxdma_monitor_desc_ring - rxdma monitor desc ring size
  265. */
  266. struct wlan_cfg_dp_pdev_ctxt {
  267. int rx_dma_buf_ring_size;
  268. int dma_mon_buf_ring_size;
  269. int dma_mon_dest_ring_size;
  270. int dma_mon_status_ring_size;
  271. int rxdma_monitor_desc_ring;
  272. int num_mac_rings;
  273. int nss_enabled;
  274. };
  275. /**
  276. * wlan_cfg_soc_attach() - Attach configuration interface for SoC
  277. * @ctrl_obj - PSOC object
  278. *
  279. * Allocates context for Soc configuration parameters,
  280. * Read configuration information from device tree/ini file and
  281. * returns back handle
  282. *
  283. * Return: Handle to configuration context
  284. */
  285. struct wlan_cfg_dp_soc_ctxt *
  286. wlan_cfg_soc_attach(struct cdp_ctrl_objmgr_psoc *ctrl_obj);
  287. /**
  288. * wlan_cfg_soc_detach() - Detach soc configuration handle
  289. * @wlan_cfg_ctx: soc configuration handle
  290. *
  291. * De-allocates memory allocated for SoC configuration
  292. *
  293. * Return:none
  294. */
  295. void wlan_cfg_soc_detach(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  296. /**
  297. * wlan_cfg_pdev_attach() Attach configuration interface for pdev
  298. * @ctrl_obj - PSOC object
  299. *
  300. * Allocates context for pdev configuration parameters,
  301. * Read configuration information from device tree/ini file and
  302. * returns back handle
  303. *
  304. * Return: Handle to configuration context
  305. */
  306. struct wlan_cfg_dp_pdev_ctxt *
  307. wlan_cfg_pdev_attach(struct cdp_ctrl_objmgr_psoc *ctrl_obj);
  308. /**
  309. * wlan_cfg_pdev_detach() Detach and free pdev configuration handle
  310. * @wlan_cfg_pdev_ctx - PDEV Configuration Handle
  311. *
  312. * Return: void
  313. */
  314. void wlan_cfg_pdev_detach(struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_pdev_ctx);
  315. void wlan_cfg_set_num_contexts(struct wlan_cfg_dp_soc_ctxt *cfg, int num);
  316. void wlan_cfg_set_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  317. int context, int mask);
  318. void wlan_cfg_set_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  319. int context, int mask);
  320. void wlan_cfg_set_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  321. int context, int mask);
  322. void wlan_cfg_set_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  323. int context, int mask);
  324. void wlan_cfg_set_rxbuf_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int context,
  325. int mask);
  326. void wlan_cfg_set_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val);
  327. void wlan_cfg_set_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg, uint32_t val);
  328. int wlan_cfg_get_max_ast_idx(struct wlan_cfg_dp_soc_ctxt *cfg);
  329. int wlan_cfg_get_mon_drop_thresh(struct wlan_cfg_dp_soc_ctxt *cfg);
  330. int wlan_cfg_set_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  331. int context, int mask);
  332. int wlan_cfg_set_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  333. int context, int mask);
  334. int wlan_cfg_set_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  335. int context, int mask);
  336. /**
  337. * wlan_cfg_get_num_contexts() - Number of interrupt contexts to be registered
  338. * @wlan_cfg_ctx - Configuration Handle
  339. *
  340. * For WIN, DP_NUM_INTERRUPT_CONTEXTS will be equal to number of CPU cores.
  341. * Each context (for linux it is a NAPI context) will have a tx_ring_mask,
  342. * rx_ring_mask ,and rx_monitor_ring mask to indicate the rings
  343. * that are processed by the handler.
  344. *
  345. * Return: num_contexts
  346. */
  347. int wlan_cfg_get_num_contexts(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  348. /**
  349. * wlan_cfg_get_tx_ring_mask() - Return Tx interrupt mask mapped to an
  350. * interrupt context
  351. * @wlan_cfg_ctx - Configuration Handle
  352. * @context - Numerical ID identifying the Interrupt/NAPI context
  353. *
  354. * Return: int_tx_ring_mask[context]
  355. */
  356. int wlan_cfg_get_tx_ring_mask(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
  357. int context);
  358. /**
  359. * wlan_cfg_get_rx_ring_mask() - Return Rx interrupt mask mapped to an
  360. * interrupt context
  361. * @wlan_cfg_ctx - Configuration Handle
  362. * @context - Numerical ID identifying the Interrupt/NAPI context
  363. *
  364. * Return: int_rx_ring_mask[context]
  365. */
  366. int wlan_cfg_get_rx_ring_mask(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
  367. int context);
  368. /**
  369. * wlan_cfg_get_rx_mon_ring_mask() - Return Rx monitor ring interrupt mask
  370. * mapped to an interrupt context
  371. * @wlan_cfg_ctx - Configuration Handle
  372. * @context - Numerical ID identifying the Interrupt/NAPI context
  373. *
  374. * Return: int_rx_mon_ring_mask[context]
  375. */
  376. int wlan_cfg_get_rx_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
  377. int context);
  378. /**
  379. * wlan_cfg_set_rxdma2host_ring_mask() - Set rxdma2host ring interrupt mask
  380. * for the given interrupt context
  381. * @wlan_cfg_ctx - Configuration Handle
  382. * @context - Numerical ID identifying the Interrupt/NAPI context
  383. *
  384. */
  385. void wlan_cfg_set_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  386. int context, int mask);
  387. /**
  388. * wlan_cfg_get_rxdma2host_ring_mask() - Return rxdma2host ring interrupt mask
  389. * mapped to an interrupt context
  390. * @wlan_cfg_ctx - Configuration Handle
  391. * @context - Numerical ID identifying the Interrupt/NAPI context
  392. *
  393. * Return: int_rxdma2host_ring_mask[context]
  394. */
  395. int wlan_cfg_get_rxdma2host_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  396. int context);
  397. /**
  398. * wlan_cfg_set_host2rxdma_ring_mask() - Set host2rxdma ring interrupt mask
  399. * for the given interrupt context
  400. * @wlan_cfg_ctx - Configuration Handle
  401. * @context - Numerical ID identifying the Interrupt/NAPI context
  402. *
  403. */
  404. void wlan_cfg_set_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  405. int context, int mask);
  406. /**
  407. * wlan_cfg_get_host2rxdma_ring_mask() - Return host2rxdma ring interrupt mask
  408. * mapped to an interrupt context
  409. * @wlan_cfg_ctx - Configuration Handle
  410. * @context - Numerical ID identifying the Interrupt/NAPI context
  411. *
  412. * Return: int_host2rxdma_ring_mask[context]
  413. */
  414. int wlan_cfg_get_host2rxdma_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  415. int context);
  416. /**
  417. * wlan_cfg_set_host2rxdma_mon_ring_mask() - Set host2rxdma monitor ring
  418. * interrupt mask for the given interrupt context
  419. * @wlan_cfg_ctx - Configuration Handle
  420. * @context - Numerical ID identifying the Interrupt/NAPI context
  421. *
  422. */
  423. void wlan_cfg_set_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  424. int context, int mask);
  425. /**
  426. * wlan_cfg_get_host2rxdma_mon_ring_mask() - Return host2rxdma monitoe ring
  427. * interrupt mask mapped to an interrupt context
  428. * @wlan_cfg_ctx - Configuration Handle
  429. * @context - Numerical ID identifying the Interrupt/NAPI context
  430. *
  431. * Return: int_host2rxdma_mon_ring_mask[context]
  432. */
  433. int wlan_cfg_get_host2rxdma_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  434. int context);
  435. /**
  436. * wlan_cfg_set_rxdma2host_mon_ring_mask() - Set rxdma2host monitor
  437. * destination ring interrupt mask
  438. * for the given interrupt context
  439. * @wlan_cfg_ctx - Configuration Handle
  440. * @context - Numerical ID identifying the Interrupt/NAPI context
  441. *
  442. */
  443. void wlan_cfg_set_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  444. int context, int mask);
  445. /**
  446. * wlan_cfg_get_rxdma2host_mon_ring_mask() - Return rxdma2host monitor
  447. * destination ring interrupt mask
  448. * mapped to an interrupt context
  449. * @wlan_cfg_ctx - Configuration Handle
  450. * @context - Numerical ID identifying the Interrupt/NAPI context
  451. *
  452. * Return: int_rxdma2host_mon_ring_mask[context]
  453. */
  454. int wlan_cfg_get_rxdma2host_mon_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg,
  455. int context);
  456. /**
  457. * wlan_cfg_set_hw_macid() - Set HW MAC Id for the given PDEV index
  458. *
  459. * @wlan_cfg_ctx - Configuration Handle
  460. * @pdev_idx - Index of SW PDEV
  461. * @hw_macid - HW MAC Id
  462. *
  463. */
  464. void wlan_cfg_set_hw_macid(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx,
  465. int hw_macid);
  466. /**
  467. * wlan_cfg_get_hw_macid() - Get HW MAC Id for the given PDEV index
  468. *
  469. * @wlan_cfg_ctx - Configuration Handle
  470. * @pdev_idx - Index of SW PDEV
  471. *
  472. * Return: HW MAC Id
  473. */
  474. int wlan_cfg_get_hw_macid(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx);
  475. /**
  476. * wlan_cfg_get_hw_mac_idx() - Get 0 based HW MAC index for the given
  477. * PDEV index
  478. *
  479. * @wlan_cfg_ctx - Configuration Handle
  480. * @pdev_idx - Index of SW PDEV
  481. *
  482. * Return: HW MAC index
  483. */
  484. int wlan_cfg_get_hw_mac_idx(struct wlan_cfg_dp_soc_ctxt *cfg, int pdev_idx);
  485. /**
  486. * wlan_cfg_get_rx_err_ring_mask() - Return Rx monitor ring interrupt mask
  487. * mapped to an interrupt context
  488. * @wlan_cfg_ctx - Configuration Handle
  489. * @context - Numerical ID identifying the Interrupt/NAPI context
  490. *
  491. * Return: int_rx_err_ring_mask[context]
  492. */
  493. int wlan_cfg_get_rx_err_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int
  494. context);
  495. /**
  496. * wlan_cfg_get_rx_wbm_rel_ring_mask() - Return Rx monitor ring interrupt mask
  497. * mapped to an interrupt context
  498. * @wlan_cfg_ctx - Configuration Handle
  499. * @context - Numerical ID identifying the Interrupt/NAPI context
  500. *
  501. * Return: int_wbm_rel_ring_mask[context]
  502. */
  503. int wlan_cfg_get_rx_wbm_rel_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int
  504. context);
  505. /**
  506. * wlan_cfg_get_reo_status_ring_mask() - Return Rx monitor ring interrupt mask
  507. * mapped to an interrupt context
  508. * @wlan_cfg_ctx - Configuration Handle
  509. * @context - Numerical ID identifying the Interrupt/NAPI context
  510. *
  511. * Return: int_reo_status_ring_mask[context]
  512. */
  513. int wlan_cfg_get_reo_status_ring_mask(struct wlan_cfg_dp_soc_ctxt *cfg, int
  514. context);
  515. /**
  516. * wlan_cfg_get_ce_ring_mask() - Return CE ring interrupt mask
  517. * mapped to an interrupt context
  518. * @wlan_cfg_ctx - Configuration Handle
  519. * @context - Numerical ID identifying the Interrupt/NAPI context
  520. *
  521. * Return: int_ce_ring_mask[context]
  522. */
  523. int wlan_cfg_get_ce_ring_mask(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx,
  524. int context);
  525. /**
  526. * wlan_cfg_get_max_clients() - Return maximum number of peers/stations
  527. * supported by device
  528. * @wlan_cfg_ctx - Configuration Handle
  529. *
  530. * Return: max_clients
  531. */
  532. uint32_t wlan_cfg_get_max_clients(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  533. /**
  534. * wlan_cfg_max_alloc_size() - Return Maximum allocation size for any dynamic
  535. * memory allocation request for this device
  536. * @wlan_cfg_ctx - Configuration Handle
  537. *
  538. * Return: max_alloc_size
  539. */
  540. uint32_t wlan_cfg_max_alloc_size(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  541. /*
  542. * wlan_cfg_per_pdev_tx_ring() - Return true if Tx rings are mapped as
  543. * one per radio
  544. * @wlan_cfg_ctx - Configuration Handle
  545. *
  546. * Return: per_pdev_tx_ring
  547. */
  548. int wlan_cfg_per_pdev_tx_ring(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  549. /*
  550. * wlan_cfg_num_tcl_data_rings() - Number of TCL Data rings supported by device
  551. * @wlan_cfg_ctx
  552. *
  553. * Return: num_tcl_data_rings
  554. */
  555. int wlan_cfg_num_tcl_data_rings(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  556. /*
  557. * wlan_cfg_per_pdev_rx_ring() - Return true if Rx rings are mapped as
  558. * one per radio
  559. * @wlan_cfg_ctx
  560. *
  561. * Return: per_pdev_rx_ring
  562. */
  563. int wlan_cfg_per_pdev_rx_ring(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  564. /*
  565. * wlan_cfg_per_pdev_lmac_ring() - Return true if error rings are mapped as
  566. * one per radio
  567. * @wlan_cfg_ctx
  568. *
  569. * Return: return 1 if per pdev error ring else 0
  570. */
  571. int wlan_cfg_per_pdev_lmac_ring(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  572. /*
  573. * wlan_cfg_num_reo_dest_rings() - Number of REO Data rings supported by device
  574. * @wlan_cfg_ctx - Configuration Handle
  575. *
  576. * Return: num_reo_dest_rings
  577. */
  578. int wlan_cfg_num_reo_dest_rings(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  579. /*
  580. * wlan_cfg_pkt_type() - Default 802.11 encapsulation type
  581. * @wlan_cfg_ctx - Configuration Handle
  582. *
  583. * Return: htt_pkt_type_ethernet
  584. */
  585. int wlan_cfg_pkt_type(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  586. /*
  587. * wlan_cfg_get_num_tx_desc_pool() - Number of Tx Descriptor pools for the
  588. * device
  589. * @wlan_cfg_ctx - Configuration Handle
  590. *
  591. * Return: num_tx_desc_pool
  592. */
  593. int wlan_cfg_get_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  594. /*
  595. * wlan_cfg_set_num_tx_desc_pool() - Set the number of Tx Descriptor pools for the
  596. * device
  597. * @wlan_cfg_ctx - Configuration Handle
  598. * @num_pool - Number of pool
  599. */
  600. void wlan_cfg_set_num_tx_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool);
  601. /*
  602. * wlan_cfg_get_num_tx_ext_desc_pool() - Number of Tx MSDU ext Descriptor
  603. * pools
  604. * @wlan_cfg_ctx - Configuration Handle
  605. *
  606. * Return: num_tx_ext_desc_pool
  607. */
  608. int wlan_cfg_get_num_tx_ext_desc_pool(
  609. struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  610. /*
  611. * wlan_cfg_get_reo_dst_ring_size() - Get REO destination ring size
  612. *
  613. * @wlan_cfg_ctx - Configuration Handle
  614. *
  615. * Return: reo_dst_ring_size
  616. */
  617. int wlan_cfg_get_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  618. /*
  619. * wlan_cfg_set_num_tx_desc_pool() - Set the REO Destination ring size
  620. *
  621. * @wlan_cfg_ctx - Configuration Handle
  622. * @reo_dst_ring_size - REO Destination ring size
  623. */
  624. void wlan_cfg_set_reo_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg,
  625. int reo_dst_ring_size);
  626. /*
  627. * wlan_cfg_set_raw_mode_war() - Set raw mode war configuration
  628. *
  629. * @wlan_cfg_ctx - Configuration Handle
  630. * @raw_mode_war - raw mode war configuration
  631. */
  632. void wlan_cfg_set_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg,
  633. bool raw_mode_war);
  634. /*
  635. * wlan_cfg_get_raw_mode_war() - Get raw mode war configuration
  636. *
  637. * @wlan_cfg_ctx - Configuration Handle
  638. *
  639. * Return: reo_dst_ring_size
  640. */
  641. bool wlan_cfg_get_raw_mode_war(struct wlan_cfg_dp_soc_ctxt *cfg);
  642. /*
  643. * wlan_cfg_set_num_tx_ext_desc_pool() - Set the number of Tx MSDU ext Descriptor
  644. * pools
  645. * @wlan_cfg_ctx - Configuration Handle
  646. * @num_pool - Number of pool
  647. */
  648. void wlan_cfg_set_num_tx_ext_desc_pool(struct wlan_cfg_dp_soc_ctxt *cfg, int num_pool);
  649. /*
  650. * wlan_cfg_get_num_tx_desc() - Number of Tx Descriptors per pool
  651. * @wlan_cfg_ctx - Configuration Handle
  652. *
  653. * Return: num_tx_desc
  654. */
  655. int wlan_cfg_get_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  656. /*
  657. * wlan_cfg_get_min_tx_desc() - Minimum number of Tx Descriptors per pool
  658. * @wlan_cfg_ctx - Configuration Handle
  659. *
  660. * Return: num_tx_desc
  661. */
  662. int wlan_cfg_get_min_tx_desc(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  663. /*
  664. * wlan_cfg_set_num_tx_desc() - Set the number of Tx Descriptors per pool
  665. *
  666. * @wlan_cfg_ctx - Configuration Handle
  667. * @num_desc: Number of descriptor
  668. */
  669. void wlan_cfg_set_num_tx_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_desc);
  670. /*
  671. * wlan_cfg_get_num_tx_ext_desc() - Number of Tx MSDU extension Descriptors
  672. * per pool
  673. * @wlan_cfg_ctx - Configuration Handle
  674. *
  675. * Return: num_tx_ext_desc
  676. */
  677. int wlan_cfg_get_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *wlan_cfg_ctx);
  678. /*
  679. * wlan_cfg_set_num_tx_ext_desc() - Set the number of Tx MSDU extension Descriptors
  680. * per pool
  681. * @wlan_cfg_ctx - Configuration Handle
  682. * @num_desc: Number of descriptor
  683. */
  684. void wlan_cfg_set_num_tx_ext_desc(struct wlan_cfg_dp_soc_ctxt *cfg, int num_ext_desc);
  685. /*
  686. * wlan_cfg_max_peer_id() - Get maximum peer ID
  687. * @cfg: Configuration Handle
  688. *
  689. * Return: maximum peer ID
  690. */
  691. uint32_t wlan_cfg_max_peer_id(struct wlan_cfg_dp_soc_ctxt *cfg);
  692. /*
  693. * wlan_cfg_get_dma_mon_buf_ring_size() - Return Size of monitor buffer ring
  694. * @wlan_cfg_pdev_ctx
  695. *
  696. * Return: dma_mon_buf_ring_size
  697. */
  698. int wlan_cfg_get_dma_mon_buf_ring_size(
  699. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_pdev_ctx);
  700. /*
  701. * wlan_cfg_get_dma_mon_dest_ring_size() - Return Size of RxDMA Monitor
  702. * Destination ring
  703. * @wlan_cfg_pdev_ctx
  704. *
  705. * Return: dma_mon_dest_size
  706. */
  707. int wlan_cfg_get_dma_mon_dest_ring_size(
  708. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_pdev_ctx);
  709. /*
  710. * wlan_cfg_get_dma_mon_stat_ring_size() - Return size of Monitor Status ring
  711. * @wlan_cfg_pdev_ctx
  712. *
  713. * Return: dma_mon_stat_ring_size
  714. */
  715. int wlan_cfg_get_dma_mon_stat_ring_size(
  716. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_pdev_ctx);
  717. /*
  718. * wlan_cfg_get_dma_mon_desc_ring_size - Get rxdma monitor size
  719. * @wlan_cfg_soc_ctx
  720. *
  721. * Return: rxdma monitor desc ring size
  722. */
  723. int
  724. wlan_cfg_get_dma_mon_desc_ring_size(struct wlan_cfg_dp_pdev_ctxt *cfg);
  725. /*
  726. * wlan_cfg_get_rx_dma_buf_ring_size() - Return Size of RxDMA buffer ring
  727. * @wlan_cfg_pdev_ctx
  728. *
  729. * Return: rx_dma_buf_ring_size
  730. */
  731. int wlan_cfg_get_rx_dma_buf_ring_size(
  732. struct wlan_cfg_dp_pdev_ctxt *wlan_cfg_pdev_ctx);
  733. /*
  734. * wlan_cfg_get_num_mac_rings() - Return the number of MAC RX DMA rings
  735. * per pdev
  736. * @wlan_cfg_pdev_ctx
  737. *
  738. * Return: number of mac DMA rings per pdev
  739. */
  740. int wlan_cfg_get_num_mac_rings(struct wlan_cfg_dp_pdev_ctxt *cfg);
  741. /*
  742. * wlan_cfg_is_lro_enabled - Return LRO enabled/disabled
  743. * @wlan_cfg_dp_soc_ctxt
  744. *
  745. * Return: true - LRO enabled false - LRO disabled
  746. */
  747. bool wlan_cfg_is_lro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg);
  748. /*
  749. * wlan_cfg_is_gro_enabled - Return GRO enabled/disabled
  750. * @wlan_cfg_dp_soc_ctxt
  751. *
  752. * Return: true - GRO enabled false - GRO disabled
  753. */
  754. bool wlan_cfg_is_gro_enabled(struct wlan_cfg_dp_soc_ctxt *cfg);
  755. /*
  756. * wlan_cfg_is_rx_hash_enabled - Return RX hash enabled/disabled
  757. * @wlan_cfg_dp_soc_ctxt
  758. *
  759. * Return: true - enabled false - disabled
  760. */
  761. bool wlan_cfg_is_rx_hash_enabled(struct wlan_cfg_dp_soc_ctxt *cfg);
  762. /*
  763. * wlan_cfg_is_ipa_enabled - Return IPA enabled/disabled
  764. * @wlan_cfg_dp_soc_ctxt
  765. *
  766. * Return: true - enabled false - disabled
  767. */
  768. bool wlan_cfg_is_ipa_enabled(struct wlan_cfg_dp_soc_ctxt *cfg);
  769. /*
  770. * wlan_cfg_set_rx_hash - set rx hash enabled/disabled
  771. * @wlan_cfg_soc_ctx
  772. * @rx_hash
  773. */
  774. void wlan_cfg_set_rx_hash(struct wlan_cfg_dp_soc_ctxt *cfg, bool rx_hash);
  775. /*
  776. * wlan_cfg_get_dp_pdev_nss_enabled - Return pdev nss enabled/disabled
  777. * @wlan_cfg_pdev_ctx
  778. *
  779. * Return: 1 - enabled 0 - disabled
  780. */
  781. int wlan_cfg_get_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg);
  782. /*
  783. * wlan_cfg_set_dp_pdev_nss_enabled - set pdev nss enabled/disabled
  784. * @wlan_cfg_pdev_ctx
  785. */
  786. void wlan_cfg_set_dp_pdev_nss_enabled(struct wlan_cfg_dp_pdev_ctxt *cfg, int nss_enabled);
  787. /*
  788. * wlan_cfg_get_dp_soc_nss_cfg - Return soc nss config
  789. * @wlan_cfg_pdev_ctx
  790. *
  791. * Return: nss_cfg
  792. */
  793. int wlan_cfg_get_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg);
  794. /*
  795. * wlan_cfg_set_dp_soc_nss_cfg - set soc nss config
  796. * @wlan_cfg_pdev_ctx
  797. *
  798. */
  799. void wlan_cfg_set_dp_soc_nss_cfg(struct wlan_cfg_dp_soc_ctxt *cfg, int nss_cfg);
  800. /*
  801. * wlan_cfg_get_int_batch_threshold_tx - Get interrupt mitigation cfg for Tx
  802. * @wlan_cfg_soc_ctx
  803. *
  804. * Return: Batch threshold
  805. */
  806. int wlan_cfg_get_int_batch_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg);
  807. /*
  808. * wlan_cfg_get_int_timer_threshold_tx - Get interrupt mitigation cfg for Tx
  809. * @wlan_cfg_soc_ctx
  810. *
  811. * Return: Timer threshold
  812. */
  813. int wlan_cfg_get_int_timer_threshold_tx(struct wlan_cfg_dp_soc_ctxt *cfg);
  814. /*
  815. * wlan_cfg_get_int_batch_threshold_rx - Get interrupt mitigation cfg for Rx
  816. * @wlan_cfg_soc_ctx
  817. *
  818. * Return: Batch threshold
  819. */
  820. int wlan_cfg_get_int_batch_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg);
  821. /*
  822. * wlan_cfg_get_int_batch_threshold_rx - Get interrupt mitigation cfg for Rx
  823. * @wlan_cfg_soc_ctx
  824. *
  825. * Return: Timer threshold
  826. */
  827. int wlan_cfg_get_int_timer_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg);
  828. /*
  829. * wlan_cfg_get_int_batch_threshold_tx - Get interrupt mitigation cfg for other srngs
  830. * @wlan_cfg_soc_ctx
  831. *
  832. * Return: Batch threshold
  833. */
  834. int wlan_cfg_get_int_batch_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg);
  835. /*
  836. * wlan_cfg_get_int_batch_threshold_tx - Get interrupt mitigation cfg for other srngs
  837. * @wlan_cfg_soc_ctx
  838. *
  839. * Return: Timer threshold
  840. */
  841. int wlan_cfg_get_int_timer_threshold_other(struct wlan_cfg_dp_soc_ctxt *cfg);
  842. /*
  843. * wlan_cfg_get_int_timer_threshold_mon - Get int mitigation cfg for mon srngs
  844. * @wlan_cfg_soc_ctx
  845. *
  846. * Return: Timer threshold
  847. */
  848. int wlan_cfg_get_int_timer_threshold_mon(struct wlan_cfg_dp_soc_ctxt *cfg);
  849. /*
  850. * wlan_cfg_get_checksum_offload - Get checksum offload enable or disable status
  851. * @wlan_cfg_soc_ctx
  852. *
  853. * Return: Checksum offload enable or disable
  854. */
  855. int wlan_cfg_get_checksum_offload(struct wlan_cfg_dp_soc_ctxt *cfg);
  856. /*
  857. * wlan_cfg_tx_ring_size - Get Tx DMA ring size (TCL Data Ring)
  858. * @wlan_cfg_soc_ctx
  859. *
  860. * Return: Tx Ring Size
  861. */
  862. int wlan_cfg_tx_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  863. /*
  864. * wlan_cfg_tx_comp_ring_size - Get Tx completion ring size (WBM Ring)
  865. * @wlan_cfg_soc_ctx
  866. *
  867. * Return: Tx Completion ring size
  868. */
  869. int wlan_cfg_tx_comp_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  870. /*
  871. * wlan_cfg_get_dp_soc_wbm_release_ring_size - Get wbm_release_ring size
  872. * @wlan_cfg_soc_ctx
  873. *
  874. * Return: wbm_release_ring size
  875. */
  876. int
  877. wlan_cfg_get_dp_soc_wbm_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  878. /*
  879. * wlan_cfg_get_dp_soc_tcl_cmd_ring_size - Get tcl_cmd_ring size
  880. * @wlan_cfg_soc_ctx
  881. *
  882. * Return: tcl_cmd_ring size
  883. */
  884. int
  885. wlan_cfg_get_dp_soc_tcl_cmd_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  886. /*
  887. * wlan_cfg_get_dp_soc_tcl_status_ring_size - Get tcl_status_ring size
  888. * @wlan_cfg_soc_ctx
  889. *
  890. * Return: tcl_status_ring size
  891. */
  892. int
  893. wlan_cfg_get_dp_soc_tcl_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  894. /*
  895. * wlan_cfg_get_dp_soc_reo_reinject_ring_size - Get reo_reinject_ring size
  896. * @wlan_cfg_soc_ctx
  897. *
  898. * Return: reo_reinject_ring size
  899. */
  900. int
  901. wlan_cfg_get_dp_soc_reo_reinject_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  902. /*
  903. * wlan_cfg_get_dp_soc_rx_release_ring_size - Get rx_release_ring size
  904. * @wlan_cfg_soc_ctx
  905. *
  906. * Return: rx_release_ring size
  907. */
  908. int
  909. wlan_cfg_get_dp_soc_rx_release_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  910. /*
  911. * wlan_cfg_get_dp_soc_reo_exception_ring_size - Get reo_exception_ring size
  912. * @wlan_cfg_soc_ctx
  913. *
  914. * Return: reo_exception_ring size
  915. */
  916. int
  917. wlan_cfg_get_dp_soc_reo_exception_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  918. /*
  919. * wlan_cfg_get_dp_soc_reo_cmd_ring_size - Get reo_cmd_ring size
  920. * @wlan_cfg_soc_ctx
  921. *
  922. * Return: reo_cmd_ring size
  923. */
  924. int
  925. wlan_cfg_get_dp_soc_reo_cmd_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  926. /*
  927. * wlan_cfg_get_dp_soc_reo_status_ring_size - Get reo_status_ring size
  928. * @wlan_cfg_soc_ctx
  929. *
  930. * Return: reo_status_ring size
  931. */
  932. int
  933. wlan_cfg_get_dp_soc_reo_status_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  934. /*
  935. * wlan_cfg_get_dp_soc_tx_desc_limit_0 - Get tx desc limit for 5G H
  936. * @wlan_cfg_soc_ctx
  937. *
  938. * Return: tx desc limit for 5G H
  939. */
  940. int
  941. wlan_cfg_get_dp_soc_tx_desc_limit_0(struct wlan_cfg_dp_soc_ctxt *cfg);
  942. /*
  943. * wlan_cfg_get_dp_soc_tx_desc_limit_1 - Get tx desc limit for 2G
  944. * @wlan_cfg_soc_ctx
  945. *
  946. * Return: tx desc limit for 2G
  947. */
  948. int
  949. wlan_cfg_get_dp_soc_tx_desc_limit_1(struct wlan_cfg_dp_soc_ctxt *cfg);
  950. /*
  951. * wlan_cfg_get_dp_soc_tx_desc_limit_2 - Get tx desc limit for 5G L
  952. * @wlan_cfg_soc_ctx
  953. *
  954. * Return: tx desc limit for 5G L
  955. */
  956. int
  957. wlan_cfg_get_dp_soc_tx_desc_limit_2(struct wlan_cfg_dp_soc_ctxt *cfg);
  958. /*
  959. * wlan_cfg_get_dp_soc_tx_device_limit - Get tx device limit
  960. * @wlan_cfg_soc_ctx
  961. *
  962. * Return: tx device limit
  963. */
  964. int
  965. wlan_cfg_get_dp_soc_tx_device_limit(struct wlan_cfg_dp_soc_ctxt *cfg);
  966. /*
  967. * wlan_cfg_get_dp_soc_tx_sw_internode_queue - Get tx sw internode queue
  968. * @wlan_cfg_soc_ctx
  969. *
  970. * Return: tx sw internode queue
  971. */
  972. int
  973. wlan_cfg_get_dp_soc_tx_sw_internode_queue(struct wlan_cfg_dp_soc_ctxt *cfg);
  974. /*
  975. * wlan_cfg_get_dp_soc_rxdma_refill_ring_size - Get rxdma refill ring size
  976. * @wlan_cfg_soc_ctx
  977. *
  978. * Return: rxdma refill ring size
  979. */
  980. int
  981. wlan_cfg_get_dp_soc_rxdma_refill_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  982. /*
  983. * wlan_cfg_get_dp_soc_rxdma_err_dst_ring_size - Get rxdma dst ring size
  984. * @wlan_cfg_soc_ctx
  985. *
  986. * Return: rxdma error dst ring size
  987. */
  988. int
  989. wlan_cfg_get_dp_soc_rxdma_err_dst_ring_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  990. /*
  991. * wlan_cfg_get_dp_soc_rx_sw_desc_weight - Get rx sw desc weight
  992. * @wlan_cfg_soc_ctx
  993. *
  994. * Return: rx_sw_desc_weight
  995. */
  996. int
  997. wlan_cfg_get_dp_soc_rx_sw_desc_weight(struct wlan_cfg_dp_soc_ctxt *cfg);
  998. /*
  999. * wlan_cfg_get_dp_caps - Get dp capablities
  1000. * @wlan_cfg_soc_ctx
  1001. * @dp_caps: enum for dp capablities
  1002. *
  1003. * Return: bool if a dp capabilities is enabled
  1004. */
  1005. bool
  1006. wlan_cfg_get_dp_caps(struct wlan_cfg_dp_soc_ctxt *cfg,
  1007. enum cdp_capabilities dp_caps);
  1008. /**
  1009. * wlan_set_srng_cfg() - Fill per ring specific
  1010. * configuration parameters
  1011. * @wlan_cfg: global srng configuration table
  1012. *
  1013. * Return: None
  1014. */
  1015. void wlan_set_srng_cfg(struct wlan_srng_cfg **wlan_cfg);
  1016. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  1017. int wlan_cfg_get_tx_flow_stop_queue_th(struct wlan_cfg_dp_soc_ctxt *cfg);
  1018. int wlan_cfg_get_tx_flow_start_queue_offset(struct wlan_cfg_dp_soc_ctxt *cfg);
  1019. #endif /* QCA_LL_TX_FLOW_CONTROL_V2 */
  1020. int wlan_cfg_get_rx_defrag_min_timeout(struct wlan_cfg_dp_soc_ctxt *cfg);
  1021. int wlan_cfg_get_defrag_timeout_check(struct wlan_cfg_dp_soc_ctxt *cfg);
  1022. /**
  1023. * wlan_cfg_get_rx_flow_search_table_size() - Return the size of Rx FST
  1024. * in number of entries
  1025. *
  1026. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1027. *
  1028. * Return: rx_fst_size
  1029. */
  1030. uint16_t
  1031. wlan_cfg_get_rx_flow_search_table_size(struct wlan_cfg_dp_soc_ctxt *cfg);
  1032. /**
  1033. * wlan_cfg_rx_fst_get_max_search() - Return the max skid length for FST search
  1034. *
  1035. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1036. *
  1037. * Return: max_search
  1038. */
  1039. uint8_t wlan_cfg_rx_fst_get_max_search(struct wlan_cfg_dp_soc_ctxt *cfg);
  1040. /**
  1041. * wlan_cfg_rx_fst_get_hash_key() - Return Toeplitz Hash Key used for FST
  1042. * search
  1043. *
  1044. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1045. *
  1046. * Return: 320-bit Hash Key
  1047. */
  1048. uint8_t *wlan_cfg_rx_fst_get_hash_key(struct wlan_cfg_dp_soc_ctxt *cfg);
  1049. /**
  1050. * wlan_cfg_set_rx_flow_tag_enabled() - set rx flow tag enabled flag in
  1051. * DP soc context
  1052. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1053. * @val: Rx flow tag feature flag value
  1054. *
  1055. * Return: None
  1056. */
  1057. void wlan_cfg_set_rx_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg,
  1058. bool val);
  1059. /**
  1060. * wlan_cfg_is_rx_flow_tag_enabled() - get rx flow tag enabled flag from
  1061. * DP soc context
  1062. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1063. *
  1064. * Return: true if feature is enabled, else false
  1065. */
  1066. bool wlan_cfg_is_rx_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg);
  1067. /**
  1068. * wlan_cfg_set_rx_flow_search_table_per_pdev() - Set flag to indicate that
  1069. * Rx FST is per pdev
  1070. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1071. * @val: boolean flag indicating Rx FST per pdev or per SOC
  1072. *
  1073. * Return: None
  1074. */
  1075. void
  1076. wlan_cfg_set_rx_flow_search_table_per_pdev(struct wlan_cfg_dp_soc_ctxt *cfg,
  1077. bool val);
  1078. /**
  1079. * wlan_cfg_is_rx_flow_search_table_per_pdev() - get RX FST flag for per pdev
  1080. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1081. *
  1082. * Return: true if Rx FST is per pdev, else false
  1083. */
  1084. bool
  1085. wlan_cfg_is_rx_flow_search_table_per_pdev(struct wlan_cfg_dp_soc_ctxt *cfg);
  1086. /**
  1087. * wlan_cfg_set_rx_flow_search_table_size() - set RX FST size in DP SoC context
  1088. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1089. * @val: Rx FST size in number of entries
  1090. *
  1091. * Return: None
  1092. */
  1093. void
  1094. wlan_cfg_set_rx_flow_search_table_size(struct wlan_cfg_dp_soc_ctxt *cfg,
  1095. uint16_t val);
  1096. /**
  1097. * wlan_cfg_set_rx_mon_protocol_flow_tag_enabled() - set mon rx tag enabled flag
  1098. * in DP soc context
  1099. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1100. * @val: Rx protocol or flow tag feature flag value in monitor mode from INI
  1101. *
  1102. * Return: None
  1103. */
  1104. void
  1105. wlan_cfg_set_rx_mon_protocol_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg,
  1106. bool val);
  1107. /**
  1108. * wlan_cfg_is_rx_mon_protocol_flow_tag_enabled() - get mon rx tag enabled flag
  1109. * from DP soc context
  1110. * @wlan_cfg_dp_soc_ctxt: soc configuration context
  1111. *
  1112. * Return: true if feature is enabled in monitor mode for protocol or flow
  1113. * tagging in INI, false otherwise
  1114. */
  1115. bool
  1116. wlan_cfg_is_rx_mon_protocol_flow_tag_enabled(struct wlan_cfg_dp_soc_ctxt *cfg);
  1117. #endif