aboutsummaryrefslogtreecommitdiffstats
path: root/src/arch/loong64/include
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2024-03-13 15:08:10 +0000
committerMichael Brown <mcb30@ipxe.org>2024-03-15 13:26:53 +0000
commit1ab4d3079d29e9ebee0c85f1aec14a3b1df8f679 (patch)
tree2e8989a1d7654459760bcc4d94e9cabb4e167ca0 /src/arch/loong64/include
parentdf2f23e333601e587f72c68cb7b7b116796f9d3c (diff)
downloadipxe-1ab4d3079d29e9ebee0c85f1aec14a3b1df8f679.tar.gz
[mp] Define an API for multiprocessor functions
Define an API for executing very limited functions on application processors in a multiprocessor system, along with an x86-only implementation. The normal iPXE runtime environment is effectively non-existent on application processors. There is no ability to make firmware calls (e.g. to write to a console), and there may be no stack space available. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/loong64/include')
-rw-r--r--src/arch/loong64/include/bits/mp.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/arch/loong64/include/bits/mp.h b/src/arch/loong64/include/bits/mp.h
new file mode 100644
index 000000000..fef2fd59a
--- /dev/null
+++ b/src/arch/loong64/include/bits/mp.h
@@ -0,0 +1,12 @@
+#ifndef _BITS_MP_H
+#define _BITS_MP_H
+
+/** @file
+ *
+ * LoongArch64-specific multiprocessor API implementation
+ *
+ */
+
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+
+#endif /* _BITS_MP_H */