cfr_cfg.h 1.4 KB

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