diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-03-13 15:16:47 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-03-15 13:26:53 +0000 |
commit | 89bb926a041b03c3926bf21266cbdf735d9aee66 (patch) | |
tree | a311ed537893b42e25dec583665777db6a0d99ac /src/include/ipxe/errfile.h | |
parent | 1ab4d3079d29e9ebee0c85f1aec14a3b1df8f679 (diff) | |
download | ipxe-89bb926a041b03c3926bf21266cbdf735d9aee66.tar.gz |
[efi] Provide a multiprocessor API for EFI
Provide an implementation of the iPXE multiprocessor API for EFI,
based on using EFI_MP_SERVICES to start up a wrapper function on all
application processors.
Note that the processor numbers used by EFI_MP_SERVICES are opaque
integers that bear no relation to the underlying CPU identity
(e.g. the APIC ID), and so we must rely on our own (architecture-
specific) implementation to determine the relevant CPU identifiers.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/errfile.h')
-rw-r--r-- | src/include/ipxe/errfile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/errfile.h b/src/include/ipxe/errfile.h index 1fe34113d..c673b9a40 100644 --- a/src/include/ipxe/errfile.h +++ b/src/include/ipxe/errfile.h @@ -81,6 +81,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #define ERRFILE_efi_strings ( ERRFILE_CORE | 0x00290000 ) #define ERRFILE_uuid ( ERRFILE_CORE | 0x002a0000 ) #define ERRFILE_efi_path ( ERRFILE_CORE | 0x002b0000 ) +#define ERRFILE_efi_mp ( ERRFILE_CORE | 0x002c0000 ) #define ERRFILE_eisa ( ERRFILE_DRIVER | 0x00000000 ) #define ERRFILE_isa ( ERRFILE_DRIVER | 0x00010000 ) |