diff options
| author | Gabriel L. Somlo <gsomlo@gmail.com> | 2014-04-23 09:42:42 -0400 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-05-05 13:14:48 +0200 |
| commit | c97294ec1b9e36887e119589d456557d72ab37b5 (patch) | |
| tree | d1d93b6d051070f8ae313cc6ce70d4e539465adf /include/hw/i386 | |
| parent | 2e6e8d7a25a6e31dee58226ea7fc374844d69732 (diff) | |
| download | focaccia-qemu-c97294ec1b9e36887e119589d456557d72ab37b5.tar.gz focaccia-qemu-c97294ec1b9e36887e119589d456557d72ab37b5.zip | |
SMBIOS: Build aggregate smbios tables and entry point
Build an aggregate set of smbios tables and an entry point structure. Insert tables and entry point into fw_cfg respectively under "etc/smbios/smbios-tables" and "etc/smbios/smbios-anchor". Machine types <= 2.0 will for now continue using field-by-field overrides to SeaBIOS defaults, but for machine types 2.1 and up we expect the BIOS to look for and use the aggregate tables generated by this patch. Signed-off-by: Gabriel Somlo <somlo@cmu.edu> [ kraxel: fix 32bit build ] Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/hw/i386')
| -rw-r--r-- | include/hw/i386/smbios.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/hw/i386/smbios.h b/include/hw/i386/smbios.h index 3a9361ddfd..6d854b7f1e 100644 --- a/include/hw/i386/smbios.h +++ b/include/hw/i386/smbios.h @@ -18,9 +18,12 @@ #define SMBIOS_MAX_TYPE 127 void smbios_entry_add(QemuOpts *opts); +void smbios_set_cpuid(uint32_t version, uint32_t features); void smbios_set_defaults(const char *manufacturer, const char *product, - const char *version); + const char *version, bool legacy_mode); uint8_t *smbios_get_table_legacy(size_t *length); +void smbios_get_tables(uint8_t **tables, size_t *tables_len, + uint8_t **anchor, size_t *anchor_len); /* * SMBIOS spec defined tables |