diff options
author | Barnali Sarkar <barnali.sarkar@intel.com> | 2017-02-21 16:24:49 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-03-01 16:32:21 +0100 |
commit | e13b77564f71dd125f2e4691407ac39efe552b6e (patch) | |
tree | 6d6e53f9294f39375747b60c196bea71095cfc18 /src/soc/intel/common/smbios.h | |
parent | 9e54978f6ef7c12d6da07f64ad665c0e47deba50 (diff) |
soc/intel/common: Save Memory DIMM Information in SMBIOS table
Save SMBIOS memory information from FSP MEM_INFO_DATA_HOB in CBMEM.
Add function dimm_info_fill() which populates SMBIOS memory
information from FSP MEM_INFO_DATA_HOB data.
BUG=chrome-os-partner:61729
BRANCH=none
TEST=Build and boot KBLRVP to verify the type 17 DIMM info coming in
SMBIOS table from Kernel command "dmidecode".
Change-Id: I0fd7c9887076d3fdd320fcbdcc873cb1965b950c
Signed-off-by: Barnali Sarkar <barnali.sarkar@intel.com>
Reviewed-on: https://review.coreboot.org/18418
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/smbios.h')
-rw-r--r-- | src/soc/intel/common/smbios.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/soc/intel/common/smbios.h b/src/soc/intel/common/smbios.h new file mode 100644 index 0000000000..d38d6128c8 --- /dev/null +++ b/src/soc/intel/common/smbios.h @@ -0,0 +1,27 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2017 Intel Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#ifndef _COMMON_SMBIOS_H_ +#define _COMMON_SMBIOS_H_ + +#include <stdint.h> +#include <memory_info.h> + +/* Fill the SMBIOS memory information from FSP MEM_INFO_DATA_HOB in CBMEM.*/ +void dimm_info_fill(struct dimm_info *dimm, u32 dimm_capacity, u8 ddr_type, + u32 frequency, u8 channel_id, u8 dimm_id, const char *module_part_num, + u16 data_width); + +#endif /* _COMMON_SMBIOS_H_ */ |