diff options
author | Paul Kocialkowski | 2020-12-06 17:51:29 +0100 |
---|---|---|
committer | Maxime Ripard | 2021-01-06 17:49:58 +0100 |
commit | 8c361a10d586bd07e7f34e678daab06fbcd05f87 (patch) | |
tree | cb19d5ba0a81a095e1d22c31cdb02e8124134d66 /arch/arm/boot/dts/sun8i-s3-pinecube.dts | |
parent | c20e9e7675137d92bca071305e79fcc10364ebf5 (diff) |
ARM: dts: sun8i: Cleanup the Pinecube AXP209 node
This fixes a few things with the Pinecube AXP209 node:
- No compatible is required since it is using an AXP209 (not AXP203)
according to the schematics and this is what the included axp209.dtsi
already has;
- The interrupt-controller and #interrupt-cells properties are already
described in the included axp209.dtsi;
- The interrupt comes through the NMI controller, not directly through
the GIC.
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20201206165131.1041983-4-contact@paulk.fr
Diffstat (limited to 'arch/arm/boot/dts/sun8i-s3-pinecube.dts')
-rw-r--r-- | arch/arm/boot/dts/sun8i-s3-pinecube.dts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/arch/arm/boot/dts/sun8i-s3-pinecube.dts b/arch/arm/boot/dts/sun8i-s3-pinecube.dts index 4aa0ee897a0a..3c4bc4b0ca7f 100644 --- a/arch/arm/boot/dts/sun8i-s3-pinecube.dts +++ b/arch/arm/boot/dts/sun8i-s3-pinecube.dts @@ -88,13 +88,9 @@ status = "okay"; axp209: pmic@34 { - compatible = "x-powers,axp203", - "x-powers,axp209"; reg = <0x34>; - interrupt-parent = <&gic>; - interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; - interrupt-controller; - #interrupt-cells = <1>; + interrupt-parent = <&nmi_intc>; + interrupts = <0 IRQ_TYPE_LEVEL_LOW>; }; }; |