blob: 2c344888ca675868344fda142156e24bd1c7a26b [file] [log] [blame]
Stephen Warren61f5ddc2016-07-13 13:45:31 -06001menu "Power Domain Support"
2
3config POWER_DOMAIN
4 bool "Enable power domain support using Driver Model"
5 depends on DM && OF_CONTROL
6 help
7 Enable support for the power domain driver class. Many SoCs allow
8 power to be applied to or removed from portions of the SoC (power
9 domains). This may be used to save power. This API provides the
10 means to control such power management hardware.
11
Álvaro Fernández Rojas7810fb92017-05-07 20:28:36 +020012config BCM6328_POWER_DOMAIN
13 bool "Enable the BCM6328 power domain driver"
14 depends on POWER_DOMAIN && ARCH_BMIPS
15 help
16 Enable support for manipulating BCM6345 power domains via MMIO
17 mapped registers.
18
Neil Armstrong8d5579c2018-08-06 14:49:19 +020019config MESON_GX_VPU_POWER_DOMAIN
20 bool "Enable Amlogic Meson GX VPU power domain driver"
21 depends on ARCH_MESON
22 help
23 Enable support for manipulating Amlogic Meson GX Video Processing
24 Unit power domain.
25
Stephen Warren61f5ddc2016-07-13 13:45:31 -060026config SANDBOX_POWER_DOMAIN
27 bool "Enable the sandbox power domain test driver"
28 depends on POWER_DOMAIN && SANDBOX
29 help
30 Enable support for a test power domain driver implementation, which
31 simply accepts requests to power on/off various HW modules without
32 actually doing anything beyond a little error checking.
33
Stephen Warren24cdf1a2016-08-08 11:28:26 -060034config TEGRA186_POWER_DOMAIN
35 bool "Enable Tegra186 BPMP-based power domain driver"
36 depends on TEGRA186_BPMP
37 help
38 Enable support for manipulating Tegra's on-SoC power domains via IPC
39 requests to the BPMP (Boot and Power Management Processor).
40
Andreas Dannenberg1a88a042018-08-27 15:57:45 +053041config TI_SCI_POWER_DOMAIN
42 bool "Enable the TI SCI-based power domain driver"
43 depends on POWER_DOMAIN && TI_SCI_PROTOCOL
44 help
45 Generic power domain implementation for TI devices implementing the
46 TI SCI protocol.
47
Stephen Warren61f5ddc2016-07-13 13:45:31 -060048endmenu