payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / intel / harcuvar / spd / spd.h
blob44eec02a6b97b6b562eb692e65917a19e8131a45
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef MAINBOARD_SPD_H
4 #define MAINBOARD_SPD_H
6 #include <stdint.h>
8 #define SPD_LEN 512
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
20 uint8_t *mainboard_find_spd_data(void);
22 #endif