summaryrefslogtreecommitdiff
path: root/com32/include/dmi/dmi.h
blob: 5e72b82c39b8b09cd9ac86883b88564e5ea819eb (plain)
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
/* ----------------------------------------------------------------------- *
 *
 *   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

#define u32 unsigned int  
#define u16 unsigned short
#define u8  unsigned char
#define PAGE_SIZE 4096

typedef struct {
        u32 l;
        u32 h;
} u64;

static const char *out_of_spec = "<OUT OF SPEC>";
static const char *bad_index = "<BAD INDEX>";

#define WORD(x) (u16)(*(const u16 *)(x))
#define DWORD(x) (u32)(*(const u32 *)(x))
#define QWORD(x) (*(const u64 *)(x))

#include "dmi_bios.h"
#include "dmi_system.h"
#include "dmi_base_board.h"
#include "dmi_chassis.h"
#include "dmi_processor.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 {
u16 num;
u16 len;
u16 ver;
u32 base;
} dmi_table;

static dmi_table dmitable;


struct dmi_header
{
        u8 type;
        u8 length;
        u16 handle;
        u8 *data;
};

typedef struct {
	 s_bios bios;
	 s_system system;
	 s_base_board base_board;
	 s_chassis chassis;
	 s_processor processor;
} s_dmi;

void to_dmi_header(struct dmi_header *h, u8 *data);
void dmi_bios_runtime_size(u32 code, s_dmi *dmi);
const char *dmi_string(struct dmi_header *dm, u8 s);
inline int dmi_checksum(u8 *buf);
void parse_dmitable(s_dmi *dmi);
void dmi_decode(struct dmi_header *h, u16 ver, s_dmi *dmi);
int dmi_interate();

/* 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