[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 6/7] SMBIOS: Build full tables for types 0 and 1
From: |
Gabriel L. Somlo |
Subject: |
[Qemu-devel] [PATCH 6/7] SMBIOS: Build full tables for types 0 and 1 |
Date: |
Sat, 8 Mar 2014 22:05:17 -0500 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
If defaults are set by piix or q35, or fields are given on the
command line, build full smbios tables for types 0 and 1 instead
of sending individual fields to the BIOS via fw_cfg.
Signed-off-by: Gabriel Somlo <address@hidden>
---
hw/i386/smbios.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
diff --git a/hw/i386/smbios.c b/hw/i386/smbios.c
index 9679e06..e7df372 100644
--- a/hw/i386/smbios.c
+++ b/hw/i386/smbios.c
@@ -352,6 +352,62 @@ static void smbios_build_type_1_fields(void)
}
}
+static void smbios_build_type_0_table(void)
+{
+ SMBIOS_BUILD_TABLE_PRE(0, 0x000, true); /* required */
+
+ SMBIOS_TABLE_SET_STR(0, vendor_str, type0.vendor);
+ SMBIOS_TABLE_SET_STR(0, bios_version_str, type0.version);
+
+ t->bios_starting_address_segment = 0xE800; /* hardcoded in SeaBIOS */
+
+ SMBIOS_TABLE_SET_STR(0, bios_release_date_str, type0.date);
+
+ t->bios_rom_size = 0; /* hardcoded in SeaBIOS with FIXME comment */
+
+ /* BIOS characteristics not supported */
+ memset(t->bios_characteristics, 0, 8);
+ t->bios_characteristics[0] = 0x08;
+
+ /* Enable targeted content distribution (needed for SVVP, per SeaBIOS) */
+ t->bios_characteristics_extension_bytes[0] = 0;
+ t->bios_characteristics_extension_bytes[1] = 4;
+
+ if (type0.have_major_minor) {
+ t->system_bios_major_release = type0.major;
+ t->system_bios_minor_release = type0.minor;
+ } else {
+ t->system_bios_major_release = 0;
+ t->system_bios_minor_release = 0;
+ }
+
+ /* hardcoded in SeaBIOS */
+ t->embedded_controller_major_release = 0xFF;
+ t->embedded_controller_minor_release = 0xFF;
+
+ SMBIOS_BUILD_TABLE_POST;
+}
+
+static void smbios_build_type_1_table(void)
+{
+ SMBIOS_BUILD_TABLE_PRE(1, 0x100, true); /* required */
+
+ SMBIOS_TABLE_SET_STR(1, manufacturer_str, type1.manufacturer);
+ SMBIOS_TABLE_SET_STR(1, product_name_str, type1.product);
+ SMBIOS_TABLE_SET_STR(1, version_str, type1.version);
+ SMBIOS_TABLE_SET_STR(1, serial_number_str, type1.serial);
+ if (qemu_uuid_set) {
+ memcpy(t->uuid, qemu_uuid, 16);
+ } else {
+ memset(t->uuid, 0, 16);
+ }
+ t->wake_up_type = 0x06; /* power switch */
+ SMBIOS_TABLE_SET_STR(1, sku_number_str, type1.sku);
+ SMBIOS_TABLE_SET_STR(1, family_str, type1.family);
+
+ SMBIOS_BUILD_TABLE_POST;
+}
+
static void smbios_build_type_2_table(void)
{
SMBIOS_BUILD_TABLE_PRE(2, 0x200, false); /* optional */
@@ -379,6 +435,9 @@ void smbios_set_defaults(const char *manufacturer,
const char *product, const char *version)
{
smbios_build_tables = true;
+ SMBIOS_SET_DEFAULT(type0.vendor, manufacturer);
+ SMBIOS_SET_DEFAULT(type0.version, version);
+ SMBIOS_SET_DEFAULT(type0.date, "01/01/2014");
SMBIOS_SET_DEFAULT(type1.manufacturer, manufacturer);
SMBIOS_SET_DEFAULT(type1.product, product);
SMBIOS_SET_DEFAULT(type1.version, version);
@@ -390,9 +449,13 @@ void smbios_set_defaults(const char *manufacturer,
uint8_t *smbios_get_table(size_t *length)
{
if (!smbios_immutable) {
+ smbios_build_type_0_table();
+ smbios_build_type_1_table();
smbios_build_type_2_table();
+if (false) { /* shut up gcc until we remove deprecated code */
smbios_build_type_0_fields();
smbios_build_type_1_fields();
+}
smbios_validate_table();
smbios_immutable = true;
}
--
1.8.1.4
- Re: [Qemu-devel] [PATCH 2/2 (RFC)] QEMU: SMBIOS: Build full smbios tables, (continued)
- Re: [Qemu-devel] [PATCH 2/2 (RFC)] QEMU: SMBIOS: Build full smbios tables, Gabriel L. Somlo, 2014/03/05
- Re: [Qemu-devel] [PATCH 2/2 (RFC)] QEMU: SMBIOS: Build full smbios tables, Gerd Hoffmann, 2014/03/06
- Re: [Qemu-devel] [PATCH 2/2 (RFC)] QEMU: SMBIOS: Build full smbios tables, Gabriel L. Somlo, 2014/03/06
- Re: [Qemu-devel] [PATCH 2/2 (RFC)] QEMU: SMBIOS: Build full smbios tables, Laszlo Ersek, 2014/03/06
- Re: [Qemu-devel] QEMU: SMBIOS: Build full smbios tables, Gabriel L. Somlo, 2014/03/08
- [Qemu-devel] [PATCH 1/7] SMBIOS: Update all table definitions to smbios spec v2.3, Gabriel L. Somlo, 2014/03/08
- [Qemu-devel] [PATCH 2/7] SMBIOS: Rename smbios_set_type1_defaults() for more general use, Gabriel L. Somlo, 2014/03/08
- [Qemu-devel] [PATCH 3/7] SMBIOS: Streamline setting smbios defaults with macro, Gabriel L. Somlo, 2014/03/08
- [Qemu-devel] [PATCH 4/7] SMBIOS: Replace type collision check mechanism with bitmaps, Gabriel L. Somlo, 2014/03/08
- [Qemu-devel] [PATCH 5/7] SMBIOS: Add code to build full smbios tables, Gabriel L. Somlo, 2014/03/08
- [Qemu-devel] [PATCH 6/7] SMBIOS: Build full tables for types 0 and 1,
Gabriel L. Somlo <=
- [Qemu-devel] [PATCH 7/7] SMBIOS: Remove unused code for passing individual fields to bios, Gabriel L. Somlo, 2014/03/08