diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-06-30 19:34:42 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-06-30 19:34:42 +0200 |
commit | b35215f7ecd801ec656a4eb669f33f658cd48868 (patch) | |
tree | 47d47e669560afd051899d5448387310f1c44495 /dmidecode.h | |
parent | 97666ba6a97a8cd777faddc444389d1ccf7e1d62 (diff) | |
parent | 4461f1524993be7dfae48ed620c13d52bb6ae4ad (diff) |
Update upstream source from tag 'upstream/3.4'
Update to upstream version '3.4'
with Debian dir 72758ab4bbe442d3276b9ba6fafd9a4c644bc480
Diffstat (limited to 'dmidecode.h')
-rw-r--r-- | dmidecode.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dmidecode.h b/dmidecode.h index 1dc59a7..318cdc6 100644 --- a/dmidecode.h +++ b/dmidecode.h @@ -31,7 +31,23 @@ struct dmi_header u8 *data; }; +enum cpuid_type +{ + cpuid_none, + cpuid_80386, + cpuid_80486, + cpuid_arm_legacy, + cpuid_arm_soc_id, + cpuid_x86_intel, + cpuid_x86_amd, +}; + +extern enum cpuid_type cpuid_type; + int is_printable(const u8 *data, int len); const char *dmi_string(const struct dmi_header *dm, u8 s); +void dmi_print_memory_size(const char *addr, u64 code, int shift); +void dmi_print_cpuid(void (*print_cb)(const char *name, const char *format, ...), + const char *label, enum cpuid_type sig, const u8 *p); #endif |