summaryrefslogtreecommitdiff
path: root/src/mainboard/siemens/mc_bdx1/fadt.c
diff options
context:
space:
mode:
authorWerner Zeh <werner.zeh@siemens.com>2016-04-20 10:08:17 +0200
committerWerner Zeh <werner.zeh@siemens.com>2016-04-29 06:29:54 +0200
commitfa6f861b574f27d5eb8df5e67dd8e2548779ecfc (patch)
tree63d77267fe4f3144a55cceb07ff7aaf1fca102a0 /src/mainboard/siemens/mc_bdx1/fadt.c
parent09e3bfbd8b886f9c4803271bcd87db15fdb89ab6 (diff)
downloadcoreboot-fa6f861b574f27d5eb8df5e67dd8e2548779ecfc.tar.xz
siemens/mc_bdx1: Add new mainboard.
Add new mainboard for MC BDX1 board which is based on Intel Camelback Mountain. This mainboard is an industry type board and has several Ethernet interfaces among with two USB3.0 connectors. It uses 24V DC power supply and has its own form factor which does not match any standard. This commit adds the new mainboard and prepares the Kconfig environment so that this board can be selected and generated. Although the generated image can boot into Linux and DOS, not all functions are implemented yet. Forthcoming commits will add more functionality. Change-Id: I29011cfd3b0d13bcf163223f657e02f69978e39a Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/14516 Tested-by: build bot (Jenkins) Reviewed-by: York Yang <york.yang@intel.com>
Diffstat (limited to 'src/mainboard/siemens/mc_bdx1/fadt.c')
-rw-r--r--src/mainboard/siemens/mc_bdx1/fadt.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mainboard/siemens/mc_bdx1/fadt.c b/src/mainboard/siemens/mc_bdx1/fadt.c
new file mode 100644
index 0000000000..b274531ca6
--- /dev/null
+++ b/src/mainboard/siemens/mc_bdx1/fadt.c
@@ -0,0 +1,29 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007-2009 coresystems GmbH
+ *
+ * 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.
+ */
+
+#include <soc/acpi.h>
+
+void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
+{
+ acpi_header_t *header = &(fadt->header);
+
+ acpi_fill_in_fadt(fadt, facs, dsdt);
+
+ /* Platform specific customizations go here */
+
+ header->checksum = 0;
+ header->checksum =
+ acpi_checksum((void *) fadt, sizeof(acpi_fadt_t));
+}