dmi.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __DMI_H__
  2. #define __DMI_H__
  3. #include <linux/list.h>
  4. enum dmi_field {
  5. DMI_NONE,
  6. DMI_BIOS_VENDOR,
  7. DMI_BIOS_VERSION,
  8. DMI_BIOS_DATE,
  9. DMI_SYS_VENDOR,
  10. DMI_PRODUCT_NAME,
  11. DMI_PRODUCT_VERSION,
  12. DMI_PRODUCT_SERIAL,
  13. DMI_BOARD_VENDOR,
  14. DMI_BOARD_NAME,
  15. DMI_BOARD_VERSION,
  16. DMI_STRING_MAX,
  17. };
  18. enum dmi_device_type {
  19. DMI_DEV_TYPE_ANY = 0,
  20. DMI_DEV_TYPE_OTHER,
  21. DMI_DEV_TYPE_UNKNOWN,
  22. DMI_DEV_TYPE_VIDEO,
  23. DMI_DEV_TYPE_SCSI,
  24. DMI_DEV_TYPE_ETHERNET,
  25. DMI_DEV_TYPE_TOKENRING,
  26. DMI_DEV_TYPE_SOUND,
  27. DMI_DEV_TYPE_IPMI = -1
  28. };
  29. struct dmi_header {
  30. u8 type;
  31. u8 length;
  32. u16 handle;
  33. };
  34. /*
  35.  * DMI callbacks for problem boards
  36.  */
  37. struct dmi_strmatch {
  38. u8 slot;
  39. char *substr;
  40. };
  41. struct dmi_system_id {
  42. int (*callback)(struct dmi_system_id *);
  43. const char *ident;
  44. struct dmi_strmatch matches[4];
  45. void *driver_data;
  46. };
  47. #define DMI_MATCH(a, b) { a, b }
  48. struct dmi_device {
  49. struct list_head list;
  50. int type;
  51. const char *name;
  52. void *device_data; /* Type specific data */
  53. };
  54. #if defined(CONFIG_X86) && !defined(CONFIG_X86_64)
  55. extern int dmi_check_system(struct dmi_system_id *list);
  56. extern char * dmi_get_system_info(int field);
  57. extern struct dmi_device * dmi_find_device(int type, const char *name,
  58. struct dmi_device *from);
  59. #else
  60. static inline int dmi_check_system(struct dmi_system_id *list) { return 0; }
  61. static inline char * dmi_get_system_info(int field) { return NULL; }
  62. static inline struct dmi_device * dmi_find_device(int type, const char *name,
  63. struct dmi_device *from) { return NULL; }
  64. #endif
  65. #endif /* __DMI_H__ */