summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/queensbay/fsp_configs.c
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2014-12-12 13:05:28 (GMT)
committerSimon Glass <sjg@chromium.org>2014-12-14 05:32:05 (GMT)
commit752a0b085b0c595a5979f1bee89961cffd109461 (patch)
treeb64e39276d580117538202f83de151384140597f /arch/x86/cpu/queensbay/fsp_configs.c
parent7e7740397dc9405a8ed6299e8ebc8170142ccae7 (diff)
downloadu-boot-752a0b085b0c595a5979f1bee89961cffd109461.tar.xz
x86: Initial import from Intel FSP release for Queensbay platform
This is the initial import from Intel FSP release for Queensbay platform (Tunnel Creek processor and Topcliff Platform Controller Hub), which can be downloaded from Intel website. For more details, check http://www.intel.com/fsp. Note: U-Boot coding convention was applied to these codes, so it looks completely different from the original Intel release. Also update FSP support codes license header to use SPDX ID. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/queensbay/fsp_configs.c')
-rw-r--r--arch/x86/cpu/queensbay/fsp_configs.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/x86/cpu/queensbay/fsp_configs.c b/arch/x86/cpu/queensbay/fsp_configs.c
new file mode 100644
index 0000000..a7bb314
--- /dev/null
+++ b/arch/x86/cpu/queensbay/fsp_configs.c
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2013, Intel Corporation
+ * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
+ *
+ * SPDX-License-Identifier: Intel
+ */
+
+#include <types.h>
+#include <string.h>
+#include "fsp_support.h"
+
+void update_fsp_upd(struct upd_region_t *fsp_upd)
+{
+ /* Override any UPD setting if required */
+
+ /* Uncomment the line below to enable DEBUG message */
+ /* fsp_upd->serial_dbgport_type = 1; */
+
+ /* Examples on how to initialize the pointers in UPD region */
+ /* fsp_upd->pcd_example = (EXAMPLE_DATA *)&example; */
+}