xref: /wlan-dirver/qca-wifi-host-cmn/dp/inc/cdp_txrx_handle.h (revision f28396d060cff5c6519f883cb28ae0116ce479f1)
1 
2 /*
3  * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for
6  * any purpose with or without fee is hereby granted, provided that the
7  * above copyright notice and this permission notice appear in all
8  * copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20  /**
21  * @file cdp_txrx_handle.h
22  * @brief Holds the forward structure declarations for handles
23  * passed from the upper layers
24  */
25 
26 #ifndef CDP_TXRX_HANDLE_H
27 #define CDP_TXRX_HANDLE_H
28 
29 struct cdp_cfg;
30 struct cdp_pdev;
31 struct cdp_vdev;
32 struct cdp_peer;
33 struct cdp_raw_ast;
34 struct cdp_soc;
35 
36 /**
37  * cdp_ctrl_objmgr_psoc - opaque handle for UMAC psoc object
38  */
39 struct cdp_ctrl_objmgr_psoc;
40 
41 /**
42  * cdp_ctrl_objmgr_pdev - opaque handle for UMAC pdev object
43  */
44 struct cdp_ctrl_objmgr_pdev;
45 
46 /**
47  * cdp_ctrl_objmgr_vdev - opaque handle for UMAC vdev object
48  */
49 struct cdp_ctrl_objmgr_vdev;
50 
51 /**
52  * cdp_ctrl_objmgr_peer - opaque handle for UMAC peer object
53  */
54 struct cdp_ctrl_objmgr_peer;
55 
56 /**
57  * cdp_cal_client - opaque handle for cal client object
58  */
59 struct cdp_cal_client;
60 
61 /**
62  * cdp_ext_vdev - opaque handle for extended vdev data path handle
63  */
64 struct cdp_ext_vdev;
65 #endif
66