1 #pragma once
2 
3 #include <stdint.h>
4 
5 // These are per skiboot ipmi-sel code
6 
7 // Minor command for soft shurdown
8 #define SOFT_OFF 0x00
9 // Major command for Any kind of power ops
10 #define CMD_POWER 0x04
11 // Major command for the heartbeat operation (verify host is alive)
12 #define CMD_HEARTBEAT 0xFF
13