coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
spd_util.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <console/console.h>
5 
6 /* We use RAM_ID3 to indicate dual channel config.
7  *
8  * 0b0000 - 2GiB total - 1 x 2GiB Samsung K4E8E304EE-EGCF 1600MHz
9  * 0b0001 - 2GiB total - 1 x 2GiB Hynix H9CCNNN8GTMLAR-NUD 1600MHz
10  * 0b0010 - 2GiB total - 1 x 2GiB Micron MT52L256M32D1PF-107 1600MHz
11  * 0b0011 - 2GiB total - 1 x 2GiB Samsung K4E8E324EB-EGCF 1600MHz
12  * 0b0100 - 2GiB total - 1 x 2GiB Micron EDF8132A3MA-JD-F 1600MHz
13  * 0b0101 - 2GiB total - 1 x 2GiB Hynix H9CCNNN8JTBLAR-NUD-1G-1866 1866MHz
14  * 0b0110 - 2GiB total - 1 x 2GiB Hynix H9CCNNN8GTALAR-NUD 1600MHz
15  *
16  * 0b1000 - 4GiB total - 2 x 2GiB Samsung K4E8E304EE-EGCF 1600MHz
17  * 0b1001 - 4GiB total - 2 x 2GiB Hynix H9CCNNN8GTMLAR-NUD 1600MHz
18  * 0b1010 - 4GiB total - 2 x 2GiB Micron MT52L256M32D1PF-107 1600MHz
19  * 0b1011 - 4GiB total - 2 x 2GiB Samsung K4E8E324EB-EGCF 1600MHz
20  * 0b1100 - 4GiB total - 2 x 2GiB Micron EDF8132A3MA-JD-F 1600MHz
21  * 0b1101 - 4GiB total - 2 x 2GiB Hynix H9CCNNN8JTBLAR-NUD-1G-1866 1866MHz
22  * 0b1110 - 4GiB total - 2 x 2GiB Hynix H9CCNNN8GTALAR-NUD 1600MHz
23  *
24  */
25 
26 int get_variant_spd_index(int ram_id, int *dual)
27 {
28  int spd_index = ram_id & 0x7;
29 
30  /* Determine if single or dual channel memory system */
31  /* RAMID3 is deterministic for relm */
32  *dual = ((ram_id >> 3) & 0x1) ? 1 : 0;
33 
34  /* Display the RAM type */
35  printk(BIOS_DEBUG, *dual ? "4GiB " : "2GiB ");
36  switch (spd_index) {
37  case 0:
38  printk(BIOS_DEBUG, "Samsung K4E8E304EE-EGCF\n");
39  break;
40  case 1:
41  printk(BIOS_DEBUG, "Hynix H9CCNNN8GTMLAR-NUD\n");
42  break;
43  case 2:
44  printk(BIOS_DEBUG, "Micron MT52L256M32D1PF-107\n");
45  break;
46  case 3:
47  printk(BIOS_DEBUG, "Samsung K4E8E324EB-EGCF\n");
48  break;
49  case 4:
50  printk(BIOS_DEBUG, "Micron EDF8132A3MA-JD-F\n");
51  break;
52  case 5:
53  printk(BIOS_DEBUG, "Hynix H9CCNNN8JTBLAR-NUD-1G\n");
54  break;
55  case 6:
56  printk(BIOS_DEBUG, "H9CCNNN8GTALAR-NUD\n");
57  break;
58  }
59 
60  return spd_index;
61 }
#define printk(level,...)
Definition: stdlib.h:16
int get_variant_spd_index(int ram_id, int *dual)
Definition: spd_util.c:21
#define BIOS_DEBUG
BIOS_DEBUG - Verbose output.
Definition: loglevel.h:128
static const int spd_index[32]
Definition: memory.c:10