aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2024-04-15 12:01:41 +0300
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-04-16 09:36:19 +0900
commitb792f1eb08e34db89ac200a86ea7e6859a6b0668 (patch)
treeb806ae842486755e9cbc6e11275060ef133177bd /include
parent782b800f2aecfe39ce5d9cdd8cc7b4c7f36ea398 (diff)
downloadgnumach-b792f1eb08e34db89ac200a86ea7e6859a6b0668.tar.gz
gnumach-b792f1eb08e34db89ac200a86ea7e6859a6b0668.tar.bz2
gnumach-b792f1eb08e34db89ac200a86ea7e6859a6b0668.zip
Add CPU_TYPE_ARM64
This is distinct from CPU_TYPE_ARM, since we're going to exclusively use AArch64 / A64, which CPU_TYPE_ARM was never meant to support, and to match EM_AARCH64, which is also separate from EM_ARM. CPU_TYPE_X86_64 was similarly made distinct from CPU_TYPE_I386. This is named CPU_TYPE_ARM64 rather than CPU_TYPE_AARCH64, since AArch64 is an "execution state" (analogous to long mode on x86_64) rather than a CPU type. "ARM64" here is not a name of the architecture, but simply means an ARM CPU that is capable of (and for our case, will only really be) running in the 64-bit mode (AArch64). There are no subtypes defined, and none are expected to be defined in the future. Support for individual features/extensions should be discovered by other means, i.e. the aarch64_get_hwcaps() RPC. Message-ID: <20240415090149.38358-2-bugaevc@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/mach/machine.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mach/machine.h b/include/mach/machine.h
index 9a176e8c..072bf539 100644
--- a/include/mach/machine.h
+++ b/include/mach/machine.h
@@ -110,6 +110,7 @@ extern struct machine_slot machine_slot[NCPUS];
#define CPU_TYPE_PENTIUMPRO ((cpu_type_t) 19)
#define CPU_TYPE_POWERPC ((cpu_type_t) 20)
#define CPU_TYPE_X86_64 ((cpu_type_t) 21)
+#define CPU_TYPE_ARM64 ((cpu_type_t) 22) /* AArch64-capable ARM */
/*
* Machine subtypes (these are defined here, instead of in a machine