1 /* 2 * Copyright (c) 2020 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: This file contains centralized cfg definitions of CFR component 21 */ 22 #ifndef __CFR_CONFIG_H 23 #define __CFR_CONFIG_H 24 25 /* 26 * <ini> 27 * cfr_disable - Bitmap denoting the PDEVs for which CFR needs to be 28 * disabled 29 * @Min: 0 30 * @Max: Bitmap with no. of set bits equal to total no. of PDEVs in the SOC 31 * @Default: 0 32 * 33 * This ini is used to disable CFR feature for PDEV. 34 * 35 * Related: None 36 * 37 * Supported Feature: CFR 38 * 39 * Usage: External 40 * 41 * </ini> 42 */ 43 #define CFG_CFR_DISABLE\ 44 CFG_INI_UINT("cfr_disable", \ 45 0, \ 46 0x7, \ 47 0, \ 48 CFG_VALUE_OR_DEFAULT, \ 49 "cfr disable bitmap") 50 51 52 #define CFG_CFR_ALL \ 53 CFG(CFG_CFR_DISABLE) 54 55 #endif /* __CFR_CONFIG_H */ 56