wmi_services.h 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  1. /*
  2. * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
  4. *
  5. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  6. *
  7. *
  8. * Permission to use, copy, modify, and/or distribute this software for
  9. * any purpose with or without fee is hereby granted, provided that the
  10. * above copyright notice and this permission notice appear in all
  11. * copies.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  14. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  15. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  16. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  17. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  18. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  19. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  20. * PERFORMANCE OF THIS SOFTWARE.
  21. */
  22. /*
  23. * This file was originally distributed by Qualcomm Atheros, Inc.
  24. * under proprietary terms before Copyright ownership was assigned
  25. * to the Linux Foundation.
  26. */
  27. #ifndef _WMI_SERVICES_H_
  28. #define _WMI_SERVICES_H_
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. typedef enum {
  33. WMI_SERVICE_BEACON_OFFLOAD=0, /* beacon offload */
  34. WMI_SERVICE_SCAN_OFFLOAD=1, /* scan offload */
  35. WMI_SERVICE_ROAM_SCAN_OFFLOAD=2, /* roam scan offload */
  36. WMI_SERVICE_BCN_MISS_OFFLOAD=3, /* beacon miss offload */
  37. WMI_SERVICE_STA_PWRSAVE=4, /* fake sleep + basic power save */
  38. WMI_SERVICE_STA_ADVANCED_PWRSAVE=5, /* uapsd, pspoll, force sleep */
  39. WMI_SERVICE_AP_UAPSD=6, /* uapsd on AP */
  40. WMI_SERVICE_AP_DFS=7, /* DFS on AP */
  41. WMI_SERVICE_11AC=8, /* supports 11ac */
  42. WMI_SERVICE_BLOCKACK=9, /* Supports triggering ADDBA/DELBA from host*/
  43. WMI_SERVICE_PHYERR=10, /* PHY error */
  44. WMI_SERVICE_BCN_FILTER=11, /* Beacon filter support */
  45. WMI_SERVICE_RTT=12, /* RTT (round trip time) support */
  46. WMI_SERVICE_WOW=13, /* WOW Support */
  47. WMI_SERVICE_RATECTRL_CACHE=14, /* Rate-control caching */
  48. WMI_SERVICE_IRAM_TIDS=15, /* TIDs in IRAM */
  49. WMI_SERVICE_ARPNS_OFFLOAD=16, /* ARP NS Offload support for STA vdev */
  50. WMI_SERVICE_NLO=17, /* Network list offload service */
  51. WMI_SERVICE_GTK_OFFLOAD=18, /* GTK offload */
  52. WMI_SERVICE_SCAN_SCH=19, /* Scan Scheduler Service */
  53. WMI_SERVICE_CSA_OFFLOAD=20, /* CSA offload service */
  54. WMI_SERVICE_CHATTER=21, /* Chatter service */
  55. WMI_SERVICE_COEX_FREQAVOID=22, /* FW report freq range to avoid */
  56. WMI_SERVICE_PACKET_POWER_SAVE=23, /* packet power save service */
  57. WMI_SERVICE_FORCE_FW_HANG=24, /* Service to test the firmware recovery mechanism */
  58. WMI_SERVICE_GPIO=25, /* GPIO service */
  59. WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM=26, /* Modulated DTIM support */
  60. WMI_STA_UAPSD_BASIC_AUTO_TRIG=27, /* Basic version of station UAPSD AC Trigger Generation Method with
  61. * variable trigger periods (service, delay, and suspend intervals) */
  62. WMI_STA_UAPSD_VAR_AUTO_TRIG=28, /* Station UAPSD AC Trigger Generation Method with variable
  63. * trigger periods (service, delay, and suspend intervals) */
  64. WMI_SERVICE_STA_KEEP_ALIVE=29, /* Service to support the STA KEEP ALIVE mechanism */
  65. WMI_SERVICE_TX_ENCAP=30, /* Packet type for TX encapsulation */
  66. WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC=31, /* detect out-of-sync sleeping stations */
  67. WMI_SERVICE_EARLY_RX=32, /* adaptive early-rx feature */
  68. WMI_SERVICE_STA_SMPS=33, /* STA MIMO-PS */
  69. WMI_SERVICE_FWTEST=34, /* Firmware test service */
  70. WMI_SERVICE_STA_WMMAC=35, /* STA WMMAC */
  71. WMI_SERVICE_TDLS=36, /* TDLS support */
  72. WMI_SERVICE_BURST=37, /* SIFS spaced burst support */
  73. WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE=38, /* Dynamic beaocn interval change for SAP/P2p GO in MCC scenario */
  74. WMI_SERVICE_ADAPTIVE_OCS=39, /* Service to support adaptive off-channel scheduler */
  75. WMI_SERVICE_BA_SSN_SUPPORT=40, /* target will provide Sequence number for the peer/tid combo */
  76. WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE=41,
  77. WMI_SERVICE_WLAN_HB=42, /* wlan HB service */
  78. WMI_SERVICE_LTE_ANT_SHARE_SUPPORT=43, /* support LTE/WLAN antenna sharing */
  79. WMI_SERVICE_BATCH_SCAN=44, /* Service to support batch scan */
  80. WMI_SERVICE_QPOWER=45, /* QPower service */
  81. WMI_SERVICE_PLMREQ=46,
  82. WMI_SERVICE_THERMAL_MGMT=47, /* thermal throttling support,
  83. * compared with
  84. * WMI_SERVICE_THERM_THROT,
  85. * this service only reports
  86. * current temperature to host,
  87. * and host will do the thermal
  88. * throttling. */
  89. WMI_SERVICE_RMC=48, /* RMC support */
  90. WMI_SERVICE_MHF_OFFLOAD=49, /* multi-hop forwarding offload */
  91. WMI_SERVICE_COEX_SAR=50, /* target support SAR tx limit from WMI_PDEV_PARAM_TXPOWER_LIMITxG */
  92. WMI_SERVICE_BCN_TXRATE_OVERRIDE=51, /* Will support the bcn/prb rsp rate override */
  93. WMI_SERVICE_NAN=52, /* Neighbor Awareness Network */
  94. WMI_SERVICE_L1SS_STAT=53, /* L1SS statistics counter report */
  95. WMI_SERVICE_ESTIMATE_LINKSPEED=54, /* Linkspeed Estimation per peer */
  96. WMI_SERVICE_OBSS_SCAN=55, /* Service to support OBSS scan */
  97. WMI_SERVICE_TDLS_OFFCHAN=56, /* TDLS off channel support */
  98. WMI_SERVICE_TDLS_UAPSD_BUFFER_STA=57, /* TDLS UAPSD Buffer STA support */
  99. WMI_SERVICE_TDLS_UAPSD_SLEEP_STA=58, /* TDLS UAPSD Sleep STA support */
  100. WMI_SERVICE_IBSS_PWRSAVE=59, /* IBSS power save support */
  101. WMI_SERVICE_LPASS=60, /* Service to support LPASS */
  102. WMI_SERVICE_EXTSCAN=61, /* Extended Scans */
  103. WMI_SERVICE_D0WOW=62, /* D0-WOW Support */
  104. WMI_SERVICE_HSOFFLOAD=63, /* Hotspot offload feature Support */
  105. WMI_SERVICE_ROAM_HO_OFFLOAD=64, /* roam handover offload */
  106. WMI_SERVICE_RX_FULL_REORDER=65, /* target-based Rx full reorder */
  107. WMI_SERVICE_DHCP_OFFLOAD=66, /* DHCP offload support */
  108. WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT=67, /* STA RX DATA offload to IPA support */
  109. WMI_SERVICE_MDNS_OFFLOAD=68, /* mDNS responder offload support */
  110. WMI_SERVICE_SAP_AUTH_OFFLOAD=69, /* softap auth offload */
  111. WMI_SERVICE_DUAL_BAND_SIMULTANEOUS_SUPPORT=70, /* Dual Band Simultaneous support */
  112. WMI_SERVICE_OCB=71, /* OCB mode support */
  113. WMI_SERVICE_AP_ARPNS_OFFLOAD=72, /* arp offload support for ap mode vdev */
  114. WMI_SERVICE_PER_BAND_CHAINMASK_SUPPORT=73, /* Per band chainmask support */
  115. WMI_SERVICE_PACKET_FILTER_OFFLOAD=74, /* Per vdev packet filters */
  116. WMI_SERVICE_MGMT_TX_HTT=75, /* Mgmt Tx via HTT interface */
  117. WMI_SERVICE_MGMT_TX_WMI=76, /* Mgmt Tx via WMI interface */
  118. WMI_SERVICE_EXT_MSG=77, /* WMI_SERVICE_READY_EXT msg follows */
  119. WMI_SERVICE_MAWC=78, /* Motion Aided WiFi Connectivity (MAWC)*/
  120. WMI_SERVICE_PEER_ASSOC_CONF=79, /* target will send ASSOC_CONF after ASSOC_CMD is processed */
  121. WMI_SERVICE_EGAP=80, /* enhanced green ap support */
  122. WMI_SERVICE_STA_PMF_OFFLOAD=81, /* FW supports 11W PMF Offload for STA */
  123. WMI_SERVICE_UNIFIED_WOW_CAPABILITY=82, /* FW supports unified D0 and D3 wow */
  124. WMI_SERVICE_ENHANCED_PROXY_STA=83, /* Enhanced ProxySTA mode support */
  125. WMI_SERVICE_ATF=84, /* Air Time Fairness support */
  126. WMI_SERVICE_COEX_GPIO=85, /* BTCOEX GPIO support */
  127. WMI_SERVICE_AUX_SPECTRAL_INTF=86, /* Aux Radio enhancement support for ignoring spectral scan intf from main radios */
  128. WMI_SERVICE_AUX_CHAN_LOAD_INTF=87, /* Aux Radio enhancement support for ignoring chan load intf from main radios*/
  129. WMI_SERVICE_BSS_CHANNEL_INFO_64=88, /* BSS channel info (freq, noise floor, 64-bit counters) event support */
  130. WMI_SERVICE_ENTERPRISE_MESH=89, /* Enterprise MESH Service Support */
  131. WMI_SERVICE_RESTRT_CHNL_SUPPORT=90, /* Restricted Channel Support */
  132. WMI_SERVICE_BPF_OFFLOAD=91, /* FW supports bpf offload */
  133. WMI_SERVICE_SYNC_DELETE_CMDS=92, /* FW sends response event for Peer, Vdev delete commands */
  134. WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT=93,
  135. WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT=94,
  136. WMI_SERVICE_RATECTRL_LIMIT_MAX_MIN_RATES=95, /* allow per-peer tx MCS min/max limits by host */
  137. WMI_SERVICE_NAN_DATA=96, /* FW supports NAN data */
  138. WMI_SERVICE_NAN_RTT=97, /* FW supports NAN RTT */
  139. WMI_SERVICE_11AX=98, /* FW supports 802.11ax */
  140. /* WMI_SERVICE_DEPRECATED_REPLACE
  141. * FW supports these new WMI commands, to be used rather than
  142. * deprecated matching commands:
  143. * - WMI_PDEV_SET_PCL_CMDID (vs. WMI_SOC_SET_PCL_CMDID)
  144. * - WMI_PDEV_SET_HW_MODE_CMDID (vs. WMI_SOC_SET_HW_MODE_CMDID)
  145. * - WMI_PDEV_SET_MAC_CONFIG_CMDID (vs. WMI_SOC_SET_DUAL_MAC_CONFIG_CMDID)
  146. * - WMI_PDEV_SET_ANTENNA_MODE_CMDID (vs. WMI_SOC_SET_ANTENNA_MODE_CMDID)
  147. * - WMI_VDEV_SET_DSCP_TID_MAP_CMDID (vs. WMI_VDEV_SET_WMM_PARAMS_CMDID)
  148. */
  149. WMI_SERVICE_DEPRECATED_REPLACE=99,
  150. WMI_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE=100, /* FW supports a new mode that allows to run connection tracker in host */
  151. WMI_SERVICE_ENHANCED_MCAST_FILTER=101, /* FW supports enhanced multicast filtering (of mcast IP inside ucast WLAN) */
  152. WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT=102, /* periodic channel stats service */
  153. WMI_SERVICE_MESH_11S=103, /* 11s mesh service support */
  154. WMI_SERVICE_HALF_RATE_QUARTER_RATE_SUPPORT=104, /* FW+HW supports 10 MHz (half rate) and 5 MHz (quarter rate) channel bandwidth */
  155. WMI_SERVICE_VDEV_RX_FILTER=105, /* Support per-vdev specs of which rx frames to filter out */
  156. WMI_SERVICE_P2P_LISTEN_OFFLOAD_SUPPORT=106,
  157. WMI_SERVICE_MARK_FIRST_WAKEUP_PACKET=107, /* FW supports marking the first data packet which wakes the host from suspend */
  158. WMI_SERVICE_MULTIPLE_MCAST_FILTER_SET=108, /* FW supports command that can add/delete multiple mcast filters */
  159. /* WMI_SERVICE_HOST_MANAGED_RX_REORDER -
  160. * FW supports host-managed RX reorder.
  161. * Host managed RX reorder involves RX BA state machine handling
  162. * on peer/TID basis, REO configuration for HW based reordering/PN
  163. * check and processing reorder exceptions generated by HW.
  164. */
  165. WMI_SERVICE_HOST_MANAGED_RX_REORDER=109,
  166. /* Specify whether the target supports the following WMI messages for
  167. * reading / writing its flash memory:
  168. * WMI_READ_DATA_FROM_FLASH_CMDID,
  169. * WMI_READ_DATA_FROM_FLASH_EVENTID,
  170. * WMI_TRANSFER_DATA_TO_FLASH_CMDID,
  171. * WMI_TRANSFER_DATA_TO_FLASH_COMPLETE_EVENTID,
  172. */
  173. WMI_SERVICE_FLASH_RDWR_SUPPORT=110,
  174. WMI_SERVICE_WLAN_STATS_REPORT=111, /* support WLAN stats report */
  175. /* WMI_SERVICE_TX_MSDU_ID_NEW_PARTITION_SUPPORT -
  176. * FW supports bigger MSDU ID partition which is defined as HTT_TX_IPA_NEW_MSDU_ID_SPACE_BEGIN
  177. * When both host and FW support new partition, FW uses HTT_TX_IPA_NEW_MSDU_ID_SPACE_BEGIN
  178. * If host doesn't support, FW falls back to HTT_TX_IPA_MSDU_ID_SPACE_BEGIN
  179. * Handshaking is done through WMI_INIT and WMI service ready
  180. */
  181. WMI_SERVICE_TX_MSDU_ID_NEW_PARTITION_SUPPORT=112, /* support bigger MSDU ID partition */
  182. WMI_SERVICE_DFS_PHYERR_OFFLOAD=113,
  183. WMI_SERVICE_RCPI_SUPPORT=114,
  184. WMI_SERVICE_FW_MEM_DUMP_SUPPORT=115, /* Support FW Memory dump */
  185. WMI_SERVICE_PEER_STATS_INFO=116, /* support per peer stats info */
  186. WMI_SERVICE_REGULATORY_DB=117, /* support regulatory database in FW */
  187. WMI_SERVICE_11D_OFFLOAD=118, /* support 11D scan offload in FW */
  188. WMI_SERVICE_HW_DATA_FILTERING=119,
  189. WMI_SERVICE_MULTIPLE_VDEV_RESTART=120, /* Support for single command for multiple vdev restart */
  190. WMI_SERVICE_PKT_ROUTING=121, /* Support for routing specific data packets to selected destination rings */
  191. WMI_SERVICE_CHECK_CAL_VERSION=122, /* Support cal version check */
  192. WMI_SERVICE_OFFCHAN_TX_WMI=123, /* Support offchan data/mgmt tx over wmi */
  193. WMI_SERVICE_8SS_TX_BFEE = 124, /* support for 8Ant Bfee */
  194. WMI_SERVICE_EXTENDED_NSS_SUPPORT=125, /* Extend NSS support for 80Mhz and 160Mhz */
  195. WMI_SERVICE_ACK_TIMEOUT=126, /* Support TX ack timeout configurations */
  196. WMI_SERVICE_PDEV_BSS_CHANNEL_INFO_64 = 127, /* BSS channel info (freq, noise floor, rx clear, cycles 64-bit counters) event support */
  197. WMI_MAX_SERVICE=128, /* max service */
  198. /* NOTE:
  199. * The above service flags are delivered in the wmi_service_bitmap field
  200. * of the WMI_SERVICE_READY_EVENT message.
  201. * The below service flags are not delivered in the
  202. * WMI_SERVICE_READY_EVENT message's wmi_service_bitmap field,
  203. * but instead are delivered in the
  204. * fixed_param.wmi_service_segment_bitmap portion
  205. * of the WMI_SERVICE_AVAILABLE_EVENT message, with
  206. * fixed_param.wmi_service_segment_offset
  207. * set to 128.
  208. * The WMI_SERVICE_AVAILABLE_EVENT message immediately precedes the
  209. * WMI_SERVICE_READY_EVENT message.
  210. */
  211. WMI_SERVICE_CHAN_LOAD_INFO=128, /* The values in WMI_CHAN_INFO_EVENTID is the difference in cycle counters */
  212. WMI_SERVICE_TX_PPDU_INFO_STATS_SUPPORT=129, /* support to report tx ppdu info stats via htt events */
  213. WMI_SERVICE_VDEV_LIMIT_OFFCHAN_SUPPORT=130, /* support to report the offchannel duration limiting capability on connected interface */
  214. WMI_SERVICE_FILS_SUPPORT=131, /* support for FILS */
  215. WMI_SERVICE_WLAN_OIC_PING_OFFLOAD=132, /* Support for wlan OIC ping service */
  216. WMI_SERVICE_WLAN_DHCP_RENEW=133, /* Support for wlan DHCP Renew service */
  217. WMI_SERVICE_MAWC_SUPPORT = 134, /* Support for MAWC service */
  218. WMI_SERVICE_VDEV_LATENCY_CONFIG=135, /* support for vdev latency config */
  219. WMI_SERVICE_PDEV_UPDATE_CTLTABLE_SUPPORT=136, /* support for pdev update ctl table */
  220. WMI_SERVICE_PKTLOG_SUPPORT_OVER_HTT=137, /* upload pktlog data over HTT communication channel */
  221. WMI_SERVICE_VDEV_MULTI_GROUP_KEY_SUPPORT=138, /* Support for vdev level multi group key */
  222. WMI_SERVICE_SCAN_PHYMODE_SUPPORT=139, /* Support for phymode also with channel in offchan WMI_START_SCAN_CMDID */
  223. WMI_SERVICE_THERM_THROT = 140, /* Support thermal cfg and indication on AP.
  224. * Compared with WMI_SERVICE_THERMAL_MGMT,
  225. * this service is to allow thermal tool to
  226. * configure thermal throttling threshold
  227. * for different levels and pass down duty
  228. * cycle value. FW will also report thermal
  229. * throttling status to host through this
  230. * service. */
  231. WMI_SERVICE_BCN_OFFLOAD_START_STOP_SUPPORT=141, /* support dynamically enabling / disabling beacon tx offload */
  232. WMI_SERVICE_WOW_WAKEUP_BY_TIMER_PATTERN=142, /* fw to support waking up host from wow pattern timer */
  233. WMI_SERVICE_PEER_MAP_UNMAP_V2_SUPPORT=143, /* Support for HTT peer map/unmap V2 */
  234. WMI_SERVICE_OFFCHAN_DATA_TID_SUPPORT=144, /* Support new tid for offchan data/mgmt tx over wmi */
  235. WMI_SERVICE_RX_PROMISC_ENABLE_SUPPORT=145, /* Support enabling/disabling rx promiscuous mode as directed by a WMI message from the host */
  236. WMI_SERVICE_SUPPORT_DIRECT_DMA=146, /* indicates target supports direct DMA,
  237. * host will rely on WMI_DMA_RING_CAPABILITIES to get supported modules */
  238. WMI_SERVICE_AP_OBSS_DETECTION_OFFLOAD=147, /* Support SAP mode OBSS detection offload */
  239. WMI_SERVICE_11K_NEIGHBOUR_REPORT_SUPPORT=148, /* Support for 11k neighbor report */
  240. WMI_SERVICE_LISTEN_INTERVAL_OFFLOAD_SUPPORT=149, /* Support listen interval offload */
  241. WMI_SERVICE_BSS_COLOR_OFFLOAD=150, /* Support BSS color change for STA, OBSS color collision detection in FW for AP and STA */
  242. WMI_SERVICE_RUNTIME_DPD_RECAL=151, /* Runtime DPD recalibration support */
  243. WMI_SERVICE_STA_TWT=152, /* support for TWT (Target Wake Time) of STA */
  244. WMI_SERVICE_AP_TWT=153, /* support for TWT (Target Wake Time) on AP */
  245. WMI_SERVICE_GMAC_OFFLOAD_SUPPORT=154, /* Support for GMAC */
  246. WMI_SERVICE_SPOOF_MAC_SUPPORT=155, /* support for SERVICE_SPOOF_MAC */
  247. WMI_SERVICE_PEER_TID_CONFIGS_SUPPORT=156, /* Support TID specific configurations per peer (ack,aggr,retry,rate) */
  248. WMI_SERVICE_VDEV_SWRETRY_PER_AC_CONFIG_SUPPORT=157, /* Support vdev software retries configuration per AC (non aggr retry/aggr retry) */
  249. WMI_SERVICE_DUAL_BEACON_ON_SINGLE_MAC_SCC_SUPPORT=158, /* Support dual beacon on same channel on single MAC */
  250. WMI_SERVICE_DUAL_BEACON_ON_SINGLE_MAC_MCC_SUPPORT=159, /* Support dual beacon on different channel on single MAC */
  251. WMI_SERVICE_MOTION_DET=160, /* support for motion detection config */
  252. WMI_SERVICE_INFRA_MBSSID=161, /* support infra multi-BSSID feature */
  253. WMI_SERVICE_OBSS_SPATIAL_REUSE=162, /* support spatial reuse feature */
  254. WMI_SERVICE_VDEV_DIFFERENT_BEACON_INTERVAL_SUPPORT=163, /* Support different beacon intervals on different VDEVs */
  255. WMI_SERVICE_NAN_DBS_SUPPORT=164, /* Support DBS for NAN discovery interface */
  256. WMI_SERVICE_NDI_DBS_SUPPORT=165, /* Support DBS for NAN data interface */
  257. WMI_SERVICE_NAN_SAP_SUPPORT=166, /* Support SAP Concurrency for NAN Discovery interface */
  258. WMI_SERVICE_NDI_SAP_SUPPORT=167, /* Support SAP Concurrency for NAN Data interface */
  259. WMI_SERVICE_CFR_CAPTURE_SUPPORT=168, /* Support to capture uncompressed Channel Frequency Response (CFR) */
  260. WMI_SERVICE_CFR_CAPTURE_IND_MSG_TYPE_1=169, /* Message type HTT_PEER_CFR_CAPTURE_MSG_TYPE_1 in HTT_T2H_MSG_TYPE_CFR_DUMP_COMPL_IND */
  261. WMI_SERVICE_ESP_SUPPORT=170, /* Support for Estimated Service Params IE */
  262. WMI_SERVICE_PEER_CHWIDTH_CHANGE = 171, /* Support for host to update/re-intersect the node capability */
  263. WMI_SERVICE_WLAN_HPCS_PULSE=172, /* Support for High Precision Clock Synchronization feature */
  264. WMI_SERVICE_PER_VDEV_CHAINMASK_CONFIG_SUPPORT=173, /* Support for configuring chainmask per VDEV */
  265. WMI_SERVICE_TX_DATA_MGMT_ACK_RSSI=174, /* ACK RSSI indication to host for host TX data and mgmt frame */
  266. WMI_SERVICE_NAN_DISABLE_SUPPORT=175, /* indicates firmware is dependent on host to disable NAN incase of concurrencies */
  267. WMI_SERVICE_NAN_DISABLE_SUPPORT__prototype = WMI_SERVICE_NAN_DISABLE_SUPPORT, /* alias, to clarify that NAN_DISABLE_SUPPORT is for prototype testing purposes */
  268. WMI_SERVICE_HTT_H2T_NO_HTC_HDR_LEN_IN_MSG_LEN=176, /* indicates FW supports uniformly excluding the HTC header length from the HTT H2T message length */
  269. WMI_SERVICE_COEX_SUPPORT_UNEQUAL_ISOLATION=177, /* indicates FW supports FDD coex with unequal isolation between BT and each of the WLAN chains */
  270. /* WMI_SERVICE_HW_DB2DBM_CONVERSION_SUPPORT:
  271. * Support HW+FW db2dbm conversion for RSSI fields in rx descriptors
  272. * and host/target messages.
  273. * If enabled, HW and FW will convert SNR to RSSI by adding noise floor
  274. * and rssi_offset from BDF to RSSI values that formerly had units of
  275. * dB w.r.t. noise floor to convert the units to dBm.
  276. * MAC beacon RSSI average register return a signed value for RSSI,
  277. * as well as hw descriptors.
  278. *-------------------------------------------------------------------------
  279. * The RSSI field of below WMI messages will be changed to dBm units:
  280. * WMI_MGMT_RX_EVENTID:
  281. * wmi_mgmt_rx_hdr.rssi_ctl;
  282. * WMI_UPDATE_STATS_EVENTID:
  283. * wmi_rssi_stats.rssi_avg_beacon;
  284. * wmi_rssi_stats.rssi_avg_data;
  285. * wmi_snr_info.bcn_snr;
  286. * wmi_snr_info.dat_snr;
  287. * wmi_vdev_stats.bcn_rssi_history; (NOT USED IN FW)
  288. * wmi_peer_stats.peer_rssi;
  289. * WMI_WOW_WAKEUP_HOST_EVENTID:
  290. * wmi_rssi_breach_event_fixed_param.rssi;
  291. * wmi_roam_event_fixed_param.rssi;
  292. * WMI_PEER_STA_KICKOUT_EVENTID:
  293. * wmi_peer_sta_kickout_event_fixed_param.rssi;
  294. * WMI_PASSPOINT_MATCH_EVENTID:
  295. * wmi_passpoint_event_hdr.rssi;(NOT USED IN FW)
  296. * WMI_PEER_INFO_EVENTID:
  297. * wmi_peer_info.rssi;
  298. * WMI_ROAM_SYNCH_EVENTID:
  299. * wmi_roam_synch_event_fixed_param.rssi;
  300. * WMI_ROAM_SCAN_STATS_EVENTID:
  301. * wmi_roam_scan_stats_event_fixed_param.rssi;
  302. * wmi_pdev_div_rssi_antid_event_id:
  303. * wmi_pdev_div_rssi_antid_event_fixed_param.chain_rssi;
  304. * wmi_rssi_breach_event_id
  305. * WMI_INST_RSSI_STATS_EVENTID:
  306. * wmi_inst_rssi_stats_resp_fixed_param.iRSSI;
  307. * RSSI thresholds configured by host
  308. * WMI_ROAM_SCAN_RSSI_THRESHOLD
  309. * roam_scan_rssi_thresh snr
  310. * boost_threshold_5g snr
  311. * penalty_threshold_5g snr
  312. * good_rssi_threshold snr
  313. * roam_bg_scan_bad_rssi_thresh snr
  314. * roam_earlystop_thres_min snr
  315. * roam_earlystop_thres_max snr
  316. * WMI_ROAM_AP_PROFILE
  317. * rssi_abs_thresh snr
  318. * WMI_ROAM_CONFIGURE_MAWC_CMDID:
  319. * best_ap_rssi_threshold Snr
  320. * wmi_ap_profile.rssi_abs_thresh;
  321. * WMI_ROAM_SCAN_RSSI_THRESHOLD:
  322. * wmi_roam_scan_extended_threshold_param.boost_threshold_5g;
  323. * wmi_roam_scan_extended_threshold_param.penalty_threshold_5g;
  324. * wmi_roam_scan_extended_threshold_param.good_rssi_threshold;
  325. * wmi_roam_scan_rssi_threshold_fixed_param.roam_scan_rssi_thresh;
  326. * wmi_roam_bg_scan_roaming_param.roam_bg_scan_bad_rssi_thresh;
  327. * WMI_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID:
  328. * wmi_vdev_spectral_configure_cmd_fixed_param.spectral_scan_rssi_rpt_mode;
  329. * wmi_vdev_spectral_configure_cmd_fixed_param.spectral_scan_rssi_thr;
  330. * WMI_RSSI_BREACH_MONITOR_CONFIG_CMDID:
  331. * wmi_rssi_breach_monitor_config_fixed_param.low_rssi_breach_threshold;
  332. * wmi_rssi_breach_monitor_config_fixed_param.hi_rssi_breach_threshold;
  333. * WMI_STA_SMPS_PARAM_CMDID:
  334. * wmi_sta_smps_param.value of below cmd IDs:
  335. * // RSSI threshold to enter Dynamic SMPS mode from inactive mode
  336. * WMI_STA_SMPS_PARAM_UPPER_RSSI_THRESH = 0,
  337. * // RSSI threshold to enter Stalled-D-SMPS mode from D-SMPS mode
  338. * // or to enter D-SMPS mode from Stalled-D-SMPS mode
  339. * WMI_STA_SMPS_PARAM_STALL_RSSI_THRESH = 1,
  340. * // RSSI threshold to disable SMPS modes
  341. * WMI_STA_SMPS_PARAM_LOWER_RSSI_THRESH = 2,
  342. * // Upper threshold for beacon-RSSI. Used to reduce RX chainmask.
  343. * WMI_STA_SMPS_PARAM_UPPER_BRSSI_THRESH = 3,
  344. * // Lower threshold for beacon-RSSI. Used to increase RX chainmask
  345. * WMI_STA_SMPS_PARAM_LOWER_BRSSI_THRESH = 4,
  346. * // Enable/Disable DTIM 1chRx feature
  347. * WMI_STA_SMPS_PARAM_DTIM_1CHRX_ENABLE = 5
  348. * WMI_TDLS_SET_STATE_CMDID:
  349. * wmi_tdls_set_state_cmd_fixed_param.rssi_teardown_threshold;
  350. * wmi_tdls_set_state_cmd_fixed_param.rssi_delta;
  351. *-------------------------------------------------------------------------
  352. * The RSSI fields of below HTT data type will change to dBm units:
  353. * PREPACK struct htt_tx_wbm_completion.ack_frame_rssi;
  354. * PREPACK struct htt_tx_wbm_transmit_status.ack_frame_rssi;
  355. * htt_ppdu_stats_user_cmpltn_common_tlv.ack_rssi;
  356. */
  357. WMI_SERVICE_HW_DB2DBM_CONVERSION_SUPPORT = 178,
  358. WMI_SERVICE_SUPPORT_EXTEND_ADDRESS=179, /* indicates firmware supports host memory addresses larger than 32 bit */
  359. WMI_SERVICE_BEACON_RECEPTION_STATS=180, /* Support per vdev beacon stats info */
  360. WMI_SERVICE_FETCH_TX_PN=181,
  361. WMI_SERVICE_PEER_UNMAP_RESPONSE_SUPPORT = 182, /* support peer ids unmap response from host */
  362. WMI_SERVICE_TX_PER_PEER_AMPDU_SIZE = 183, /* indicate FW support per peer TX AMPDU size */
  363. WMI_SERVICE_BSS_COLOR_SWITCH_COUNT = 184, /* Firmware supports bss-color switch count handling */
  364. WMI_SERVICE_HTT_PEER_STATS_SUPPORT = 185, /* Supports the feature where FW sends peer stats autonomously to Host via the HTT_T2H PEER_STATS_IND message */
  365. WMI_SERVICE_UL_RU26_ALLOWED = 186, /* indicates support for RU26 in UL OFDMA */
  366. WMI_SERVICE_GET_MWS_COEX_STATE = 187, /* FW provides MWS Coex info */
  367. WMI_SERVICE_GET_MWS_DPWB_STATE = 188, /* FW provides LTE-Coex Dynamic Power Back-off info */
  368. WMI_SERVICE_GET_MWS_TDM_STATE = 189, /* FW provides LTE-Coex TDM info */
  369. WMI_SERVICE_GET_MWS_IDRX_STATE = 190, /* FW provides LTE-Coex IDRx info */
  370. WMI_SERVICE_GET_MWS_ANTENNA_SHARING_STATE = 191, /* FW provides LTE-Coex Antenna sharing info */
  371. WMI_SERVICE_ENHANCED_TPC_CONFIG_EVENT = 192, /* FW provides enhanced tx power control configuration dump */
  372. WMI_SERVICE_WLM_STATS_REQUEST = 193, /* FW supports WLAN latency manager stats request */
  373. WMI_SERVICE_EXT_PEER_TID_CONFIGS_SUPPORT = 194, /* Extended Peer Tid configuration support for QoS related settings */
  374. WMI_SERVICE_WPA3_FT_SAE_SUPPORT = 195, /* FW roaming support for WPA3_FT_SAE */
  375. WMI_SERVICE_WPA3_FT_SUITE_B_SUPPORT = 196, /* FW roaming support for WPA3_FT_SUITE_B */
  376. WMI_SERVICE_VOW_ENABLE=197, /* FW supports a set of features to optimize VoW performance */
  377. WMI_SERVICE_CFR_CAPTURE_IND_EVT_TYPE_1 = 198, /* support WMI_PEER_CFR_CAPTURE_EVENT msg */
  378. WMI_SERVICE_BROADCAST_TWT = 199, /* support of Broadcast TWT (Target Wake Time) for STA/AP */
  379. WMI_SERVICE_RAP_DETECTION_SUPPORT = 200, /* indicate FW supports rogue AP detection */
  380. WMI_SERVICE_PS_TDCC = 201, /* FW support tx_duty_cycle_control powersave */
  381. WMI_SERVICE_THREE_WAY_COEX_CONFIG_LEGACY = 202, /* BTCOEX Three-way CoEx Config Legacy Feature support */
  382. WMI_SERVICE_THREE_WAY_COEX_CONFIG_OVERRIDE = 203, /* BTCOEX Three-way CoEx Config Override Feature support */
  383. WMI_SERVICE_TX_PWR_PER_PEER = 204, /* target supports per-peer tx pwr spec via WMI_PEER_USE_FIXED_PWR */
  384. WMI_SERVICE_STA_PLUS_STA_SUPPORT = 205, /* indicates target supports STA + STA concurrency */
  385. WMI_SERVICE_WPA3_FT_FILS = 206,
  386. WMI_SERVICE_ADAPTIVE_11R_ROAM = 207, /* Indicates FW supports adaptive 11r roaming */
  387. WMI_SERVICE_CHAN_RF_CHARACTERIZATION_INFO = 208, /* FW provides RF scores for chans in the service ready extension msg */
  388. WMI_SERVICE_FW_IFACE_COMBINATION_SUPPORT = 209, /* FW sends WMI_IFACE_COMBINATION_IND_EVENT msg immediately after WMI_SERVICE_READY_EXT_EVENT msg */
  389. WMI_SERVICE_TX_COMPL_TSF64 = 210, /* FW supports 64-bit tx TSF in HTT_T2H TX_COMPL_IND msg */
  390. WMI_SERVICE_DSM_ROAM_FILTER = 211, /* FW supports data stall AP mitigation while roaming */
  391. WMI_SERVICE_PACKET_CAPTURE_SUPPORT = 212, /* target supports packet capture Mode (SMART MU) */
  392. WMI_SERVICE_PER_PEER_HTT_STATS_RESET = 213, /* FW supports HTT per peer stats reset facility */
  393. WMI_SERVICE_DELETE_ALL_PEER_SUPPORT = 214, /* target supports cmd to delete all peers within a vdev */
  394. WMI_SERVICE_DYNAMIC_HW_MODE_SWITCH_SUPPORT = 215, /* target supports Dynamic HW mode switch */
  395. WMI_SERVICE_MSDU_FLOW_OVERRIDE_BY_HOST = 216, /* target supports flow override feature */
  396. WMI_SERVICE_WMI_CHAN_RF_CHARACTERIZATION_INFO_EVENT= 217, /* target will send WMI_CHAN_RF_CHARACTERIZATION_INFO_EVENT */
  397. WMI_SERVICE_RX_FSE_SUPPORT = 218, /* target supports flow search through RxOLE FSE hw block */
  398. WMI_SERVICE_FREQINFO_IN_METADATA = 219, /* FW provides freq_info during spectral scan */
  399. WMI_SERVICE_EXT2_MSG = 220, /* WMI_SERVICE_READY_EXT2 msg is sent by target */
  400. WMI_SERVICE_WPA3_SAE_ROAM_SUPPORT = 221, /* Indicates FW supports WPA3 SAE roaming */
  401. WMI_SERVICE_WPA3_OWE_ROAM_SUPPORT = 222, /* Indicates FW supports WPA3 OWE roaming */
  402. WMI_SERVICE_AUDIO_AGGR = 223, /* Indicates FW supports audio frame aggregation */
  403. WMI_SERVICE_6GHZ_SUPPORT = 224, /* Indicates FW supports 6GHZ (scan, connection and so on) */
  404. /* WMI_SERVICE_QMI_STATS_SUPPORT
  405. * Indicates FW supports stat request command WMI_REQUEST_LINK_STATS_CMDID
  406. * and WMI_REQUEST_STATS_CMDID coming from QMI which will be used in
  407. * runtime PM suspend.
  408. */
  409. WMI_SERVICE_QMI_STATS_SUPPORT = 225,
  410. WMI_SERVICE_CFR_CAPTURE_FILTER_SUPPORT = 226, /* Indicate FW Supports Channel Frequency Response (CFR) via WMI_CFR_CAPTURE_FILTER_CMDID */
  411. WMI_SERVICE_STA_BSS_MAX_IDLE_TIME = 227, /* Indicate FW supports BSS Max Idle time feature via WMI_VDEV_BSS_MAX_IDLE_TIME_CMDID */
  412. WMI_SERVICE_BIP_CIPHER_SUPPORT = 228, /* FW supports new BIP_CIPHER suites (WMI_CIPHER_BIP_xxx) */
  413. WMI_SERVICE_BW_165MHZ_SUPPORT = 229, /* Indicate FW supports bandwidth 165MHz (i.e. 6 GHz in addition to 2.4 and 5) */
  414. WMI_SERVICE_BW_RESTRICTED_80P80_SUPPORT = WMI_SERVICE_BW_165MHZ_SUPPORT,
  415. WMI_SERVICE_NAN_NDI_SAP_SAP_SCC_SUPPORT = 230, /* Support SAP + SAP + NAN discovery + NDI concurrency in SCC mode */
  416. WMI_SERVICE_NAN_VDEV_SUPPORT = 231, /* indicates firmware is dependent on host to create NAN vdev */
  417. WMI_SERVICE_AUDIO_SYNC_SUPPORT = 232, /* Indicate FW supports Audio sync feature */
  418. WMI_SERVICE_DUAL_STA_ROAM_SUPPORT = 233, /* Indidate FW support dual STA roaming */
  419. WMI_SERVICE_PEER_CREATE_CONF = 234, /* Target will send WMI_PEER_CREATE_CONF_EVENTID after WMI_PEER_CREATE_CMDID is processed */
  420. WMI_SERVICE_MULTIPLE_VDEV_RESTART_RESPONSE_SUPPORT = 235, /* indicates firmware supports Multiple vdev restart response */
  421. WMI_SERVICE_ROAM_SCAN_CHANNEL_LIST_TO_HOST_SUPPORT = 236, /* Indicates firmware supports sending roam scan channel list to host */
  422. WMI_SERVICE_PEER_DELETE_NO_PEER_FLUSH_TIDS_CMD = 237, /* Host should not send WMI_PEER_FLUSH_TIDS_CMD as part of peer delete */
  423. WMI_SERVICE_NSS_RATIO_TO_HOST_SUPPORT = 238, /* Indicates firmware supports sending NSS ratio info to host */
  424. WMI_SERVICE_WPA3_SUITEB_ROAM_SUPPORT = 239, /* Indicates FW supports WPA3 SUITE B roaming */
  425. WMI_SERVICE_PERIODIC_FRAME_INJECT_SUPPORT = 240, /* Indicates FW supports periodic frame injection */
  426. WMI_SERVICE_NDI_NDI_STA_SUPPORT = 241, /* Indicates FW support for STA+NDI+NDI */
  427. WMI_SERVICE_BW_TRUE_160_SUPPORT = 242, /* Indicates FW supports true 160 BW */
  428. WMI_SERVICE_HOST_SCAN_STOP_VDEV_ALL_SUPPORT = 243, /* Indicates FW supports scan stop mode WMI_SCN_STOP_HOST_VAP_ALL */
  429. WMI_SERVICE_BEACON_PROTECTION_SUPPORT = 244, /* Indicates FW supports WPA3 Beacon protection */
  430. WMI_SERVICE_EMA_AP_SUPPORT = 245, /* FW supports EMA AP feature */
  431. WMI_SERVICE_PEER_POWER_SAVE_DURATION_SUPPORT = 246, /* Support for adding Power save duration per client */
  432. WMI_SERVICE_5_DOT_9GHZ_SUPPORT = 247, /* Indicates FW supports new 5.9GHZ (scan, connection and so on) */
  433. WMI_SERVICE_MU_PREAMBLE_PUNCTURE_SUPPORT = 248, /* Indicates FW supports MU preamble puncture */
  434. WMI_SERVICE_SRG_SRP_SPATIAL_REUSE_SUPPORT = 249, /* Support for SRG, SRP based spatial reuse support */
  435. WMI_REQUEST_CTRL_PATH_STATS_REQUEST = 250, /* FW supports control path stats */
  436. WMI_SERVICE_TPC_STATS_EVENT = 251, /* FW support to dump the TPC tables */
  437. WMI_SERVICE_NO_INTERBAND_MCC_SUPPORT = 252, /* Indicates FW doesn't support interband MCC */
  438. WMI_SERVICE_MBSS_PARAM_IN_VDEV_START_SUPPORT = 253, /* FW supports VDEV's MBSS param exchange in VDEV start command */
  439. WMI_SERVICE_CONFIGURE_ROAM_TRIGGER_PARAM_SUPPORT = 254, /* FW supports ROAM trigger configuration param TLV */
  440. WMI_SERVICE_CFR_TA_RA_AS_FP_SUPPORT = 255, /* indicates FW support to program CFR TA/RA filtered packets as Filter pass */
  441. /******* ADD NEW SERVICES UP TO 256 HERE *******/
  442. WMI_MAX_EXT_SERVICE = 256,
  443. /* NOTE:
  444. * The above service flags are delivered in the
  445. * fixed_param.wmi_service_segment_bitmap portion
  446. * of the WMI_SERVICE_AVAILABLE_EVENT message, with
  447. * fixed_param.wmi_service_segment_offset
  448. * set to 128.
  449. * The below service flags can be delivered in one of two ways:
  450. * 1. The target can deliver a 2nd SERVICE_AVAILABLE message, with
  451. * fixed_param.wmi_service_segment_offset
  452. * set to 256.
  453. * (This method is acceptable, but not recommended.)
  454. * 2. The target can populate the wmi_service_ext_bitmap[] TLV array
  455. * within the WMI_SERVICE_AVAILABLE_EVENT message.
  456. * (This method is recommended.)
  457. */
  458. /******* ADD NEW SERVICES 256 AND BEYOND HERE *******/
  459. WMI_SERVICE_CFR_CAPTURE_COUNT_SUPPORT = 256, /* indicates FW support to program CFR capture mode and capture count */
  460. WMI_SERVICE_OCV_SUPPORT = 257, /* FW supports OCV (Operating Channel Validation) */
  461. WMI_SERVICE_LL_STATS_PER_CHAN_RX_TX_TIME_SUPPORT = 258, /* Indicates firmware support sending per channel own tx & rx time in radio stats of LL stats. */
  462. WMI_SERVICE_THERMAL_MULTI_CLIENT_SUPPORT = 259, /* Indicates FW Thermal Mgr will support multiple clients for mitigation */
  463. WMI_SERVICE_NAN_SEND_NAN_ENABLE_RESPONSE_TO_HOST = 260, /* Indicates FW will include an additional TLV in nan enable response for Host driver to parse */
  464. WMI_SERVICE_UNIFIED_LL_GET_STA_CMD_SUPPORT = 261, /* Indicates that FW supports handling Link Layer and Get Station stats Commands together (WMI_REQUEST_UNIFIED_LL_GET_STA_CMDID) */
  465. WMI_SERVICE_FSE_CMEM_ALLOC_SUPPORT = 262, /* Indicates that FW supports non-secure CMEM allocation for FSE table */
  466. WMI_SERVICE_PASSIVE_SCAN_START_TIME_ENHANCE = 263, /* Indicates FW support to not skip beacon if passive scan dwell time + channel switch delay is lesser than beacon interval */
  467. WMI_SERVICE_QOS_NULL_FRAME_TX_OVER_WMI = 264, /* Indicates that FW supports tx of QoS null frame downloaded through WMI interface */
  468. WMI_SERVICE_SCAN_CONFIG_PER_CHANNEL = 265, /* Indicates that FW supports per channel configuration support in the scan start command */
  469. WMI_SERVICE_CSA_BEACON_TEMPLATE = 266, /* Indicates that FW supports updating CSA count in beacon template */
  470. WMI_SERVICE_BROADCAST_TWT_REQUESTER = 267, /* Indicates FW supports Broadcast TWT REQUESTER */
  471. WMI_SERVICE_BROADCAST_TWT_RESPONDER = 268, /* Indicates FW supports Broadcast TWT RESPONDER */
  472. WMI_SERVICE_TWT_NUDGE = 269, /* Indicates that FW supports TWT Nudge command and event */
  473. WMI_SERVICE_TWT_STATS = 270, /* Indicates that FW supports TWT Get_stats command and event */
  474. WMI_SERVICE_TWT_ALL_DIALOG_ID = 271, /* Indicates that FW supports TWT ALL dialog ID(255) for all commands and events, except for TWT add dialog and TWT get stats */
  475. WMI_SERVICE_SPLIT_AST_SUPPORT = 272, /* Indicate that FW supports SPLIT AST table */
  476. WMI_SERVICE_SPECTRAL_SCAN_DISABLED = 273, /* Indicates that SKU does not support normal spectral scan capabilities */
  477. /* WMI_SERVICE_UNIFIED_LL_GET_STA_OVER_QMI_SUPPORT:
  478. * This service flag indicates that FW can support receiving a
  479. * WMI_REQUEST_UNIFIED_LL_GET_STA_CMDID command request from the host
  480. * over the QMI communication link.
  481. * If the target receives WMI_REQUEST_UNIFIED_LL_GET_STA_CMDID over QMI,
  482. * any of the event messages sent in response (WMI_UPDATE_STATS_EVENTID,
  483. * WMI_IFACE_LINK_STATS_EVENTID, WMI_PEER_LINK_STATS_EVENTID,
  484. * WMI_RADIO_LINK_STATS_EVENTID, WMI_RADIO_TX_POWER_LEVEL_STATS_EVENTID)
  485. * will be delivered over the QMI communication link.
  486. * Any such messages delivered over QMI will use the same message format
  487. * as if they had been delivered over the usual WMI communication link.
  488. * This service flag indicates QMI is supported for these stats messages
  489. * in addition to WMI, not instead of WMI - if the host sends the
  490. * WMI_REQUEST_UNIFIED_LL_GET_STA_CMDID over the usual WMI communication
  491. * link, the stats event messages sent by the target in response will
  492. * be sent on the WMI communication link.
  493. */
  494. WMI_SERVICE_UNIFIED_LL_GET_STA_OVER_QMI_SUPPORT = 274,
  495. /*
  496. * Indicates FW supports EAPOL offload for SAE roaming if PMK of
  497. * candidate AP is present in FW.
  498. */
  499. WMI_SERVICE_SAE_EAPOL_OFFLOAD_SUPPORT = 275,
  500. /*
  501. * Indicates FW supports sending events to host during Thermal Throttling
  502. * every duty cycle on detecting temperature change when dc_per_event is 0.
  503. */
  504. WMI_SERVICE_THERM_THROT_TEMP_CHANGE_DYNAMIC_EVENT_SUPPORT = 276,
  505. WMI_SERVICE_WAPI_CONCURRENCY_SUPPORTED = 277, /* Indicates FW support for WAPI concurrency */
  506. WMI_SERVICE_SAP_CONNECTED_D3WOW = 278, /* Indicates FW support for D3WoW for SAP connected case */
  507. WMI_SERVICE_GO_CONNECTED_D3WOW = 279, /* Indicates FW support for D3WoW for P2P GO connected case */
  508. WMI_SERVICE_EXT_TPC_REG_SUPPORT = 280, /* Support for new 6 GHz TPC power limits */
  509. WMI_SERVICE_REG_CC_EXT_EVENT_SUPPORT = 281, /* Support for Extended REG_CC Event with additional params for 6 GHz */
  510. WMI_SERVICE_NDI_TXBF_SUPPORT = 282, /* Indicates FW support for Tx beamforming with NDI VDEV */
  511. WMI_SERVICE_ENABLE_LOWER_6G_EDGE_CH_SUPP = 283, /* Indicates FW support for enabling lower 6 GHz edge channel 5935 */
  512. WMI_SERVICE_DISABLE_UPPER_6G_EDGE_CH_SUPP = 284, /* Indicates FW support for disabling upper 6 GHz edge channel 7115 */
  513. WMI_SERVICE_FORCED_DTIM_SUPP = 285, /* Indicates FW supports forced DTIM configuration */
  514. WMI_SERVICE_DCS_AWGN_INT_SUPPORT = 286, /* Indicates FW supports AWGN Int */
  515. WMI_SERVICE_IGMP_OFFLOAD_SUPPORT = 287, /* FW supports igmp offload during APPS suspend */
  516. WMI_SERVICE_11AX_TDLS_SUPPORT = 288, /* Indicates FW supports 11ax TDLS. Host should enable 11ax on TDLS only when FW indicates the support. */
  517. WMI_SERVICE_11BE = 289, /* Indicates FW supports 11be */
  518. WMI_SERVICE_BIG_DATA_SUPPORT = 290, /* Indicates FW supports Big Data feature */
  519. WMI_SERVICE_EAPOL_OVER_NWIFI = 291, /* Indicates FW supports sending eapol frames in native wifi mode even when the vdev is brought up in raw ethernet mode */
  520. WMI_SERVICE_AMPDU_TX_BUF_SIZE_256_SUPPORT = 292, /* Indicates FW supports MAX 256 MPDUs in A-MPDU instead of 64 */
  521. WMI_SERVICE_HALPHY_CAL_STATUS = 293, /* Indicates FW supports sending online HALPHY Calibration status to host */
  522. WMI_SERVICE_HALPHY_CAL_ENABLE_DISABLE_SUPPORT = 294, /* Indicates Calibraton enable/disable support by FW */
  523. WMI_SERVICE_AFC_SUPPORT = 295, /* Indicates FW supports AFC_CMD,AFC_EVENT */
  524. WMI_SERVICE_RTT_AP_INITIATOR_STAGGERED_MODE_SUPPORTED = 296, /* FW supports RTT in AP Initiator for Staggered beacon mode */
  525. WMI_SERVICE_RTT_AP_INITIATOR_BURSTED_MODE_SUPPORTED = 297, /* FW supports RTT in AP Initiator for BURSTED beacon mode */
  526. WMI_SERVICE_P2P_P2P_CONCURRENCY_SUPPORT = 298, /* Indicates FW supports P2P + P2P conncurency both in SCC, MCC, SBS and DBS */
  527. WMI_SERVICE_MGMT_RX_REO_SUPPORTED = 299, /* Indicates FW supports Management RX Reorder */
  528. WMI_SERVICE_EMA_MULTIPLE_GROUP_SUPPORT = 300, /* FW support for EMA multi group support */
  529. WMI_SERVICE_LARGE_BEACON_SUPPORT = 301, /* FW support for Large beacon support greater then 1.5K */
  530. WMI_SERVICE_AOA_FOR_RCC_SUPPORTED = 302,
  531. WMI_SERVICE_DYN_NSS_MASK_SUPPORT = 303, /* Indicates FW support for DYN NSS feature */
  532. WMI_SERVICE_HW_MODE_POLICY_OFFLOAD_SUPPORT = 304, /* FW supports HW mode selection offload */
  533. WMI_SERVICE_THERMAL_THROT_STATS_TEMP_RANGE_SUPPORT = 305, /* FW supports thermal throttling temperature range stats based on wmi_thermal_stats_action */
  534. /*
  535. * Indicates FW support for spatial reuse enhancements.
  536. * Below commands are added for the enhancements:
  537. * WMI_PDEV_PARAM_OBSS_MIN_DURATION_CHECK_FOR_SR,
  538. * WMI_PDEV_PARAM_TRUNCATE_SR,
  539. * WMI_PDEV_PARAM_CTRL_FRAME_OBSS_PD_THRESHOLD
  540. */
  541. WMI_SERVICE_SPATIAL_REUSE_ENHANCEMENT_SUPPORT = 306,
  542. WMI_SERVICE_MU_SNIF = 307, /* FW support MU sniffer */
  543. WMI_SERVICE_ICMP_OFFLOAD = 308, /* FW supports ping offload during APPS suspend */
  544. WMI_SERVICE_RTSCTS_FOR_UNICAST_MGMT_SUPPORT = 309, /* Indicates FW support RTSCTS for unicast management */
  545. WMI_SERVICE_DYNAMIC_VDEV_MAC_ADDR_UPDATE_SUPPORT = 310, /* FW supports dynamic vdev mac address updating */
  546. WMI_SERVICE_SAWF_LEVEL0 = 311, /* FW supports WMI_SAWF_SVC_CLASS CFG_CMD + DISABLE_CMD msgs */
  547. WMI_SERVICE_RTT_11AZ_NTB_SUPPORT = 312, /* FW support for 11AZ non trigger based ranging */
  548. WMI_SERVICE_RTT_11AZ_TB_SUPPORT = 313, /* FW support for 11AZ trigger based ranging ISTA role */
  549. WMI_SERVICE_RTT_11AZ_MAC_SEC_SUPPORT = 314, /* FW support for 11AZ secure FTM */
  550. WMI_SERVICE_RTT_11AZ_MAC_PHY_SEC_SUPPORT = 315, /* FW support for 11AZ secure LTF + FTM */
  551. WMI_SERVICE_SPECTRAL_SESSION_INFO_SUPPORT = 316, /* Information corresponding to each Spectral scan session will be sent by the FW before the reports corresponding to that session are sent */
  552. WMI_SERVICE_PDEV_RATE_CONFIG_SUPPORT = 317, /* Support rate configurations per PDEV */
  553. WMI_SERVICE_MLO_STA_NAN_NDI_SUPPORT = 318, /* FW support for NAN and NDP support with MLO STA */
  554. WMI_SERVICE_PROBE_ALL_BW_SUPPORT = 319, /* FW support to probe on higher BW even if the probe fails on lower BW - IOT issue */
  555. WMI_SERVICE_PKTLOG_DECODE_INFO_SUPPORT = 320, /* FW supports embedding Pktlog decode info in the Pktlog trace file level header */
  556. WMI_SERVICE_PNO_SCAN_CONFIG_PER_CHANNEL = 321, /* Indicates that FW supports per channel configuration support in the PNO scan start command */
  557. WMI_SERVICE_MULTIPLE_PEER_GROUP_CMD_SUPPORT = 322, /* FW support for multiple peer group command */
  558. WMI_SERVICE_AFC_RESET_SUPPORT = 323, /* Indicates FW supports AFC reset */
  559. WMI_SERVICE_FP_PHY_ERR_FILTER_SUPPORT = 324, /* FW supports monitor ring configurations for filtering in PHY error packets */
  560. WMI_IS_RADAR_FOUND_CHAN_FREQ_IS_CENTER_FREQ = 325, /* FW Supporting radar event on the actual center frequency radar was detected */
  561. WMI_SERVICE_BIOS_SAR_SUPPORT = 326, /* FW support for SAR parameter stored in BIOS */
  562. WMI_SERVICE_REO_QREF_SUPPORT = 327, /* FW supports REO QREF */
  563. WMI_SERVICE_DELETE_ALL_PEER_BITMAP_SUPPORT = 328, /* target supports cmd to delete all specific peer type within a vdev */
  564. WMI_SERVICE_PN_REPLAY_CHECK_SUPPORT = 329, /* FW support to check RX mgmt frames has invalid PN in packets */
  565. WMI_SERVICE_COMBINED_SET_PARAM_SUPPORT = 330, /* FW Supporting set param cmd combined for multiple params */
  566. WMI_SERVICE_PDEV_RSSI_DBM_CONV_EVENT_SUPPORT = 331, /* FW supports advertising RSSI dB to dBm conversion params to host via WMI_PDEV_RSSI_DBM_CONVERSION_PARAMS_INFO_EVENTID */
  567. WMI_SERVICE_PDEV_TELEMETRY_STATS_SUPPORT = 332,
  568. WMI_SERVICE_ROAM_STAT_PER_CANDIDATE_FRAME_INFO_SUPPORT = 333, /* FW supports to send frame info for each candidate in roam stat */
  569. WMI_SERVICE_HW_TX_POWER_CAPS_SIGNED_SUPPORT = 334, /* Indicates FW supports updating of Tx power capabilities as signed value */
  570. WMI_SERVICE_MULTI_CLIENT_LL_SUPPORT = 335, /* FW supports set param cmd combined for multiple params */
  571. WMI_SERVICE_AFC_PAYLOAD_CLEAR_SUPPORT = 336, /* FW supports clearing the AFC response payload in proxy mode */
  572. WMI_SERVICE_FW_INI_PARSE_SUPPORT = 337, /* FW supports parsing ini configuration file */
  573. WMI_SERVICE_TDLS_6GHZ_SUPPORT = 338, /* FW supports 6GHz TDLS both on base channel and offchannel */
  574. WMI_SERVICE_LINKSPEED_ROAM_TRIGGER_SUPPORT = 339, /* FW supports linkspeed trigger roam */
  575. WMI_SERVICE_UMAC_HANG_RECOVERY_SUPPORT = 340, /* FW supports recovering system from UMAC hang condition */
  576. WMI_SERVICE_COAP_OFFLOAD_SUPPORT = 341, /* FW supports CoAP (the Constrained Application Protocol) offload */
  577. WMI_SERVICE_TDLS_WIDEBAND_SUPPORT = 342, /* FW supports Wideband TDLS */
  578. WMI_SERVICE_FEATURE_SET_EVENT_SUPPORT = 343, /* FW supports sending of supported feature set event during init time */
  579. WMI_SERVICE_HALPHY_CTRL_PATH_STATS = 344, /* HALPHY STATS through control path */
  580. WMI_SERVICE_PEER_CHWIDTH_PUNCTURE_BITMAP_SUPPORT = 345, /* FW supports puncture bitmap change with channel width switch */
  581. WMI_SERVICE_BANG_RADAR_320_SUPPORT = 346, /* Host to send frequency offset for bang radar in extended field for 320M support */
  582. WMI_SERVICE_XGAP_SUPPORT = 347, /* FW support for XGAP */
  583. WMI_SERVICE_OBSS_PER_PACKET_SR_SUPPORT = 348, /* Spatial Reuse support for per PPDU setting */
  584. WMI_SERVICE_MULTIPLE_VDEV_RESTART_BITMAP_SUPPORT = 349, /* Extended Multiple VDEV Restart with Bitmap Support */
  585. WMI_SERVICE_WMI_SERVICE_WPA3_SHA384_ROAM_SUPPORT = 350, /* Indicates FW supports WPA3 SHA384 roaming */
  586. WMI_SERVICE_ODD_LIVEDUMP_SUPPORT = 351, /* Support for ODD Livedump from the FW */
  587. WMI_SERVICE_EIRP_PREFERRED_SUPPORT = 352, /* Support for OOBE feature where only EIRP powers will be sent in 6 GHz TPC WMI */
  588. WMI_SERVICE_RTT_TX_RX_CHAIN_IDX_SUPPORT = 353, /* FW Supports configuring Tx and Rx Chainmask in intiator and Responder */
  589. WMI_SERVICE_RESTRICTED_TWT = 354, /* Support for R-TWT feature */
  590. WMI_SERVICE_SLO_SUPPORTED = 355, /* Support for Single Link 11BE */
  591. WMI_SERVICE_RTT_11AZ_TB_RSTA_SUPPORT = 356, /* FW support for 11AZ trigger based ranging Responder (RSTA) role */
  592. WMI_SERVICE_SUPPORT_11D_FOR_HOST_SCAN = 357,
  593. WMI_SERVICE_DETERMINISTIC_SCHEDULER_LEVEL0 = 358, /* FW supports 12.2 level scheduler mode disable commands and stats */
  594. WMI_SERVICE_COORDINATED_AP_TDMA = 359, /* Support for Coordinated-AP TDMA feature */
  595. WMI_SERVICE_HPA_SUPPORT = 360, /* Support for Host Platform Authentication */
  596. WMI_SERVICE_WMSK_COMPACTION_RX_TLVS = 361, /* Support word mask subscription for rx tlv compaction */
  597. WMI_SERVICE_PRE_RX_TO = 362, /* Support for Pre RX timeout */
  598. WMI_SERVICE_TDLS_CONCURRENCY_SUPPORT = 363, /* Support for TDLS concurrency in FW */
  599. WMI_SERVICE_SELF_MLD_ROAM_BETWEEN_DBS_AND_HBS = 364, /* Suppport roam between DBS(2G+5G/6G) to HBS(5G+6G) with self AP MLD. */
  600. WMI_SERVICE_PEER_METADATA_V1A_V1B_SUPPORT = 365, /* Support rx peer meta data v1a and v1b */
  601. WMI_SERVICE_CFR_CAPTURE_PDEV_ID_SOC = 366, /* Host can send PDEV_ID_SOC with CFR capture request and FW can derive pdev_id from TA address */
  602. WMI_SERVICE_11BE_MLO_TDLS_SUPPORT = 367, /* Indicates FW supports 11be MLO TDLS. Host should enable 11be on TDLS only when FW indicates the support. */
  603. WMI_SERVICE_MANUAL_ULOFDMA_TRIGGER_SUPPORT = 368, /* Support for Host triggered Manual UL OFDMA trigger frame feature */
  604. WMI_SERVICE_STANDALONE_SOUND = 369, /* FW supports standalone sounding */
  605. WMI_SERVICE_AFC_RESP_BINARY_FORMAT_SUPPORTED = 370, /* Service bit to indicate the supported AFC payload response format */
  606. WMI_SERVICE_CCA_BUSY_INFO_FOREACH_20MHZ = 371, /* FW supports reporting of CCA busy info for each 20Mhz subband of wideband scan channel */
  607. WMI_SERVICE_MLO_TSF_SYNC = 372, /* FW supports TSF sync across multiple chips */
  608. WMI_SERVICE_RF_PATH_SEL_INIT_SUPPORT = 373, /* FW supports RF Path selection using WMI Init command field */
  609. WMI_SERVICE_VDEV_PARAM_CHWIDTH_WITH_NOTIFY_SUPPORT = 374, /* FW supports VDEV param channel width switch with OMN/OMI notification */
  610. WMI_SERVICE_RESTRICTED_TWT_REQUESTER = 375, /* Indicates FW supports Restricted TWT REQUESTER */
  611. WMI_SERVICE_RESTRICTED_TWT_RESPONDER = 376, /* Indicates FW supports Restricted TWT RESPONDER */
  612. WMI_SERVICE_AUX_MAC_SUPPORT = 377,
  613. WMI_SERVICE_NAN_PAIRING_PEER_CREATE_BY_HOST = 378, /* Indicate FW supports creation of PASN Peer by Host for NAN pairing usecase */
  614. WMI_SERVICE_MLO_TID_TO_LINK_MAPPING_SUPPORT = 379, /* Indicates FW supports TID-TO-LINK mapping */
  615. WMI_SERVICE_PER_LINK_STATS_SUPPORT = 380, /* Indicates FW supports per link stats for MLO */
  616. WMI_SERVICE_N_LINK_MLO_SUPPORT = 381, /* Indicate FW supports N MLO link & vdev re-purpose between links */
  617. WMI_SERVICE_ATF_MAX_CLIENT_512_SUPPORT = 382, /* Indicates FW supports maximum of 512 clients when ATF is enabled */
  618. WMI_SERVICE_FISA_DYNAMIC_MSDU_AGGR_SIZE_SUPPORT = 383, /* Indicates FW support for FISA aggregation size up to 64 instead of only 16 */
  619. WMI_SERVICE_BRIDGE_VDEV_SUPPORT = 384, /* Indicated FW supports Bridge VDEV */
  620. WMI_SERVICE_MLO_MODE1_RECOVERY_SUPPORTED = 385, /* Indicate fw support for mlo mode1 recovery */
  621. WMI_SERVICE_TX_PWR_PER_PPDU_STATS_SUPPORT = 386, /* FW support to check tx power stats per PPDU */
  622. WMI_SERVICE_DISABLE_WDS_PEER_MAP_UNMAP_EVENT_SUPPORT = 387, /* Indicate FW support to disable wds peer map/unmap events */
  623. WMI_SERVICE_PDEV_WSI_STATS_INFO_SUPPORT = 388, /* Support for WSI Stats Info. */
  624. WMI_SERVICE_MULTIPLE_RF_PATH_SOC_SUPPORT = 389, /* Indicates FW supports Multiple RF Path on SOC Level */
  625. WMI_SERVICE_RADAR_FLAGS_SUPPORT = 390, /* Indicates FW supports radar flags, such as full bandwidth need put to NOL */
  626. WMI_SERVICE_XPAN_SUPPORT = 391, /* Indicate FW support XPAN configuration */
  627. WMI_SERVICE_5GHZ_HI_RSSI_ROAM_SUPPORT = 392, /* Indicate FW supports High RSSI Roam from 5 GHz Band to 6 GHz Band */
  628. WMI_SERVICE_BOTH_PSD_EIRP_FOR_AP_SP_CLIENT_SP_SUPPORT = 393, /* Support for CTL regeneration where both PSD and EIRP will be sent in 6GHZ SET_TPC WMI for SP and SP_CLIENT power modes */
  629. WMI_SERVICE_PDEV_PARAM_IN_UTF_WMI = 394, /* FW supports receiving and sending pdev_id parameter in WMI_PDEV_UTF_(CMD/EVENT) */
  630. WMI_SERVICE_SW_PROG_DFS_SUPPORT = 395, /* Indicate FW support SW progressive DFS */
  631. WMI_SERVICE_MULTIPLE_REORDER_QUEUE_SETUP_SUPPORT = 396, /* Indicate FW supports multiple TID reorder queues setup in one cmd */
  632. WMI_SERVICE_MULTIPLE_COEX_CONFIG_SUPPORT = 397, /* FW supports mutiple coex configs in one cmd */
  633. WMI_SERVICE_PCIE_DATA_RATE_LED_BLINK_SUPPORT = 398, /* FW supports Data Rate based LED blinking for PCI chips */
  634. WMI_SERVICE_VDEV_DCS_STATS_SUPPORT = 399, /* FW supports VDEV level DCS stats reporting */
  635. WMI_SERVICE_WIFI_RADAR_SUPPORT = 400, /* FW supports wifi radar */
  636. WMI_SERVICE_P2P_DEVICE_UPDATE_MAC_ADDR_SUPPORT = 401, /* indicate FW support dynamic update mac address for P2P device */
  637. WMI_SERVICE_DCS_OBSS_INT_SUPPORT = 402, /* Indicates FW supports OBSS Interference detection */
  638. WMI_SERVICE_DYNAMIC_WSI_REMAP_SUPPORT = 403, /* WSI bypass remap is supported by Firmware */
  639. WMI_SERVICE_QMS_DLKM_SUPPORT = 404, /* DEPRECATED */
  640. WMI_SERVICE_SMEM_MAILBOX_SUPPORT = 404, /* FW code has smem_mailbox support enabled */
  641. WMI_SERVICE_REG_CC_EXT2_EVENT_SUPPORT = 405, /* DEPRECATED */
  642. WMI_SERVICE_MLO_MODE2_RECOVERY_SUPPORTED = 406, /* Indicate FW support for MLO mode2 recovery */
  643. WMI_SERVICE_MSDUQ_RECFG = 407, /* FW support the HTT MSDUQ_RECFG_REQ + MSDUQ_CFG_IND messages */
  644. WMI_SERVICE_TRAFFIC_CONTEXT_SUPPORT = 408, /* FW supports traffic context aware manager */
  645. WMI_SERVICE_STA_SAP_NDP_CONCURRENCY_SUPPORT = 409, /* FW supports STA + SAP + NDP concurrency */
  646. WMI_SERVICE_THERM_THROT_POUT_REDUCTION = 410, /* FW supports thermal throttling Pout reduction */
  647. WMI_SERVICE_E2E_SDWF_SUPPORT = 411, /* FW supports end-to-end SDWF features like SDWF scheduler */
  648. WMI_SERVICE_EPM = 412, /* FW supports enhanced power management */
  649. WMI_SERVICE_CHIPSET_LOGGING_SUPPORT = 413, /* FW supports chipset logging feature */
  650. WMI_SERVICE_SUPPORT_AP_SUSPEND_RESUME = 414, /* FW supports SAP suspend feature */
  651. WMI_SERVICE_STA_P2P_NDP_CONCURRENCY_SUPPORT = 415, /* FW supports STA + P2P + NAN concurrency */
  652. WMI_SERVICE_USE_STA_VDEV_FOR_P2P_DEVICE = 416, /* FW supports use of sta vdev to be repurposed for p2p device */
  653. WMI_SERVICE_AP_ASSISTED_DFS_CHAN_P2P_SESSION = 417, /* FW supports P2P session on DFS chan enabled by DFS master AP */
  654. WMI_SERVICE_MLO_SAP_EMLSR_SUPPORT = 418, /* Indicates FW MLO SAP supports EMLSR Mode */
  655. WMI_SERVICE_PKTLOG_ML_TSTMP_SUPPORT = 419, /* Indicates ML timestamp for pktlog */
  656. WMI_SERVICE_MGMT_SRNG_SUPPORT = 420, /* FW supports MGMT frame forwarding via host provided SRNG instead of WMI */
  657. WMI_SERVICE_WDS_NULL_FRAME_SUPPORT = 421,
  658. WMI_SERVICE_MLO_SAP_CONCURRENCY_SUPPORT = 422, /* Indicates FW supports MLO SAP+STA Concurrency */
  659. WMI_SERVICE_MEC_AGING_TIMER_SUPPORT = 423, /* FW supports multicast echo check aging timer */
  660. WMI_SERVICE_MULTI_RSNO_SUPPORT = 424, /* FW supports parsing of multiple RSN override IEs */
  661. /* WMI_SERVICE_IS_TARGET_IPA:
  662. * FW indicates to host whether the target is IPA or xFEM.
  663. * If this flag is 0, the target is XFEM or unspecified.
  664. * If this flag is 1, the target is IPA.
  665. */
  666. WMI_SERVICE_IS_TARGET_IPA = 425,
  667. WMI_SERVICE_THERM_THROT_TX_CHAIN_MASK = 426, /*FW supports thermal throttling dynamic Tx ChainMask update */
  668. WMI_SERVICE_SPLIT_PHY_PDEV_SUSPEND_RESUME_SUPPORT = 427, /* Indicates FW support pdev suspend/resume in split-phy radio */
  669. WMI_MAX_EXT2_SERVICE
  670. } WMI_SERVICE;
  671. #define WMI_SERVICE_BM_SIZE ((WMI_MAX_SERVICE + sizeof(A_UINT32)- 1)/sizeof(A_UINT32))
  672. #define WMI_NUM_EXT_SERVICES (WMI_MAX_EXT_SERVICE - WMI_MAX_SERVICE)
  673. #define WMI_NUM_EXT2_SERVICES (WMI_MAX_EXT2_SERVICE - WMI_MAX_EXT_SERVICE)
  674. /*
  675. * TEMPORARY WORKAROUND
  676. * Virtually all branches of the target utilize an incorrect check on
  677. * the value of WMI_SERVICE_EXT_BM_SIZE32, checking that
  678. * WMI_SERVICE_EXT_BM_SIZE32 < 4, rather than WMI_SERVICE_EXT_BM_SIZE32 <= 4.
  679. * Until all target branches are fixed, this check is being disabled
  680. * by artificially setting WMI_SERVICE_EXT_BM_SIZE32 to 0, rather than
  681. * the number of 4-byte words required for holding the WMI extension
  682. * service flags.
  683. */
  684. #if 0
  685. #define WMI_SERVICE_EXT_BM_SIZE32 ((WMI_NUM_EXT_SERVICES + 31) / 32)
  686. #else
  687. #define WMI_SERVICE_EXT_BM_SIZE32 0
  688. #endif
  689. #define WMI_SERVICE_ROAM_OFFLOAD WMI_SERVICE_ROAM_SCAN_OFFLOAD /* depreciated the name WMI_SERVICE_ROAM_OFFLOAD, but here to help compiling with old host driver */
  690. /*
  691. * turn on the WMI service bit corresponding to the WMI service.
  692. */
  693. #define WMI_SERVICE_ENABLE(pwmi_svc_bmap,svc_id) \
  694. ( (pwmi_svc_bmap)[(svc_id)/(sizeof(A_UINT32))] |= \
  695. ((A_UINT32) 1 << ((svc_id)%(sizeof(A_UINT32)))) )
  696. #define WMI_SERVICE_DISABLE(pwmi_svc_bmap,svc_id) \
  697. ( (pwmi_svc_bmap)[(svc_id)/(sizeof(A_UINT32))] &= \
  698. ( ~((A_UINT32) 1 << ((svc_id)%(sizeof(A_UINT32)))) ) )
  699. #define WMI_SERVICE_IS_ENABLED(pwmi_svc_bmap,svc_id) \
  700. ( ((pwmi_svc_bmap)[(svc_id)/(sizeof(A_UINT32))] & \
  701. ((A_UINT32) 1 << ((svc_id)%(sizeof(A_UINT32)))) ) != 0)
  702. #define WMI_SERVICE_EXT_ENABLE(pwmi_svc_bmap, pwmi_svc_ext_bmap, svc_id) \
  703. do { \
  704. if (svc_id < WMI_MAX_SERVICE) { \
  705. WMI_SERVICE_ENABLE(pwmi_svc_bmap, svc_id); \
  706. } else { \
  707. int word = ((svc_id) - WMI_MAX_SERVICE) / 32; \
  708. int bit = (svc_id) & 0x1f; /* svc_id mod 32 */ \
  709. (pwmi_svc_ext_bmap)[word] |= ((A_UINT32) 1 << bit); \
  710. } \
  711. } while (0)
  712. #define WMI_SERVICE_EXT_DISABLE(pwmi_svc_bmap, pwmi_svc_ext_bmap, svc_id) \
  713. do { \
  714. if (svc_id < WMI_MAX_SERVICE) { \
  715. WMI_SERVICE_DISABLE(pwmi_svc_bmap, svc_id); \
  716. } else { \
  717. int word = ((svc_id) - WMI_MAX_SERVICE) / 32; \
  718. int bit = (svc_id) & 0x1f; /* svc_id mod 32 */ \
  719. (pwmi_svc_ext_bmap)[word] &= ~((A_UINT32) 1 << bit); \
  720. } \
  721. } while (0)
  722. #define WMI_SERVICE_EXT_IS_ENABLED(pwmi_svc_bmap, pwmi_svc_ext_bmap, svc_id) \
  723. /* If the service ID is beyond the known limit, treat it as disabled */ \
  724. ((svc_id) >= WMI_MAX_EXT_SERVICE ? 0 : \
  725. /* If service ID is in the non-extension range, use the old check */ \
  726. (svc_id) < WMI_MAX_SERVICE ? \
  727. WMI_SERVICE_IS_ENABLED(pwmi_svc_bmap, svc_id) : \
  728. /* If service ID is in the extended range, check ext_bmap */ \
  729. (((pwmi_svc_ext_bmap)[((svc_id) - WMI_MAX_SERVICE) / 32] >> \
  730. ((svc_id) & 0x1f)) & 0x1))
  731. #define WMI_SERVICE_EXT2_ENABLE( \
  732. pwmi_svc_bmap, pwmi_svc_ext_bmap, pwmi_svc_ext2_bmap, svc_id) \
  733. do { \
  734. if (svc_id < WMI_MAX_SERVICE) { \
  735. WMI_SERVICE_ENABLE(pwmi_svc_bmap, svc_id); \
  736. } else if (svc_id < WMI_MAX_EXT_SERVICE) { \
  737. WMI_SERVICE_EXT_ENABLE(pwmi_svc_bmap, pwmi_svc_ext_bmap, svc_id); \
  738. } else { \
  739. int word = ((svc_id) - WMI_MAX_EXT_SERVICE) / 32; \
  740. int bit = (svc_id) & 0x1f; /* svc_id mod 32 */ \
  741. (pwmi_svc_ext2_bmap)[word] |= ((A_UINT32) 1 << bit); \
  742. } \
  743. } while (0)
  744. #define WMI_SERVICE_EXT2_DISABLE( \
  745. pwmi_svc_bmap, pwmi_svc_ext_bmap, pwmi_svc_ext2_bmap, svc_id) \
  746. do { \
  747. if (svc_id < WMI_MAX_SERVICE) { \
  748. WMI_SERVICE_DISABLE(pwmi_svc_bmap, svc_id); \
  749. } else if (svc_id < WMI_MAX_EXT_SERVICE) { \
  750. WMI_SERVICE_EXT_DISABLE(pwmi_svc_bmap, pwmi_svc_ext_bmap, svc_id); \
  751. } else { \
  752. int word = ((svc_id) - WMI_MAX_EXT_SERVICE) / 32; \
  753. int bit = (svc_id) & 0x1f; /* svc_id mod 32 */ \
  754. (pwmi_svc_ext2_bmap)[word] &= ~((A_UINT32) 1 << bit); \
  755. } \
  756. } while (0)
  757. #define WMI_SERVICE_EXT2_IS_ENABLED( \
  758. pwmi_svc_bmap, pwmi_svc_ext_bmap, pwmi_svc_ext2_bmap, svc_id) \
  759. /* If the service ID is beyond the known limit, treat it as disabled */ \
  760. ((svc_id) >= WMI_MAX_EXT2_SERVICE ? 0 : \
  761. /* If service ID is in the non-extension range, use the old check */ \
  762. (svc_id) < WMI_MAX_SERVICE ? \
  763. WMI_SERVICE_IS_ENABLED(pwmi_svc_bmap, svc_id) : \
  764. /* If service ID is in the 1st extended range, check ext_bmap */ \
  765. (svc_id) < WMI_MAX_EXT_SERVICE ? \
  766. WMI_SERVICE_EXT_IS_ENABLED( \
  767. pwmi_svc_bmap, pwmi_svc_ext_bmap, svc_id) : \
  768. /* \
  769. * If service ID is in the 2nd extended range, check ext2_bmap \
  770. */ \
  771. (((pwmi_svc_ext2_bmap)[((svc_id) - WMI_MAX_EXT_SERVICE) / 32] >> \
  772. ((svc_id) & 0x1f)) & 0x1))
  773. #ifdef __cplusplus
  774. }
  775. #endif
  776. #endif /*_WMI_SERVICES_H_*/