xref: /wlan-dirver/qca-wifi-host-cmn/qdf/inc/qdf_ipa.h (revision 569cc296edb935e5bbb6f0a4bca30cab7856c360)
1 /*
2  * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 #ifndef _QDF_IPA_H
18 #define _QDF_IPA_H
19 
20 #ifdef IPA_OFFLOAD
21 
22 #include <i_qdf_ipa.h>
23 
24 /**
25  * enum qdf_ipa_wlan_event - QDF IPA events
26  * @QDF_IPA_CLIENT_CONNECT: Client Connects
27  * @QDF_IPA_CLIENT_DISCONNECT: Client Disconnects
28  * @QDF_IPA_AP_CONNECT: SoftAP is started
29  * @QDF_IPA_AP_DISCONNECT: SoftAP is stopped
30  * @QDF_IPA_STA_CONNECT: STA associates to AP
31  * @QDF_IPA_STA_DISCONNECT: STA dissociates from AP
32  * @QDF_IPA_CLIENT_CONNECT_EX: Peer associates/re-associates to softap
33  * @QDF_SWITCH_TO_SCC: WLAN interfaces in scc mode
34  * @QDF_SWITCH_TO_MCC: WLAN interfaces in mcc mode
35  * @QDF_WDI_ENABLE: WDI enable complete
36  * @QDF_WDI_DISABLE: WDI teardown
37  * @QDF_FWR_SSR_BEFORE_SHUTDOWN: WLAN FW recovery
38  * @QDF_IPA_WLAN_EVENT_MAX: Max value for the enum
39  */
40 typedef enum {
41 	QDF_IPA_CLIENT_CONNECT,
42 	QDF_IPA_CLIENT_DISCONNECT,
43 	QDF_IPA_AP_CONNECT,
44 	QDF_IPA_AP_DISCONNECT,
45 	QDF_IPA_STA_CONNECT,
46 	QDF_IPA_STA_DISCONNECT,
47 	QDF_IPA_CLIENT_CONNECT_EX,
48 	QDF_SWITCH_TO_SCC,
49 	QDF_SWITCH_TO_MCC,
50 	QDF_WDI_ENABLE,
51 	QDF_WDI_DISABLE,
52 	QDF_FWR_SSR_BEFORE_SHUTDOWN,
53 	QDF_IPA_WLAN_EVENT_MAX
54 } qdf_ipa_wlan_event;
55 
56 /**
57  * qdf_ipa_wdi_meter_evt_type_t - type of event client callback is
58  * for AP+STA mode metering
59  * @IPA_GET_WDI_SAP_STATS: get IPA_stats betwen SAP and STA -
60  *			use ipa_get_wdi_sap_stats structure
61  * @IPA_SET_WIFI_QUOTA: set quota limit on STA -
62  *			use ipa_set_wifi_quota structure
63  */
64 typedef __qdf_ipa_wdi_meter_evt_type_t qdf_ipa_wdi_meter_evt_type_t;
65 
66 typedef __qdf_ipa_get_wdi_sap_stats_t qdf_ipa_get_wdi_sap_stats_t;
67 
68 /**
69  * qdf_ipa_set_wifi_quota_t - structure used for
70  *                                   IPA_SET_WIFI_QUOTA.
71  */
72 typedef __qdf_ipa_set_wifi_quota_t qdf_ipa_set_wifi_quota_t;
73 
74 /**
75  * qdf_ipa_connect_params_t - low-level client connect input parameters. Either
76  * client allocates the data and desc FIFO and specifies that in data+desc OR
77  * specifies sizes and pipe_mem pref and IPA does the allocation.
78  */
79 typedef __qdf_ipa_connect_params_t qdf_ipa_connect_params_t;
80 
81 /**
82  * qdf_ipa_tx_meta_t - meta-data for the TX packet
83  */
84 typedef __qdf_ipa_tx_meta_t qdf_ipa_tx_meta_t;
85 
86 /**
87  *  __qdf_ipa_sps_params_t - SPS related output parameters resulting from
88  */
89 typedef __qdf_ipa_sps_params_t qdf_ipa_sps_params_t;
90 
91 /**
92  * qdf_ipa_tx_intf_t - interface tx properties
93  */
94 typedef __qdf_ipa_tx_intf_t qdf_ipa_tx_intf_t;
95 
96 /**
97  * qdf_ipa_rx_intf_t - interface rx properties
98  */
99 typedef __qdf_ipa_rx_intf_t qdf_ipa_rx_intf_t;
100 
101 /**
102  * qdf_ipa_ext_intf_t - interface ext properties
103  */
104 typedef __qdf_ipa_ext_intf_t qdf_ipa_ext_intf_t;
105 
106 /**
107  * qdf_ipa_sys_connect_params_t - information needed to setup an IPA end-point
108  * in system-BAM mode
109  */
110 typedef __qdf_ipa_sys_connect_params_t qdf_ipa_sys_connect_params_t;
111 
112 /**
113  * __qdf_pa_rm_event_t - IPA RM events
114  *
115  * Indicate the resource state change
116  */
117 typedef __qdf_ipa_rm_event_t qdf_ipa_rm_event_t;
118 
119 /**
120  * struct qdf_ipa_rm_register_params_t - information needed to
121  *      register IPA RM client with IPA RM
122  */
123 typedef __qdf_ipa_rm_register_params_t qdf_ipa_rm_register_params_t;
124 
125 /**
126  * struct qdf_ipa_rm_create_params_t - information needed to initialize
127  *				the resource
128  *
129  * IPA RM client is expected to perform non blocking operations only
130  * in request_resource and release_resource functions and
131  * release notification context as soon as possible.
132  */
133 typedef __qdf_ipa_rm_create_params_t qdf_ipa_rm_create_params_t;
134 
135 /**
136  * qdf_ipa_rm_perf_profile_t - information regarding IPA RM client performance
137  * profile
138  */
139 typedef __qdf_ipa_rm_perf_profile_t qdf_ipa_rm_perf_profile_t;
140 
141 /**
142  * qdf_ipa_tx_data_desc_t - information needed
143  * to send data packet to HW link: link to data descriptors
144  * priv: client specific private data
145  */
146 typedef __qdf_ipa_tx_data_desc_t qdf_ipa_tx_data_desc_t;
147 
148 /**
149  * qdf_ipa_rx_data_t - information needed
150  * to send to wlan driver on receiving data from ipa hw
151  */
152 typedef __qdf_ipa_rx_data_t qdf_ipa_rx_data_t;
153 
154 /**
155  * qdf_ipa_wdi_ul_params_t - WDI_RX configuration
156  */
157 typedef __qdf_ipa_wdi_ul_params_t qdf_ipa_wdi_ul_params_t;
158 
159 /**
160  * qdf_ipa_wdi_ul_params_smmu_t - WDI_RX configuration (with WLAN SMMU)
161  */
162 typedef __qdf_ipa_wdi_ul_params_smmu_t qdf_ipa_wdi_ul_params_smmu_t;
163 
164 /**
165  * qdf_ipa_wdi_dl_params_t - WDI_TX configuration
166  */
167 typedef __qdf_ipa_wdi_dl_params_t qdf_ipa_wdi_dl_params_t;
168 
169 /**
170  * qdf_ipa_wdi_dl_params_smmu_t - WDI_TX configuration (with WLAN SMMU)
171  */
172 typedef __qdf_ipa_wdi_dl_params_smmu_t qdf_ipa_wdi_dl_params_smmu_t;
173 
174 /**
175  * qdf_ipa_wdi_in_params_t - information provided by WDI client
176  */
177 typedef __qdf_ipa_wdi_in_params_t qdf_ipa_wdi_in_params_t;
178 
179 /**
180  * qdf_ipa_wdi_out_params_t - information provided to WDI client
181  */
182 typedef __qdf_ipa_wdi_out_params_t qdf_ipa_wdi_out_params_t;
183 
184 /**
185  * qdf_ipa_wdi_db_params_t - information provided to retrieve
186  *       physical address of uC doorbell
187  */
188 typedef __qdf_ipa_wdi_db_params_t qdf_ipa_wdi_db_params_t;
189 
190 /**
191  * qdf_ipa_wdi_uc_ready_params_t - uC ready CB parameters
192  */
193 typedef void (*qdf_ipa_uc_ready_cb)(void *priv);
194 typedef __qdf_ipa_wdi_uc_ready_params_t qdf_ipa_wdi_uc_ready_params_t;
195 
196 /**
197  * qdf_ipa_wdi_buffer_info_t - address info of a WLAN allocated buffer
198  *
199  * IPA driver will create/release IOMMU mapping in IPA SMMU from iova->pa
200  */
201 typedef __qdf_ipa_wdi_buffer_info_t qdf_ipa_wdi_buffer_info_t;
202 
203 /**
204  * qdf_ipa_gsi_ep_config_t - IPA GSI endpoint configurations
205  */
206 typedef __qdf_ipa_gsi_ep_config_t qdf_ipa_gsi_ep_config_t;
207 
208 /**
209  * qdf_ipa_dp_evt_type_t - type of event client callback is
210  * invoked for on data path
211  * @IPA_RECEIVE: data is struct sk_buff
212  * @IPA_WRITE_DONE: data is struct sk_buff
213  */
214 typedef __qdf_ipa_dp_evt_type_t qdf_ipa_dp_evt_type_t;
215 
216 #ifdef WDI3_STATS_UPDATE
217 /**
218  * qdf_ipa_wdi_tx_info_t - WLAN embedded TX bytes information
219  *
220  * WLAN host fills this structure to update IPA driver about
221  * embedded TX information.
222  */
223 typedef __qdf_ipa_wdi_tx_info_t qdf_ipa_wdi_tx_info_t;
224 
225 /**
226  * qdf_ipa_wdi_bw_info_t - BW threshold levels to be monitored
227  * by IPA uC
228  */
229 typedef __qdf_ipa_wdi_bw_info_t qdf_ipa_wdi_bw_info_t;
230 
231 /**
232  * qdf_ipa_inform_wlan_bw_t - BW information given by IPA driver
233  * whenever uC detects threshold level reached
234  */
235 typedef __qdf_ipa_inform_wlan_bw_t qdf_ipa_inform_wlan_bw_t;
236 #endif
237 
238 typedef __qdf_ipa_hdr_add_t qdf_ipa_hdr_add_t;
239 typedef __qdf_ipa_hdr_del_t qdf_ipa_hdr_del_t;
240 typedef __qdf_ipa_ioc_add_hdr_t qdf_ipa_ioc_add_hdr_t;
241 typedef __qdf_ipa_ioc_del_hdr_t qdf_ipa_ioc_del_hdr_t;
242 typedef __qdf_ipa_ioc_get_hdr_t qdf_ipa_ioc_get_hdr_t;
243 typedef __qdf_ipa_ioc_copy_hdr_t qdf_ipa_ioc_copy_hdr_t;
244 typedef __qdf_ipa_ioc_add_hdr_proc_ctx_t qdf_ipa_ioc_add_hdr_proc_ctx_t;
245 typedef __qdf_ipa_ioc_del_hdr_proc_ctx_t qdf_ipa_ioc_del_hdr_proc_ctx_t;
246 typedef __qdf_ipa_msg_meta_t qdf_ipa_msg_meta_t;
247 typedef __qdf_ipa_client_type_t qdf_ipa_client_type_t;
248 typedef __qdf_ipa_hw_stats_wdi_info_data_t qdf_ipa_hw_stats_wdi_info_data_t;
249 typedef __qdf_ipa_rm_resource_name_t  qdf_ipa_rm_resource_name_t;
250 typedef __qdf_ipa_wlan_event_t qdf_ipa_wlan_event_t;
251 typedef __qdf_ipa_wlan_msg_t qdf_ipa_wlan_msg_t;
252 typedef __qdf_ipa_wlan_msg_ex_t qdf_ipa_wlan_msg_ex_t;
253 typedef __qdf_ipa_ioc_tx_intf_prop_t qdf_ipa_ioc_tx_intf_prop_t;
254 typedef __qdf_ipa_ioc_rx_intf_prop_t qdf_ipa_ioc_rx_intf_prop_t;
255 typedef __qdf_ipa_wlan_hdr_attrib_val_t qdf_ipa_wlan_hdr_attrib_val_t;
256 typedef int (*qdf_ipa_msg_pull_fn)(void *buff, u32 len, u32 type);
257 typedef void (*qdf_ipa_ready_cb)(void *user_data);
258 
259 #define QDF_IPA_SET_META_MSG_TYPE(meta, msg_type) \
260 	__QDF_IPA_SET_META_MSG_TYPE(meta, msg_type)
261 
262 #define QDF_IPA_RM_RESOURCE_GRANTED __QDF_IPA_RM_RESOURCE_GRANTED
263 #define QDF_IPA_RM_RESOURCE_RELEASED __QDF_IPA_RM_RESOURCE_RELEASED
264 
265 #define QDF_IPA_VOLTAGE_LEVEL __QDF_IPA_VOLTAGE_LEVEL
266 
267 #define QDF_IPA_RM_RESOURCE_WLAN_PROD __QDF_IPA_RM_RESOURCE_WLAN_PROD
268 #define QDF_IPA_RM_RESOURCE_WLAN_CONS __QDF_IPA_RM_RESOURCE_WLAN_CONS
269 #define QDF_IPA_RM_RESOURCE_APPS_CONS __QDF_IPA_RM_RESOURCE_APPS_CONS
270 
271 #define QDF_IPA_CLIENT_WLAN1_PROD __QDF_IPA_CLIENT_WLAN1_PROD
272 #define QDF_IPA_CLIENT_WLAN3_PROD __QDF_IPA_CLIENT_WLAN3_PROD
273 #define QDF_IPA_CLIENT_WLAN1_CONS __QDF_IPA_CLIENT_WLAN1_CONS
274 #define QDF_IPA_CLIENT_WLAN2_CONS __QDF_IPA_CLIENT_WLAN2_CONS
275 #define QDF_IPA_CLIENT_WLAN3_CONS __QDF_IPA_CLIENT_WLAN3_CONS
276 #define QDF_IPA_CLIENT_WLAN4_CONS __QDF_IPA_CLIENT_WLAN4_CONS
277 #ifdef FEATURE_IPA_PIPE_CHANGE_WDI1
278 #define QDF_IPA_CLIENT_WLAN_LEGACY_CONS   QDF_IPA_CLIENT_WLAN3_CONS
279 #define QDF_IPA_CLIENT_WLAN_LEGACY_PROD   QDF_IPA_CLIENT_WLAN3_PROD
280 #define QDF_IPA_CLIENT_MCC2_CONS          QDF_IPA_CLIENT_WLAN4_CONS
281 #else
282 #define QDF_IPA_CLIENT_WLAN_LEGACY_CONS   QDF_IPA_CLIENT_WLAN1_CONS
283 #define QDF_IPA_CLIENT_WLAN_LEGACY_PROD   QDF_IPA_CLIENT_WLAN1_PROD
284 #define QDF_IPA_CLIENT_MCC2_CONS          QDF_IPA_CLIENT_WLAN3_CONS
285 #endif
286 /*
287  * Resume / Suspend
288  */
289 static inline int qdf_ipa_reset_endpoint(u32 clnt_hdl)
290 {
291 	return __qdf_ipa_reset_endpoint(clnt_hdl);
292 }
293 
294 /*
295  * Remove ep delay
296  */
297 static inline int qdf_ipa_clear_endpoint_delay(u32 clnt_hdl)
298 {
299 	return __qdf_ipa_clear_endpoint_delay(clnt_hdl);
300 }
301 
302 /*
303  * Header removal / addition
304  */
305 static inline int qdf_ipa_add_hdr(qdf_ipa_ioc_add_hdr_t *hdrs)
306 {
307 	return __qdf_ipa_add_hdr(hdrs);
308 }
309 
310 static inline int qdf_ipa_del_hdr(qdf_ipa_ioc_del_hdr_t *hdls)
311 {
312 	return __qdf_ipa_del_hdr(hdls);
313 }
314 
315 static inline int qdf_ipa_commit_hdr(void)
316 {
317 	return __qdf_ipa_commit_hdr();
318 }
319 
320 static inline int qdf_ipa_get_hdr(qdf_ipa_ioc_get_hdr_t *lookup)
321 {
322 	return __qdf_ipa_get_hdr(lookup);
323 }
324 
325 static inline int qdf_ipa_put_hdr(u32 hdr_hdl)
326 {
327 	return __qdf_ipa_put_hdr(hdr_hdl);
328 }
329 
330 static inline int qdf_ipa_copy_hdr(qdf_ipa_ioc_copy_hdr_t *copy)
331 {
332 	return __qdf_ipa_copy_hdr(copy);
333 }
334 
335 /*
336  * Messaging
337  */
338 static inline int qdf_ipa_send_msg(qdf_ipa_msg_meta_t *meta, void *buff,
339 		ipa_msg_free_fn callback)
340 {
341 	return __qdf_ipa_send_msg(meta, buff, callback);
342 }
343 
344 static inline int qdf_ipa_register_pull_msg(qdf_ipa_msg_meta_t *meta,
345 		qdf_ipa_msg_pull_fn callback)
346 {
347 	return __qdf_ipa_register_pull_msg(meta, callback);
348 }
349 
350 static inline int qdf_ipa_deregister_pull_msg(qdf_ipa_msg_meta_t *meta)
351 {
352 	return __qdf_ipa_deregister_pull_msg(meta);
353 }
354 
355 /*
356  * Interface
357  */
358 static inline int qdf_ipa_register_intf(const char *name,
359 				     const qdf_ipa_tx_intf_t *tx,
360 				     const qdf_ipa_rx_intf_t *rx)
361 {
362 	return __qdf_ipa_register_intf(name, tx, rx);
363 }
364 
365 static inline int qdf_ipa_register_intf_ext(const char *name,
366 		const qdf_ipa_tx_intf_t *tx,
367 		const qdf_ipa_rx_intf_t *rx,
368 		const qdf_ipa_ext_intf_t *ext)
369 {
370 	return __qdf_ipa_register_intf_ext(name, tx, rx, ext);
371 }
372 
373 static inline int qdf_ipa_deregister_intf(const char *name)
374 {
375 	return __qdf_ipa_deregister_intf(name);
376 }
377 
378 /*
379  * Data path
380  */
381 static inline int qdf_ipa_tx_dp(qdf_ipa_client_type_t dst, struct sk_buff *skb,
382 		qdf_ipa_tx_meta_t *metadata)
383 {
384 	return __qdf_ipa_tx_dp(dst, skb, metadata);
385 }
386 
387 /*
388  * To transfer multiple data packets
389  */
390 static inline int qdf_ipa_tx_dp_mul(
391 	qdf_ipa_client_type_t dst,
392 	qdf_ipa_tx_data_desc_t *data_desc)
393 {
394 	return __qdf_ipa_tx_dp_mul(dst, data_desc);
395 }
396 
397 static inline void qdf_ipa_free_skb(qdf_ipa_rx_data_t *rx_in)
398 {
399 	return __qdf_ipa_free_skb(rx_in);;
400 }
401 
402 /*
403  * System pipes
404  */
405 static inline u16 qdf_ipa_get_smem_restr_bytes(void)
406 {
407 	return __qdf_ipa_get_smem_restr_bytes();
408 }
409 
410 static inline int qdf_ipa_setup_sys_pipe(qdf_ipa_sys_connect_params_t *sys_in,
411 		u32 *clnt_hdl)
412 {
413 	return __qdf_ipa_setup_sys_pipe(sys_in, clnt_hdl);
414 }
415 
416 static inline int qdf_ipa_teardown_sys_pipe(u32 clnt_hdl)
417 {
418 	return __qdf_ipa_teardown_sys_pipe(clnt_hdl);
419 }
420 
421 static inline int qdf_ipa_connect_wdi_pipe(qdf_ipa_wdi_in_params_t *in,
422 		qdf_ipa_wdi_out_params_t *out)
423 {
424 	return __qdf_ipa_connect_wdi_pipe(in, out);
425 }
426 
427 static inline int qdf_ipa_disconnect_wdi_pipe(u32 clnt_hdl)
428 {
429 	return __qdf_ipa_disconnect_wdi_pipe(clnt_hdl);
430 }
431 
432 static inline int qdf_ipa_enable_wdi_pipe(u32 clnt_hdl)
433 {
434 	return __qdf_ipa_enable_wdi_pipe(clnt_hdl);
435 }
436 
437 static inline int qdf_ipa_disable_wdi_pipe(u32 clnt_hdl)
438 {
439 	return __qdf_ipa_disable_wdi_pipe(clnt_hdl);
440 }
441 
442 static inline int qdf_ipa_resume_wdi_pipe(u32 clnt_hdl)
443 {
444 	return __qdf_ipa_resume_wdi_pipe(clnt_hdl);
445 }
446 
447 static inline int qdf_ipa_suspend_wdi_pipe(u32 clnt_hdl)
448 {
449 	return __qdf_ipa_suspend_wdi_pipe(clnt_hdl);
450 }
451 
452 static inline int qdf_ipa_uc_wdi_get_dbpa(
453 	qdf_ipa_wdi_db_params_t *out)
454 {
455 	return __qdf_ipa_uc_wdi_get_dbpa(out);
456 }
457 
458 static inline int qdf_ipa_uc_reg_rdyCB(
459 	qdf_ipa_wdi_uc_ready_params_t *param)
460 {
461 	return __qdf_ipa_uc_reg_rdyCB(param);
462 }
463 
464 static inline int qdf_ipa_uc_dereg_rdyCB(void)
465 {
466 	return __qdf_ipa_uc_dereg_rdyCB();
467 }
468 
469 
470 /*
471  * Resource manager
472  */
473 static inline int qdf_ipa_rm_create_resource(
474 		qdf_ipa_rm_create_params_t *create_params)
475 {
476 	return __qdf_ipa_rm_create_resource(create_params);
477 }
478 
479 static inline int qdf_ipa_rm_delete_resource(
480 		qdf_ipa_rm_resource_name_t resource_name)
481 {
482 	return __qdf_ipa_rm_delete_resource(resource_name);
483 }
484 
485 static inline int qdf_ipa_rm_register(qdf_ipa_rm_resource_name_t resource_name,
486 			qdf_ipa_rm_register_params_t *reg_params)
487 {
488 	return __qdf_ipa_rm_register(resource_name, reg_params);
489 }
490 
491 static inline int qdf_ipa_rm_set_perf_profile(
492 		qdf_ipa_rm_resource_name_t resource_name,
493 		qdf_ipa_rm_perf_profile_t *profile)
494 {
495 	return __qdf_ipa_rm_set_perf_profile(resource_name, profile);
496 }
497 
498 static inline int qdf_ipa_rm_deregister(qdf_ipa_rm_resource_name_t resource_name,
499 			qdf_ipa_rm_register_params_t *reg_params)
500 {
501 	return __qdf_ipa_rm_deregister(resource_name, reg_params);
502 }
503 
504 static inline int qdf_ipa_rm_add_dependency(
505 		qdf_ipa_rm_resource_name_t resource_name,
506 		qdf_ipa_rm_resource_name_t depends_on_name)
507 {
508 	return __qdf_ipa_rm_add_dependency(resource_name, depends_on_name);
509 }
510 
511 static inline int qdf_ipa_rm_add_dependency_sync(
512 		qdf_ipa_rm_resource_name_t resource_name,
513 		qdf_ipa_rm_resource_name_t depends_on_name)
514 {
515 	return __qdf_ipa_rm_add_dependency_sync(resource_name, depends_on_name);
516 }
517 
518 static inline int qdf_ipa_rm_delete_dependency(
519 		qdf_ipa_rm_resource_name_t resource_name,
520 		qdf_ipa_rm_resource_name_t depends_on_name)
521 {
522 	return __qdf_ipa_rm_delete_dependency(resource_name, depends_on_name);
523 }
524 
525 static inline int qdf_ipa_rm_request_resource(
526 		qdf_ipa_rm_resource_name_t resource_name)
527 {
528 	return __qdf_ipa_rm_request_resource(resource_name);
529 }
530 
531 static inline int qdf_ipa_rm_release_resource(
532 		qdf_ipa_rm_resource_name_t resource_name)
533 {
534 	return __qdf_ipa_rm_release_resource(resource_name);
535 }
536 
537 static inline int qdf_ipa_rm_notify_completion(qdf_ipa_rm_event_t event,
538 		qdf_ipa_rm_resource_name_t resource_name)
539 {
540 	return __qdf_ipa_rm_notify_completion(event, resource_name);
541 }
542 
543 static inline int qdf_ipa_rm_inactivity_timer_init(
544 		qdf_ipa_rm_resource_name_t resource_name,
545 			unsigned long msecs)
546 {
547 	return __qdf_ipa_rm_inactivity_timer_init(resource_name, msecs);
548 }
549 
550 static inline int qdf_ipa_rm_inactivity_timer_destroy(
551 		qdf_ipa_rm_resource_name_t resource_name)
552 {
553 	return __qdf_ipa_rm_inactivity_timer_destroy(resource_name);
554 }
555 
556 static inline int qdf_ipa_rm_inactivity_timer_request_resource(
557 				qdf_ipa_rm_resource_name_t resource_name)
558 {
559 	return __qdf_ipa_rm_inactivity_timer_request_resource(resource_name);
560 }
561 
562 static inline int qdf_ipa_rm_inactivity_timer_release_resource(
563 				qdf_ipa_rm_resource_name_t resource_name)
564 {
565 	return __qdf_ipa_rm_inactivity_timer_release_resource(resource_name);
566 }
567 
568 /*
569  * Miscellaneous
570  */
571 static inline void qdf_ipa_bam_reg_dump(void)
572 {
573 	return __qdf_ipa_bam_reg_dump();
574 }
575 
576 static inline int qdf_ipa_get_wdi_stats(qdf_ipa_hw_stats_wdi_info_data_t *stats)
577 {
578 	return __qdf_ipa_get_wdi_stats(stats);
579 }
580 
581 static inline int qdf_ipa_get_ep_mapping(qdf_ipa_client_type_t client)
582 {
583 	return __qdf_ipa_get_ep_mapping(client);
584 }
585 
586 static inline bool qdf_ipa_is_ready(void)
587 {
588 	return __qdf_ipa_is_ready();
589 }
590 
591 static inline void qdf_ipa_proxy_clk_vote(void)
592 {
593 	return __qdf_ipa_proxy_clk_vote();
594 }
595 
596 static inline void qdf_ipa_proxy_clk_unvote(void)
597 {
598 	return __qdf_ipa_proxy_clk_unvote();
599 }
600 
601 static inline bool qdf_ipa_is_client_handle_valid(u32 clnt_hdl)
602 {
603 	return __qdf_ipa_is_client_handle_valid(clnt_hdl);
604 }
605 
606 static inline qdf_ipa_client_type_t qdf_ipa_get_client_mapping(int pipe_idx)
607 {
608 	return __qdf_ipa_get_client_mapping(pipe_idx);
609 }
610 
611 static inline qdf_ipa_rm_resource_name_t qdf_ipa_get_rm_resource_from_ep(
612 	int pipe_idx)
613 {
614 	return __qdf_ipa_get_rm_resource_from_ep(pipe_idx);
615 }
616 
617 static inline bool qdf_ipa_get_modem_cfg_emb_pipe_flt(void)
618 {
619 	return __qdf_ipa_get_modem_cfg_emb_pipe_flt();
620 }
621 
622 static inline int qdf_ipa_create_wdi_mapping(u32 num_buffers,
623 		__qdf_ipa_wdi_buffer_info_t *info)
624 {
625 	return __qdf_ipa_create_wdi_mapping(num_buffers, info);
626 }
627 
628 static inline int qdf_ipa_release_wdi_mapping(u32 num_buffers,
629 		qdf_ipa_wdi_buffer_info_t *info)
630 {
631 	return __qdf_ipa_release_wdi_mapping(num_buffers, info);
632 }
633 
634 static inline int qdf_ipa_disable_apps_wan_cons_deaggr(uint32_t agg_size,
635 		uint32_t agg_count)
636 {
637 	return __qdf_ipa_disable_apps_wan_cons_deaggr(agg_size, agg_count);
638 }
639 
640 static inline const qdf_ipa_gsi_ep_config_t *qdf_ipa_get_gsi_ep_info(qdf_ipa_client_type_t client)
641 {
642 	return __qdf_ipa_get_gsi_ep_info(client);
643 }
644 
645 static inline int qdf_ipa_stop_gsi_channel(u32 clnt_hdl)
646 {
647 	return __qdf_ipa_stop_gsi_channel(clnt_hdl);
648 }
649 
650 static inline int qdf_ipa_register_ipa_ready_cb(
651 	void (*qdf_ipa_ready_cb)(void *user_data),
652 	void *user_data)
653 {
654 	return __qdf_ipa_register_ipa_ready_cb(qdf_ipa_ready_cb, user_data);
655 }
656 
657 #ifdef FEATURE_METERING
658 static inline int qdf_ipa_broadcast_wdi_quota_reach_ind(uint32_t index,
659 							uint64_t quota_bytes)
660 {
661 	return __qdf_ipa_broadcast_wdi_quota_reach_ind(index, quota_bytes);
662 }
663 #endif
664 
665 #ifdef ENABLE_SMMU_S1_TRANSLATION
666 /**
667  * qdf_get_ipa_smmu_enabled() - to get IPA SMMU enable status
668  *
669  * Return: true when IPA SMMU enabled, otherwise false
670  */
671 static inline bool qdf_get_ipa_smmu_enabled(void)
672 {
673 	return __qdf_get_ipa_smmu_enabled();
674 }
675 #endif
676 
677 #ifdef IPA_LAN_RX_NAPI_SUPPORT
678 /**
679  * qdf_ipa_get_lan_rx_napi() - Check if NAPI is enabled in LAN
680  * RX DP
681  *
682  * Returns: true if enabled, false otherwise
683  */
684 static inline bool qdf_ipa_get_lan_rx_napi(void)
685 {
686 	return __qdf_ipa_get_lan_rx_napi();
687 }
688 #else
689 static inline bool qdf_ipa_get_lan_rx_napi(void)
690 {
691 	return false;
692 }
693 #endif /* IPA_LAN_RX_NAPI_SUPPORT */
694 #endif /* IPA_OFFLOAD */
695 #endif /* _QDF_IPA_H */
696