xref: /wlan-dirver/qca-wifi-host-cmn/cfg/inc/i_cfg.h (revision 6ecd284e5a94a1c96e26d571dd47419ac305990d)
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_log(level, fmt, args...) \
32 	QDF_TRACE(QDF_MODULE_ID_CONFIG, level, FL(fmt), ##args)
33 #define cfg_err(fmt, args...) __cfg_log(QDF_TRACE_LEVEL_ERROR, fmt, ##args)
34 #define cfg_info(fmt, args...) __cfg_log(QDF_TRACE_LEVEL_INFO, fmt, ##args)
35 #define cfg_debug(fmt, args...) __cfg_log(QDF_TRACE_LEVEL_DEBUG, fmt, ##args)
36 #define cfg_enter() cfg_debug("enter")
37 #define cfg_exit() cfg_debug("exit")
38 
39 /* define global config values structure */
40 
41 #undef __CFG_STRING
42 #define __CFG_STRING(id, mtype, ctype, name, min, max, fallback, desc, def...) \
43 	const char id##_internal[max + 1];
44 #undef __CFG_ANY
45 #define __CFG_ANY(id, mtype, ctype, name, min, max, fallback, desc, def...) \
46 	const ctype id##_internal;
47 
48 struct cfg_values {
49 	/* e.g. const int32_t __CFG_SCAN_DWELL_TIME_internal; */
50 	CFG_ALL
51 };
52 
53 #undef __CFG_STRING
54 #define __CFG_STRING(args...) __CFG_ANY(args)
55 #undef __CFG_ANY
56 #define __CFG_ANY(args...) (args)
57 
58 struct cfg_values *cfg_psoc_get_values(struct wlan_objmgr_psoc *psoc);
59 
60 #define __cfg_get(psoc, id) (cfg_psoc_get_values(psoc)->id##_internal)
61 
62 #endif /* __I_CFG_H */
63 
64