devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support
@ 2025-09-18 20:44 Han Gao
  2025-09-18 20:44 ` [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree Han Gao
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Han Gao @ 2025-09-18 20:44 UTC (permalink / raw)
  To: devicetree, Drew Fustini, Guo Ren, Fu Wei, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Alexandre Ghiti, Chen Wang, Inochi Amaoto, Han Gao
  Cc: linux-riscv, linux-kernel

Add xtheadvector & ziccrse & zfh for th1520

Updated the commit message for the patchset

Thanks,
Han

---
v1: https://lore.kernel.org/all/20250911184528.1512543-1-rabenda.cn@gmail.com/

Han Gao (3):
  riscv: dts: thead: add xtheadvector to the th1520 devicetree
  riscv: dts: thead: add ziccrse for th1520
  riscv: dts: thead: add zfh for th1520

 arch/riscv/boot/dts/thead/th1520.dtsi | 28 +++++++++++++++++++--------
 1 file changed, 20 insertions(+), 8 deletions(-)

-- 
2.47.3


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

* [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree
  2025-09-18 20:44 [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Han Gao
@ 2025-09-18 20:44 ` Han Gao
  2025-09-20 23:12   ` Drew Fustini
  2025-10-03  1:35   ` Drew Fustini
  2025-09-18 20:44 ` [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520 Han Gao
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 12+ messages in thread
From: Han Gao @ 2025-09-18 20:44 UTC (permalink / raw)
  To: devicetree, Drew Fustini, Guo Ren, Fu Wei, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Alexandre Ghiti, Chen Wang, Inochi Amaoto, Han Gao
  Cc: linux-riscv, linux-kernel

The th1520 support xtheadvector [1] so it can be included in the
devicetree. Also include vlenb for the cpu. And set vlenb=16 [2].

This can be tested by passing the "mitigations=off" kernel parameter.

Link: https://lore.kernel.org/linux-riscv/20241113-xtheadvector-v11-4-236c22791ef9@rivosinc.com/ [1]
Link: https://lore.kernel.org/linux-riscv/aCO44SAoS2kIP61r@ghost/ [2]

Signed-off-by: Han Gao <rabenda.cn@gmail.com>
---
 arch/riscv/boot/dts/thead/th1520.dtsi | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/arch/riscv/boot/dts/thead/th1520.dtsi b/arch/riscv/boot/dts/thead/th1520.dtsi
index 42724bf7e90e..59d1927764a6 100644
--- a/arch/riscv/boot/dts/thead/th1520.dtsi
+++ b/arch/riscv/boot/dts/thead/th1520.dtsi
@@ -25,7 +25,8 @@ c910_0: cpu@0 {
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm";
+					       "zifencei", "zihpm", "xtheadvector";
+			thead,vlenb = <16>;
 			reg = <0>;
 			i-cache-block-size = <64>;
 			i-cache-size = <65536>;
@@ -49,7 +50,8 @@ c910_1: cpu@1 {
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm";
+					       "zifencei", "zihpm", "xtheadvector";
+			thead,vlenb = <16>;
 			reg = <1>;
 			i-cache-block-size = <64>;
 			i-cache-size = <65536>;
@@ -73,7 +75,8 @@ c910_2: cpu@2 {
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm";
+					       "zifencei", "zihpm", "xtheadvector";
+			thead,vlenb = <16>;
 			reg = <2>;
 			i-cache-block-size = <64>;
 			i-cache-size = <65536>;
@@ -97,7 +100,8 @@ c910_3: cpu@3 {
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm";
+					       "zifencei", "zihpm", "xtheadvector";
+			thead,vlenb = <16>;
 			reg = <3>;
 			i-cache-block-size = <64>;
 			i-cache-size = <65536>;
-- 
2.47.3


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

* [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520
  2025-09-18 20:44 [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Han Gao
  2025-09-18 20:44 ` [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree Han Gao
@ 2025-09-18 20:44 ` Han Gao
  2025-09-20 23:12   ` Drew Fustini
  2025-10-03  1:35   ` Drew Fustini
  2025-09-18 20:44 ` [PATCH v2 3/3] riscv: dts: thead: add zfh " Han Gao
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 12+ messages in thread
From: Han Gao @ 2025-09-18 20:44 UTC (permalink / raw)
  To: devicetree, Drew Fustini, Guo Ren, Fu Wei, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Alexandre Ghiti, Chen Wang, Inochi Amaoto, Han Gao
  Cc: linux-riscv, linux-kernel

Existing rv64 hardware conforms to the rva20 profile.

Ziccrse is an additional extension required by the rva20 profile, so
th1520 has this extension.

Signed-off-by: Han Gao <rabenda.cn@gmail.com>
---
 arch/riscv/boot/dts/thead/th1520.dtsi | 24 ++++++++++++++++--------
 1 file changed, 16 insertions(+), 8 deletions(-)

diff --git a/arch/riscv/boot/dts/thead/th1520.dtsi b/arch/riscv/boot/dts/thead/th1520.dtsi
index 59d1927764a6..7f07688aa964 100644
--- a/arch/riscv/boot/dts/thead/th1520.dtsi
+++ b/arch/riscv/boot/dts/thead/th1520.dtsi
@@ -24,8 +24,10 @@ c910_0: cpu@0 {
 			device_type = "cpu";
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
-			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm", "xtheadvector";
+			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
+					       "ziccrse", "zicntr", "zicsr",
+					       "zifencei", "zihpm",
+					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <0>;
 			i-cache-block-size = <64>;
@@ -49,8 +51,10 @@ c910_1: cpu@1 {
 			device_type = "cpu";
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
-			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm", "xtheadvector";
+			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
+					       "ziccrse", "zicntr", "zicsr",
+					       "zifencei", "zihpm",
+					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <1>;
 			i-cache-block-size = <64>;
@@ -74,8 +78,10 @@ c910_2: cpu@2 {
 			device_type = "cpu";
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
-			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm", "xtheadvector";
+			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
+					       "ziccrse", "zicntr", "zicsr",
+					       "zifencei", "zihpm",
+					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <2>;
 			i-cache-block-size = <64>;
@@ -99,8 +105,10 @@ c910_3: cpu@3 {
 			device_type = "cpu";
 			riscv,isa = "rv64imafdc";
 			riscv,isa-base = "rv64i";
-			riscv,isa-extensions = "i", "m", "a", "f", "d", "c", "zicntr", "zicsr",
-					       "zifencei", "zihpm", "xtheadvector";
+			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
+					       "ziccrse", "zicntr", "zicsr",
+					       "zifencei", "zihpm",
+					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <3>;
 			i-cache-block-size = <64>;
-- 
2.47.3


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

* [PATCH v2 3/3] riscv: dts: thead: add zfh for th1520
  2025-09-18 20:44 [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Han Gao
  2025-09-18 20:44 ` [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree Han Gao
  2025-09-18 20:44 ` [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520 Han Gao
@ 2025-09-18 20:44 ` Han Gao
  2025-09-20 23:39   ` Drew Fustini
  2025-10-03  1:36   ` Drew Fustini
  2025-10-03 21:13 ` [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Drew Fustini
  2025-10-18  4:26 ` Drew Fustini
  4 siblings, 2 replies; 12+ messages in thread
From: Han Gao @ 2025-09-18 20:44 UTC (permalink / raw)
  To: devicetree, Drew Fustini, Guo Ren, Fu Wei, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Paul Walmsley, Palmer Dabbelt,
	Albert Ou, Alexandre Ghiti, Chen Wang, Inochi Amaoto, Han Gao
  Cc: linux-riscv, linux-kernel

th1520 support Zfh ISA extension.
It supports the same RISC-V extensions as SG2042.

commit cb074bed1186 ("riscv: dts: sophgo: add zfh for sg2042")

Signed-off-by: Han Gao <rabenda.cn@gmail.com>
---
 arch/riscv/boot/dts/thead/th1520.dtsi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/riscv/boot/dts/thead/th1520.dtsi b/arch/riscv/boot/dts/thead/th1520.dtsi
index 7f07688aa964..2075bb969c2f 100644
--- a/arch/riscv/boot/dts/thead/th1520.dtsi
+++ b/arch/riscv/boot/dts/thead/th1520.dtsi
@@ -26,7 +26,7 @@ c910_0: cpu@0 {
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
 					       "ziccrse", "zicntr", "zicsr",
-					       "zifencei", "zihpm",
+					       "zifencei", "zihpm", "zfh",
 					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <0>;
@@ -53,7 +53,7 @@ c910_1: cpu@1 {
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
 					       "ziccrse", "zicntr", "zicsr",
-					       "zifencei", "zihpm",
+					       "zifencei", "zihpm", "zfh",
 					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <1>;
@@ -80,7 +80,7 @@ c910_2: cpu@2 {
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
 					       "ziccrse", "zicntr", "zicsr",
-					       "zifencei", "zihpm",
+					       "zifencei", "zihpm", "zfh",
 					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <2>;
@@ -107,7 +107,7 @@ c910_3: cpu@3 {
 			riscv,isa-base = "rv64i";
 			riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
 					       "ziccrse", "zicntr", "zicsr",
-					       "zifencei", "zihpm",
+					       "zifencei", "zihpm", "zfh",
 					       "xtheadvector";
 			thead,vlenb = <16>;
 			reg = <3>;
-- 
2.47.3


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

* Re: [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree
  2025-09-18 20:44 ` [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree Han Gao
@ 2025-09-20 23:12   ` Drew Fustini
  2025-10-03  1:35   ` Drew Fustini
  1 sibling, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-09-20 23:12 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:47AM +0800, Han Gao wrote:
> The th1520 support xtheadvector [1] so it can be included in the
> devicetree. Also include vlenb for the cpu. And set vlenb=16 [2].
> 
> This can be tested by passing the "mitigations=off" kernel parameter.
> 
> Link: https://lore.kernel.org/linux-riscv/20241113-xtheadvector-v11-4-236c22791ef9@rivosinc.com/ [1]
> Link: https://lore.kernel.org/linux-riscv/aCO44SAoS2kIP61r@ghost/ [2]
> 
> Signed-off-by: Han Gao <rabenda.cn@gmail.com>

Reviewed-by: Drew Fustini <fustini@kernel.org>      

Thanks,
Drew

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

* Re: [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520
  2025-09-18 20:44 ` [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520 Han Gao
@ 2025-09-20 23:12   ` Drew Fustini
  2025-10-03  1:35   ` Drew Fustini
  1 sibling, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-09-20 23:12 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:48AM +0800, Han Gao wrote:
> Existing rv64 hardware conforms to the rva20 profile.
> 
> Ziccrse is an additional extension required by the rva20 profile, so
> th1520 has this extension.
> 
> Signed-off-by: Han Gao <rabenda.cn@gmail.com>

Reviewed-by: Drew Fustini <fustini@kernel.org>      

Thanks,
Drew

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

* Re: [PATCH v2 3/3] riscv: dts: thead: add zfh for th1520
  2025-09-18 20:44 ` [PATCH v2 3/3] riscv: dts: thead: add zfh " Han Gao
@ 2025-09-20 23:39   ` Drew Fustini
  2025-10-03  1:36   ` Drew Fustini
  1 sibling, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-09-20 23:39 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:49AM +0800, Han Gao wrote:
> th1520 support Zfh ISA extension.
> It supports the same RISC-V extensions as SG2042.
> 
> commit cb074bed1186 ("riscv: dts: sophgo: add zfh for sg2042")
> 
> Signed-off-by: Han Gao <rabenda.cn@gmail.com>

Reviewed-by: Drew Fustini <fustini@kernel.org>     

Thanks,
Drew

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

* Re: [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree
  2025-09-18 20:44 ` [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree Han Gao
  2025-09-20 23:12   ` Drew Fustini
@ 2025-10-03  1:35   ` Drew Fustini
  1 sibling, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-10-03  1:35 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:47AM +0800, Han Gao wrote:
> The th1520 support xtheadvector [1] so it can be included in the
> devicetree. Also include vlenb for the cpu. And set vlenb=16 [2].
> 
> This can be tested by passing the "mitigations=off" kernel parameter.
> 
> Link: https://lore.kernel.org/linux-riscv/20241113-xtheadvector-v11-4-236c22791ef9@rivosinc.com/ [1]
> Link: https://lore.kernel.org/linux-riscv/aCO44SAoS2kIP61r@ghost/ [2]
> 
> Signed-off-by: Han Gao <rabenda.cn@gmail.com>

Reviewed-by: Drew Fustini <fustini@kernel.org>

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

* Re: [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520
  2025-09-18 20:44 ` [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520 Han Gao
  2025-09-20 23:12   ` Drew Fustini
@ 2025-10-03  1:35   ` Drew Fustini
  1 sibling, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-10-03  1:35 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:48AM +0800, Han Gao wrote:
> Existing rv64 hardware conforms to the rva20 profile.
> 
> Ziccrse is an additional extension required by the rva20 profile, so
> th1520 has this extension.
> 
> Signed-off-by: Han Gao <rabenda.cn@gmail.com>

Reviewed-by: Drew Fustini <fustini@kernel.org>

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

* Re: [PATCH v2 3/3] riscv: dts: thead: add zfh for th1520
  2025-09-18 20:44 ` [PATCH v2 3/3] riscv: dts: thead: add zfh " Han Gao
  2025-09-20 23:39   ` Drew Fustini
@ 2025-10-03  1:36   ` Drew Fustini
  1 sibling, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-10-03  1:36 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:49AM +0800, Han Gao wrote:
> th1520 support Zfh ISA extension.
> It supports the same RISC-V extensions as SG2042.
> 
> commit cb074bed1186 ("riscv: dts: sophgo: add zfh for sg2042")
> 
> Signed-off-by: Han Gao <rabenda.cn@gmail.com>

Reviewed-by: Drew Fustini <fustini@kernel.org>

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

* Re: [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support
  2025-09-18 20:44 [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Han Gao
                   ` (2 preceding siblings ...)
  2025-09-18 20:44 ` [PATCH v2 3/3] riscv: dts: thead: add zfh " Han Gao
@ 2025-10-03 21:13 ` Drew Fustini
  2025-10-18  4:26 ` Drew Fustini
  4 siblings, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-10-03 21:13 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:46AM +0800, Han Gao wrote:
> Add xtheadvector & ziccrse & zfh for th1520
> 
> Updated the commit message for the patchset
> 
> Thanks,
> Han
> 
> ---
> v1: https://lore.kernel.org/all/20250911184528.1512543-1-rabenda.cn@gmail.com/
> 
> Han Gao (3):
>   riscv: dts: thead: add xtheadvector to the th1520 devicetree
>   riscv: dts: thead: add ziccrse for th1520
>   riscv: dts: thead: add zfh for th1520
> 
>  arch/riscv/boot/dts/thead/th1520.dtsi | 28 +++++++++++++++++++--------
>  1 file changed, 20 insertions(+), 8 deletions(-)
> 
> -- 
> 2.47.3
> 

I'll apply this to thead-dt-for-next once 6.18-rc1 is out and I can
update the next branch to that.

Thanks,
Drew

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

* Re: [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support
  2025-09-18 20:44 [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Han Gao
                   ` (3 preceding siblings ...)
  2025-10-03 21:13 ` [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Drew Fustini
@ 2025-10-18  4:26 ` Drew Fustini
  4 siblings, 0 replies; 12+ messages in thread
From: Drew Fustini @ 2025-10-18  4:26 UTC (permalink / raw)
  To: Han Gao
  Cc: devicetree, Guo Ren, Fu Wei, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Alexandre Ghiti, Chen Wang, Inochi Amaoto, linux-riscv,
	linux-kernel

On Fri, Sep 19, 2025 at 04:44:46AM +0800, Han Gao wrote:
> Add xtheadvector & ziccrse & zfh for th1520
> 
> Updated the commit message for the patchset
> 
> Thanks,
> Han
> 
> ---
> v1: https://lore.kernel.org/all/20250911184528.1512543-1-rabenda.cn@gmail.com/
> 
> Han Gao (3):
>   riscv: dts: thead: add xtheadvector to the th1520 devicetree
>   riscv: dts: thead: add ziccrse for th1520
>   riscv: dts: thead: add zfh for th1520
> 
>  arch/riscv/boot/dts/thead/th1520.dtsi | 28 +++++++++++++++++++--------
>  1 file changed, 20 insertions(+), 8 deletions(-)
> 
> -- 
> 2.47.3
> 

Applied to thead-dt-for-next, thanks!

[1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree
      commit aef6dc006696c20ccc58c4c0235a14e7b4b317a0
[2/3] riscv: dts: thead: add ziccrse for th1520
      commit bcc3b9c5de5e2a03ede1a8133c05255927d744d6
[3/3] riscv: dts: thead: add zfh for th1520
      commit fac4be7b3d49ae7e32d8ae523343d7fe790772f9


-Drew

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

end of thread, other threads:[~2025-10-18  4:26 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-18 20:44 [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Han Gao
2025-09-18 20:44 ` [PATCH v2 1/3] riscv: dts: thead: add xtheadvector to the th1520 devicetree Han Gao
2025-09-20 23:12   ` Drew Fustini
2025-10-03  1:35   ` Drew Fustini
2025-09-18 20:44 ` [PATCH v2 2/3] riscv: dts: thead: add ziccrse for th1520 Han Gao
2025-09-20 23:12   ` Drew Fustini
2025-10-03  1:35   ` Drew Fustini
2025-09-18 20:44 ` [PATCH v2 3/3] riscv: dts: thead: add zfh " Han Gao
2025-09-20 23:39   ` Drew Fustini
2025-10-03  1:36   ` Drew Fustini
2025-10-03 21:13 ` [PATCH v2 0/3] riscv: dts: thead: add more th1520 isa extension support Drew Fustini
2025-10-18  4:26 ` Drew Fustini

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