* [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano
@ 2024-10-10 15:07 Thomas Bonnefille
2024-10-10 15:07 ` [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-10-10 15:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
Chen Wang, Inochi Amaoto, Chao Wei, Conor Dooley
Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
linux-kernel, devicetree, linux-riscv, Thomas Bonnefille
The LicheeRV Nano is a RISC-V SBC based on the Sophgo SG2002 chip. Adds
minimal device tree files for this board to make it boot to a basic
shell.
Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
---
Changes in v5:
- Add support for pinctrl
- Remove nodes for i2c0 and uart1
- Drop dt-bindings patch that are already applied
- Link to v4: https://lore.kernel.org/r/20240711-sg2002-v4-0-d97ec2367095@bootlin.com
Changes in v4:
- Add correct bindings configuration for SG2002 sdhci
- Drop commit "dt-bindings: timer: Add SOPHGO SG2002 clint" because it
has already been merged in Daniel Lezcano git tree.
- Link to v3: https://lore.kernel.org/r/20240709-sg2002-v3-0-af779c3d139d@bootlin.com
Changes in v3:
- Remove /dts-v1/ directive from sg2002.dtsi file
- Add disable-wp property to sdhci node to avoid having a write
protected SD card
- Drop changes in cv18xx.dtsi and cv1800b.dtsi
- Add fallback compatible to cv1800b in SDHCI node of sg2002.dtsi
- Link to v2: https://lore.kernel.org/r/20240612-sg2002-v2-0-19a585af6846@bootlin.com
Changes in v2:
- Add SDHCI support
- Change device tree name to match the Makefile
- Add oscillator frequency
- Add aliases to other UARTs
- Add aliases to GPIOs
- Move compatible for SDHCI from common DT to specific DT
- Link to v1: https://lore.kernel.org/r/20240527-sg2002-v1-0-1b6cb38ce8f4@bootlin.com
---
Thomas Bonnefille (2):
riscv: dts: sophgo: Add initial SG2002 SoC device tree
riscv: dts: sophgo: Add LicheeRV Nano board device tree
arch/riscv/boot/dts/sophgo/Makefile | 1 +
.../boot/dts/sophgo/sg2002-licheerv-nano-b.dts | 95 ++++++++++++++++++++++
arch/riscv/boot/dts/sophgo/sg2002.dtsi | 42 ++++++++++
3 files changed, 138 insertions(+)
---
base-commit: 9852d85ec9d492ebef56dc5f229416c925758edc
change-id: 20240515-sg2002-93dce1d263be
Best regards,
--
Thomas Bonnefille <thomas.bonnefille@bootlin.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree
2024-10-10 15:07 [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
@ 2024-10-10 15:07 ` Thomas Bonnefille
2024-10-10 15:23 ` Thomas Bonnefille
2024-10-28 1:00 ` Inochi Amaoto
2024-10-10 15:07 ` [PATCH v5 2/2] riscv: dts: sophgo: Add LicheeRV Nano board " Thomas Bonnefille
` (2 subsequent siblings)
3 siblings, 2 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-10-10 15:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
Chen Wang, Inochi Amaoto, Chao Wei, Conor Dooley
Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
linux-kernel, devicetree, linux-riscv, Thomas Bonnefille
Add initial device tree for the SG2002 RISC-V SoC by SOPHGO.
Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
---
The commit adding the bindings for the compatible "sophgo,sg2002-clint"
has been applied to Daniel Lezcano git tree. This commit may trigger the
bots because of this missing binding.
---
arch/riscv/boot/dts/sophgo/sg2002.dtsi | 42 ++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/arch/riscv/boot/dts/sophgo/sg2002.dtsi b/arch/riscv/boot/dts/sophgo/sg2002.dtsi
new file mode 100644
index 0000000000000000000000000000000000000000..242fde84443f0d6a2c8476666dfa3d72727071b1
--- /dev/null
+++ b/arch/riscv/boot/dts/sophgo/sg2002.dtsi
@@ -0,0 +1,42 @@
+// SPDX-License-Identifier: (GPL-2.0 OR MIT)
+/*
+ * Copyright (C) 2024 Thomas Bonnefille <thomas.bonnefille@bootlin.com>
+ */
+
+#include <dt-bindings/interrupt-controller/irq.h>
+#include <dt-bindings/pinctrl/pinctrl-sg2002.h>
+#include "cv18xx.dtsi"
+
+/ {
+ compatible = "sophgo,sg2002";
+
+ memory@80000000 {
+ device_type = "memory";
+ reg = <0x80000000 0x10000000>;
+ };
+
+ soc {
+ pinctrl: pinctrl@3008000 {
+ compatible = "sophgo,sg2002-pinctrl";
+ reg = <0x03001000 0x1000>,
+ <0x05027000 0x1000>;
+ reg-names = "sys", "rtc";
+ };
+ };
+};
+
+&plic {
+ compatible = "sophgo,sg2002-plic", "thead,c900-plic";
+};
+
+&clint {
+ compatible = "sophgo,sg2002-clint", "thead,c900-clint";
+};
+
+&clk {
+ compatible = "sophgo,sg2000-clk";
+};
+
+&sdhci0 {
+ compatible = "sophgo,sg2002-dwcmshc";
+};
--
2.47.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v5 2/2] riscv: dts: sophgo: Add LicheeRV Nano board device tree
2024-10-10 15:07 [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
2024-10-10 15:07 ` [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
@ 2024-10-10 15:07 ` Thomas Bonnefille
2024-10-22 0:32 ` [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Inochi Amaoto
2024-10-22 0:43 ` Inochi Amaoto
3 siblings, 0 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-10-10 15:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
Chen Wang, Inochi Amaoto, Chao Wei, Conor Dooley
Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
linux-kernel, devicetree, linux-riscv, Thomas Bonnefille
LicheeRV Nano B [1] is an embedded development platform based on the SOPHGO
SG2002 chip, the B(ase) version is deprived of Wifi/Bluetooth and Ethernet.
Add only support for UART and SDHCI.
Link: https://wiki.sipeed.com/hardware/en/lichee/RV_Nano/1_intro.html [1]
Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
---
arch/riscv/boot/dts/sophgo/Makefile | 1 +
.../boot/dts/sophgo/sg2002-licheerv-nano-b.dts | 95 ++++++++++++++++++++++
2 files changed, 96 insertions(+)
diff --git a/arch/riscv/boot/dts/sophgo/Makefile b/arch/riscv/boot/dts/sophgo/Makefile
index 57ad82a61ea6fc25f72d0ade991e33feaa53266e..47d4243a8f35a7d5572dbf5ef9899297b908afde 100644
--- a/arch/riscv/boot/dts/sophgo/Makefile
+++ b/arch/riscv/boot/dts/sophgo/Makefile
@@ -1,4 +1,5 @@
# SPDX-License-Identifier: GPL-2.0
dtb-$(CONFIG_ARCH_SOPHGO) += cv1800b-milkv-duo.dtb
dtb-$(CONFIG_ARCH_SOPHGO) += cv1812h-huashan-pi.dtb
+dtb-$(CONFIG_ARCH_SOPHGO) += sg2002-licheerv-nano-b.dtb
dtb-$(CONFIG_ARCH_SOPHGO) += sg2042-milkv-pioneer.dtb
diff --git a/arch/riscv/boot/dts/sophgo/sg2002-licheerv-nano-b.dts b/arch/riscv/boot/dts/sophgo/sg2002-licheerv-nano-b.dts
new file mode 100644
index 0000000000000000000000000000000000000000..86a712b953a5acd5926120db61354243f5580a05
--- /dev/null
+++ b/arch/riscv/boot/dts/sophgo/sg2002-licheerv-nano-b.dts
@@ -0,0 +1,95 @@
+// SPDX-License-Identifier: (GPL-2.0 OR MIT)
+/*
+ * Copyright (C) 2024 Thomas Bonnefille <thomas.bonnefille@bootlin.com>
+ */
+
+/dts-v1/;
+
+#include "sg2002.dtsi"
+
+/ {
+ model = "LicheeRV Nano B";
+ compatible = "sipeed,licheerv-nano-b", "sipeed,licheerv-nano", "sophgo,sg2002";
+
+ aliases {
+ gpio0 = &gpio0;
+ gpio1 = &gpio1;
+ gpio2 = &gpio2;
+ gpio3 = &gpio3;
+ serial0 = &uart0;
+ serial1 = &uart1;
+ serial2 = &uart2;
+ serial3 = &uart3;
+ serial4 = &uart4;
+ };
+
+ chosen {
+ stdout-path = "serial0:115200n8";
+ };
+};
+
+&osc {
+ clock-frequency = <25000000>;
+};
+
+&pinctrl {
+ uart0_cfg: uart0-cfg {
+ uart0-pins {
+ pinmux = <PINMUX(PIN_UART0_TX, 0)>,
+ <PINMUX(PIN_UART0_RX, 0)>;
+ bias-pull-up;
+ drive-strength-microamp = <10800>;
+ power-source = <3300>;
+ };
+ };
+
+ sdhci0_cfg: sdhci0-cfg {
+ sdhci0-clk-pins {
+ pinmux = <PINMUX(PIN_SD0_CLK, 0)>;
+ bias-pull-up;
+ drive-strength-microamp = <16100>;
+ power-source = <3300>;
+ };
+
+ sdhci0-cmd-pins {
+ pinmux = <PINMUX(PIN_SD0_CMD, 0)>;
+ bias-pull-up;
+ drive-strength-microamp = <10800>;
+ power-source = <3300>;
+ };
+
+ sdhci0-data-pins {
+ pinmux = <PINMUX(PIN_SD0_D0, 0)>,
+ <PINMUX(PIN_SD0_D1, 0)>,
+ <PINMUX(PIN_SD0_D2, 0)>,
+ <PINMUX(PIN_SD0_D3, 0)>;
+ bias-pull-up;
+ drive-strength-microamp = <10800>;
+ power-source = <3300>;
+ };
+
+ sdhci0-cd-pins {
+ pinmux = <PINMUX(PIN_SD0_CD, 0)>;
+ bias-pull-up;
+ drive-strength-microamp = <10800>;
+ power-source = <3300>;
+ };
+ };
+};
+
+&sdhci0 {
+ pinctrl-0 = <&sdhci0_cfg>;
+ pinctrl-names = "default";
+ status = "okay";
+ bus-width = <4>;
+ no-1-8-v;
+ no-mmc;
+ no-sdio;
+ disable-wp;
+};
+
+&uart0 {
+ pinctrl-0 = <&uart0_cfg>;
+ pinctrl-names = "default";
+ status = "okay";
+};
--
2.47.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree
2024-10-10 15:07 ` [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
@ 2024-10-10 15:23 ` Thomas Bonnefille
2024-10-11 0:41 ` Chen Wang
2024-10-28 1:00 ` Inochi Amaoto
1 sibling, 1 reply; 8+ messages in thread
From: Thomas Bonnefille @ 2024-10-10 15:23 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
Chen Wang, Inochi Amaoto, Chao Wei, Conor Dooley
Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
linux-kernel, devicetree, linux-riscv
Hello, sorry for the double email.
On 10/10/24 5:07 PM, Thomas Bonnefille wrote:
> Add initial device tree for the SG2002 RISC-V SoC by SOPHGO.
>
> Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
> ---
> The commit adding the bindings for the compatible "sophgo,sg2002-clint"
> has been applied to Daniel Lezcano git tree. This commit may trigger the
> bots because of this missing binding.
> ---
I wanted to say, that the comment above is no longer relevant because
Daniel Lezcano's branch was applied in 6.11.
Best regards,
Thomas
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree
2024-10-10 15:23 ` Thomas Bonnefille
@ 2024-10-11 0:41 ` Chen Wang
0 siblings, 0 replies; 8+ messages in thread
From: Chen Wang @ 2024-10-11 0:41 UTC (permalink / raw)
To: Thomas Bonnefille
Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
linux-kernel, devicetree, linux-riscv, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Paul Walmsley, Inochi Amaoto,
Chao Wei, Conor Dooley
On 2024/10/10 23:23, Thomas Bonnefille wrote:
> Hello, sorry for the double email.
>
> On 10/10/24 5:07 PM, Thomas Bonnefille wrote:
>> Add initial device tree for the SG2002 RISC-V SoC by SOPHGO.
>>
>> Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
>> ---
>> The commit adding the bindings for the compatible "sophgo,sg2002-clint"
>> has been applied to Daniel Lezcano git tree. This commit may trigger the
>> bots because of this missing binding.
>> ---
>
> I wanted to say, that the comment above is no longer relevant because
> Daniel Lezcano's branch was applied in 6.11.
OK, I will remove it when PR this patch.
Thanks,
Chen
>
> Best regards,
> Thomas
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano
2024-10-10 15:07 [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
2024-10-10 15:07 ` [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
2024-10-10 15:07 ` [PATCH v5 2/2] riscv: dts: sophgo: Add LicheeRV Nano board " Thomas Bonnefille
@ 2024-10-22 0:32 ` Inochi Amaoto
2024-10-22 0:43 ` Inochi Amaoto
3 siblings, 0 replies; 8+ messages in thread
From: Inochi Amaoto @ 2024-10-22 0:32 UTC (permalink / raw)
To: Thomas Bonnefille
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
Chen Wang, Inochi Amaoto, Chao Wei, Conor Dooley, Albert Ou,
Palmer Dabbelt, Samuel Holland, Thomas Gleixner, Daniel Lezcano,
Thomas Petazzoni, Miquèl Raynal, linux-kernel, devicetree,
linux-riscv
On Thu, Oct 10, 2024 at 05:07:05PM +0200, Thomas Bonnefille wrote:
> The LicheeRV Nano is a RISC-V SBC based on the Sophgo SG2002 chip. Adds
> minimal device tree files for this board to make it boot to a basic
> shell.
>
> Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
> ---
> Changes in v5:
> - Add support for pinctrl
> - Remove nodes for i2c0 and uart1
> - Drop dt-bindings patch that are already applied
> - Link to v4: https://lore.kernel.org/r/20240711-sg2002-v4-0-d97ec2367095@bootlin.com
>
> Changes in v4:
> - Add correct bindings configuration for SG2002 sdhci
> - Drop commit "dt-bindings: timer: Add SOPHGO SG2002 clint" because it
> has already been merged in Daniel Lezcano git tree.
> - Link to v3: https://lore.kernel.org/r/20240709-sg2002-v3-0-af779c3d139d@bootlin.com
>
> Changes in v3:
> - Remove /dts-v1/ directive from sg2002.dtsi file
> - Add disable-wp property to sdhci node to avoid having a write
> protected SD card
> - Drop changes in cv18xx.dtsi and cv1800b.dtsi
> - Add fallback compatible to cv1800b in SDHCI node of sg2002.dtsi
> - Link to v2: https://lore.kernel.org/r/20240612-sg2002-v2-0-19a585af6846@bootlin.com
>
> Changes in v2:
> - Add SDHCI support
> - Change device tree name to match the Makefile
> - Add oscillator frequency
> - Add aliases to other UARTs
> - Add aliases to GPIOs
> - Move compatible for SDHCI from common DT to specific DT
> - Link to v1: https://lore.kernel.org/r/20240527-sg2002-v1-0-1b6cb38ce8f4@bootlin.com
>
> ---
> Thomas Bonnefille (2):
> riscv: dts: sophgo: Add initial SG2002 SoC device tree
> riscv: dts: sophgo: Add LicheeRV Nano board device tree
>
> arch/riscv/boot/dts/sophgo/Makefile | 1 +
> .../boot/dts/sophgo/sg2002-licheerv-nano-b.dts | 95 ++++++++++++++++++++++
> arch/riscv/boot/dts/sophgo/sg2002.dtsi | 42 ++++++++++
> 3 files changed, 138 insertions(+)
> ---
> base-commit: 9852d85ec9d492ebef56dc5f229416c925758edc
> change-id: 20240515-sg2002-93dce1d263be
>
> Best regards,
> --
> Thomas Bonnefille <thomas.bonnefille@bootlin.com>
>
LGTM.
Reviewed-by: Inochi Amaoto <inochiama@gmail.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano
2024-10-10 15:07 [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
` (2 preceding siblings ...)
2024-10-22 0:32 ` [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Inochi Amaoto
@ 2024-10-22 0:43 ` Inochi Amaoto
3 siblings, 0 replies; 8+ messages in thread
From: Inochi Amaoto @ 2024-10-22 0:43 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
Chen Wang, Inochi Amaoto, Chao Wei, Conor Dooley,
Thomas Bonnefille
Cc: Inochi Amaoto, Albert Ou, Palmer Dabbelt, Samuel Holland,
Thomas Gleixner, Daniel Lezcano, Thomas Petazzoni,
Miquèl Raynal, linux-kernel, devicetree, linux-riscv
On Thu, 10 Oct 2024 17:07:05 +0200, Thomas Bonnefille wrote:
> The LicheeRV Nano is a RISC-V SBC based on the Sophgo SG2002 chip. Adds
> minimal device tree files for this board to make it boot to a basic
> shell.
>
>
Applied to for-next, thanks!
[1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree
https://github.com/sophgo/linux/commit/93b61555f5095a44fe00df27399270867fbf278a
[2/2] riscv: dts: sophgo: Add LicheeRV Nano board device tree
https://github.com/sophgo/linux/commit/d32552307b6c526aa75a9f9a0ea29a4a7f1746b9
Thanks,
Inochi
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree
2024-10-10 15:07 ` [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
2024-10-10 15:23 ` Thomas Bonnefille
@ 2024-10-28 1:00 ` Inochi Amaoto
1 sibling, 0 replies; 8+ messages in thread
From: Inochi Amaoto @ 2024-10-28 1:00 UTC (permalink / raw)
To: Thomas Bonnefille, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Paul Walmsley, Chen Wang, Inochi Amaoto, Chao Wei, Conor Dooley
Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
linux-kernel, devicetree, linux-riscv
On Thu, Oct 10, 2024 at 05:07:06PM +0200, Thomas Bonnefille wrote:
> Add initial device tree for the SG2002 RISC-V SoC by SOPHGO.
>
> Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
> ---
> The commit adding the bindings for the compatible "sophgo,sg2002-clint"
> has been applied to Daniel Lezcano git tree. This commit may trigger the
> bots because of this missing binding.
> ---
> arch/riscv/boot/dts/sophgo/sg2002.dtsi | 42 ++++++++++++++++++++++++++++++++++
> 1 file changed, 42 insertions(+)
>
> diff --git a/arch/riscv/boot/dts/sophgo/sg2002.dtsi b/arch/riscv/boot/dts/sophgo/sg2002.dtsi
> new file mode 100644
> index 0000000000000000000000000000000000000000..242fde84443f0d6a2c8476666dfa3d72727071b1
> --- /dev/null
> +++ b/arch/riscv/boot/dts/sophgo/sg2002.dtsi
> @@ -0,0 +1,42 @@
> +// SPDX-License-Identifier: (GPL-2.0 OR MIT)
> +/*
> + * Copyright (C) 2024 Thomas Bonnefille <thomas.bonnefille@bootlin.com>
> + */
> +
> +#include <dt-bindings/interrupt-controller/irq.h>
> +#include <dt-bindings/pinctrl/pinctrl-sg2002.h>
> +#include "cv18xx.dtsi"
> +
> +/ {
> + compatible = "sophgo,sg2002";
> +
> + memory@80000000 {
> + device_type = "memory";
> + reg = <0x80000000 0x10000000>;
> + };
> +
> + soc {
> + pinctrl: pinctrl@3008000 {
I got the following waring:
arch/riscv/boot/dts/sophgo/sg2002.dtsi:20.28-25.5: Warning (simple_bus_reg): /soc/pinctrl@3008000: simple-bus unit address format error, expected "3001000"
Could you send a fix patch?
Regards,
Inochi
> + compatible = "sophgo,sg2002-pinctrl";
> + reg = <0x03001000 0x1000>,
> + <0x05027000 0x1000>;
> + reg-names = "sys", "rtc";
> + };
> + };
> +};
> +
> +&plic {
> + compatible = "sophgo,sg2002-plic", "thead,c900-plic";
> +};
> +
> +&clint {
> + compatible = "sophgo,sg2002-clint", "thead,c900-clint";
> +};
> +
> +&clk {
> + compatible = "sophgo,sg2000-clk";
> +};
> +
> +&sdhci0 {
> + compatible = "sophgo,sg2002-dwcmshc";
> +};
>
> --
> 2.47.0
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-28 1:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-10 15:07 [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
2024-10-10 15:07 ` [PATCH v5 1/2] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
2024-10-10 15:23 ` Thomas Bonnefille
2024-10-11 0:41 ` Chen Wang
2024-10-28 1:00 ` Inochi Amaoto
2024-10-10 15:07 ` [PATCH v5 2/2] riscv: dts: sophgo: Add LicheeRV Nano board " Thomas Bonnefille
2024-10-22 0:32 ` [PATCH v5 0/2] Add board support for Sipeed LicheeRV Nano Inochi Amaoto
2024-10-22 0:43 ` Inochi Amaoto
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).