blob: dcdb68da076f2c49cdc343586c731f1c260fd0b6 [file] [log] [blame]
Williamcb8ac882015-12-31 19:15:17 +08001#ifndef __HOST_IPMI_GLOBAL_HANDLER_H__
2#define __HOST_IPMI_GLOBAL_HANDLER_H__
3
4#include <stdint.h>
5
6// Various GLOBAL operations under a single command.
7enum ipmi_global_control_cmds : uint8_t
8{
Nan Libc759882016-08-22 15:00:21 +08009 IPMI_CMD_COLD_RESET = 0x02,
10 IPMI_CMD_WARM_RESET = 0x03,
Williamcb8ac882015-12-31 19:15:17 +080011};
12
13#endif