cdp_txrx_stats_struct.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. /*
  2. * Copyright (c) 2016 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. /**
  27. * @file cdp_txrx_stats_struct.h
  28. * @brief Define the host data path stats API functions
  29. * called by the host control SW and the OS interface module
  30. */
  31. #ifndef _CDP_TXRX_STATS_STRUCT_H_
  32. #define _CDP_TXRX_STATS_STRUCT_H_
  33. #ifndef CONFIG_WIN
  34. #include <wlan_defs.h>
  35. #endif
  36. #define TXRX_STATS_LEVEL_OFF 0
  37. #define TXRX_STATS_LEVEL_BASIC 1
  38. #define TXRX_STATS_LEVEL_FULL 2
  39. #define BSS_CHAN_INFO_READ 1
  40. #define BSS_CHAN_INFO_READ_AND_CLEAR 2
  41. #define TX_FRAME_TYPE_DATA 0
  42. #define TX_FRAME_TYPE_MGMT 1
  43. #define TX_FRAME_TYPE_BEACON 2
  44. #ifndef TXRX_STATS_LEVEL
  45. #define TXRX_STATS_LEVEL TXRX_STATS_LEVEL_BASIC
  46. #endif
  47. #ifndef BIG_ENDIAN_HOST
  48. typedef struct {
  49. u_int32_t pkts;
  50. u_int32_t bytes;
  51. } ol_txrx_stats_elem;
  52. #else
  53. struct ol_txrx_elem_t {
  54. u_int32_t pkts;
  55. u_int32_t bytes;
  56. };
  57. typedef struct ol_txrx_elem_t ol_txrx_stats_elem;
  58. #endif
  59. /**
  60. * @brief data stats published by the host txrx layer
  61. */
  62. struct ol_txrx_stats {
  63. struct {
  64. /* MSDUs received from the stack */
  65. ol_txrx_stats_elem from_stack;
  66. /* MSDUs successfully sent across the WLAN */
  67. ol_txrx_stats_elem delivered;
  68. struct {
  69. /* MSDUs that the host did not accept */
  70. ol_txrx_stats_elem host_reject;
  71. /* MSDUs which could not be downloaded to the
  72. target */
  73. ol_txrx_stats_elem download_fail;
  74. /* MSDUs which the target discarded
  75. (lack of mem or old age) */
  76. ol_txrx_stats_elem target_discard;
  77. /* MSDUs which the target sent but couldn't get
  78. an ack for */
  79. ol_txrx_stats_elem no_ack;
  80. /* MSDUs dropped in NSS-FW */
  81. ol_txrx_stats_elem nss_ol_dropped;
  82. } dropped;
  83. u_int32_t desc_in_use;
  84. u_int32_t desc_alloc_fails;
  85. u_int32_t ce_ring_full;
  86. u_int32_t dma_map_error;
  87. /* MSDUs given to the txrx layer by the management stack */
  88. ol_txrx_stats_elem mgmt;
  89. struct {
  90. /* TSO applied jumbo packets received from NW Stack */
  91. ol_txrx_stats_elem tso_pkts;
  92. /* Non - TSO packets */
  93. ol_txrx_stats_elem non_tso_pkts;
  94. /* TSO packets : Dropped during TCP segmentation*/
  95. ol_txrx_stats_elem tso_dropped;
  96. /* TSO Descriptors */
  97. u_int32_t tso_desc_cnt;
  98. } tso;
  99. struct {
  100. /* TSO applied jumbo packets received from NW Stack */
  101. ol_txrx_stats_elem sg_pkts;
  102. /* Non - TSO packets */
  103. ol_txrx_stats_elem non_sg_pkts;
  104. /* TSO packets : Dropped during TCP segmentation*/
  105. ol_txrx_stats_elem sg_dropped;
  106. /* TSO Descriptors */
  107. u_int32_t sg_desc_cnt;
  108. } sg;
  109. struct {
  110. /* packets enqueued for flow control */
  111. u_int32_t fl_ctrl_enqueue;
  112. /* packets discarded for flow control is full */
  113. u_int32_t fl_ctrl_discard;
  114. /* packets sent to CE without flow control */
  115. u_int32_t fl_ctrl_avoid;
  116. } fl_ctrl;
  117. } tx;
  118. struct {
  119. /* MSDUs given to the OS shim */
  120. ol_txrx_stats_elem delivered;
  121. /* MSDUs forwarded from the rx path to the tx path */
  122. ol_txrx_stats_elem forwarded;
  123. /* MSDUs in which ipv4 chksum error detected by HW */
  124. ol_txrx_stats_elem ipv4_cksum_err;
  125. /* MSDUs in which tcp chksum error detected by HW */
  126. ol_txrx_stats_elem tcp_ipv4_cksum_err;
  127. /* MSDUs in which udp chksum error detected by HW */
  128. ol_txrx_stats_elem udp_ipv4_cksum_err;
  129. /* MSDUs in which tcp V6 chksum error detected by HW */
  130. ol_txrx_stats_elem tcp_ipv6_cksum_err;
  131. /* MSDUs in which UDP V6 chksum error detected by HW */
  132. ol_txrx_stats_elem udp_ipv6_cksum_err;
  133. } rx;
  134. struct {
  135. /* Number of mcast recieved for conversion */
  136. u_int32_t num_me_rcvd;
  137. /* Number of unicast sent as part of mcast conversion */
  138. u_int32_t num_me_ucast;
  139. /* Number of multicast frames dropped due to dma_map failure */
  140. u_int32_t num_me_dropped_m;
  141. /* Number of multicast frames dropped due to allocation
  142. failure */
  143. u_int32_t num_me_dropped_a;
  144. /* Number of multicast frames dropped due to internal failure */
  145. u_int32_t num_me_dropped_i;
  146. /* Number of me buf currently in use */
  147. u_int32_t num_me_buf;
  148. /* Number of me buf frames to self mac address */
  149. u_int32_t num_me_dropped_s;
  150. /* Number of me buf in use in non pool based allocation*/
  151. u_int32_t num_me_nonpool;
  152. /* Number of me buf allocated using non pool based allocation*/
  153. u_int32_t num_me_nonpool_count;
  154. } mcast_enhance;
  155. };
  156. struct ol_ath_dbg_rx_rssi {
  157. A_UINT8 rx_rssi_pri20;
  158. A_UINT8 rx_rssi_sec20;
  159. A_UINT8 rx_rssi_sec40;
  160. A_UINT8 rx_rssi_sec80;
  161. };
  162. struct ol_ath_radiostats {
  163. A_UINT64 tx_beacon;
  164. A_UINT32 be_nobuf;
  165. A_UINT32 tx_buf_count;
  166. A_UINT32 tx_packets;
  167. A_UINT32 rx_packets;
  168. A_INT32 tx_mgmt;
  169. A_UINT32 tx_num_data;
  170. A_UINT32 rx_num_data;
  171. A_INT32 rx_mgmt;
  172. A_UINT32 rx_num_mgmt;
  173. A_UINT32 rx_num_ctl;
  174. A_UINT32 tx_rssi;
  175. A_UINT32 tx_mcs[10];
  176. A_UINT32 rx_mcs[10];
  177. A_UINT32 rx_rssi_comb;
  178. struct ol_ath_dbg_rx_rssi rx_rssi_chain0;
  179. struct ol_ath_dbg_rx_rssi rx_rssi_chain1;
  180. struct ol_ath_dbg_rx_rssi rx_rssi_chain2;
  181. struct ol_ath_dbg_rx_rssi rx_rssi_chain3;
  182. A_UINT64 rx_bytes;
  183. A_UINT64 tx_bytes;
  184. A_UINT32 tx_compaggr;
  185. A_UINT32 rx_aggr;
  186. A_UINT32 tx_bawadv;
  187. A_UINT32 tx_compunaggr;
  188. A_UINT32 rx_overrun;
  189. A_UINT32 rx_badcrypt;
  190. A_UINT32 rx_badmic;
  191. A_UINT32 rx_crcerr;
  192. A_UINT32 rx_phyerr;
  193. A_UINT32 ackRcvBad;
  194. A_UINT32 rtsBad;
  195. A_UINT32 rtsGood;
  196. A_UINT32 fcsBad;
  197. A_UINT32 noBeacons;
  198. A_UINT32 mib_int_count;
  199. A_UINT32 rx_looplimit_start;
  200. A_UINT32 rx_looplimit_end;
  201. A_UINT8 ap_stats_tx_cal_enable;
  202. A_UINT32 tgt_asserts;
  203. A_INT16 chan_nf;
  204. A_UINT32 rx_last_msdu_unset_cnt;
  205. A_INT16 chan_nf_sec80;
  206. };
  207. #ifndef CONFIG_WIN
  208. /*
  209. ** structure to hold all stats information
  210. ** for offload device interface
  211. */
  212. struct ol_stats {
  213. int txrx_stats_level;
  214. struct ol_txrx_stats txrx_stats;
  215. struct wlan_dbg_stats stats;
  216. struct ol_ath_radiostats interface_stats;
  217. struct wlan_dbg_tidq_stats tidq_stats;
  218. };
  219. #endif
  220. /*
  221. ** Enumeration of PDEV Configuration parameter
  222. */
  223. typedef enum _ol_ath_param_t {
  224. OL_ATH_PARAM_TXCHAINMASK = 1,
  225. OL_ATH_PARAM_RXCHAINMASK = 2,
  226. OL_ATH_PARAM_AMPDU = 6,
  227. OL_ATH_PARAM_AMPDU_LIMIT = 7,
  228. OL_ATH_PARAM_AMPDU_SUBFRAMES = 8,
  229. OL_ATH_PARAM_TXPOWER_LIMIT2G = 12,
  230. OL_ATH_PARAM_TXPOWER_LIMIT5G = 13,
  231. OL_ATH_PARAM_LDPC = 32,
  232. OL_ATH_PARAM_VOW_EXT_STATS = 45,
  233. OL_ATH_PARAM_DYN_TX_CHAINMASK = 73,
  234. OL_ATH_PARAM_BURST_ENABLE = 77,
  235. OL_ATH_PARAM_BURST_DUR = 78,
  236. OL_ATH_PARAM_BCN_BURST = 80,
  237. OL_ATH_PARAM_DCS = 82,
  238. #if UMAC_SUPPORT_PERIODIC_PERFSTATS
  239. OL_ATH_PARAM_PRDPERFSTAT_THRPUT_ENAB = 83,
  240. OL_ATH_PARAM_PRDPERFSTAT_THRPUT_WIN = 84,
  241. OL_ATH_PARAM_PRDPERFSTAT_THRPUT = 85,
  242. OL_ATH_PARAM_PRDPERFSTAT_PER_ENAB = 86,
  243. OL_ATH_PARAM_PRDPERFSTAT_PER_WIN = 87,
  244. OL_ATH_PARAM_PRDPERFSTAT_PER = 88,
  245. #endif
  246. /* UMAC_SUPPORT_PERIODIC_PERFSTATS */
  247. OL_ATH_PARAM_TOTAL_PER = 89,
  248. /*set manual rate for rts frame */
  249. OL_ATH_PARAM_RTS_CTS_RATE = 92,
  250. /** co channel interference threshold level */
  251. OL_ATH_PARAM_DCS_COCH_THR = 93,
  252. /** transmit error threshold */
  253. OL_ATH_PARAM_DCS_TXERR_THR = 94,
  254. /** phy error threshold */
  255. OL_ATH_PARAM_DCS_PHYERR_THR = 95,
  256. /* The IOCTL number is 114, it is made 114, inorder to make the IOCTL
  257. number same as Direct-attach IOCTL.
  258. Please, don't change number. This IOCTL gets the Interface code path
  259. it should be either DIRECT-ATTACH or OFF-LOAD.
  260. */
  261. OL_ATH_PARAM_GET_IF_ID = 114,
  262. /*Enable Acs back Ground Channel selection Scan timer in AP mode*/
  263. OL_ATH_PARAM_ACS_ENABLE_BK_SCANTIMEREN = 118,
  264. /* ACS scan timer value in Seconds */
  265. OL_ATH_PARAM_ACS_SCANTIME = 119,
  266. /*Negligence Delta RSSI between two channel */
  267. OL_ATH_PARAM_ACS_RSSIVAR = 120,
  268. /*Negligence Delta Channel load between two channel*/
  269. OL_ATH_PARAM_ACS_CHLOADVAR = 121,
  270. /* Enable Limited OBSS check */
  271. OL_ATH_PARAM_ACS_LIMITEDOBSS = 122,
  272. /* Acs control flag for Scan timer */
  273. OL_ATH_PARAM_ACS_CTRLFLAG = 123,
  274. /* Acs Run time Debug level*/
  275. OL_ATH_PARAM_ACS_DEBUGTRACE = 124,
  276. OL_ATH_PARAM_SET_FW_HANG_ID = 137,
  277. /* Radio type 1:11ac 0:11abgn */
  278. OL_ATH_PARAM_RADIO_TYPE = 138,
  279. OL_ATH_PARAM_IGMPMLD_OVERRIDE, /* IGMP/MLD packet override */
  280. OL_ATH_PARAM_IGMPMLD_TID, /* IGMP/MLD packet TID no */
  281. OL_ATH_PARAM_ARPDHCP_AC_OVERRIDE,
  282. OL_ATH_PARAM_NON_AGG_SW_RETRY_TH,
  283. OL_ATH_PARAM_AGG_SW_RETRY_TH,
  284. /* Dont change this number it as per sync with DA
  285. Blocking certian channel from ic channel list */
  286. OL_ATH_PARAM_DISABLE_DFS = 144,
  287. OL_ATH_PARAM_ENABLE_AMSDU = 145,
  288. OL_ATH_PARAM_ENABLE_AMPDU = 146,
  289. OL_ATH_PARAM_STA_KICKOUT_TH,
  290. OL_ATH_PARAM_WLAN_PROF_ENABLE,
  291. OL_ATH_PARAM_LTR_ENABLE,
  292. OL_ATH_PARAM_LTR_AC_LATENCY_BE = 150,
  293. OL_ATH_PARAM_LTR_AC_LATENCY_BK,
  294. OL_ATH_PARAM_LTR_AC_LATENCY_VI,
  295. OL_ATH_PARAM_LTR_AC_LATENCY_VO,
  296. OL_ATH_PARAM_LTR_AC_LATENCY_TIMEOUT,
  297. OL_ATH_PARAM_LTR_TX_ACTIVITY_TIMEOUT = 155,
  298. OL_ATH_PARAM_LTR_SLEEP_OVERRIDE,
  299. OL_ATH_PARAM_LTR_RX_OVERRIDE,
  300. OL_ATH_PARAM_L1SS_ENABLE,
  301. OL_ATH_PARAM_DSLEEP_ENABLE,
  302. /** radar error threshold */
  303. OL_ATH_PARAM_DCS_RADAR_ERR_THR = 160,
  304. /** Tx channel utilization due to AP's tx and rx */
  305. OL_ATH_PARAM_DCS_USERMAX_CU_THR,
  306. /** interference detection threshold */
  307. OL_ATH_PARAM_DCS_INTR_DETECT_THR,
  308. /** sampling window, default 10secs */
  309. OL_ATH_PARAM_DCS_SAMPLE_WINDOW,
  310. /** debug logs enable/disable */
  311. OL_ATH_PARAM_DCS_DEBUG,
  312. OL_ATH_PARAM_ANI_ENABLE = 165,
  313. OL_ATH_PARAM_ANI_POLL_PERIOD,
  314. OL_ATH_PARAM_ANI_LISTEN_PERIOD,
  315. OL_ATH_PARAM_ANI_OFDM_LEVEL,
  316. OL_ATH_PARAM_ANI_CCK_LEVEL,
  317. OL_ATH_PARAM_DSCP_TID_MAP = 170,
  318. OL_ATH_PARAM_TXPOWER_SCALE,
  319. /** Phy error penalty */
  320. OL_ATH_PARAM_DCS_PHYERR_PENALTY,
  321. #if ATH_SUPPORT_DSCP_OVERRIDE
  322. /** set/get TID for sending HMMC packets */
  323. OL_ATH_PARAM_HMMC_DSCP_TID_MAP,
  324. /** set/get DSCP mapping override */
  325. OL_ATH_PARAM_DSCP_OVERRIDE,
  326. /** set/get HMMC-DSCP mapping override */
  327. OL_ATH_PARAM_HMMC_DSCP_OVERRIDE = 175,
  328. #endif
  329. #if ATH_RX_LOOPLIMIT_TIMER
  330. OL_ATH_PARAM_LOOPLIMIT_NUM,
  331. #endif
  332. OL_ATH_PARAM_ANTENNA_GAIN_2G,
  333. OL_ATH_PARAM_ANTENNA_GAIN_5G,
  334. OL_ATH_PARAM_RX_FILTER,
  335. #if ATH_SUPPORT_HYFI_ENHANCEMENTS
  336. OL_ATH_PARAM_BUFF_THRESH = 180,
  337. OL_ATH_PARAM_BLK_REPORT_FLOOD,
  338. OL_ATH_PARAM_DROP_STA_QUERY,
  339. #endif
  340. OL_ATH_PARAM_QBOOST,
  341. OL_ATH_PARAM_SIFS_FRMTYPE,
  342. OL_ATH_PARAM_SIFS_UAPSD = 185,
  343. OL_ATH_PARAM_FW_RECOVERY_ID,
  344. OL_ATH_PARAM_RESET_OL_STATS,
  345. OL_ATH_PARAM_AGGR_BURST,
  346. /* Number of deauth sent in consecutive rx_peer_invalid */
  347. OL_ATH_PARAM_DEAUTH_COUNT,
  348. OL_ATH_PARAM_BLOCK_INTERBSS = 190,
  349. /* Firmware reset control for Bmiss / timeout / reset */
  350. OL_ATH_PARAM_FW_DISABLE_RESET,
  351. OL_ATH_PARAM_MSDU_TTL,
  352. OL_ATH_PARAM_PPDU_DURATION,
  353. OL_ATH_PARAM_SET_TXBF_SND_PERIOD,
  354. OL_ATH_PARAM_ALLOW_PROMISC = 195,
  355. OL_ATH_PARAM_BURST_MODE,
  356. OL_ATH_PARAM_DYN_GROUPING,
  357. OL_ATH_PARAM_DPD_ENABLE,
  358. OL_ATH_PARAM_DBGLOG_RATELIM,
  359. /* firmware should intimate us about ps state change for node */
  360. OL_ATH_PARAM_PS_STATE_CHANGE = 200,
  361. OL_ATH_PARAM_MCAST_BCAST_ECHO,
  362. /* OBSS RSSI threshold for 20/40 coexistance */
  363. OL_ATH_PARAM_OBSS_RSSI_THRESHOLD,
  364. /* Link/node RX RSSI threshold for 20/40 coexistance */
  365. OL_ATH_PARAM_OBSS_RX_RSSI_THRESHOLD,
  366. #if ATH_CHANNEL_BLOCKING
  367. OL_ATH_PARAM_ACS_BLOCK_MODE = 205,
  368. #endif
  369. OL_ATH_PARAM_ACS_TX_POWER_OPTION,
  370. /* Default Antenna Polarization MSB 8 bits (24:31) specifying
  371. enable/disable ; LSB 24 bits (0:23) antenna mask value */
  372. OL_ATH_PARAM_ANT_POLARIZATION,
  373. /* rate limit mute type error prints */
  374. OL_ATH_PARAM_PRINT_RATE_LIMIT,
  375. OL_ATH_PARAM_PDEV_RESET, /* Reset FW PDEV*/
  376. /*Do not crash host when target assert happened*/
  377. OL_ATH_PARAM_FW_DUMP_NO_HOST_CRASH = 210,
  378. /*Consider OBSS non-erp to change to long slot*/
  379. OL_ATH_PARAM_CONSIDER_OBSS_NON_ERP_LONG_SLOT = 211,
  380. OL_ATH_PARAM_STATS_FC,
  381. OL_ATH_PARAM_QFLUSHINTERVAL,
  382. OL_ATH_PARAM_TOTAL_Q_SIZE,
  383. OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE0,
  384. OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE1,
  385. OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE2,
  386. OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE3,
  387. OL_ATH_PARAM_MIN_THRESHOLD,
  388. OL_ATH_PARAM_MAX_Q_LIMIT,
  389. OL_ATH_PARAM_MIN_Q_LIMIT,
  390. OL_ATH_PARAM_CONG_CTRL_TIMER_INTV,
  391. OL_ATH_PARAM_STATS_TIMER_INTV,
  392. OL_ATH_PARAM_ROTTING_TIMER_INTV,
  393. OL_ATH_PARAM_LATENCY_PROFILE,
  394. OL_ATH_PARAM_HOSTQ_DUMP,
  395. OL_ATH_PARAM_TIDQ_MAP,
  396. OL_ATH_PARAM_DBG_ARP_SRC_ADDR, /* ARP DEBUG source address*/
  397. OL_ATH_PARAM_DBG_ARP_DST_ADDR, /* ARP DEBUG destination address*/
  398. OL_ATH_PARAM_ARP_DBG_CONF, /* ARP debug configuration */
  399. OL_ATH_PARAM_DISABLE_STA_VAP_AMSDU, /* Disable AMSDU for station vap */
  400. #if ATH_SUPPORT_DFS && ATH_SUPPORT_STA_DFS
  401. OL_ATH_PARAM_STADFS_ENABLE = 300, /* STA DFS is enabled or not */
  402. #endif
  403. #if QCA_AIRTIME_FAIRNESS
  404. OL_ATH_PARAM_ATF_STRICT_SCHED = 301,
  405. OL_ATH_PARAM_ATF_GROUP_POLICY = 302,
  406. #endif
  407. #if DBDC_REPEATER_SUPPORT
  408. OL_ATH_PARAM_PRIMARY_RADIO,
  409. OL_ATH_PARAM_DBDC_ENABLE,
  410. #endif
  411. OL_ATH_PARAM_TXPOWER_DBSCALE,
  412. OL_ATH_PARAM_CTL_POWER_SCALE,
  413. #if QCA_AIRTIME_FAIRNESS
  414. OL_ATH_PARAM_ATF_OBSS_SCHED = 307,
  415. OL_ATH_PARAM_ATF_OBSS_SCALE = 308,
  416. #endif
  417. OL_ATH_PARAM_PHY_OFDM_ERR = 309,
  418. OL_ATH_PARAM_PHY_CCK_ERR = 310,
  419. OL_ATH_PARAM_FCS_ERR = 311,
  420. OL_ATH_PARAM_CHAN_UTIL = 312,
  421. #if DBDC_REPEATER_SUPPORT
  422. OL_ATH_PARAM_CLIENT_MCAST,
  423. #endif
  424. OL_ATH_PARAM_EMIWAR_80P80 = 314,
  425. OL_ATH_PARAM_BATCHMODE = 315,
  426. OL_ATH_PARAM_PACK_AGGR_DELAY = 316,
  427. #if UMAC_SUPPORT_ACFG
  428. OL_ATH_PARAM_DIAG_ENABLE = 317,
  429. #endif
  430. #if ATH_SUPPORT_VAP_QOS
  431. OL_ATH_PARAM_VAP_QOS = 318,
  432. #endif
  433. OL_ATH_PARAM_CHAN_STATS_TH = 319,
  434. /* Passive scan is enabled or disabled */
  435. OL_ATH_PARAM_PASSIVE_SCAN_ENABLE = 320,
  436. OL_ATH_MIN_RSSI_ENABLE = 321,
  437. OL_ATH_MIN_RSSI = 322,
  438. OL_ATH_PARAM_ACS_2G_ALLCHAN = 323,
  439. #if DBDC_REPEATER_SUPPORT
  440. OL_ATH_PARAM_DELAY_STAVAP_UP = 324,
  441. #endif
  442. OL_ATH_PARAM_TXPOW_MGMT = 326, /* Can be used to configure transmit power for management frames */
  443. OL_ATH_PARAM_CHANSWITCH_OPTIONS = 327, /* It is used to set the channel switch options */
  444. OL_ATH_BTCOEX_ENABLE = 328,
  445. OL_ATH_BTCOEX_WL_PRIORITY = 329,
  446. OL_ATH_PARAM_TID_OVERRIDE_QUEUE_MAPPING = 330,
  447. OL_ATH_PARAM_CAL_VER_CHECK = 331,
  448. OL_ATH_PARAM_NO_VLAN = 332,
  449. OL_ATH_PARAM_CCA_THRESHOLD = 333,
  450. OL_ATH_PARAM_ATF_LOGGING = 334,
  451. OL_ATH_PARAM_STRICT_DOTH = 335,
  452. OL_ATH_PARAM_DISCONNECTION_TIMEOUT = 336,
  453. OL_ATH_PARAM_RECONFIGURATION_TIMEOUT = 337,
  454. OL_ATH_PARAM_CHANNEL_SWITCH_COUNT = 338,
  455. OL_ATH_PARAM_ALWAYS_PRIMARY = 339,
  456. OL_ATH_PARAM_FAST_LANE = 340,
  457. OL_ATH_GET_BTCOEX_DUTY_CYCLE = 341,
  458. OL_ATH_PARAM_SECONDARY_OFFSET_IE = 342,
  459. OL_ATH_PARAM_WIDE_BAND_SUB_ELEMENT = 343,
  460. OL_ATH_PARAM_PREFERRED_UPLINK = 344,
  461. OL_ATH_PARAM_PRECAC_ENABLE = 345,
  462. OL_ATH_PARAM_PRECAC_TIMEOUT = 346,
  463. } ol_ath_param_t;
  464. /*
  465. ** Enumeration of PDEV Configuration parameter
  466. */
  467. typedef enum _ol_hal_param_t {
  468. OL_HAL_CONFIG_DMA_BEACON_RESPONSE_TIME = 0
  469. } ol_hal_param_t;
  470. /* Bitmasks for stats that can block */
  471. #define EXT_TXRX_FW_STATS 0x0001
  472. #endif