xref: /wlan-dirver/qca-wifi-host-cmn/target_if/init_deinit/inc/mlo_global_h_shmem_arena_api.h (revision 2f4b444fb7e689b83a4ab0e7b3b38f0bf4def8e0)
1 /*
2  * Copyright (c) 2021, 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: mlo_global_h_shmem_arena.h
19  *  This file contains APIs that are exposed by the the MLO
20  *  global shared memory arena.
21  */
22 
23 #ifndef _MLO_GLOBAL_H_SHMEM_ARENA_API_H_
24 #define _MLO_GLOBAL_H_SHMEM_ARENA_API_H_
25 
26 #include<qdf_types.h>
27 #include<wlan_lmac_if_def.h>
28 
29 /**
30  * mgmt_rx_reo_register_wifi3_0_ops() - Register wifi3.0 operations of MGMT Rx
31  * REO module
32  * @reo_low_level_ops: Pointer to low level ops table of MGMT Rx REO module.
33  *
34  * This API fills @reo_low_level_ops table with the wifi3.0 layer functions of
35  * MGMT Rx REO module.
36  *
37  * Return: QDF_STATUS of operation
38  */
39 QDF_STATUS mgmt_rx_reo_register_wifi3_0_ops(
40 	struct wlan_lmac_if_mgmt_rx_reo_low_level_ops *reo_low_level_ops);
41 #endif
42