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:
parent
fe107c1ad2
commit
00b4a61dc5
1 changed files with 16 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue