Merge branch 'master' of git://git.denx.de/u-boot-mmc
[oweals/u-boot.git] / arch / x86 / cpu / queensbay / fsp_configs.c
index 78bc966bbd068a8be618cfd326f66dd9a0a1ab1e..f83bb5f22143be166504a55cccb84b1faa92bf20 100644 (file)
@@ -8,13 +8,13 @@
 #include <common.h>
 #include <asm/fsp/fsp_support.h>
 
-void update_fsp_upd(struct upd_region *fsp_upd)
+void update_fsp_configs(struct fsp_config_data *config,
+                       struct fspinit_rtbuf *rt_buf)
 {
-       /* Override any UPD setting if required */
-
-       /* Uncomment the line below to enable DEBUG message */
-       /* fsp_upd->serial_dbgport_type = 1; */
+       /* Initialize runtime buffer for fsp_init() */
+       rt_buf->common.stack_top = config->common.stack_top - 32;
+       rt_buf->common.boot_mode = config->common.boot_mode;
+       rt_buf->common.upd_data = &config->fsp_upd;
 
-       /* Examples on how to initialize the pointers in UPD region */
-       /* fsp_upd->pcd_example = (EXAMPLE_DATA *)&example; */
+       /* Override any UPD setting if required */
 }