device/dram/spd.c: Add more manufacturer ID codes

Add manufacturer ID codes for Hynix, Samsung and Micron.

Tested=On OCP Crater Lake, dmidecode -t 17 shows expected info.

Signed-off-by: JingleHsuWiwynn <jingle_hsu@wiwynn.com>
Change-Id: I0b4bbc46d3bfd9e9534cdd59f90cbdc150f29542
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57700
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Daocheng Bu <daocheng.bu@intel.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
diff --git a/src/device/dram/spd.c b/src/device/dram/spd.c
index 9a9a767..0b2dd49 100644
--- a/src/device/dram/spd.c
+++ b/src/device/dram/spd.c
@@ -14,6 +14,7 @@
 	case 0x9801:
 		return "Kingston";
 	case 0x987f:
+	case 0xad00:
 		return "Hynix";
 	case 0x9e02:
 		return "Corsair";
@@ -26,10 +27,12 @@
 	case 0xcd04:
 		return "GSkill";
 	case 0xce80:
+	case 0xce00:
 		return "Samsung";
 	case 0xfe02:
 		return "Elpida";
 	case 0x2c80:
+	case 0x2c00:
 		return "Micron";
 	default:
 		return NULL;