Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 1 | #pragma once |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 2 | |
Patrick Venture | 1f4bc1f | 2018-09-12 13:30:16 -0700 | [diff] [blame] | 3 | #include <cstdint> |
| 4 | |
Adriana Kobylak | 8e30f2a | 2015-10-20 10:23:51 -0500 | [diff] [blame] | 5 | // IPMI commands for Storage net functions. |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 6 | enum ipmi_netfn_storage_cmds |
| 7 | { |
| 8 | // Get capability bits |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 9 | IPMI_CMD_GET_FRU_INV_AREA_INFO = 0x10, |
Dhruvaraj Subhashchandran | e66c3b0 | 2018-02-07 01:21:56 -0600 | [diff] [blame] | 10 | IPMI_CMD_GET_REPOSITORY_INFO = 0x20, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 11 | IPMI_CMD_READ_FRU_DATA = 0x11, |
| 12 | IPMI_CMD_RESERVE_SDR = 0x22, |
| 13 | IPMI_CMD_GET_SDR = 0x23, |
| 14 | IPMI_CMD_GET_SEL_INFO = 0x40, |
| 15 | IPMI_CMD_RESERVE_SEL = 0x42, |
| 16 | IPMI_CMD_GET_SEL_ENTRY = 0x43, |
| 17 | IPMI_CMD_ADD_SEL = 0x44, |
| 18 | IPMI_CMD_DELETE_SEL = 0x46, |
| 19 | IPMI_CMD_CLEAR_SEL = 0x47, |
| 20 | IPMI_CMD_GET_SEL_TIME = 0x48, |
| 21 | IPMI_CMD_SET_SEL_TIME = 0x49, |
Chris Austen | b4f5b92 | 2015-10-13 12:44:43 -0500 | [diff] [blame] | 22 | |
| 23 | }; |