xref: /wlan-dirver/qca-wifi-host-cmn/umac/cmn_services/crypto/inc/wlan_crypto_main.h (revision 2f4b444fb7e689b83a4ab0e7b3b38f0bf4def8e0)
1 /*
2  * Copyright (c) 2017-2018, 2021 The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for
5  * any purpose with or without fee is hereby granted, provided that the
6  * above copyright notice and this permission notice appear in all
7  * copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19  /**
20  * DOC: Private API for crypto service with object manager handler
21  */
22 #ifndef _WLAN_CRYPTO_MAIN_H_
23 #define _WLAN_CRYPTO_MAIN_H_
24 #include "wlan_crypto_global_def.h"
25 
26 /**
27  * wlan_crypto_init - Init the crypto service with object manager
28  *                    Called from umac init context.
29  *
30  * Return: QDF_STATUS_SUCCESS - in case of success
31  */
32 QDF_STATUS wlan_crypto_init(void);
33 
34 /**
35  * wlan_crypto_deinit - Deinit the crypto service with object manager
36  *                    Called from umac deinit context.
37  *
38  * Return: QDF_STATUS_SUCCESS - in case of success
39  */
40 QDF_STATUS wlan_crypto_deinit(void);
41 
42 #ifdef CRYPTO_SET_KEY_CONVERGED
43 /**
44  * wlan_crypto_psoc_enable: psoc enable API for wlan crypto component
45  * @psoc: pointer to PSOC
46  *
47  * Return: status of operation
48  */
49 QDF_STATUS wlan_crypto_psoc_enable(struct wlan_objmgr_psoc *psoc);
50 
51 /**
52  * wlan_crypto_psoc_disable: psoc disable API for wlan crypto component
53  * @psoc: pointer to PSOC
54  *
55  * Return: status of operation
56  */
57 QDF_STATUS wlan_crypto_psoc_disable(struct wlan_objmgr_psoc *psoc);
58 #else
59 static inline QDF_STATUS wlan_crypto_psoc_enable(struct wlan_objmgr_psoc *psoc)
60 {
61 	return QDF_STATUS_SUCCESS;
62 }
63 
64 static inline QDF_STATUS wlan_crypto_psoc_disable(struct wlan_objmgr_psoc *psoc)
65 {
66 	return QDF_STATUS_SUCCESS;
67 }
68 #endif
69 
70 #endif /* end of _WLAN_CRYPTO_MAIN_H_ */
71