com_IPMI_Storage.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /****************************************************************
  2. ****************************************************************
  3. ** **
  4. ** (C)Copyright 2005-2006, American Megatrends Inc. **
  5. ** **
  6. ** All Rights Reserved. **
  7. ** **
  8. ** 6145-F, Northbelt Parkway, Norcross, **
  9. ** **
  10. ** Georgia - 30071, USA. Phone-(770)-246-8600. **
  11. ** **
  12. ****************************************************************
  13. ****************************************************************
  14. ****************************************************************
  15. *
  16. * Storage.h
  17. * Storage Command numbers
  18. *
  19. *****************************************************************/
  20. #ifndef IPMI_STORAGE_H
  21. #define IPMI_STORAGE_H
  22. /*** FRU Information commands ***/
  23. #define CMD_FRU_INVENTORY_AREA_INFO 0x10
  24. #define CMD_READ_FRU_DATA 0x11
  25. #define CMD_WRITE_FRU_DATA 0x12
  26. /*** SDR Repository commands ***/
  27. #define CMD_GET_SDR_REPOSITORY_INFO 0x20
  28. #define CMD_GET_SDR_REPOSITORY_ALLOCATION_INFO 0x21
  29. #define CMD_RESERVE_SDR_REPOSITORY 0x22
  30. #define CMD_GET_SDR 0x23
  31. #define CMD_ADD_SDR 0x24
  32. #define CMD_PARTIAL_ADD_SDR 0x25
  33. #define CMD_DELETE_SDR 0x26
  34. #define CMD_CLEAR_SDR_REPOSITORY 0x27
  35. #define CMD_GET_SDR_REPOSITORY_TIME 0x28
  36. #define CMD_SET_SDR_REPOSITORY_TIME 0x29
  37. #define CMD_ENTER_SDR_REPOSITORY_UPDATE_MODE 0x2A
  38. #define CMD_EXIT_SDR_REPOSITORY_UPDATE_MODE 0x2B
  39. #define CMD_RUN_INITIALIZATION_AGENT 0x2C
  40. /*** SEL commands ***/
  41. #define CMD_GET_SEL_INFO 0x40
  42. #define CMD_GET_SEL_ALLOCATION_INFO 0x41
  43. #define CMD_RESERVE_SEL 0x42
  44. #define CMD_GET_SEL_ENTRY 0x43
  45. #define CMD_ADD_SEL_ENTRY 0x44
  46. #define CMD_PARTIAL_ADD_SEL_ENTRY 0x45
  47. #define CMD_DELETE_SEL_ENTRY 0x46
  48. #define CMD_CLEAR_SEL 0x47
  49. #define CMD_GET_SEL_TIME 0x48
  50. #define CMD_SET_SEL_TIME 0x49
  51. #define CMD_GET_AUXILIARY_LOG_STATUS 0x5A
  52. #define CMD_SET_AUXILIARY_LOG_STATUS 0x5B
  53. #define CMD_GET_SEL_TIME_UTC_OFFSET 0x5C
  54. #define CMD_SET_SEL_TIME_UTC_OFFSET 0x5D
  55. #endif /* IPMI_STORAGE_H */