From 89f3084f7481e6603f2e8a3b603e03524fc10af2 Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Tue, 14 Jun 2016 19:34:55 +0200 Subject: [PATCH] UPSTREAM: arch/x86/smbios: Add DRAM manufacturer Add Ramaxel DRAM manufacturer id. Tested on Lenovo T520 and DDR3-1600 DIMM (RMT3170eb86e9w16). The manufacturer name shows up in dmidecode. Change-Id: I14cdc82c09f0f990e2ba18083748d11d79e53874 Original-Signed-off-by: Patrick Rudolph Original-Reviewed-on: https://review.coreboot.org/15183 Original-Reviewed-by: Kysti Mlkki Original-Reviewed-by: Alexander Couzens Original-Reviewed-by: Paul Menzel (cherry-picked from commit 4307835d264e9e4db3e3a0e54683f147f2e89d5a) Signed-off-by: Martin Roth Reviewed-on: https://chromium-review.googlesource.com/354197 Tested-by: Furquan Shaikh Reviewed-by: Furquan Shaikh --- src/arch/x86/smbios.c | 4 ++++ 1 file changed, 4 insertions(+) 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");