diff options
author | Neil Armstrong | 2018-08-06 14:49:19 +0200 |
---|---|---|
committer | Tom Rini | 2018-09-10 20:48:17 -0400 |
commit | 8d5579ceff2403d78a7fed1e06c5f003b3bca12a (patch) | |
tree | e4c458a4ec7ed02a611f0b3d8bfbfe35e62685e5 /drivers/power/domain/Kconfig | |
parent | dee37fc99d945eb96f0f501d17833cbb05798ad3 (diff) |
power: domain: Add the VPU Power Domain driver
The Amlogic Meson SoCs embeds a specific Power Domain dedicated to the
Video Processing Unit.
This patch implements support for this power domain in preparation of the
future support for the Video display support in U-Boot.
This driver will depend on changes in the clock driver to handle the setup
of the VPU and VAPB clocks configured from DT using assigned-clocks entries.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Diffstat (limited to 'drivers/power/domain/Kconfig')
-rw-r--r-- | drivers/power/domain/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/power/domain/Kconfig b/drivers/power/domain/Kconfig index 7cfa7614987..461884781a8 100644 --- a/drivers/power/domain/Kconfig +++ b/drivers/power/domain/Kconfig @@ -16,6 +16,13 @@ config BCM6328_POWER_DOMAIN Enable support for manipulating BCM6345 power domains via MMIO mapped registers. +config MESON_GX_VPU_POWER_DOMAIN + bool "Enable Amlogic Meson GX VPU power domain driver" + depends on ARCH_MESON + help + Enable support for manipulating Amlogic Meson GX Video Processing + Unit power domain. + config SANDBOX_POWER_DOMAIN bool "Enable the sandbox power domain test driver" depends on POWER_DOMAIN && SANDBOX |