coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
early_init.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
6 
8  { 1, 0, -1 },
9  { 1, 0, -1 },
10  { 1, 0, -1 },
11  { 1, 0, -1 },
12  { 1, 0, -1 },
13  { 1, 0, -1 },
14  { 1, 0, -1 },
15  { 1, 0, -1 },
16  { 1, 0, -1 },
17  { 1, 0, -1 },
18  { 1, 0, -1 },
19  { 1, 0, -1 },
20  { 1, 0, -1 },
21  { 1, 0, -1 },
22 };
23 
24 void mainboard_get_spd(spd_raw_data *spd, bool id_only)
25 {
26  read_spd(&spd[0], 0x50, id_only);
27  read_spd(&spd[2], 0x52, id_only);
28 }
u8 spd_raw_data[256]
Definition: ddr3.h:156
void mainboard_get_spd(spd_raw_data *spd, bool id_only)
Definition: early_init.c:25
const struct southbridge_usb_port mainboard_usb_ports[]
Definition: early_init.c:8
void read_spd(spd_raw_data *spd, u8 addr, bool id_only)
Definition: raminit.c:138