ol_cfg.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. /*
  2. * Copyright (c) 2011-2015 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #ifndef _OL_CFG__H_
  27. #define _OL_CFG__H_
  28. #include <cdf_types.h> /* uint32_t */
  29. #include <ol_ctrl_api.h> /* ol_pdev_handle */
  30. #include <cds_ieee80211_common.h> /* ieee80211_qosframe_htc_addr4 */
  31. #include <enet.h> /* LLC_SNAP_HDR_LEN */
  32. #include "wlan_tgt_def_config.h"
  33. /**
  34. * @brief format of data frames delivered to/from the WLAN driver by/to the OS
  35. */
  36. enum wlan_frm_fmt {
  37. wlan_frm_fmt_unknown,
  38. wlan_frm_fmt_raw,
  39. wlan_frm_fmt_native_wifi,
  40. wlan_frm_fmt_802_3,
  41. };
  42. struct wlan_ipa_uc_rsc_t {
  43. u8 uc_offload_enabled;
  44. u32 tx_max_buf_cnt;
  45. u32 tx_buf_size;
  46. u32 rx_ind_ring_size;
  47. u32 tx_partition_base;
  48. };
  49. /* Config parameters for txrx_pdev */
  50. struct txrx_pdev_cfg_t {
  51. u8 is_high_latency;
  52. u8 defrag_timeout_check;
  53. u8 rx_pn_check;
  54. u8 pn_rx_fwd_check;
  55. u8 host_addba;
  56. u8 tx_free_at_download;
  57. u8 rx_fwd_inter_bss;
  58. u32 max_thruput_mbps;
  59. u32 target_tx_credit;
  60. u32 vow_config;
  61. u32 tx_download_size;
  62. u32 max_peer_id;
  63. u32 max_vdev;
  64. u32 max_nbuf_frags;
  65. u32 throttle_period_ms;
  66. enum wlan_frm_fmt frame_type;
  67. u8 rx_fwd_disabled;
  68. u8 is_packet_log_enabled;
  69. u8 is_full_reorder_offload;
  70. struct wlan_ipa_uc_rsc_t ipa_uc_rsc;
  71. bool ip_tcp_udp_checksum_offload;
  72. bool enable_rxthread;
  73. bool ce_classify_enabled;
  74. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  75. uint32_t tx_flow_stop_queue_th;
  76. uint32_t tx_flow_start_queue_offset;
  77. #endif
  78. };
  79. /**
  80. * @brief Specify whether the system is high-latency or low-latency.
  81. * @details
  82. * Indicate whether the system is operating in high-latency (message
  83. * based, e.g. USB) mode or low-latency (memory-mapped, e.g. PCIe) mode.
  84. * Some chips support just one type of host / target interface.
  85. * Other chips support both LL and HL interfaces (e.g. PCIe and USB),
  86. * so the selection will be made based on which bus HW is present, or
  87. * which is preferred if both are present.
  88. *
  89. * @param pdev - handle to the physical device
  90. * @return 1 -> high-latency -OR- 0 -> low-latency
  91. */
  92. int ol_cfg_is_high_latency(ol_pdev_handle pdev);
  93. /**
  94. * @brief Specify the range of peer IDs.
  95. * @details
  96. * Specify the maximum peer ID. This is the maximum number of peers,
  97. * minus one.
  98. * This is used by the host to determine the size of arrays indexed by
  99. * peer ID.
  100. *
  101. * @param pdev - handle to the physical device
  102. * @return maximum peer ID
  103. */
  104. int ol_cfg_max_peer_id(ol_pdev_handle pdev);
  105. /**
  106. * @brief Specify the max number of virtual devices within a physical device.
  107. * @details
  108. * Specify how many virtual devices may exist within a physical device.
  109. *
  110. * @param pdev - handle to the physical device
  111. * @return maximum number of virtual devices
  112. */
  113. int ol_cfg_max_vdevs(ol_pdev_handle pdev);
  114. /**
  115. * @brief Check whether host-side rx PN check is enabled or disabled.
  116. * @details
  117. * Choose whether to allocate rx PN state information and perform
  118. * rx PN checks (if applicable, based on security type) on the host.
  119. * If the rx PN check is specified to be done on the host, the host SW
  120. * will determine which peers are using a security type (e.g. CCMP) that
  121. * requires a PN check.
  122. *
  123. * @param pdev - handle to the physical device
  124. * @return 1 -> host performs rx PN check -OR- 0 -> no host-side rx PN check
  125. */
  126. int ol_cfg_rx_pn_check(ol_pdev_handle pdev);
  127. /**
  128. * @brief Check whether host-side rx forwarding is enabled or disabled.
  129. * @details
  130. * Choose whether to check whether to forward rx frames to tx on the host.
  131. * For LL systems, this rx -> tx host-side forwarding check is typically
  132. * enabled.
  133. * For HL systems, the rx -> tx forwarding check is typically done on the
  134. * target. However, even in HL systems, the host-side rx -> tx forwarding
  135. * will typically be enabled, as a second-tier safety net in case the
  136. * target doesn't have enough memory to store all rx -> tx forwarded frames.
  137. *
  138. * @param pdev - handle to the physical device
  139. * @return 1 -> host does rx->tx forward -OR- 0 -> no host-side rx->tx forward
  140. */
  141. int ol_cfg_rx_fwd_check(ol_pdev_handle pdev);
  142. /**
  143. * @brief set rx fwd disable/enable.
  144. * @details
  145. * Choose whether to forward rx frames to tx (where applicable) within the
  146. * WLAN driver, or to leave all forwarding up to the operating system.
  147. * currently only intra-bss fwd is supported.
  148. *
  149. * @param pdev - handle to the physical device
  150. * @param disable_rx_fwd 1 -> no rx->tx forward -> rx->tx forward
  151. */
  152. void ol_set_cfg_rx_fwd_disabled(ol_pdev_handle pdev, uint8_t disalbe_rx_fwd);
  153. /**
  154. * @brief Check whether rx forwarding is enabled or disabled.
  155. * @details
  156. * Choose whether to forward rx frames to tx (where applicable) within the
  157. * WLAN driver, or to leave all forwarding up to the operating system.
  158. *
  159. * @param pdev - handle to the physical device
  160. * @return 1 -> no rx->tx forward -OR- 0 -> rx->tx forward (in host or target)
  161. */
  162. int ol_cfg_rx_fwd_disabled(ol_pdev_handle pdev);
  163. /**
  164. * @brief Check whether to perform inter-BSS or intra-BSS rx->tx forwarding.
  165. * @details
  166. * Check whether data received by an AP on one virtual device destined
  167. * to a STA associated with a different virtual device within the same
  168. * physical device should be forwarded within the driver, or whether
  169. * forwarding should only be done within a virtual device.
  170. *
  171. * @param pdev - handle to the physical device
  172. * @return
  173. * 1 -> forward both within and between vdevs
  174. * -OR-
  175. * 0 -> forward only within a vdev
  176. */
  177. int ol_cfg_rx_fwd_inter_bss(ol_pdev_handle pdev);
  178. /**
  179. * @brief Specify data frame format used by the OS.
  180. * @details
  181. * Specify what type of frame (802.3 or native WiFi) the host data SW
  182. * should expect from and provide to the OS shim.
  183. *
  184. * @param pdev - handle to the physical device
  185. * @return enumerated data frame format
  186. */
  187. enum wlan_frm_fmt ol_cfg_frame_type(ol_pdev_handle pdev);
  188. /**
  189. * @brief Specify the peak throughput.
  190. * @details
  191. * Specify the peak throughput that a system is expected to support.
  192. * The data SW uses this configuration to help choose the size for its
  193. * tx descriptor pool and rx buffer ring.
  194. * The data SW assumes that the peak throughput applies to either rx or tx,
  195. * rather than having separate specs of the rx max throughput vs. the tx
  196. * max throughput.
  197. *
  198. * @param pdev - handle to the physical device
  199. * @return maximum supported throughput in Mbps (not MBps)
  200. */
  201. int ol_cfg_max_thruput_mbps(ol_pdev_handle pdev);
  202. /**
  203. * @brief Specify the maximum number of fragments per tx network buffer.
  204. * @details
  205. * Specify the maximum number of fragments that a tx frame provided to
  206. * the WLAN driver by the OS may contain.
  207. * In LL systems, the host data SW uses this maximum fragment count to
  208. * determine how many elements to allocate in the fragmentation descriptor
  209. * it creates to specify to the tx MAC DMA where to locate the tx frame's
  210. * data.
  211. * This maximum fragments count is only for regular frames, not TSO frames,
  212. * since TSO frames are sent in segments with a limited number of fragments
  213. * per segment.
  214. *
  215. * @param pdev - handle to the physical device
  216. * @return maximum number of fragments that can occur in a regular tx frame
  217. */
  218. int ol_cfg_netbuf_frags_max(ol_pdev_handle pdev);
  219. /**
  220. * @brief For HL systems, specify when to free tx frames.
  221. * @details
  222. * In LL systems, the host's tx frame is referenced by the MAC DMA, and
  223. * thus cannot be freed until the target indicates that it is finished
  224. * transmitting the frame.
  225. * In HL systems, the entire tx frame is downloaded to the target.
  226. * Consequently, the target has its own copy of the tx frame, and the
  227. * host can free the tx frame as soon as the download completes.
  228. * Alternatively, the HL host can keep the frame allocated until the
  229. * target explicitly tells the HL host it is done transmitting the frame.
  230. * This gives the target the option of discarding its copy of the tx
  231. * frame, and then later getting a new copy from the host.
  232. * This function tells the host whether it should retain its copy of the
  233. * transmit frames until the target explicitly indicates it is finished
  234. * transmitting them, or if it should free its copy as soon as the
  235. * tx frame is downloaded to the target.
  236. *
  237. * @param pdev - handle to the physical device
  238. * @return
  239. * 0 -> retain the tx frame until the target indicates it is done
  240. * transmitting the frame
  241. * -OR-
  242. * 1 -> free the tx frame as soon as the download completes
  243. */
  244. int ol_cfg_tx_free_at_download(ol_pdev_handle pdev);
  245. /**
  246. * @brief Low water mark for target tx credit.
  247. * Tx completion handler is invoked to reap the buffers when the target tx
  248. * credit goes below Low Water Mark.
  249. */
  250. #define OL_CFG_NUM_MSDU_REAP 512
  251. #define ol_cfg_tx_credit_lwm(pdev) \
  252. ((CFG_TGT_NUM_MSDU_DESC > OL_CFG_NUM_MSDU_REAP) ? \
  253. (CFG_TGT_NUM_MSDU_DESC - OL_CFG_NUM_MSDU_REAP) : 0)
  254. /**
  255. * @brief In a HL system, specify the target initial credit count.
  256. * @details
  257. * The HL host tx data SW includes a module for determining which tx frames
  258. * to download to the target at a given time.
  259. * To make this judgement, the HL tx download scheduler has to know
  260. * how many buffers the HL target has available to hold tx frames.
  261. * Due to the possibility that a single target buffer pool can be shared
  262. * between rx and tx frames, the host may not be able to obtain a precise
  263. * specification of the tx buffer space available in the target, but it
  264. * uses the best estimate, as provided by this configuration function,
  265. * to determine how best to schedule the tx frame downloads.
  266. *
  267. * @param pdev - handle to the physical device
  268. * @return the number of tx buffers available in a HL target
  269. */
  270. uint16_t ol_cfg_target_tx_credit(ol_pdev_handle pdev);
  271. /**
  272. * @brief Specify the LL tx MSDU header download size.
  273. * @details
  274. * In LL systems, determine how many bytes from a tx frame to download,
  275. * in order to provide the target FW's Descriptor Engine with enough of
  276. * the packet's payload to interpret what kind of traffic this is,
  277. * and who it is for.
  278. * This download size specification does not include the 802.3 / 802.11
  279. * frame encapsulation headers; it starts with the encapsulated IP packet
  280. * (or whatever ethertype is carried within the ethernet-ish frame).
  281. * The LL host data SW will determine how many bytes of the MSDU header to
  282. * download by adding this download size specification to the size of the
  283. * frame header format specified by the ol_cfg_frame_type configuration
  284. * function.
  285. *
  286. * @param pdev - handle to the physical device
  287. * @return the number of bytes beyond the 802.3 or native WiFi header to
  288. * download to the target for tx classification
  289. */
  290. int ol_cfg_tx_download_size(ol_pdev_handle pdev);
  291. /**
  292. * brief Specify where defrag timeout and duplicate detection is handled
  293. * @details
  294. * non-aggregate duplicate detection and timing out stale fragments
  295. * requires additional target memory. To reach max client
  296. * configurations (128+), non-aggregate duplicate detection and the
  297. * logic to time out stale fragments is moved to the host.
  298. *
  299. * @param pdev - handle to the physical device
  300. * @return
  301. * 0 -> target is responsible non-aggregate duplicate detection and
  302. * timing out stale fragments.
  303. *
  304. * 1 -> host is responsible non-aggregate duplicate detection and
  305. * timing out stale fragments.
  306. */
  307. int ol_cfg_rx_host_defrag_timeout_duplicate_check(ol_pdev_handle pdev);
  308. /**
  309. * brief Query for the period in ms used for throttling for
  310. * thermal mitigation
  311. * @details
  312. * In LL systems, transmit data throttling is used for thermal
  313. * mitigation where data is paused and resumed during the
  314. * throttle period i.e. the throttle period consists of an
  315. * "on" phase when transmit is allowed and an "off" phase when
  316. * transmit is suspended. This function returns the total
  317. * period used for throttling.
  318. *
  319. * @param pdev - handle to the physical device
  320. * @return the total throttle period in ms
  321. */
  322. int ol_cfg_throttle_period_ms(ol_pdev_handle pdev);
  323. /**
  324. * brief Check whether full reorder offload is
  325. * enabled/disable by the host
  326. * @details
  327. * If the host does not support receive reorder (i.e. the
  328. * target performs full receive re-ordering) this will return
  329. * "enabled"
  330. *
  331. * @param pdev - handle to the physical device
  332. * @return 1 - enable, 0 - disable
  333. */
  334. int ol_cfg_is_full_reorder_offload(ol_pdev_handle pdev);
  335. int ol_cfg_is_rx_thread_enabled(ol_pdev_handle pdev);
  336. /**
  337. * ol_cfg_is_ip_tcp_udp_checksum_offload_enabled() - return
  338. * ip_tcp_udp_checksum_offload is enable/disable
  339. * @pdev : handle to the physical device
  340. *
  341. * Return: 1 - enable, 0 - disable
  342. */
  343. static inline
  344. int ol_cfg_is_ip_tcp_udp_checksum_offload_enabled(ol_pdev_handle pdev)
  345. {
  346. struct txrx_pdev_cfg_t *cfg = (struct txrx_pdev_cfg_t *)pdev;
  347. return cfg->ip_tcp_udp_checksum_offload;
  348. }
  349. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  350. int ol_cfg_get_tx_flow_stop_queue_th(ol_pdev_handle pdev);
  351. int ol_cfg_get_tx_flow_start_queue_offset(ol_pdev_handle pdev);
  352. #endif
  353. bool ol_cfg_is_ce_classify_enabled(ol_pdev_handle pdev);
  354. enum wlan_target_fmt_translation_caps {
  355. wlan_frm_tran_cap_raw = 0x01,
  356. wlan_frm_tran_cap_native_wifi = 0x02,
  357. wlan_frm_tran_cap_8023 = 0x04,
  358. };
  359. /**
  360. * @brief Specify the maximum header size added by SW tx encapsulation
  361. * @details
  362. * This function returns the maximum size of the new L2 header, not the
  363. * difference between the new and old L2 headers.
  364. * Thus, this function returns the maximum 802.11 header size that the
  365. * tx SW may need to add to tx data frames.
  366. *
  367. * @param pdev - handle to the physical device
  368. */
  369. static inline int ol_cfg_sw_encap_hdr_max_size(ol_pdev_handle pdev)
  370. {
  371. /*
  372. * 24 byte basic 802.11 header
  373. * + 6 byte 4th addr
  374. * + 2 byte QoS control
  375. * + 4 byte HT control
  376. * + 8 byte LLC/SNAP
  377. */
  378. return sizeof(struct ieee80211_qosframe_htc_addr4) + LLC_SNAP_HDR_LEN;
  379. }
  380. static inline uint8_t ol_cfg_tx_encap(ol_pdev_handle pdev)
  381. {
  382. /* tx encap done in HW */
  383. return 0;
  384. }
  385. static inline int ol_cfg_host_addba(ol_pdev_handle pdev)
  386. {
  387. /*
  388. * ADDBA negotiation is handled by the target FW for Peregrine + Rome.
  389. */
  390. return 0;
  391. }
  392. /**
  393. * @brief If the host SW's ADDBA negotiation fails, should it be retried?
  394. *
  395. * @param pdev - handle to the physical device
  396. */
  397. static inline int ol_cfg_addba_retry(ol_pdev_handle pdev)
  398. {
  399. return 0; /* disabled for now */
  400. }
  401. /**
  402. * @brief How many frames to hold in a paused vdev's tx queue in LL systems
  403. */
  404. static inline int ol_tx_cfg_max_tx_queue_depth_ll(ol_pdev_handle pdev)
  405. {
  406. /*
  407. * Store up to 1500 frames for a paused vdev.
  408. * For example, if the vdev is sending 300 Mbps of traffic, and the
  409. * PHY is capable of 600 Mbps, then it will take 56 ms for the PHY to
  410. * drain both the 700 frames that are queued initially, plus the next
  411. * 700 frames that come in while the PHY is catching up.
  412. * So in this example scenario, the PHY will remain fully utilized
  413. * in a MCC system that has a channel-switching period of 56 ms or less.
  414. * 700 frames calculation was correct when FW drain packet without
  415. * any overhead. Actual situation drain overhead will slowdown drain
  416. * speed. And channel period is less than 56 msec
  417. * Worst scenario, 1500 frames should be stored in host.
  418. */
  419. return 1500;
  420. }
  421. /**
  422. * @brief Set packet log config in HTT config based on CFG ini configuration
  423. */
  424. void ol_set_cfg_packet_log_enabled(ol_pdev_handle pdev, uint8_t val);
  425. /**
  426. * @brief Get packet log config from HTT config
  427. */
  428. uint8_t ol_cfg_is_packet_log_enabled(ol_pdev_handle pdev);
  429. #ifdef IPA_OFFLOAD
  430. /**
  431. * @brief IPA micro controller data path offload enable or not
  432. * @detail
  433. * This function returns IPA micro controller data path offload
  434. * feature enabled or not
  435. *
  436. * @param pdev - handle to the physical device
  437. */
  438. unsigned int ol_cfg_ipa_uc_offload_enabled(ol_pdev_handle pdev);
  439. /**
  440. * @brief IPA micro controller data path TX buffer size
  441. * @detail
  442. * This function returns IPA micro controller data path offload
  443. * TX buffer size which should be pre-allocated by driver.
  444. * Default buffer size is 2K
  445. *
  446. * @param pdev - handle to the physical device
  447. */
  448. unsigned int ol_cfg_ipa_uc_tx_buf_size(ol_pdev_handle pdev);
  449. /**
  450. * @brief IPA micro controller data path TX buffer size
  451. * @detail
  452. * This function returns IPA micro controller data path offload
  453. * TX buffer count which should be pre-allocated by driver.
  454. *
  455. * @param pdev - handle to the physical device
  456. */
  457. unsigned int ol_cfg_ipa_uc_tx_max_buf_cnt(ol_pdev_handle pdev);
  458. /**
  459. * @brief IPA micro controller data path TX buffer size
  460. * @detail
  461. * This function returns IPA micro controller data path offload
  462. * RX indication ring size which will notified by WLAN FW to IPA
  463. * micro controller
  464. *
  465. * @param pdev - handle to the physical device
  466. */
  467. unsigned int ol_cfg_ipa_uc_rx_ind_ring_size(ol_pdev_handle pdev);
  468. /**
  469. * @brief IPA micro controller data path TX buffer size
  470. * @param pdev - handle to the physical device
  471. */
  472. unsigned int ol_cfg_ipa_uc_tx_partition_base(ol_pdev_handle pdev);
  473. #else
  474. static inline unsigned int ol_cfg_ipa_uc_offload_enabled(
  475. ol_pdev_handle pdev)
  476. {
  477. return 0;
  478. }
  479. static inline unsigned int ol_cfg_ipa_uc_tx_buf_size(
  480. ol_pdev_handle pdev)
  481. {
  482. return 0;
  483. }
  484. static inline unsigned int ol_cfg_ipa_uc_tx_max_buf_cnt(
  485. ol_pdev_handle pdev)
  486. {
  487. return 0;
  488. }
  489. static inline unsigned int ol_cfg_ipa_uc_rx_ind_ring_size(
  490. ol_pdev_handle pdev)
  491. {
  492. return 0;
  493. }
  494. static inline unsigned int ol_cfg_ipa_uc_tx_partition_base(
  495. ol_pdev_handle pdev)
  496. {
  497. return 0;
  498. }
  499. #endif /* IPA_OFFLOAD */
  500. #endif /* _OL_CFG__H_ */