diff options
author | Patrick Rudolph <siro@das-labor.org> | 2016-06-14 19:34:55 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-06-20 21:48:32 +0200 |
commit | 4307835d264e9e4db3e3a0e54683f147f2e89d5a (patch) | |
tree | 838d77ed24e98afad70d80db6203ec47f312ad80 | |
parent | 577aad6f132da51640b6fe5c72fa8f14718c5c34 (diff) |
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
Signed-off-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-on: https://review.coreboot.org/15183
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | src/arch/x86/smbios.c | 4 |
1 files changed, 4 insertions, 0 deletions
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"); |