mb/google/brya: Create rull variant
[coreboot2.git] / src / include / memory_info.h
blob74aa2a7b88db73530e1d5047164a440ab4acbfd1
1 /* Memory information */
2 /* SPDX-License-Identifier: GPL-2.0-only */
4 #ifndef _MEMORY_INFO_H_
5 #define _MEMORY_INFO_H_
7 #include <stdint.h>
9 #define DIMM_INFO_SERIAL_SIZE 4
10 #define DIMM_INFO_PART_NUMBER_SIZE 33
11 #define DIMM_INFO_TOTAL 64
13 /**
14 * If this table is filled and put in CBMEM,
15 * then these info in CBMEM will be used to generate smbios type 17 table
17 * Values are specified according to the JEDEC SPD Standard.
19 struct dimm_info {
21 * Size of the module in MiB.
23 uint32_t dimm_size;
25 * SMBIOS (not SPD) device type.
27 * See the smbios.h smbios_memory_type enum.
29 uint16_t ddr_type;
31 * ddr_frequency is deprecated.
32 * Use max_speed_mts and configured_speed_mts instead.
34 uint16_t ddr_frequency;
35 uint8_t rank_per_dimm;
37 * Socket-ID
39 uint8_t soc_num;
41 * Memory-Controller-ID
43 uint8_t ctrlr_num;
45 * Channel-ID
47 uint8_t channel_num;
49 * DIMM-ID
51 uint8_t dimm_num;
52 uint8_t bank_locator;
54 * SPD serial number.
56 uint8_t serial[DIMM_INFO_SERIAL_SIZE];
58 * The last byte is '\0' for the end of string
60 * Must contain only printable ASCII.
62 uint8_t module_part_number[DIMM_INFO_PART_NUMBER_SIZE];
64 * SPD Manufacturer ID
66 uint16_t mod_id;
68 * SPD Module Type.
70 * See spd.h for valid values.
72 * e.g., SPD_RDIMM, SPD_SODIMM, SPD_MICRO_DIMM
74 uint8_t mod_type;
76 * SPD bus width.
78 * Bits 0 - 2 encode the primary bus width:
79 * 0b000 = 8 bit width
80 * 0b001 = 16 bit width
81 * 0b010 = 32 bit width
82 * 0b011 = 64 bit width
84 * Bits 3 - 4 encode the extension bits (ECC):
85 * 0b00 = 0 extension bits
86 * 0b01 = 8 bit of ECC
88 * e.g.,
89 * 64 bit bus with 8 bits of ECC (72 bits total): 0b1011
90 * 64 bit bus with 0 bits of ECC (64 bits total): 0b0011
92 * See the smbios.h smbios_memory_bus_width enum.
94 uint8_t bus_width;
96 * Voltage Level
98 uint16_t vdd_voltage;
100 * Max speed in MT/s
101 * If the value is 0, ddr_frequency should be used instead.
103 uint16_t max_speed_mts;
105 * Configured speed in MT/s
106 * If the value is 0, ddr_frequency should be used instead.
108 uint16_t configured_speed_mts;
109 } __packed;
111 struct memory_info {
113 * SMBIOS error correction type.
114 * See the smbios.h smbios_memory_array_ecc enum.
116 uint8_t ecc_type;
117 /* Maximum capacity the DRAM controller/mainboard supports */
118 uint32_t max_capacity_mib;
119 /* Maximum number of DIMMs the DRAM controller/mainboard supports */
120 uint16_t number_of_devices;
122 /* active DIMM configuration */
123 uint8_t dimm_cnt;
124 struct dimm_info dimm[DIMM_INFO_TOTAL];
125 } __packed;
128 * mainboard_get_dram_part_num returns a DRAM part number override string
129 * return NULL = no part number override provided by mainboard
130 * return non-NULL = pointer to a string terminating in '\0'
132 const char *mainboard_get_dram_part_num(void);
133 #endif