soc/amd/sabrina/fsp_m_params: add UPD pointer parameter to mb callback

This allows the mainboard code to change FSP-M parameters depending on
parameters that are only known at run time and not at build time.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I3e0e196a5d861acd7635c59db44ecf1970b73ce2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65855
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
This commit is contained in:
Felix Held
2022-06-15 21:42:29 +02:00
parent 18c997f439
commit 56fa67c151
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
#include <baseboard/variants.h>
#include <soc/platform_descriptors.h>
void mb_pre_fspm(void)
void mb_pre_fspm(FSP_M_CONFIG *mcfg)
{
size_t base_num_gpios;
const struct soc_amd_gpio *base_gpios;

View File

@@ -16,7 +16,7 @@
#include <vendorcode/amd/fsp/sabrina/FspUsb.h>
#include "chip.h"
__weak void mb_pre_fspm(void)
__weak void mb_pre_fspm(FSP_M_CONFIG *mcfg)
{
}
@@ -156,5 +156,5 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
fsp_fill_pcie_ddi_descriptors(mcfg);
fsp_assign_ioapic_upds(mcfg);
mb_pre_fspm();
mb_pre_fspm(mcfg);
}

View File

@@ -14,6 +14,6 @@ void mainboard_get_dxio_ddi_descriptors(
const fsp_dxio_descriptor **dxio_descs, size_t *dxio_num,
const fsp_ddi_descriptor **ddi_descs, size_t *ddi_num);
void mb_pre_fspm(void);
void mb_pre_fspm(FSP_M_CONFIG *mcfg);
#endif /* AMD_SABRINA_PLATFORM_DESCRIPTORS_H */