2014-12-12 13:05:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013, Intel Corporation
|
|
|
|
* Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Intel
|
|
|
|
*/
|
|
|
|
|
2014-12-12 13:05:29 +00:00
|
|
|
#include <common.h>
|
|
|
|
#include <asm/arch/fsp/fsp_support.h>
|
2014-12-12 13:05:28 +00:00
|
|
|
|
2014-12-17 07:50:49 +00:00
|
|
|
void update_fsp_upd(struct upd_region *fsp_upd)
|
2014-12-12 13:05:28 +00:00
|
|
|
{
|
|
|
|
/* 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; */
|
|
|
|
}
|