mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-29 16:06:59 +08:00

This target adds support for the StarFive JH7100 and JH7110 SoCs, based on 6.12, as well as a couple boards equipped with these. Installation: Standard SD-card installation via dd-ing the generated image to an SD-card of at least 256Mb. Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
50 lines
1.6 KiB
Diff
50 lines
1.6 KiB
Diff
From 907f68f5000522e3c78e9a5dca194f52f2ac54d3 Mon Sep 17 00:00:00 2001
|
|
From: Emil Renner Berthing <kernel@esmil.dk>
|
|
Date: Sun, 31 Oct 2021 17:15:58 +0100
|
|
Subject: [PATCH 1000/1021] riscv: dts: starfive: Add JH7100 high speed UARTs
|
|
|
|
Add missing device tree nodes for UART0 and UART1 on the StarFive JH7100
|
|
SoC. UART0 is used for Bluetooth on the BeagleV Starlight and StarFive
|
|
VisionFive V1 boards.
|
|
|
|
Signed-off-by: Emil Renner Berthing <kernel@esmil.dk>
|
|
---
|
|
arch/riscv/boot/dts/starfive/jh7100.dtsi | 26 ++++++++++++++++++++++++
|
|
1 file changed, 26 insertions(+)
|
|
|
|
--- a/arch/riscv/boot/dts/starfive/jh7100.dtsi
|
|
+++ b/arch/riscv/boot/dts/starfive/jh7100.dtsi
|
|
@@ -258,6 +258,32 @@
|
|
reg = <0x0 0x11850000 0x0 0x10000>;
|
|
};
|
|
|
|
+ uart0: serial@11870000 {
|
|
+ compatible = "starfive,jh7100-hsuart", "snps,dw-apb-uart";
|
|
+ reg = <0x0 0x11870000 0x0 0x10000>;
|
|
+ clocks = <&clkgen JH7100_CLK_UART0_CORE>,
|
|
+ <&clkgen JH7100_CLK_UART0_APB>;
|
|
+ clock-names = "baudclk", "apb_pclk";
|
|
+ resets = <&rstgen JH7100_RSTN_UART0_APB>;
|
|
+ interrupts = <92>;
|
|
+ reg-io-width = <4>;
|
|
+ reg-shift = <2>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
+ uart1: serial@11880000 {
|
|
+ compatible = "starfive,jh7100-hsuart", "snps,dw-apb-uart";
|
|
+ reg = <0x0 0x11880000 0x0 0x10000>;
|
|
+ clocks = <&clkgen JH7100_CLK_UART1_CORE>,
|
|
+ <&clkgen JH7100_CLK_UART1_APB>;
|
|
+ clock-names = "baudclk", "apb_pclk";
|
|
+ resets = <&rstgen JH7100_RSTN_UART1_APB>;
|
|
+ interrupts = <93>;
|
|
+ reg-io-width = <4>;
|
|
+ reg-shift = <2>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
i2c0: i2c@118b0000 {
|
|
compatible = "snps,designware-i2c";
|
|
reg = <0x0 0x118b0000 0x0 0x10000>;
|