Patrick Venture | 0e9aae5 | 2020-08-13 13:07:09 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | namespace google |
| 4 | { |
| 5 | namespace ipmi |
| 6 | { |
| 7 | |
| 8 | enum 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, |
| 18 | // The Sys pcie slot count command. |
| 19 | SysPcieSlotCount = 4, |
| 20 | // The Sys pcie slot to i2c bus mapping command. |
| 21 | SysPcieSlotI2cBusMapping = 5, |
| 22 | // The Sys "entity id:entity instance" to entity name mapping command. |
| 23 | SysEntityName = 6, |
William A. Kennington III | 29f35bc | 2020-11-03 23:30:31 -0800 | [diff] [blame] | 24 | // Returns the machine name of the image |
| 25 | SysMachineName = 7, |
Shounak Mitra | ac4a16f | 2021-02-02 11:11:44 -0800 | [diff] [blame] | 26 | // Arm for psu reset on host shutdown |
| 27 | SysPsuHardResetOnShutdown = 8, |
Willy Tu | 3b1b427 | 2021-03-02 17:58:10 -0800 | [diff] [blame^] | 28 | // The Sys get flash size command |
| 29 | SysGetFlashSize = 9, |
Patrick Venture | 0e9aae5 | 2020-08-13 13:07:09 -0700 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | } // namespace ipmi |
| 33 | } // namespace google |