hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (C) 2013, Intel Corporation
 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
 *
 * SPDX-License-Identifier:    Intel
 */
 
#include <common.h>
#include <asm/fsp/fsp_support.h>
 
void update_fsp_configs(struct fsp_config_data *config,
           struct fspinit_rtbuf *rt_buf)
{
   /* 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;
 
   /* Override any UPD setting if required */
}