soc/amd/glinda/cpu: Update smbios parameters

Update smbios parameters for cache type, operation mode & error
correction type.

source: UEFI reference BIOS

Change-Id: If8eaa54c9a0086f4d397a7ddb01009acfd3f1aee
Signed-off-by: Naresh Solanki <naresh.solanki@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85637
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Naresh Solanki 2024-11-27 01:41:40 +05:30 committed by Matt DeVillier
commit 00b4a61dc5

View file

@ -17,6 +17,22 @@ unsigned int smbios_processor_external_clock(void)
{
return 100; // 100 MHz
}
unsigned int smbios_cache_error_correction_type(u8 level)
{
return SMBIOS_CACHE_ERROR_CORRECTION_MULTI_BIT;
}
unsigned int smbios_cache_conf_operation_mode(u8 level)
{
return SMBIOS_CACHE_OP_MODE_WRITE_BACK;
}
unsigned int smbios_cache_sram_type(void)
{
return SMBIOS_CACHE_SRAM_TYPE_PIPELINE_BURST;
}
static void zen_2_3_init(struct device *dev)
{
check_mca();