summaryrefslogtreecommitdiffstats
path: root/src/mainboard/lenovo/t520/variants/t520/romstage.c
blob: 3e745b88d67d9f0076bacd6082ad9aa551d6cf2a (plain)
1
2
3
4
5
6
7
8
9
10
/* 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[2], 0x51, id_only);
}