From 2bdeb7f843c707023ea2bd39e314f8eec51c7add Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Mon, 29 Feb 2016 19:19:46 +0100 Subject: src/arch/x86/smbios: Add vendors Add more manufacturer IDs for vendor: * GSkill * OCZ * Transcend Change-Id: Ic7df76b1310b2c1abea9c5d2d8fd688cb2a713b8 Signed-off-by: Patrick Rudolph Reviewed-on: https://review.coreboot.org/13863 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth Reviewed-by: Paul Menzel --- src/arch/x86/smbios.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src') diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index 305ba40fe1..8c876353ab 100644 --- a/src/arch/x86/smbios.c +++ b/src/arch/x86/smbios.c @@ -131,6 +131,10 @@ void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17 t->manufacturer = smbios_add_string(t->eos, "Crucial"); break; + case 0x4f01: + t->manufacturer = smbios_add_string(t->eos, + "Transcend"); + break; case 0x9801: t->manufacturer = smbios_add_string(t->eos, "Kingston"); @@ -143,10 +147,18 @@ void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17 t->manufacturer = smbios_add_string(t->eos, "Corsair"); break; + case 0xb004: + t->manufacturer = smbios_add_string(t->eos, + "OCZ"); + break; case 0xad80: t->manufacturer = smbios_add_string(t->eos, "Hynix/Hyundai"); break; + case 0xcd04: + t->manufacturer = smbios_add_string(t->eos, + "GSkill"); + break; case 0xce80: t->manufacturer = smbios_add_string(t->eos, "Samsung"); -- cgit v1.2.3