xref: /wlan-dirver/qca-wifi-host-cmn/wmi/inc/wmi_unified_twt_param.h (revision d78dedc9dd8c4ee677ac1649d1d42f2a7c3cc1b7)
1 /*
2  * Copyright (c) 2018 The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for
5  * any purpose with or without fee is hereby granted, provided that the
6  * above copyright notice and this permission notice appear in all
7  * copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /*
20  * This file contains the API definitions for the TWT WMI APIs.
21  */
22 
23 #ifndef _WMI_UNIFIED_TWT_PARAM_H_
24 #define _WMI_UNIFIED_TWT_PARAM_H_
25 
26 /**
27  * @pdev_id: pdev_id for identifying the MAC.
28  * @sta_cong_timer_ms: STA TWT congestion timer TO value in terms of ms
29  * @mbss_support: Flag indicating if AP TWT feature supported in
30  *                MBSS mode or not.
31  * @default_slot_size: This is the default value for the TWT slot setup
32  *                by AP (units = microseconds)
33  * @congestion_thresh_setup: Minimum congestion required to start setting
34  *                up TWT sessions
35  * @congestion_thresh_teardown: Minimum congestion below which TWT will be
36  *                torn down (in percent of occupied airtime)
37  * @congestion_thresh_critical: Threshold above which TWT will not be active
38  *                (in percent of occupied airtime)
39  * @interference_thresh_teardown: Minimum interference above that TWT
40  *                 will not be active. The interference parameters use an
41  *                 abstract method of evaluating interference.
42  *                 The parameters are in percent, ranging from 0 for no
43  *                 interference, to 100 for interference extreme enough
44  *                 to completely block the signal of interest.
45  * @interference_thresh_setup: Minimum interference below that TWT session
46  *                 can be setup. The interference parameters use an
47  *                 abstract method of evaluating interference.
48  *                 The parameters are in percent, ranging from 0 for no
49  *                 interference, to 100 for interference extreme enough
50  *                 to completely block the signal of interest.
51  * @min_no_sta_setup: Minimum no of STA required to start TWT setup
52  * @min_no_sta_teardown: Minimum no of STA below which TWT will be torn down
53  * @no_of_bcast_mcast_slots: Number of default slot sizes reserved for
54  *                 BCAST/MCAST delivery
55  * @min_no_twt_slots: Minimum no of available slots for TWT to be operational
56  * @max_no_sta_twt: Max no of STA with which TWT is possible
57  *                 (must be <= the wmi_resource_config's twt_ap_sta_count value)
58  *      * The below interval parameters have units of milliseconds.
59  * @mode_check_interval: Interval between two successive check to decide the
60  *                 mode of TWT. (units = milliseconds)
61  * @add_sta_slot_interval: Interval between decisions making to create
62  *                 TWT slots for STAs. (units = milliseconds)
63  * @remove_sta_slot_interval: Inrerval between decisions making to remove TWT
64  *                 slot of STAs. (units = milliseconds)
65  */
66 struct wmi_twt_enable_param {
67 	uint32_t pdev_id;
68 	uint32_t sta_cong_timer_ms;
69 	uint32_t mbss_support;
70 	uint32_t default_slot_size;
71 	uint32_t congestion_thresh_setup;
72 	uint32_t congestion_thresh_teardown;
73 	uint32_t congestion_thresh_critical;
74 	uint32_t interference_thresh_teardown;
75 	uint32_t interference_thresh_setup;
76 	uint32_t min_no_sta_setup;
77 	uint32_t min_no_sta_teardown;
78 	uint32_t no_of_bcast_mcast_slots;
79 	uint32_t min_no_twt_slots;
80 	uint32_t max_no_sta_twt;
81 	uint32_t mode_check_interval;
82 	uint32_t add_sta_slot_interval;
83 	uint32_t remove_sta_slot_interval;
84 };
85 
86 /* status code of enabling TWT
87  * WMI_ENABLE_TWT_STATUS_OK: enabling TWT successfully completed
88  * WMI_ENABLE_TWT_STATUS_ALREADY_ENABLED: TWT already enabled
89  * WMI_ENABLE_TWT_STATUS_NOT_READY: FW not ready for enabling TWT
90  * WMI_ENABLE_TWT_INVALID_PARAM: invalid parameters
91  * WMI_ENABLE_TWT_STATUS_UNKNOWN_ERROR: enabling TWT failed with an
92  *                                      unknown reason
93  */
94 enum WMI_HOST_ENABLE_TWT_STATUS {
95 	WMI_HOST_ENABLE_TWT_STATUS_OK,
96 	WMI_HOST_ENABLE_TWT_STATUS_ALREADY_ENABLED,
97 	WMI_HOST_ENABLE_TWT_STATUS_NOT_READY,
98 	WMI_HOST_ENABLE_TWT_INVALID_PARAM,
99 	WMI_HOST_ENABLE_TWT_STATUS_UNKNOWN_ERROR,
100 };
101 
102 /** struct wmi_twt_enable_complete_event_param:
103  * @pdev_is: pdev_id for identifying the MAC.
104  * @status: From enum WMI_HOST_ENABLE_TWT_STATUS
105  */
106 struct wmi_twt_enable_complete_event_param {
107 	uint32_t pdev_id;
108 	uint32_t status;
109 };
110 
111 /** struct wmi_twt_disable_param:
112  * @pdev_id: pdev_id for identifying the MAC.
113  */
114 struct wmi_twt_disable_param {
115 	uint32_t pdev_id;
116 };
117 
118 /** struct wmi_twt_disable_complete_event:
119  * @pdev_id: pdev_id for identifying the MAC.
120  */
121 struct wmi_twt_disable_complete_event {
122 	uint32_t pdev_id;
123 };
124 
125 /* from IEEE 802.11ah section 9.4.2.200 */
126 enum WMI_HOST_TWT_COMMAND {
127 	WMI_HOST_TWT_COMMAND_REQUEST_TWT    = 0,
128 	WMI_HOST_TWT_COMMAND_SUGGEST_TWT    = 1,
129 	WMI_HOST_TWT_COMMAND_DEMAND_TWT     = 2,
130 	WMI_HOST_TWT_COMMAND_TWT_GROUPING   = 3,
131 	WMI_HOST_TWT_COMMAND_ACCEPT_TWT     = 4,
132 	WMI_HOST_TWT_COMMAND_ALTERNATE_TWT  = 5,
133 	WMI_HOST_TWT_COMMAND_DICTATE_TWT    = 6,
134 	WMI_HOST_TWT_COMMAND_REJECT_TWT     = 7,
135 };
136 
137 /** struct wmi_twt_add_dialog_param -
138  * @vdev_id: VDEV identifier
139  * @peer_macaddr: peer MAC address when vdev is AP VDEV
140  * @dialog_id: diaglog_id (TWT dialog ID)
141  *             This dialog ID must be unique within its vdev.
142  * @wake_intvl_us: TWT Wake Interval in units of us
143  * @wake_intvl_mantis: TWT Wake Interval Mantissa
144  *                 - wake_intvl_mantis must be <= 0xFFFF
145  *                 - wake_intvl_us must be divided evenly by wake_intvl_mantis,
146  *                   i.e., wake_intvl_us % wake_intvl_mantis == 0
147  *                 - the quotient of wake_intvl_us/wake_intvl_mantis must be
148  *                   2 to N-th(0<=N<=31) power,
149  *                   i.e., wake_intvl_us/wake_intvl_mantis == 2^N, 0<=N<=31
150  * @wake_dura_us: TWT Wake Duration in units of us, must be <= 0xFFFF
151  *                wake_dura_us must be divided evenly by 256,
152  *                i.e., wake_dura_us % 256 == 0
153  * @sp_offset_us: this long time after TWT setup the 1st SP will start.
154  * @twt_cmd: cmd from enum WMI_HOST_TWT_COMMAND
155  * @flag_bcast: 0 means Individual TWT,
156  *              1 means Broadcast TWT
157  * @flag_trigger: 0 means non-Trigger-enabled TWT,
158  *                1 means  means Trigger-enabled TWT
159  * @flag_flow_type:  0 means announced TWT,
160  *                   1 means un-announced TWT
161  * @flag_protection: 0 means TWT protection is required,
162  *                   1 means TWT protection is not required
163  */
164 struct wmi_twt_add_dialog_param {
165 	uint32_t vdev_id;
166 	uint8_t  peer_macaddr[6];
167 	uint32_t dialog_id;
168 	uint32_t wake_intvl_us;
169 	uint32_t wake_intvl_mantis;
170 	uint32_t wake_dura_us;
171 	uint32_t sp_offset_us;
172 	enum WMI_HOST_TWT_COMMAND twt_cmd;
173 	uint32_t
174 		flag_bcast:1,
175 		flag_trigger:1,
176 		flag_flow_type:1,
177 		flag_protection:1;
178 };
179 
180 /* enum - status code of adding TWT dialog
181  * WMI_HOST_ADD_TWT_STATUS_OK: adding TWT dialog successfully completed
182  * WMI_HOST_ADD_TWT_STATUS_TWT_NOT_ENABLED: TWT not enabled
183  * WMI_HOST_ADD_TWT_STATUS_USED_DIALOG_ID: TWT dialog ID is already used
184  * WMI_HOST_ADD_TWT_STATUS_INVALID_PARAM: invalid parameters
185  * WMI_HOST_ADD_TWT_STATUS_NOT_READY: FW not ready
186  * WMI_HOST_ADD_TWT_STATUS_NO_RESOURCE: FW resource exhausted
187  * WMI_HOST_ADD_TWT_STATUS_NO_ACK: peer AP/STA did not ACK the
188  *                                 request/response frame
189  * WMI_HOST_ADD_TWT_STATUS_NO_RESPONSE: peer AP did not send the response frame
190  * WMI_HOST_ADD_TWT_STATUS_DENIED: AP did not accept the request
191  * WMI_HOST_ADD_TWT_STATUS_UNKNOWN_ERROR: adding TWT dialog failed with
192  *                                 an unknown reason
193  */
194 enum WMI_HOST_ADD_TWT_STATUS {
195 	WMI_HOST_ADD_TWT_STATUS_OK,
196 	WMI_HOST_ADD_TWT_STATUS_TWT_NOT_ENABLED,
197 	WMI_HOST_ADD_TWT_STATUS_USED_DIALOG_ID,
198 	WMI_HOST_ADD_TWT_STATUS_INVALID_PARAM,
199 	WMI_HOST_ADD_TWT_STATUS_NOT_READY,
200 	WMI_HOST_ADD_TWT_STATUS_NO_RESOURCE,
201 	WMI_HOST_ADD_TWT_STATUS_NO_ACK,
202 	WMI_HOST_ADD_TWT_STATUS_NO_RESPONSE,
203 	WMI_HOST_ADD_TWT_STATUS_DENIED,
204 	WMI_HOST_ADD_TWT_STATUS_UNKNOWN_ERROR,
205 };
206 
207 /** struct wmi_twt_add_dialog_complete_param -
208  * @vdev_id: VDEV identifier
209  * @dialog_id: TWT dialog ID
210  * @status: refer to WMI_HOST_ADD_TWT_STATUS enum
211  */
212 struct wmi_twt_add_dialog_complete_event_param {
213 	uint32_t vdev_id;
214 	uint32_t dialog_id;
215 	uint32_t status;
216 };
217 
218 /** struct wmi_twt_del_dialog_param -
219  * @vdev_id: VDEV identifier
220  * @dialog_id: TWT dialog ID
221  */
222 struct wmi_twt_del_dialog_param {
223 	uint32_t vdev_id;
224 	uint32_t dialog_id;
225 };
226 
227 /* status code of deleting TWT dialog
228  * WMI_HOST_DEL_TWT_STATUS_OK: deleting TWT dialog successfully completed
229  * WMI_HOST_DEL_TWT_STATUS_DIALOG_ID_NOT_EXIST: TWT dialog ID not exists
230  * WMI_HOST_DEL_TWT_STATUS_INVALID_PARAM: invalid parameters
231  * WMI_HOST_DEL_TWT_STATUS_DIALOG_ID_BUSY: FW is in the process of handling
232  *                                    this dialog
233  * WMI_HOST_DEL_TWT_STATUS_NO_RESOURCE: FW resource exhausted
234  * WMI_HOST_DEL_TWT_STATUS_NO_ACK: peer AP/STA did not ACK the request/response
235  *                            frame
236  * WMI_HOST_DEL_TWT_STATUS_UNKNOWN_ERROR: deleting TWT dialog failed with an
237  *                            unknown reason
238  */
239 enum WMI_HOST_DEL_TWT_STATUS {
240 	WMI_HOST_DEL_TWT_STATUS_OK,
241 	WMI_HOST_DEL_TWT_STATUS_DIALOG_ID_NOT_EXIST,
242 	WMI_HOST_DEL_TWT_STATUS_INVALID_PARAM,
243 	WMI_HOST_DEL_TWT_STATUS_DIALOG_ID_BUSY,
244 	WMI_HOST_DEL_TWT_STATUS_NO_RESOURCE,
245 	WMI_HOST_DEL_TWT_STATUS_NO_ACK,
246 	WMI_HOST_DEL_TWT_STATUS_UNKNOWN_ERROR,
247 };
248 
249 /** struct wmi_twt_del_dialog_complete_event_param -
250  * @vdev_id: VDEV identifier
251  * @dialog_id: TWT dialog ID
252  * @status: refer to WMI_HOST_DEL_TWT_STATUS enum
253  */
254 struct wmi_twt_del_dialog_complete_event_param {
255 	uint32_t vdev_id;
256 	uint32_t dialog_id;
257 	uint32_t status;
258 };
259 
260 /** struct wmi_twt_pause_dialog_cmd_param -
261  * @vdev_id: VDEV identifier
262  * @dialog_id: TWT dialog ID
263  */
264 struct wmi_twt_pause_dialog_cmd_param {
265 	uint32_t vdev_id;
266 	uint32_t dialog_id;
267 };
268 
269 /* enum WMI_HOST_PAUSE_TWT_STATUS - status code of pausing TWT dialog
270  * WMI_HOST_PAUSE_TWT_STATUS_OK: pausing TWT dialog successfully completed
271  * WMI_HOST_PAUSE_TWT_STATUS_DIALOG_ID_NOT_EXIST: TWT dialog ID not exists
272  * WMI_HOST_PAUSE_TWT_STATUS_INVALID_PARAM: invalid parameters
273  * WMI_HOST_PAUSE_TWT_STATUS_DIALOG_ID_BUSY: FW is in the process of handling
274  *                          this dialog
275  * WMI_HOST_PAUSE_TWT_STATUS_NO_RESOURCE: FW resource exhausted
276  * WMI_HOST_PAUSE_TWT_STATUS_NO_ACK: peer AP/STA did not ACK the
277  *                          request/response frame
278  * WMI_HOST_PAUSE_TWT_STATUS_UNKNOWN_ERROR: pausing TWT dialog failed with an
279  *                          unknown reason
280  */
281 enum WMI_HOST_PAUSE_TWT_STATUS {
282 	WMI_HOST_PAUSE_TWT_STATUS_OK,
283 	WMI_HOST_PAUSE_TWT_STATUS_DIALOG_ID_NOT_EXIST,
284 	WMI_HOST_PAUSE_TWT_STATUS_INVALID_PARAM,
285 	WMI_HOST_PAUSE_TWT_STATUS_DIALOG_ID_BUSY,
286 	WMI_HOST_PAUSE_TWT_STATUS_NO_RESOURCE,
287 	WMI_HOST_PAUSE_TWT_STATUS_NO_ACK,
288 	WMI_HOST_PAUSE_TWT_STATUS_UNKNOWN_ERROR,
289 };
290 
291 /** struct wmi_twt_pause_dialog_complete_event_param -
292  * @vdev_id: VDEV identifier
293  * @dialog_id: TWT dialog ID
294  * @status: refer to WMI_HOST_PAUSE_TWT_STATUS
295  */
296 struct wmi_twt_pause_dialog_complete_event_param {
297 	uint32_t vdev_id;
298 	uint32_t dialog_id;
299 	uint32_t status;
300 };
301 
302 /** struct wmi_twt_resume_dialog_cmd_param -
303  * @vdev_id: VDEV identifier
304  * @dialog_id: TWT dialog ID
305  * @sp_offset_us: this long time after TWT resumed the 1st SP will start
306  */
307 struct wmi_twt_resume_dialog_cmd_param {
308 	uint32_t vdev_id;
309 	uint32_t dialog_id;
310 	uint32_t sp_offset_us;
311 };
312 
313 /* enum WMI_HOST_RESUME_TWT_STATUS - status code of resuming TWT dialog
314  * WMI_HOST_RESUME_TWT_STATUS_OK: resuming TWT dialog successfully completed
315  * WMI_HOST_RESUME_TWT_STATUS_DIALOG_ID_NOT_EXIST: TWT dialog ID not exists
316  * WMI_HOST_RESUME_TWT_STATUS_INVALID_PARAM: invalid parameters
317  * WMI_HOST_RESUME_TWT_STATUS_DIALOG_ID_BUSY: FW is in the process of handling
318  *                            this dialog
319  * WMI_HOST_RESUME_TWT_STATUS_NOT_PAUSED: dialog not paused currently
320  * WMI_HOST_RESUME_TWT_STATUS_NO_RESOURCE: FW resource exhausted
321  * WMI_HOST_RESUME_TWT_STATUS_NO_ACK: peer AP/STA did not ACK the
322  *                            request/response frame
323  * WMI_HOST_RESUME_TWT_STATUS_UNKNOWN_ERROR: resuming TWT dialog failed with an
324  *                            unknown reason
325  */
326 enum WMI_HOST_RESUME_TWT_STATUS {
327 	WMI_HOST_RESUME_TWT_STATUS_OK,
328 	WMI_HOST_RESUME_TWT_STATUS_DIALOG_ID_NOT_EXIST,
329 	WMI_HOST_RESUME_TWT_STATUS_INVALID_PARAM,
330 	WMI_HOST_RESUME_TWT_STATUS_DIALOG_ID_BUSY,
331 	WMI_HOST_RESUME_TWT_STATUS_NOT_PAUSED,
332 	WMI_HOST_RESUME_TWT_STATUS_NO_RESOURCE,
333 	WMI_HOST_RESUME_TWT_STATUS_NO_ACK,
334 	WMI_HOST_RESUME_TWT_STATUS_UNKNOWN_ERROR,
335 };
336 
337 /** struct wmi_twt_resume_dialog_complete_event_param -
338  * @vdev_id: VDEV identifier
339  * @dialog_id: TWT dialog ID
340  * @status: refer to WMI_HOST_RESUME_TWT_STATUS
341  */
342 struct wmi_twt_resume_dialog_complete_event_param {
343 	uint32_t vdev_id;
344 	uint32_t dialog_id;
345 	uint32_t status;
346 };
347 
348 #endif /* _WMI_UNIFIED_TWT_PARAM_H_ */
349