blob: c4d117783cbf3ada7f8743d503937dc838662ec9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: Intel
Bin Meng2922b3e2014-12-12 21:05:28 +08002/*
3 * Copyright (C) 2013, Intel Corporation
4 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
Bin Meng2922b3e2014-12-12 21:05:28 +08005 */
6
Bin Meng01223e32014-12-12 21:05:29 +08007#include <common.h>
Simon Glassb93abfc2015-01-27 22:13:36 -07008#include <asm/fsp/fsp_support.h>
Bin Meng2922b3e2014-12-12 21:05:28 +08009
Bin Meng4a076fe2015-12-10 22:03:04 -080010void update_fsp_configs(struct fsp_config_data *config,
11 struct fspinit_rtbuf *rt_buf)
Bin Meng2922b3e2014-12-12 21:05:28 +080012{
Bin Meng4a076fe2015-12-10 22:03:04 -080013 /* Initialize runtime buffer for fsp_init() */
14 rt_buf->common.stack_top = config->common.stack_top - 32;
15 rt_buf->common.boot_mode = config->common.boot_mode;
16 rt_buf->common.upd_data = &config->fsp_upd;
17
Bin Meng2922b3e2014-12-12 21:05:28 +080018 /* Override any UPD setting if required */
Bin Meng2922b3e2014-12-12 21:05:28 +080019}