wmi_unified_param.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. /*
  2. * Copyright (c) 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /*
  27. * This file contains the API definitions for the Unified Wireless Module
  28. * Interface (WMI).
  29. */
  30. #ifndef _WMI_UNIFIED_PARAM_H_
  31. #define _WMI_UNIFIED_PARAM_H_
  32. #include "wmi_unified.h"
  33. #define IEEE80211_ADDR_LEN 6 /* size of 802.11 address */
  34. #define WMI_MAC_MAX_SSID_LENGTH 32
  35. #define WMI_SCAN_MAX_NUM_SSID 0x0A
  36. #define mgmt_tx_dl_frm_len 64
  37. #define WMI_SMPS_MASK_LOWER_16BITS 0xFF
  38. #define WMI_SMPS_MASK_UPPER_3BITS 0x7
  39. #define WMI_SMPS_PARAM_VALUE_S 29
  40. /**
  41. * struct vdev_create_params - vdev create cmd parameter
  42. * @if_id: interface id
  43. * @type: interface type
  44. * @subtype: interface subtype
  45. */
  46. struct vdev_create_params {
  47. uint8_t if_id;
  48. uint32_t type;
  49. uint32_t subtype;
  50. };
  51. /**
  52. * struct vdev_delete_params - vdev delete cmd parameter
  53. * @if_id: interface id
  54. */
  55. struct vdev_delete_params {
  56. uint8_t if_id;
  57. };
  58. /**
  59. * struct vdev_start_params - vdev start cmd parameter
  60. * @beacon_intval: beacon intval
  61. * @dtim_period: dtim period
  62. * @max_txpow: max tx power
  63. * @phy_ch_width chan_width: channel width
  64. * @is_dfs: flag to check if dfs enabled
  65. * @vdev_id: vdev id
  66. * @chan: channel no
  67. * @oper_mode: operating mode
  68. * @length: length
  69. * @ssId[32]: ssid
  70. * @hidden_ssid: hidden ssid
  71. * @pmf_enabled: is pmf enabled
  72. * @vht_capable: is vht capable
  73. * @ch_center_freq_seg0: center freq seq 0
  74. * @ch_center_freq_seg1: center freq seq 1
  75. * @ht_capable: is ht capable
  76. * @dfs_pri_multiplier: DFS multiplier
  77. * @dot11_mode: dot11 mode
  78. * @is_half_rate: Indicates half rate channel
  79. * @is_quarter_rate: Indicates quarter rate channel
  80. * @preferred_tx_streams: preferred tx streams
  81. * @preferred_rx_streams: preferred rx streams
  82. */
  83. struct vdev_start_params {
  84. uint32_t beacon_intval;
  85. uint32_t dtim_period;
  86. int32_t max_txpow;
  87. bool is_dfs;
  88. uint8_t vdev_id;
  89. uint8_t chan;
  90. uint8_t oper_mode;
  91. uint8_t length;
  92. uint8_t ssId[32];
  93. uint8_t hidden_ssid;
  94. uint8_t pmf_enabled;
  95. uint8_t vht_capable;
  96. uint8_t ch_center_freq_seg0;
  97. uint8_t ch_center_freq_seg1;
  98. uint8_t ht_capable;
  99. int32_t dfs_pri_multiplier;
  100. uint8_t dot11_mode;
  101. bool is_half_rate;
  102. bool is_quarter_rate;
  103. uint32_t preferred_tx_streams;
  104. uint32_t preferred_rx_streams;
  105. };
  106. /**
  107. * struct vdev_stop_params - vdev stop cmd parameter
  108. * @vdev_id: vdev id
  109. */
  110. struct vdev_stop_params {
  111. uint8_t vdev_id;
  112. };
  113. /**
  114. * struct vdev_up_params - vdev up cmd parameter
  115. * @vdev_id: vdev id
  116. * @assoc_id: association id
  117. */
  118. struct vdev_up_params {
  119. uint8_t vdev_id;
  120. uint16_t assoc_id;
  121. };
  122. /**
  123. * struct vdev_down_params - vdev down cmd parameter
  124. * @vdev_id: vdev id
  125. */
  126. struct vdev_down_params {
  127. uint8_t vdev_id;
  128. };
  129. /**
  130. * struct vdev_set_params - vdev set cmd parameter
  131. * @if_id: vdev id
  132. * @param_id: parameter id
  133. * @param_value: parameter value
  134. */
  135. struct vdev_set_params {
  136. uint32_t if_id;
  137. uint32_t param_id;
  138. uint32_t param_value;
  139. };
  140. /**
  141. * struct peer_delete_params - peer delete cmd parameter
  142. * @vdev_id: vdev id
  143. */
  144. struct peer_delete_params {
  145. uint8_t vdev_id;
  146. };
  147. /**
  148. * struct peer_flush_params - peer flush cmd parameter
  149. * @peer_tid_bitmap: peer tid bitmap
  150. * @vdev_id: vdev id
  151. */
  152. struct peer_flush_params {
  153. uint32_t peer_tid_bitmap;
  154. uint8_t vdev_id;
  155. };
  156. /**
  157. * struct peer_set_params - peer set cmd parameter
  158. * @param_id: parameter id
  159. * @param_value: parameter value
  160. * @vdev_id: vdev id
  161. */
  162. struct peer_set_params {
  163. uint32_t param_id;
  164. uint32_t param_value;
  165. uint32_t vdev_id;
  166. };
  167. /**
  168. * struct peer_create_params - peer create cmd parameter
  169. * @peer_addr: peer mac addr
  170. * @peer_type: peer type
  171. * @vdev_id: vdev id
  172. */
  173. struct peer_create_params {
  174. const uint8_t *peer_addr;
  175. uint32_t peer_type;
  176. uint32_t vdev_id;
  177. };
  178. /**
  179. * struct peer_remove_params - peer remove cmd parameter
  180. * @bssid: bss id
  181. * @vdev_id: vdev id
  182. * @roam_synch_in_progress: flag to indicate if roaming is in progress
  183. */
  184. struct peer_remove_params {
  185. uint8_t *bssid;
  186. uint8_t vdev_id;
  187. bool roam_synch_in_progress;
  188. };
  189. /**
  190. * struct stats_request_params - stats_request cmd parameter
  191. * @stats_id: statistics id
  192. * @vdev_id: vdev id
  193. */
  194. struct stats_request_params {
  195. uint32_t stats_id;
  196. uint32_t vdev_id;
  197. };
  198. /**
  199. * struct green_ap_ps_params - green ap ps cmd parameter
  200. * @value: parameter value
  201. */
  202. struct green_ap_ps_params {
  203. uint32_t value;
  204. };
  205. /**
  206. * struct wow_cmd_params - wow cmd parameter
  207. * @enable: wow enable or disable flag
  208. * @can_suspend_link: flag to indicate if link can be suspended
  209. * @pause_iface_config: interface config
  210. */
  211. struct wow_cmd_params {
  212. bool enable;
  213. bool can_suspend_link;
  214. uint8_t pause_iface_config;
  215. };
  216. /**
  217. * struct packet_enable_params - packet enable cmd parameter
  218. * @vdev_id: vdev id
  219. * @enable: flag to indicate if parameter can be enabled or disabled
  220. */
  221. struct packet_enable_params {
  222. uint8_t vdev_id;
  223. bool enable;
  224. };
  225. /**
  226. * struct suspend_params - suspend cmd parameter
  227. * @disable_target_intr: disable target interrupt
  228. */
  229. struct suspend_params {
  230. uint8_t disable_target_intr;
  231. };
  232. /**
  233. * struct pdev_params - pdev set cmd parameter
  234. * @param_id: parameter id
  235. * @param_value: parameter value
  236. */
  237. struct pdev_params {
  238. uint32_t param_id;
  239. uint32_t param_value;
  240. };
  241. /**
  242. * struct beacon_params - beacon template cmd parameter
  243. * @vdev_id: vdev id
  244. * @tim_ie_offset: tim ie offset
  245. * @tmpl_len: beacon template length
  246. * @tmpl_len_aligned: beacon template alignment
  247. * @frm: beacon template parameter
  248. */
  249. struct beacon_params {
  250. uint8_t vdev_id;
  251. uint32_t tim_ie_offset;
  252. uint32_t tmpl_len;
  253. uint32_t tmpl_len_aligned;
  254. uint8_t *frm;
  255. };
  256. /**
  257. * struct peer_assoc_params - peer assoc cmd parameter
  258. * @peer_macaddr: peer mac address
  259. * @vdev_id: vdev id
  260. * @peer_new_assoc: peer association type
  261. * @peer_associd: peer association id
  262. * @peer_flags: peer flags
  263. * @peer_caps: peer capabalities
  264. * @peer_listen_intval: peer listen interval
  265. * @peer_ht_caps: HT capabalities
  266. * @peer_max_mpdu: 0 : 8k , 1 : 16k, 2 : 32k, 3 : 64k
  267. * @peer_mpdu_density: 3 : 0~7 : 2^(11nAMPDUdensity -4)
  268. * @peer_rate_caps: peer rate capabalities
  269. * @peer_nss: peer nss
  270. * @peer_phymode: peer phymode
  271. * @peer_ht_info: peer HT info
  272. * @peer_legacy_rates: peer legacy rates
  273. * @peer_ht_rates: peer ht rates
  274. * @num_peer_legacy_rates: no of peer legacy rates
  275. * @num_peer_ht_rates: no of peer ht rates
  276. * @rx_max_rate: max rx rates
  277. * @rx_mcs_set: rx mcs
  278. * @tx_max_rate: max tx rates
  279. * @tx_mcs_set: tx mcs
  280. * @vht_capable: VHT capabalities
  281. */
  282. struct peer_assoc_params {
  283. wmi_mac_addr peer_macaddr;
  284. uint32_t vdev_id;
  285. uint32_t peer_new_assoc;
  286. uint32_t peer_associd;
  287. uint32_t peer_flags;
  288. uint32_t peer_caps;
  289. uint32_t peer_listen_intval;
  290. uint32_t peer_ht_caps;
  291. uint32_t peer_max_mpdu;
  292. uint32_t peer_mpdu_density;
  293. uint32_t peer_rate_caps;
  294. uint32_t peer_nss;
  295. uint32_t peer_vht_caps;
  296. uint32_t peer_phymode;
  297. uint32_t peer_ht_info[2];
  298. wmi_rate_set peer_legacy_rates;
  299. wmi_rate_set peer_ht_rates;
  300. uint32_t num_peer_legacy_rates;
  301. uint32_t num_peer_ht_rates;
  302. uint32_t rx_max_rate;
  303. uint32_t rx_mcs_set;
  304. uint32_t tx_max_rate;
  305. uint32_t tx_mcs_set;
  306. uint8_t vht_capable;
  307. };
  308. /**
  309. * struct sta_ps_params - sta ps cmd parameter
  310. * @vdev_id: vdev id
  311. * @param: sta ps paramter
  312. * @value: sta ps parameter value
  313. */
  314. struct sta_ps_params {
  315. uint32_t vdev_id;
  316. uint32_t param;
  317. uint32_t value;
  318. };
  319. /**
  320. * struct ap_ps_params - ap ps cmd parameter
  321. * @vdev_id: vdev id
  322. * @param: ap ps paramter
  323. * @value: ap ps paramter value
  324. */
  325. struct ap_ps_params {
  326. uint32_t vdev_id;
  327. uint32_t param;
  328. uint32_t value;
  329. };
  330. /**
  331. * struct mac_ssid - mac ssid structure
  332. * @length:
  333. * @mac_ssid[WMI_MAC_MAX_SSID_LENGTH]:
  334. */
  335. struct mac_ssid {
  336. uint8_t length;
  337. uint8_t mac_ssid[WMI_MAC_MAX_SSID_LENGTH];
  338. } cdf_packed;
  339. /**
  340. * struct scan_start_params - start scan cmd parameter
  341. * @scan_id: scan id
  342. * @scan_req_id: requeted scan id
  343. * @vdev_id: vdev id
  344. * @scan_priority: scan priority
  345. * @notify_scan_events: flag to indicate if scan to be notified
  346. * @dwell_time_active: active dwell time
  347. * @dwell_time_passive: passive dwell time
  348. * @min_rest_time: min rest time
  349. * @max_rest_time: max rest time
  350. * @repeat_probe_time: repeat probe time
  351. * @probe_spacing_time: probe spacing time
  352. * @idle_time: idle time
  353. * @max_scan_time: max scan time
  354. * @probe_delay: probe delay
  355. * @scan_ctrl_flags: scan control flag
  356. * @burst_duration: burst duration
  357. * @num_chan: no of channel
  358. * @num_bssid: no of bssid
  359. * @num_ssids: no of ssid
  360. * @ie_len: ie length
  361. * @n_probes: no of probe
  362. * @chan_list: channel list
  363. * @ie_len_with_pad: ie length with padding
  364. * @num_ssid: no of ssid
  365. * @sid: pointer to mac_ssid structure
  366. * @uie_fieldOffset: ie field offset
  367. * @mac_add_bytes: mac address bytes
  368. */
  369. struct scan_start_params {
  370. uint32_t scan_id;
  371. uint32_t scan_req_id;
  372. uint32_t vdev_id;
  373. uint32_t scan_priority;
  374. uint32_t notify_scan_events;
  375. uint32_t dwell_time_active;
  376. uint32_t dwell_time_passive;
  377. uint32_t min_rest_time;
  378. uint32_t max_rest_time;
  379. uint32_t repeat_probe_time;
  380. uint32_t probe_spacing_time;
  381. uint32_t idle_time;
  382. uint32_t max_scan_time;
  383. uint32_t probe_delay;
  384. uint32_t scan_ctrl_flags;
  385. uint32_t burst_duration;
  386. uint32_t num_chan;
  387. uint32_t num_bssid;
  388. uint32_t num_ssids;
  389. uint32_t ie_len;
  390. uint32_t n_probes;
  391. uint32_t *chan_list;
  392. uint32_t ie_len_with_pad;
  393. struct mac_ssid ssid[WMI_SCAN_MAX_NUM_SSID];
  394. uint8_t *ie_base;
  395. uint16_t uie_fieldOffset;
  396. uint8_t mac_add_bytes[IEEE80211_ADDR_LEN];
  397. };
  398. /**
  399. * struct scan_stop_params - stop scan cmd parameter
  400. * @requestor: scan requestor
  401. * @scan_id: scan id
  402. * @req_type: scan request type
  403. * @vdev_id: vdev id
  404. */
  405. struct scan_stop_params {
  406. uint32_t requestor;
  407. uint32_t scan_id;
  408. uint32_t req_type;
  409. uint32_t vdev_id;
  410. };
  411. /**
  412. * struct scan_chan_list_params - scan channel list cmd parameter
  413. * @num_scan_chans: no of scan channels
  414. * @chan_info: pointer to wmi channel info
  415. */
  416. struct scan_chan_list_params {
  417. uint8_t num_scan_chans;
  418. wmi_channel *chan_info;
  419. };
  420. /**
  421. * struct fw_hang_params - fw hang command parameters
  422. * @type: 0:unused 1: ASSERT, 2:not respond detect command, 3:simulate ep-full
  423. * @delay_time_ms: 0xffffffff means the simulate will delay for random time (0 ~0xffffffff ms)
  424. */
  425. struct fw_hang_params {
  426. uint32_t type;
  427. uint32_t delay_time_ms;
  428. };
  429. /**
  430. * struct pdev_utf_params - pdev utf command parameters
  431. * @utf_payload:
  432. * @len:
  433. */
  434. struct pdev_utf_params {
  435. uint8_t *utf_payload;
  436. uint32_t len;
  437. };
  438. /**
  439. * struct crash_inject - crash inject command parameters
  440. * @type: crash inject type
  441. * @delay_time_ms: time in milliseconds for FW to delay the crash
  442. */
  443. struct crash_inject {
  444. uint32_t type;
  445. uint32_t delay_time_ms;
  446. };
  447. /**
  448. * struct dbglog_params - fw deboglog command parameters
  449. * @param: command parameter
  450. * @val: parameter value
  451. * @module_id_bitmap: fixed length module id bitmap
  452. * @bitmap_len: module id bitmap length
  453. */
  454. struct dbglog_params {
  455. uint32_t param;
  456. uint32_t val;
  457. uint32_t *module_id_bitmap;
  458. uint32_t bitmap_len;
  459. };
  460. /**
  461. * struct seg_hdr_info - header info
  462. * @len: length
  463. * @msgref: message refrence
  464. * @segmentInfo: segment info
  465. * @pad: padding
  466. */
  467. struct seg_hdr_info {
  468. uint32_t len;
  469. uint32_t msgref;
  470. uint32_t segmentInfo;
  471. uint32_t pad;
  472. };
  473. /**
  474. * struct wmi_mgmt_params - wmi mgmt cmd paramters
  475. * @tx_frame: management tx frame
  476. * @frmLen: frame length
  477. * @vdev_id: vdev id
  478. * @tx_complete_cb: tx download callback handler
  479. * @tx_ota_post_proc_cb: OTA complition handler
  480. * @chanfreq: channel frequency
  481. * @pdata: frame data
  482. * @wmi_desc: command descriptor
  483. */
  484. struct wmi_mgmt_params {
  485. void *tx_frame;
  486. uint16_t frm_len;
  487. uint8_t vdev_id;
  488. void *tx_complete_cb;
  489. void *tx_ota_post_proc_cb;
  490. uint16_t chanfreq;
  491. void *pdata;
  492. struct wmi_desc_t *wmi_desc;
  493. void *cdf_ctx;
  494. };
  495. /**
  496. * struct p2p_ps_params - P2P powersave related params
  497. * @opp_ps: opportunistic power save
  498. * @ctwindow: CT window
  499. * @count: count
  500. * @duration: duration
  501. * @interval: interval
  502. * @single_noa_duration: single shot noa duration
  503. * @ps_selection: power save selection
  504. * @session_id: session id
  505. */
  506. struct p2p_ps_params {
  507. uint8_t opp_ps;
  508. uint32_t ctwindow;
  509. uint8_t count;
  510. uint32_t duration;
  511. uint32_t interval;
  512. uint32_t single_noa_duration;
  513. uint8_t ps_selection;
  514. uint8_t session_id;
  515. };
  516. /**
  517. * struct ta_uapsd_trig_params - uapsd trigger parameter
  518. * @vdevid: vdev id
  519. * @peer_addr: peer address
  520. * @auto_triggerparam: trigger parameters
  521. * @num_ac: no of access category
  522. */
  523. struct sta_uapsd_trig_params {
  524. uint32_t vdevid;
  525. uint8_t peer_addr[IEEE80211_ADDR_LEN];
  526. uint8_t *auto_triggerparam;
  527. uint32_t num_ac;
  528. };
  529. #endif /* _WMI_UNIFIED_PARAM_H_ */