aboutsummaryrefslogtreecommitdiffstats
path: root/src/fw/paravirt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fw/paravirt.h')
-rw-r--r--src/fw/paravirt.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/fw/paravirt.h b/src/fw/paravirt.h
new file mode 100644
index 00000000..fce5af95
--- /dev/null
+++ b/src/fw/paravirt.h
@@ -0,0 +1,31 @@
+#ifndef __PV_H
+#define __PV_H
+
+#include "config.h" // CONFIG_*
+#include "biosvar.h" // GET_GLOBAL
+
+// Types of paravirtualized platforms.
+#define PF_QEMU (1<<0)
+#define PF_XEN (1<<1)
+#define PF_KVM (1<<2)
+
+extern u32 RamSize;
+extern u64 RamSizeOver4G;
+extern int PlatformRunningOn;
+
+static inline int runningOnQEMU(void) {
+ return CONFIG_QEMU || (
+ CONFIG_QEMU_HARDWARE && GET_GLOBAL(PlatformRunningOn) & PF_QEMU);
+}
+static inline int runningOnXen(void) {
+ return CONFIG_XEN && GET_GLOBAL(PlatformRunningOn) & PF_XEN;
+}
+static inline int runningOnKVM(void) {
+ return CONFIG_QEMU && GET_GLOBAL(PlatformRunningOn) & PF_KVM;
+}
+
+void qemu_preinit(void);
+void qemu_platform_setup(void);
+void qemu_cfg_init(void);
+
+#endif