]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
Merge patch series "Implement all missing SMBIOS types required by distro tooling"
authorTom Rini <trini@konsulko.com>
Wed, 18 Feb 2026 14:27:58 +0000 (08:27 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 18 Feb 2026 14:27:58 +0000 (08:27 -0600)
Raymond Mao <raymondmaoca@gmail.com> says:

From: Raymond Mao <raymond.mao@riscstar.com>

This series finish the last missing puzzle of required SMBIOS types by:
1) Fixing duplicated handles when multiple instances exist in one type;
2) Implementing the rest of required types 9/16/17/19;
3) Adding version control when printing properties for all types.

Type 9/16/17/19 are generally DT-based, the idea is to write these tables
using a hybrid approach:
Explicit DT definitions under existing '/smbios/smbios' take precedence,
with fallback to scan and interpret values from the entire DT.

Moreover, all below APIs:
smbios_get_val_si()
smbios_get_u64_si()
smbios_add_prop_si()
are on top of sysinfo, thus allow vendors to get values from other
subsystems by implementing their own sysinfo driver if needed.

Link: https://lore.kernel.org/r/20260213225254.2544596-1-raymondmaoca@gmail.com

Trivial merge