Commit 6f51a045 authored by Duje Mihanović's avatar Duje Mihanović Committed by Ulf Hansson
Browse files

pmdomain: marvell: Add PXA1908 power domains



Marvell's PXA1908 SoC has a few power domains for its VPU, GPU, image
processor and DSI PHY. Add a driver to control these.

Signed-off-by: default avatarDuje Mihanović <duje@dujemihanovic.xyz>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 614106a7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2871,6 +2871,7 @@ L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm64/boot/dts/marvell/mmp/
F:	drivers/clk/mmp/clk-pxa1908*.c
F:	drivers/pmdomain/marvell/
F:	include/dt-bindings/clock/marvell,pxa1908.h
F:	include/dt-bindings/power/marvell,pxa1908-power.h
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ source "drivers/pmdomain/apple/Kconfig"
source "drivers/pmdomain/arm/Kconfig"
source "drivers/pmdomain/bcm/Kconfig"
source "drivers/pmdomain/imx/Kconfig"
source "drivers/pmdomain/marvell/Kconfig"
source "drivers/pmdomain/mediatek/Kconfig"
source "drivers/pmdomain/qcom/Kconfig"
source "drivers/pmdomain/renesas/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ obj-y += apple/
obj-y					+= arm/
obj-y					+= bcm/
obj-y					+= imx/
obj-y					+= marvell/
obj-y					+= mediatek/
obj-y					+= qcom/
obj-y					+= renesas/
+18 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

menu "Marvell PM Domains"
	depends on ARCH_MMP || COMPILE_TEST

config PXA1908_PM_DOMAINS
	tristate "Marvell PXA1908 power domains"
	depends on OF
	depends on PM
	default y if ARCH_MMP && ARM64
	select AUXILIARY_BUS
	select MFD_SYSCON
	select PM_GENERIC_DOMAINS
	select PM_GENERIC_DOMAINS_OF
	help
	  Say Y here to enable support for Marvell PXA1908's power domanis.

endmenu
+3 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

obj-$(CONFIG_PXA1908_PM_DOMAINS) += pxa1908-power-controller.o
Loading