Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 1 | #ifndef __HOST_IPMI_SEN_HANDLER_H__ |
| 2 | #define __HOST_IPMI_SEN_HANDLER_H__ |
| 3 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 4 | #include <stdint.h> |
| 5 | |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 6 | // IPMI commands for net functions. |
| 7 | enum ipmi_netfn_sen_cmds |
| 8 | { |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 9 | IPMI_CMD_GET_SENSOR_READING = 0x2D, |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 10 | IPMI_CMD_GET_SENSOR_TYPE = 0x2F, |
| 11 | IPMI_CMD_SET_SENSOR = 0x30, |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 12 | }; |
| 13 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 14 | #define MAX_DBUS_PATH 128 |
| 15 | struct dbus_interface_t { |
| 16 | uint8_t sensornumber; |
| 17 | uint8_t sensortype; |
| 18 | |
| 19 | char bus[MAX_DBUS_PATH]; |
| 20 | char path[MAX_DBUS_PATH]; |
| 21 | char interface[MAX_DBUS_PATH]; |
| 22 | }; |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 23 | |
| 24 | int set_sensor_dbus_state_s(uint8_t , const char *, const char *); |
| 25 | int set_sensor_dbus_state_y(uint8_t , const char *, const uint8_t); |
| 26 | int find_openbmc_path(const char *, const uint8_t , dbus_interface_t *); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 27 | |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 28 | /** |
| 29 | * @struct SetSensorReadingReq |
| 30 | * |
| 31 | * IPMI Request data for Set Sensor Reading and Event Status Command |
| 32 | */ |
| 33 | struct SetSensorReadingReq |
| 34 | { |
| 35 | uint8_t number; |
| 36 | uint8_t operation; |
| 37 | uint8_t reading; |
| 38 | uint8_t assertOffset0_7; |
| 39 | uint8_t assertOffset8_14; |
| 40 | uint8_t deassertOffset0_7; |
| 41 | uint8_t deassertOffset8_14; |
| 42 | uint8_t eventData1; |
| 43 | uint8_t eventData2; |
| 44 | uint8_t eventData3; |
| 45 | } __attribute__((packed)); |
| 46 | |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 47 | #endif |