1 /* SPDX-License-Identifier: GPL-2.0-only */
4 #include <console/console.h>
5 #include <memory_info.h>
8 #include <device/dram/ddr3.h>
10 void dump_spd_info(struct spd_block
*blk
)
14 for (i
= 0; i
< CONFIG_DIMM_MAX
; i
++)
15 if (blk
->spd_array
[i
] != NULL
&& blk
->spd_array
[i
][0] != 0) {
16 printk(BIOS_DEBUG
, "SPD @ 0x%02X\n", blk
->addr_map
[i
]);
17 print_spd_info(blk
->spd_array
[i
]);
21 const char * __weak
mainboard_get_dram_part_num(void)
23 /* Default weak implementation, no need to override part number. */
27 static bool use_ddr4_params(int dram_type
)
31 case SPD_DRAM_LPDDR3_INTEL
:
33 /* Below DDR type share the same attributes */
34 case SPD_DRAM_LPDDR3_JEDEC
:
38 case SPD_DRAM_LPDDR5X
:
40 case SPD_DRAM_LPDDR4X
:
43 printk(BIOS_NOTICE
, "Defaulting to using DDR4 params. Please add dram_type check for %d to %s\n",
49 static const char *spd_get_module_type_string(int dram_type
)
54 case SPD_DRAM_LPDDR3_INTEL
:
55 case SPD_DRAM_LPDDR3_JEDEC
:
61 case SPD_DRAM_LPDDR4X
:
67 case SPD_DRAM_LPDDR5X
:
73 static int spd_get_banks(const uint8_t spd
[], int dram_type
)
75 static const int ddr3_banks
[4] = { 8, 16, 32, 64 };
76 static const int ddr4_banks
[10] = { 4, 8, -1, -1, 8, 16, -1, -1, 16, 32 };
77 int index
= (spd
[SPD_DENSITY_BANKS
] >> 4) & 0xf;
79 if (use_ddr4_params(dram_type
)) {
80 if (index
>= ARRAY_SIZE(ddr4_banks
))
82 return ddr4_banks
[index
];
84 if (index
>= ARRAY_SIZE(ddr3_banks
))
86 return ddr3_banks
[index
];
90 static int spd_get_capmb(const uint8_t spd
[])
92 static const int spd_capmb
[13] = { 1, 2, 4, 8, 16, 32, 64,
93 128, 48, 96, 12, 24, 72 };
94 int index
= spd
[SPD_DENSITY_BANKS
] & 0xf;
95 if (index
>= ARRAY_SIZE(spd_capmb
))
97 return spd_capmb
[index
] * 256;
100 static int spd_get_rows(const uint8_t spd
[])
102 static const int spd_rows
[7] = { 12, 13, 14, 15, 16, 17, 18 };
103 int index
= (spd
[SPD_ADDRESSING
] >> 3) & 7;
104 if (index
>= ARRAY_SIZE(spd_rows
))
106 return spd_rows
[index
];
109 static int spd_get_cols(const uint8_t spd
[])
111 static const int spd_cols
[4] = { 9, 10, 11, 12 };
112 int index
= spd
[SPD_ADDRESSING
] & 7;
113 if (index
>= ARRAY_SIZE(spd_cols
))
115 return spd_cols
[index
];
118 static int spd_get_ranks(const uint8_t spd
[], int dram_type
)
120 static const int spd_ranks
[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
121 int organ_offset
= use_ddr4_params(dram_type
) ? DDR4_ORGANIZATION
123 int index
= (spd
[organ_offset
] >> 3) & 7;
124 if (index
>= ARRAY_SIZE(spd_ranks
))
126 return spd_ranks
[index
];
129 static int spd_get_devw(const uint8_t spd
[], int dram_type
)
131 static const int spd_devw
[4] = { 4, 8, 16, 32 };
132 int organ_offset
= use_ddr4_params(dram_type
) ? DDR4_ORGANIZATION
134 int index
= spd
[organ_offset
] & 7;
135 if (index
>= ARRAY_SIZE(spd_devw
))
137 return spd_devw
[index
];
140 static int spd_get_busw(const uint8_t spd
[], int dram_type
)
142 static const int spd_busw
[4] = { 8, 16, 32, 64 };
143 int busw_offset
= use_ddr4_params(dram_type
) ? DDR4_BUS_DEV_WIDTH
144 : DDR3_BUS_DEV_WIDTH
;
145 int index
= spd
[busw_offset
] & 7;
146 if (index
>= ARRAY_SIZE(spd_busw
))
148 return spd_busw
[index
];
151 static void spd_get_name(const uint8_t spd
[], int type
, const char **spd_name
, size_t *len
)
153 *spd_name
= mainboard_get_dram_part_num();
154 if (*spd_name
!= NULL
) {
155 *len
= strlen(*spd_name
);
161 *spd_name
= (const char *) &spd
[DDR3_SPD_PART_OFF
];
162 *len
= DDR3_SPD_PART_LEN
;
164 case SPD_DRAM_LPDDR3_INTEL
:
165 *spd_name
= (const char *) &spd
[LPDDR3_SPD_PART_OFF
];
166 *len
= LPDDR3_SPD_PART_LEN
;
168 /* LPDDR3, LPDDR4 and DDR4 have same part number offset and length */
169 case SPD_DRAM_LPDDR3_JEDEC
:
172 case SPD_DRAM_LPDDR5
:
173 case SPD_DRAM_LPDDR4
:
174 case SPD_DRAM_LPDDR4X
:
175 if (spd
[DDR4_SPD_PART_OFF
]) {
176 *spd_name
= (const char *) &spd
[DDR4_SPD_PART_OFF
];
177 *len
= DDR4_SPD_PART_LEN
;
186 void print_spd_info(uint8_t spd
[])
188 const char *nameptr
= NULL
;
190 int type
= spd
[SPD_DRAM_TYPE
];
191 int banks
= spd_get_banks(spd
, type
);
192 int capmb
= spd_get_capmb(spd
);
193 int rows
= spd_get_rows(spd
);
194 int cols
= spd_get_cols(spd
);
195 int ranks
= spd_get_ranks(spd
, type
);
196 int devw
= spd_get_devw(spd
, type
);
197 int busw
= spd_get_busw(spd
, type
);
200 printk(BIOS_INFO
, "SPD: module type is %s\n",
201 spd_get_module_type_string(type
));
202 /* Module Part Number */
203 spd_get_name(spd
, type
, &nameptr
, &len
);
205 printk(BIOS_INFO
, "SPD: module part number is %.*s\n", (int) len
, nameptr
);
208 "SPD: banks %d, ranks %d, rows %d, columns %d, density %d Mb\n",
209 banks
, ranks
, rows
, cols
, capmb
);
210 printk(BIOS_INFO
, "SPD: device width %d bits, bus width %d bits\n",
213 if (capmb
> 0 && busw
> 0 && devw
> 0 && ranks
> 0) {
214 /* SIZE = DENSITY / 8 * BUS_WIDTH / SDRAM_WIDTH * RANKS */
215 printk(BIOS_INFO
, "SPD: module size is %u MB (per channel)\n",
216 capmb
/ 8 * busw
/ devw
* ranks
);
220 uintptr_t spd_cbfs_map(u8 spd_index
)
222 enum cbfs_type cbfs_type
= CBFS_TYPE_SPD
;
225 void *map
= cbfs_type_map("spd.bin", &size
, &cbfs_type
);
226 if (!map
|| size
< (spd_index
+ 1) * CONFIG_DIMM_SPD_SIZE
)
229 return (uintptr_t)map
+ spd_index
* CONFIG_DIMM_SPD_SIZE
;
232 #if CONFIG_DIMM_SPD_SIZE == 128
233 int read_ddr3_spd_from_cbfs(u8
*buf
, int idx
)
235 const int SPD_CRC_HI
= 127;
236 const int SPD_CRC_LO
= 126;
239 size_t spd_file_len
= 0;
240 size_t min_len
= (idx
+ 1) * CONFIG_DIMM_SPD_SIZE
;
242 spd_file
= cbfs_map("spd.bin", &spd_file_len
);
244 printk(BIOS_EMERG
, "file [spd.bin] not found in CBFS");
245 if (spd_file_len
< min_len
)
246 printk(BIOS_EMERG
, "Missing SPD data.");
247 if (!spd_file
|| spd_file_len
< min_len
)
250 memcpy(buf
, spd_file
+ (idx
* CONFIG_DIMM_SPD_SIZE
),
251 CONFIG_DIMM_SPD_SIZE
);
252 cbfs_unmap(spd_file
);
254 u16 crc
= spd_ddr3_calc_crc(buf
, CONFIG_DIMM_SPD_SIZE
);
256 if (((buf
[SPD_CRC_LO
] == 0) && (buf
[SPD_CRC_HI
] == 0))
257 || (buf
[SPD_CRC_LO
] != (crc
& 0xff))
258 || (buf
[SPD_CRC_HI
] != (crc
>> 8))) {
260 "SPD CRC %02x%02x is invalid, should be %04x\n",
261 buf
[SPD_CRC_HI
], buf
[SPD_CRC_LO
], crc
);
262 buf
[SPD_CRC_LO
] = crc
& 0xff;
263 buf
[SPD_CRC_HI
] = crc
>> 8;
265 printk(BIOS_WARNING
, "\nDisplay the SPD");
266 for (i
= 0; i
< CONFIG_DIMM_SPD_SIZE
; i
++) {
267 if ((i
% 16) == 0x00)
268 printk(BIOS_WARNING
, "\n%02x: ", i
);
269 printk(BIOS_WARNING
, "%02x ", buf
[i
]);
271 printk(BIOS_WARNING
, "\n");