xref: /wlan-dirver/qca-wifi-host-cmn/cfg/inc/i_cfg.h (revision 1b9674e21e24478fba4530f5ae7396b9555e9c6a)
1 /*
2  * Copyright (c) 2018 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: Internal APIs for the configuration component.
21  */
22 
23 #ifndef __I_CFG_H
24 #define __I_CFG_H
25 
26 #include "cfg_define.h"
27 #include "qdf_trace.h"
28 #include "qdf_types.h"
29 #include "wlan_objmgr_psoc_obj.h"
30 
31 #define cfg_err(params...) QDF_TRACE_ERROR(QDF_MODULE_ID_CONFIG, params)
32 #define cfg_info(params...) QDF_TRACE_INFO(QDF_MODULE_ID_CONFIG, params)
33 #define cfg_debug(params...) QDF_TRACE_DEBUG(QDF_MODULE_ID_CONFIG, params)
34 #define cfg_enter() QDF_TRACE_ENTER(QDF_MODULE_ID_CONFIG, "enter")
35 #define cfg_exit() QDF_TRACE_EXIT(QDF_MODULE_ID_CONFIG, "exit")
36 
37 /* define global config values structure */
38 
39 #undef __CFG_INI_STRING
40 #define __CFG_INI_STRING(id, mtype, ctype, name, min, max, fallback, desc, \
41 			 def...) \
42 	const char id##_internal[(max) + 1];
43 #undef __CFG_INI
44 #define __CFG_INI(id, mtype, ctype, name, min, max, fallback, desc, def...) \
45 	const ctype id##_internal;
46 
47 struct cfg_values {
48 	/* e.g. const int32_t __CFG_SCAN_DWELL_TIME_internal; */
49 	CFG_ALL
50 };
51 
52 #undef __CFG_INI_STRING
53 #define __CFG_INI_STRING(args...) __CFG_INI(args)
54 #undef __CFG_INI
55 #define __CFG_INI(args...) (args)
56 
57 struct cfg_values *cfg_psoc_get_values(struct wlan_objmgr_psoc *psoc);
58 
59 #define __cfg_get(psoc, id) (cfg_psoc_get_values(psoc)->id##_internal)
60 
61 #endif /* __I_CFG_H */
62 
63