
Add the latest linux available from https://github.com/armbian/build commit de58ac1faac92724c6449db12c22affaeb003875, tag: sunxi-5.3, alongside all the patches that it comes with. Signed-off-by: Vicentiu Galanopulo <vicentiu@balena.io>
57 lines
1.6 KiB
Diff
57 lines
1.6 KiB
Diff
From 1b732183172780283b7311bf0959b7ba7d4a4153 Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megous@megous.com>
|
|
Date: Fri, 10 Nov 2017 22:21:29 +0100
|
|
Subject: [PATCH 49/82] ARM: dts: sun8i-a83t: Add uart2-uart4
|
|
|
|
Signed-off-by: Ondrej Jirman <megous@megous.com>
|
|
---
|
|
arch/arm/boot/dts/sun8i-a83t.dtsi | 33 +++++++++++++++++++++++++++++++
|
|
1 file changed, 33 insertions(+)
|
|
|
|
diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
|
|
index d9074f050a9c..788ecf540f55 100644
|
|
--- a/arch/arm/boot/dts/sun8i-a83t.dtsi
|
|
+++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
|
|
@@ -880,6 +880,39 @@
|
|
status = "disabled";
|
|
};
|
|
|
|
+ uart2: serial@01c28800 {
|
|
+ compatible = "snps,dw-apb-uart";
|
|
+ reg = <0x01c28800 0x400>;
|
|
+ interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ reg-shift = <2>;
|
|
+ reg-io-width = <4>;
|
|
+ clocks = <&ccu CLK_BUS_UART2>;
|
|
+ resets = <&ccu RST_BUS_UART2>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
+ uart3: serial@01c28c00 {
|
|
+ compatible = "snps,dw-apb-uart";
|
|
+ reg = <0x01c28c00 0x400>;
|
|
+ interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ reg-shift = <2>;
|
|
+ reg-io-width = <4>;
|
|
+ clocks = <&ccu CLK_BUS_UART3>;
|
|
+ resets = <&ccu RST_BUS_UART3>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
+ uart4: serial@01c29000 {
|
|
+ compatible = "snps,dw-apb-uart";
|
|
+ reg = <0x01c29000 0x400>;
|
|
+ interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ reg-shift = <2>;
|
|
+ reg-io-width = <4>;
|
|
+ clocks = <&ccu CLK_BUS_UART4>;
|
|
+ resets = <&ccu RST_BUS_UART4>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
i2c0: i2c@1c2ac00 {
|
|
compatible = "allwinner,sun8i-a83t-i2c",
|
|
"allwinner,sun6i-a31-i2c";
|
|
--
|
|
2.20.1
|
|
|