blob: e47b4a1aa70beb9b03521f4e3681f11886bae21f [file] [log] [blame]
Adriana Kobylak40814c62015-10-27 15:58:44 -05001#ifndef __HOST_IPMI_CHASSIS_HANDLER_H__
2#define __HOST_IPMI_CHASSIS_HANDLER_H__
3
vishwa36993272015-11-20 12:43:49 -06004#include <stdint.h>
Ratan Guptafd28dd72016-08-01 04:58:01 -05005#include <cstddef>
vishwa36993272015-11-20 12:43:49 -06006
Adriana Kobylak40814c62015-10-27 15:58:44 -05007// IPMI commands for Chassis net functions.
8enum ipmi_netfn_app_cmds
9{
vishwa36993272015-11-20 12:43:49 -060010 // Chassis Control
11 IPMI_CMD_CHASSIS_CONTROL = 0x02,
Adriana Kobylak40814c62015-10-27 15:58:44 -050012 // Get capability bits
shgoupfd84fbbf2015-12-17 10:05:51 +080013 IPMI_CMD_SET_SYS_BOOT_OPTIONS = 0x08,
Adriana Kobylak40814c62015-10-27 15:58:44 -050014 IPMI_CMD_GET_SYS_BOOT_OPTIONS = 0x09,
15};
16
17// Command specific completion codes
18enum ipmi_chassis_return_codes
19{
shgoupfd84fbbf2015-12-17 10:05:51 +080020 IPMI_OK = 0x0,
Adriana Kobylak40814c62015-10-27 15:58:44 -050021 IPMI_CC_PARM_NOT_SUPPORTED = 0x80,
22};
23
shgoupfd84fbbf2015-12-17 10:05:51 +080024// Generic completion codes,
25// see IPMI doc section 5.2
26enum ipmi_generic_return_codes
27{
28 IPMI_OUT_OF_SPACE = 0xC4,
29};
30
vishwa36993272015-11-20 12:43:49 -060031// Various Chassis operations under a single command.
32enum ipmi_chassis_control_cmds : uint8_t
33{
34 CMD_POWER_OFF = 0x00,
35 CMD_POWER_ON = 0x01,
36 CMD_POWER_CYCLE = 0x02,
37 CMD_HARD_RESET = 0x03,
38 CMD_PULSE_DIAGNOSTIC_INTR = 0x04,
39 CMD_SOFT_OFF_VIA_OVER_TEMP = 0x05,
40};
Ratan Guptafd28dd72016-08-01 04:58:01 -050041enum class BootOptionParameter : size_t
42{
43 BOOT_FLAGS = 0x5,
44 OPAL_NETWORK_SETTINGS = 0x61
45};
46
47enum class BootOptionResponseSize : size_t
48{
49 BOOT_FLAGS = 5,
50 OPAL_NETWORK_SETTINGS = 26
51};
vishwa36993272015-11-20 12:43:49 -060052
Adriana Kobylak40814c62015-10-27 15:58:44 -050053#endif