@@ -1,4 +1,8 @@
// SPDX-License-Identifier: GPL-2.0
+
+#include "dt-bindings/clock/bcm63268-clock.h"
+#include "dt-bindings/interrupt-controller/bcm63268-interrupt-controller.h"
+
/ {
#address-cells = <1>;
#size-cells = <1>;
@@ -87,7 +91,7 @@ uart0: serial@10000180 {
reg = <0x10000180 0x18>;
interrupt-parent = <&periph_intc>;
- interrupts = <5>;
+ interrupts = <BCM63268_IRQ_UART0>;
clocks = <&periph_clk>;
clock-names = "refclk";
@@ -100,7 +104,7 @@ uart1: serial@100001a0 {
reg = <0x100001a0 0x18>;
interrupt-parent = <&periph_intc>;
- interrupts = <34>;
+ interrupts = <BCM63268_IRQ_UART1>;
clocks = <&periph_clk>;
clock-names = "refclk";
@@ -123,7 +127,7 @@ ehci: usb@10002500 {
big-endian;
interrupt-parent = <&periph_intc>;
- interrupts = <10>;
+ interrupts = <BCM63268_IRQ_EHCI>;
status = "disabled";
};
@@ -135,7 +139,7 @@ ohci: usb@10002600 {
no-big-frame-no;
interrupt-parent = <&periph_intc>;
- interrupts = <9>;
+ interrupts = <BCM63268_IRQ_OHCI>;
status = "disabled";
};
Now that there are proper device tree bindings we can start using them. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> --- arch/mips/boot/dts/brcm/bcm63268.dtsi | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-)