qca-vendor.h 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590
  1. /*
  2. * Qualcomm Atheros OUI and vendor specific assignments
  3. * Copyright (c) 2014-2015, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef QCA_VENDOR_H
  9. #define QCA_VENDOR_H
  10. /*
  11. * This file is a registry of identifier assignments from the Qualcomm Atheros
  12. * OUI 00:13:74 for purposes other than MAC address assignment. New identifiers
  13. * can be assigned through normal review process for changes to the upstream
  14. * hostap.git repository.
  15. */
  16. #define OUI_QCA 0x001374
  17. /**
  18. * enum qca_radiotap_vendor_ids - QCA radiotap vendor namespace IDs
  19. */
  20. enum qca_radiotap_vendor_ids {
  21. QCA_RADIOTAP_VID_WLANTEST = 0,
  22. };
  23. /**
  24. * enum qca_nl80211_vendor_subcmds - QCA nl80211 vendor command identifiers
  25. *
  26. * @QCA_NL80211_VENDOR_SUBCMD_UNSPEC: Reserved value 0
  27. *
  28. * @QCA_NL80211_VENDOR_SUBCMD_TEST: Test command/event
  29. *
  30. * @QCA_NL80211_VENDOR_SUBCMD_ROAMING: Set roaming policy for drivers that use
  31. * internal BSS-selection. This command uses
  32. * @QCA_WLAN_VENDOR_ATTR_ROAMING_POLICY to specify the new roaming policy
  33. * for the current connection (i.e., changes policy set by the nl80211
  34. * Connect command). @QCA_WLAN_VENDOR_ATTR_MAC_ADDR may optionally be
  35. * included to indicate which BSS to use in case roaming is disabled.
  36. *
  37. * @QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY: Recommendation of frequency
  38. * ranges to avoid to reduce issues due to interference or internal
  39. * co-existence information in the driver. The event data structure is
  40. * defined in struct qca_avoid_freq_list.
  41. *
  42. * @QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY: Command to check driver support
  43. * for DFS offloading.
  44. *
  45. * @QCA_NL80211_VENDOR_SUBCMD_NAN: NAN command/event which is used to pass
  46. * NAN Request/Response and NAN Indication messages. These messages are
  47. * interpreted between the framework and the firmware component.
  48. *
  49. * @QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_SET_KEY: Set key operation that can be
  50. * used to configure PMK to the driver even when not connected. This can
  51. * be used to request offloading of key management operations. Only used
  52. * if device supports QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD.
  53. *
  54. * @QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_ROAM_AUTH: An extended version of
  55. * NL80211_CMD_ROAM event with optional attributes including information
  56. * from offloaded key management operation. Uses
  57. * enum qca_wlan_vendor_attr_roam_auth attributes. Only used
  58. * if device supports QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD.
  59. *
  60. * @QCA_NL80211_VENDOR_SUBCMD_DO_ACS: ACS command/event which is used to
  61. * invoke the ACS function in device and pass selected channels to
  62. * hostapd.
  63. *
  64. * @QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES: Command to get the features
  65. * supported by the driver. enum qca_wlan_vendor_features defines
  66. * the possible features.
  67. *
  68. * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_STARTED: Event used by driver,
  69. * which supports DFS offloading, to indicate a channel availability check
  70. * start.
  71. *
  72. * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_FINISHED: Event used by driver,
  73. * which supports DFS offloading, to indicate a channel availability check
  74. * completion.
  75. *
  76. * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_ABORTED: Event used by driver,
  77. * which supports DFS offloading, to indicate that the channel availability
  78. * check aborted, no change to the channel status.
  79. *
  80. * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_NOP_FINISHED: Event used by
  81. * driver, which supports DFS offloading, to indicate that the
  82. * Non-Occupancy Period for this channel is over, channel becomes usable.
  83. *
  84. * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_RADAR_DETECTED: Event used by driver,
  85. * which supports DFS offloading, to indicate a radar pattern has been
  86. * detected. The channel is now unusable.
  87. *
  88. * @QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_START: Command used to
  89. * start the P2P Listen offload function in device and pass the listen
  90. * channel, period, interval, count, device types, and vendor specific
  91. * information elements to the device driver and firmware.
  92. * Uses the attributes defines in
  93. * enum qca_wlan_vendor_attr_p2p_listen_offload.
  94. *
  95. * @QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_STOP: Command/event used to
  96. * indicate stop request/response of the P2P Listen offload function in
  97. * device. As an event, it indicates either the feature stopped after it
  98. * was already running or feature has actually failed to start. Uses the
  99. * attributes defines in enum qca_wlan_vendor_attr_p2p_listen_offload.
  100. *
  101. * @QCA_NL80211_VENDOR_SUBCMD_SAP_CONDITIONAL_CHAN_SWITCH: After AP starts
  102. * beaconing, this sub command provides the driver, the frequencies on the
  103. * 5 GHz band to check for any radar activity. Driver selects one channel
  104. * from this priority list provided through
  105. * @QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_FREQ_LIST and starts
  106. * to check for radar activity on it. If no radar activity is detected
  107. * during the channel availability check period, driver internally switches
  108. * to the selected frequency of operation. If the frequency is zero, driver
  109. * internally selects a channel. The status of this conditional switch is
  110. * indicated through an event using the same sub command through
  111. * @QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_STATUS. Attributes are
  112. * listed in qca_wlan_vendor_attr_sap_conditional_chan_switch.
  113. *
  114. * @QCA_NL80211_VENDOR_SUBCMD_GPIO_CONFIG_COMMAND: Set GPIO pins. This uses the
  115. * attributes defined in enum qca_wlan_gpio_attr.
  116. *
  117. * @QCA_NL80211_VENDOR_SUBCMD_GET_HW_CAPABILITY: Fetch hardware capabilities.
  118. * This uses @QCA_WLAN_VENDOR_ATTR_GET_HW_CAPABILITY to indicate which
  119. * capabilities are to be fetched and other
  120. * enum qca_wlan_vendor_attr_get_hw_capability attributes to return the
  121. * requested capabilities.
  122. *
  123. * @QCA_NL80211_VENDOR_SUBCMD_LL_STATS_EXT: Link layer statistics extension.
  124. * enum qca_wlan_vendor_attr_ll_stats_ext attributes are used with this
  125. * command and event.
  126. *
  127. * @QCA_NL80211_VENDOR_SUBCMD_LOC_GET_CAPA: Get capabilities for
  128. * indoor location features. Capabilities are reported in
  129. * QCA_WLAN_VENDOR_ATTR_LOC_CAPA.
  130. *
  131. * @QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION: Start an FTM
  132. * (fine timing measurement) session with one or more peers.
  133. * Specify Session cookie in QCA_WLAN_VENDOR_ATTR_FTM_SESSION_COOKIE and
  134. * peer information in QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEERS.
  135. * On success, 0 or more QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT
  136. * events will be reported, followed by
  137. * QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE event to indicate
  138. * end of session.
  139. * Refer to IEEE P802.11-REVmc/D7.0, 11.24.6
  140. *
  141. * @QCA_NL80211_VENDOR_SUBCMD_FTM_ABORT_SESSION: Abort a running session.
  142. * A QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE will be reported with
  143. * status code indicating session was aborted.
  144. *
  145. * @QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT: Event with measurement
  146. * results for one peer. Results are reported in
  147. * QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEER_RESULTS.
  148. *
  149. * @QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE: Event triggered when
  150. * FTM session is finished, either successfully or aborted by
  151. * request.
  152. *
  153. * @QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER: Configure FTM responder
  154. * mode. QCA_WLAN_VENDOR_ATTR_FTM_RESPONDER_ENABLE specifies whether
  155. * to enable or disable the responder. LCI/LCR reports can be
  156. * configured with QCA_WLAN_VENDOR_ATTR_FTM_LCI and
  157. * QCA_WLAN_VENDOR_ATTR_FTM_LCR. Can be called multiple
  158. * times to update the LCI/LCR reports.
  159. *
  160. * @QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS: Perform a standalone AOA (angle of
  161. * arrival) measurement with a single peer. Specify peer MAC address in
  162. * QCA_WLAN_VENDOR_ATTR_MAC_ADDR and measurement type in
  163. * QCA_WLAN_VENDOR_ATTR_AOA_TYPE. Measurement result is reported in
  164. * QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT event.
  165. *
  166. * @QCA_NL80211_VENDOR_SUBCMD_AOA_ABORT_MEAS: Abort an AOA measurement. Specify
  167. * peer MAC address in QCA_WLAN_VENDOR_ATTR_MAC_ADDR.
  168. *
  169. * @QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT: Event that reports
  170. * the AOA measurement result.
  171. * Peer MAC address reported in QCA_WLAN_VENDOR_ATTR_MAC_ADDR.
  172. * success/failure status is reported in
  173. * QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS.
  174. * Measurement data is reported in QCA_WLAN_VENDOR_ATTR_AOA_MEAS_RESULT.
  175. * The antenna array(s) used in the measurement are reported in
  176. * QCA_WLAN_VENDOR_ATTR_LOC_ANTENNA_ARRAY_MASK.
  177. *
  178. * @QCA_NL80211_VENDOR_SUBCMD_ENCRYPTION_TEST: Encrypt/decrypt the given
  179. * data as per the given parameters.
  180. *
  181. * @QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI: Get antenna RSSI value for a
  182. * specific chain.
  183. */
  184. enum qca_nl80211_vendor_subcmds {
  185. QCA_NL80211_VENDOR_SUBCMD_UNSPEC = 0,
  186. QCA_NL80211_VENDOR_SUBCMD_TEST = 1,
  187. /* subcmds 2..8 not yet allocated */
  188. QCA_NL80211_VENDOR_SUBCMD_ROAMING = 9,
  189. QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY = 10,
  190. QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY = 11,
  191. QCA_NL80211_VENDOR_SUBCMD_NAN = 12,
  192. QCA_NL80211_VENDOR_SUBMCD_STATS_EXT = 13,
  193. QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET = 14,
  194. QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET = 15,
  195. QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR = 16,
  196. QCA_NL80211_VENDOR_SUBCMD_LL_STATS_RADIO_RESULTS = 17,
  197. QCA_NL80211_VENDOR_SUBCMD_LL_STATS_IFACE_RESULTS = 18,
  198. QCA_NL80211_VENDOR_SUBCMD_LL_STATS_PEERS_RESULTS = 19,
  199. QCA_NL80211_VENDOR_SUBCMD_GSCAN_START = 20,
  200. QCA_NL80211_VENDOR_SUBCMD_GSCAN_STOP = 21,
  201. QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_VALID_CHANNELS = 22,
  202. QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_CAPABILITIES = 23,
  203. QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_CACHED_RESULTS = 24,
  204. QCA_NL80211_VENDOR_SUBCMD_GSCAN_SCAN_RESULTS_AVAILABLE = 25,
  205. QCA_NL80211_VENDOR_SUBCMD_GSCAN_FULL_SCAN_RESULT = 26,
  206. QCA_NL80211_VENDOR_SUBCMD_GSCAN_SCAN_EVENT = 27,
  207. QCA_NL80211_VENDOR_SUBCMD_GSCAN_HOTLIST_AP_FOUND = 28,
  208. QCA_NL80211_VENDOR_SUBCMD_GSCAN_SET_BSSID_HOTLIST = 29,
  209. QCA_NL80211_VENDOR_SUBCMD_GSCAN_RESET_BSSID_HOTLIST = 30,
  210. QCA_NL80211_VENDOR_SUBCMD_GSCAN_SIGNIFICANT_CHANGE = 31,
  211. QCA_NL80211_VENDOR_SUBCMD_GSCAN_SET_SIGNIFICANT_CHANGE = 32,
  212. QCA_NL80211_VENDOR_SUBCMD_GSCAN_RESET_SIGNIFICANT_CHANGE = 33,
  213. QCA_NL80211_VENDOR_SUBCMD_TDLS_ENABLE = 34,
  214. QCA_NL80211_VENDOR_SUBCMD_TDLS_DISABLE = 35,
  215. QCA_NL80211_VENDOR_SUBCMD_TDLS_GET_STATUS = 36,
  216. QCA_NL80211_VENDOR_SUBCMD_TDLS_STATE = 37,
  217. QCA_NL80211_VENDOR_SUBCMD_GET_SUPPORTED_FEATURES = 38,
  218. QCA_NL80211_VENDOR_SUBCMD_SCANNING_MAC_OUI = 39,
  219. QCA_NL80211_VENDOR_SUBCMD_NO_DFS_FLAG = 40,
  220. QCA_NL80211_VENDOR_SUBCMD_GSCAN_HOTLIST_AP_LOST = 41,
  221. QCA_NL80211_VENDOR_SUBCMD_GET_CONCURRENCY_MATRIX = 42,
  222. /* 43..49 - reserved for QCA */
  223. QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_SET_KEY = 50,
  224. QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_ROAM_AUTH = 51,
  225. QCA_NL80211_VENDOR_SUBCMD_APFIND = 52,
  226. /* 53 - reserved - was used by QCA, but not in use anymore */
  227. QCA_NL80211_VENDOR_SUBCMD_DO_ACS = 54,
  228. QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES = 55,
  229. QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_STARTED = 56,
  230. QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_FINISHED = 57,
  231. QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_ABORTED = 58,
  232. QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_NOP_FINISHED = 59,
  233. QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_RADAR_DETECTED = 60,
  234. /* 61-73 - reserved for QCA */
  235. /* Wi-Fi configuration subcommands */
  236. QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION = 74,
  237. QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_CONFIGURATION = 75,
  238. /* 76-90 - reserved for QCA */
  239. QCA_NL80211_VENDOR_SUBCMD_DATA_OFFLOAD = 91,
  240. QCA_NL80211_VENDOR_SUBCMD_OCB_SET_CONFIG = 92,
  241. QCA_NL80211_VENDOR_SUBCMD_OCB_SET_UTC_TIME = 93,
  242. QCA_NL80211_VENDOR_SUBCMD_OCB_START_TIMING_ADVERT = 94,
  243. QCA_NL80211_VENDOR_SUBCMD_OCB_STOP_TIMING_ADVERT = 95,
  244. QCA_NL80211_VENDOR_SUBCMD_OCB_GET_TSF_TIMER = 96,
  245. QCA_NL80211_VENDOR_SUBCMD_DCC_GET_STATS = 97,
  246. QCA_NL80211_VENDOR_SUBCMD_DCC_CLEAR_STATS = 98,
  247. QCA_NL80211_VENDOR_SUBCMD_DCC_UPDATE_NDL = 99,
  248. QCA_NL80211_VENDOR_SUBCMD_DCC_STATS_EVENT = 100,
  249. QCA_NL80211_VENDOR_SUBCMD_LINK_PROPERTIES = 101,
  250. QCA_NL80211_VENDOR_SUBCMD_GW_PARAM_CONFIG = 102,
  251. QCA_NL80211_VENDOR_SUBCMD_GET_PREFERRED_FREQ_LIST = 103,
  252. QCA_NL80211_VENDOR_SUBCMD_SET_PROBABLE_OPER_CHANNEL = 104,
  253. QCA_NL80211_VENDOR_SUBCMD_SETBAND = 105,
  254. QCA_NL80211_VENDOR_SUBCMD_TRIGGER_SCAN = 106,
  255. QCA_NL80211_VENDOR_SUBCMD_SCAN_DONE = 107,
  256. QCA_NL80211_VENDOR_SUBCMD_OTA_TEST = 108,
  257. QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_SCALE = 109,
  258. /* 110..114 - reserved for QCA */
  259. QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_DECR_DB = 115,
  260. /* 116..117 - reserved for QCA */
  261. QCA_NL80211_VENDOR_SUBCMD_SET_SAP_CONFIG = 118,
  262. QCA_NL80211_VENDOR_SUBCMD_TSF = 119,
  263. QCA_NL80211_VENDOR_SUBCMD_WISA = 120,
  264. /* 121 - reserved for QCA */
  265. QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_START = 122,
  266. QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_STOP = 123,
  267. QCA_NL80211_VENDOR_SUBCMD_SAP_CONDITIONAL_CHAN_SWITCH = 124,
  268. QCA_NL80211_VENDOR_SUBCMD_GPIO_CONFIG_COMMAND = 125,
  269. QCA_NL80211_VENDOR_SUBCMD_GET_HW_CAPABILITY = 126,
  270. QCA_NL80211_VENDOR_SUBCMD_LL_STATS_EXT = 127,
  271. /* FTM/indoor location subcommands */
  272. QCA_NL80211_VENDOR_SUBCMD_LOC_GET_CAPA = 128,
  273. QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION = 129,
  274. QCA_NL80211_VENDOR_SUBCMD_FTM_ABORT_SESSION = 130,
  275. QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT = 131,
  276. QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE = 132,
  277. QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER = 133,
  278. QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS = 134,
  279. QCA_NL80211_VENDOR_SUBCMD_AOA_ABORT_MEAS = 135,
  280. QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT = 136,
  281. QCA_NL80211_VENDOR_SUBCMD_ENCRYPTION_TEST = 137,
  282. QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI = 138,
  283. };
  284. enum qca_wlan_vendor_attr {
  285. QCA_WLAN_VENDOR_ATTR_INVALID = 0,
  286. /* used by QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY */
  287. QCA_WLAN_VENDOR_ATTR_DFS = 1,
  288. /* used by QCA_NL80211_VENDOR_SUBCMD_NAN */
  289. QCA_WLAN_VENDOR_ATTR_NAN = 2,
  290. /* used by QCA_NL80211_VENDOR_SUBCMD_STATS_EXT */
  291. QCA_WLAN_VENDOR_ATTR_STATS_EXT = 3,
  292. /* used by QCA_NL80211_VENDOR_SUBCMD_STATS_EXT */
  293. QCA_WLAN_VENDOR_ATTR_IFINDEX = 4,
  294. /* used by QCA_NL80211_VENDOR_SUBCMD_ROAMING, u32 with values defined
  295. * by enum qca_roaming_policy. */
  296. QCA_WLAN_VENDOR_ATTR_ROAMING_POLICY = 5,
  297. QCA_WLAN_VENDOR_ATTR_MAC_ADDR = 6,
  298. /* used by QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES */
  299. QCA_WLAN_VENDOR_ATTR_FEATURE_FLAGS = 7,
  300. QCA_WLAN_VENDOR_ATTR_TEST = 8,
  301. /* used by QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES */
  302. /* Unsigned 32-bit value. */
  303. QCA_WLAN_VENDOR_ATTR_CONCURRENCY_CAPA = 9,
  304. /* Unsigned 32-bit value */
  305. QCA_WLAN_VENDOR_ATTR_MAX_CONCURRENT_CHANNELS_2_4_BAND = 10,
  306. /* Unsigned 32-bit value */
  307. QCA_WLAN_VENDOR_ATTR_MAX_CONCURRENT_CHANNELS_5_0_BAND = 11,
  308. /* Unsigned 32-bit value from enum qca_set_band. */
  309. QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE = 12,
  310. /* Dummy (NOP) attribute for 64 bit padding */
  311. QCA_WLAN_VENDOR_ATTR_PAD = 13,
  312. /* Unique FTM session cookie (Unsigned 64 bit). Specified in
  313. * QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION. Reported in
  314. * the session in QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT and
  315. * QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE.
  316. */
  317. QCA_WLAN_VENDOR_ATTR_FTM_SESSION_COOKIE = 14,
  318. /* Indoor location capabilities, returned by
  319. * QCA_NL80211_VENDOR_SUBCMD_LOC_GET_CAPA.
  320. * see enum qca_wlan_vendor_attr_loc_capa.
  321. */
  322. QCA_WLAN_VENDOR_ATTR_LOC_CAPA = 15,
  323. /* Array of nested attributes containing information about each peer
  324. * in FTM measurement session. See enum qca_wlan_vendor_attr_peer_info
  325. * for supported attributes for each peer.
  326. */
  327. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEERS = 16,
  328. /* Array of nested attributes containing measurement results for
  329. * one or more peers, reported by the
  330. * QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT event.
  331. * See enum qca_wlan_vendor_attr_peer_result for list of supported
  332. * attributes.
  333. */
  334. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEER_RESULTS = 17,
  335. /* Flag attribute for enabling or disabling responder functionality. */
  336. QCA_WLAN_VENDOR_ATTR_FTM_RESPONDER_ENABLE = 18,
  337. /* Used in the QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER
  338. * command to specify the LCI report that will be sent by
  339. * the responder during a measurement exchange. The format is
  340. * defined in IEEE P802.11-REVmc/D7.0, 9.4.2.22.10.
  341. */
  342. QCA_WLAN_VENDOR_ATTR_FTM_LCI = 19,
  343. /* Used in the QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER
  344. * command to specify the location civic report that will
  345. * be sent by the responder during a measurement exchange.
  346. * The format is defined in IEEE P802.11-REVmc/D7.0, 9.4.2.22.13.
  347. */
  348. QCA_WLAN_VENDOR_ATTR_FTM_LCR = 20,
  349. /* Session/measurement completion status code,
  350. * reported in QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE and
  351. * QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT
  352. * see enum qca_vendor_attr_loc_session_status.
  353. */
  354. QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS = 21,
  355. /* Initial dialog token used by responder (0 if not specified),
  356. * unsigned 8 bit value.
  357. */
  358. QCA_WLAN_VENDOR_ATTR_FTM_INITIAL_TOKEN = 22,
  359. /* AOA measurement type. Requested in QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS
  360. * and optionally in QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION if
  361. * AOA measurements are needed as part of an FTM session.
  362. * Reported by QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT. See
  363. * enum qca_wlan_vendor_attr_aoa_type.
  364. */
  365. QCA_WLAN_VENDOR_ATTR_AOA_TYPE = 23,
  366. /* A bit mask (unsigned 32 bit value) of antenna arrays used
  367. * by indoor location measurements. Refers to the antenna
  368. * arrays described by QCA_VENDOR_ATTR_LOC_CAPA_ANTENNA_ARRAYS.
  369. */
  370. QCA_WLAN_VENDOR_ATTR_LOC_ANTENNA_ARRAY_MASK = 24,
  371. /* AOA measurement data. Its contents depends on the AOA measurement
  372. * type and antenna array mask:
  373. * QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE: array of U16 values,
  374. * phase of the strongest CIR path for each antenna in the measured
  375. * array(s).
  376. * QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE_AMP: array of 2 U16
  377. * values, phase and amplitude of the strongest CIR path for each
  378. * antenna in the measured array(s).
  379. */
  380. QCA_WLAN_VENDOR_ATTR_AOA_MEAS_RESULT = 25,
  381. /* Used in QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI command
  382. * to specify the chain number (unsigned 32 bit value) to inquire
  383. * the corresponding antenna RSSI value */
  384. QCA_WLAN_VENDOR_ATTR_CHAIN_INDEX = 26,
  385. /* Used in QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI command
  386. * to report the specific antenna RSSI value (unsigned 32 bit value) */
  387. QCA_WLAN_VENDOR_ATTR_CHAIN_RSSI = 27,
  388. /* keep last */
  389. QCA_WLAN_VENDOR_ATTR_AFTER_LAST,
  390. QCA_WLAN_VENDOR_ATTR_MAX = QCA_WLAN_VENDOR_ATTR_AFTER_LAST - 1,
  391. };
  392. enum qca_roaming_policy {
  393. QCA_ROAMING_NOT_ALLOWED,
  394. QCA_ROAMING_ALLOWED_WITHIN_ESS,
  395. };
  396. enum qca_wlan_vendor_attr_roam_auth {
  397. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_INVALID = 0,
  398. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_BSSID,
  399. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_REQ_IE,
  400. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_RESP_IE,
  401. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_AUTHORIZED,
  402. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_KEY_REPLAY_CTR,
  403. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_PTK_KCK,
  404. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_PTK_KEK,
  405. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_SUBNET_STATUS,
  406. /* keep last */
  407. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_AFTER_LAST,
  408. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_MAX =
  409. QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_AFTER_LAST - 1
  410. };
  411. enum qca_wlan_vendor_attr_p2p_listen_offload {
  412. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_INVALID = 0,
  413. /* A 32-bit unsigned value; the P2P listen frequency (MHz); must be one
  414. * of the social channels.
  415. */
  416. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_CHANNEL,
  417. /* A 32-bit unsigned value; the P2P listen offload period (ms).
  418. */
  419. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_PERIOD,
  420. /* A 32-bit unsigned value; the P2P listen interval duration (ms).
  421. */
  422. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_INTERVAL,
  423. /* A 32-bit unsigned value; number of interval times the firmware needs
  424. * to run the offloaded P2P listen operation before it stops.
  425. */
  426. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_COUNT,
  427. /* An array of arbitrary binary data with one or more 8-byte values.
  428. * The device types include both primary and secondary device types.
  429. */
  430. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_DEVICE_TYPES,
  431. /* An array of unsigned 8-bit characters; vendor information elements.
  432. */
  433. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_VENDOR_IE,
  434. /* A 32-bit unsigned value; a control flag to indicate whether listen
  435. * results need to be flushed to wpa_supplicant.
  436. */
  437. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_CTRL_FLAG,
  438. /* A 8-bit unsigned value; reason code for P2P listen offload stop
  439. * event.
  440. */
  441. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_STOP_REASON,
  442. /* keep last */
  443. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_AFTER_LAST,
  444. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_MAX =
  445. QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_AFTER_LAST - 1
  446. };
  447. enum qca_wlan_vendor_attr_acs_offload {
  448. QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_INVALID = 0,
  449. QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL,
  450. QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL,
  451. QCA_WLAN_VENDOR_ATTR_ACS_HW_MODE,
  452. QCA_WLAN_VENDOR_ATTR_ACS_HT_ENABLED,
  453. QCA_WLAN_VENDOR_ATTR_ACS_HT40_ENABLED,
  454. QCA_WLAN_VENDOR_ATTR_ACS_VHT_ENABLED,
  455. QCA_WLAN_VENDOR_ATTR_ACS_CHWIDTH,
  456. QCA_WLAN_VENDOR_ATTR_ACS_CH_LIST,
  457. QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_CHANNEL,
  458. QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_CHANNEL,
  459. QCA_WLAN_VENDOR_ATTR_ACS_FREQ_LIST,
  460. /* keep last */
  461. QCA_WLAN_VENDOR_ATTR_ACS_AFTER_LAST,
  462. QCA_WLAN_VENDOR_ATTR_ACS_MAX =
  463. QCA_WLAN_VENDOR_ATTR_ACS_AFTER_LAST - 1
  464. };
  465. enum qca_wlan_vendor_acs_hw_mode {
  466. QCA_ACS_MODE_IEEE80211B,
  467. QCA_ACS_MODE_IEEE80211G,
  468. QCA_ACS_MODE_IEEE80211A,
  469. QCA_ACS_MODE_IEEE80211AD,
  470. QCA_ACS_MODE_IEEE80211ANY,
  471. };
  472. /**
  473. * enum qca_wlan_vendor_features - Vendor device/driver feature flags
  474. *
  475. * @QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD: Device supports key
  476. * management offload, a mechanism where the station's firmware
  477. * does the exchange with the AP to establish the temporal keys
  478. * after roaming, rather than having the user space wpa_supplicant do it.
  479. * @QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY: Device supports automatic
  480. * band selection based on channel selection results.
  481. * @QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS: Device supports
  482. * simultaneous off-channel operations.
  483. * @QCA_WLAN_VENDOR_FEATURE_P2P_LISTEN_OFFLOAD: Device supports P2P
  484. * Listen offload; a mechanism where the station's firmware takes care of
  485. * responding to incoming Probe Request frames received from other P2P
  486. * Devices whilst in Listen state, rather than having the user space
  487. * wpa_supplicant do it. Information from received P2P requests are
  488. * forwarded from firmware to host whenever the host processor wakes up.
  489. * @NUM_QCA_WLAN_VENDOR_FEATURES: Number of assigned feature bits
  490. */
  491. enum qca_wlan_vendor_features {
  492. QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD = 0,
  493. QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY = 1,
  494. QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS = 2,
  495. QCA_WLAN_VENDOR_FEATURE_P2P_LISTEN_OFFLOAD = 3,
  496. NUM_QCA_WLAN_VENDOR_FEATURES /* keep last */
  497. };
  498. /**
  499. * enum qca_wlan_vendor_attr_data_offload_ind - Vendor Data Offload Indication
  500. *
  501. * @QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_SESSION: Session corresponding to
  502. * the offloaded data.
  503. * @QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_PROTOCOL: Protocol of the offloaded
  504. * data.
  505. * @QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_EVENT: Event type for the data offload
  506. * indication.
  507. */
  508. enum qca_wlan_vendor_attr_data_offload_ind {
  509. QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_INVALID = 0,
  510. QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_SESSION,
  511. QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_PROTOCOL,
  512. QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_EVENT,
  513. /* keep last */
  514. QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_AFTER_LAST,
  515. QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_MAX =
  516. QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_AFTER_LAST - 1
  517. };
  518. enum qca_vendor_attr_get_preferred_freq_list {
  519. QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_INVALID,
  520. /* A 32-unsigned value; the interface type/mode for which the preferred
  521. * frequency list is requested (see enum qca_iface_type for possible
  522. * values); used in GET_PREFERRED_FREQ_LIST command from user-space to
  523. * kernel and in the kernel response back to user-space.
  524. */
  525. QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_IFACE_TYPE,
  526. /* An array of 32-unsigned values; values are frequency (MHz); sent
  527. * from kernel space to user space.
  528. */
  529. QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST,
  530. /* keep last */
  531. QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_AFTER_LAST,
  532. QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_MAX =
  533. QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_AFTER_LAST - 1
  534. };
  535. enum qca_vendor_attr_probable_oper_channel {
  536. QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_INVALID,
  537. /* 32-bit unsigned value; indicates the connection/iface type likely to
  538. * come on this channel (see enum qca_iface_type).
  539. */
  540. QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_IFACE_TYPE,
  541. /* 32-bit unsigned value; the frequency (MHz) of the probable channel */
  542. QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_FREQ,
  543. /* keep last */
  544. QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_AFTER_LAST,
  545. QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_MAX =
  546. QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_AFTER_LAST - 1
  547. };
  548. enum qca_iface_type {
  549. QCA_IFACE_TYPE_STA,
  550. QCA_IFACE_TYPE_AP,
  551. QCA_IFACE_TYPE_P2P_CLIENT,
  552. QCA_IFACE_TYPE_P2P_GO,
  553. QCA_IFACE_TYPE_IBSS,
  554. QCA_IFACE_TYPE_TDLS,
  555. };
  556. enum qca_set_band {
  557. QCA_SETBAND_AUTO,
  558. QCA_SETBAND_5G,
  559. QCA_SETBAND_2G,
  560. };
  561. /**
  562. * enum qca_access_policy - Access control policy
  563. *
  564. * Access control policy is applied on the configured IE
  565. * (QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY_IE).
  566. * To be set with QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY.
  567. *
  568. * @QCA_ACCESS_POLICY_ACCEPT_UNLESS_LISTED: Deny Wi-Fi connections which match
  569. * the specific configuration (IE) set, i.e., allow all the
  570. * connections which do not match the configuration.
  571. * @QCA_ACCESS_POLICY_DENY_UNLESS_LISTED: Accept Wi-Fi connections which match
  572. * the specific configuration (IE) set, i.e., deny all the
  573. * connections which do not match the configuration.
  574. */
  575. enum qca_access_policy {
  576. QCA_ACCESS_POLICY_ACCEPT_UNLESS_LISTED,
  577. QCA_ACCESS_POLICY_DENY_UNLESS_LISTED,
  578. };
  579. /**
  580. * enum qca_vendor_attr_get_tsf: Vendor attributes for TSF capture
  581. * @QCA_WLAN_VENDOR_ATTR_TSF_CMD: enum qca_tsf_operation (u32)
  582. * @QCA_WLAN_VENDOR_ATTR_TSF_TIMER_VALUE: Unsigned 64 bit TSF timer value
  583. * @QCA_WLAN_VENDOR_ATTR_TSF_SOC_TIMER_VALUE: Unsigned 64 bit Synchronized
  584. * SOC timer value at TSF capture
  585. */
  586. enum qca_vendor_attr_tsf_cmd {
  587. QCA_WLAN_VENDOR_ATTR_TSF_INVALID = 0,
  588. QCA_WLAN_VENDOR_ATTR_TSF_CMD,
  589. QCA_WLAN_VENDOR_ATTR_TSF_TIMER_VALUE,
  590. QCA_WLAN_VENDOR_ATTR_TSF_SOC_TIMER_VALUE,
  591. QCA_WLAN_VENDOR_ATTR_TSF_AFTER_LAST,
  592. QCA_WLAN_VENDOR_ATTR_TSF_MAX =
  593. QCA_WLAN_VENDOR_ATTR_TSF_AFTER_LAST - 1
  594. };
  595. /**
  596. * enum qca_tsf_operation: TSF driver commands
  597. * @QCA_TSF_CAPTURE: Initiate TSF Capture
  598. * @QCA_TSF_GET: Get TSF capture value
  599. * @QCA_TSF_SYNC_GET: Initiate TSF capture and return with captured value
  600. */
  601. enum qca_tsf_cmd {
  602. QCA_TSF_CAPTURE,
  603. QCA_TSF_GET,
  604. QCA_TSF_SYNC_GET,
  605. };
  606. /**
  607. * enum qca_vendor_attr_wisa_cmd
  608. * @QCA_WLAN_VENDOR_ATTR_WISA_MODE: WISA mode value (u32)
  609. * WISA setup vendor commands
  610. */
  611. enum qca_vendor_attr_wisa_cmd {
  612. QCA_WLAN_VENDOR_ATTR_WISA_INVALID = 0,
  613. QCA_WLAN_VENDOR_ATTR_WISA_MODE,
  614. QCA_WLAN_VENDOR_ATTR_WISA_AFTER_LAST,
  615. QCA_WLAN_VENDOR_ATTR_WISA_MAX =
  616. QCA_WLAN_VENDOR_ATTR_WISA_AFTER_LAST - 1
  617. };
  618. /* IEEE 802.11 Vendor Specific elements */
  619. /**
  620. * enum qca_vendor_element_id - QCA Vendor Specific element types
  621. *
  622. * These values are used to identify QCA Vendor Specific elements. The
  623. * payload of the element starts with the three octet OUI (OUI_QCA) and
  624. * is followed by a single octet type which is defined by this enum.
  625. *
  626. * @QCA_VENDOR_ELEM_P2P_PREF_CHAN_LIST: P2P preferred channel list.
  627. * This element can be used to specify preference order for supported
  628. * channels. The channels in this list are in preference order (the first
  629. * one has the highest preference) and are described as a pair of
  630. * (global) Operating Class and Channel Number (each one octet) fields.
  631. *
  632. * This extends the standard P2P functionality by providing option to have
  633. * more than one preferred operating channel. When this element is present,
  634. * it replaces the preference indicated in the Operating Channel attribute.
  635. * For supporting other implementations, the Operating Channel attribute is
  636. * expected to be used with the highest preference channel. Similarly, all
  637. * the channels included in this Preferred channel list element are
  638. * expected to be included in the Channel List attribute.
  639. *
  640. * This vendor element may be included in GO Negotiation Request, P2P
  641. * Invitation Request, and Provision Discovery Request frames.
  642. *
  643. * @QCA_VENDOR_ELEM_HE_CAPAB: HE Capabilities element.
  644. * This element can be used for pre-standard publication testing of HE
  645. * before P802.11ax draft assigns the element ID. The payload of this
  646. * vendor specific element is defined by the latest P802.11ax draft.
  647. * Please note that the draft is still work in progress and this element
  648. * payload is subject to change.
  649. *
  650. * @QCA_VENDOR_ELEM_HE_OPER: HE Operation element.
  651. * This element can be used for pre-standard publication testing of HE
  652. * before P802.11ax draft assigns the element ID. The payload of this
  653. * vendor specific element is defined by the latest P802.11ax draft.
  654. * Please note that the draft is still work in progress and this element
  655. * payload is subject to change.
  656. */
  657. enum qca_vendor_element_id {
  658. QCA_VENDOR_ELEM_P2P_PREF_CHAN_LIST = 0,
  659. QCA_VENDOR_ELEM_HE_CAPAB = 1,
  660. QCA_VENDOR_ELEM_HE_OPER = 2,
  661. };
  662. /**
  663. * enum qca_wlan_vendor_attr_scan - Specifies vendor scan attributes
  664. *
  665. * @QCA_WLAN_VENDOR_ATTR_SCAN_IE: IEs that should be included as part of scan
  666. * @QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES: Nested unsigned 32-bit attributes
  667. * with frequencies to be scanned (in MHz)
  668. * @QCA_WLAN_VENDOR_ATTR_SCAN_SSIDS: Nested attribute with SSIDs to be scanned
  669. * @QCA_WLAN_VENDOR_ATTR_SCAN_SUPP_RATES: Nested array attribute of supported
  670. * rates to be included
  671. * @QCA_WLAN_VENDOR_ATTR_SCAN_TX_NO_CCK_RATE: flag used to send probe requests
  672. * at non CCK rate in 2GHz band
  673. * @QCA_WLAN_VENDOR_ATTR_SCAN_FLAGS: Unsigned 32-bit scan flags
  674. * @QCA_WLAN_VENDOR_ATTR_SCAN_COOKIE: Unsigned 64-bit cookie provided by the
  675. * driver for the specific scan request
  676. * @QCA_WLAN_VENDOR_ATTR_SCAN_STATUS: Unsigned 8-bit status of the scan
  677. * request decoded as in enum scan_status
  678. * @QCA_WLAN_VENDOR_ATTR_SCAN_MAC: 6-byte MAC address to use when randomisation
  679. * scan flag is set
  680. * @QCA_WLAN_VENDOR_ATTR_SCAN_MAC_MASK: 6-byte MAC address mask to be used with
  681. * randomisation
  682. */
  683. enum qca_wlan_vendor_attr_scan {
  684. QCA_WLAN_VENDOR_ATTR_SCAN_INVALID_PARAM = 0,
  685. QCA_WLAN_VENDOR_ATTR_SCAN_IE,
  686. QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES,
  687. QCA_WLAN_VENDOR_ATTR_SCAN_SSIDS,
  688. QCA_WLAN_VENDOR_ATTR_SCAN_SUPP_RATES,
  689. QCA_WLAN_VENDOR_ATTR_SCAN_TX_NO_CCK_RATE,
  690. QCA_WLAN_VENDOR_ATTR_SCAN_FLAGS,
  691. QCA_WLAN_VENDOR_ATTR_SCAN_COOKIE,
  692. QCA_WLAN_VENDOR_ATTR_SCAN_STATUS,
  693. QCA_WLAN_VENDOR_ATTR_SCAN_MAC,
  694. QCA_WLAN_VENDOR_ATTR_SCAN_MAC_MASK,
  695. QCA_WLAN_VENDOR_ATTR_SCAN_AFTER_LAST,
  696. QCA_WLAN_VENDOR_ATTR_SCAN_MAX =
  697. QCA_WLAN_VENDOR_ATTR_SCAN_AFTER_LAST - 1
  698. };
  699. /**
  700. * enum scan_status - Specifies the valid values the vendor scan attribute
  701. * QCA_WLAN_VENDOR_ATTR_SCAN_STATUS can take
  702. *
  703. * @VENDOR_SCAN_STATUS_NEW_RESULTS: implies the vendor scan is successful with
  704. * new scan results
  705. * @VENDOR_SCAN_STATUS_ABORTED: implies the vendor scan was aborted in-between
  706. */
  707. enum scan_status {
  708. VENDOR_SCAN_STATUS_NEW_RESULTS,
  709. VENDOR_SCAN_STATUS_ABORTED,
  710. VENDOR_SCAN_STATUS_MAX,
  711. };
  712. /**
  713. * enum qca_vendor_attr_ota_test - Specifies the values for vendor
  714. * command QCA_NL80211_VENDOR_SUBCMD_OTA_TEST
  715. * @QCA_WLAN_VENDOR_ATTR_OTA_TEST_ENABLE: enable ota test
  716. */
  717. enum qca_vendor_attr_ota_test {
  718. QCA_WLAN_VENDOR_ATTR_OTA_TEST_INVALID,
  719. /* 8-bit unsigned value to indicate if OTA test is enabled */
  720. QCA_WLAN_VENDOR_ATTR_OTA_TEST_ENABLE,
  721. /* keep last */
  722. QCA_WLAN_VENDOR_ATTR_OTA_TEST_AFTER_LAST,
  723. QCA_WLAN_VENDOR_ATTR_OTA_TEST_MAX =
  724. QCA_WLAN_VENDOR_ATTR_OTA_TEST_AFTER_LAST - 1
  725. };
  726. /**
  727. * enum qca_vendor_attr_txpower_scale - vendor sub commands index
  728. *
  729. * @QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE: scaling value
  730. */
  731. enum qca_vendor_attr_txpower_scale {
  732. QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_INVALID,
  733. /* 8-bit unsigned value to indicate the scaling of tx power */
  734. QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE,
  735. /* keep last */
  736. QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_AFTER_LAST,
  737. QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_MAX =
  738. QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_AFTER_LAST - 1
  739. };
  740. /**
  741. * enum qca_vendor_attr_txpower_decr_db - Attributes for TX power decrease
  742. *
  743. * These attributes are used with QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_DECR_DB.
  744. */
  745. enum qca_vendor_attr_txpower_decr_db {
  746. QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_INVALID,
  747. /* 8-bit unsigned value to indicate the reduction of TX power in dB for
  748. * a virtual interface. */
  749. QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB,
  750. /* keep last */
  751. QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_AFTER_LAST,
  752. QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_MAX =
  753. QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_AFTER_LAST - 1
  754. };
  755. /* Attributes for data used by
  756. * QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION and
  757. * QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_CONFIGURATION subcommands.
  758. */
  759. enum qca_wlan_vendor_attr_config {
  760. QCA_WLAN_VENDOR_ATTR_CONFIG_INVALID,
  761. /* Unsigned 32-bit value to set the DTIM period.
  762. * Whether the wifi chipset wakes at every dtim beacon or a multiple of
  763. * the DTIM period. If DTIM is set to 3, the STA shall wake up every 3
  764. * DTIM beacons.
  765. */
  766. QCA_WLAN_VENDOR_ATTR_CONFIG_DYNAMIC_DTIM,
  767. /* Unsigned 32-bit value to set the wifi_iface stats averaging factor
  768. * used to calculate statistics like average the TSF offset or average
  769. * number of frame leaked.
  770. * For instance, upon Beacon frame reception:
  771. * current_avg = ((beacon_TSF - TBTT) * factor + previous_avg * (0x10000 - factor) ) / 0x10000
  772. * For instance, when evaluating leaky APs:
  773. * current_avg = ((num frame received within guard time) * factor + previous_avg * (0x10000 - factor)) / 0x10000
  774. */
  775. QCA_WLAN_VENDOR_ATTR_CONFIG_STATS_AVG_FACTOR,
  776. /* Unsigned 32-bit value to configure guard time, i.e., when
  777. * implementing IEEE power management based on frame control PM bit, how
  778. * long the driver waits before shutting down the radio and after
  779. * receiving an ACK frame for a Data frame with PM bit set.
  780. */
  781. QCA_WLAN_VENDOR_ATTR_CONFIG_GUARD_TIME,
  782. /* Unsigned 32-bit value to change the FTM capability dynamically */
  783. QCA_WLAN_VENDOR_ATTR_CONFIG_FINE_TIME_MEASUREMENT,
  784. /* Unsigned 16-bit value to configure maximum TX rate dynamically */
  785. QCA_WLAN_VENDOR_ATTR_CONF_TX_RATE,
  786. /* Unsigned 32-bit value to configure the number of continuous
  787. * Beacon Miss which shall be used by the firmware to penalize
  788. * the RSSI.
  789. */
  790. QCA_WLAN_VENDOR_ATTR_CONFIG_PENALIZE_AFTER_NCONS_BEACON_MISS,
  791. /* Unsigned 8-bit value to configure the channel avoidance indication
  792. * behavior. Firmware to send only one indication and ignore duplicate
  793. * indications when set to avoid multiple Apps wakeups.
  794. */
  795. QCA_WLAN_VENDOR_ATTR_CONFIG_CHANNEL_AVOIDANCE_IND,
  796. /* 8-bit unsigned value to configure the maximum TX MPDU for
  797. * aggregation. */
  798. QCA_WLAN_VENDOR_ATTR_CONFIG_TX_MPDU_AGGREGATION,
  799. /* 8-bit unsigned value to configure the maximum RX MPDU for
  800. * aggregation. */
  801. QCA_WLAN_VENDOR_ATTR_CONFIG_RX_MPDU_AGGREGATION,
  802. /* 8-bit unsigned value to configure the Non aggregrate/11g sw
  803. * retry threshold (0 disable, 31 max). */
  804. QCA_WLAN_VENDOR_ATTR_CONFIG_NON_AGG_RETRY,
  805. /* 8-bit unsigned value to configure the aggregrate sw
  806. * retry threshold (0 disable, 31 max). */
  807. QCA_WLAN_VENDOR_ATTR_CONFIG_AGG_RETRY,
  808. /* 8-bit unsigned value to configure the MGMT frame
  809. * retry threshold (0 disable, 31 max). */
  810. QCA_WLAN_VENDOR_ATTR_CONFIG_MGMT_RETRY,
  811. /* 8-bit unsigned value to configure the CTRL frame
  812. * retry threshold (0 disable, 31 max). */
  813. QCA_WLAN_VENDOR_ATTR_CONFIG_CTRL_RETRY,
  814. /* 8-bit unsigned value to configure the propagation delay for
  815. * 2G/5G band (0~63, units in us) */
  816. QCA_WLAN_VENDOR_ATTR_CONFIG_PROPAGATION_DELAY,
  817. /* Unsigned 32-bit value to configure the number of unicast TX fail
  818. * packet count. The peer is disconnected once this threshold is
  819. * reached. */
  820. QCA_WLAN_VENDOR_ATTR_CONFIG_TX_FAIL_COUNT,
  821. /* Attribute used to set scan default IEs to the driver.
  822. *
  823. * These IEs can be used by scan operations that will be initiated by
  824. * the driver/firmware.
  825. *
  826. * For further scan requests coming to the driver, these IEs should be
  827. * merged with the IEs received along with scan request coming to the
  828. * driver. If a particular IE is present in the scan default IEs but not
  829. * present in the scan request, then that IE should be added to the IEs
  830. * sent in the Probe Request frames for that scan request. */
  831. QCA_WLAN_VENDOR_ATTR_CONFIG_SCAN_DEFAULT_IES,
  832. /* Unsigned 32-bit attribute for generic commands */
  833. QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_COMMAND,
  834. /* Unsigned 32-bit value attribute for generic commands */
  835. QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_VALUE,
  836. /* Unsigned 32-bit data attribute for generic command response */
  837. QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_DATA,
  838. /* Unsigned 32-bit length attribute for
  839. * QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_DATA */
  840. QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_LENGTH,
  841. /* Unsigned 32-bit flags attribute for
  842. * QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_DATA */
  843. QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_FLAGS,
  844. /* Unsigned 32-bit, defining the access policy.
  845. * See enum qca_access_policy. Used with
  846. * QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY_IE_LIST. */
  847. QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY,
  848. /* Sets the list of full set of IEs for which a specific access policy
  849. * has to be applied. Used along with
  850. * QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY to control the access.
  851. * Zero length payload can be used to clear this access constraint. */
  852. QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY_IE_LIST,
  853. /* Unsigned 32-bit, specifies the interface index (netdev) for which the
  854. * corresponding configurations are applied. If the interface index is
  855. * not specified, the configurations are attributed to the respective
  856. * wiphy. */
  857. QCA_WLAN_VENDOR_ATTR_CONFIG_IFINDEX,
  858. /* 8-bit unsigned value to trigger QPower: 1-Enable, 0-Disable */
  859. QCA_WLAN_VENDOR_ATTR_CONFIG_QPOWER,
  860. /* 8-bit unsigned value to configure the driver and below layers to
  861. * ignore the assoc disallowed set by APs while connecting
  862. * 1-Ignore, 0-Don't ignore */
  863. QCA_WLAN_VENDOR_ATTR_CONFIG_IGNORE_ASSOC_DISALLOWED,
  864. /* 32-bit unsigned value to trigger antenna diversity features:
  865. * 1-Enable, 0-Disable */
  866. QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_ENA,
  867. /* 32-bit unsigned value to configure specific chain antenna */
  868. QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_CHAIN,
  869. /* 32-bit unsigned value to trigger cycle selftest
  870. * 1-Enable, 0-Disable */
  871. QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_SELFTEST,
  872. /* 32-bit unsigned to configure the cycle time of selftest
  873. * the unit is micro-second */
  874. QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_SELFTEST_INTVL,
  875. /* keep last */
  876. QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST,
  877. QCA_WLAN_VENDOR_ATTR_CONFIG_MAX =
  878. QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST - 1,
  879. };
  880. /**
  881. * enum qca_wlan_vendor_attr_sap_config - Parameters for AP configuration
  882. */
  883. enum qca_wlan_vendor_attr_sap_config {
  884. QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_INVALID = 0,
  885. /* 1 - reserved for QCA */
  886. /* List of frequencies on which AP is expected to operate.
  887. * This is irrespective of ACS configuration. This list is a priority
  888. * based one and is looked for before the AP is created to ensure the
  889. * best concurrency sessions (avoid MCC and use DBS/SCC) co-exist in
  890. * the system.
  891. */
  892. QCA_WLAN_VENDOR_ATTR_SAP_MANDATORY_FREQUENCY_LIST = 2,
  893. QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_AFTER_LAST,
  894. QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_MAX =
  895. QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_AFTER_LAST - 1,
  896. };
  897. /**
  898. * enum qca_wlan_vendor_attr_sap_conditional_chan_switch - Parameters for AP
  899. * conditional channel switch
  900. */
  901. enum qca_wlan_vendor_attr_sap_conditional_chan_switch {
  902. QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_INVALID = 0,
  903. /* Priority based frequency list (an array of u32 values in host byte
  904. * order) */
  905. QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_FREQ_LIST = 1,
  906. /* Status of the conditional switch (u32).
  907. * 0: Success, Non-zero: Failure
  908. */
  909. QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_STATUS = 2,
  910. QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_AFTER_LAST,
  911. QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_MAX =
  912. QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_AFTER_LAST - 1,
  913. };
  914. /**
  915. * enum qca_wlan_gpio_attr - Parameters for GPIO configuration
  916. */
  917. enum qca_wlan_gpio_attr {
  918. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_INVALID = 0,
  919. /* Unsigned 32-bit attribute for GPIO command */
  920. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND,
  921. /* Unsigned 32-bit attribute for GPIO PIN number to configure */
  922. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_PINNUM,
  923. /* Unsigned 32-bit attribute for GPIO value to configure */
  924. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_VALUE,
  925. /* Unsigned 32-bit attribute for GPIO pull type */
  926. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_PULL_TYPE,
  927. /* Unsigned 32-bit attribute for GPIO interrupt mode */
  928. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_INTR_MODE,
  929. /* keep last */
  930. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_LAST,
  931. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_MAX =
  932. QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_LAST - 1
  933. };
  934. /**
  935. * enum qca_wlan_vendor_attr_get_hw_capability - Wi-Fi hardware capability
  936. */
  937. enum qca_wlan_vendor_attr_get_hw_capability {
  938. QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_INVALID,
  939. /* Antenna isolation
  940. * An attribute used in the response.
  941. * The content of this attribute is encoded in a byte array. Each byte
  942. * value is an antenna isolation value. The array length is the number
  943. * of antennas.
  944. */
  945. QCA_WLAN_VENDOR_ATTR_ANTENNA_ISOLATION,
  946. /* Request HW capability
  947. * An attribute used in the request.
  948. * The content of this attribute is a u32 array for one or more of
  949. * hardware capabilities (attribute IDs) that are being requested. Each
  950. * u32 value has a value from this
  951. * enum qca_wlan_vendor_attr_get_hw_capability
  952. * identifying which capabilities are requested.
  953. */
  954. QCA_WLAN_VENDOR_ATTR_GET_HW_CAPABILITY,
  955. /* keep last */
  956. QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_AFTER_LAST,
  957. QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_MAX =
  958. QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_AFTER_LAST - 1,
  959. };
  960. /**
  961. * enum qca_wlan_vendor_attr_ll_stats_ext - Attributes for MAC layer monitoring
  962. * offload which is an extension for LL_STATS.
  963. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_PERIOD: Monitoring period. Unit in ms.
  964. * If MAC counters do not exceed the threshold, FW will report monitored
  965. * link layer counters periodically as this setting. The first report is
  966. * always triggered by this timer.
  967. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_THRESHOLD: It is a percentage (1-99).
  968. * For each MAC layer counter, FW holds two copies. One is the current value.
  969. * The other is the last report. Once a current counter's increment is larger
  970. * than the threshold, FW will indicate that counter to host even if the
  971. * monitoring timer does not expire.
  972. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_CHG: Peer STA power state change
  973. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TID: TID of MSDU
  974. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NUM_MSDU: Count of MSDU with the same
  975. * failure code.
  976. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_STATUS: TX failure code
  977. * 1: TX packet discarded
  978. * 2: No ACK
  979. * 3: Postpone
  980. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_MAC_ADDRESS: peer MAC address
  981. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_STATE: Peer STA current state
  982. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_GLOBAL: Global threshold.
  983. * Threshold for all monitored parameters. If per counter dedicated threshold
  984. * is not enabled, this threshold will take effect.
  985. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_EVENT_MODE: Indicate what triggers this
  986. * event, PERORID_TIMEOUT == 1, THRESH_EXCEED == 0.
  987. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_ID: interface ID
  988. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ID: peer ID
  989. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BITMAP: bitmap for TX counters
  990. * Bit0: TX counter unit in MSDU
  991. * Bit1: TX counter unit in MPDU
  992. * Bit2: TX counter unit in PPDU
  993. * Bit3: TX counter unit in byte
  994. * Bit4: Dropped MSDUs
  995. * Bit5: Dropped Bytes
  996. * Bit6: MPDU retry counter
  997. * Bit7: MPDU failure counter
  998. * Bit8: PPDU failure counter
  999. * Bit9: MPDU aggregation counter
  1000. * Bit10: MCS counter for ACKed MPDUs
  1001. * Bit11: MCS counter for Failed MPDUs
  1002. * Bit12: TX Delay counter
  1003. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BITMAP: bitmap for RX counters
  1004. * Bit0: MAC RX counter unit in MPDU
  1005. * Bit1: MAC RX counter unit in byte
  1006. * Bit2: PHY RX counter unit in PPDU
  1007. * Bit3: PHY RX counter unit in byte
  1008. * Bit4: Disorder counter
  1009. * Bit5: Retry counter
  1010. * Bit6: Duplication counter
  1011. * Bit7: Discard counter
  1012. * Bit8: MPDU aggregation size counter
  1013. * Bit9: MCS counter
  1014. * Bit10: Peer STA power state change (wake to sleep) counter
  1015. * Bit11: Peer STA power save counter, total time in PS mode
  1016. * Bit12: Probe request counter
  1017. * Bit13: Other management frames counter
  1018. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS_BITMAP: bitmap for CCA
  1019. * Bit0: Idle time
  1020. * Bit1: TX time
  1021. * Bit2: time RX in current bss
  1022. * Bit3: Out of current bss time
  1023. * Bit4: Wireless medium busy time
  1024. * Bit5: RX in bad condition time
  1025. * Bit6: TX in bad condition time
  1026. * Bit7: time wlan card not available
  1027. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_SIGNAL_BITMAP: bitmap for signal
  1028. * Bit0: Per channel SNR counter
  1029. * Bit1: Per channel noise floor counter
  1030. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_NUM: number of peers
  1031. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CHANNEL_NUM: number of channels
  1032. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_AC_RX_NUM: number of RX stats
  1033. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS: per channel BSS CCA stats
  1034. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER: container for per PEER stats
  1035. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MSDU: Number of total TX MSDUs
  1036. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MPDU: Number of total TX MPDUs
  1037. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_PPDU: Number of total TX PPDUs
  1038. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BYTES: bytes of TX data
  1039. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP: Number of dropped TX packets
  1040. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP_BYTES: Bytes dropped
  1041. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_RETRY: waiting time without an ACK
  1042. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_ACK: number of MPDU not-ACKed
  1043. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_BACK: number of PPDU not-ACKed
  1044. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR_NUM:
  1045. * aggregation stats buffer length
  1046. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS_NUM: length of mcs stats
  1047. * buffer for ACKed MPDUs.
  1048. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS_NUM: length of mcs stats
  1049. * buffer for failed MPDUs.
  1050. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_DELAY_ARRAY_SIZE:
  1051. * length of delay stats array.
  1052. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR: TX aggregation stats
  1053. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS: MCS stats for ACKed MPDUs
  1054. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS: MCS stats for failed MPDUs
  1055. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DELAY: tx delay stats
  1056. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU: MPDUs received
  1057. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_BYTES: bytes received
  1058. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU: PPDU received
  1059. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU_BYTES: PPDU bytes received
  1060. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_LOST: packets lost
  1061. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_RETRY: number of RX packets
  1062. * flagged as retransmissions
  1063. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DUP: number of RX packets
  1064. * flagged as duplicated
  1065. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DISCARD: number of RX
  1066. * packets discarded
  1067. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR_NUM: length of RX aggregation
  1068. * stats buffer.
  1069. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS_NUM: length of RX mcs
  1070. * stats buffer.
  1071. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS: RX mcs stats buffer
  1072. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR: aggregation stats buffer
  1073. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_TIMES: times STAs go to sleep
  1074. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_DURATION: STAs' total sleep time
  1075. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PROBE_REQ: number of probe
  1076. * requests received
  1077. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MGMT: number of other mgmt
  1078. * frames received
  1079. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IDLE_TIME: Percentage of idle time
  1080. * there is no TX, nor RX, nor interference.
  1081. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_TIME: percentage of time
  1082. * transmitting packets.
  1083. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_TIME: percentage of time
  1084. * for receiving.
  1085. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BUSY: percentage of time
  1086. * interference detected.
  1087. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BAD: percentage of time
  1088. * receiving packets with errors.
  1089. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BAD: percentage of time
  1090. * TX no-ACK.
  1091. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NO_AVAIL: percentage of time
  1092. * the chip is unable to work in normal conditions.
  1093. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IN_BSS_TIME: percentage of time
  1094. * receiving packets in current BSS.
  1095. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_OUT_BSS_TIME: percentage of time
  1096. * receiving packets not in current BSS.
  1097. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ANT_NUM: number of antennas
  1098. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_SIGNAL:
  1099. * This is a container for per antenna signal stats.
  1100. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_SNR: per antenna SNR value
  1101. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_NF: per antenna NF value
  1102. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_RSSI_BEACON: RSSI of beacon
  1103. * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_SNR_BEACON: SNR of beacon
  1104. */
  1105. enum qca_wlan_vendor_attr_ll_stats_ext {
  1106. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_INVALID = 0,
  1107. /* Attributes for configurations */
  1108. QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_PERIOD,
  1109. QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_THRESHOLD,
  1110. /* Peer STA power state change */
  1111. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_CHG,
  1112. /* TX failure event */
  1113. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TID,
  1114. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NUM_MSDU,
  1115. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_STATUS,
  1116. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_STATE,
  1117. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_MAC_ADDRESS,
  1118. /* MAC counters */
  1119. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_GLOBAL,
  1120. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_EVENT_MODE,
  1121. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_ID,
  1122. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ID,
  1123. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BITMAP,
  1124. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BITMAP,
  1125. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS_BITMAP,
  1126. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_SIGNAL_BITMAP,
  1127. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_NUM,
  1128. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CHANNEL_NUM,
  1129. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS,
  1130. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER,
  1131. /* Sub-attributes for PEER_AC_TX */
  1132. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MSDU,
  1133. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MPDU,
  1134. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_PPDU,
  1135. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BYTES,
  1136. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP,
  1137. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP_BYTES,
  1138. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_RETRY,
  1139. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_ACK,
  1140. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_BACK,
  1141. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR_NUM,
  1142. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS_NUM,
  1143. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS_NUM,
  1144. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR,
  1145. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS,
  1146. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS,
  1147. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_DELAY_ARRAY_SIZE,
  1148. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DELAY,
  1149. /* Sub-attributes for PEER_AC_RX */
  1150. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU,
  1151. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_BYTES,
  1152. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU,
  1153. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU_BYTES,
  1154. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_LOST,
  1155. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_RETRY,
  1156. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DUP,
  1157. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DISCARD,
  1158. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR_NUM,
  1159. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS_NUM,
  1160. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS,
  1161. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR,
  1162. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_TIMES,
  1163. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_DURATION,
  1164. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PROBE_REQ,
  1165. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MGMT,
  1166. /* Sub-attributes for CCA_BSS */
  1167. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IDLE_TIME,
  1168. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_TIME,
  1169. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_TIME,
  1170. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BUSY,
  1171. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BAD,
  1172. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BAD,
  1173. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NO_AVAIL,
  1174. /* sub-attribute for BSS_RX_TIME */
  1175. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IN_BSS_TIME,
  1176. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_OUT_BSS_TIME,
  1177. /* Sub-attributes for PEER_SIGNAL */
  1178. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ANT_NUM,
  1179. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_SIGNAL,
  1180. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_SNR,
  1181. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_NF,
  1182. /* Sub-attributes for IFACE_BSS */
  1183. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_RSSI_BEACON,
  1184. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_SNR_BEACON,
  1185. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_LAST,
  1186. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_MAX =
  1187. QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_LAST - 1
  1188. };
  1189. /* Attributes for FTM commands and events */
  1190. /**
  1191. * enum qca_wlan_vendor_attr_loc_capa - Indoor location capabilities
  1192. *
  1193. * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAGS: Various flags. See
  1194. * enum qca_wlan_vendor_attr_loc_capa_flags.
  1195. * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_SESSIONS: Maximum number
  1196. * of measurement sessions that can run concurrently.
  1197. * Default is one session (no session concurrency).
  1198. * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_PEERS: The total number of unique
  1199. * peers that are supported in running sessions. For example,
  1200. * if the value is 8 and maximum number of sessions is 2, you can
  1201. * have one session with 8 unique peers, or 2 sessions with 4 unique
  1202. * peers each, and so on.
  1203. * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_BURSTS_EXP: Maximum number
  1204. * of bursts per peer, as an exponent (2^value). Default is 0,
  1205. * meaning no multi-burst support.
  1206. * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_MEAS_PER_BURST: Maximum number
  1207. * of measurement exchanges allowed in a single burst.
  1208. * @QCA_WLAN_VENDOR_ATTR_AOA_CAPA_SUPPORTED_TYPES: Supported AOA measurement
  1209. * types. A bit mask (unsigned 32 bit value), each bit corresponds
  1210. * to an AOA type as defined by enum qca_vendor_attr_aoa_type.
  1211. */
  1212. enum qca_wlan_vendor_attr_loc_capa {
  1213. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_INVALID,
  1214. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAGS,
  1215. QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_SESSIONS,
  1216. QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_PEERS,
  1217. QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_BURSTS_EXP,
  1218. QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_MEAS_PER_BURST,
  1219. QCA_WLAN_VENDOR_ATTR_AOA_CAPA_SUPPORTED_TYPES,
  1220. /* keep last */
  1221. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_AFTER_LAST,
  1222. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_MAX =
  1223. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_AFTER_LAST - 1,
  1224. };
  1225. /**
  1226. * enum qca_wlan_vendor_attr_loc_capa_flags: Indoor location capability flags
  1227. *
  1228. * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_RESPONDER: Set if driver
  1229. * can be configured as an FTM responder (for example, an AP that
  1230. * services FTM requests). QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER
  1231. * will be supported if set.
  1232. * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_INITIATOR: Set if driver
  1233. * can run FTM sessions. QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION
  1234. * will be supported if set.
  1235. * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_ASAP: Set if FTM responder
  1236. * supports immediate (ASAP) response.
  1237. * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA: Set if driver supports standalone
  1238. * AOA measurement using QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS.
  1239. * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA_IN_FTM: Set if driver supports
  1240. * requesting AOA measurements as part of an FTM session.
  1241. */
  1242. enum qca_wlan_vendor_attr_loc_capa_flags {
  1243. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_RESPONDER = 1 << 0,
  1244. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_INITIATOR = 1 << 1,
  1245. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_ASAP = 1 << 2,
  1246. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA = 1 << 3,
  1247. QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA_IN_FTM = 1 << 4,
  1248. };
  1249. /**
  1250. * enum qca_wlan_vendor_attr_ftm_peer_info: Information about
  1251. * a single peer in a measurement session.
  1252. *
  1253. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MAC_ADDR: The MAC address of the peer.
  1254. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAGS: Various flags related
  1255. * to measurement. See enum qca_wlan_vendor_attr_ftm_peer_meas_flags.
  1256. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_PARAMS: Nested attribute of
  1257. * FTM measurement parameters, as specified by IEEE P802.11-REVmc/D7.0
  1258. * 9.4.2.167. See enum qca_wlan_vendor_attr_ftm_meas_param for
  1259. * list of supported attributes.
  1260. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_SECURE_TOKEN_ID: Initial token ID for
  1261. * secure measurement.
  1262. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_AOA_BURST_PERIOD: Request AOA
  1263. * measurement every <value> bursts. If 0 or not specified,
  1264. * AOA measurements will be disabled for this peer.
  1265. */
  1266. enum qca_wlan_vendor_attr_ftm_peer_info {
  1267. QCA_WLAN_VENDOR_ATTR_FTM_PEER_INVALID,
  1268. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MAC_ADDR,
  1269. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAGS,
  1270. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_PARAMS,
  1271. QCA_WLAN_VENDOR_ATTR_FTM_PEER_SECURE_TOKEN_ID,
  1272. QCA_WLAN_VENDOR_ATTR_FTM_PEER_AOA_BURST_PERIOD,
  1273. /* keep last */
  1274. QCA_WLAN_VENDOR_ATTR_FTM_PEER_AFTER_LAST,
  1275. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MAX =
  1276. QCA_WLAN_VENDOR_ATTR_FTM_PEER_AFTER_LAST - 1,
  1277. };
  1278. /**
  1279. * enum qca_wlan_vendor_attr_ftm_peer_meas_flags: Measurement request flags,
  1280. * per-peer
  1281. *
  1282. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_ASAP: If set, request
  1283. * immediate (ASAP) response from peer.
  1284. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCI: If set, request
  1285. * LCI report from peer. The LCI report includes the absolute
  1286. * location of the peer in "official" coordinates (similar to GPS).
  1287. * See IEEE P802.11-REVmc/D7.0, 11.24.6.7 for more information.
  1288. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCR: If set, request
  1289. * Location civic report from peer. The LCR includes the location
  1290. * of the peer in free-form format. See IEEE P802.11-REVmc/D7.0,
  1291. * 11.24.6.7 for more information.
  1292. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_SECURE: If set,
  1293. * request a secure measurement.
  1294. * QCA_WLAN_VENDOR_ATTR_FTM_PEER_SECURE_TOKEN_ID must also be provided.
  1295. */
  1296. enum qca_wlan_vendor_attr_ftm_peer_meas_flags {
  1297. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_ASAP = 1 << 0,
  1298. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCI = 1 << 1,
  1299. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCR = 1 << 2,
  1300. QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_SECURE = 1 << 3,
  1301. };
  1302. /**
  1303. * enum qca_wlan_vendor_attr_ftm_meas_param: Measurement parameters
  1304. *
  1305. * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_MEAS_PER_BURST: Number of measurements
  1306. * to perform in a single burst.
  1307. * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_NUM_BURSTS_EXP: Number of bursts to
  1308. * perform, specified as an exponent (2^value).
  1309. * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_DURATION: Duration of burst
  1310. * instance, as specified in IEEE P802.11-REVmc/D7.0, 9.4.2.167.
  1311. * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_PERIOD: Time between bursts,
  1312. * as specified in IEEE P802.11-REVmc/D7.0, 9.4.2.167. Must
  1313. * be larger than QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_DURATION.
  1314. */
  1315. enum qca_wlan_vendor_attr_ftm_meas_param {
  1316. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_INVALID,
  1317. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_MEAS_PER_BURST,
  1318. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_NUM_BURSTS_EXP,
  1319. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_DURATION,
  1320. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_PERIOD,
  1321. /* keep last */
  1322. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_AFTER_LAST,
  1323. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_MAX =
  1324. QCA_WLAN_VENDOR_ATTR_FTM_PARAM_AFTER_LAST - 1,
  1325. };
  1326. /**
  1327. * enum qca_wlan_vendor_attr_ftm_peer_result: Per-peer results
  1328. *
  1329. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MAC_ADDR: MAC address of the reported
  1330. * peer.
  1331. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS: Status of measurement
  1332. * request for this peer.
  1333. * See enum qca_wlan_vendor_attr_ftm_peer_result_status.
  1334. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAGS: Various flags related
  1335. * to measurement results for this peer.
  1336. * See enum qca_wlan_vendor_attr_ftm_peer_result_flags.
  1337. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_VALUE_SECONDS: Specified when
  1338. * request failed and peer requested not to send an additional request
  1339. * for this number of seconds.
  1340. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCI: LCI report when received
  1341. * from peer. In the format specified by IEEE P802.11-REVmc/D7.0,
  1342. * 9.4.2.22.10.
  1343. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCR: Location civic report when
  1344. * received from peer. In the format specified by IEEE P802.11-REVmc/D7.0,
  1345. * 9.4.2.22.13.
  1346. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS_PARAMS: Reported when peer
  1347. * overridden some measurement request parameters. See
  1348. * enum qca_wlan_vendor_attr_ftm_meas_param.
  1349. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AOA_MEAS: AOA measurement
  1350. * for this peer. Same contents as @QCA_WLAN_VENDOR_ATTR_AOA_MEAS_RESULT.
  1351. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS: Array of measurement
  1352. * results. Each entry is a nested attribute defined
  1353. * by enum qca_wlan_vendor_attr_ftm_meas.
  1354. */
  1355. enum qca_wlan_vendor_attr_ftm_peer_result {
  1356. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_INVALID,
  1357. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MAC_ADDR,
  1358. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS,
  1359. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAGS,
  1360. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_VALUE_SECONDS,
  1361. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCI,
  1362. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCR,
  1363. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS_PARAMS,
  1364. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AOA_MEAS,
  1365. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS,
  1366. /* keep last */
  1367. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AFTER_LAST,
  1368. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MAX =
  1369. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AFTER_LAST - 1,
  1370. };
  1371. /**
  1372. * enum qca_wlan_vendor_attr_ftm_peer_result_status
  1373. *
  1374. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_OK: Request sent ok and results
  1375. * will be provided. Peer may have overridden some measurement parameters,
  1376. * in which case overridden parameters will be report by
  1377. * QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS_PARAM attribute.
  1378. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INCAPABLE: Peer is incapable
  1379. * of performing the measurement request. No more results will be sent
  1380. * for this peer in this session.
  1381. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_FAILED: Peer reported request
  1382. * failed, and requested not to send an additional request for number
  1383. * of seconds specified by QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_VALUE_SECONDS
  1384. * attribute.
  1385. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INVALID: Request validation
  1386. * failed. Request was not sent over the air.
  1387. */
  1388. enum qca_wlan_vendor_attr_ftm_peer_result_status {
  1389. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_OK,
  1390. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INCAPABLE,
  1391. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_FAILED,
  1392. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INVALID,
  1393. };
  1394. /**
  1395. * enum qca_wlan_vendor_attr_ftm_peer_result_flags: Various flags
  1396. * for measurement result, per-peer
  1397. *
  1398. * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAG_DONE: If set,
  1399. * measurement completed for this peer. No more results will be reported
  1400. * for this peer in this session.
  1401. */
  1402. enum qca_wlan_vendor_attr_ftm_peer_result_flags {
  1403. QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAG_DONE = 1 << 0,
  1404. };
  1405. /**
  1406. * enum qca_vendor_attr_loc_session_status: Session completion status code
  1407. *
  1408. * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_OK: Session completed
  1409. * successfully.
  1410. * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_ABORTED: Session aborted
  1411. * by request.
  1412. * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_INVALID: Session request
  1413. * was invalid and was not started.
  1414. * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_FAILED: Session had an error
  1415. * and did not complete normally (for example out of resources).
  1416. */
  1417. enum qca_vendor_attr_loc_session_status {
  1418. QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_OK,
  1419. QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_ABORTED,
  1420. QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_INVALID,
  1421. QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_FAILED,
  1422. };
  1423. /**
  1424. * enum qca_wlan_vendor_attr_ftm_meas: Single measurement data
  1425. *
  1426. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T1: Time of departure (TOD) of FTM packet as
  1427. * recorded by responder, in picoseconds.
  1428. * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information.
  1429. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T2: Time of arrival (TOA) of FTM packet at
  1430. * initiator, in picoseconds.
  1431. * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information.
  1432. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T3: TOD of ACK packet as recorded by
  1433. * initiator, in picoseconds.
  1434. * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information.
  1435. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T4: TOA of ACK packet at
  1436. * responder, in picoseconds.
  1437. * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information.
  1438. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_RSSI: RSSI (signal level) as recorded
  1439. * during this measurement exchange. Optional and will be provided if
  1440. * the hardware can measure it.
  1441. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOD_ERR: TOD error reported by
  1442. * responder. Not always provided.
  1443. * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information.
  1444. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOA_ERR: TOA error reported by
  1445. * responder. Not always provided.
  1446. * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information.
  1447. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOD_ERR: TOD error measured by
  1448. * initiator. Not always provided.
  1449. * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information.
  1450. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOA_ERR: TOA error measured by
  1451. * initiator. Not always provided.
  1452. * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information.
  1453. * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PAD: Dummy attribute for padding.
  1454. */
  1455. enum qca_wlan_vendor_attr_ftm_meas {
  1456. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INVALID,
  1457. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T1,
  1458. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T2,
  1459. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T3,
  1460. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T4,
  1461. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_RSSI,
  1462. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOD_ERR,
  1463. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOA_ERR,
  1464. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOD_ERR,
  1465. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOA_ERR,
  1466. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PAD,
  1467. /* keep last */
  1468. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_AFTER_LAST,
  1469. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_MAX =
  1470. QCA_WLAN_VENDOR_ATTR_FTM_MEAS_AFTER_LAST - 1,
  1471. };
  1472. /**
  1473. * enum qca_wlan_vendor_attr_aoa_type - AOA measurement type
  1474. *
  1475. * @QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE: Phase of the strongest
  1476. * CIR (channel impulse response) path for each antenna.
  1477. * @QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE_AMP: Phase and amplitude
  1478. * of the strongest CIR path for each antenna.
  1479. */
  1480. enum qca_wlan_vendor_attr_aoa_type {
  1481. QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE,
  1482. QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE_AMP,
  1483. QCA_WLAN_VENDOR_ATTR_AOA_TYPE_MAX
  1484. };
  1485. /**
  1486. * enum qca_wlan_vendor_attr_encryption_test - Attributes to
  1487. * validate encryption engine
  1488. *
  1489. * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_NEEDS_DECRYPTION: Flag attribute.
  1490. * This will be included if the request is for decryption; if not included,
  1491. * the request is treated as a request for encryption by default.
  1492. * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_CIPHER: Unsigned 32-bit value
  1493. * indicating the key cipher suite. Takes same values as
  1494. * NL80211_ATTR_KEY_CIPHER.
  1495. * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_KEYID: Unsigned 8-bit value
  1496. * Key Id to be used for encryption
  1497. * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_TK: Array of 8-bit values.
  1498. * Key (TK) to be used for encryption/decryption
  1499. * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_PN: Array of 8-bit values.
  1500. * Packet number to be specified for encryption/decryption
  1501. * 6 bytes for TKIP/CCMP/GCMP.
  1502. * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_DATA: Array of 8-bit values
  1503. * representing the 802.11 packet (header + payload + FCS) that
  1504. * needs to be encrypted/decrypted.
  1505. * Encrypted/decrypted response from the driver will also be sent
  1506. * to userspace with the same attribute.
  1507. */
  1508. enum qca_wlan_vendor_attr_encryption_test {
  1509. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_INVALID = 0,
  1510. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_NEEDS_DECRYPTION,
  1511. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_CIPHER,
  1512. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_KEYID,
  1513. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_TK,
  1514. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_PN,
  1515. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_DATA,
  1516. /* keep last */
  1517. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_AFTER_LAST,
  1518. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_MAX =
  1519. QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_AFTER_LAST - 1
  1520. };
  1521. #endif /* QCA_VENDOR_H */