2005-04-16 22:20:36 +00:00
|
|
|
#ifndef __DMI_H__
|
|
|
|
#define __DMI_H__
|
|
|
|
|
2005-09-06 22:18:29 +00:00
|
|
|
#include <linux/list.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
enum dmi_field {
|
|
|
|
DMI_NONE,
|
|
|
|
DMI_BIOS_VENDOR,
|
|
|
|
DMI_BIOS_VERSION,
|
|
|
|
DMI_BIOS_DATE,
|
|
|
|
DMI_SYS_VENDOR,
|
|
|
|
DMI_PRODUCT_NAME,
|
|
|
|
DMI_PRODUCT_VERSION,
|
2005-06-25 21:54:25 +00:00
|
|
|
DMI_PRODUCT_SERIAL,
|
2007-05-08 20:07:02 +00:00
|
|
|
DMI_PRODUCT_UUID,
|
2005-04-16 22:20:36 +00:00
|
|
|
DMI_BOARD_VENDOR,
|
|
|
|
DMI_BOARD_NAME,
|
|
|
|
DMI_BOARD_VERSION,
|
2007-05-08 20:07:02 +00:00
|
|
|
DMI_BOARD_SERIAL,
|
|
|
|
DMI_BOARD_ASSET_TAG,
|
|
|
|
DMI_CHASSIS_VENDOR,
|
|
|
|
DMI_CHASSIS_TYPE,
|
|
|
|
DMI_CHASSIS_VERSION,
|
|
|
|
DMI_CHASSIS_SERIAL,
|
|
|
|
DMI_CHASSIS_ASSET_TAG,
|
2005-04-16 22:20:36 +00:00
|
|
|
DMI_STRING_MAX,
|
|
|
|
};
|
|
|
|
|
2005-09-06 22:18:29 +00:00
|
|
|
enum dmi_device_type {
|
|
|
|
DMI_DEV_TYPE_ANY = 0,
|
|
|
|
DMI_DEV_TYPE_OTHER,
|
|
|
|
DMI_DEV_TYPE_UNKNOWN,
|
|
|
|
DMI_DEV_TYPE_VIDEO,
|
|
|
|
DMI_DEV_TYPE_SCSI,
|
|
|
|
DMI_DEV_TYPE_ETHERNET,
|
|
|
|
DMI_DEV_TYPE_TOKENRING,
|
|
|
|
DMI_DEV_TYPE_SOUND,
|
2006-09-29 08:59:37 +00:00
|
|
|
DMI_DEV_TYPE_IPMI = -1,
|
|
|
|
DMI_DEV_TYPE_OEM_STRING = -2
|
2005-09-06 22:18:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct dmi_header {
|
|
|
|
u8 type;
|
|
|
|
u8 length;
|
|
|
|
u16 handle;
|
|
|
|
};
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* DMI callbacks for problem boards
|
|
|
|
*/
|
|
|
|
struct dmi_strmatch {
|
|
|
|
u8 slot;
|
|
|
|
char *substr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dmi_system_id {
|
2007-10-03 19:15:40 +00:00
|
|
|
int (*callback)(const struct dmi_system_id *);
|
2005-09-06 22:18:29 +00:00
|
|
|
const char *ident;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct dmi_strmatch matches[4];
|
|
|
|
void *driver_data;
|
|
|
|
};
|
|
|
|
|
2005-09-06 22:18:29 +00:00
|
|
|
#define DMI_MATCH(a, b) { a, b }
|
|
|
|
|
|
|
|
struct dmi_device {
|
|
|
|
struct list_head list;
|
|
|
|
int type;
|
|
|
|
const char *name;
|
|
|
|
void *device_data; /* Type specific data */
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-01-11 21:43:33 +00:00
|
|
|
#ifdef CONFIG_DMI
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-10-03 19:15:40 +00:00
|
|
|
extern int dmi_check_system(const struct dmi_system_id *list);
|
|
|
|
extern const char * dmi_get_system_info(int field);
|
|
|
|
extern const struct dmi_device * dmi_find_device(int type, const char *name,
|
|
|
|
const struct dmi_device *from);
|
2006-01-11 21:43:33 +00:00
|
|
|
extern void dmi_scan_machine(void);
|
2006-03-25 15:30:19 +00:00
|
|
|
extern int dmi_get_year(int field);
|
2007-10-03 19:15:40 +00:00
|
|
|
extern int dmi_name_in_vendors(const char *str);
|
2006-01-11 21:43:33 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#else
|
|
|
|
|
2007-10-03 19:15:40 +00:00
|
|
|
static inline int dmi_check_system(const struct dmi_system_id *list) { return 0; }
|
|
|
|
static inline const char * dmi_get_system_info(int field) { return NULL; }
|
|
|
|
static inline const struct dmi_device * dmi_find_device(int type, const char *name,
|
|
|
|
const struct dmi_device *from) { return NULL; }
|
2006-03-25 15:30:19 +00:00
|
|
|
static inline int dmi_get_year(int year) { return 0; }
|
2007-10-03 19:15:40 +00:00
|
|
|
static inline int dmi_name_in_vendors(const char *s) { return 0; }
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __DMI_H__ */
|