1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/* ----------------------------------------------------------------------- *
*
* Copyright 2006 Erwan Velu - All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, Inc., 53 Temple Place Ste 330,
* Boston MA 02111-1307, USA; either version 2 of the License, or
* (at your option) any later version; incorporated herein by reference.
*
* ----------------------------------------------------------------------- */
#ifndef DMI_H
#define DMI_H
#include <inttypes.h>
#define MAX_DMI_MEMORY_ITEMS 32
#define PAGE_SIZE 4096
extern const char *out_of_spec;
extern const char *bad_index;
#define WORD(x) (uint16_t)(*(const uint16_t *)(x))
#define DWORD(x) (uint32_t)(*(const uint32_t *)(x))
#define QWORD(x) (*(const uint64_t *)(x))
enum {DMI_TABLE_PRESENT = 100, ENODMITABLE};
#include "dmi_bios.h"
#include "dmi_system.h"
#include "dmi_base_board.h"
#include "dmi_chassis.h"
#include "dmi_processor.h"
#include "dmi_memory.h"
#include "dmi_battery.h"
#include "dmi_ipmi.h"
extern char display_line;
#define moreprintf(...) do { display_line++; if (display_line == 24) { char tempbuf[10]; display_line=0; printf("Press enter to continue"); fgets(tempbuf, sizeof tempbuf, stdin);} printf ( __VA_ARGS__); } while (0);
typedef struct {
uint16_t num;
uint16_t len;
uint16_t ver;
uint32_t base;
uint16_t major_version;
uint16_t minor_version;
} dmi_table;
struct dmi_header
{
uint8_t type;
uint8_t length;
uint16_t handle;
uint8_t *data;
};
typedef struct {
s_bios bios;
s_system system;
s_base_board base_board;
s_chassis chassis;
s_processor processor;
s_battery battery;
s_memory memory[MAX_DMI_MEMORY_ITEMS];
s_ipmi ipmi;
int memory_count;
dmi_table dmitable;
} s_dmi;
void to_dmi_header(struct dmi_header *h, uint8_t *data);
void dmi_bios_runtime_size(uint32_t code, s_dmi *dmi);
const char *dmi_string(struct dmi_header *dm, uint8_t s);
int dmi_checksum(uint8_t *buf);
void parse_dmitable(s_dmi *dmi);
void dmi_decode(struct dmi_header *h, uint16_t ver, s_dmi *dmi);
int dmi_iterate(s_dmi *dmi);
/* dmi_utils.c */
void display_bios_characteristics(s_dmi *dmi);
void display_base_board_features(s_dmi *dmi);
void display_processor_flags(s_dmi *dmi);
#endif
|