summaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/ebda/ebda.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/common/block/ebda/ebda.c')
-rw-r--r--src/soc/intel/common/block/ebda/ebda.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/ebda/ebda.c b/src/soc/intel/common/block/ebda/ebda.c
new file mode 100644
index 0000000000..87c18d9bc5
--- /dev/null
+++ b/src/soc/intel/common/block/ebda/ebda.c
@@ -0,0 +1,49 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2017 Intel Corporation.
+ *
+ * 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 <arch/ebda.h>
+#include <intelblocks/ebda.h>
+
+/*
+ * Mainboard Override function
+ *
+ * Mainboard directory may implement below functionality for romstage.
+ */
+
+/* Fill up EBDA structure inside Mainboard directory */
+__attribute__((weak)) void create_mainboard_ebda(struct ebda_config *cfg)
+{
+ /* no-op */
+}
+
+static void create_soc_ebda(struct ebda_config *cfg)
+{
+ /* Create EBDA header */
+ cfg->signature = EBDA_SIGNATURE;
+ /* Fill up memory layout information */
+ fill_soc_memmap_ebda(cfg);
+}
+
+void fill_ebda_area(void)
+{
+ struct ebda_config ebda_cfg;
+ struct ebda_config *cfg = &ebda_cfg;
+
+ /* Initialize EBDA area early during romstage. */
+ setup_default_ebda();
+ create_soc_ebda(cfg);
+ create_mainboard_ebda(cfg);
+ write_ebda_data(cfg, sizeof(*cfg));
+}