diff options
author | JingleHsuWiwynn <jingle_hsu@wiwynn.com> | 2021-10-07 10:45:47 +0800 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-11-10 19:06:41 +0000 |
commit | 014901bd9bd3df7ee919de228969f0359db0de4f (patch) | |
tree | 9f207b7f773772131228f22d17b22e3ef4222d17 /src/mainboard/ocp | |
parent | 323e5a84eb53c35ed9b58fb7e5045cc8b7c42986 (diff) |
soc/intel/xeon_sp: Move SMBIOS type 4 override functions from mainboard
to soc
Move SMBIOS type 4 override functions from mainboard to soc so that all
xeon family cpus share same functions without implementing again.
Tested=On OCP Deltalake, dmidecode -t 4 shows expected info.
Signed-off-by: JingleHsuWiwynn <jingle_hsu@wiwynn.com>
Change-Id: I17df8de67bc2f5e89ea04da36efb2480a7e73174
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69363
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jonathan Zhang <jonzhang@fb.com>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/ocp')
-rw-r--r-- | src/mainboard/ocp/deltalake/ramstage.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mainboard/ocp/deltalake/ramstage.c b/src/mainboard/ocp/deltalake/ramstage.c index fb81e10962..0fca9207f2 100644 --- a/src/mainboard/ocp/deltalake/ramstage.c +++ b/src/mainboard/ocp/deltalake/ramstage.c @@ -327,17 +327,6 @@ void smbios_fill_dimm_locator(const struct dimm_info *dimm, struct smbios_type17 t->bank_locator = smbios_add_string(t->eos, buf); } -unsigned int smbios_processor_family(struct cpuid_result res) -{ - return 0xb3; /* Xeon */ -} - -unsigned int smbios_processor_characteristics(void) -{ - /* 64-bit Capable, Multi-Core, Power/Performance Control */ - return 0x8c; /* BIT2 | BIT3 | BIT7 */ -} - static void mainboard_enable(struct device *dev) { dev->ops->get_smbios_strings = dl_oem_smbios_strings; |