mb/google/nissa/var/rull: Add 6W and 15W DPTF parameters
[coreboot.git] / src / soc / intel / common / smbios.h
blob9fb42b5d55722bf3c09764d1aedee576b180ddae
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef _COMMON_SMBIOS_H_
4 #define _COMMON_SMBIOS_H_
6 #include <memory_info.h>
7 #include <types.h>
9 /* Offset info DIMM_INFO SpdSave for start of serial number */
10 #define SPD_SAVE_OFFSET_SERIAL 5
12 /* Fill the SMBIOS memory information from FSP MEM_INFO_DATA_HOB in CBMEM.*/
13 void dimm_info_fill(struct dimm_info *dimm, u32 dimm_capacity, u8 ddr_type,
14 u32 frequency, u8 rank_per_dimm, u8 channel_id, u8 dimm_id,
15 const char *module_part_num, size_t module_part_number_size,
16 const u8 *module_serial_num, u16 data_width, u32 vdd_voltage,
17 bool ecc_support, u16 mod_id, u8 mod_type, u8 ctrlr_id,
18 u32 max_frequency);
20 #endif /* _COMMON_SMBIOS_H_ */