wmi_unified_param.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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 MAX_UTF_EVENT_LENGTH 2048
  35. #define WMI_MAC_MAX_SSID_LENGTH 32
  36. #define WMI_SCAN_MAX_NUM_SSID 0x0A
  37. #define mgmt_tx_dl_frm_len 64
  38. #define WMI_SMPS_MASK_LOWER_16BITS 0xFF
  39. #define WMI_SMPS_MASK_UPPER_3BITS 0x7
  40. #define WMI_SMPS_PARAM_VALUE_S 29
  41. #define MAX_WMI_UTF_LEN 252
  42. /**
  43. * struct vdev_create_params - vdev create cmd parameter
  44. * @if_id: interface id
  45. * @type: interface type
  46. * @subtype: interface subtype
  47. */
  48. struct vdev_create_params {
  49. uint8_t if_id;
  50. uint32_t type;
  51. uint32_t subtype;
  52. };
  53. /**
  54. * struct vdev_delete_params - vdev delete cmd parameter
  55. * @if_id: interface id
  56. */
  57. struct vdev_delete_params {
  58. uint8_t if_id;
  59. };
  60. /**
  61. * struct vdev_start_params - vdev start cmd parameter
  62. * @beacon_intval: beacon intval
  63. * @dtim_period: dtim period
  64. * @max_txpow: max tx power
  65. * @phy_ch_width chan_width: channel width
  66. * @is_dfs: flag to check if dfs enabled
  67. * @vdev_id: vdev id
  68. * @chan: channel no
  69. * @oper_mode: operating mode
  70. * @length: length
  71. * @ssId[32]: ssid
  72. * @hidden_ssid: hidden ssid
  73. * @pmf_enabled: is pmf enabled
  74. * @vht_capable: is vht capable
  75. * @ch_center_freq_seg0: center freq seq 0
  76. * @ch_center_freq_seg1: center freq seq 1
  77. * @ht_capable: is ht capable
  78. * @dfs_pri_multiplier: DFS multiplier
  79. * @dot11_mode: dot11 mode
  80. * @is_half_rate: Indicates half rate channel
  81. * @is_quarter_rate: Indicates quarter rate channel
  82. * @preferred_tx_streams: preferred tx streams
  83. * @preferred_rx_streams: preferred rx streams
  84. */
  85. struct vdev_start_params {
  86. uint32_t beacon_intval;
  87. uint32_t dtim_period;
  88. int32_t max_txpow;
  89. bool is_dfs;
  90. uint8_t vdev_id;
  91. uint8_t chan;
  92. uint8_t oper_mode;
  93. uint8_t length;
  94. uint8_t ssId[32];
  95. uint8_t hidden_ssid;
  96. uint8_t pmf_enabled;
  97. uint8_t vht_capable;
  98. uint8_t ch_center_freq_seg0;
  99. uint8_t ch_center_freq_seg1;
  100. uint8_t ht_capable;
  101. int32_t dfs_pri_multiplier;
  102. uint8_t dot11_mode;
  103. bool is_half_rate;
  104. bool is_quarter_rate;
  105. uint32_t preferred_tx_streams;
  106. uint32_t preferred_rx_streams;
  107. };
  108. /**
  109. * struct vdev_stop_params - vdev stop cmd parameter
  110. * @vdev_id: vdev id
  111. */
  112. struct vdev_stop_params {
  113. uint8_t vdev_id;
  114. };
  115. /**
  116. * struct vdev_up_params - vdev up cmd parameter
  117. * @vdev_id: vdev id
  118. * @assoc_id: association id
  119. */
  120. struct vdev_up_params {
  121. uint8_t vdev_id;
  122. uint16_t assoc_id;
  123. };
  124. /**
  125. * struct vdev_down_params - vdev down cmd parameter
  126. * @vdev_id: vdev id
  127. */
  128. struct vdev_down_params {
  129. uint8_t vdev_id;
  130. };
  131. /**
  132. * struct vdev_set_params - vdev set cmd parameter
  133. * @if_id: vdev id
  134. * @param_id: parameter id
  135. * @param_value: parameter value
  136. */
  137. struct vdev_set_params {
  138. uint32_t if_id;
  139. uint32_t param_id;
  140. uint32_t param_value;
  141. };
  142. /**
  143. * struct peer_delete_params - peer delete cmd parameter
  144. * @vdev_id: vdev id
  145. */
  146. struct peer_delete_params {
  147. uint8_t vdev_id;
  148. };
  149. /**
  150. * struct peer_flush_params - peer flush cmd parameter
  151. * @peer_tid_bitmap: peer tid bitmap
  152. * @vdev_id: vdev id
  153. */
  154. struct peer_flush_params {
  155. uint32_t peer_tid_bitmap;
  156. uint8_t vdev_id;
  157. };
  158. /**
  159. * struct peer_set_params - peer set cmd parameter
  160. * @param_id: parameter id
  161. * @param_value: parameter value
  162. * @vdev_id: vdev id
  163. */
  164. struct peer_set_params {
  165. uint32_t param_id;
  166. uint32_t param_value;
  167. uint32_t vdev_id;
  168. };
  169. /**
  170. * struct peer_create_params - peer create cmd parameter
  171. * @peer_addr: peer mac addr
  172. * @peer_type: peer type
  173. * @vdev_id: vdev id
  174. */
  175. struct peer_create_params {
  176. const uint8_t *peer_addr;
  177. uint32_t peer_type;
  178. uint32_t vdev_id;
  179. };
  180. /**
  181. * struct peer_remove_params - peer remove cmd parameter
  182. * @bssid: bss id
  183. * @vdev_id: vdev id
  184. * @roam_synch_in_progress: flag to indicate if roaming is in progress
  185. */
  186. struct peer_remove_params {
  187. uint8_t *bssid;
  188. uint8_t vdev_id;
  189. bool roam_synch_in_progress;
  190. };
  191. /**
  192. * struct stats_request_params - stats_request cmd parameter
  193. * @stats_id: statistics id
  194. * @vdev_id: vdev id
  195. */
  196. struct stats_request_params {
  197. uint32_t stats_id;
  198. uint32_t vdev_id;
  199. };
  200. /**
  201. * struct green_ap_ps_params - green ap ps cmd parameter
  202. * @value: parameter value
  203. */
  204. struct green_ap_ps_params {
  205. uint32_t value;
  206. };
  207. /**
  208. * struct wow_cmd_params - wow cmd parameter
  209. * @enable: wow enable or disable flag
  210. * @can_suspend_link: flag to indicate if link can be suspended
  211. * @pause_iface_config: interface config
  212. */
  213. struct wow_cmd_params {
  214. bool enable;
  215. bool can_suspend_link;
  216. uint8_t pause_iface_config;
  217. };
  218. /**
  219. * struct packet_enable_params - packet enable cmd parameter
  220. * @vdev_id: vdev id
  221. * @enable: flag to indicate if parameter can be enabled or disabled
  222. */
  223. struct packet_enable_params {
  224. uint8_t vdev_id;
  225. bool enable;
  226. };
  227. /**
  228. * struct suspend_params - suspend cmd parameter
  229. * @disable_target_intr: disable target interrupt
  230. */
  231. struct suspend_params {
  232. uint8_t disable_target_intr;
  233. };
  234. /**
  235. * struct pdev_params - pdev set cmd parameter
  236. * @param_id: parameter id
  237. * @param_value: parameter value
  238. */
  239. struct pdev_params {
  240. uint32_t param_id;
  241. uint32_t param_value;
  242. };
  243. /**
  244. * struct beacon_params - beacon template cmd parameter
  245. * @vdev_id: vdev id
  246. * @tim_ie_offset: tim ie offset
  247. * @tmpl_len: beacon template length
  248. * @tmpl_len_aligned: beacon template alignment
  249. * @frm: beacon template parameter
  250. */
  251. struct beacon_params {
  252. uint8_t vdev_id;
  253. uint32_t tim_ie_offset;
  254. uint32_t tmpl_len;
  255. uint32_t tmpl_len_aligned;
  256. uint8_t *frm;
  257. };
  258. /**
  259. * struct peer_assoc_params - peer assoc cmd parameter
  260. * @peer_macaddr: peer mac address
  261. * @vdev_id: vdev id
  262. * @peer_new_assoc: peer association type
  263. * @peer_associd: peer association id
  264. * @peer_flags: peer flags
  265. * @peer_caps: peer capabalities
  266. * @peer_listen_intval: peer listen interval
  267. * @peer_ht_caps: HT capabalities
  268. * @peer_max_mpdu: 0 : 8k , 1 : 16k, 2 : 32k, 3 : 64k
  269. * @peer_mpdu_density: 3 : 0~7 : 2^(11nAMPDUdensity -4)
  270. * @peer_rate_caps: peer rate capabalities
  271. * @peer_nss: peer nss
  272. * @peer_phymode: peer phymode
  273. * @peer_ht_info: peer HT info
  274. * @peer_legacy_rates: peer legacy rates
  275. * @peer_ht_rates: peer ht rates
  276. * @num_peer_legacy_rates: no of peer legacy rates
  277. * @num_peer_ht_rates: no of peer ht rates
  278. * @rx_max_rate: max rx rates
  279. * @rx_mcs_set: rx mcs
  280. * @tx_max_rate: max tx rates
  281. * @tx_mcs_set: tx mcs
  282. * @vht_capable: VHT capabalities
  283. */
  284. struct peer_assoc_params {
  285. wmi_mac_addr peer_macaddr;
  286. uint32_t vdev_id;
  287. uint32_t peer_new_assoc;
  288. uint32_t peer_associd;
  289. uint32_t peer_flags;
  290. uint32_t peer_caps;
  291. uint32_t peer_listen_intval;
  292. uint32_t peer_ht_caps;
  293. uint32_t peer_max_mpdu;
  294. uint32_t peer_mpdu_density;
  295. uint32_t peer_rate_caps;
  296. uint32_t peer_nss;
  297. uint32_t peer_vht_caps;
  298. uint32_t peer_phymode;
  299. uint32_t peer_ht_info[2];
  300. wmi_rate_set peer_legacy_rates;
  301. wmi_rate_set peer_ht_rates;
  302. uint32_t num_peer_legacy_rates;
  303. uint32_t num_peer_ht_rates;
  304. uint32_t rx_max_rate;
  305. uint32_t rx_mcs_set;
  306. uint32_t tx_max_rate;
  307. uint32_t tx_mcs_set;
  308. uint8_t vht_capable;
  309. };
  310. /**
  311. * struct sta_ps_params - sta ps cmd parameter
  312. * @vdev_id: vdev id
  313. * @param: sta ps paramter
  314. * @value: sta ps parameter value
  315. */
  316. struct sta_ps_params {
  317. uint32_t vdev_id;
  318. uint32_t param;
  319. uint32_t value;
  320. };
  321. /**
  322. * struct ap_ps_params - ap ps cmd parameter
  323. * @vdev_id: vdev id
  324. * @param: ap ps paramter
  325. * @value: ap ps paramter value
  326. */
  327. struct ap_ps_params {
  328. uint32_t vdev_id;
  329. uint32_t param;
  330. uint32_t value;
  331. };
  332. /**
  333. * struct mac_ssid - mac ssid structure
  334. * @length:
  335. * @mac_ssid[WMI_MAC_MAX_SSID_LENGTH]:
  336. */
  337. struct mac_ssid {
  338. uint8_t length;
  339. uint8_t mac_ssid[WMI_MAC_MAX_SSID_LENGTH];
  340. } cdf_packed;
  341. /**
  342. * struct scan_start_params - start scan cmd parameter
  343. * @scan_id: scan id
  344. * @scan_req_id: requeted scan id
  345. * @vdev_id: vdev id
  346. * @scan_priority: scan priority
  347. * @notify_scan_events: flag to indicate if scan to be notified
  348. * @dwell_time_active: active dwell time
  349. * @dwell_time_passive: passive dwell time
  350. * @min_rest_time: min rest time
  351. * @max_rest_time: max rest time
  352. * @repeat_probe_time: repeat probe time
  353. * @probe_spacing_time: probe spacing time
  354. * @idle_time: idle time
  355. * @max_scan_time: max scan time
  356. * @probe_delay: probe delay
  357. * @scan_ctrl_flags: scan control flag
  358. * @burst_duration: burst duration
  359. * @num_chan: no of channel
  360. * @num_bssid: no of bssid
  361. * @num_ssids: no of ssid
  362. * @ie_len: ie length
  363. * @n_probes: no of probe
  364. * @chan_list: channel list
  365. * @ie_len_with_pad: ie length with padding
  366. * @num_ssid: no of ssid
  367. * @sid: pointer to mac_ssid structure
  368. * @uie_fieldOffset: ie field offset
  369. * @mac_add_bytes: mac address bytes
  370. */
  371. struct scan_start_params {
  372. uint32_t scan_id;
  373. uint32_t scan_req_id;
  374. uint32_t vdev_id;
  375. uint32_t scan_priority;
  376. uint32_t notify_scan_events;
  377. uint32_t dwell_time_active;
  378. uint32_t dwell_time_passive;
  379. uint32_t min_rest_time;
  380. uint32_t max_rest_time;
  381. uint32_t repeat_probe_time;
  382. uint32_t probe_spacing_time;
  383. uint32_t idle_time;
  384. uint32_t max_scan_time;
  385. uint32_t probe_delay;
  386. uint32_t scan_ctrl_flags;
  387. uint32_t burst_duration;
  388. uint32_t num_chan;
  389. uint32_t num_bssid;
  390. uint32_t num_ssids;
  391. uint32_t ie_len;
  392. uint32_t n_probes;
  393. uint32_t *chan_list;
  394. uint32_t ie_len_with_pad;
  395. struct mac_ssid ssid[WMI_SCAN_MAX_NUM_SSID];
  396. uint8_t *ie_base;
  397. uint16_t uie_fieldOffset;
  398. uint8_t mac_add_bytes[IEEE80211_ADDR_LEN];
  399. };
  400. /**
  401. * struct scan_stop_params - stop scan cmd parameter
  402. * @requestor: scan requestor
  403. * @scan_id: scan id
  404. * @req_type: scan request type
  405. * @vdev_id: vdev id
  406. */
  407. struct scan_stop_params {
  408. uint32_t requestor;
  409. uint32_t scan_id;
  410. uint32_t req_type;
  411. uint32_t vdev_id;
  412. };
  413. /**
  414. * struct scan_chan_list_params - scan channel list cmd parameter
  415. * @num_scan_chans: no of scan channels
  416. * @chan_info: pointer to wmi channel info
  417. */
  418. struct scan_chan_list_params {
  419. uint8_t num_scan_chans;
  420. wmi_channel *chan_info;
  421. };
  422. /**
  423. * struct fw_hang_params - fw hang command parameters
  424. * @type: 0:unused 1: ASSERT, 2:not respond detect command, 3:simulate ep-full
  425. * @delay_time_ms: 0xffffffff means the simulate will delay for random time (0 ~0xffffffff ms)
  426. */
  427. struct fw_hang_params {
  428. uint32_t type;
  429. uint32_t delay_time_ms;
  430. };
  431. /**
  432. * struct pdev_utf_params - pdev utf command parameters
  433. * @utf_payload:
  434. * @len:
  435. */
  436. struct pdev_utf_params {
  437. uint8_t *utf_payload;
  438. uint32_t len;
  439. };
  440. /**
  441. * struct crash_inject - crash inject command parameters
  442. * @type: crash inject type
  443. * @delay_time_ms: time in milliseconds for FW to delay the crash
  444. */
  445. struct crash_inject {
  446. uint32_t type;
  447. uint32_t delay_time_ms;
  448. };
  449. /**
  450. * struct dbglog_params - fw deboglog command parameters
  451. * @param: command parameter
  452. * @val: parameter value
  453. * @module_id_bitmap: fixed length module id bitmap
  454. * @bitmap_len: module id bitmap length
  455. */
  456. struct dbglog_params {
  457. uint32_t param;
  458. uint32_t val;
  459. uint32_t *module_id_bitmap;
  460. uint32_t bitmap_len;
  461. };
  462. /**
  463. * struct seg_hdr_info - header info
  464. * @len: length
  465. * @msgref: message refrence
  466. * @segmentInfo: segment info
  467. * @pad: padding
  468. */
  469. struct seg_hdr_info {
  470. uint32_t len;
  471. uint32_t msgref;
  472. uint32_t segmentInfo;
  473. uint32_t pad;
  474. };
  475. /**
  476. * struct wmi_mgmt_params - wmi mgmt cmd paramters
  477. * @tx_frame: management tx frame
  478. * @frmLen: frame length
  479. * @vdev_id: vdev id
  480. * @tx_complete_cb: tx download callback handler
  481. * @tx_ota_post_proc_cb: OTA complition handler
  482. * @chanfreq: channel frequency
  483. * @pdata: frame data
  484. * @wmi_desc: command descriptor
  485. */
  486. struct wmi_mgmt_params {
  487. void *tx_frame;
  488. uint16_t frm_len;
  489. uint8_t vdev_id;
  490. void *tx_complete_cb;
  491. void *tx_ota_post_proc_cb;
  492. uint16_t chanfreq;
  493. void *pdata;
  494. struct wmi_desc_t *wmi_desc;
  495. void *cdf_ctx;
  496. };
  497. #endif /* _WMI_UNIFIED_PARAM_H_ */