2022-01-06 20:17:39 +08:00
|
|
|
# Copyright (c) 2022, CSIRO.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig POWER_DOMAIN
|
|
|
|
bool "Power domain drivers"
|
|
|
|
help
|
|
|
|
Include drivers for power domains in system config
|
|
|
|
|
|
|
|
if POWER_DOMAIN
|
|
|
|
|
2022-05-09 12:12:27 +08:00
|
|
|
module = POWER_DOMAIN
|
|
|
|
module-str = power_domain
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2022-01-06 20:17:39 +08:00
|
|
|
config POWER_DOMAIN_GPIO
|
|
|
|
bool "GPIO controlled power domain"
|
|
|
|
depends on GPIO
|
2022-03-12 13:40:35 +08:00
|
|
|
depends on TIMEOUT_64BIT
|
2022-01-06 20:17:39 +08:00
|
|
|
|
|
|
|
endif
|