summaryrefslogtreecommitdiff
path: root/com32/gplinclude/acpi/mcfg.h
diff options
context:
space:
mode:
authorErwan Velu <erwanaliasr1@gmail.com>2011-01-31 22:14:16 +0100
committerErwan Velu <erwanaliasr1@gmail.com>2011-01-31 22:14:16 +0100
commitc6e2eb83837b33c226119f971bee949396356701 (patch)
tree7147bca8a3ac213cf6227a9d1f9e300f369eb0e2 /com32/gplinclude/acpi/mcfg.h
parent09bfdcd4f24440b0a6ec85c64d929214c98bc148 (diff)
downloadsyslinux-c6e2eb83837b33c226119f971bee949396356701.tar.gz
ACPI: Adding MCFG support
Diffstat (limited to 'com32/gplinclude/acpi/mcfg.h')
-rw-r--r--com32/gplinclude/acpi/mcfg.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/com32/gplinclude/acpi/mcfg.h b/com32/gplinclude/acpi/mcfg.h
new file mode 100644
index 00000000..8c673153
--- /dev/null
+++ b/com32/gplinclude/acpi/mcfg.h
@@ -0,0 +1,29 @@
+/* ----------------------------------------------------------------------- *
+ *
+ * Copyright 2009-2011 Erwan Velu - All Rights Reserved
+ *
+ * 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, Inc., 53 Temple Place Ste 330,
+ * Boston MA 02111-1307, USA; either version 2 of the License, or
+ * (at your option) any later version; incorporated herein by reference.
+ *
+ * ----------------------------------------------------------------------- */
+
+#ifndef MCFG_H
+#define MCFG_H
+#include <inttypes.h>
+#include <stdbool.h>
+
+#define MCFG "MCFG"
+
+enum { MCFG_TABLE_FOUND = 1 };
+
+typedef struct {
+ uint64_t *address;
+ s_acpi_description_header header;
+ /* What's inside ? */
+ bool valid;
+} s_mcfg;
+
+#endif