xref: /linux/drivers/net/wireless/ath/ath12k/qmi.c (revision 816b02e63a759c4458edee142b721ab09c918b3d)
1 // SPDX-License-Identifier: BSD-3-Clause-Clear
2 /*
3  * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved.
4  * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
5  */
6 
7 #include <linux/elf.h>
8 
9 #include "qmi.h"
10 #include "core.h"
11 #include "debug.h"
12 #include <linux/of.h>
13 #include <linux/firmware.h>
14 
15 #define SLEEP_CLOCK_SELECT_INTERNAL_BIT	0x02
16 #define HOST_CSTATE_BIT			0x04
17 #define PLATFORM_CAP_PCIE_GLOBAL_RESET	0x08
18 #define ATH12K_QMI_MAX_CHUNK_SIZE	2097152
19 
20 static const struct qmi_elem_info wlfw_host_mlo_chip_info_s_v01_ei[] = {
21 	{
22 		.data_type      = QMI_UNSIGNED_1_BYTE,
23 		.elem_len       = 1,
24 		.elem_size      = sizeof(u8),
25 		.array_type	= NO_ARRAY,
26 		.tlv_type       = 0,
27 		.offset         = offsetof(struct wlfw_host_mlo_chip_info_s_v01,
28 					   chip_id),
29 	},
30 	{
31 		.data_type      = QMI_UNSIGNED_1_BYTE,
32 		.elem_len       = 1,
33 		.elem_size      = sizeof(u8),
34 		.array_type	= NO_ARRAY,
35 		.tlv_type       = 0,
36 		.offset         = offsetof(struct wlfw_host_mlo_chip_info_s_v01,
37 					   num_local_links),
38 	},
39 	{
40 		.data_type      = QMI_UNSIGNED_1_BYTE,
41 		.elem_len       = QMI_WLFW_MAX_NUM_MLO_LINKS_PER_CHIP_V01,
42 		.elem_size      = sizeof(u8),
43 		.array_type     = STATIC_ARRAY,
44 		.tlv_type       = 0,
45 		.offset         = offsetof(struct wlfw_host_mlo_chip_info_s_v01,
46 					   hw_link_id),
47 	},
48 	{
49 		.data_type      = QMI_UNSIGNED_1_BYTE,
50 		.elem_len       = QMI_WLFW_MAX_NUM_MLO_LINKS_PER_CHIP_V01,
51 		.elem_size      = sizeof(u8),
52 		.array_type     = STATIC_ARRAY,
53 		.tlv_type       = 0,
54 		.offset         = offsetof(struct wlfw_host_mlo_chip_info_s_v01,
55 					   valid_mlo_link_id),
56 	},
57 	{
58 		.data_type      = QMI_EOTI,
59 		.array_type	= NO_ARRAY,
60 		.tlv_type       = QMI_COMMON_TLV_TYPE,
61 	},
62 };
63 
64 static const struct qmi_elem_info qmi_wlanfw_host_cap_req_msg_v01_ei[] = {
65 	{
66 		.data_type	= QMI_OPT_FLAG,
67 		.elem_len	= 1,
68 		.elem_size	= sizeof(u8),
69 		.array_type	= NO_ARRAY,
70 		.tlv_type	= 0x10,
71 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
72 					   num_clients_valid),
73 	},
74 	{
75 		.data_type	= QMI_UNSIGNED_4_BYTE,
76 		.elem_len	= 1,
77 		.elem_size	= sizeof(u32),
78 		.array_type	= NO_ARRAY,
79 		.tlv_type	= 0x10,
80 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
81 					   num_clients),
82 	},
83 	{
84 		.data_type	= QMI_OPT_FLAG,
85 		.elem_len	= 1,
86 		.elem_size	= sizeof(u8),
87 		.array_type	= NO_ARRAY,
88 		.tlv_type	= 0x11,
89 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
90 					   wake_msi_valid),
91 	},
92 	{
93 		.data_type	= QMI_UNSIGNED_4_BYTE,
94 		.elem_len	= 1,
95 		.elem_size	= sizeof(u32),
96 		.array_type	= NO_ARRAY,
97 		.tlv_type	= 0x11,
98 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
99 					   wake_msi),
100 	},
101 	{
102 		.data_type	= QMI_OPT_FLAG,
103 		.elem_len	= 1,
104 		.elem_size	= sizeof(u8),
105 		.array_type	= NO_ARRAY,
106 		.tlv_type	= 0x12,
107 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
108 					   gpios_valid),
109 	},
110 	{
111 		.data_type	= QMI_DATA_LEN,
112 		.elem_len	= 1,
113 		.elem_size	= sizeof(u8),
114 		.array_type	= NO_ARRAY,
115 		.tlv_type	= 0x12,
116 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
117 					   gpios_len),
118 	},
119 	{
120 		.data_type	= QMI_UNSIGNED_4_BYTE,
121 		.elem_len	= QMI_WLFW_MAX_NUM_GPIO_V01,
122 		.elem_size	= sizeof(u32),
123 		.array_type	= VAR_LEN_ARRAY,
124 		.tlv_type	= 0x12,
125 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
126 					   gpios),
127 	},
128 	{
129 		.data_type	= QMI_OPT_FLAG,
130 		.elem_len	= 1,
131 		.elem_size	= sizeof(u8),
132 		.array_type	= NO_ARRAY,
133 		.tlv_type	= 0x13,
134 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
135 					   nm_modem_valid),
136 	},
137 	{
138 		.data_type	= QMI_UNSIGNED_1_BYTE,
139 		.elem_len	= 1,
140 		.elem_size	= sizeof(u8),
141 		.array_type	= NO_ARRAY,
142 		.tlv_type	= 0x13,
143 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
144 					   nm_modem),
145 	},
146 	{
147 		.data_type	= QMI_OPT_FLAG,
148 		.elem_len	= 1,
149 		.elem_size	= sizeof(u8),
150 		.array_type	= NO_ARRAY,
151 		.tlv_type	= 0x14,
152 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
153 					   bdf_support_valid),
154 	},
155 	{
156 		.data_type	= QMI_UNSIGNED_1_BYTE,
157 		.elem_len	= 1,
158 		.elem_size	= sizeof(u8),
159 		.array_type	= NO_ARRAY,
160 		.tlv_type	= 0x14,
161 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
162 					   bdf_support),
163 	},
164 	{
165 		.data_type	= QMI_OPT_FLAG,
166 		.elem_len	= 1,
167 		.elem_size	= sizeof(u8),
168 		.array_type	= NO_ARRAY,
169 		.tlv_type	= 0x15,
170 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
171 					   bdf_cache_support_valid),
172 	},
173 	{
174 		.data_type	= QMI_UNSIGNED_1_BYTE,
175 		.elem_len	= 1,
176 		.elem_size	= sizeof(u8),
177 		.array_type	= NO_ARRAY,
178 		.tlv_type	= 0x15,
179 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
180 					   bdf_cache_support),
181 	},
182 	{
183 		.data_type	= QMI_OPT_FLAG,
184 		.elem_len	= 1,
185 		.elem_size	= sizeof(u8),
186 		.array_type	= NO_ARRAY,
187 		.tlv_type	= 0x16,
188 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
189 					   m3_support_valid),
190 	},
191 	{
192 		.data_type	= QMI_UNSIGNED_1_BYTE,
193 		.elem_len	= 1,
194 		.elem_size	= sizeof(u8),
195 		.array_type	= NO_ARRAY,
196 		.tlv_type	= 0x16,
197 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
198 					   m3_support),
199 	},
200 	{
201 		.data_type	= QMI_OPT_FLAG,
202 		.elem_len	= 1,
203 		.elem_size	= sizeof(u8),
204 		.array_type	= NO_ARRAY,
205 		.tlv_type	= 0x17,
206 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
207 					   m3_cache_support_valid),
208 	},
209 	{
210 		.data_type	= QMI_UNSIGNED_1_BYTE,
211 		.elem_len	= 1,
212 		.elem_size	= sizeof(u8),
213 		.array_type	= NO_ARRAY,
214 		.tlv_type	= 0x17,
215 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
216 					   m3_cache_support),
217 	},
218 	{
219 		.data_type	= QMI_OPT_FLAG,
220 		.elem_len	= 1,
221 		.elem_size	= sizeof(u8),
222 		.array_type	= NO_ARRAY,
223 		.tlv_type	= 0x18,
224 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
225 					   cal_filesys_support_valid),
226 	},
227 	{
228 		.data_type	= QMI_UNSIGNED_1_BYTE,
229 		.elem_len	= 1,
230 		.elem_size	= sizeof(u8),
231 		.array_type	= NO_ARRAY,
232 		.tlv_type	= 0x18,
233 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
234 					   cal_filesys_support),
235 	},
236 	{
237 		.data_type	= QMI_OPT_FLAG,
238 		.elem_len	= 1,
239 		.elem_size	= sizeof(u8),
240 		.array_type	= NO_ARRAY,
241 		.tlv_type	= 0x19,
242 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
243 					   cal_cache_support_valid),
244 	},
245 	{
246 		.data_type	= QMI_UNSIGNED_1_BYTE,
247 		.elem_len	= 1,
248 		.elem_size	= sizeof(u8),
249 		.array_type	= NO_ARRAY,
250 		.tlv_type	= 0x19,
251 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
252 					   cal_cache_support),
253 	},
254 	{
255 		.data_type	= QMI_OPT_FLAG,
256 		.elem_len	= 1,
257 		.elem_size	= sizeof(u8),
258 		.array_type	= NO_ARRAY,
259 		.tlv_type	= 0x1A,
260 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
261 					   cal_done_valid),
262 	},
263 	{
264 		.data_type	= QMI_UNSIGNED_1_BYTE,
265 		.elem_len	= 1,
266 		.elem_size	= sizeof(u8),
267 		.array_type	= NO_ARRAY,
268 		.tlv_type	= 0x1A,
269 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
270 					   cal_done),
271 	},
272 	{
273 		.data_type	= QMI_OPT_FLAG,
274 		.elem_len	= 1,
275 		.elem_size	= sizeof(u8),
276 		.array_type	= NO_ARRAY,
277 		.tlv_type	= 0x1B,
278 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
279 					   mem_bucket_valid),
280 	},
281 	{
282 		.data_type	= QMI_UNSIGNED_4_BYTE,
283 		.elem_len	= 1,
284 		.elem_size	= sizeof(u32),
285 		.array_type	= NO_ARRAY,
286 		.tlv_type	= 0x1B,
287 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
288 					   mem_bucket),
289 	},
290 	{
291 		.data_type	= QMI_OPT_FLAG,
292 		.elem_len	= 1,
293 		.elem_size	= sizeof(u8),
294 		.array_type	= NO_ARRAY,
295 		.tlv_type	= 0x1C,
296 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
297 					   mem_cfg_mode_valid),
298 	},
299 	{
300 		.data_type	= QMI_UNSIGNED_1_BYTE,
301 		.elem_len	= 1,
302 		.elem_size	= sizeof(u8),
303 		.array_type	= NO_ARRAY,
304 		.tlv_type	= 0x1C,
305 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
306 					   mem_cfg_mode),
307 	},
308 	{
309 		.data_type	= QMI_OPT_FLAG,
310 		.elem_len	= 1,
311 		.elem_size	= sizeof(u8),
312 		.array_type	= NO_ARRAY,
313 		.tlv_type	= 0x1D,
314 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
315 					   cal_duration_valid),
316 	},
317 	{
318 		.data_type	= QMI_UNSIGNED_2_BYTE,
319 		.elem_len	= 1,
320 		.elem_size	= sizeof(u16),
321 		.array_type	= NO_ARRAY,
322 		.tlv_type	= 0x1D,
323 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
324 					   cal_duraiton),
325 	},
326 	{
327 		.data_type	= QMI_OPT_FLAG,
328 		.elem_len	= 1,
329 		.elem_size	= sizeof(u8),
330 		.array_type	= NO_ARRAY,
331 		.tlv_type	= 0x1E,
332 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
333 					   platform_name_valid),
334 	},
335 	{
336 		.data_type	= QMI_STRING,
337 		.elem_len	= QMI_WLANFW_MAX_PLATFORM_NAME_LEN_V01 + 1,
338 		.elem_size	= sizeof(char),
339 		.array_type	= NO_ARRAY,
340 		.tlv_type	= 0x1E,
341 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
342 					   platform_name),
343 	},
344 	{
345 		.data_type	= QMI_OPT_FLAG,
346 		.elem_len	= 1,
347 		.elem_size	= sizeof(u8),
348 		.array_type	= NO_ARRAY,
349 		.tlv_type	= 0x1F,
350 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
351 					   ddr_range_valid),
352 	},
353 	{
354 		.data_type	= QMI_STRUCT,
355 		.elem_len	= QMI_WLANFW_MAX_HOST_DDR_RANGE_SIZE_V01,
356 		.elem_size	= sizeof(struct qmi_wlanfw_host_ddr_range),
357 		.array_type	= STATIC_ARRAY,
358 		.tlv_type	= 0x1F,
359 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
360 					   ddr_range),
361 	},
362 	{
363 		.data_type	= QMI_OPT_FLAG,
364 		.elem_len	= 1,
365 		.elem_size	= sizeof(u8),
366 		.array_type	= NO_ARRAY,
367 		.tlv_type	= 0x20,
368 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
369 					   host_build_type_valid),
370 	},
371 	{
372 		.data_type	= QMI_SIGNED_4_BYTE_ENUM,
373 		.elem_len	= 1,
374 		.elem_size	= sizeof(enum qmi_wlanfw_host_build_type),
375 		.array_type	= NO_ARRAY,
376 		.tlv_type	= 0x20,
377 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
378 					   host_build_type),
379 	},
380 	{
381 		.data_type	= QMI_OPT_FLAG,
382 		.elem_len	= 1,
383 		.elem_size	= sizeof(u8),
384 		.array_type	= NO_ARRAY,
385 		.tlv_type	= 0x21,
386 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
387 					   mlo_capable_valid),
388 	},
389 	{
390 		.data_type	= QMI_UNSIGNED_1_BYTE,
391 		.elem_len	= 1,
392 		.elem_size	= sizeof(u8),
393 		.array_type	= NO_ARRAY,
394 		.tlv_type	= 0x21,
395 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
396 					   mlo_capable),
397 	},
398 	{
399 		.data_type	= QMI_OPT_FLAG,
400 		.elem_len	= 1,
401 		.elem_size	= sizeof(u8),
402 		.array_type	= NO_ARRAY,
403 		.tlv_type	= 0x22,
404 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
405 					   mlo_chip_id_valid),
406 	},
407 	{
408 		.data_type	= QMI_UNSIGNED_2_BYTE,
409 		.elem_len	= 1,
410 		.elem_size	= sizeof(u16),
411 		.array_type	= NO_ARRAY,
412 		.tlv_type	= 0x22,
413 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
414 					   mlo_chip_id),
415 	},
416 	{
417 		.data_type	= QMI_OPT_FLAG,
418 		.elem_len	= 1,
419 		.elem_size	= sizeof(u8),
420 		.array_type	= NO_ARRAY,
421 		.tlv_type	= 0x23,
422 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
423 					   mlo_group_id_valid),
424 	},
425 	{
426 		.data_type	= QMI_UNSIGNED_1_BYTE,
427 		.elem_len	= 1,
428 		.elem_size	= sizeof(u8),
429 		.array_type	= NO_ARRAY,
430 		.tlv_type	= 0x23,
431 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
432 					   mlo_group_id),
433 	},
434 	{
435 		.data_type	= QMI_OPT_FLAG,
436 		.elem_len	= 1,
437 		.elem_size	= sizeof(u8),
438 		.array_type	= NO_ARRAY,
439 		.tlv_type	= 0x24,
440 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
441 					   max_mlo_peer_valid),
442 	},
443 	{
444 		.data_type	= QMI_UNSIGNED_2_BYTE,
445 		.elem_len	= 1,
446 		.elem_size	= sizeof(u16),
447 		.array_type	= NO_ARRAY,
448 		.tlv_type	= 0x24,
449 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
450 					   max_mlo_peer),
451 	},
452 	{
453 		.data_type	= QMI_OPT_FLAG,
454 		.elem_len	= 1,
455 		.elem_size	= sizeof(u8),
456 		.array_type	= NO_ARRAY,
457 		.tlv_type	= 0x25,
458 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
459 					   mlo_num_chips_valid),
460 	},
461 	{
462 		.data_type	= QMI_UNSIGNED_1_BYTE,
463 		.elem_len	= 1,
464 		.elem_size	= sizeof(u8),
465 		.array_type	= NO_ARRAY,
466 		.tlv_type	= 0x25,
467 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
468 					   mlo_num_chips),
469 	},
470 	{
471 		.data_type	= QMI_OPT_FLAG,
472 		.elem_len	= 1,
473 		.elem_size	= sizeof(u8),
474 		.array_type	= NO_ARRAY,
475 		.tlv_type	= 0x26,
476 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
477 					   mlo_chip_info_valid),
478 	},
479 	{
480 		.data_type	= QMI_STRUCT,
481 		.elem_len	= QMI_WLFW_MAX_NUM_MLO_CHIPS_V01,
482 		.elem_size	= sizeof(struct wlfw_host_mlo_chip_info_s_v01),
483 		.array_type	= STATIC_ARRAY,
484 		.tlv_type	= 0x26,
485 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
486 					   mlo_chip_info),
487 		.ei_array	= wlfw_host_mlo_chip_info_s_v01_ei,
488 	},
489 	{
490 		.data_type	= QMI_OPT_FLAG,
491 		.elem_len	= 1,
492 		.elem_size	= sizeof(u8),
493 		.array_type	= NO_ARRAY,
494 		.tlv_type	= 0x27,
495 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
496 					   feature_list_valid),
497 	},
498 	{
499 		.data_type	= QMI_UNSIGNED_8_BYTE,
500 		.elem_len	= 1,
501 		.elem_size	= sizeof(u64),
502 		.array_type	= NO_ARRAY,
503 		.tlv_type	= 0x27,
504 		.offset		= offsetof(struct qmi_wlanfw_host_cap_req_msg_v01,
505 					   feature_list),
506 	},
507 	{
508 		.data_type	= QMI_EOTI,
509 		.array_type	= NO_ARRAY,
510 		.tlv_type	= QMI_COMMON_TLV_TYPE,
511 	},
512 };
513 
514 static const struct qmi_elem_info qmi_wlanfw_host_cap_resp_msg_v01_ei[] = {
515 	{
516 		.data_type	= QMI_STRUCT,
517 		.elem_len	= 1,
518 		.elem_size	= sizeof(struct qmi_response_type_v01),
519 		.array_type	= NO_ARRAY,
520 		.tlv_type	= 0x02,
521 		.offset		= offsetof(struct qmi_wlanfw_host_cap_resp_msg_v01, resp),
522 		.ei_array	= qmi_response_type_v01_ei,
523 	},
524 	{
525 		.data_type	= QMI_EOTI,
526 		.array_type	= NO_ARRAY,
527 		.tlv_type	= QMI_COMMON_TLV_TYPE,
528 	},
529 };
530 
531 static const struct qmi_elem_info qmi_wlanfw_phy_cap_req_msg_v01_ei[] = {
532 	{
533 		.data_type	= QMI_EOTI,
534 		.array_type	= NO_ARRAY,
535 		.tlv_type	= QMI_COMMON_TLV_TYPE,
536 	},
537 };
538 
539 static const struct qmi_elem_info qmi_wlanfw_phy_cap_resp_msg_v01_ei[] = {
540 	{
541 		.data_type	= QMI_STRUCT,
542 		.elem_len	= 1,
543 		.elem_size	= sizeof(struct qmi_response_type_v01),
544 		.array_type	= NO_ARRAY,
545 		.tlv_type	= 0x02,
546 		.offset		= offsetof(struct qmi_wlanfw_phy_cap_resp_msg_v01, resp),
547 		.ei_array	= qmi_response_type_v01_ei,
548 	},
549 	{
550 		.data_type	= QMI_OPT_FLAG,
551 		.elem_len	= 1,
552 		.elem_size	= sizeof(u8),
553 		.array_type	= NO_ARRAY,
554 		.tlv_type	= 0x10,
555 		.offset		= offsetof(struct qmi_wlanfw_phy_cap_resp_msg_v01,
556 					   num_phy_valid),
557 	},
558 	{
559 		.data_type	= QMI_UNSIGNED_1_BYTE,
560 		.elem_len	= 1,
561 		.elem_size	= sizeof(u8),
562 		.array_type	= NO_ARRAY,
563 		.tlv_type	= 0x10,
564 		.offset		= offsetof(struct qmi_wlanfw_phy_cap_resp_msg_v01,
565 					   num_phy),
566 	},
567 	{
568 		.data_type	= QMI_OPT_FLAG,
569 		.elem_len	= 1,
570 		.elem_size	= sizeof(u8),
571 		.array_type	= NO_ARRAY,
572 		.tlv_type	= 0x11,
573 		.offset		= offsetof(struct qmi_wlanfw_phy_cap_resp_msg_v01,
574 					   board_id_valid),
575 	},
576 	{
577 		.data_type	= QMI_UNSIGNED_4_BYTE,
578 		.elem_len	= 1,
579 		.elem_size	= sizeof(u32),
580 		.array_type	= NO_ARRAY,
581 		.tlv_type	= 0x11,
582 		.offset		= offsetof(struct qmi_wlanfw_phy_cap_resp_msg_v01,
583 					   board_id),
584 	},
585 	{
586 		.data_type      = QMI_OPT_FLAG,
587 		.elem_len       = 1,
588 		.elem_size      = sizeof(u8),
589 		.array_type     = NO_ARRAY,
590 		.tlv_type       = 0x13,
591 		.offset         = offsetof(struct qmi_wlanfw_phy_cap_resp_msg_v01,
592 					   single_chip_mlo_support_valid),
593 	},
594 	{
595 		.data_type      = QMI_UNSIGNED_1_BYTE,
596 		.elem_len       = 1,
597 		.elem_size      = sizeof(u8),
598 		.array_type     = NO_ARRAY,
599 		.tlv_type       = 0x13,
600 		.offset         = offsetof(struct qmi_wlanfw_phy_cap_resp_msg_v01,
601 					   single_chip_mlo_support),
602 	},
603 	{
604 		.data_type	= QMI_EOTI,
605 		.array_type	= NO_ARRAY,
606 		.tlv_type	= QMI_COMMON_TLV_TYPE,
607 	},
608 };
609 
610 static const struct qmi_elem_info qmi_wlanfw_ind_register_req_msg_v01_ei[] = {
611 	{
612 		.data_type	= QMI_OPT_FLAG,
613 		.elem_len	= 1,
614 		.elem_size	= sizeof(u8),
615 		.array_type	= NO_ARRAY,
616 		.tlv_type	= 0x10,
617 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
618 					   fw_ready_enable_valid),
619 	},
620 	{
621 		.data_type	= QMI_UNSIGNED_1_BYTE,
622 		.elem_len	= 1,
623 		.elem_size	= sizeof(u8),
624 		.array_type	= NO_ARRAY,
625 		.tlv_type	= 0x10,
626 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
627 					   fw_ready_enable),
628 	},
629 	{
630 		.data_type	= QMI_OPT_FLAG,
631 		.elem_len	= 1,
632 		.elem_size	= sizeof(u8),
633 		.array_type	= NO_ARRAY,
634 		.tlv_type	= 0x11,
635 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
636 					   initiate_cal_download_enable_valid),
637 	},
638 	{
639 		.data_type	= QMI_UNSIGNED_1_BYTE,
640 		.elem_len	= 1,
641 		.elem_size	= sizeof(u8),
642 		.array_type	= NO_ARRAY,
643 		.tlv_type	= 0x11,
644 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
645 					   initiate_cal_download_enable),
646 	},
647 	{
648 		.data_type	= QMI_OPT_FLAG,
649 		.elem_len	= 1,
650 		.elem_size	= sizeof(u8),
651 		.array_type	= NO_ARRAY,
652 		.tlv_type	= 0x12,
653 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
654 					   initiate_cal_update_enable_valid),
655 	},
656 	{
657 		.data_type	= QMI_UNSIGNED_1_BYTE,
658 		.elem_len	= 1,
659 		.elem_size	= sizeof(u8),
660 		.array_type	= NO_ARRAY,
661 		.tlv_type	= 0x12,
662 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
663 					   initiate_cal_update_enable),
664 	},
665 	{
666 		.data_type	= QMI_OPT_FLAG,
667 		.elem_len	= 1,
668 		.elem_size	= sizeof(u8),
669 		.array_type	= NO_ARRAY,
670 		.tlv_type	= 0x13,
671 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
672 					   msa_ready_enable_valid),
673 	},
674 	{
675 		.data_type	= QMI_UNSIGNED_1_BYTE,
676 		.elem_len	= 1,
677 		.elem_size	= sizeof(u8),
678 		.array_type	= NO_ARRAY,
679 		.tlv_type	= 0x13,
680 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
681 					   msa_ready_enable),
682 	},
683 	{
684 		.data_type	= QMI_OPT_FLAG,
685 		.elem_len	= 1,
686 		.elem_size	= sizeof(u8),
687 		.array_type	= NO_ARRAY,
688 		.tlv_type	= 0x14,
689 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
690 					   pin_connect_result_enable_valid),
691 	},
692 	{
693 		.data_type	= QMI_UNSIGNED_1_BYTE,
694 		.elem_len	= 1,
695 		.elem_size	= sizeof(u8),
696 		.array_type	= NO_ARRAY,
697 		.tlv_type	= 0x14,
698 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
699 					   pin_connect_result_enable),
700 	},
701 	{
702 		.data_type	= QMI_OPT_FLAG,
703 		.elem_len	= 1,
704 		.elem_size	= sizeof(u8),
705 		.array_type	= NO_ARRAY,
706 		.tlv_type	= 0x15,
707 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
708 					   client_id_valid),
709 	},
710 	{
711 		.data_type	= QMI_UNSIGNED_4_BYTE,
712 		.elem_len	= 1,
713 		.elem_size	= sizeof(u32),
714 		.array_type	= NO_ARRAY,
715 		.tlv_type	= 0x15,
716 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
717 					   client_id),
718 	},
719 	{
720 		.data_type	= QMI_OPT_FLAG,
721 		.elem_len	= 1,
722 		.elem_size	= sizeof(u8),
723 		.array_type	= NO_ARRAY,
724 		.tlv_type	= 0x16,
725 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
726 					   request_mem_enable_valid),
727 	},
728 	{
729 		.data_type	= QMI_UNSIGNED_1_BYTE,
730 		.elem_len	= 1,
731 		.elem_size	= sizeof(u8),
732 		.array_type	= NO_ARRAY,
733 		.tlv_type	= 0x16,
734 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
735 					   request_mem_enable),
736 	},
737 	{
738 		.data_type	= QMI_OPT_FLAG,
739 		.elem_len	= 1,
740 		.elem_size	= sizeof(u8),
741 		.array_type	= NO_ARRAY,
742 		.tlv_type	= 0x17,
743 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
744 					   fw_mem_ready_enable_valid),
745 	},
746 	{
747 		.data_type	= QMI_UNSIGNED_1_BYTE,
748 		.elem_len	= 1,
749 		.elem_size	= sizeof(u8),
750 		.array_type	= NO_ARRAY,
751 		.tlv_type	= 0x17,
752 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
753 					   fw_mem_ready_enable),
754 	},
755 	{
756 		.data_type	= QMI_OPT_FLAG,
757 		.elem_len	= 1,
758 		.elem_size	= sizeof(u8),
759 		.array_type	= NO_ARRAY,
760 		.tlv_type	= 0x18,
761 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
762 					   fw_init_done_enable_valid),
763 	},
764 	{
765 		.data_type	= QMI_UNSIGNED_1_BYTE,
766 		.elem_len	= 1,
767 		.elem_size	= sizeof(u8),
768 		.array_type	= NO_ARRAY,
769 		.tlv_type	= 0x18,
770 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
771 					   fw_init_done_enable),
772 	},
773 
774 	{
775 		.data_type	= QMI_OPT_FLAG,
776 		.elem_len	= 1,
777 		.elem_size	= sizeof(u8),
778 		.array_type	= NO_ARRAY,
779 		.tlv_type	= 0x19,
780 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
781 					   rejuvenate_enable_valid),
782 	},
783 	{
784 		.data_type	= QMI_UNSIGNED_1_BYTE,
785 		.elem_len	= 1,
786 		.elem_size	= sizeof(u8),
787 		.array_type	= NO_ARRAY,
788 		.tlv_type	= 0x19,
789 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
790 					   rejuvenate_enable),
791 	},
792 	{
793 		.data_type	= QMI_OPT_FLAG,
794 		.elem_len	= 1,
795 		.elem_size	= sizeof(u8),
796 		.array_type	= NO_ARRAY,
797 		.tlv_type	= 0x1A,
798 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
799 					   xo_cal_enable_valid),
800 	},
801 	{
802 		.data_type	= QMI_UNSIGNED_1_BYTE,
803 		.elem_len	= 1,
804 		.elem_size	= sizeof(u8),
805 		.array_type	= NO_ARRAY,
806 		.tlv_type	= 0x1A,
807 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
808 					   xo_cal_enable),
809 	},
810 	{
811 		.data_type	= QMI_OPT_FLAG,
812 		.elem_len	= 1,
813 		.elem_size	= sizeof(u8),
814 		.array_type	= NO_ARRAY,
815 		.tlv_type	= 0x1B,
816 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
817 					   cal_done_enable_valid),
818 	},
819 	{
820 		.data_type	= QMI_UNSIGNED_1_BYTE,
821 		.elem_len	= 1,
822 		.elem_size	= sizeof(u8),
823 		.array_type	= NO_ARRAY,
824 		.tlv_type	= 0x1B,
825 		.offset		= offsetof(struct qmi_wlanfw_ind_register_req_msg_v01,
826 					   cal_done_enable),
827 	},
828 	{
829 		.data_type	= QMI_EOTI,
830 		.array_type	= NO_ARRAY,
831 		.tlv_type	= QMI_COMMON_TLV_TYPE,
832 	},
833 };
834 
835 static const struct qmi_elem_info qmi_wlanfw_ind_register_resp_msg_v01_ei[] = {
836 	{
837 		.data_type	= QMI_STRUCT,
838 		.elem_len	= 1,
839 		.elem_size	= sizeof(struct qmi_response_type_v01),
840 		.array_type	= NO_ARRAY,
841 		.tlv_type	= 0x02,
842 		.offset		= offsetof(struct qmi_wlanfw_ind_register_resp_msg_v01,
843 					   resp),
844 		.ei_array	= qmi_response_type_v01_ei,
845 	},
846 	{
847 		.data_type	= QMI_OPT_FLAG,
848 		.elem_len	= 1,
849 		.elem_size	= sizeof(u8),
850 		.array_type	= NO_ARRAY,
851 		.tlv_type	= 0x10,
852 		.offset		= offsetof(struct qmi_wlanfw_ind_register_resp_msg_v01,
853 					   fw_status_valid),
854 	},
855 	{
856 		.data_type	= QMI_UNSIGNED_8_BYTE,
857 		.elem_len	= 1,
858 		.elem_size	= sizeof(u64),
859 		.array_type	= NO_ARRAY,
860 		.tlv_type	= 0x10,
861 		.offset		= offsetof(struct qmi_wlanfw_ind_register_resp_msg_v01,
862 					   fw_status),
863 	},
864 	{
865 		.data_type	= QMI_EOTI,
866 		.array_type	= NO_ARRAY,
867 		.tlv_type	= QMI_COMMON_TLV_TYPE,
868 	},
869 };
870 
871 static const struct qmi_elem_info qmi_wlanfw_mem_cfg_s_v01_ei[] = {
872 	{
873 		.data_type	= QMI_UNSIGNED_8_BYTE,
874 		.elem_len	= 1,
875 		.elem_size	= sizeof(u64),
876 		.array_type	= NO_ARRAY,
877 		.tlv_type	= 0,
878 		.offset		= offsetof(struct qmi_wlanfw_mem_cfg_s_v01, offset),
879 	},
880 	{
881 		.data_type	= QMI_UNSIGNED_4_BYTE,
882 		.elem_len	= 1,
883 		.elem_size	= sizeof(u32),
884 		.array_type	= NO_ARRAY,
885 		.tlv_type	= 0,
886 		.offset		= offsetof(struct qmi_wlanfw_mem_cfg_s_v01, size),
887 	},
888 	{
889 		.data_type	= QMI_UNSIGNED_1_BYTE,
890 		.elem_len	= 1,
891 		.elem_size	= sizeof(u8),
892 		.array_type	= NO_ARRAY,
893 		.tlv_type	= 0,
894 		.offset		= offsetof(struct qmi_wlanfw_mem_cfg_s_v01, secure_flag),
895 	},
896 	{
897 		.data_type	= QMI_EOTI,
898 		.array_type	= NO_ARRAY,
899 		.tlv_type	= QMI_COMMON_TLV_TYPE,
900 	},
901 };
902 
903 static const struct qmi_elem_info qmi_wlanfw_mem_seg_s_v01_ei[] = {
904 	{
905 		.data_type	= QMI_UNSIGNED_4_BYTE,
906 		.elem_len	= 1,
907 		.elem_size	= sizeof(u32),
908 		.array_type	= NO_ARRAY,
909 		.tlv_type	= 0,
910 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_s_v01,
911 				  size),
912 	},
913 	{
914 		.data_type	= QMI_SIGNED_4_BYTE_ENUM,
915 		.elem_len	= 1,
916 		.elem_size	= sizeof(enum qmi_wlanfw_mem_type_enum_v01),
917 		.array_type	= NO_ARRAY,
918 		.tlv_type	= 0,
919 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_s_v01, type),
920 	},
921 	{
922 		.data_type	= QMI_DATA_LEN,
923 		.elem_len	= 1,
924 		.elem_size	= sizeof(u8),
925 		.array_type	= NO_ARRAY,
926 		.tlv_type	= 0,
927 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_s_v01, mem_cfg_len),
928 	},
929 	{
930 		.data_type	= QMI_STRUCT,
931 		.elem_len	= QMI_WLANFW_MAX_NUM_MEM_CFG_V01,
932 		.elem_size	= sizeof(struct qmi_wlanfw_mem_cfg_s_v01),
933 		.array_type	= VAR_LEN_ARRAY,
934 		.tlv_type	= 0,
935 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_s_v01, mem_cfg),
936 		.ei_array	= qmi_wlanfw_mem_cfg_s_v01_ei,
937 	},
938 	{
939 		.data_type	= QMI_EOTI,
940 		.array_type	= NO_ARRAY,
941 		.tlv_type	= QMI_COMMON_TLV_TYPE,
942 	},
943 };
944 
945 static const struct qmi_elem_info qmi_wlanfw_request_mem_ind_msg_v01_ei[] = {
946 	{
947 		.data_type	= QMI_DATA_LEN,
948 		.elem_len	= 1,
949 		.elem_size	= sizeof(u8),
950 		.array_type	= NO_ARRAY,
951 		.tlv_type	= 0x01,
952 		.offset		= offsetof(struct qmi_wlanfw_request_mem_ind_msg_v01,
953 					   mem_seg_len),
954 	},
955 	{
956 		.data_type	= QMI_STRUCT,
957 		.elem_len	= ATH12K_QMI_WLANFW_MAX_NUM_MEM_SEG_V01,
958 		.elem_size	= sizeof(struct qmi_wlanfw_mem_seg_s_v01),
959 		.array_type	= VAR_LEN_ARRAY,
960 		.tlv_type	= 0x01,
961 		.offset		= offsetof(struct qmi_wlanfw_request_mem_ind_msg_v01,
962 					   mem_seg),
963 		.ei_array	= qmi_wlanfw_mem_seg_s_v01_ei,
964 	},
965 	{
966 		.data_type	= QMI_EOTI,
967 		.array_type	= NO_ARRAY,
968 		.tlv_type	= QMI_COMMON_TLV_TYPE,
969 	},
970 };
971 
972 static const struct qmi_elem_info qmi_wlanfw_mem_seg_resp_s_v01_ei[] = {
973 	{
974 		.data_type	= QMI_UNSIGNED_8_BYTE,
975 		.elem_len	= 1,
976 		.elem_size	= sizeof(u64),
977 		.array_type	= NO_ARRAY,
978 		.tlv_type	= 0,
979 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_resp_s_v01, addr),
980 	},
981 	{
982 		.data_type	= QMI_UNSIGNED_4_BYTE,
983 		.elem_len	= 1,
984 		.elem_size	= sizeof(u32),
985 		.array_type	= NO_ARRAY,
986 		.tlv_type	= 0,
987 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_resp_s_v01, size),
988 	},
989 	{
990 		.data_type	= QMI_SIGNED_4_BYTE_ENUM,
991 		.elem_len	= 1,
992 		.elem_size	= sizeof(enum qmi_wlanfw_mem_type_enum_v01),
993 		.array_type	= NO_ARRAY,
994 		.tlv_type	= 0,
995 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_resp_s_v01, type),
996 	},
997 	{
998 		.data_type	= QMI_UNSIGNED_1_BYTE,
999 		.elem_len	= 1,
1000 		.elem_size	= sizeof(u8),
1001 		.array_type	= NO_ARRAY,
1002 		.tlv_type	= 0,
1003 		.offset		= offsetof(struct qmi_wlanfw_mem_seg_resp_s_v01, restore),
1004 	},
1005 	{
1006 		.data_type	= QMI_EOTI,
1007 		.array_type	= NO_ARRAY,
1008 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1009 	},
1010 };
1011 
1012 static const struct qmi_elem_info qmi_wlanfw_respond_mem_req_msg_v01_ei[] = {
1013 	{
1014 		.data_type	= QMI_DATA_LEN,
1015 		.elem_len	= 1,
1016 		.elem_size	= sizeof(u8),
1017 		.array_type	= NO_ARRAY,
1018 		.tlv_type	= 0x01,
1019 		.offset		= offsetof(struct qmi_wlanfw_respond_mem_req_msg_v01,
1020 					   mem_seg_len),
1021 	},
1022 	{
1023 		.data_type	= QMI_STRUCT,
1024 		.elem_len	= ATH12K_QMI_WLANFW_MAX_NUM_MEM_SEG_V01,
1025 		.elem_size	= sizeof(struct qmi_wlanfw_mem_seg_resp_s_v01),
1026 		.array_type	= VAR_LEN_ARRAY,
1027 		.tlv_type	= 0x01,
1028 		.offset		= offsetof(struct qmi_wlanfw_respond_mem_req_msg_v01,
1029 					   mem_seg),
1030 		.ei_array	= qmi_wlanfw_mem_seg_resp_s_v01_ei,
1031 	},
1032 	{
1033 		.data_type	= QMI_EOTI,
1034 		.array_type	= NO_ARRAY,
1035 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1036 	},
1037 };
1038 
1039 static const struct qmi_elem_info qmi_wlanfw_respond_mem_resp_msg_v01_ei[] = {
1040 	{
1041 		.data_type	= QMI_STRUCT,
1042 		.elem_len	= 1,
1043 		.elem_size	= sizeof(struct qmi_response_type_v01),
1044 		.array_type	= NO_ARRAY,
1045 		.tlv_type	= 0x02,
1046 		.offset		= offsetof(struct qmi_wlanfw_respond_mem_resp_msg_v01,
1047 					   resp),
1048 		.ei_array	= qmi_response_type_v01_ei,
1049 	},
1050 	{
1051 		.data_type	= QMI_EOTI,
1052 		.array_type	= NO_ARRAY,
1053 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1054 	},
1055 };
1056 
1057 static const struct qmi_elem_info qmi_wlanfw_cap_req_msg_v01_ei[] = {
1058 	{
1059 		.data_type	= QMI_EOTI,
1060 		.array_type	= NO_ARRAY,
1061 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1062 	},
1063 };
1064 
1065 static const struct qmi_elem_info qmi_wlanfw_rf_chip_info_s_v01_ei[] = {
1066 	{
1067 		.data_type	= QMI_UNSIGNED_4_BYTE,
1068 		.elem_len	= 1,
1069 		.elem_size	= sizeof(u32),
1070 		.array_type	= NO_ARRAY,
1071 		.tlv_type	= 0,
1072 		.offset		= offsetof(struct qmi_wlanfw_rf_chip_info_s_v01,
1073 					   chip_id),
1074 	},
1075 	{
1076 		.data_type	= QMI_UNSIGNED_4_BYTE,
1077 		.elem_len	= 1,
1078 		.elem_size	= sizeof(u32),
1079 		.array_type	= NO_ARRAY,
1080 		.tlv_type	= 0,
1081 		.offset		= offsetof(struct qmi_wlanfw_rf_chip_info_s_v01,
1082 					   chip_family),
1083 	},
1084 	{
1085 		.data_type	= QMI_EOTI,
1086 		.array_type	= NO_ARRAY,
1087 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1088 	},
1089 };
1090 
1091 static const struct qmi_elem_info qmi_wlanfw_rf_board_info_s_v01_ei[] = {
1092 	{
1093 		.data_type	= QMI_UNSIGNED_4_BYTE,
1094 		.elem_len	= 1,
1095 		.elem_size	= sizeof(u32),
1096 		.array_type	= NO_ARRAY,
1097 		.tlv_type	= 0,
1098 		.offset		= offsetof(struct qmi_wlanfw_rf_board_info_s_v01,
1099 					   board_id),
1100 	},
1101 	{
1102 		.data_type	= QMI_EOTI,
1103 		.array_type	= NO_ARRAY,
1104 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1105 	},
1106 };
1107 
1108 static const struct qmi_elem_info qmi_wlanfw_soc_info_s_v01_ei[] = {
1109 	{
1110 		.data_type	= QMI_UNSIGNED_4_BYTE,
1111 		.elem_len	= 1,
1112 		.elem_size	= sizeof(u32),
1113 		.array_type	= NO_ARRAY,
1114 		.tlv_type	= 0,
1115 		.offset		= offsetof(struct qmi_wlanfw_soc_info_s_v01, soc_id),
1116 	},
1117 	{
1118 		.data_type	= QMI_EOTI,
1119 		.array_type	= NO_ARRAY,
1120 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1121 	},
1122 };
1123 
1124 static const struct qmi_elem_info qmi_wlanfw_dev_mem_info_s_v01_ei[] = {
1125 	{
1126 		.data_type	= QMI_UNSIGNED_8_BYTE,
1127 		.elem_len	= 1,
1128 		.elem_size	= sizeof(u64),
1129 		.array_type	= NO_ARRAY,
1130 		.tlv_type	= 0,
1131 		.offset		= offsetof(struct qmi_wlanfw_dev_mem_info_s_v01,
1132 					   start),
1133 	},
1134 	{
1135 		.data_type	= QMI_UNSIGNED_8_BYTE,
1136 		.elem_len	= 1,
1137 		.elem_size	= sizeof(u64),
1138 		.array_type	= NO_ARRAY,
1139 		.tlv_type	= 0,
1140 		.offset		= offsetof(struct qmi_wlanfw_dev_mem_info_s_v01,
1141 					   size),
1142 	},
1143 	{
1144 		.data_type	= QMI_EOTI,
1145 		.array_type	= NO_ARRAY,
1146 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1147 	},
1148 };
1149 
1150 static const struct qmi_elem_info qmi_wlanfw_fw_version_info_s_v01_ei[] = {
1151 	{
1152 		.data_type	= QMI_UNSIGNED_4_BYTE,
1153 		.elem_len	= 1,
1154 		.elem_size	= sizeof(u32),
1155 		.array_type	= NO_ARRAY,
1156 		.tlv_type	= 0,
1157 		.offset		= offsetof(struct qmi_wlanfw_fw_version_info_s_v01,
1158 					   fw_version),
1159 	},
1160 	{
1161 		.data_type	= QMI_STRING,
1162 		.elem_len	= ATH12K_QMI_WLANFW_MAX_TIMESTAMP_LEN_V01 + 1,
1163 		.elem_size	= sizeof(char),
1164 		.array_type	= NO_ARRAY,
1165 		.tlv_type	= 0,
1166 		.offset		= offsetof(struct qmi_wlanfw_fw_version_info_s_v01,
1167 					   fw_build_timestamp),
1168 	},
1169 	{
1170 		.data_type	= QMI_EOTI,
1171 		.array_type	= NO_ARRAY,
1172 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1173 	},
1174 };
1175 
1176 static const struct qmi_elem_info qmi_wlanfw_cap_resp_msg_v01_ei[] = {
1177 	{
1178 		.data_type	= QMI_STRUCT,
1179 		.elem_len	= 1,
1180 		.elem_size	= sizeof(struct qmi_response_type_v01),
1181 		.array_type	= NO_ARRAY,
1182 		.tlv_type	= 0x02,
1183 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01, resp),
1184 		.ei_array	= qmi_response_type_v01_ei,
1185 	},
1186 	{
1187 		.data_type	= QMI_OPT_FLAG,
1188 		.elem_len	= 1,
1189 		.elem_size	= sizeof(u8),
1190 		.array_type	= NO_ARRAY,
1191 		.tlv_type	= 0x10,
1192 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1193 					   chip_info_valid),
1194 	},
1195 	{
1196 		.data_type	= QMI_STRUCT,
1197 		.elem_len	= 1,
1198 		.elem_size	= sizeof(struct qmi_wlanfw_rf_chip_info_s_v01),
1199 		.array_type	= NO_ARRAY,
1200 		.tlv_type	= 0x10,
1201 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1202 					   chip_info),
1203 		.ei_array	= qmi_wlanfw_rf_chip_info_s_v01_ei,
1204 	},
1205 	{
1206 		.data_type	= QMI_OPT_FLAG,
1207 		.elem_len	= 1,
1208 		.elem_size	= sizeof(u8),
1209 		.array_type	= NO_ARRAY,
1210 		.tlv_type	= 0x11,
1211 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1212 					   board_info_valid),
1213 	},
1214 	{
1215 		.data_type	= QMI_STRUCT,
1216 		.elem_len	= 1,
1217 		.elem_size	= sizeof(struct qmi_wlanfw_rf_board_info_s_v01),
1218 		.array_type	= NO_ARRAY,
1219 		.tlv_type	= 0x11,
1220 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1221 					   board_info),
1222 		.ei_array	= qmi_wlanfw_rf_board_info_s_v01_ei,
1223 	},
1224 	{
1225 		.data_type	= QMI_OPT_FLAG,
1226 		.elem_len	= 1,
1227 		.elem_size	= sizeof(u8),
1228 		.array_type	= NO_ARRAY,
1229 		.tlv_type	= 0x12,
1230 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1231 					   soc_info_valid),
1232 	},
1233 	{
1234 		.data_type	= QMI_STRUCT,
1235 		.elem_len	= 1,
1236 		.elem_size	= sizeof(struct qmi_wlanfw_soc_info_s_v01),
1237 		.array_type	= NO_ARRAY,
1238 		.tlv_type	= 0x12,
1239 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1240 					   soc_info),
1241 		.ei_array	= qmi_wlanfw_soc_info_s_v01_ei,
1242 	},
1243 	{
1244 		.data_type	= QMI_OPT_FLAG,
1245 		.elem_len	= 1,
1246 		.elem_size	= sizeof(u8),
1247 		.array_type	= NO_ARRAY,
1248 		.tlv_type	= 0x13,
1249 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1250 					   fw_version_info_valid),
1251 	},
1252 	{
1253 		.data_type	= QMI_STRUCT,
1254 		.elem_len	= 1,
1255 		.elem_size	= sizeof(struct qmi_wlanfw_fw_version_info_s_v01),
1256 		.array_type	= NO_ARRAY,
1257 		.tlv_type	= 0x13,
1258 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1259 					   fw_version_info),
1260 		.ei_array	= qmi_wlanfw_fw_version_info_s_v01_ei,
1261 	},
1262 	{
1263 		.data_type	= QMI_OPT_FLAG,
1264 		.elem_len	= 1,
1265 		.elem_size	= sizeof(u8),
1266 		.array_type	= NO_ARRAY,
1267 		.tlv_type	= 0x14,
1268 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1269 					   fw_build_id_valid),
1270 	},
1271 	{
1272 		.data_type	= QMI_STRING,
1273 		.elem_len	= ATH12K_QMI_WLANFW_MAX_BUILD_ID_LEN_V01 + 1,
1274 		.elem_size	= sizeof(char),
1275 		.array_type	= NO_ARRAY,
1276 		.tlv_type	= 0x14,
1277 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1278 					   fw_build_id),
1279 	},
1280 	{
1281 		.data_type	= QMI_OPT_FLAG,
1282 		.elem_len	= 1,
1283 		.elem_size	= sizeof(u8),
1284 		.array_type	= NO_ARRAY,
1285 		.tlv_type	= 0x15,
1286 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1287 					   num_macs_valid),
1288 	},
1289 	{
1290 		.data_type	= QMI_UNSIGNED_1_BYTE,
1291 		.elem_len	= 1,
1292 		.elem_size	= sizeof(u8),
1293 		.array_type	= NO_ARRAY,
1294 		.tlv_type	= 0x15,
1295 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1296 					   num_macs),
1297 	},
1298 	{
1299 		.data_type	= QMI_OPT_FLAG,
1300 		.elem_len	= 1,
1301 		.elem_size	= sizeof(u8),
1302 		.array_type	= NO_ARRAY,
1303 		.tlv_type	= 0x16,
1304 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1305 					   voltage_mv_valid),
1306 	},
1307 	{
1308 		.data_type	= QMI_UNSIGNED_4_BYTE,
1309 		.elem_len	= 1,
1310 		.elem_size	= sizeof(u32),
1311 		.array_type	= NO_ARRAY,
1312 		.tlv_type	= 0x16,
1313 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1314 					   voltage_mv),
1315 	},
1316 	{
1317 		.data_type	= QMI_OPT_FLAG,
1318 		.elem_len	= 1,
1319 		.elem_size	= sizeof(u8),
1320 		.array_type	= NO_ARRAY,
1321 		.tlv_type	= 0x17,
1322 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1323 					   time_freq_hz_valid),
1324 	},
1325 	{
1326 		.data_type	= QMI_UNSIGNED_4_BYTE,
1327 		.elem_len	= 1,
1328 		.elem_size	= sizeof(u32),
1329 		.array_type	= NO_ARRAY,
1330 		.tlv_type	= 0x17,
1331 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1332 					   time_freq_hz),
1333 	},
1334 	{
1335 		.data_type	= QMI_OPT_FLAG,
1336 		.elem_len	= 1,
1337 		.elem_size	= sizeof(u8),
1338 		.array_type	= NO_ARRAY,
1339 		.tlv_type	= 0x18,
1340 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1341 					   otp_version_valid),
1342 	},
1343 	{
1344 		.data_type	= QMI_UNSIGNED_4_BYTE,
1345 		.elem_len	= 1,
1346 		.elem_size	= sizeof(u32),
1347 		.array_type	= NO_ARRAY,
1348 		.tlv_type	= 0x18,
1349 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1350 					   otp_version),
1351 	},
1352 	{
1353 		.data_type	= QMI_OPT_FLAG,
1354 		.elem_len	= 1,
1355 		.elem_size	= sizeof(u8),
1356 		.array_type	= NO_ARRAY,
1357 		.tlv_type	= 0x19,
1358 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1359 					   eeprom_caldata_read_timeout_valid),
1360 	},
1361 	{
1362 		.data_type	= QMI_UNSIGNED_4_BYTE,
1363 		.elem_len	= 1,
1364 		.elem_size	= sizeof(u32),
1365 		.array_type	= NO_ARRAY,
1366 		.tlv_type	= 0x19,
1367 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1368 					   eeprom_caldata_read_timeout),
1369 	},
1370 	{
1371 		.data_type	= QMI_OPT_FLAG,
1372 		.elem_len	= 1,
1373 		.elem_size	= sizeof(u8),
1374 		.array_type	= NO_ARRAY,
1375 		.tlv_type	= 0x1A,
1376 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1377 					   fw_caps_valid),
1378 	},
1379 	{
1380 		.data_type	= QMI_UNSIGNED_8_BYTE,
1381 		.elem_len	= 1,
1382 		.elem_size	= sizeof(u64),
1383 		.array_type	= NO_ARRAY,
1384 		.tlv_type	= 0x1A,
1385 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01, fw_caps),
1386 	},
1387 	{
1388 		.data_type	= QMI_OPT_FLAG,
1389 		.elem_len	= 1,
1390 		.elem_size	= sizeof(u8),
1391 		.array_type	= NO_ARRAY,
1392 		.tlv_type	= 0x1B,
1393 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1394 					   rd_card_chain_cap_valid),
1395 	},
1396 	{
1397 		.data_type	= QMI_UNSIGNED_4_BYTE,
1398 		.elem_len	= 1,
1399 		.elem_size	= sizeof(u32),
1400 		.array_type	= NO_ARRAY,
1401 		.tlv_type	= 0x1B,
1402 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1403 					   rd_card_chain_cap),
1404 	},
1405 	{
1406 		.data_type	= QMI_OPT_FLAG,
1407 		.elem_len	= 1,
1408 		.elem_size	= sizeof(u8),
1409 		.array_type	= NO_ARRAY,
1410 		.tlv_type	= 0x1C,
1411 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01,
1412 					   dev_mem_info_valid),
1413 	},
1414 	{
1415 		.data_type	= QMI_STRUCT,
1416 		.elem_len	= ATH12K_QMI_WLFW_MAX_DEV_MEM_NUM_V01,
1417 		.elem_size	= sizeof(struct qmi_wlanfw_dev_mem_info_s_v01),
1418 		.array_type	= STATIC_ARRAY,
1419 		.tlv_type	= 0x1C,
1420 		.offset		= offsetof(struct qmi_wlanfw_cap_resp_msg_v01, dev_mem),
1421 		.ei_array	= qmi_wlanfw_dev_mem_info_s_v01_ei,
1422 	},
1423 	{
1424 		.data_type	= QMI_EOTI,
1425 		.array_type	= NO_ARRAY,
1426 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1427 	},
1428 };
1429 
1430 static const struct qmi_elem_info qmi_wlanfw_bdf_download_req_msg_v01_ei[] = {
1431 	{
1432 		.data_type	= QMI_UNSIGNED_1_BYTE,
1433 		.elem_len	= 1,
1434 		.elem_size	= sizeof(u8),
1435 		.array_type	= NO_ARRAY,
1436 		.tlv_type	= 0x01,
1437 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1438 					   valid),
1439 	},
1440 	{
1441 		.data_type	= QMI_OPT_FLAG,
1442 		.elem_len	= 1,
1443 		.elem_size	= sizeof(u8),
1444 		.array_type	= NO_ARRAY,
1445 		.tlv_type	= 0x10,
1446 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1447 					   file_id_valid),
1448 	},
1449 	{
1450 		.data_type	= QMI_SIGNED_4_BYTE_ENUM,
1451 		.elem_len	= 1,
1452 		.elem_size	= sizeof(enum qmi_wlanfw_cal_temp_id_enum_v01),
1453 		.array_type	= NO_ARRAY,
1454 		.tlv_type	= 0x10,
1455 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1456 					   file_id),
1457 	},
1458 	{
1459 		.data_type	= QMI_OPT_FLAG,
1460 		.elem_len	= 1,
1461 		.elem_size	= sizeof(u8),
1462 		.array_type	= NO_ARRAY,
1463 		.tlv_type	= 0x11,
1464 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1465 					   total_size_valid),
1466 	},
1467 	{
1468 		.data_type	= QMI_UNSIGNED_4_BYTE,
1469 		.elem_len	= 1,
1470 		.elem_size	= sizeof(u32),
1471 		.array_type	= NO_ARRAY,
1472 		.tlv_type	= 0x11,
1473 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1474 					   total_size),
1475 	},
1476 	{
1477 		.data_type	= QMI_OPT_FLAG,
1478 		.elem_len	= 1,
1479 		.elem_size	= sizeof(u8),
1480 		.array_type	= NO_ARRAY,
1481 		.tlv_type	= 0x12,
1482 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1483 					   seg_id_valid),
1484 	},
1485 	{
1486 		.data_type	= QMI_UNSIGNED_4_BYTE,
1487 		.elem_len	= 1,
1488 		.elem_size	= sizeof(u32),
1489 		.array_type	= NO_ARRAY,
1490 		.tlv_type	= 0x12,
1491 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1492 					   seg_id),
1493 	},
1494 	{
1495 		.data_type	= QMI_OPT_FLAG,
1496 		.elem_len	= 1,
1497 		.elem_size	= sizeof(u8),
1498 		.array_type	= NO_ARRAY,
1499 		.tlv_type	= 0x13,
1500 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1501 					   data_valid),
1502 	},
1503 	{
1504 		.data_type	= QMI_DATA_LEN,
1505 		.elem_len	= 1,
1506 		.elem_size	= sizeof(u16),
1507 		.array_type	= NO_ARRAY,
1508 		.tlv_type	= 0x13,
1509 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1510 					   data_len),
1511 	},
1512 	{
1513 		.data_type	= QMI_UNSIGNED_1_BYTE,
1514 		.elem_len	= QMI_WLANFW_MAX_DATA_SIZE_V01,
1515 		.elem_size	= sizeof(u8),
1516 		.array_type	= VAR_LEN_ARRAY,
1517 		.tlv_type	= 0x13,
1518 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1519 					   data),
1520 	},
1521 	{
1522 		.data_type	= QMI_OPT_FLAG,
1523 		.elem_len	= 1,
1524 		.elem_size	= sizeof(u8),
1525 		.array_type	= NO_ARRAY,
1526 		.tlv_type	= 0x14,
1527 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1528 					   end_valid),
1529 	},
1530 	{
1531 		.data_type	= QMI_UNSIGNED_1_BYTE,
1532 		.elem_len	= 1,
1533 		.elem_size	= sizeof(u8),
1534 		.array_type	= NO_ARRAY,
1535 		.tlv_type	= 0x14,
1536 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1537 					   end),
1538 	},
1539 	{
1540 		.data_type	= QMI_OPT_FLAG,
1541 		.elem_len	= 1,
1542 		.elem_size	= sizeof(u8),
1543 		.array_type	= NO_ARRAY,
1544 		.tlv_type	= 0x15,
1545 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1546 					   bdf_type_valid),
1547 	},
1548 	{
1549 		.data_type	= QMI_UNSIGNED_1_BYTE,
1550 		.elem_len	= 1,
1551 		.elem_size	= sizeof(u8),
1552 		.array_type	= NO_ARRAY,
1553 		.tlv_type	= 0x15,
1554 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_req_msg_v01,
1555 					   bdf_type),
1556 	},
1557 
1558 	{
1559 		.data_type	= QMI_EOTI,
1560 		.array_type	= NO_ARRAY,
1561 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1562 	},
1563 };
1564 
1565 static const struct qmi_elem_info qmi_wlanfw_bdf_download_resp_msg_v01_ei[] = {
1566 	{
1567 		.data_type	= QMI_STRUCT,
1568 		.elem_len	= 1,
1569 		.elem_size	= sizeof(struct qmi_response_type_v01),
1570 		.array_type	= NO_ARRAY,
1571 		.tlv_type	= 0x02,
1572 		.offset		= offsetof(struct qmi_wlanfw_bdf_download_resp_msg_v01,
1573 					   resp),
1574 		.ei_array	= qmi_response_type_v01_ei,
1575 	},
1576 	{
1577 		.data_type	= QMI_EOTI,
1578 		.array_type	= NO_ARRAY,
1579 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1580 	},
1581 };
1582 
1583 static const struct qmi_elem_info qmi_wlanfw_m3_info_req_msg_v01_ei[] = {
1584 	{
1585 		.data_type	= QMI_UNSIGNED_8_BYTE,
1586 		.elem_len	= 1,
1587 		.elem_size	= sizeof(u64),
1588 		.array_type	= NO_ARRAY,
1589 		.tlv_type	= 0x01,
1590 		.offset		= offsetof(struct qmi_wlanfw_m3_info_req_msg_v01, addr),
1591 	},
1592 	{
1593 		.data_type	= QMI_UNSIGNED_4_BYTE,
1594 		.elem_len	= 1,
1595 		.elem_size	= sizeof(u32),
1596 		.array_type	= NO_ARRAY,
1597 		.tlv_type	= 0x02,
1598 		.offset		= offsetof(struct qmi_wlanfw_m3_info_req_msg_v01, size),
1599 	},
1600 	{
1601 		.data_type	= QMI_EOTI,
1602 		.array_type	= NO_ARRAY,
1603 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1604 	},
1605 };
1606 
1607 static const struct qmi_elem_info qmi_wlanfw_m3_info_resp_msg_v01_ei[] = {
1608 	{
1609 		.data_type	= QMI_STRUCT,
1610 		.elem_len	= 1,
1611 		.elem_size	= sizeof(struct qmi_response_type_v01),
1612 		.array_type	= NO_ARRAY,
1613 		.tlv_type	= 0x02,
1614 		.offset		= offsetof(struct qmi_wlanfw_m3_info_resp_msg_v01, resp),
1615 		.ei_array	= qmi_response_type_v01_ei,
1616 	},
1617 	{
1618 		.data_type	= QMI_EOTI,
1619 		.array_type	= NO_ARRAY,
1620 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1621 	},
1622 };
1623 
1624 static const struct qmi_elem_info qmi_wlanfw_ce_tgt_pipe_cfg_s_v01_ei[] = {
1625 	{
1626 		.data_type	= QMI_UNSIGNED_4_BYTE,
1627 		.elem_len	= 1,
1628 		.elem_size	= sizeof(u32),
1629 		.array_type	= NO_ARRAY,
1630 		.tlv_type	= 0,
1631 		.offset		= offsetof(struct qmi_wlanfw_ce_tgt_pipe_cfg_s_v01,
1632 					   pipe_num),
1633 	},
1634 	{
1635 		.data_type	= QMI_SIGNED_4_BYTE_ENUM,
1636 		.elem_len	= 1,
1637 		.elem_size	= sizeof(enum qmi_wlanfw_pipedir_enum_v01),
1638 		.array_type	= NO_ARRAY,
1639 		.tlv_type	= 0,
1640 		.offset		= offsetof(struct qmi_wlanfw_ce_tgt_pipe_cfg_s_v01,
1641 					   pipe_dir),
1642 	},
1643 	{
1644 		.data_type	= QMI_UNSIGNED_4_BYTE,
1645 		.elem_len	= 1,
1646 		.elem_size	= sizeof(u32),
1647 		.array_type	= NO_ARRAY,
1648 		.tlv_type	= 0,
1649 		.offset		= offsetof(struct qmi_wlanfw_ce_tgt_pipe_cfg_s_v01,
1650 					   nentries),
1651 	},
1652 	{
1653 		.data_type	= QMI_UNSIGNED_4_BYTE,
1654 		.elem_len	= 1,
1655 		.elem_size	= sizeof(u32),
1656 		.array_type	= NO_ARRAY,
1657 		.tlv_type	= 0,
1658 		.offset		= offsetof(struct qmi_wlanfw_ce_tgt_pipe_cfg_s_v01,
1659 					   nbytes_max),
1660 	},
1661 	{
1662 		.data_type	= QMI_UNSIGNED_4_BYTE,
1663 		.elem_len	= 1,
1664 		.elem_size	= sizeof(u32),
1665 		.array_type	= NO_ARRAY,
1666 		.tlv_type	= 0,
1667 		.offset		= offsetof(struct qmi_wlanfw_ce_tgt_pipe_cfg_s_v01,
1668 					   flags),
1669 	},
1670 	{
1671 		.data_type	= QMI_EOTI,
1672 		.array_type	= NO_ARRAY,
1673 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1674 	},
1675 };
1676 
1677 static const struct qmi_elem_info qmi_wlanfw_ce_svc_pipe_cfg_s_v01_ei[] = {
1678 	{
1679 		.data_type	= QMI_UNSIGNED_4_BYTE,
1680 		.elem_len	= 1,
1681 		.elem_size	= sizeof(u32),
1682 		.array_type	= NO_ARRAY,
1683 		.tlv_type	= 0,
1684 		.offset		= offsetof(struct qmi_wlanfw_ce_svc_pipe_cfg_s_v01,
1685 					   service_id),
1686 	},
1687 	{
1688 		.data_type	= QMI_SIGNED_4_BYTE_ENUM,
1689 		.elem_len	= 1,
1690 		.elem_size	= sizeof(enum qmi_wlanfw_pipedir_enum_v01),
1691 		.array_type	= NO_ARRAY,
1692 		.tlv_type	= 0,
1693 		.offset		= offsetof(struct qmi_wlanfw_ce_svc_pipe_cfg_s_v01,
1694 					   pipe_dir),
1695 	},
1696 	{
1697 		.data_type	= QMI_UNSIGNED_4_BYTE,
1698 		.elem_len	= 1,
1699 		.elem_size	= sizeof(u32),
1700 		.array_type	= NO_ARRAY,
1701 		.tlv_type	= 0,
1702 		.offset		= offsetof(struct qmi_wlanfw_ce_svc_pipe_cfg_s_v01,
1703 					   pipe_num),
1704 	},
1705 	{
1706 		.data_type	= QMI_EOTI,
1707 		.array_type	= NO_ARRAY,
1708 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1709 	},
1710 };
1711 
1712 static const struct qmi_elem_info qmi_wlanfw_shadow_reg_cfg_s_v01_ei[] = {
1713 	{
1714 		.data_type	= QMI_UNSIGNED_2_BYTE,
1715 		.elem_len	= 1,
1716 		.elem_size	= sizeof(u16),
1717 		.array_type	= NO_ARRAY,
1718 		.tlv_type	= 0,
1719 		.offset		= offsetof(struct qmi_wlanfw_shadow_reg_cfg_s_v01, id),
1720 	},
1721 	{
1722 		.data_type	= QMI_UNSIGNED_2_BYTE,
1723 		.elem_len	= 1,
1724 		.elem_size	= sizeof(u16),
1725 		.array_type	= NO_ARRAY,
1726 		.tlv_type	= 0,
1727 		.offset		= offsetof(struct qmi_wlanfw_shadow_reg_cfg_s_v01,
1728 					   offset),
1729 	},
1730 	{
1731 		.data_type	= QMI_EOTI,
1732 		.array_type	= QMI_COMMON_TLV_TYPE,
1733 	},
1734 };
1735 
1736 static const struct qmi_elem_info qmi_wlanfw_shadow_reg_v3_cfg_s_v01_ei[] = {
1737 	{
1738 		.data_type	= QMI_UNSIGNED_4_BYTE,
1739 		.elem_len	= 1,
1740 		.elem_size	= sizeof(u32),
1741 		.array_type	= NO_ARRAY,
1742 		.tlv_type	= 0,
1743 		.offset		= offsetof(struct qmi_wlanfw_shadow_reg_v3_cfg_s_v01,
1744 					   addr),
1745 	},
1746 	{
1747 		.data_type	= QMI_EOTI,
1748 		.array_type	= NO_ARRAY,
1749 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1750 	},
1751 };
1752 
1753 static const struct qmi_elem_info qmi_wlanfw_wlan_mode_req_msg_v01_ei[] = {
1754 	{
1755 		.data_type	= QMI_UNSIGNED_4_BYTE,
1756 		.elem_len	= 1,
1757 		.elem_size	= sizeof(u32),
1758 		.array_type	= NO_ARRAY,
1759 		.tlv_type	= 0x01,
1760 		.offset		= offsetof(struct qmi_wlanfw_wlan_mode_req_msg_v01,
1761 					   mode),
1762 	},
1763 	{
1764 		.data_type	= QMI_OPT_FLAG,
1765 		.elem_len	= 1,
1766 		.elem_size	= sizeof(u8),
1767 		.array_type	= NO_ARRAY,
1768 		.tlv_type	= 0x10,
1769 		.offset		= offsetof(struct qmi_wlanfw_wlan_mode_req_msg_v01,
1770 					   hw_debug_valid),
1771 	},
1772 	{
1773 		.data_type	= QMI_UNSIGNED_1_BYTE,
1774 		.elem_len	= 1,
1775 		.elem_size	= sizeof(u8),
1776 		.array_type	= NO_ARRAY,
1777 		.tlv_type	= 0x10,
1778 		.offset		= offsetof(struct qmi_wlanfw_wlan_mode_req_msg_v01,
1779 					   hw_debug),
1780 	},
1781 	{
1782 		.data_type	= QMI_EOTI,
1783 		.array_type	= NO_ARRAY,
1784 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1785 	},
1786 };
1787 
1788 static const struct qmi_elem_info qmi_wlanfw_wlan_mode_resp_msg_v01_ei[] = {
1789 	{
1790 		.data_type	= QMI_STRUCT,
1791 		.elem_len	= 1,
1792 		.elem_size	= sizeof(struct qmi_response_type_v01),
1793 		.array_type	= NO_ARRAY,
1794 		.tlv_type	= 0x02,
1795 		.offset		= offsetof(struct qmi_wlanfw_wlan_mode_resp_msg_v01,
1796 					   resp),
1797 		.ei_array	= qmi_response_type_v01_ei,
1798 	},
1799 	{
1800 		.data_type	= QMI_EOTI,
1801 		.array_type	= NO_ARRAY,
1802 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1803 	},
1804 };
1805 
1806 static const struct qmi_elem_info qmi_wlanfw_wlan_cfg_req_msg_v01_ei[] = {
1807 	{
1808 		.data_type	= QMI_OPT_FLAG,
1809 		.elem_len	= 1,
1810 		.elem_size	= sizeof(u8),
1811 		.array_type	= NO_ARRAY,
1812 		.tlv_type	= 0x10,
1813 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1814 					   host_version_valid),
1815 	},
1816 	{
1817 		.data_type	= QMI_STRING,
1818 		.elem_len	= QMI_WLANFW_MAX_STR_LEN_V01 + 1,
1819 		.elem_size	= sizeof(char),
1820 		.array_type	= NO_ARRAY,
1821 		.tlv_type	= 0x10,
1822 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1823 					   host_version),
1824 	},
1825 	{
1826 		.data_type	= QMI_OPT_FLAG,
1827 		.elem_len	= 1,
1828 		.elem_size	= sizeof(u8),
1829 		.array_type	= NO_ARRAY,
1830 		.tlv_type	= 0x11,
1831 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1832 					   tgt_cfg_valid),
1833 	},
1834 	{
1835 		.data_type	= QMI_DATA_LEN,
1836 		.elem_len	= 1,
1837 		.elem_size	= sizeof(u8),
1838 		.array_type	= NO_ARRAY,
1839 		.tlv_type	= 0x11,
1840 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1841 					   tgt_cfg_len),
1842 	},
1843 	{
1844 		.data_type	= QMI_STRUCT,
1845 		.elem_len	= QMI_WLANFW_MAX_NUM_CE_V01,
1846 		.elem_size	= sizeof(struct qmi_wlanfw_ce_tgt_pipe_cfg_s_v01),
1847 		.array_type	= VAR_LEN_ARRAY,
1848 		.tlv_type	= 0x11,
1849 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1850 					   tgt_cfg),
1851 		.ei_array	= qmi_wlanfw_ce_tgt_pipe_cfg_s_v01_ei,
1852 	},
1853 	{
1854 		.data_type	= QMI_OPT_FLAG,
1855 		.elem_len	= 1,
1856 		.elem_size	= sizeof(u8),
1857 		.array_type	= NO_ARRAY,
1858 		.tlv_type	= 0x12,
1859 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1860 					   svc_cfg_valid),
1861 	},
1862 	{
1863 		.data_type	= QMI_DATA_LEN,
1864 		.elem_len	= 1,
1865 		.elem_size	= sizeof(u8),
1866 		.array_type	= NO_ARRAY,
1867 		.tlv_type	= 0x12,
1868 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1869 					   svc_cfg_len),
1870 	},
1871 	{
1872 		.data_type	= QMI_STRUCT,
1873 		.elem_len	= QMI_WLANFW_MAX_NUM_SVC_V01,
1874 		.elem_size	= sizeof(struct qmi_wlanfw_ce_svc_pipe_cfg_s_v01),
1875 		.array_type	= VAR_LEN_ARRAY,
1876 		.tlv_type	= 0x12,
1877 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1878 					   svc_cfg),
1879 		.ei_array	= qmi_wlanfw_ce_svc_pipe_cfg_s_v01_ei,
1880 	},
1881 	{
1882 		.data_type	= QMI_OPT_FLAG,
1883 		.elem_len	= 1,
1884 		.elem_size	= sizeof(u8),
1885 		.array_type = NO_ARRAY,
1886 		.tlv_type	= 0x13,
1887 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1888 					   shadow_reg_valid),
1889 	},
1890 	{
1891 		.data_type	= QMI_DATA_LEN,
1892 		.elem_len	= 1,
1893 		.elem_size	= sizeof(u8),
1894 		.array_type = NO_ARRAY,
1895 		.tlv_type	= 0x13,
1896 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1897 					   shadow_reg_len),
1898 	},
1899 	{
1900 		.data_type	= QMI_STRUCT,
1901 		.elem_len	= QMI_WLANFW_MAX_NUM_SHADOW_REG_V01,
1902 		.elem_size	= sizeof(struct qmi_wlanfw_shadow_reg_cfg_s_v01),
1903 		.array_type = VAR_LEN_ARRAY,
1904 		.tlv_type	= 0x13,
1905 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1906 					   shadow_reg),
1907 		.ei_array	= qmi_wlanfw_shadow_reg_cfg_s_v01_ei,
1908 	},
1909 	{
1910 		.data_type	= QMI_OPT_FLAG,
1911 		.elem_len	= 1,
1912 		.elem_size	= sizeof(u8),
1913 		.array_type	= NO_ARRAY,
1914 		.tlv_type	= 0x17,
1915 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1916 					   shadow_reg_v3_valid),
1917 	},
1918 	{
1919 		.data_type	= QMI_DATA_LEN,
1920 		.elem_len	= 1,
1921 		.elem_size	= sizeof(u8),
1922 		.array_type	= NO_ARRAY,
1923 		.tlv_type	= 0x17,
1924 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1925 					   shadow_reg_v3_len),
1926 	},
1927 	{
1928 		.data_type	= QMI_STRUCT,
1929 		.elem_len	= QMI_WLANFW_MAX_NUM_SHADOW_REG_V3_V01,
1930 		.elem_size	= sizeof(struct qmi_wlanfw_shadow_reg_v3_cfg_s_v01),
1931 		.array_type	= VAR_LEN_ARRAY,
1932 		.tlv_type	= 0x17,
1933 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_req_msg_v01,
1934 					   shadow_reg_v3),
1935 		.ei_array	= qmi_wlanfw_shadow_reg_v3_cfg_s_v01_ei,
1936 	},
1937 	{
1938 		.data_type	= QMI_EOTI,
1939 		.array_type	= NO_ARRAY,
1940 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1941 	},
1942 };
1943 
1944 static const struct qmi_elem_info qmi_wlanfw_wlan_cfg_resp_msg_v01_ei[] = {
1945 	{
1946 		.data_type	= QMI_STRUCT,
1947 		.elem_len	= 1,
1948 		.elem_size	= sizeof(struct qmi_response_type_v01),
1949 		.array_type	= NO_ARRAY,
1950 		.tlv_type	= 0x02,
1951 		.offset		= offsetof(struct qmi_wlanfw_wlan_cfg_resp_msg_v01, resp),
1952 		.ei_array	= qmi_response_type_v01_ei,
1953 	},
1954 	{
1955 		.data_type	= QMI_EOTI,
1956 		.array_type	= NO_ARRAY,
1957 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1958 	},
1959 };
1960 
1961 static const struct qmi_elem_info qmi_wlanfw_mem_ready_ind_msg_v01_ei[] = {
1962 	{
1963 		.data_type = QMI_EOTI,
1964 		.array_type = NO_ARRAY,
1965 	},
1966 };
1967 
1968 static const struct qmi_elem_info qmi_wlanfw_fw_ready_ind_msg_v01_ei[] = {
1969 	{
1970 		.data_type = QMI_EOTI,
1971 		.array_type = NO_ARRAY,
1972 	},
1973 };
1974 
1975 static const struct qmi_elem_info qmi_wlanfw_wlan_ini_req_msg_v01_ei[] = {
1976 	{
1977 		.data_type	= QMI_OPT_FLAG,
1978 		.elem_len	= 1,
1979 		.elem_size	= sizeof(u8),
1980 		.array_type	= NO_ARRAY,
1981 		.tlv_type	= 0x10,
1982 		.offset		= offsetof(struct qmi_wlanfw_wlan_ini_req_msg_v01,
1983 					   enable_fwlog_valid),
1984 	},
1985 	{
1986 		.data_type	= QMI_UNSIGNED_1_BYTE,
1987 		.elem_len	= 1,
1988 		.elem_size	= sizeof(u8),
1989 		.array_type	= NO_ARRAY,
1990 		.tlv_type	= 0x10,
1991 		.offset		= offsetof(struct qmi_wlanfw_wlan_ini_req_msg_v01,
1992 					   enable_fwlog),
1993 	},
1994 	{
1995 		.data_type	= QMI_EOTI,
1996 		.array_type	= NO_ARRAY,
1997 		.tlv_type	= QMI_COMMON_TLV_TYPE,
1998 	},
1999 };
2000 
2001 static const struct qmi_elem_info qmi_wlanfw_wlan_ini_resp_msg_v01_ei[] = {
2002 	{
2003 		.data_type	= QMI_STRUCT,
2004 		.elem_len	= 1,
2005 		.elem_size	= sizeof(struct qmi_response_type_v01),
2006 		.array_type	= NO_ARRAY,
2007 		.tlv_type	= 0x02,
2008 		.offset		= offsetof(struct qmi_wlanfw_wlan_ini_resp_msg_v01,
2009 					   resp),
2010 		.ei_array	= qmi_response_type_v01_ei,
2011 	},
2012 	{
2013 		.data_type	= QMI_EOTI,
2014 		.array_type	= NO_ARRAY,
2015 		.tlv_type	= QMI_COMMON_TLV_TYPE,
2016 	},
2017 };
2018 
2019 static void ath12k_host_cap_parse_mlo(struct ath12k_base *ab,
2020 				      struct qmi_wlanfw_host_cap_req_msg_v01 *req)
2021 {
2022 	struct wlfw_host_mlo_chip_info_s_v01 *info;
2023 	u8 hw_link_id = 0;
2024 	int i;
2025 
2026 	if (!ab->ag->mlo_capable) {
2027 		ath12k_dbg(ab, ATH12K_DBG_QMI,
2028 			   "MLO is disabled hence skip QMI MLO cap");
2029 		return;
2030 	}
2031 
2032 	if (!ab->qmi.num_radios || ab->qmi.num_radios == U8_MAX) {
2033 		ab->single_chip_mlo_supp = false;
2034 
2035 		ath12k_dbg(ab, ATH12K_DBG_QMI,
2036 			   "skip QMI MLO cap due to invalid num_radio %d\n",
2037 			   ab->qmi.num_radios);
2038 		return;
2039 	}
2040 
2041 	req->mlo_capable_valid = 1;
2042 	req->mlo_capable = 1;
2043 	req->mlo_chip_id_valid = 1;
2044 	req->mlo_chip_id = ab->device_id;
2045 	req->mlo_group_id_valid = 1;
2046 	req->mlo_group_id = 0;
2047 	req->max_mlo_peer_valid = 1;
2048 	/* Max peer number generally won't change for the same device
2049 	 * but needs to be synced with host driver.
2050 	 */
2051 	req->max_mlo_peer = ab->hw_params->max_mlo_peer;
2052 	req->mlo_num_chips_valid = 1;
2053 	req->mlo_num_chips = 1;
2054 
2055 	info = &req->mlo_chip_info[0];
2056 	info->chip_id = ab->device_id;
2057 	info->num_local_links = ab->qmi.num_radios;
2058 
2059 	for (i = 0; i < info->num_local_links; i++) {
2060 		info->hw_link_id[i] = hw_link_id;
2061 		info->valid_mlo_link_id[i] = 1;
2062 
2063 		hw_link_id++;
2064 	}
2065 
2066 	req->mlo_chip_info_valid = 1;
2067 }
2068 
2069 /* clang stack usage explodes if this is inlined */
2070 static noinline_for_stack
2071 int ath12k_qmi_host_cap_send(struct ath12k_base *ab)
2072 {
2073 	struct qmi_wlanfw_host_cap_req_msg_v01 req = {};
2074 	struct qmi_wlanfw_host_cap_resp_msg_v01 resp = {};
2075 	struct qmi_txn txn;
2076 	int ret = 0;
2077 
2078 	req.num_clients_valid = 1;
2079 	req.num_clients = 1;
2080 	req.mem_cfg_mode = ab->qmi.target_mem_mode;
2081 	req.mem_cfg_mode_valid = 1;
2082 	req.bdf_support_valid = 1;
2083 	req.bdf_support = 1;
2084 
2085 	req.m3_support_valid = 1;
2086 	req.m3_support = 1;
2087 	req.m3_cache_support_valid = 1;
2088 	req.m3_cache_support = 1;
2089 
2090 	req.cal_done_valid = 1;
2091 	req.cal_done = ab->qmi.cal_done;
2092 
2093 	if (ab->hw_params->qmi_cnss_feature_bitmap) {
2094 		req.feature_list_valid = 1;
2095 		req.feature_list = ab->hw_params->qmi_cnss_feature_bitmap;
2096 	}
2097 
2098 	/* BRINGUP: here we are piggybacking a lot of stuff using
2099 	 * internal_sleep_clock, should it be split?
2100 	 */
2101 	if (ab->hw_params->internal_sleep_clock) {
2102 		req.nm_modem_valid = 1;
2103 
2104 		/* Notify firmware that this is non-qualcomm platform. */
2105 		req.nm_modem |= HOST_CSTATE_BIT;
2106 
2107 		/* Notify firmware about the sleep clock selection,
2108 		 * nm_modem_bit[1] is used for this purpose. Host driver on
2109 		 * non-qualcomm platforms should select internal sleep
2110 		 * clock.
2111 		 */
2112 		req.nm_modem |= SLEEP_CLOCK_SELECT_INTERNAL_BIT;
2113 		req.nm_modem |= PLATFORM_CAP_PCIE_GLOBAL_RESET;
2114 	}
2115 
2116 	ath12k_host_cap_parse_mlo(ab, &req);
2117 
2118 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2119 			   qmi_wlanfw_host_cap_resp_msg_v01_ei, &resp);
2120 	if (ret < 0)
2121 		goto out;
2122 
2123 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2124 			       QMI_WLANFW_HOST_CAP_REQ_V01,
2125 			       QMI_WLANFW_HOST_CAP_REQ_MSG_V01_MAX_LEN,
2126 			       qmi_wlanfw_host_cap_req_msg_v01_ei, &req);
2127 	if (ret < 0) {
2128 		qmi_txn_cancel(&txn);
2129 		ath12k_warn(ab, "Failed to send host capability request,err = %d\n", ret);
2130 		goto out;
2131 	}
2132 
2133 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2134 	if (ret < 0)
2135 		goto out;
2136 
2137 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2138 		ath12k_warn(ab, "Host capability request failed, result: %d, err: %d\n",
2139 			    resp.resp.result, resp.resp.error);
2140 		ret = -EINVAL;
2141 		goto out;
2142 	}
2143 
2144 out:
2145 	return ret;
2146 }
2147 
2148 static void ath12k_qmi_phy_cap_send(struct ath12k_base *ab)
2149 {
2150 	struct qmi_wlanfw_phy_cap_req_msg_v01 req = {};
2151 	struct qmi_wlanfw_phy_cap_resp_msg_v01 resp = {};
2152 	struct qmi_txn txn;
2153 	int ret;
2154 
2155 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2156 			   qmi_wlanfw_phy_cap_resp_msg_v01_ei, &resp);
2157 	if (ret < 0)
2158 		goto out;
2159 
2160 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2161 			       QMI_WLANFW_PHY_CAP_REQ_V01,
2162 			       QMI_WLANFW_PHY_CAP_REQ_MSG_V01_MAX_LEN,
2163 			       qmi_wlanfw_phy_cap_req_msg_v01_ei, &req);
2164 	if (ret < 0) {
2165 		qmi_txn_cancel(&txn);
2166 		ath12k_warn(ab, "failed to send phy capability request: %d\n", ret);
2167 		goto out;
2168 	}
2169 
2170 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2171 	if (ret < 0)
2172 		goto out;
2173 
2174 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2175 		ret = -EOPNOTSUPP;
2176 		goto out;
2177 	}
2178 
2179 	if (resp.single_chip_mlo_support_valid &&
2180 	    resp.single_chip_mlo_support)
2181 		ab->single_chip_mlo_supp = true;
2182 
2183 	if (!resp.num_phy_valid) {
2184 		ret = -ENODATA;
2185 		goto out;
2186 	}
2187 
2188 	ab->qmi.num_radios = resp.num_phy;
2189 
2190 	ath12k_dbg(ab, ATH12K_DBG_QMI,
2191 		   "phy capability resp valid %d num_phy %d valid %d board_id %d valid %d single_chip_mlo_support %d\n",
2192 		   resp.num_phy_valid, resp.num_phy,
2193 		   resp.board_id_valid, resp.board_id,
2194 		   resp.single_chip_mlo_support_valid, resp.single_chip_mlo_support);
2195 
2196 	return;
2197 
2198 out:
2199 	/* If PHY capability not advertised then rely on default num link */
2200 	ab->qmi.num_radios = ab->hw_params->def_num_link;
2201 
2202 	ath12k_dbg(ab, ATH12K_DBG_QMI,
2203 		   "no valid response from PHY capability, choose default num_phy %d\n",
2204 		   ab->qmi.num_radios);
2205 }
2206 
2207 static int ath12k_qmi_fw_ind_register_send(struct ath12k_base *ab)
2208 {
2209 	struct qmi_wlanfw_ind_register_req_msg_v01 *req;
2210 	struct qmi_wlanfw_ind_register_resp_msg_v01 *resp;
2211 	struct qmi_handle *handle = &ab->qmi.handle;
2212 	struct qmi_txn txn;
2213 	int ret;
2214 
2215 	req = kzalloc(sizeof(*req), GFP_KERNEL);
2216 	if (!req)
2217 		return -ENOMEM;
2218 
2219 	resp = kzalloc(sizeof(*resp), GFP_KERNEL);
2220 	if (!resp) {
2221 		ret = -ENOMEM;
2222 		goto resp_out;
2223 	}
2224 
2225 	req->client_id_valid = 1;
2226 	req->client_id = QMI_WLANFW_CLIENT_ID;
2227 	req->fw_ready_enable_valid = 1;
2228 	req->fw_ready_enable = 1;
2229 	req->request_mem_enable_valid = 1;
2230 	req->request_mem_enable = 1;
2231 	req->fw_mem_ready_enable_valid = 1;
2232 	req->fw_mem_ready_enable = 1;
2233 	req->cal_done_enable_valid = 1;
2234 	req->cal_done_enable = 1;
2235 	req->fw_init_done_enable_valid = 1;
2236 	req->fw_init_done_enable = 1;
2237 
2238 	req->pin_connect_result_enable_valid = 0;
2239 	req->pin_connect_result_enable = 0;
2240 
2241 	ret = qmi_txn_init(handle, &txn,
2242 			   qmi_wlanfw_ind_register_resp_msg_v01_ei, resp);
2243 	if (ret < 0)
2244 		goto out;
2245 
2246 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2247 			       QMI_WLANFW_IND_REGISTER_REQ_V01,
2248 			       QMI_WLANFW_IND_REGISTER_REQ_MSG_V01_MAX_LEN,
2249 			       qmi_wlanfw_ind_register_req_msg_v01_ei, req);
2250 	if (ret < 0) {
2251 		qmi_txn_cancel(&txn);
2252 		ath12k_warn(ab, "Failed to send indication register request, err = %d\n",
2253 			    ret);
2254 		goto out;
2255 	}
2256 
2257 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2258 	if (ret < 0) {
2259 		ath12k_warn(ab, "failed to register fw indication %d\n", ret);
2260 		goto out;
2261 	}
2262 
2263 	if (resp->resp.result != QMI_RESULT_SUCCESS_V01) {
2264 		ath12k_warn(ab, "FW Ind register request failed, result: %d, err: %d\n",
2265 			    resp->resp.result, resp->resp.error);
2266 		ret = -EINVAL;
2267 		goto out;
2268 	}
2269 
2270 out:
2271 	kfree(resp);
2272 resp_out:
2273 	kfree(req);
2274 	return ret;
2275 }
2276 
2277 /* clang stack usage explodes if this is inlined */
2278 static noinline_for_stack
2279 int ath12k_qmi_respond_fw_mem_request(struct ath12k_base *ab)
2280 {
2281 	struct qmi_wlanfw_respond_mem_req_msg_v01 *req;
2282 	struct qmi_wlanfw_respond_mem_resp_msg_v01 resp = {};
2283 	struct qmi_txn txn;
2284 	int ret = 0, i;
2285 	bool delayed;
2286 
2287 	req = kzalloc(sizeof(*req), GFP_KERNEL);
2288 	if (!req)
2289 		return -ENOMEM;
2290 
2291 	/* Some targets by default request a block of big contiguous
2292 	 * DMA memory, it's hard to allocate from kernel. So host returns
2293 	 * failure to firmware and firmware then request multiple blocks of
2294 	 * small chunk size memory.
2295 	 */
2296 	if (ab->qmi.target_mem_delayed) {
2297 		delayed = true;
2298 		ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi delays mem_request %d\n",
2299 			   ab->qmi.mem_seg_count);
2300 	} else {
2301 		delayed = false;
2302 		req->mem_seg_len = ab->qmi.mem_seg_count;
2303 		for (i = 0; i < req->mem_seg_len ; i++) {
2304 			req->mem_seg[i].addr = ab->qmi.target_mem[i].paddr;
2305 			req->mem_seg[i].size = ab->qmi.target_mem[i].size;
2306 			req->mem_seg[i].type = ab->qmi.target_mem[i].type;
2307 			ath12k_dbg(ab, ATH12K_DBG_QMI,
2308 				   "qmi req mem_seg[%d] %pad %u %u\n", i,
2309 				   &ab->qmi.target_mem[i].paddr,
2310 				   ab->qmi.target_mem[i].size,
2311 				   ab->qmi.target_mem[i].type);
2312 		}
2313 	}
2314 
2315 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2316 			   qmi_wlanfw_respond_mem_resp_msg_v01_ei, &resp);
2317 	if (ret < 0)
2318 		goto out;
2319 
2320 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2321 			       QMI_WLANFW_RESPOND_MEM_REQ_V01,
2322 			       QMI_WLANFW_RESPOND_MEM_REQ_MSG_V01_MAX_LEN,
2323 			       qmi_wlanfw_respond_mem_req_msg_v01_ei, req);
2324 	if (ret < 0) {
2325 		qmi_txn_cancel(&txn);
2326 		ath12k_warn(ab, "qmi failed to respond memory request, err = %d\n",
2327 			    ret);
2328 		goto out;
2329 	}
2330 
2331 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2332 	if (ret < 0) {
2333 		ath12k_warn(ab, "qmi failed memory request, err = %d\n", ret);
2334 		goto out;
2335 	}
2336 
2337 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2338 		/* the error response is expected when
2339 		 * target_mem_delayed is true.
2340 		 */
2341 		if (delayed && resp.resp.error == 0)
2342 			goto out;
2343 
2344 		ath12k_warn(ab, "Respond mem req failed, result: %d, err: %d\n",
2345 			    resp.resp.result, resp.resp.error);
2346 		ret = -EINVAL;
2347 		goto out;
2348 	}
2349 out:
2350 	kfree(req);
2351 	return ret;
2352 }
2353 
2354 static void ath12k_qmi_free_target_mem_chunk(struct ath12k_base *ab)
2355 {
2356 	int i;
2357 
2358 	for (i = 0; i < ab->qmi.mem_seg_count; i++) {
2359 		if (!ab->qmi.target_mem[i].v.addr)
2360 			continue;
2361 
2362 		dma_free_coherent(ab->dev,
2363 				  ab->qmi.target_mem[i].prev_size,
2364 				  ab->qmi.target_mem[i].v.addr,
2365 				  ab->qmi.target_mem[i].paddr);
2366 		ab->qmi.target_mem[i].v.addr = NULL;
2367 	}
2368 }
2369 
2370 static int ath12k_qmi_alloc_target_mem_chunk(struct ath12k_base *ab)
2371 {
2372 	int i;
2373 	struct target_mem_chunk *chunk;
2374 
2375 	ab->qmi.target_mem_delayed = false;
2376 
2377 	for (i = 0; i < ab->qmi.mem_seg_count; i++) {
2378 		chunk = &ab->qmi.target_mem[i];
2379 
2380 		/* Allocate memory for the region and the functionality supported
2381 		 * on the host. For the non-supported memory region, host does not
2382 		 * allocate memory, assigns NULL and FW will handle this without crashing.
2383 		 */
2384 		switch (chunk->type) {
2385 		case HOST_DDR_REGION_TYPE:
2386 		case M3_DUMP_REGION_TYPE:
2387 		case PAGEABLE_MEM_REGION_TYPE:
2388 		case CALDB_MEM_REGION_TYPE:
2389 			/* Firmware reloads in recovery/resume.
2390 			 * In such cases, no need to allocate memory for FW again.
2391 			 */
2392 			if (chunk->v.addr) {
2393 				if (chunk->prev_type == chunk->type &&
2394 				    chunk->prev_size == chunk->size)
2395 					goto this_chunk_done;
2396 
2397 				/* cannot reuse the existing chunk */
2398 				dma_free_coherent(ab->dev, chunk->prev_size,
2399 						  chunk->v.addr, chunk->paddr);
2400 				chunk->v.addr = NULL;
2401 			}
2402 
2403 			chunk->v.addr = dma_alloc_coherent(ab->dev,
2404 							   chunk->size,
2405 							   &chunk->paddr,
2406 							   GFP_KERNEL | __GFP_NOWARN);
2407 			if (!chunk->v.addr) {
2408 				if (chunk->size > ATH12K_QMI_MAX_CHUNK_SIZE) {
2409 					ab->qmi.target_mem_delayed = true;
2410 					ath12k_warn(ab,
2411 						    "qmi dma allocation failed (%d B type %u), will try later with small size\n",
2412 						    chunk->size,
2413 						    chunk->type);
2414 					ath12k_qmi_free_target_mem_chunk(ab);
2415 					return 0;
2416 				}
2417 				ath12k_warn(ab, "memory allocation failure for %u size: %d\n",
2418 					    chunk->type, chunk->size);
2419 				return -ENOMEM;
2420 			}
2421 
2422 			chunk->prev_type = chunk->type;
2423 			chunk->prev_size = chunk->size;
2424 this_chunk_done:
2425 			break;
2426 		default:
2427 			ath12k_warn(ab, "memory type %u not supported\n",
2428 				    chunk->type);
2429 			chunk->paddr = 0;
2430 			chunk->v.addr = NULL;
2431 			break;
2432 		}
2433 	}
2434 	return 0;
2435 }
2436 
2437 /* clang stack usage explodes if this is inlined */
2438 static noinline_for_stack
2439 int ath12k_qmi_request_target_cap(struct ath12k_base *ab)
2440 {
2441 	struct qmi_wlanfw_cap_req_msg_v01 req = {};
2442 	struct qmi_wlanfw_cap_resp_msg_v01 resp = {};
2443 	struct qmi_txn txn;
2444 	unsigned int board_id = ATH12K_BOARD_ID_DEFAULT;
2445 	int ret = 0;
2446 	int r;
2447 	int i;
2448 
2449 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2450 			   qmi_wlanfw_cap_resp_msg_v01_ei, &resp);
2451 	if (ret < 0)
2452 		goto out;
2453 
2454 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2455 			       QMI_WLANFW_CAP_REQ_V01,
2456 			       QMI_WLANFW_CAP_REQ_MSG_V01_MAX_LEN,
2457 			       qmi_wlanfw_cap_req_msg_v01_ei, &req);
2458 	if (ret < 0) {
2459 		qmi_txn_cancel(&txn);
2460 		ath12k_warn(ab, "qmi failed to send target cap request, err = %d\n",
2461 			    ret);
2462 		goto out;
2463 	}
2464 
2465 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2466 	if (ret < 0) {
2467 		ath12k_warn(ab, "qmi failed target cap request %d\n", ret);
2468 		goto out;
2469 	}
2470 
2471 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2472 		ath12k_warn(ab, "qmi targetcap req failed, result: %d, err: %d\n",
2473 			    resp.resp.result, resp.resp.error);
2474 		ret = -EINVAL;
2475 		goto out;
2476 	}
2477 
2478 	if (resp.chip_info_valid) {
2479 		ab->qmi.target.chip_id = resp.chip_info.chip_id;
2480 		ab->qmi.target.chip_family = resp.chip_info.chip_family;
2481 	}
2482 
2483 	if (resp.board_info_valid)
2484 		ab->qmi.target.board_id = resp.board_info.board_id;
2485 	else
2486 		ab->qmi.target.board_id = board_id;
2487 
2488 	if (resp.soc_info_valid)
2489 		ab->qmi.target.soc_id = resp.soc_info.soc_id;
2490 
2491 	if (resp.fw_version_info_valid) {
2492 		ab->qmi.target.fw_version = resp.fw_version_info.fw_version;
2493 		strscpy(ab->qmi.target.fw_build_timestamp,
2494 			resp.fw_version_info.fw_build_timestamp,
2495 			sizeof(ab->qmi.target.fw_build_timestamp));
2496 	}
2497 
2498 	if (resp.fw_build_id_valid)
2499 		strscpy(ab->qmi.target.fw_build_id, resp.fw_build_id,
2500 			sizeof(ab->qmi.target.fw_build_id));
2501 
2502 	if (resp.dev_mem_info_valid) {
2503 		for (i = 0; i < ATH12K_QMI_WLFW_MAX_DEV_MEM_NUM_V01; i++) {
2504 			ab->qmi.dev_mem[i].start =
2505 				resp.dev_mem[i].start;
2506 			ab->qmi.dev_mem[i].size =
2507 				resp.dev_mem[i].size;
2508 			ath12k_dbg(ab, ATH12K_DBG_QMI,
2509 				   "devmem [%d] start 0x%llx size %llu\n", i,
2510 				   ab->qmi.dev_mem[i].start,
2511 				   ab->qmi.dev_mem[i].size);
2512 		}
2513 	}
2514 
2515 	if (resp.eeprom_caldata_read_timeout_valid) {
2516 		ab->qmi.target.eeprom_caldata = resp.eeprom_caldata_read_timeout;
2517 		ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi cal data supported from eeprom\n");
2518 	}
2519 
2520 	ath12k_info(ab, "chip_id 0x%x chip_family 0x%x board_id 0x%x soc_id 0x%x\n",
2521 		    ab->qmi.target.chip_id, ab->qmi.target.chip_family,
2522 		    ab->qmi.target.board_id, ab->qmi.target.soc_id);
2523 
2524 	ath12k_info(ab, "fw_version 0x%x fw_build_timestamp %s fw_build_id %s",
2525 		    ab->qmi.target.fw_version,
2526 		    ab->qmi.target.fw_build_timestamp,
2527 		    ab->qmi.target.fw_build_id);
2528 
2529 	r = ath12k_core_check_smbios(ab);
2530 	if (r)
2531 		ath12k_dbg(ab, ATH12K_DBG_QMI, "SMBIOS bdf variant name not set.\n");
2532 
2533 out:
2534 	return ret;
2535 }
2536 
2537 static int ath12k_qmi_load_file_target_mem(struct ath12k_base *ab,
2538 					   const u8 *data, u32 len, u8 type)
2539 {
2540 	struct qmi_wlanfw_bdf_download_req_msg_v01 *req;
2541 	struct qmi_wlanfw_bdf_download_resp_msg_v01 resp = {};
2542 	struct qmi_txn txn;
2543 	const u8 *temp = data;
2544 	int ret = 0;
2545 	u32 remaining = len;
2546 
2547 	req = kzalloc(sizeof(*req), GFP_KERNEL);
2548 	if (!req)
2549 		return -ENOMEM;
2550 
2551 	while (remaining) {
2552 		req->valid = 1;
2553 		req->file_id_valid = 1;
2554 		req->file_id = ab->qmi.target.board_id;
2555 		req->total_size_valid = 1;
2556 		req->total_size = remaining;
2557 		req->seg_id_valid = 1;
2558 		req->data_valid = 1;
2559 		req->bdf_type = type;
2560 		req->bdf_type_valid = 1;
2561 		req->end_valid = 1;
2562 		req->end = 0;
2563 
2564 		if (remaining > QMI_WLANFW_MAX_DATA_SIZE_V01) {
2565 			req->data_len = QMI_WLANFW_MAX_DATA_SIZE_V01;
2566 		} else {
2567 			req->data_len = remaining;
2568 			req->end = 1;
2569 		}
2570 
2571 		if (type == ATH12K_QMI_FILE_TYPE_EEPROM) {
2572 			req->data_valid = 0;
2573 			req->end = 1;
2574 			req->data_len = ATH12K_QMI_MAX_BDF_FILE_NAME_SIZE;
2575 		} else {
2576 			memcpy(req->data, temp, req->data_len);
2577 		}
2578 
2579 		ret = qmi_txn_init(&ab->qmi.handle, &txn,
2580 				   qmi_wlanfw_bdf_download_resp_msg_v01_ei,
2581 				   &resp);
2582 		if (ret < 0)
2583 			goto out;
2584 
2585 		ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi bdf download req fixed addr type %d\n",
2586 			   type);
2587 
2588 		ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2589 				       QMI_WLANFW_BDF_DOWNLOAD_REQ_V01,
2590 				       QMI_WLANFW_BDF_DOWNLOAD_REQ_MSG_V01_MAX_LEN,
2591 				       qmi_wlanfw_bdf_download_req_msg_v01_ei, req);
2592 		if (ret < 0) {
2593 			qmi_txn_cancel(&txn);
2594 			goto out;
2595 		}
2596 
2597 		ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2598 		if (ret < 0)
2599 			goto out;
2600 
2601 		if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2602 			ath12k_warn(ab, "qmi BDF download failed, result: %d, err: %d\n",
2603 				    resp.resp.result, resp.resp.error);
2604 			ret = -EINVAL;
2605 			goto out;
2606 		}
2607 
2608 		if (type == ATH12K_QMI_FILE_TYPE_EEPROM) {
2609 			remaining = 0;
2610 		} else {
2611 			remaining -= req->data_len;
2612 			temp += req->data_len;
2613 			req->seg_id++;
2614 			ath12k_dbg(ab, ATH12K_DBG_QMI,
2615 				   "qmi bdf download request remaining %i\n",
2616 				   remaining);
2617 		}
2618 	}
2619 
2620 out:
2621 	kfree(req);
2622 	return ret;
2623 }
2624 
2625 /* clang stack usage explodes if this is inlined */
2626 static noinline_for_stack
2627 int ath12k_qmi_load_bdf_qmi(struct ath12k_base *ab,
2628 			    enum ath12k_qmi_bdf_type type)
2629 {
2630 	struct device *dev = ab->dev;
2631 	char filename[ATH12K_QMI_MAX_BDF_FILE_NAME_SIZE];
2632 	const struct firmware *fw_entry;
2633 	struct ath12k_board_data bd;
2634 	u32 fw_size, file_type;
2635 	int ret = 0;
2636 	const u8 *tmp;
2637 
2638 	memset(&bd, 0, sizeof(bd));
2639 
2640 	switch (type) {
2641 	case ATH12K_QMI_BDF_TYPE_ELF:
2642 		ret = ath12k_core_fetch_bdf(ab, &bd);
2643 		if (ret) {
2644 			ath12k_warn(ab, "qmi failed to load bdf:\n");
2645 			goto out;
2646 		}
2647 
2648 		if (bd.len >= SELFMAG && memcmp(bd.data, ELFMAG, SELFMAG) == 0)
2649 			type = ATH12K_QMI_BDF_TYPE_ELF;
2650 		else
2651 			type = ATH12K_QMI_BDF_TYPE_BIN;
2652 
2653 		break;
2654 	case ATH12K_QMI_BDF_TYPE_REGDB:
2655 		ret = ath12k_core_fetch_regdb(ab, &bd);
2656 		if (ret) {
2657 			ath12k_warn(ab, "qmi failed to load regdb bin:\n");
2658 			goto out;
2659 		}
2660 		break;
2661 	case ATH12K_QMI_BDF_TYPE_CALIBRATION:
2662 
2663 		if (ab->qmi.target.eeprom_caldata) {
2664 			file_type = ATH12K_QMI_FILE_TYPE_EEPROM;
2665 			tmp = filename;
2666 			fw_size = ATH12K_QMI_MAX_BDF_FILE_NAME_SIZE;
2667 		} else {
2668 			file_type = ATH12K_QMI_FILE_TYPE_CALDATA;
2669 
2670 			/* cal-<bus>-<id>.bin */
2671 			snprintf(filename, sizeof(filename), "cal-%s-%s.bin",
2672 				 ath12k_bus_str(ab->hif.bus), dev_name(dev));
2673 			fw_entry = ath12k_core_firmware_request(ab, filename);
2674 			if (!IS_ERR(fw_entry))
2675 				goto success;
2676 
2677 			fw_entry = ath12k_core_firmware_request(ab,
2678 								ATH12K_DEFAULT_CAL_FILE);
2679 			if (IS_ERR(fw_entry)) {
2680 				ret = PTR_ERR(fw_entry);
2681 				ath12k_warn(ab,
2682 					    "qmi failed to load CAL data file:%s\n",
2683 					    filename);
2684 				goto out;
2685 			}
2686 
2687 success:
2688 			fw_size = min_t(u32, ab->hw_params->fw.board_size,
2689 					fw_entry->size);
2690 			tmp = fw_entry->data;
2691 		}
2692 		ret = ath12k_qmi_load_file_target_mem(ab, tmp, fw_size, file_type);
2693 		if (ret < 0) {
2694 			ath12k_warn(ab, "qmi failed to load caldata\n");
2695 			goto out_qmi_cal;
2696 		}
2697 
2698 		ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi caldata downloaded: type: %u\n",
2699 			   file_type);
2700 
2701 out_qmi_cal:
2702 		if (!ab->qmi.target.eeprom_caldata)
2703 			release_firmware(fw_entry);
2704 		return ret;
2705 	default:
2706 		ath12k_warn(ab, "unknown file type for load %d", type);
2707 		goto out;
2708 	}
2709 
2710 	ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi bdf_type %d\n", type);
2711 
2712 	fw_size = min_t(u32, ab->hw_params->fw.board_size, bd.len);
2713 
2714 	ret = ath12k_qmi_load_file_target_mem(ab, bd.data, fw_size, type);
2715 	if (ret < 0)
2716 		ath12k_warn(ab, "qmi failed to load bdf file\n");
2717 
2718 out:
2719 	ath12k_core_free_bdf(ab, &bd);
2720 	ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi BDF download sequence completed\n");
2721 
2722 	return ret;
2723 }
2724 
2725 static void ath12k_qmi_m3_free(struct ath12k_base *ab)
2726 {
2727 	struct m3_mem_region *m3_mem = &ab->qmi.m3_mem;
2728 
2729 	if (!m3_mem->vaddr)
2730 		return;
2731 
2732 	dma_free_coherent(ab->dev, m3_mem->size,
2733 			  m3_mem->vaddr, m3_mem->paddr);
2734 	m3_mem->vaddr = NULL;
2735 	m3_mem->size = 0;
2736 }
2737 
2738 static int ath12k_qmi_m3_load(struct ath12k_base *ab)
2739 {
2740 	struct m3_mem_region *m3_mem = &ab->qmi.m3_mem;
2741 	const struct firmware *fw = NULL;
2742 	const void *m3_data;
2743 	char path[100];
2744 	size_t m3_len;
2745 	int ret;
2746 
2747 	if (ab->fw.m3_data && ab->fw.m3_len > 0) {
2748 		/* firmware-N.bin had a m3 firmware file so use that */
2749 		m3_data = ab->fw.m3_data;
2750 		m3_len = ab->fw.m3_len;
2751 	} else {
2752 		/* No m3 file in firmware-N.bin so try to request old
2753 		 * separate m3.bin.
2754 		 */
2755 		fw = ath12k_core_firmware_request(ab, ATH12K_M3_FILE);
2756 		if (IS_ERR(fw)) {
2757 			ret = PTR_ERR(fw);
2758 			ath12k_core_create_firmware_path(ab, ATH12K_M3_FILE,
2759 							 path, sizeof(path));
2760 			ath12k_err(ab, "failed to load %s: %d\n", path, ret);
2761 			return ret;
2762 		}
2763 
2764 		m3_data = fw->data;
2765 		m3_len = fw->size;
2766 	}
2767 
2768 	/* In recovery/resume cases, M3 buffer is not freed, try to reuse that */
2769 	if (m3_mem->vaddr) {
2770 		if (m3_mem->size >= m3_len)
2771 			goto skip_m3_alloc;
2772 
2773 		/* Old buffer is too small, free and reallocate */
2774 		ath12k_qmi_m3_free(ab);
2775 	}
2776 
2777 	m3_mem->vaddr = dma_alloc_coherent(ab->dev,
2778 					   m3_len, &m3_mem->paddr,
2779 					   GFP_KERNEL);
2780 	if (!m3_mem->vaddr) {
2781 		ath12k_err(ab, "failed to allocate memory for M3 with size %zu\n",
2782 			   fw->size);
2783 		ret = -ENOMEM;
2784 		goto out;
2785 	}
2786 
2787 skip_m3_alloc:
2788 	memcpy(m3_mem->vaddr, m3_data, m3_len);
2789 	m3_mem->size = m3_len;
2790 
2791 	ret = 0;
2792 
2793 out:
2794 	release_firmware(fw);
2795 
2796 	return ret;
2797 }
2798 
2799 /* clang stack usage explodes if this is inlined */
2800 static noinline_for_stack
2801 int ath12k_qmi_wlanfw_m3_info_send(struct ath12k_base *ab)
2802 {
2803 	struct m3_mem_region *m3_mem = &ab->qmi.m3_mem;
2804 	struct qmi_wlanfw_m3_info_req_msg_v01 req = {};
2805 	struct qmi_wlanfw_m3_info_resp_msg_v01 resp = {};
2806 	struct qmi_txn txn;
2807 	int ret = 0;
2808 
2809 	ret = ath12k_qmi_m3_load(ab);
2810 	if (ret) {
2811 		ath12k_err(ab, "failed to load m3 firmware: %d", ret);
2812 		return ret;
2813 	}
2814 
2815 	req.addr = m3_mem->paddr;
2816 	req.size = m3_mem->size;
2817 
2818 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2819 			   qmi_wlanfw_m3_info_resp_msg_v01_ei, &resp);
2820 	if (ret < 0)
2821 		goto out;
2822 
2823 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2824 			       QMI_WLANFW_M3_INFO_REQ_V01,
2825 			       QMI_WLANFW_M3_INFO_REQ_MSG_V01_MAX_MSG_LEN,
2826 			       qmi_wlanfw_m3_info_req_msg_v01_ei, &req);
2827 	if (ret < 0) {
2828 		qmi_txn_cancel(&txn);
2829 		ath12k_warn(ab, "qmi failed to send M3 information request, err = %d\n",
2830 			    ret);
2831 		goto out;
2832 	}
2833 
2834 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2835 	if (ret < 0) {
2836 		ath12k_warn(ab, "qmi failed M3 information request %d\n", ret);
2837 		goto out;
2838 	}
2839 
2840 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2841 		ath12k_warn(ab, "qmi M3 info request failed, result: %d, err: %d\n",
2842 			    resp.resp.result, resp.resp.error);
2843 		ret = -EINVAL;
2844 		goto out;
2845 	}
2846 out:
2847 	return ret;
2848 }
2849 
2850 static int ath12k_qmi_wlanfw_mode_send(struct ath12k_base *ab,
2851 				       u32 mode)
2852 {
2853 	struct qmi_wlanfw_wlan_mode_req_msg_v01 req = {};
2854 	struct qmi_wlanfw_wlan_mode_resp_msg_v01 resp = {};
2855 	struct qmi_txn txn;
2856 	int ret = 0;
2857 
2858 	req.mode = mode;
2859 	req.hw_debug_valid = 1;
2860 	req.hw_debug = 0;
2861 
2862 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2863 			   qmi_wlanfw_wlan_mode_resp_msg_v01_ei, &resp);
2864 	if (ret < 0)
2865 		goto out;
2866 
2867 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2868 			       QMI_WLANFW_WLAN_MODE_REQ_V01,
2869 			       QMI_WLANFW_WLAN_MODE_REQ_MSG_V01_MAX_LEN,
2870 			       qmi_wlanfw_wlan_mode_req_msg_v01_ei, &req);
2871 	if (ret < 0) {
2872 		qmi_txn_cancel(&txn);
2873 		ath12k_warn(ab, "qmi failed to send mode request, mode: %d, err = %d\n",
2874 			    mode, ret);
2875 		goto out;
2876 	}
2877 
2878 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2879 	if (ret < 0) {
2880 		if (mode == ATH12K_FIRMWARE_MODE_OFF && ret == -ENETRESET) {
2881 			ath12k_warn(ab, "WLFW service is dis-connected\n");
2882 			return 0;
2883 		}
2884 		ath12k_warn(ab, "qmi failed set mode request, mode: %d, err = %d\n",
2885 			    mode, ret);
2886 		goto out;
2887 	}
2888 
2889 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2890 		ath12k_warn(ab, "Mode request failed, mode: %d, result: %d err: %d\n",
2891 			    mode, resp.resp.result, resp.resp.error);
2892 		ret = -EINVAL;
2893 		goto out;
2894 	}
2895 
2896 out:
2897 	return ret;
2898 }
2899 
2900 static int ath12k_qmi_wlanfw_wlan_cfg_send(struct ath12k_base *ab)
2901 {
2902 	struct qmi_wlanfw_wlan_cfg_req_msg_v01 *req;
2903 	struct qmi_wlanfw_wlan_cfg_resp_msg_v01 resp = {};
2904 	struct ce_pipe_config *ce_cfg;
2905 	struct service_to_pipe *svc_cfg;
2906 	struct qmi_txn txn;
2907 	int ret = 0, pipe_num;
2908 
2909 	ce_cfg	= (struct ce_pipe_config *)ab->qmi.ce_cfg.tgt_ce;
2910 	svc_cfg	= (struct service_to_pipe *)ab->qmi.ce_cfg.svc_to_ce_map;
2911 
2912 	req = kzalloc(sizeof(*req), GFP_KERNEL);
2913 	if (!req)
2914 		return -ENOMEM;
2915 
2916 	req->host_version_valid = 1;
2917 	strscpy(req->host_version, ATH12K_HOST_VERSION_STRING,
2918 		sizeof(req->host_version));
2919 
2920 	req->tgt_cfg_valid = 1;
2921 	/* This is number of CE configs */
2922 	req->tgt_cfg_len = ab->qmi.ce_cfg.tgt_ce_len;
2923 	for (pipe_num = 0; pipe_num < req->tgt_cfg_len ; pipe_num++) {
2924 		req->tgt_cfg[pipe_num].pipe_num = ce_cfg[pipe_num].pipenum;
2925 		req->tgt_cfg[pipe_num].pipe_dir = ce_cfg[pipe_num].pipedir;
2926 		req->tgt_cfg[pipe_num].nentries = ce_cfg[pipe_num].nentries;
2927 		req->tgt_cfg[pipe_num].nbytes_max = ce_cfg[pipe_num].nbytes_max;
2928 		req->tgt_cfg[pipe_num].flags = ce_cfg[pipe_num].flags;
2929 	}
2930 
2931 	req->svc_cfg_valid = 1;
2932 	/* This is number of Service/CE configs */
2933 	req->svc_cfg_len = ab->qmi.ce_cfg.svc_to_ce_map_len;
2934 	for (pipe_num = 0; pipe_num < req->svc_cfg_len; pipe_num++) {
2935 		req->svc_cfg[pipe_num].service_id = svc_cfg[pipe_num].service_id;
2936 		req->svc_cfg[pipe_num].pipe_dir = svc_cfg[pipe_num].pipedir;
2937 		req->svc_cfg[pipe_num].pipe_num = svc_cfg[pipe_num].pipenum;
2938 	}
2939 
2940 	/* set shadow v3 configuration */
2941 	if (ab->hw_params->supports_shadow_regs) {
2942 		req->shadow_reg_v3_valid = 1;
2943 		req->shadow_reg_v3_len = min_t(u32,
2944 					       ab->qmi.ce_cfg.shadow_reg_v3_len,
2945 					       QMI_WLANFW_MAX_NUM_SHADOW_REG_V3_V01);
2946 		memcpy(&req->shadow_reg_v3, ab->qmi.ce_cfg.shadow_reg_v3,
2947 		       sizeof(u32) * req->shadow_reg_v3_len);
2948 	} else {
2949 		req->shadow_reg_v3_valid = 0;
2950 	}
2951 
2952 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2953 			   qmi_wlanfw_wlan_cfg_resp_msg_v01_ei, &resp);
2954 	if (ret < 0)
2955 		goto out;
2956 
2957 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
2958 			       QMI_WLANFW_WLAN_CFG_REQ_V01,
2959 			       QMI_WLANFW_WLAN_CFG_REQ_MSG_V01_MAX_LEN,
2960 			       qmi_wlanfw_wlan_cfg_req_msg_v01_ei, req);
2961 	if (ret < 0) {
2962 		qmi_txn_cancel(&txn);
2963 		ath12k_warn(ab, "qmi failed to send wlan config request, err = %d\n",
2964 			    ret);
2965 		goto out;
2966 	}
2967 
2968 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
2969 	if (ret < 0) {
2970 		ath12k_warn(ab, "qmi failed wlan config request, err = %d\n", ret);
2971 		goto out;
2972 	}
2973 
2974 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
2975 		ath12k_warn(ab, "qmi wlan config request failed, result: %d, err: %d\n",
2976 			    resp.resp.result, resp.resp.error);
2977 		ret = -EINVAL;
2978 		goto out;
2979 	}
2980 
2981 out:
2982 	kfree(req);
2983 	return ret;
2984 }
2985 
2986 static int ath12k_qmi_wlanfw_wlan_ini_send(struct ath12k_base *ab)
2987 {
2988 	struct qmi_wlanfw_wlan_ini_resp_msg_v01 resp = {};
2989 	struct qmi_wlanfw_wlan_ini_req_msg_v01 req = {};
2990 	struct qmi_txn txn;
2991 	int ret;
2992 
2993 	req.enable_fwlog_valid = true;
2994 	req.enable_fwlog = 1;
2995 
2996 	ret = qmi_txn_init(&ab->qmi.handle, &txn,
2997 			   qmi_wlanfw_wlan_ini_resp_msg_v01_ei, &resp);
2998 	if (ret < 0)
2999 		goto out;
3000 
3001 	ret = qmi_send_request(&ab->qmi.handle, NULL, &txn,
3002 			       ATH12K_QMI_WLANFW_WLAN_INI_REQ_V01,
3003 			       QMI_WLANFW_WLAN_INI_REQ_MSG_V01_MAX_LEN,
3004 			       qmi_wlanfw_wlan_ini_req_msg_v01_ei, &req);
3005 	if (ret < 0) {
3006 		qmi_txn_cancel(&txn);
3007 		ath12k_warn(ab, "failed to send QMI wlan ini request: %d\n",
3008 			    ret);
3009 		goto out;
3010 	}
3011 
3012 	ret = qmi_txn_wait(&txn, msecs_to_jiffies(ATH12K_QMI_WLANFW_TIMEOUT_MS));
3013 	if (ret < 0) {
3014 		ath12k_warn(ab, "failed to receive QMI wlan ini request: %d\n", ret);
3015 		goto out;
3016 	}
3017 
3018 	if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
3019 		ath12k_warn(ab, "QMI wlan ini response failure: %d %d\n",
3020 			    resp.resp.result, resp.resp.error);
3021 		ret = -EINVAL;
3022 		goto out;
3023 	}
3024 
3025 out:
3026 	return ret;
3027 }
3028 
3029 void ath12k_qmi_firmware_stop(struct ath12k_base *ab)
3030 {
3031 	int ret;
3032 
3033 	clear_bit(ATH12K_FLAG_QMI_FW_READY_COMPLETE, &ab->dev_flags);
3034 
3035 	ret = ath12k_qmi_wlanfw_mode_send(ab, ATH12K_FIRMWARE_MODE_OFF);
3036 	if (ret < 0) {
3037 		ath12k_warn(ab, "qmi failed to send wlan mode off\n");
3038 		return;
3039 	}
3040 }
3041 
3042 int ath12k_qmi_firmware_start(struct ath12k_base *ab,
3043 			      u32 mode)
3044 {
3045 	int ret;
3046 
3047 	ret = ath12k_qmi_wlanfw_wlan_ini_send(ab);
3048 	if (ret < 0) {
3049 		ath12k_warn(ab, "qmi failed to send wlan fw ini: %d\n", ret);
3050 		return ret;
3051 	}
3052 
3053 	ret = ath12k_qmi_wlanfw_wlan_cfg_send(ab);
3054 	if (ret < 0) {
3055 		ath12k_warn(ab, "qmi failed to send wlan cfg:%d\n", ret);
3056 		return ret;
3057 	}
3058 
3059 	ret = ath12k_qmi_wlanfw_mode_send(ab, mode);
3060 	if (ret < 0) {
3061 		ath12k_warn(ab, "qmi failed to send wlan fw mode:%d\n", ret);
3062 		return ret;
3063 	}
3064 
3065 	return 0;
3066 }
3067 
3068 static int
3069 ath12k_qmi_driver_event_post(struct ath12k_qmi *qmi,
3070 			     enum ath12k_qmi_event_type type,
3071 			     void *data)
3072 {
3073 	struct ath12k_qmi_driver_event *event;
3074 
3075 	event = kzalloc(sizeof(*event), GFP_ATOMIC);
3076 	if (!event)
3077 		return -ENOMEM;
3078 
3079 	event->type = type;
3080 	event->data = data;
3081 
3082 	spin_lock(&qmi->event_lock);
3083 	list_add_tail(&event->list, &qmi->event_list);
3084 	spin_unlock(&qmi->event_lock);
3085 
3086 	queue_work(qmi->event_wq, &qmi->event_work);
3087 
3088 	return 0;
3089 }
3090 
3091 void ath12k_qmi_trigger_host_cap(struct ath12k_base *ab)
3092 {
3093 	struct ath12k_qmi *qmi = &ab->qmi;
3094 
3095 	spin_lock(&qmi->event_lock);
3096 
3097 	if (ath12k_qmi_get_event_block(qmi))
3098 		ath12k_qmi_set_event_block(qmi, false);
3099 
3100 	spin_unlock(&qmi->event_lock);
3101 
3102 	ath12k_dbg(ab, ATH12K_DBG_QMI, "trigger host cap for device id %d\n",
3103 		   ab->device_id);
3104 
3105 	ath12k_qmi_driver_event_post(qmi, ATH12K_QMI_EVENT_HOST_CAP, NULL);
3106 }
3107 
3108 static bool ath12k_qmi_hw_group_host_cap_ready(struct ath12k_hw_group *ag)
3109 {
3110 	struct ath12k_base *ab;
3111 	int i;
3112 
3113 	for (i = 0; i < ag->num_devices; i++) {
3114 		ab = ag->ab[i];
3115 
3116 		if (!(ab && ab->qmi.num_radios != U8_MAX))
3117 			return false;
3118 	}
3119 
3120 	return true;
3121 }
3122 
3123 static struct ath12k_base *ath12k_qmi_hw_group_find_blocked(struct ath12k_hw_group *ag)
3124 {
3125 	struct ath12k_base *ab;
3126 	int i;
3127 
3128 	lockdep_assert_held(&ag->mutex);
3129 
3130 	for (i = 0; i < ag->num_devices; i++) {
3131 		ab = ag->ab[i];
3132 		if (!ab)
3133 			continue;
3134 
3135 		spin_lock(&ab->qmi.event_lock);
3136 
3137 		if (ath12k_qmi_get_event_block(&ab->qmi)) {
3138 			spin_unlock(&ab->qmi.event_lock);
3139 			return ab;
3140 		}
3141 
3142 		spin_unlock(&ab->qmi.event_lock);
3143 	}
3144 
3145 	return NULL;
3146 }
3147 
3148 /* clang stack usage explodes if this is inlined */
3149 static noinline_for_stack
3150 int ath12k_qmi_event_server_arrive(struct ath12k_qmi *qmi)
3151 {
3152 	struct ath12k_base *ab = qmi->ab, *block_ab;
3153 	struct ath12k_hw_group *ag = ab->ag;
3154 	int ret;
3155 
3156 	ath12k_qmi_phy_cap_send(ab);
3157 
3158 	ret = ath12k_qmi_fw_ind_register_send(ab);
3159 	if (ret < 0) {
3160 		ath12k_warn(ab, "qmi failed to send FW indication QMI:%d\n", ret);
3161 		return ret;
3162 	}
3163 
3164 	spin_lock(&qmi->event_lock);
3165 
3166 	ath12k_qmi_set_event_block(qmi, true);
3167 
3168 	spin_unlock(&qmi->event_lock);
3169 
3170 	mutex_lock(&ag->mutex);
3171 
3172 	if (ath12k_qmi_hw_group_host_cap_ready(ag)) {
3173 		ath12k_core_hw_group_set_mlo_capable(ag);
3174 
3175 		block_ab = ath12k_qmi_hw_group_find_blocked(ag);
3176 		if (block_ab)
3177 			ath12k_qmi_trigger_host_cap(block_ab);
3178 	}
3179 
3180 	mutex_unlock(&ag->mutex);
3181 
3182 	return ret;
3183 }
3184 
3185 /* clang stack usage explodes if this is inlined */
3186 static noinline_for_stack
3187 int ath12k_qmi_event_mem_request(struct ath12k_qmi *qmi)
3188 {
3189 	struct ath12k_base *ab = qmi->ab;
3190 	int ret;
3191 
3192 	ret = ath12k_qmi_respond_fw_mem_request(ab);
3193 	if (ret < 0) {
3194 		ath12k_warn(ab, "qmi failed to respond fw mem req:%d\n", ret);
3195 		return ret;
3196 	}
3197 
3198 	return ret;
3199 }
3200 
3201 /* clang stack usage explodes if this is inlined */
3202 static noinline_for_stack
3203 int ath12k_qmi_event_load_bdf(struct ath12k_qmi *qmi)
3204 {
3205 	struct ath12k_base *ab = qmi->ab;
3206 	int ret;
3207 
3208 	ret = ath12k_qmi_request_target_cap(ab);
3209 	if (ret < 0) {
3210 		ath12k_warn(ab, "qmi failed to req target capabilities:%d\n", ret);
3211 		return ret;
3212 	}
3213 
3214 	ret = ath12k_qmi_load_bdf_qmi(ab, ATH12K_QMI_BDF_TYPE_REGDB);
3215 	if (ret < 0) {
3216 		ath12k_warn(ab, "qmi failed to load regdb file:%d\n", ret);
3217 		return ret;
3218 	}
3219 
3220 	ret = ath12k_qmi_load_bdf_qmi(ab, ATH12K_QMI_BDF_TYPE_ELF);
3221 	if (ret < 0) {
3222 		ath12k_warn(ab, "qmi failed to load board data file:%d\n", ret);
3223 		return ret;
3224 	}
3225 
3226 	if (ab->hw_params->download_calib) {
3227 		ret = ath12k_qmi_load_bdf_qmi(ab, ATH12K_QMI_BDF_TYPE_CALIBRATION);
3228 		if (ret < 0)
3229 			ath12k_warn(ab, "qmi failed to load calibrated data :%d\n", ret);
3230 	}
3231 
3232 	ret = ath12k_qmi_wlanfw_m3_info_send(ab);
3233 	if (ret < 0) {
3234 		ath12k_warn(ab, "qmi failed to send m3 info req:%d\n", ret);
3235 		return ret;
3236 	}
3237 
3238 	return ret;
3239 }
3240 
3241 static void ath12k_qmi_msg_mem_request_cb(struct qmi_handle *qmi_hdl,
3242 					  struct sockaddr_qrtr *sq,
3243 					  struct qmi_txn *txn,
3244 					  const void *data)
3245 {
3246 	struct ath12k_qmi *qmi = container_of(qmi_hdl, struct ath12k_qmi, handle);
3247 	struct ath12k_base *ab = qmi->ab;
3248 	const struct qmi_wlanfw_request_mem_ind_msg_v01 *msg = data;
3249 	int i, ret;
3250 
3251 	ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi firmware request memory request\n");
3252 
3253 	if (msg->mem_seg_len == 0 ||
3254 	    msg->mem_seg_len > ATH12K_QMI_WLANFW_MAX_NUM_MEM_SEG_V01)
3255 		ath12k_warn(ab, "Invalid memory segment length: %u\n",
3256 			    msg->mem_seg_len);
3257 
3258 	ab->qmi.mem_seg_count = msg->mem_seg_len;
3259 
3260 	for (i = 0; i < qmi->mem_seg_count ; i++) {
3261 		ab->qmi.target_mem[i].type = msg->mem_seg[i].type;
3262 		ab->qmi.target_mem[i].size = msg->mem_seg[i].size;
3263 		ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi mem seg type %d size %d\n",
3264 			   msg->mem_seg[i].type, msg->mem_seg[i].size);
3265 	}
3266 
3267 	ret = ath12k_qmi_alloc_target_mem_chunk(ab);
3268 	if (ret) {
3269 		ath12k_warn(ab, "qmi failed to alloc target memory: %d\n",
3270 			    ret);
3271 		return;
3272 	}
3273 
3274 	ath12k_qmi_driver_event_post(qmi, ATH12K_QMI_EVENT_REQUEST_MEM, NULL);
3275 }
3276 
3277 static void ath12k_qmi_msg_mem_ready_cb(struct qmi_handle *qmi_hdl,
3278 					struct sockaddr_qrtr *sq,
3279 					struct qmi_txn *txn,
3280 					const void *decoded)
3281 {
3282 	struct ath12k_qmi *qmi = container_of(qmi_hdl, struct ath12k_qmi, handle);
3283 	struct ath12k_base *ab = qmi->ab;
3284 
3285 	ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi firmware memory ready indication\n");
3286 	ath12k_qmi_driver_event_post(qmi, ATH12K_QMI_EVENT_FW_MEM_READY, NULL);
3287 }
3288 
3289 static void ath12k_qmi_msg_fw_ready_cb(struct qmi_handle *qmi_hdl,
3290 				       struct sockaddr_qrtr *sq,
3291 				       struct qmi_txn *txn,
3292 				       const void *decoded)
3293 {
3294 	struct ath12k_qmi *qmi = container_of(qmi_hdl, struct ath12k_qmi, handle);
3295 	struct ath12k_base *ab = qmi->ab;
3296 
3297 	ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi firmware ready\n");
3298 	ath12k_qmi_driver_event_post(qmi, ATH12K_QMI_EVENT_FW_READY, NULL);
3299 }
3300 
3301 static const struct qmi_msg_handler ath12k_qmi_msg_handlers[] = {
3302 	{
3303 		.type = QMI_INDICATION,
3304 		.msg_id = QMI_WLFW_REQUEST_MEM_IND_V01,
3305 		.ei = qmi_wlanfw_request_mem_ind_msg_v01_ei,
3306 		.decoded_size = sizeof(struct qmi_wlanfw_request_mem_ind_msg_v01),
3307 		.fn = ath12k_qmi_msg_mem_request_cb,
3308 	},
3309 	{
3310 		.type = QMI_INDICATION,
3311 		.msg_id = QMI_WLFW_FW_MEM_READY_IND_V01,
3312 		.ei = qmi_wlanfw_mem_ready_ind_msg_v01_ei,
3313 		.decoded_size = sizeof(struct qmi_wlanfw_fw_mem_ready_ind_msg_v01),
3314 		.fn = ath12k_qmi_msg_mem_ready_cb,
3315 	},
3316 	{
3317 		.type = QMI_INDICATION,
3318 		.msg_id = QMI_WLFW_FW_READY_IND_V01,
3319 		.ei = qmi_wlanfw_fw_ready_ind_msg_v01_ei,
3320 		.decoded_size = sizeof(struct qmi_wlanfw_fw_ready_ind_msg_v01),
3321 		.fn = ath12k_qmi_msg_fw_ready_cb,
3322 	},
3323 
3324 	/* end of list */
3325 	{},
3326 };
3327 
3328 static int ath12k_qmi_ops_new_server(struct qmi_handle *qmi_hdl,
3329 				     struct qmi_service *service)
3330 {
3331 	struct ath12k_qmi *qmi = container_of(qmi_hdl, struct ath12k_qmi, handle);
3332 	struct ath12k_base *ab = qmi->ab;
3333 	struct sockaddr_qrtr *sq = &qmi->sq;
3334 	int ret;
3335 
3336 	sq->sq_family = AF_QIPCRTR;
3337 	sq->sq_node = service->node;
3338 	sq->sq_port = service->port;
3339 
3340 	ret = kernel_connect(qmi_hdl->sock, (struct sockaddr *)sq,
3341 			     sizeof(*sq), 0);
3342 	if (ret) {
3343 		ath12k_warn(ab, "qmi failed to connect to remote service %d\n", ret);
3344 		return ret;
3345 	}
3346 
3347 	ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi wifi fw qmi service connected\n");
3348 	ath12k_qmi_driver_event_post(qmi, ATH12K_QMI_EVENT_SERVER_ARRIVE, NULL);
3349 
3350 	return ret;
3351 }
3352 
3353 static void ath12k_qmi_ops_del_server(struct qmi_handle *qmi_hdl,
3354 				      struct qmi_service *service)
3355 {
3356 	struct ath12k_qmi *qmi = container_of(qmi_hdl, struct ath12k_qmi, handle);
3357 	struct ath12k_base *ab = qmi->ab;
3358 
3359 	ath12k_dbg(ab, ATH12K_DBG_QMI, "qmi wifi fw del server\n");
3360 	ath12k_qmi_driver_event_post(qmi, ATH12K_QMI_EVENT_SERVER_EXIT, NULL);
3361 }
3362 
3363 static const struct qmi_ops ath12k_qmi_ops = {
3364 	.new_server = ath12k_qmi_ops_new_server,
3365 	.del_server = ath12k_qmi_ops_del_server,
3366 };
3367 
3368 static int ath12k_qmi_event_host_cap(struct ath12k_qmi *qmi)
3369 {
3370 	struct ath12k_base *ab = qmi->ab;
3371 	int ret;
3372 
3373 	ret = ath12k_qmi_host_cap_send(ab);
3374 	if (ret < 0) {
3375 		ath12k_warn(ab, "failed to send qmi host cap for device id %d: %d\n",
3376 			    ab->device_id, ret);
3377 		return ret;
3378 	}
3379 
3380 	return ret;
3381 }
3382 
3383 static void ath12k_qmi_driver_event_work(struct work_struct *work)
3384 {
3385 	struct ath12k_qmi *qmi = container_of(work, struct ath12k_qmi,
3386 					      event_work);
3387 	struct ath12k_qmi_driver_event *event;
3388 	struct ath12k_base *ab = qmi->ab;
3389 	int ret;
3390 
3391 	spin_lock(&qmi->event_lock);
3392 	while (!list_empty(&qmi->event_list)) {
3393 		event = list_first_entry(&qmi->event_list,
3394 					 struct ath12k_qmi_driver_event, list);
3395 		list_del(&event->list);
3396 		spin_unlock(&qmi->event_lock);
3397 
3398 		if (test_bit(ATH12K_FLAG_UNREGISTERING, &ab->dev_flags))
3399 			goto skip;
3400 
3401 		switch (event->type) {
3402 		case ATH12K_QMI_EVENT_SERVER_ARRIVE:
3403 			ret = ath12k_qmi_event_server_arrive(qmi);
3404 			if (ret < 0)
3405 				set_bit(ATH12K_FLAG_QMI_FAIL, &ab->dev_flags);
3406 			break;
3407 		case ATH12K_QMI_EVENT_SERVER_EXIT:
3408 			set_bit(ATH12K_FLAG_CRASH_FLUSH, &ab->dev_flags);
3409 			break;
3410 		case ATH12K_QMI_EVENT_REQUEST_MEM:
3411 			ret = ath12k_qmi_event_mem_request(qmi);
3412 			if (ret < 0)
3413 				set_bit(ATH12K_FLAG_QMI_FAIL, &ab->dev_flags);
3414 			break;
3415 		case ATH12K_QMI_EVENT_FW_MEM_READY:
3416 			ret = ath12k_qmi_event_load_bdf(qmi);
3417 			if (ret < 0)
3418 				set_bit(ATH12K_FLAG_QMI_FAIL, &ab->dev_flags);
3419 			break;
3420 		case ATH12K_QMI_EVENT_FW_READY:
3421 			clear_bit(ATH12K_FLAG_QMI_FAIL, &ab->dev_flags);
3422 			if (test_bit(ATH12K_FLAG_QMI_FW_READY_COMPLETE, &ab->dev_flags)) {
3423 				if (ab->is_reset)
3424 					ath12k_hal_dump_srng_stats(ab);
3425 
3426 				set_bit(ATH12K_FLAG_RECOVERY, &ab->dev_flags);
3427 				queue_work(ab->workqueue, &ab->restart_work);
3428 				break;
3429 			}
3430 
3431 			clear_bit(ATH12K_FLAG_CRASH_FLUSH,
3432 				  &ab->dev_flags);
3433 			ret = ath12k_core_qmi_firmware_ready(ab);
3434 			if (!ret)
3435 				set_bit(ATH12K_FLAG_QMI_FW_READY_COMPLETE,
3436 					&ab->dev_flags);
3437 
3438 			break;
3439 		case ATH12K_QMI_EVENT_HOST_CAP:
3440 			ret = ath12k_qmi_event_host_cap(qmi);
3441 			if (ret < 0)
3442 				set_bit(ATH12K_FLAG_QMI_FAIL, &ab->dev_flags);
3443 			break;
3444 		default:
3445 			ath12k_warn(ab, "invalid event type: %d", event->type);
3446 			break;
3447 		}
3448 
3449 skip:
3450 		kfree(event);
3451 		spin_lock(&qmi->event_lock);
3452 	}
3453 	spin_unlock(&qmi->event_lock);
3454 }
3455 
3456 int ath12k_qmi_init_service(struct ath12k_base *ab)
3457 {
3458 	int ret;
3459 
3460 	memset(&ab->qmi.target, 0, sizeof(struct target_info));
3461 	memset(&ab->qmi.target_mem, 0, sizeof(struct target_mem_chunk));
3462 	ab->qmi.ab = ab;
3463 
3464 	ab->qmi.target_mem_mode = ATH12K_QMI_TARGET_MEM_MODE_DEFAULT;
3465 	ret = qmi_handle_init(&ab->qmi.handle, ATH12K_QMI_RESP_LEN_MAX,
3466 			      &ath12k_qmi_ops, ath12k_qmi_msg_handlers);
3467 	if (ret < 0) {
3468 		ath12k_warn(ab, "failed to initialize qmi handle\n");
3469 		return ret;
3470 	}
3471 
3472 	ab->qmi.event_wq = alloc_ordered_workqueue("ath12k_qmi_driver_event", 0);
3473 	if (!ab->qmi.event_wq) {
3474 		ath12k_err(ab, "failed to allocate workqueue\n");
3475 		return -EFAULT;
3476 	}
3477 
3478 	INIT_LIST_HEAD(&ab->qmi.event_list);
3479 	spin_lock_init(&ab->qmi.event_lock);
3480 	INIT_WORK(&ab->qmi.event_work, ath12k_qmi_driver_event_work);
3481 
3482 	ret = qmi_add_lookup(&ab->qmi.handle, ATH12K_QMI_WLFW_SERVICE_ID_V01,
3483 			     ATH12K_QMI_WLFW_SERVICE_VERS_V01,
3484 			     ab->qmi.service_ins_id);
3485 	if (ret < 0) {
3486 		ath12k_warn(ab, "failed to add qmi lookup\n");
3487 		destroy_workqueue(ab->qmi.event_wq);
3488 		return ret;
3489 	}
3490 
3491 	return ret;
3492 }
3493 
3494 void ath12k_qmi_deinit_service(struct ath12k_base *ab)
3495 {
3496 	if (!ab->qmi.ab)
3497 		return;
3498 
3499 	qmi_handle_release(&ab->qmi.handle);
3500 	cancel_work_sync(&ab->qmi.event_work);
3501 	destroy_workqueue(ab->qmi.event_wq);
3502 	ath12k_qmi_m3_free(ab);
3503 	ath12k_qmi_free_target_mem_chunk(ab);
3504 	ab->qmi.ab = NULL;
3505 }
3506 
3507 void ath12k_qmi_free_resource(struct ath12k_base *ab)
3508 {
3509 	ath12k_qmi_free_target_mem_chunk(ab);
3510 	ath12k_qmi_m3_free(ab);
3511 }
3512