[coreboot-gerrit] Patch set updated for coreboot: arch/x86/smbios: Add DRAM manufacturer

Patrick Rudolph (siro@das-labor.org) gerrit at coreboot.org
Thu Jun 16 17:52:55 CEST 2016


Patrick Rudolph (siro at das-labor.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15183

-gerrit

commit 126253aa4baf7bfe05163d14f9b39906bef4e80d
Author: Patrick Rudolph <siro at das-labor.org>
Date:   Tue Jun 14 19:34:55 2016 +0200

    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 at das-labor.org>
---
 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 5784beb..80185c9 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");



More information about the coreboot-gerrit mailing list