From: Wathsala Vithanage <wathsala.vithanage@arm.com>
To: Wathsala Vithanage <wathsala.vithanage@arm.com>,
Bruce Richardson <bruce.richardson@intel.com>
Cc: dev@dpdk.org, nd@arm.com, thomas@monjalon.net,
honnappa.nagarahalli@arm.com,
Dhruv Tripathi <dhruv.tripathi@arm.com>
Subject: [PATCH v3 2/2] config/arm: sort SOCs alphabetically
Date: Fri, 29 Nov 2024 23:47:26 +0000 [thread overview]
Message-ID: <20241129234726.1570765-2-wathsala.vithanage@arm.com> (raw)
In-Reply-To: <20241129234726.1570765-1-wathsala.vithanage@arm.com>
Order SOC configurations and names alphabetically.
Signed-off-by: Wathsala Vithanage <wathsala.vithanage@arm.com>
Reviewed-by: Dhruv Tripathi <dhruv.tripathi@arm.com>
---
config/arm/meson.build | 86 +++++++++++++++++++++---------------------
1 file changed, 43 insertions(+), 43 deletions(-)
diff --git a/config/arm/meson.build b/config/arm/meson.build
index 9ed36d9907..7f6a0e1b16 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -394,6 +394,17 @@ soc_bluefield = {
'numa': false
}
+soc_bluefield3 = {
+ 'description': 'NVIDIA BlueField-3',
+ 'implementer': '0x41',
+ 'flags': [
+ ['RTE_MAX_LCORE', 32],
+ ['RTE_MAX_NUMA_NODES', 1]
+ ],
+ 'part_number': '0xd42',
+ 'numa': false
+}
+
soc_capri = {
'description': 'AMD Pensando Capri',
'implementer': '0x75',
@@ -476,13 +487,6 @@ soc_ft2000plus = {
'numa': true
}
-soc_tys2500 = {
- 'description': 'Phytium TengYun S2500',
- 'implementer': '0x70',
- 'part_number': '0x663',
- 'numa': true
-}
-
soc_grace = {
'description': 'NVIDIA Grace',
'implementer': '0x41',
@@ -593,27 +597,23 @@ soc_thunderx2 = {
'part_number': '0xaf'
}
-soc_thunderxt88 = {
- 'description': 'Marvell ThunderX T88',
- 'implementer': '0x43',
- 'part_number': '0xa1'
-}
-
soc_thunderxt83 = {
'description': 'Marvell ThunderX T83',
'implementer': '0x43',
'part_number': '0xa3'
}
-soc_bluefield3 = {
- 'description': 'NVIDIA BlueField-3',
- 'implementer': '0x41',
- 'flags': [
- ['RTE_MAX_LCORE', 32],
- ['RTE_MAX_NUMA_NODES', 1]
- ],
- 'part_number': '0xd42',
- 'numa': false
+soc_thunderxt88 = {
+ 'description': 'Marvell ThunderX T88',
+ 'implementer': '0x43',
+ 'part_number': '0xa1'
+}
+
+soc_tys2500 = {
+ 'description': 'Phytium TengYun S2500',
+ 'implementer': '0x70',
+ 'part_number': '0x663',
+ 'numa': true
}
soc_v2 = {
@@ -624,23 +624,31 @@ soc_v2 = {
}
mcpu_defs = {
- 'mcpu_kunpeng930': {
- 'march': 'armv8.2-a',
- 'march_extensions': ['crypto', 'sve']
+ 'mcpu_centriq2400': {
+ 'march': 'armv8-a',
+ 'march_extensions': ['crc']
+ },
+ 'mcpu_ft2000plus': {
+ 'march': 'armv8-a',
+ 'march_extensions': ['crc']
},
'mcpu_hip10': {
'march': 'armv8.5-a',
'march_extensions': ['crypto', 'sve']
},
- 'mcpu_ft2000plus': {
- 'march': 'armv8-a',
- 'march_extensions': ['crc']
+ 'mcpu_kunpeng930': {
+ 'march': 'armv8.2-a',
+ 'march_extensions': ['crypto', 'sve']
},
- 'mcpu_tys2500': {
+ 'mcpu_thunderxt83': {
'march': 'armv8-a',
- 'march_extensions': ['crc']
+ 'march_extensions': ['crc', 'crypto']
},
- 'mcpu_centriq2400': {
+ 'mcpu_thunderx2t99': {
+ 'march': 'armv8.1-a',
+ 'march_extensions': ['crc', 'crypto']
+ },
+ 'mcpu_tys2500': {
'march': 'armv8-a',
'march_extensions': ['crc']
},
@@ -652,14 +660,6 @@ mcpu_defs = {
'march': 'armv8-a',
'march_extensions': ['simd'],
}
- 'mcpu_thunderx2t99': {
- 'march': 'armv8.1-a',
- 'march_extensions': ['crc', 'crypto']
- },
- 'mcpu_thunderxt83': {
- 'march': 'armv8-a',
- 'march_extensions': ['crc', 'crypto']
- },
}
'''
@@ -681,7 +681,6 @@ dpaa: NXP DPAA
elba: AMD Pensando Elba
emag: Ampere eMAG
ft2000plus: Phytium FT-2000+
-tys2500: Phytium TengYun S2500
grace: NVIDIA Grace
graviton2: AWS Graviton2
graviton3: AWS Graviton3
@@ -694,8 +693,9 @@ n2: Arm Neoverse N2
odyssey: Marvell Odyssey
stingray: Broadcom Stingray
thunderx2: Marvell ThunderX2 T99
-thunderxt88: Marvell ThunderX T88
thunderxt83: Marvell ThunderX T83
+thunderxt88: Marvell ThunderX T88
+tys2500: Phytium TengYun S2500
v2: Arm Neoverse V2
End of SoCs list
'''
@@ -719,7 +719,6 @@ socs = {
'elba': soc_elba,
'emag': soc_emag,
'ft2000plus': soc_ft2000plus,
- 'tys2500': soc_tys2500,
'grace': soc_grace,
'graviton2': soc_graviton2,
'graviton3': soc_graviton3,
@@ -733,8 +732,9 @@ socs = {
'odyssey' : soc_odyssey,
'stingray': soc_stingray,
'thunderx2': soc_thunderx2,
- 'thunderxt88': soc_thunderxt88,
'thunderxt83': soc_thunderxt83,
+ 'thunderxt88': soc_thunderxt88,
+ 'tys2500': soc_tys2500,
'v2': soc_v2,
}
--
2.43.0
prev parent reply other threads:[~2024-11-29 23:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-29 23:47 [PATCH v3 1/2] config/arm: strict use of -mcpu for supported CPUs Wathsala Vithanage
2024-11-29 23:47 ` Wathsala Vithanage [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241129234726.1570765-2-wathsala.vithanage@arm.com \
--to=wathsala.vithanage@arm.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=dhruv.tripathi@arm.com \
--cc=honnappa.nagarahalli@arm.com \
--cc=nd@arm.com \
--cc=thomas@monjalon.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).