summaryrefslogtreecommitdiffstats
path: root/src/mainboard/lenovo/t520/variants/w520/romstage.c
blob: da8c81154831c9596edf558fd4172ddd87587fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <northbridge/intel/sandybridge/raminit_native.h>

void mainboard_get_spd(spd_raw_data *spd, bool id_only)
{
	read_spd(&spd[0], 0x50, id_only);
	read_spd(&spd[1], 0x52, id_only);
	read_spd(&spd[2], 0x51, id_only);
	read_spd(&spd[3], 0x53, id_only);
}