riscv: dts: sophgo: add Milk-V Duo board device tree
authorJisheng Zhang <jszhang@kernel.org>
Fri, 6 Oct 2023 12:14:49 +0000 (20:14 +0800)
committerConor Dooley <conor.dooley@microchip.com>
Sat, 7 Oct 2023 13:17:18 +0000 (14:17 +0100)
Milk-V Duo[1] board is an embedded development platform based on the
CV1800B chip. Add minimal device tree files for the development board.

Support basic uart drivers, so supports booting to a basic shell.

Link: https://milkv.io/duo
Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
Acked-by: Chen Wang <unicorn_wang@outlook.com>
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
arch/riscv/boot/dts/sophgo/Makefile
arch/riscv/boot/dts/sophgo/cv1800b-milkv-duo.dts [new file with mode: 0644]

index 73af15f42ec2f796d44f0cf60d6c6c2ad6578fe8..3fb65512c6312fe12cf07f299fa2cab302f6b46b 100644 (file)
@@ -1,2 +1,3 @@
 # SPDX-License-Identifier: GPL-2.0
+dtb-$(CONFIG_ARCH_SOPHGO) += cv1800b-milkv-duo.dtb
 dtb-$(CONFIG_ARCH_SOPHGO) += sg2042-milkv-pioneer.dtb
diff --git a/arch/riscv/boot/dts/sophgo/cv1800b-milkv-duo.dts b/arch/riscv/boot/dts/sophgo/cv1800b-milkv-duo.dts
new file mode 100644 (file)
index 0000000..3af9e34
--- /dev/null
@@ -0,0 +1,38 @@
+// SPDX-License-Identifier: (GPL-2.0 OR MIT)
+/*
+ * Copyright (C) 2023 Jisheng Zhang <jszhang@kernel.org>
+ */
+
+/dts-v1/;
+
+#include "cv1800b.dtsi"
+
+/ {
+       model = "Milk-V Duo";
+       compatible = "milkv,duo", "sophgo,cv1800b";
+
+       aliases {
+               serial0 = &uart0;
+               serial1 = &uart1;
+               serial2 = &uart2;
+               serial3 = &uart3;
+               serial4 = &uart4;
+       };
+
+       chosen {
+               stdout-path = "serial0:115200n8";
+       };
+
+       memory@80000000 {
+               device_type = "memory";
+               reg = <0x80000000 0x3f40000>;
+       };
+};
+
+&osc {
+       clock-frequency = <25000000>;
+};
+
+&uart0 {
+       status = "okay";
+};