diff options
author | Tom Rini <trini@konsulko.com> | 2016-01-14 21:51:32 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-01-14 21:51:32 -0500 |
commit | 4edde96111aefac63d6aaca6ba87a90d149e973e (patch) | |
tree | 83996996fc15554644c114e4f4d534d78cef15fd /arch/x86/cpu/queensbay | |
parent | a737028e80603f49a4757adec10b5842d0689dbb (diff) | |
parent | 5c2ed61ce235fd835a3f594bc983dfc20959568c (diff) | |
download | u-boot-imx-4edde96111aefac63d6aaca6ba87a90d149e973e.zip u-boot-imx-4edde96111aefac63d6aaca6ba87a90d149e973e.tar.gz u-boot-imx-4edde96111aefac63d6aaca6ba87a90d149e973e.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'arch/x86/cpu/queensbay')
-rw-r--r-- | arch/x86/cpu/queensbay/fsp_configs.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/x86/cpu/queensbay/fsp_configs.c b/arch/x86/cpu/queensbay/fsp_configs.c index 78bc966..f83bb5f 100644 --- a/arch/x86/cpu/queensbay/fsp_configs.c +++ b/arch/x86/cpu/queensbay/fsp_configs.c @@ -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 */ } |