
Add header files for the new converged configuration component. cfg_dispatcher.h: Contains dispatcher lifecycle handlers cfg_define.h: Tools for components to define new configuration metadata cfg_ucfg.h: Contains APIs for consuming configuration at runtime cfg_converged.h: Contains a collection of configuration metadata from all the converged components Change-Id: Ief5d3e33dca1bc5f8dba47d9e0c03a97ad1b371f CRs-Fixed: 2196017
88 line
3.2 KiB
C
88 line
3.2 KiB
C
/*
|
|
* Copyright (c) 2018 The Linux Foundation. All rights reserved.
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
* above copyright notice and this permission notice appear in all
|
|
* copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
/**
|
|
* DOC: APIs and macros for defining configuration.
|
|
*/
|
|
|
|
#ifndef __CFG_DEFINE_H
|
|
#define __CFG_DEFINE_H
|
|
|
|
enum cfg_fallback_behavior {
|
|
CFG_VALUE_OR_CLAMP,
|
|
CFG_VALUE_OR_DEFAULT,
|
|
};
|
|
|
|
#define rm_parens(...) __VA_ARGS__
|
|
#define __CFG(id, mtype, args...) __CFG_##mtype(id, mtype, args)
|
|
#define _CFG(id, args) __CFG(id, args)
|
|
#define CFG(id) _CFG(__##id, rm_parens id)
|
|
|
|
#define __CFG_INT(args...) __CFG_ANY(args)
|
|
#define __CFG_UINT(args...) __CFG_ANY(args)
|
|
#define __CFG_BOOL(args...) __CFG_ANY(args)
|
|
#define __CFG_STRING(args...) __CFG_ANY(args)
|
|
#define __CFG_MAC(args...) __CFG_ANY(args)
|
|
#define __CFG_IPV4(args...) __CFG_ANY(args)
|
|
#define __CFG_IPV6(args...) __CFG_ANY(args)
|
|
|
|
#define __CFG_ANY(args...) (args)
|
|
#define __CFG_NONE(args...)
|
|
|
|
/* configuration available in ini */
|
|
#define CFG_INI_INT(name, min, max, def, fallback, desc) \
|
|
(INT, int32_t, name, min, max, fallback, desc, def)
|
|
#define CFG_INI_UINT(name, min, max, def, fallback, desc) \
|
|
(UINT, uint32_t, name, min, max, fallback, desc, def)
|
|
#define CFG_INI_BOOL(name, def, desc) \
|
|
(BOOL, bool, name, -1, -1, -1, desc, def)
|
|
#define CFG_INI_STRING(name, min_len, max_len, def, desc) \
|
|
(STRING, char *, name, min_len, max_len, -1, desc, def)
|
|
#define CFG_INI_MAC(name, def, desc) \
|
|
(MAC, struct qdf_mac_addr, name, -1, -1, -1, desc, def)
|
|
#define CFG_INI_IPV4(name, def, desc) \
|
|
(IPV4, struct qdf_ipv4_addr, name, -1, -1, -1, desc, def)
|
|
#define CFG_INI_IPV6(name, def, desc) \
|
|
(IPV6, struct qdf_ipv6_addr, name, -1, -1, -1, desc, def)
|
|
|
|
/* configuration *not* available in ini */
|
|
#define CFG_INT(name, min, max, def, fallback, desc) \
|
|
(NONE, int32_t, name, min, max, fallback, desc, def)
|
|
#define CFG_UINT(name, min, max, def, fallback, desc) \
|
|
(NONE, uint32_t, name, min, max, fallback, desc, def)
|
|
#define CFG_BOOL(name, def, desc) \
|
|
(NONE, bool, name, -1, -1, -1, desc, def)
|
|
#define CFG_STRING(name, min_len, max_len, def, desc) \
|
|
(NONE, char *, name, min_len, max_len, -1, desc, def)
|
|
#define CFG_MAC(name, def, desc) \
|
|
(NONE, struct qdf_mac_addr, name, -1, -1, -1, desc, def)
|
|
#define CFG_IPV4(name, def, desc) \
|
|
(NONE, struct qdf_ipv4_addr, name, -1, -1, -1, desc, def)
|
|
#define CFG_IPV6(name, def, desc) \
|
|
(NONE, struct qdf_ipv6_addr, name, -1, -1, -1, desc, def)
|
|
|
|
/* utility macros/functions */
|
|
#ifdef MCL
|
|
#define MCL_OR_WIN_VALUE(mcl_value, win_value) mcl_value
|
|
#else
|
|
#define MCL_OR_WIN_VALUE(mcl_value, win_value) win_value
|
|
#endif
|
|
|
|
#endif /* __CFG_DEFINE_H */
|
|
|