* [PATCH v3] config/arm: add PHYTIUM tys2500
@ 2022-09-09 8:42 luzhipeng
2022-09-14 9:40 ` Ruifeng Wang
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: luzhipeng @ 2022-09-09 8:42 UTC (permalink / raw)
To: dev; +Cc: Jan Viktorin, Ruifeng Wang, Bruce Richardson, luzhipeng
Here adds configs for PHYTIUM server.
Signed-off-by: luzhipeng <luzhipeng@cestc.cn>
---
v3->v2:
1. fix typos
v2->v1:
1. add ccache for cross build
2. rename fts2500 to tys2500 and modify the corresponding code
config/arm/arm64_tys2500_linux_gcc | 16 ++++++++++++++++
config/arm/meson.build | 26 +++++++++++++++++++++++---
2 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 config/arm/arm64_tys2500_linux_gcc
diff --git a/config/arm/arm64_tys2500_linux_gcc b/config/arm/arm64_tys2500_linux_gcc
new file mode 100644
index 0000000000..fce85fb0d8
--- /dev/null
+++ b/config/arm/arm64_tys2500_linux_gcc
@@ -0,0 +1,16 @@
+[binaries]
+c = ['ccache', 'aarch64-linux-gnu-gcc']
+cpp = ['ccache', 'aarch64-linux-gnu-g++']
+ar = 'aarch64-linux-gnu-gcc-ar'
+strip = 'aarch64-linux-gnu-strip'
+pkgconfig = 'aarch64-linux-gnu-pkg-config'
+pcap-config = ''
+
+[host_machine]
+system = 'linux'
+cpu_family = 'aarch64'
+cpu = 'armv8-a'
+endian = 'little'
+
+[properties]
+platform = 'tys2500'
diff --git a/config/arm/meson.build b/config/arm/meson.build
index 9f1636e0d5..d917128481 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -203,13 +203,24 @@ implementer_phytium = {
['RTE_MACHINE', '"armv8a"'],
['RTE_USE_C11_MEM_MODEL', true],
['RTE_CACHE_LINE_SIZE', 64],
- ['RTE_MAX_LCORE', 64],
- ['RTE_MAX_NUMA_NODES', 8]
],
'part_number_config': {
'0x662': {
- 'machine_args': ['-march=armv8-a+crc'],
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 64],
+ ['RTE_MAX_NUMA_NODES', 8]
+ ]
},
+ '0x663': {
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 256],
+ ['RTE_MAX_NUMA_NODES', 32]
+ ]
+ }
}
}
@@ -328,6 +339,13 @@ soc_ft2000plus = {
'numa': true
}
+soc_tys2500 = {
+ 'description': 'Phytium TengYun S2500',
+ 'implementer': '0x70',
+ 'part_number': '0x663',
+ 'numa': true
+}
+
soc_graviton2 = {
'description': 'AWS Graviton2',
'implementer': '0x41',
@@ -414,6 +432,7 @@ cn10k: Marvell OCTEON 10
dpaa: NXP DPAA
emag: Ampere eMAG
ft2000plus: Phytium FT-2000+
+tys2500: Phytium TengYun S2500
graviton2: AWS Graviton2
kunpeng920: HiSilicon Kunpeng 920
kunpeng930: HiSilicon Kunpeng 930
@@ -438,6 +457,7 @@ socs = {
'dpaa': soc_dpaa,
'emag': soc_emag,
'ft2000plus': soc_ft2000plus,
+ 'tys2500': soc_tys2500,
'graviton2': soc_graviton2,
'kunpeng920': soc_kunpeng920,
'kunpeng930': soc_kunpeng930,
--
2.27.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH v3] config/arm: add PHYTIUM tys2500
2022-09-09 8:42 [PATCH v3] config/arm: add PHYTIUM tys2500 luzhipeng
@ 2022-09-14 9:40 ` Ruifeng Wang
2022-09-17 2:17 ` luzhipeng
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Ruifeng Wang @ 2022-09-14 9:40 UTC (permalink / raw)
To: luzhipeng, dev; +Cc: Jan Viktorin, Bruce Richardson, nd
> -----Original Message-----
> From: luzhipeng <luzhipeng@cestc.cn>
> Sent: Friday, September 9, 2022 4:43 PM
> To: dev@dpdk.org
> Cc: Jan Viktorin <viktorin@rehivetech.com>; Ruifeng Wang <Ruifeng.Wang@arm.com>; Bruce
> Richardson <bruce.richardson@intel.com>; luzhipeng <luzhipeng@cestc.cn>
> Subject: [PATCH v3] config/arm: add PHYTIUM tys2500
>
> Here adds configs for PHYTIUM server.
>
> Signed-off-by: luzhipeng <luzhipeng@cestc.cn>
Please note Ferruh's comments on v2.
With the suggested change,
Acked-by: Ruifeng Wang <ruifeng.wang@arm.com>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v3] config/arm: add PHYTIUM tys2500
2022-09-09 8:42 [PATCH v3] config/arm: add PHYTIUM tys2500 luzhipeng
2022-09-14 9:40 ` Ruifeng Wang
@ 2022-09-17 2:17 ` luzhipeng
2022-10-10 19:58 ` Thomas Monjalon
2022-10-11 1:40 ` luzhipeng
2022-10-11 11:14 ` luzhipeng
3 siblings, 1 reply; 9+ messages in thread
From: luzhipeng @ 2022-09-17 2:17 UTC (permalink / raw)
To: dev; +Cc: Jan Viktorin, Ruifeng Wang, Bruce Richardson, luzhipeng
Here adds configs for PHYTIUM server.
Signed-off-by: luzhipeng <luzhipeng@cestc.cn>
---
v3:
1. fix typos
2. fix signed-off-by format
v2:
1. add ccache for cross build
2. rename fts2500 to tys2500 and modify the corresponding code
config/arm/arm64_tys2500_linux_gcc | 16 ++++++++++++++++
config/arm/meson.build | 26 +++++++++++++++++++++++---
2 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 config/arm/arm64_tys2500_linux_gcc
diff --git a/config/arm/arm64_tys2500_linux_gcc b/config/arm/arm64_tys2500_linux_gcc
new file mode 100644
index 0000000000..fce85fb0d8
--- /dev/null
+++ b/config/arm/arm64_tys2500_linux_gcc
@@ -0,0 +1,16 @@
+[binaries]
+c = ['ccache', 'aarch64-linux-gnu-gcc']
+cpp = ['ccache', 'aarch64-linux-gnu-g++']
+ar = 'aarch64-linux-gnu-gcc-ar'
+strip = 'aarch64-linux-gnu-strip'
+pkgconfig = 'aarch64-linux-gnu-pkg-config'
+pcap-config = ''
+
+[host_machine]
+system = 'linux'
+cpu_family = 'aarch64'
+cpu = 'armv8-a'
+endian = 'little'
+
+[properties]
+platform = 'tys2500'
diff --git a/config/arm/meson.build b/config/arm/meson.build
index 9f1636e0d5..d917128481 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -203,13 +203,24 @@ implementer_phytium = {
['RTE_MACHINE', '"armv8a"'],
['RTE_USE_C11_MEM_MODEL', true],
['RTE_CACHE_LINE_SIZE', 64],
- ['RTE_MAX_LCORE', 64],
- ['RTE_MAX_NUMA_NODES', 8]
],
'part_number_config': {
'0x662': {
- 'machine_args': ['-march=armv8-a+crc'],
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 64],
+ ['RTE_MAX_NUMA_NODES', 8]
+ ]
},
+ '0x663': {
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 256],
+ ['RTE_MAX_NUMA_NODES', 32]
+ ]
+ }
}
}
@@ -328,6 +339,13 @@ soc_ft2000plus = {
'numa': true
}
+soc_tys2500 = {
+ 'description': 'Phytium TengYun S2500',
+ 'implementer': '0x70',
+ 'part_number': '0x663',
+ 'numa': true
+}
+
soc_graviton2 = {
'description': 'AWS Graviton2',
'implementer': '0x41',
@@ -414,6 +432,7 @@ cn10k: Marvell OCTEON 10
dpaa: NXP DPAA
emag: Ampere eMAG
ft2000plus: Phytium FT-2000+
+tys2500: Phytium TengYun S2500
graviton2: AWS Graviton2
kunpeng920: HiSilicon Kunpeng 920
kunpeng930: HiSilicon Kunpeng 930
@@ -438,6 +457,7 @@ socs = {
'dpaa': soc_dpaa,
'emag': soc_emag,
'ft2000plus': soc_ft2000plus,
+ 'tys2500': soc_tys2500,
'graviton2': soc_graviton2,
'kunpeng920': soc_kunpeng920,
'kunpeng930': soc_kunpeng930,
--
2.27.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] config/arm: add PHYTIUM tys2500
2022-09-17 2:17 ` luzhipeng
@ 2022-10-10 19:58 ` Thomas Monjalon
2022-10-11 1:42 ` luzhipeng
0 siblings, 1 reply; 9+ messages in thread
From: Thomas Monjalon @ 2022-10-10 19:58 UTC (permalink / raw)
To: luzhipeng; +Cc: dev, Jan Viktorin, Ruifeng Wang, Bruce Richardson
17/09/2022 04:17, luzhipeng:
> Here adds configs for PHYTIUM server.
>
> Signed-off-by: luzhipeng <luzhipeng@cestc.cn>
>
> ---
> v3:
> 1. fix typos
> 2. fix signed-off-by format
The format is not correct.
Please follow what Ferruh said on v2.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] config/arm: add PHYTIUM tys2500
2022-10-10 19:58 ` Thomas Monjalon
@ 2022-10-11 1:42 ` luzhipeng
0 siblings, 0 replies; 9+ messages in thread
From: luzhipeng @ 2022-10-11 1:42 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: dev, Jan Viktorin, Ruifeng Wang, Bruce Richardson
Thanks,i have modified and submitted
在 2022/10/11 3:58, Thomas Monjalon 写道:
> 17/09/2022 04:17, luzhipeng:
>> Here adds configs for PHYTIUM server.
>>
>> Signed-off-by: luzhipeng <luzhipeng@cestc.cn>
>>
>> ---
>> v3:
>> 1. fix typos
>> 2. fix signed-off-by format
>
> The format is not correct.
> Please follow what Ferruh said on v2.
>
>
>
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v3] config/arm: add PHYTIUM tys2500
2022-09-09 8:42 [PATCH v3] config/arm: add PHYTIUM tys2500 luzhipeng
2022-09-14 9:40 ` Ruifeng Wang
2022-09-17 2:17 ` luzhipeng
@ 2022-10-11 1:40 ` luzhipeng
2022-10-11 11:14 ` luzhipeng
3 siblings, 0 replies; 9+ messages in thread
From: luzhipeng @ 2022-10-11 1:40 UTC (permalink / raw)
To: dev; +Cc: Jan Viktorin, Ruifeng Wang, Bruce Richardson, luzhipeng
Here adds configs for PHYTIUM server.
Signed-off-by: Zhipeng Lu <luzhipeng@cestc.cn>
---
v3:
* fix typos
* fix signed-off-by format
v2:
* add ccache for cross build
* rename fts2500 to tys2500 and modify the corresponding code
config/arm/arm64_tys2500_linux_gcc | 16 ++++++++++++++++
config/arm/meson.build | 26 +++++++++++++++++++++++---
2 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 config/arm/arm64_tys2500_linux_gcc
diff --git a/config/arm/arm64_tys2500_linux_gcc b/config/arm/arm64_tys2500_linux_gcc
new file mode 100644
index 0000000000..fce85fb0d8
--- /dev/null
+++ b/config/arm/arm64_tys2500_linux_gcc
@@ -0,0 +1,16 @@
+[binaries]
+c = ['ccache', 'aarch64-linux-gnu-gcc']
+cpp = ['ccache', 'aarch64-linux-gnu-g++']
+ar = 'aarch64-linux-gnu-gcc-ar'
+strip = 'aarch64-linux-gnu-strip'
+pkgconfig = 'aarch64-linux-gnu-pkg-config'
+pcap-config = ''
+
+[host_machine]
+system = 'linux'
+cpu_family = 'aarch64'
+cpu = 'armv8-a'
+endian = 'little'
+
+[properties]
+platform = 'tys2500'
diff --git a/config/arm/meson.build b/config/arm/meson.build
index 9f1636e0d5..d917128481 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -203,13 +203,24 @@ implementer_phytium = {
['RTE_MACHINE', '"armv8a"'],
['RTE_USE_C11_MEM_MODEL', true],
['RTE_CACHE_LINE_SIZE', 64],
- ['RTE_MAX_LCORE', 64],
- ['RTE_MAX_NUMA_NODES', 8]
],
'part_number_config': {
'0x662': {
- 'machine_args': ['-march=armv8-a+crc'],
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 64],
+ ['RTE_MAX_NUMA_NODES', 8]
+ ]
},
+ '0x663': {
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 256],
+ ['RTE_MAX_NUMA_NODES', 32]
+ ]
+ }
}
}
@@ -328,6 +339,13 @@ soc_ft2000plus = {
'numa': true
}
+soc_tys2500 = {
+ 'description': 'Phytium TengYun S2500',
+ 'implementer': '0x70',
+ 'part_number': '0x663',
+ 'numa': true
+}
+
soc_graviton2 = {
'description': 'AWS Graviton2',
'implementer': '0x41',
@@ -414,6 +432,7 @@ cn10k: Marvell OCTEON 10
dpaa: NXP DPAA
emag: Ampere eMAG
ft2000plus: Phytium FT-2000+
+tys2500: Phytium TengYun S2500
graviton2: AWS Graviton2
kunpeng920: HiSilicon Kunpeng 920
kunpeng930: HiSilicon Kunpeng 930
@@ -438,6 +457,7 @@ socs = {
'dpaa': soc_dpaa,
'emag': soc_emag,
'ft2000plus': soc_ft2000plus,
+ 'tys2500': soc_tys2500,
'graviton2': soc_graviton2,
'kunpeng920': soc_kunpeng920,
'kunpeng930': soc_kunpeng930,
--
2.27.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v3] config/arm: add PHYTIUM tys2500
2022-09-09 8:42 [PATCH v3] config/arm: add PHYTIUM tys2500 luzhipeng
` (2 preceding siblings ...)
2022-10-11 1:40 ` luzhipeng
@ 2022-10-11 11:14 ` luzhipeng
2022-10-26 15:40 ` Thomas Monjalon
3 siblings, 1 reply; 9+ messages in thread
From: luzhipeng @ 2022-10-11 11:14 UTC (permalink / raw)
To: dev; +Cc: Jan Viktorin, Ruifeng Wang, Bruce Richardson, Zhipeng Lu
From: Zhipeng Lu <luzhipeng@cestc.cn>
Here adds configs for PHYTIUM server.
Signed-off-by: Zhipeng Lu <luzhipeng@cestc.cn>
---
v3:
* fix typos
* fix signed-off-by format
v2:
* add ccache for cross build
* rename fts2500 to tys2500 and modify the corresponding code
config/arm/arm64_tys2500_linux_gcc | 16 ++++++++++++++++
config/arm/meson.build | 26 +++++++++++++++++++++++---
2 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 config/arm/arm64_tys2500_linux_gcc
diff --git a/config/arm/arm64_tys2500_linux_gcc b/config/arm/arm64_tys2500_linux_gcc
new file mode 100644
index 0000000000..fce85fb0d8
--- /dev/null
+++ b/config/arm/arm64_tys2500_linux_gcc
@@ -0,0 +1,16 @@
+[binaries]
+c = ['ccache', 'aarch64-linux-gnu-gcc']
+cpp = ['ccache', 'aarch64-linux-gnu-g++']
+ar = 'aarch64-linux-gnu-gcc-ar'
+strip = 'aarch64-linux-gnu-strip'
+pkgconfig = 'aarch64-linux-gnu-pkg-config'
+pcap-config = ''
+
+[host_machine]
+system = 'linux'
+cpu_family = 'aarch64'
+cpu = 'armv8-a'
+endian = 'little'
+
+[properties]
+platform = 'tys2500'
diff --git a/config/arm/meson.build b/config/arm/meson.build
index b7162d516d..6442ec9596 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -213,13 +213,24 @@ implementer_phytium = {
['RTE_MACHINE', '"armv8a"'],
['RTE_USE_C11_MEM_MODEL', true],
['RTE_CACHE_LINE_SIZE', 64],
- ['RTE_MAX_LCORE', 64],
- ['RTE_MAX_NUMA_NODES', 8]
],
'part_number_config': {
'0x662': {
- 'machine_args': ['-march=armv8-a+crc'],
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 64],
+ ['RTE_MAX_NUMA_NODES', 8]
+ ]
},
+ '0x663': {
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 256],
+ ['RTE_MAX_NUMA_NODES', 32]
+ ]
+ }
}
}
@@ -339,6 +350,13 @@ soc_ft2000plus = {
'numa': true
}
+soc_tys2500 = {
+ 'description': 'Phytium TengYun S2500',
+ 'implementer': '0x70',
+ 'part_number': '0x663',
+ 'numa': true
+}
+
soc_graviton2 = {
'description': 'AWS Graviton2',
'implementer': '0x41',
@@ -436,6 +454,7 @@ cn10k: Marvell OCTEON 10
dpaa: NXP DPAA
emag: Ampere eMAG
ft2000plus: Phytium FT-2000+
+tys2500: Phytium TengYun S2500
graviton2: AWS Graviton2
graviton3: AWS Graviton3
kunpeng920: HiSilicon Kunpeng 920
@@ -461,6 +480,7 @@ socs = {
'dpaa': soc_dpaa,
'emag': soc_emag,
'ft2000plus': soc_ft2000plus,
+ 'tys2500': soc_tys2500,
'graviton2': soc_graviton2,
'graviton3': soc_graviton3,
'kunpeng920': soc_kunpeng920,
--
2.33.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH v3] config/arm: add PHYTIUM tys2500
@ 2022-09-09 10:34 xiejianhua
0 siblings, 0 replies; 9+ messages in thread
From: xiejianhua @ 2022-09-09 10:34 UTC (permalink / raw)
To: 'luzhipeng', dev
Cc: 'Jan Viktorin', 'Ruifeng Wang',
'Bruce Richardson'
Very nice to me. Thank you very much!
Thanks & Best Regards,
Jianhua Xie
-----邮件原件-----
发件人: dev-bounces@dpdk.org <dev-bounces@dpdk.org> 代表 luzhipeng
发送时间: 2022年9月9日 16:43
收件人: dev@dpdk.org
抄送: Jan Viktorin <viktorin@rehivetech.com>; Ruifeng Wang
<ruifeng.wang@arm.com>; Bruce Richardson <bruce.richardson@intel.com>;
luzhipeng <luzhipeng@cestc.cn>
主题: [PATCH v3] config/arm: add PHYTIUM tys2500
Here adds configs for PHYTIUM server.
Signed-off-by: luzhipeng <luzhipeng@cestc.cn>
---
v3->v2:
1. fix typos
v2->v1:
1. add ccache for cross build
2. rename fts2500 to tys2500 and modify the corresponding code
config/arm/arm64_tys2500_linux_gcc | 16 ++++++++++++++++
config/arm/meson.build | 26 +++++++++++++++++++++++---
2 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 config/arm/arm64_tys2500_linux_gcc
diff --git a/config/arm/arm64_tys2500_linux_gcc
b/config/arm/arm64_tys2500_linux_gcc
new file mode 100644
index 0000000000..fce85fb0d8
--- /dev/null
+++ b/config/arm/arm64_tys2500_linux_gcc
@@ -0,0 +1,16 @@
+[binaries]
+c = ['ccache', 'aarch64-linux-gnu-gcc']
+cpp = ['ccache', 'aarch64-linux-gnu-g++']
+ar = 'aarch64-linux-gnu-gcc-ar'
+strip = 'aarch64-linux-gnu-strip'
+pkgconfig = 'aarch64-linux-gnu-pkg-config'
+pcap-config = ''
+
+[host_machine]
+system = 'linux'
+cpu_family = 'aarch64'
+cpu = 'armv8-a'
+endian = 'little'
+
+[properties]
+platform = 'tys2500'
diff --git a/config/arm/meson.build b/config/arm/meson.build
index 9f1636e0d5..d917128481 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -203,13 +203,24 @@ implementer_phytium = {
['RTE_MACHINE', '"armv8a"'],
['RTE_USE_C11_MEM_MODEL', true],
['RTE_CACHE_LINE_SIZE', 64],
- ['RTE_MAX_LCORE', 64],
- ['RTE_MAX_NUMA_NODES', 8]
],
'part_number_config': {
'0x662': {
- 'machine_args': ['-march=armv8-a+crc'],
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 64],
+ ['RTE_MAX_NUMA_NODES', 8]
+ ]
},
+ '0x663': {
+ 'march': 'armv8-a',
+ 'march_features': ['crc'],
+ 'flags': [
+ ['RTE_MAX_LCORE', 256],
+ ['RTE_MAX_NUMA_NODES', 32]
+ ]
+ }
}
}
@@ -328,6 +339,13 @@ soc_ft2000plus = {
'numa': true
}
+soc_tys2500 = {
+ 'description': 'Phytium TengYun S2500',
+ 'implementer': '0x70',
+ 'part_number': '0x663',
+ 'numa': true
+}
+
soc_graviton2 = {
'description': 'AWS Graviton2',
'implementer': '0x41',
@@ -414,6 +432,7 @@ cn10k: Marvell OCTEON 10
dpaa: NXP DPAA
emag: Ampere eMAG
ft2000plus: Phytium FT-2000+
+tys2500: Phytium TengYun S2500
graviton2: AWS Graviton2
kunpeng920: HiSilicon Kunpeng 920
kunpeng930: HiSilicon Kunpeng 930
@@ -438,6 +457,7 @@ socs = {
'dpaa': soc_dpaa,
'emag': soc_emag,
'ft2000plus': soc_ft2000plus,
+ 'tys2500': soc_tys2500,
'graviton2': soc_graviton2,
'kunpeng920': soc_kunpeng920,
'kunpeng930': soc_kunpeng930,
--
2.27.0
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-10-26 15:40 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-09 8:42 [PATCH v3] config/arm: add PHYTIUM tys2500 luzhipeng
2022-09-14 9:40 ` Ruifeng Wang
2022-09-17 2:17 ` luzhipeng
2022-10-10 19:58 ` Thomas Monjalon
2022-10-11 1:42 ` luzhipeng
2022-10-11 1:40 ` luzhipeng
2022-10-11 11:14 ` luzhipeng
2022-10-26 15:40 ` Thomas Monjalon
2022-09-09 10:34 xiejianhua
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).