devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano
@ 2024-07-09 10:07 Thomas Bonnefille
  2024-07-09 10:07 ` [PATCH v3 1/5] dt-bindings: interrupt-controller: Add SOPHGO SG2002 plic Thomas Bonnefille
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-07-09 10:07 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
	Chen Wang, Inochi Amaoto, Chao Wei
  Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
	Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
	linux-kernel, devicetree, linux-riscv, Thomas Bonnefille,
	Conor Dooley

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 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 (5):
      dt-bindings: interrupt-controller: Add SOPHGO SG2002 plic
      dt-bindings: timer: Add SOPHGO SG2002 clint
      dt-bindings: riscv: Add Sipeed LicheeRV Nano board compatibles
      riscv: dts: sophgo: Add initial SG2002 SoC device tree
      riscv: dts: sophgo: Add LicheeRV Nano board device tree

 .../interrupt-controller/sifive,plic-1.0.0.yaml    |  1 +
 .../devicetree/bindings/riscv/sophgo.yaml          |  5 ++
 .../devicetree/bindings/timer/sifive,clint.yaml    |  1 +
 arch/riscv/boot/dts/sophgo/Makefile                |  1 +
 .../boot/dts/sophgo/sg2002-licheerv-nano-b.dts     | 54 ++++++++++++++++++++++
 arch/riscv/boot/dts/sophgo/sg2002.dtsi             | 32 +++++++++++++
 6 files changed, 94 insertions(+)
---
base-commit: d20f6b3d747c36889b7ce75ee369182af3decb6b
change-id: 20240515-sg2002-93dce1d263be

Best regards,
-- 
Thomas Bonnefille <thomas.bonnefille@bootlin.com>


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v3 1/5] dt-bindings: interrupt-controller: Add SOPHGO SG2002 plic
  2024-07-09 10:07 [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
@ 2024-07-09 10:07 ` Thomas Bonnefille
  2024-07-09 10:07 ` [PATCH v3 2/5] dt-bindings: timer: Add SOPHGO SG2002 clint Thomas Bonnefille
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-07-09 10:07 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
	Chen Wang, Inochi Amaoto, Chao Wei
  Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
	Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
	linux-kernel, devicetree, linux-riscv, Thomas Bonnefille,
	Conor Dooley

Add compatible string for SOPHGO SG2002 Platform-Level Interruter
Controller.

Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
---
 .../devicetree/bindings/interrupt-controller/sifive,plic-1.0.0.yaml      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/interrupt-controller/sifive,plic-1.0.0.yaml b/Documentation/devicetree/bindings/interrupt-controller/sifive,plic-1.0.0.yaml
index 709b2211276b..7e1451f9786a 100644
--- a/Documentation/devicetree/bindings/interrupt-controller/sifive,plic-1.0.0.yaml
+++ b/Documentation/devicetree/bindings/interrupt-controller/sifive,plic-1.0.0.yaml
@@ -67,6 +67,7 @@ properties:
               - allwinner,sun20i-d1-plic
               - sophgo,cv1800b-plic
               - sophgo,cv1812h-plic
+              - sophgo,sg2002-plic
               - sophgo,sg2042-plic
               - thead,th1520-plic
           - const: thead,c900-plic

-- 
2.45.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v3 2/5] dt-bindings: timer: Add SOPHGO SG2002 clint
  2024-07-09 10:07 [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
  2024-07-09 10:07 ` [PATCH v3 1/5] dt-bindings: interrupt-controller: Add SOPHGO SG2002 plic Thomas Bonnefille
@ 2024-07-09 10:07 ` Thomas Bonnefille
  2024-07-09 14:47   ` Daniel Lezcano
  2024-07-09 10:07 ` [PATCH v3 3/5] dt-bindings: riscv: Add Sipeed LicheeRV Nano board compatibles Thomas Bonnefille
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: Thomas Bonnefille @ 2024-07-09 10:07 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
	Chen Wang, Inochi Amaoto, Chao Wei
  Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
	Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
	linux-kernel, devicetree, linux-riscv, Thomas Bonnefille,
	Conor Dooley

Add compatible string for SOPHGO SG2002 Core-Local Interrupt Controller.

Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
---
 Documentation/devicetree/bindings/timer/sifive,clint.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/timer/sifive,clint.yaml b/Documentation/devicetree/bindings/timer/sifive,clint.yaml
index fced6f2d8ecb..b42d43d2de48 100644
--- a/Documentation/devicetree/bindings/timer/sifive,clint.yaml
+++ b/Documentation/devicetree/bindings/timer/sifive,clint.yaml
@@ -40,6 +40,7 @@ properties:
               - allwinner,sun20i-d1-clint
               - sophgo,cv1800b-clint
               - sophgo,cv1812h-clint
+              - sophgo,sg2002-clint
               - thead,th1520-clint
           - const: thead,c900-clint
       - items:

-- 
2.45.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v3 3/5] dt-bindings: riscv: Add Sipeed LicheeRV Nano board compatibles
  2024-07-09 10:07 [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
  2024-07-09 10:07 ` [PATCH v3 1/5] dt-bindings: interrupt-controller: Add SOPHGO SG2002 plic Thomas Bonnefille
  2024-07-09 10:07 ` [PATCH v3 2/5] dt-bindings: timer: Add SOPHGO SG2002 clint Thomas Bonnefille
@ 2024-07-09 10:07 ` Thomas Bonnefille
  2024-07-09 10:07 ` [PATCH v3 4/5] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-07-09 10:07 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
	Chen Wang, Inochi Amaoto, Chao Wei
  Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
	Daniel Lezcano, Thomas Petazzoni, Miquèl Raynal,
	linux-kernel, devicetree, linux-riscv, Thomas Bonnefille,
	Conor Dooley

Document the compatible strings for the Sipeed LicheeRV Nano B board which
uses the SOPHGO SG2002 SoC.

Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
---
 Documentation/devicetree/bindings/riscv/sophgo.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Documentation/devicetree/bindings/riscv/sophgo.yaml b/Documentation/devicetree/bindings/riscv/sophgo.yaml
index 9bc813dad098..a14cb10ff3f0 100644
--- a/Documentation/devicetree/bindings/riscv/sophgo.yaml
+++ b/Documentation/devicetree/bindings/riscv/sophgo.yaml
@@ -26,6 +26,11 @@ properties:
           - enum:
               - sophgo,huashan-pi
           - const: sophgo,cv1812h
+      - items:
+          - enum:
+              - sipeed,licheerv-nano-b
+          - const: sipeed,licheerv-nano
+          - const: sophgo,sg2002
       - items:
           - enum:
               - milkv,pioneer

-- 
2.45.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v3 4/5] riscv: dts: sophgo: Add initial SG2002 SoC device tree
  2024-07-09 10:07 [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
                   ` (2 preceding siblings ...)
  2024-07-09 10:07 ` [PATCH v3 3/5] dt-bindings: riscv: Add Sipeed LicheeRV Nano board compatibles Thomas Bonnefille
@ 2024-07-09 10:07 ` Thomas Bonnefille
  2024-07-09 10:07 ` [PATCH v3 5/5] riscv: dts: sophgo: Add LicheeRV Nano board " Thomas Bonnefille
  2024-07-09 15:30 ` [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Rob Herring (Arm)
  5 siblings, 0 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-07-09 10:07 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
	Chen Wang, Inochi Amaoto, Chao Wei
  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>
---
 arch/riscv/boot/dts/sophgo/sg2002.dtsi | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/arch/riscv/boot/dts/sophgo/sg2002.dtsi b/arch/riscv/boot/dts/sophgo/sg2002.dtsi
new file mode 100644
index 000000000000..4ca4e47a74e7
--- /dev/null
+++ b/arch/riscv/boot/dts/sophgo/sg2002.dtsi
@@ -0,0 +1,32 @@
+// 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 "cv18xx.dtsi"
+
+/ {
+	compatible = "sophgo,sg2002";
+
+	memory@80000000 {
+		device_type = "memory";
+		reg = <0x80000000 0x10000000>;
+	};
+};
+
+&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", "sophgo,cv1800b-dwcmshc";
+};

-- 
2.45.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v3 5/5] riscv: dts: sophgo: Add LicheeRV Nano board device tree
  2024-07-09 10:07 [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
                   ` (3 preceding siblings ...)
  2024-07-09 10:07 ` [PATCH v3 4/5] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
@ 2024-07-09 10:07 ` Thomas Bonnefille
  2024-07-09 15:30 ` [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Rob Herring (Arm)
  5 siblings, 0 replies; 8+ messages in thread
From: Thomas Bonnefille @ 2024-07-09 10:07 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Paul Walmsley,
	Chen Wang, Inochi Amaoto, Chao Wei
  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     | 54 ++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/arch/riscv/boot/dts/sophgo/Makefile b/arch/riscv/boot/dts/sophgo/Makefile
index 57ad82a61ea6..47d4243a8f35 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 000000000000..fc98b6a0ddf7
--- /dev/null
+++ b/arch/riscv/boot/dts/sophgo/sg2002-licheerv-nano-b.dts
@@ -0,0 +1,54 @@
+// 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>;
+};
+
+&sdhci0 {
+	status = "okay";
+	bus-width = <4>;
+	no-1-8-v;
+	no-mmc;
+	no-sdio;
+	disable-wp;
+};
+
+&uart0 {
+	status = "okay";
+};
+
+&uart1 {
+	status = "okay";
+};
+
+&i2c0 {
+	status = "okay";
+};

-- 
2.45.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 2/5] dt-bindings: timer: Add SOPHGO SG2002 clint
  2024-07-09 10:07 ` [PATCH v3 2/5] dt-bindings: timer: Add SOPHGO SG2002 clint Thomas Bonnefille
@ 2024-07-09 14:47   ` Daniel Lezcano
  0 siblings, 0 replies; 8+ messages in thread
From: Daniel Lezcano @ 2024-07-09 14:47 UTC (permalink / raw)
  To: Thomas Bonnefille, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Paul Walmsley, Chen Wang, Inochi Amaoto, Chao Wei
  Cc: Albert Ou, Palmer Dabbelt, Samuel Holland, Thomas Gleixner,
	Thomas Petazzoni, Miquèl Raynal, linux-kernel, devicetree,
	linux-riscv, Conor Dooley

On 09/07/2024 12:07, Thomas Bonnefille wrote:
> Add compatible string for SOPHGO SG2002 Core-Local Interrupt Controller.
> 
> Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
> Acked-by: Conor Dooley <conor.dooley@microchip.com>
> ---

Applied, thanks

-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano
  2024-07-09 10:07 [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
                   ` (4 preceding siblings ...)
  2024-07-09 10:07 ` [PATCH v3 5/5] riscv: dts: sophgo: Add LicheeRV Nano board " Thomas Bonnefille
@ 2024-07-09 15:30 ` Rob Herring (Arm)
  5 siblings, 0 replies; 8+ messages in thread
From: Rob Herring (Arm) @ 2024-07-09 15:30 UTC (permalink / raw)
  To: Thomas Bonnefille
  Cc: Inochi Amaoto, Albert Ou, Thomas Gleixner, Chao Wei, Conor Dooley,
	Daniel Lezcano, Thomas Petazzoni, Chen Wang, Samuel Holland,
	linux-riscv, linux-kernel, Palmer Dabbelt, Miquèl Raynal,
	Paul Walmsley, devicetree, Krzysztof Kozlowski, Conor Dooley


On Tue, 09 Jul 2024 12:07:15 +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 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 (5):
>       dt-bindings: interrupt-controller: Add SOPHGO SG2002 plic
>       dt-bindings: timer: Add SOPHGO SG2002 clint
>       dt-bindings: riscv: Add Sipeed LicheeRV Nano board compatibles
>       riscv: dts: sophgo: Add initial SG2002 SoC device tree
>       riscv: dts: sophgo: Add LicheeRV Nano board device tree
> 
>  .../interrupt-controller/sifive,plic-1.0.0.yaml    |  1 +
>  .../devicetree/bindings/riscv/sophgo.yaml          |  5 ++
>  .../devicetree/bindings/timer/sifive,clint.yaml    |  1 +
>  arch/riscv/boot/dts/sophgo/Makefile                |  1 +
>  .../boot/dts/sophgo/sg2002-licheerv-nano-b.dts     | 54 ++++++++++++++++++++++
>  arch/riscv/boot/dts/sophgo/sg2002.dtsi             | 32 +++++++++++++
>  6 files changed, 94 insertions(+)
> ---
> base-commit: d20f6b3d747c36889b7ce75ee369182af3decb6b
> change-id: 20240515-sg2002-93dce1d263be
> 
> Best regards,
> --
> Thomas Bonnefille <thomas.bonnefille@bootlin.com>
> 
> 
> 


My bot found new DTB warnings on the .dts files added or changed in this
series.

Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.

If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:

  pip3 install dtschema --upgrade


New warnings running 'make CHECK_DTBS=y sophgo/sg2002-licheerv-nano-b.dtb' for 20240709-sg2002-v3-0-af779c3d139d@bootlin.com:

arch/riscv/boot/dts/sophgo/sg2002-licheerv-nano-b.dtb: mmc@4310000: compatible: ['sophgo,sg2002-dwcmshc', 'sophgo,cv1800b-dwcmshc'] is too long
	from schema $id: http://devicetree.org/schemas/mmc/snps,dwcmshc-sdhci.yaml#
arch/riscv/boot/dts/sophgo/sg2002-licheerv-nano-b.dtb: mmc@4310000: Unevaluated properties are not allowed ('compatible' was unexpected)
	from schema $id: http://devicetree.org/schemas/mmc/snps,dwcmshc-sdhci.yaml#






^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-07-09 15:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-09 10:07 [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Thomas Bonnefille
2024-07-09 10:07 ` [PATCH v3 1/5] dt-bindings: interrupt-controller: Add SOPHGO SG2002 plic Thomas Bonnefille
2024-07-09 10:07 ` [PATCH v3 2/5] dt-bindings: timer: Add SOPHGO SG2002 clint Thomas Bonnefille
2024-07-09 14:47   ` Daniel Lezcano
2024-07-09 10:07 ` [PATCH v3 3/5] dt-bindings: riscv: Add Sipeed LicheeRV Nano board compatibles Thomas Bonnefille
2024-07-09 10:07 ` [PATCH v3 4/5] riscv: dts: sophgo: Add initial SG2002 SoC device tree Thomas Bonnefille
2024-07-09 10:07 ` [PATCH v3 5/5] riscv: dts: sophgo: Add LicheeRV Nano board " Thomas Bonnefille
2024-07-09 15:30 ` [PATCH v3 0/5] Add board support for Sipeed LicheeRV Nano Rob Herring (Arm)

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).