diff options
author | Johnny Lin <johnny_lin@wiwynn.com> | 2020-04-10 18:28:33 +0800 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2020-07-04 11:31:16 +0000 |
commit | ad0ccb336d0184c7e4bd8157483bc80a5dfd5ab4 (patch) | |
tree | d77f608549c5fbc0a1c2e5530a14534c2f53e96d /src/drivers/ocp/dmi/Kconfig | |
parent | 29f61a2110a04b3e21f374d9ad5a853146f74485 (diff) |
drivers/ocp/dmi: Add OCP_DMI driver for populating SMBIOS from IPMI FRU data
It implements the SMBIOS IPMI FRU mapping table defined in
https://www.opencompute.org/documents/facebook-xeon-motherboard-v31
22.3 SMBIOS FRU mapping table.
Mainboard needs to configure the correct values for FRU_DEVICE_ID and BMC_KCS_BASE.
For type 11 string 1 to 6 are common and implemented in this driver, the
rest are project dependent and can be added in the mainboard code.
Tested on OCP Tioga Pass.
Change-Id: I08c958dfad83216cd12545760a19d205efc2515b
Signed-off-by: Johnny Lin <johnny_lin@wiwynn.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40308
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Reviewed-by: Jonathan Zhang <jonzhang@fb.com>
Reviewed-by: Christian Walter <christian.walter@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/ocp/dmi/Kconfig')
-rw-r--r-- | src/drivers/ocp/dmi/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/drivers/ocp/dmi/Kconfig b/src/drivers/ocp/dmi/Kconfig new file mode 100644 index 0000000000..b30a40d473 --- /dev/null +++ b/src/drivers/ocp/dmi/Kconfig @@ -0,0 +1,12 @@ +config OCP_DMI + bool + default n + depends on IPMI_KCS && GENERATE_SMBIOS_TABLES && XEON_SP_COMMON_BASE + help + It implements the SMBIOS IPMI FRU mapping table defined in + https://www.opencompute.org/documents/facebook-xeon-motherboard-v31 + 22.3 SMBIOS FRU mapping table + +config FRU_DEVICE_ID + int + default 0 |