arm64: dts: marvell: pxa1908: Add power domains

Update the APMU clock controller's compatible to allow the new power
domain driver to probe. Also add the first two power domain consumers:
IOMMU (fixes probing) and framebuffer.

Signed-off-by: Duje Mihanović <duje@dujemihanovic.xyz>
This commit is contained in:
Duje Mihanović 2025-09-13 23:12:51 +02:00
parent b3061b16d5
commit 0e53b0bcad
No known key found for this signature in database
GPG Key ID: AD319352458FAD03
2 changed files with 5 additions and 1 deletions

View File

@ -24,6 +24,7 @@ chosen {
fb0: framebuffer@17177000 {
compatible = "simple-framebuffer";
reg = <0 0x17177000 0 (480 * 800 * 4)>;
power-domains = <&apmu PXA1908_POWER_DOMAIN_DSI>;
width = <480>;
height = <800>;
stride = <(480 * 4)>;

View File

@ -3,6 +3,7 @@
#include <dt-bindings/interrupt-controller/arm-gic.h>
#include <dt-bindings/clock/marvell,pxa1908.h>
#include <dt-bindings/power/marvell,pxa1908-power.h>
/ {
model = "Marvell Armada PXA1908";
@ -93,6 +94,7 @@ smmu: iommu@c0010000 {
#iommu-cells = <1>;
interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>,
<GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
power-domains = <&apmu PXA1908_POWER_DOMAIN_VPU>;
status = "disabled";
};
@ -337,9 +339,10 @@ sdh2: mmc@81000 {
};
apmu: clock-controller@82800 {
compatible = "marvell,pxa1908-apmu";
compatible = "marvell,pxa1908-apmu", "syscon";
reg = <0x82800 0x400>;
#clock-cells = <1>;
#power-domain-cells = <1>;
};
};
};