xref: /wlan-driver/qcacld-3.0/core/wma/src/wma_fips_api.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1*5113495bSYour Name /*
2*5113495bSYour Name  * Copyright (c) 2017 The Linux Foundation. All rights reserved.
3*5113495bSYour Name  *
4*5113495bSYour Name  * Permission to use, copy, modify, and/or distribute this software for
5*5113495bSYour Name  * any purpose with or without fee is hereby granted, provided that the
6*5113495bSYour Name  * above copyright notice and this permission notice appear in all
7*5113495bSYour Name  * copies.
8*5113495bSYour Name  *
9*5113495bSYour Name  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10*5113495bSYour Name  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11*5113495bSYour Name  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12*5113495bSYour Name  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13*5113495bSYour Name  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14*5113495bSYour Name  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15*5113495bSYour Name  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16*5113495bSYour Name  * PERFORMANCE OF THIS SOFTWARE.
17*5113495bSYour Name  */
18*5113495bSYour Name 
19*5113495bSYour Name #ifndef __WMA_FIPS_API_H
20*5113495bSYour Name #define __WMA_FIPS_API_H
21*5113495bSYour Name 
22*5113495bSYour Name #include "wma_api.h"
23*5113495bSYour Name #include "wmi_unified_api.h"
24*5113495bSYour Name #include "wma_fips_public_structs.h"
25*5113495bSYour Name 
26*5113495bSYour Name #ifdef WLAN_FEATURE_FIPS
27*5113495bSYour Name /**
28*5113495bSYour Name  * wma_fips_request() - Perform a FIPS certification operation
29*5113495bSYour Name  * @handle: WMA handle of the object being certified
30*5113495bSYour Name  * @param: The FIPS certification parameters
31*5113495bSYour Name  * @callback: Callback function to invoke with the results
32*5113495bSYour Name  * @context: Opaque context to pass back to caller in the callback
33*5113495bSYour Name  *
34*5113495bSYour Name  * Return: QDF_STATUS_SUCCESS if the request is successfully sent
35*5113495bSYour Name  * to firmware for processing, otherwise an error status.
36*5113495bSYour Name  */
37*5113495bSYour Name QDF_STATUS wma_fips_request(WMA_HANDLE handle,
38*5113495bSYour Name 			    struct fips_params *param,
39*5113495bSYour Name 			    wma_fips_cb callback,
40*5113495bSYour Name 			    void *context);
41*5113495bSYour Name 
42*5113495bSYour Name /**
43*5113495bSYour Name  * wma_fips_register_event_handlers() - Register FIPS event handlers
44*5113495bSYour Name  * @handle: WMA handle of the object being initialized
45*5113495bSYour Name  *
46*5113495bSYour Name  * This function registers all WMI event handlers required by the FIPS
47*5113495bSYour Name  * feature.
48*5113495bSYour Name  *
49*5113495bSYour Name  * Return: QDF_STATUS_SUCCESS upon success, otherwise an error
50*5113495bSYour Name  */
51*5113495bSYour Name QDF_STATUS wma_fips_register_event_handlers(WMA_HANDLE handle);
52*5113495bSYour Name 
53*5113495bSYour Name #else /* WLAN_FEATURE_FIPS */
54*5113495bSYour Name 
55*5113495bSYour Name static inline
wma_fips_request(WMA_HANDLE handle,const struct fips_params * param,wma_fips_cb callback,void * context)56*5113495bSYour Name QDF_STATUS wma_fips_request(WMA_HANDLE handle,
57*5113495bSYour Name 			    const struct fips_params *param,
58*5113495bSYour Name 			    wma_fips_cb callback,
59*5113495bSYour Name 			    void *context)
60*5113495bSYour Name {
61*5113495bSYour Name 	return QDF_STATUS_E_NOSUPPORT;
62*5113495bSYour Name }
63*5113495bSYour Name 
64*5113495bSYour Name static inline
wma_fips_register_event_handlers(WMA_HANDLE wma_handle)65*5113495bSYour Name QDF_STATUS wma_fips_register_event_handlers(WMA_HANDLE wma_handle)
66*5113495bSYour Name {
67*5113495bSYour Name 	return QDF_STATUS_SUCCESS;
68*5113495bSYour Name }
69*5113495bSYour Name 
70*5113495bSYour Name #endif /* WLAN_FEATURE_FIPS */
71*5113495bSYour Name 
72*5113495bSYour Name #endif /* __WMA_FIPS_API_H */
73