Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # MediaTek SoC drivers
  4. #
  5. menu "MediaTek SoC drivers"
  6. depends on ARCH_MEDIATEK || COMPILE_TEST
  7. config MTK_CMDQ
  8. tristate "MediaTek CMDQ Support"
  9. depends on ARCH_MEDIATEK || COMPILE_TEST
  10. select MAILBOX
  11. select MTK_CMDQ_MBOX
  12. select MTK_INFRACFG
  13. help
  14. Say yes here to add support for the MediaTek Command Queue (CMDQ)
  15. driver. The CMDQ is used to help read/write registers with critical
  16. time limitation, such as updating display configuration during the
  17. vblank.
  18. config MTK_INFRACFG
  19. bool "MediaTek INFRACFG Support"
  20. select REGMAP
  21. help
  22. Say yes here to add support for the MediaTek INFRACFG controller. The
  23. INFRACFG controller contains various infrastructure registers not
  24. directly associated to any device.
  25. config MTK_PMIC_WRAP
  26. tristate "MediaTek PMIC Wrapper Support"
  27. depends on RESET_CONTROLLER
  28. select REGMAP
  29. help
  30. Say yes here to add support for MediaTek PMIC Wrapper found
  31. on different MediaTek SoCs. The PMIC wrapper is a proprietary
  32. hardware to connect the PMIC.
  33. config MTK_SCPSYS
  34. bool "MediaTek SCPSYS Support"
  35. default ARCH_MEDIATEK
  36. select REGMAP
  37. select MTK_INFRACFG
  38. select PM_GENERIC_DOMAINS if PM
  39. help
  40. Say yes here to add support for the MediaTek SCPSYS power domain
  41. driver.
  42. endmenu