commit | 366546cfe32cdf01ebcd6059bd2484e58cb0ab88 | [log] [tgz] |
---|---|---|
author | Jonathan Doman <jonathan.doman@intel.com> | Mon Jul 24 12:33:16 2023 -0700 |
committer | Zhikui Ren <zhikui.ren@intel.com> | Sat Aug 05 01:17:33 2023 +0000 |
tree | c6f86ca46d0bf82106641e053ff90e33fa430597 | |
parent | 85aaf53b017219c34377f1df303dfeb10484bde7 [diff] |
Add meson build support Tested: 1. Project builds with each meson option turned on or off. 2. Unit tests build and pass. 3. On platform FW built with updated recipe (I23fabdf57b8d6ac35c3aea0ece667be118de4b61): a. SMBIOS blob store library is properly picked up by IPMI blob store manager and handles OEM IPMI commands. b. smbiosmdrv2app is running and populates objects on D-Bus. c. cpuinfoapp is running and populates objects on D-Bus. Change-Id: Ie65b281900cc07e7d0145445bcc65bbab1979214 Signed-off-by: Jonathan Doman <jonathan.doman@intel.com>
The main application in this repo is smbiosmdrv2app
, capable of parsing a binary SMBIOS table and publishing the system information on D-Bus, to be consumed by other OpenBMC applications.
The SMBIOS table is usually sent to the BMC by the host firmware (BIOS). The system designer can theoretically choose any transport and mechanism for sending the SMBIOS data, but there are at least two implementation today:
The primary API is a set of Intel OEM IPMI commands called Managed Data Region version 2 (MDRv2), which provides a means for host firmware to send data through the VGA shared memory region. MDRv2 has a concept of multiple agents, each maintaining a "directory" containing directory entries (aka data sets). The host can query for the existence and version of directories to determine when it needs to send an updated SMBIOS table.
intel-ipmi-oem
implements the IPMI command handlers, routing commands and data to the correct agent (e.g. smbios-mdr
). The D-Bus interface between the IPMI handler and smbios-mdr
is largely a mirror of IPMI commands.
phosphor-ipmi-blobs
is an alternative implementation of a generic IPMI blob transfer API. Compared to MDRv2, it is simpler and easier to use, but also transfers the data in-band with the IPMI commands and therefore slower than using a shared memory region (which may or may not be a concern).
phosphor-ipmi-blobs
provides a blob manager shared library for ipmid
which implements the IPMI commands. In turn, it loads blob handler libraries that each implement support for specific blobs. Here in smbios-mdr
we provide such a blob handler for the /smbios
blob. It works by writing the data into /var/lib/smbios/smbios2
(the local persistent cache for the SMBIOS table) and calling the AgentSynchronizeData
D-Bus method to trigger smbios-mdr
to reload and parse the table from that file.
cpuinfoapp
is an Intel-specific application that uses I2C and PECI to gather more details about Xeon CPUs that aren't included in the SMBIOS table for some reason. It also implements discovery and control for Intel Speed Select Technology (SST).