blob: c30175e8dec67fa39f7a7fb1bf753f4fa40d0dda [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __DMI_H__
2#define __DMI_H__
3
Andrey Paninebad6a42005-09-06 15:18:29 -07004#include <linux/list.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006enum dmi_field {
7 DMI_NONE,
8 DMI_BIOS_VENDOR,
9 DMI_BIOS_VERSION,
10 DMI_BIOS_DATE,
11 DMI_SYS_VENDOR,
12 DMI_PRODUCT_NAME,
13 DMI_PRODUCT_VERSION,
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070014 DMI_PRODUCT_SERIAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 DMI_BOARD_VENDOR,
16 DMI_BOARD_NAME,
17 DMI_BOARD_VERSION,
18 DMI_STRING_MAX,
19};
20
Andrey Paninebad6a42005-09-06 15:18:29 -070021enum dmi_device_type {
22 DMI_DEV_TYPE_ANY = 0,
23 DMI_DEV_TYPE_OTHER,
24 DMI_DEV_TYPE_UNKNOWN,
25 DMI_DEV_TYPE_VIDEO,
26 DMI_DEV_TYPE_SCSI,
27 DMI_DEV_TYPE_ETHERNET,
28 DMI_DEV_TYPE_TOKENRING,
29 DMI_DEV_TYPE_SOUND,
30 DMI_DEV_TYPE_IPMI = -1
31};
32
33struct dmi_header {
34 u8 type;
35 u8 length;
36 u16 handle;
37};
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * DMI callbacks for problem boards
41 */
42struct dmi_strmatch {
43 u8 slot;
44 char *substr;
45};
46
47struct dmi_system_id {
48 int (*callback)(struct dmi_system_id *);
Andrey Paninebad6a42005-09-06 15:18:29 -070049 const char *ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct dmi_strmatch matches[4];
51 void *driver_data;
52};
53
Andrey Paninebad6a42005-09-06 15:18:29 -070054#define DMI_MATCH(a, b) { a, b }
55
56struct dmi_device {
57 struct list_head list;
58 int type;
59 const char *name;
60 void *device_data; /* Type specific data */
61};
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#if defined(CONFIG_X86) && !defined(CONFIG_X86_64)
64
65extern int dmi_check_system(struct dmi_system_id *list);
66extern char * dmi_get_system_info(int field);
Andrey Paninebad6a42005-09-06 15:18:29 -070067extern struct dmi_device * dmi_find_device(int type, const char *name,
68 struct dmi_device *from);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#else
70
71static inline int dmi_check_system(struct dmi_system_id *list) { return 0; }
72static inline char * dmi_get_system_info(int field) { return NULL; }
Andrey Paninebad6a42005-09-06 15:18:29 -070073static struct dmi_device * dmi_find_device(int type, const char *name,
74 struct dmi_device *from) { return NULL; }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#endif
77
78#endif /* __DMI_H__ */