123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /*
- * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. 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, is_ini, mtype, args...) \
- __CFG_##is_ini##_##mtype(id, mtype, args)
- #define _CFG(id, args) __CFG(id, args)
- #define CFG(id) _CFG(__##id, rm_parens id)
- #define __CFG_INI_INT(args...) __CFG_INI(args)
- #define __CFG_INI_UINT(args...) __CFG_INI(args)
- #define __CFG_INI_BOOL(args...) __CFG_INI(args)
- #define __CFG_INI_STRING(args...) __CFG_INI(args)
- #define __CFG_INI_MAC(args...) __CFG_INI(args)
- #define __CFG_INI_IPV4(args...) __CFG_INI(args)
- #define __CFG_INI_IPV6(args...) __CFG_INI(args)
- #define __CFG_INI(args...) (args)
- #define __CFG_NON_INI_INT(args...) __CFG_NON_INI(args)
- #define __CFG_NON_INI_UINT(args...) __CFG_NON_INI(args)
- #define __CFG_NON_INI_BOOL(args...) __CFG_NON_INI(args)
- #define __CFG_NON_INI_STRING(args...) __CFG_NON_INI(args)
- #define __CFG_NON_INI_MAC(args...) __CFG_NON_INI(args)
- #define __CFG_NON_INI_IPV4(args...) __CFG_NON_INI(args)
- #define __CFG_NON_INI_IPV6(args...) __CFG_NON_INI(args)
- #define __CFG_NON_INI(args...)
- /* configuration available in ini */
- #define CFG_INI_INT(name, min, max, def, fallback, desc) \
- (INI, INT, int32_t, name, min, max, fallback, desc, def)
- #define CFG_INI_UINT(name, min, max, def, fallback, desc) \
- (INI, UINT, uint32_t, name, min, max, fallback, desc, def)
- #define CFG_INI_BOOL(name, def, desc) \
- (INI, BOOL, bool, name, false, true, -1, desc, def)
- #define CFG_INI_STRING(name, min_len, max_len, def, desc) \
- (INI, STRING, char *, name, min_len, max_len, -1, desc, def)
- #define CFG_INI_MAC(name, def, desc) \
- (INI, MAC, struct qdf_mac_addr, name, -1, -1, -1, desc, def)
- #define CFG_INI_IPV4(name, def, desc) \
- (INI, IPV4, struct qdf_ipv4_addr, name, -1, -1, -1, desc, def)
- #define CFG_INI_IPV6(name, def, desc) \
- (INI, 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) \
- (NON_INI, INT, int32_t, name, min, max, fallback, desc, def)
- #define CFG_UINT(name, min, max, def, fallback, desc) \
- (NON_INI, UINT, uint32_t, name, min, max, fallback, desc, def)
- #define CFG_BOOL(name, def, desc) \
- (NON_INI, BOOL, bool, name, false, true, false, desc, def)
- #define CFG_STRING(name, min_len, max_len, def, desc) \
- (NON_INI, STRING, char *, name, min_len, max_len, -1, desc, def)
- #define CFG_MAC(name, def, desc) \
- (NON_INI, MAC, struct qdf_mac_addr, name, -1, -1, -1, desc, def)
- #define CFG_IPV4(name, def, desc) \
- (NON_INI, IPV4, struct qdf_ipv4_addr, name, -1, -1, -1, desc, def)
- #define CFG_IPV6(name, def, desc) \
- (NON_INI, IPV6, struct qdf_ipv6_addr, name, -1, -1, -1, desc, def)
- /* utility macros/functions */
- #ifdef CONFIG_AP_PLATFORM
- #define PLATFORM_VALUE(non_ap_value, ap_value) ap_value
- #else
- #define PLATFORM_VALUE(non_ap_value, ap_value) non_ap_value
- #endif
- #ifdef WLAN_USE_CONFIG_PARAMS
- /* Section Parsing - section names to be parsed */
- #define CFG_256M_SECTION "256M"
- #define CFG_512M_SECTION "512M"
- #define CFG_512M_E_SECTION "512M-E"
- #define CFG_512M_P_SECTION "512M-P"
- #define CFG_2G_SECTION "2G"
- #define CFG_5G_SECTION "5G"
- #define CFG_5G_LOW_SECTION "5GL"
- #define CFG_5G_HIGH_SECTION "5GH"
- #define CFG_6G_HIGH_SECTION "6GH"
- #define CFG_6G_LOW_SECTION "6GL"
- #define CFG_6G_SECTION "6G"
- #define CFG_256M_2G_SECTION "2G-256M"
- #define CFG_256M_5G_SECTION "5G-256M"
- #define CFG_256M_5G_LOW_SECTION "5GL-256M"
- #define CFG_256M_5G_HIGH_SECTION "5GH-256M"
- #define CFG_256M_6G_LOW_SECTION "6GL-256M"
- #define CFG_256M_6G_HIGH_SECTION "6GH-256M"
- #define CFG_256M_6G_SECTION "6G-256M"
- #define CFG_512ME_2G_SECTION "2G-512M-E"
- #define CFG_512ME_5G_SECTION "5G-512M-E"
- #define CFG_512ME_5G_LOW_SECTION "5GL-512M-E"
- #define CFG_512ME_5G_LOW_SECTION "5GL-512M-E"
- #define CFG_512ME_6G_HIGH_SECTION "6GH-512M-E"
- #define CFG_512ME_6G_HIGH_SECTION "6GH-512M-E"
- #define CFG_512ME_6G_SECTION "6G-512M-E"
- #define CFG_512MP_2G_SECTION "2G-512M-P"
- #define CFG_512MP_5G_LOW_SECTION "5GL-512M-P"
- #define CFG_512MP_5G_HIGH_SECTION "5GH-512M-P"
- #define CFG_512MP_5G_SECTION "5G-512M-P"
- #define CFG_512MP_6G_LOW_SECTION "6GL-512M-P"
- #define CFG_512MP_6G_HIGH_SECTION "6GH-512M-P"
- #define CFG_512MP_6G_SECTION "6G-512M-P"
- #define CFG_1G_2G_SECTION "1G-2G"
- #define CFG_1G_5G_SECTION "1G-5G"
- #define CFG_1G_5G_LOW_SECTION "1G-5GL"
- #define CFG_1G_5G_HIGH_SECTION "1G-5GH"
- #define CFG_1G_6G_LOW_SECTION "1G-6GL"
- #define CFG_1G_6G_HIGH_SECTION "1G-6GH"
- #define CFG_1G_6G_SECTION "1G-6G"
- #define CFG_SCAN_RADIO_SECTION "SCAN-RADIO"
- #define CFG_SBS_NSS_RING_SECTION "SBS-NSS-RING"
- #define CFG_DBS_NSS_RING_SECTION "DBS-NSS-RING"
- #define CFG_DP_TX_DESC_512P_SECTION "512M_REDUCED_DESC"
- #define CFG_DP_TX_DESC_1G_SECTION "1G-TX-DESC"
- #define CFG_DP_MON_512M_SECTION "DP_MON_512M_RING"
- #define CFG_NSS_3DEV_RING_SECTION "DP_NSS_3DEV_RING_SIZE"
- #define CFG_DP_4RADIO_REO_SECTION "DP_NSS_4RADIO_REO_MAP"
- #define CFG_512M_OR_4CHAIN_SECTION "512M_OR_DP_MON_4CHAIN"
- #define CFG_DP_MON_2CHAIN_SECTION "DP_MON_2CHAIN"
- #define CFG_SOC_SINGLE_PHY_2G_SECTION "SINGLE_PHY_2G"
- #define CFG_SOC_SINGLE_PHY_5G_SECTION "SINGLE_PHY_5G"
- #define CFG_SOC_SINGLE_PHY_6G_SECTION "SINGLE_PHY_6G"
- #define CFG_SOC_SPLIT_PHY_2G_5G_LOW_SECTION "SPLIT_PHY_2G_5G_LOW"
- #define CFG_SOC_SPLIT_PHY_6G_5G_HIGH_SECTION "SPLIT_PHY_6G_5G_HIGH"
- #endif /* WLAN_USE_CONFIG_PARAMS */
- #endif /* __CFG_DEFINE_H */
|