[coreboot-gerrit] New patch to review for coreboot: arch/x86/boot/smbios: Add SPD IDs for Kingston and Corsair

Timothy Pearson (tpearson@raptorengineeringinc.com) gerrit at coreboot.org
Fri Oct 16 21:45:13 CEST 2015


Timothy Pearson (tpearson at raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11933

-gerrit

commit d8c903212a455f898342d11d0ef230f876d79be4
Author: Timothy Pearson <tpearson at raptorengineeringinc.com>
Date:   Thu Jun 25 18:37:58 2015 -0500

    arch/x86/boot/smbios: Add SPD IDs for Kingston and Corsair
    
    Change-Id: I6a32b69d3b75d7d086dc7f8ea1e195473399f406
    Signed-off-by: Timothy Pearson <tpearson at raptorengineeringinc.com>
---
 src/arch/x86/smbios.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c
index a1f05da..74288f9 100644
--- a/src/arch/x86/smbios.c
+++ b/src/arch/x86/smbios.c
@@ -124,10 +124,18 @@ static int smbios_processor_name(char *start)
 void smbios_fill_dimm_manufacturer_from_id(uint16_t mod_id, struct smbios_type17 *t)
 {
 	switch (mod_id) {
+		case 0x9801:
+			t->manufacturer = smbios_add_string(t->eos,
+							    "Kingston");
+			break;
 		case 0x987f:
 			t->manufacturer = smbios_add_string(t->eos,
 							    "Hynix");
 			break;
+		case 0x9e02:
+			t->manufacturer = smbios_add_string(t->eos,
+							    "Corsair");
+			break;
 		case 0xad80:
 			t->manufacturer = smbios_add_string(t->eos,
 							    "Hynix/Hyundai");



More information about the coreboot-gerrit mailing list