soc/amd/picasso: Add counter initializers
Some counters are not being initialized and are relying on mainboards to set their values. If the mainboards have not implemented these functions it leads to indeterminate behavior. BUG=b:224987813 TEST=builds Signed-off-by: Jon Murphy <jpmurphy@google.com> Change-Id: I14903980fd921cad24c39cadd533349c14cc1cd3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62871 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com> Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
This commit is contained in:
parent
2e1d16828a
commit
cd93e8e67f
|
@ -92,10 +92,10 @@ static void fill_ddi_descriptors(FSP_S_CONFIG *scfg,
|
|||
|
||||
static void fsp_fill_pcie_ddi_descriptors(FSP_S_CONFIG *scfg)
|
||||
{
|
||||
const fsp_dxio_descriptor *fsp_dxio;
|
||||
const fsp_ddi_descriptor *fsp_ddi;
|
||||
size_t num_dxio;
|
||||
size_t num_ddi;
|
||||
const fsp_dxio_descriptor *fsp_dxio = NULL;
|
||||
const fsp_ddi_descriptor *fsp_ddi = NULL;
|
||||
size_t num_dxio = 0;
|
||||
size_t num_ddi = 0;
|
||||
|
||||
mainboard_get_dxio_ddi_descriptors(&fsp_dxio, &num_dxio,
|
||||
&fsp_ddi, &num_ddi);
|
||||
|
|
Loading…
Reference in New Issue