google/link: fix detection of dimm on channel 1
Changes to the sandybridge memory init code (both MRC
and native) now require SPD data on all populated channels
in order for dimms to be detected properly, so copy
spd_data[0] to spd_data[2], as LINK always has 2
channels of memory down.
Test: boot google/link, observe onboard RAM correctly
detected on both channels
Change-Id: Id01d57d5e5f928dfc1cd9063ab1625c440ef2bbe
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35084
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
(cherry picked from commit 4af1fe23f8)
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35046
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
ae317695e3
commit
f672d50e2b
1 changed files with 7 additions and 0 deletions
|
|
@ -156,8 +156,12 @@ void mainboard_fill_pei_data(struct pei_data *pei_data)
|
|||
},
|
||||
};
|
||||
*pei_data = pei_data_template;
|
||||
/* LINK has 2 channels of memory down, so spd_data[0] and [2]
|
||||
both need to be populated */
|
||||
memcpy(pei_data->spd_data[0], locate_spd(),
|
||||
sizeof(pei_data->spd_data[0]));
|
||||
memcpy(pei_data->spd_data[2], pei_data->spd_data[0],
|
||||
sizeof(pei_data->spd_data[0]));
|
||||
}
|
||||
|
||||
const struct southbridge_usb_port mainboard_usb_ports[] = {
|
||||
|
|
@ -180,7 +184,10 @@ const struct southbridge_usb_port mainboard_usb_ports[] = {
|
|||
|
||||
void mainboard_get_spd(spd_raw_data *spd, bool id_only)
|
||||
{
|
||||
/* LINK has 2 channels of memory down, so spd_data[0] and [2]
|
||||
both need to be populated */
|
||||
memcpy(&spd[0], locate_spd(), 128);
|
||||
memcpy(&spd[2], &spd[0], 128);
|
||||
}
|
||||
|
||||
void mainboard_early_init(int s3resume)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue