aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/include')
-rw-r--r--src/arch/x86/include/arch/ram_segs.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/arch/x86/include/arch/ram_segs.h b/src/arch/x86/include/arch/ram_segs.h
new file mode 100644
index 0000000000..39d0c64896
--- /dev/null
+++ b/src/arch/x86/include/arch/ram_segs.h
@@ -0,0 +1,25 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef RAM_SEGS_H
+#define RAM_SEGS_H
+
+#define RAM_CODE_SEG 0x10
+#define RAM_DATA_SEG 0x18
+#define RAM_CODE16_SEG 0x28
+#define RAM_DATA16_SEG 0x30
+#define RAM_CODE_ACPI_SEG 0x38
+#define RAM_DATA_ACPI_SEG 0x40
+#define RAM_CODE_SEG64 0x48
+
+#endif /* RAM_SEGS_H */