1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef _COMMON_SMBIOS_H_ 4 #define _COMMON_SMBIOS_H_ 5 6 #include <memory_info.h> 7 #include <types.h> 8 9 /* Offset info DIMM_INFO SpdSave for start of serial number */ 10 #define SPD_SAVE_OFFSET_SERIAL 5 11 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); 19 20 #endif /* _COMMON_SMBIOS_H_ */ 21