blob: f1cfccf8c1df01b68a276e6b83f55515af873956 [file] [log] [blame]
Patrick Venture4d49ae62018-09-17 11:35:32 -07001#pragma once
2
3namespace google
4{
5namespace ipmi
6{
7
8enum SysOEMCommands
9{
10 // The Sys cable check command.
11 SysCableCheck = 0,
12 // The Sys cpld version over ipmi command.
13 SysCpldVersion = 1,
14 // The Sys get eth device command.
15 SysGetEthDevice = 2,
16 // The Sys psu hard reset command.
17 SysPsuHardReset = 3,
Jaghathiswari Rankappagounder Natarajan2d4836d2018-11-29 14:16:39 -080018 // The Sys pcie slot count command.
19 SysPcieSlotCount = 4,
20 // The Sys pcie slot to i2c bus mapping command.
21 SysPcieSlotI2cBusMapping = 5,
Patrick Venture4d49ae62018-09-17 11:35:32 -070022};
23
24} // namespace ipmi
25} // namespace google