com_IPMI_Bridge.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. * IPMI_Bridge.h
  17. * Bridge Command numbers
  18. *
  19. *****************************************************************/
  20. #ifndef IPMI_BRIDGE_H
  21. #define IPMI_BRIDGE_H
  22. /*** Bridge Management Commands ***/
  23. #define CMD_GET_BRIDGE_STATE 0x00
  24. #define CMD_SET_BRIDGE_STATE 0x01
  25. #define CMD_GET_ICMB_ADDR 0x02
  26. #define CMD_SET_ICMB_ADDR 0x03
  27. #define CMD_SET_BRIDGE_PROXY_ADDR 0x04
  28. #define CMD_GET_BRIDGE_STATISTICS 0x05
  29. #define CMD_GET_ICMB_CAPABILITIES 0x06
  30. #define CMD_CLEAR_BRIDGE_STATISTICS 0x08
  31. #define CMD_GET_BRIDGE_PROXY_ADDR 0x09
  32. #define CMD_GET_ICMB_CONNECTOR_INFO 0x0A
  33. #define CMD_GET_ICMB_CONNECTION_ID 0x0B
  34. #define CMD_SEND_ICMB_CONNECTION_ID 0x0C
  35. /*** Bridge Discovery Commands ***/
  36. #define CMD_PREPARE_FOR_DISCOVERY 0x10
  37. #define CMD_GET_ADDRESSES 0x11
  38. #define CMD_SET_DISCOVERED 0x12
  39. #define CMD_GET_CHASSIS_DEVICE_ID 0x13
  40. #define CMD_SET_CHASSIS_DEVICE_ID 0x14
  41. /*** Bridging Commands ***/
  42. #define CMD_BRIDGE_REQUEST 0x20
  43. #define CMD_BRIDGE_MESSAGE 0x21
  44. /*** Bridge Event Commands ***/
  45. #define CMD_GET_EVENT_COUNT 0x30
  46. #define CMD_SET_EVENT_DESTINATION 0x31
  47. #define CMD_SET_EVENT_RECEPTION_STATE 0x32
  48. #define CMD_SEND_ICMB_EVENT_MESSAGE 0x33
  49. #define CMD_GET_EVENT_DESTINATION 0x34
  50. #define CMD_GET_EVENT_RECEPTION_STATE 0x35
  51. #endif /* IPMI_BRIDGE_H*/