1# SPDX-License-Identifier: GPL-2.0-only 2 3if ARCH_APPLE || COMPILE_TEST 4 5menu "Apple SoC drivers" 6 7config APPLE_PMGR_PWRSTATE 8 bool "Apple SoC PMGR power state control" 9 depends on PM 10 select REGMAP 11 select MFD_SYSCON 12 select PM_GENERIC_DOMAINS 13 select RESET_CONTROLLER 14 default ARCH_APPLE 15 help 16 The PMGR block in Apple SoCs provides high-level power state 17 controls for SoC devices. This driver manages them through the 18 generic power domain framework, and also provides reset support. 19 20endmenu 21 22endif 23