xref: /wlan-dirver/qca-wifi-host-cmn/umac/dcs/dispatcher/inc/wlan_dcs_tgt_api.h (revision 6d768494e5ce14eb1603a695c86739d12ecc6ec2)
1 /*
2  * Copyright (c) 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 /**
18  * DOC: wlan_dcs_tgt_api.h
19  *
20  * This header file provide with API declarations to interface with Southbound
21  */
22 #ifndef __WLAN_DCS_TGT_API_H__
23 #define __WLAN_DCS_TGT_API_H__
24 
25 #include <wlan_objmgr_cmn.h>
26 #include <wlan_dcs_public_structs.h>
27 
28 /**
29  * struct dcs_stats_event - define dcs stats event
30  * @wlan_stat: wlan interference target statistics
31  * @dcs_param: dcs event param
32  */
33 struct dcs_stats_event {
34 	struct wlan_host_dcs_im_tgt_stats wlan_stat;
35 	struct wlan_host_dcs_interference_param dcs_param;
36 };
37 
38 /**
39  * tgt_dcs_process_event(): dcs FW event process
40  * @psoc: pointer to psoc object
41  * @event: pointer to dcs stats event
42  *
43  * This function gets called to process dcs FW event
44  *
45  * Return: QDF_STATUS
46  */
47 QDF_STATUS tgt_dcs_process_event(struct wlan_objmgr_psoc *psoc,
48 				 struct dcs_stats_event *event);
49 
50 #endif /* __WLAN_DCS_TGT_API_H__ */
51