mb/google/zork: add UPDM updating function before runing FSP-M
Add the UPD updating hook in early stage for customization. BUG=b:117719313 BRANCH=zork TEST=build,check the hook function been executed. Signed-off-by: Chris Wang <chris.wang@amd.corp-partner.google.com> Change-Id: I4954a438a51b29b086015624127e651fd06f971b Reviewed-on: https://review.coreboot.org/c/coreboot/+/51181 Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com> Reviewed-by: Kangheui Won <khwon@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
10
src/soc/amd/picasso/include/soc/romstage.h
Normal file
10
src/soc/amd/picasso/include/soc/romstage.h
Normal file
@@ -0,0 +1,10 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef _SOC_ROMSTAGE_H_
|
||||
#define _SOC_ROMSTAGE_H_
|
||||
|
||||
#include <fsp/api.h>
|
||||
|
||||
void mainboard_updm_update(FSP_M_CONFIG *mcfg);
|
||||
|
||||
#endif /* _SOC_ROMSTAGE_H_ */
|
@@ -16,10 +16,12 @@
|
||||
#include <elog.h>
|
||||
#include <soc/acpi.h>
|
||||
#include <soc/pci_devs.h>
|
||||
#include <soc/romstage.h>
|
||||
#include <types.h>
|
||||
#include "chip.h"
|
||||
#include <fsp/api.h>
|
||||
|
||||
void __weak mainboard_updm_update(FSP_M_CONFIG *mupd) {}
|
||||
static struct chipset_power_state chipset_state;
|
||||
|
||||
static void fill_chipset_state(void)
|
||||
@@ -139,6 +141,8 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
|
||||
mcfg->telemetry_vddcr_soc_offset = config->telemetry_vddcr_soc_offset;
|
||||
mcfg->hd_audio_enable = devtree_hda_dev_enabled();
|
||||
mcfg->sata_enable = devtree_sata_dev_enabled();
|
||||
|
||||
mainboard_updm_update(mcfg);
|
||||
}
|
||||
|
||||
asmlinkage void car_stage_entry(void)
|
||||
|
Reference in New Issue
Block a user