From 4307835d264e9e4db3e3a0e54683f147f2e89d5a Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Tue, 14 Jun 2016 19:34:55 +0200 Subject: arch/x86/smbios: Add DRAM manufacturer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Ramaxel DRAM manufacturer id. Tested on Lenovo T520 and DDR3-1600 DIMM (RMT3170eb86e9w16). The manufacturer name shows up in dmidecode. Change-Id: I14cdc82c09f0f990e2ba18083748d11d79e53874 Signed-off-by: Patrick Rudolph Reviewed-on: https://review.coreboot.org/15183 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki Reviewed-by: Alexander Couzens Reviewed-by: Paul Menzel --- src/arch/x86/smbios.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/arch/x86') diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index 5784beb088..80185c9383 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 0x4304: + t->manufacturer = smbios_add_string(t->eos, + "Ramaxel"); + break; case 0x4f01: t->manufacturer = smbios_add_string(t->eos, "Transcend"); -- cgit v1.2.3