coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
spd.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef MAINBOARD_SPD_H
4 #define MAINBOARD_SPD_H
5 
6 #include <stdint.h>
7 
8 #define SPD_LEN 512
9 
10 #define SPD_DRAM_TYPE 2
11 #define SPD_DRAM_DDR3 0x0b
12 #define SPD_DRAM_LPDDR3 0xf1
13 #define SPD_DENSITY_BANKS 4
14 #define SPD_ADDRESSING 5
15 #define SPD_ORGANIZATION 7
16 #define SPD_BUS_DEV_WIDTH 8
17 #define SPD_PART_OFF 128
18 #define SPD_PART_LEN 18
19 
21 
22 #endif
uint8_t * mainboard_find_spd_data(void)
Definition: spd.c:9
unsigned char uint8_t
Definition: stdint.h:8