Skip to content

Commit

Permalink
BCM270X_DT: Enable AUX interrupt controller in DT
Browse files Browse the repository at this point in the history
See: #1484
     #1573

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
  • Loading branch information
Phil Elwell committed Mar 23, 2017
1 parent 804636a commit 39c6ddf
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions arch/arm/boot/dts/bcm283x.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -426,20 +426,25 @@
#clock-cells = <1>;
reg = <0x7e215000 0x8>;
clocks = <&clocks BCM2835_CLOCK_VPU>;
interrupts = <1 29>;
interrupt-controller;
#interrupt-cells = <1>;
};

uart1: serial@7e215040 {
compatible = "brcm,bcm2835-aux-uart";
reg = <0x7e215040 0x40>;
interrupts = <1 29>;
interrupt-parent = <&aux>;
interrupts = <0>;
clocks = <&aux BCM2835_AUX_CLOCK_UART>;
status = "disabled";
};

spi1: spi@7e215080 {
compatible = "brcm,bcm2835-aux-spi";
reg = <0x7e215080 0x40>;
interrupts = <1 29>;
interrupt-parent = <&aux>;
interrupts = <1>;
clocks = <&aux BCM2835_AUX_CLOCK_SPI1>;
#address-cells = <1>;
#size-cells = <0>;
Expand All @@ -449,7 +454,8 @@
spi2: spi@7e2150c0 {
compatible = "brcm,bcm2835-aux-spi";
reg = <0x7e2150c0 0x40>;
interrupts = <1 29>;
interrupt-parent = <&aux>;
interrupts = <2>;
clocks = <&aux BCM2835_AUX_CLOCK_SPI2>;
#address-cells = <1>;
#size-cells = <0>;
Expand Down

0 comments on commit 39c6ddf

Please sign in to comment.