hp/mainboard_spd: read spds instead of static spd

Change-Id: I2eae26ae4b9542bd5b7a4e01bed73d3d8ba6b04c
This commit is contained in:
Alexander Couzens 2017-10-29 05:23:58 +01:00
parent a53c6fc5fc
commit 92b0e5d8fb
1 changed files with 8 additions and 1 deletions

View File

@ -23,7 +23,7 @@
void mainboard_get_spd(spd_raw_data *spd, bool id_only)
{
uint8_t *spd_file;
/* uint8_t *spd_file;
size_t spd_file_len;
spd_file = cbfs_boot_map_with_leak("spd.bin", CBFS_TYPE_SPD,
@ -38,5 +38,12 @@ void mainboard_get_spd(spd_raw_data *spd, bool id_only)
memcpy(&spd[1], spd_file, 256);
//memcpy(&spd[2], spd_file, 256);
//memcpy(&spd[3], spd_file, 256);
*/
read_spd (&spd[0], 0x50, id_only);
read_spd (&spd[1], 0x51, id_only);
read_spd (&spd[2], 0x52, id_only);
read_spd (&spd[3], 0x53, id_only);
}