blob: 1401c55eecb1ab2664b2dd1d8a12d1ab4d497086 [file] [log] [blame]
Patrick Venture46470a32018-09-07 19:26:25 -07001#include "sensorhandler.hpp"
2
Patrick Venture0b02be92018-08-31 11:55:55 -07003#include <malloc.h>
Patrick Venture0b02be92018-08-31 11:55:55 -07004
Emily Shaffer391f3302017-04-03 10:27:08 -07005extern uint8_t find_type_for_sensor_number(uint8_t);
Chris Austen0130d6e2015-10-15 22:32:36 -05006
Patrick Venture0b02be92018-08-31 11:55:55 -07007struct sensorRES_t
8{
9 uint8_t sensor_number;
10 uint8_t operation;
11 uint8_t sensor_reading;
12 uint8_t assert_state7_0;
13 uint8_t assert_state14_8;
14 uint8_t deassert_state7_0;
15 uint8_t deassert_state14_8;
16 uint8_t event_data1;
17 uint8_t event_data2;
18 uint8_t event_data3;
19} __attribute__((packed));
Chris Austen0130d6e2015-10-15 22:32:36 -050020
Patrick Venture0b02be92018-08-31 11:55:55 -070021#define ISBITSET(x, y) (((x) >> (y)) & 0x01)
Chris Austen8a45e7c2015-10-15 00:31:46 -050022#define ASSERTINDEX 0
23#define DEASSERTINDEX 1
24
Patrick Venture0b02be92018-08-31 11:55:55 -070025// Sensor Type, Offset, function handler, Dbus Method, Assert value, Deassert
26// value
27struct lookup_t
28{
29 uint8_t sensor_type;
30 uint8_t offset;
31 int (*func)(const sensorRES_t*, const lookup_t*, const char*);
32 char member[16];
33 char assertion[64];
34 char deassertion[64];
Chris Austen8a45e7c2015-10-15 00:31:46 -050035};
36
Patrick Venture0b02be92018-08-31 11:55:55 -070037extern int updateDbusInterface(uint8_t, const char*, const char*);
Chris Austen0130d6e2015-10-15 22:32:36 -050038
Patrick Venture0b02be92018-08-31 11:55:55 -070039int set_sensor_dbus_state_simple(const sensorRES_t* pRec,
40 const lookup_t* pTable, const char* value)
41{
Patrick Venture0b02be92018-08-31 11:55:55 -070042 return set_sensor_dbus_state_s(pRec->sensor_number, pTable->member, value);
Chris Austen0130d6e2015-10-15 22:32:36 -050043}
44
Patrick Venture0b02be92018-08-31 11:55:55 -070045struct event_data_t
46{
47 uint8_t data;
48 char text[64];
Chris Austen0130d6e2015-10-15 22:32:36 -050049};
50
Patrick Venture0b02be92018-08-31 11:55:55 -070051event_data_t g_fwprogress02h[] = {{0x00, "Unspecified"},
52 {0x01, "Memory Init"},
53 {0x02, "HD Init"},
54 {0x03, "Secondary Proc Init"},
55 {0x04, "User Authentication"},
56 {0x05, "User init system setup"},
57 {0x06, "USB configuration"},
58 {0x07, "PCI configuration"},
59 {0x08, "Option ROM Init"},
60 {0x09, "Video Init"},
61 {0x0A, "Cache Init"},
62 {0x0B, "SM Bus init"},
63 {0x0C, "Keyboard Init"},
64 {0x0D, "Embedded ctrl init"},
65 {0x0E, "Docking station attachment"},
66 {0x0F, "Enable docking station"},
67 {0x10, "Docking station ejection"},
68 {0x11, "Disabling docking station"},
69 {0x12, "Calling OS Wakeup"},
70 {0x13, "Starting OS"},
71 {0x14, "Baseboard Init"},
72 {0x15, ""},
73 {0x16, "Floppy Init"},
74 {0x17, "Keyboard Test"},
75 {0x18, "Pointing Device Test"},
76 {0x19, "Primary Proc Init"},
77 {0xFF, "Unknown"}};
Chris Austen0130d6e2015-10-15 22:32:36 -050078
Chris Austend7cf0e42015-11-07 14:27:12 -060079event_data_t g_fwprogress00h[] = {
Patrick Venture0b02be92018-08-31 11:55:55 -070080 {0x00, "Unspecified."},
81 {0x01, "No system memory detected"},
82 {0x02, "No usable system memory"},
83 {0x03, "Unrecoverable hard-disk/ATAPI/IDE"},
84 {0x04, "Unrecoverable system-board"},
85 {0x05, "Unrecoverable diskette"},
86 {0x06, "Unrecoverable hard-disk controller"},
87 {0x07, "Unrecoverable PS/2 or USB keyboard"},
88 {0x08, "Removable boot media not found"},
89 {0x09, "Unrecoverable video controller"},
90 {0x0A, "No video device detected"},
91 {0x0B, "Firmware ROM corruption detected"},
92 {0x0C, "CPU voltage mismatch"},
93 {0x0D, "CPU speed matching"},
94 {0xFF, "unknown"},
Chris Austend7cf0e42015-11-07 14:27:12 -060095};
Chris Austen0130d6e2015-10-15 22:32:36 -050096
Patrick Venture0b02be92018-08-31 11:55:55 -070097char* event_data_lookup(event_data_t* p, uint8_t b)
98{
Patrick Venture0b02be92018-08-31 11:55:55 -070099 while (p->data != 0xFF)
100 {
101 if (p->data == b)
102 {
103 break;
104 }
105 p++;
106 }
Chris Austen0130d6e2015-10-15 22:32:36 -0500107
Patrick Venture0b02be92018-08-31 11:55:55 -0700108 return p->text;
Chris Austen0130d6e2015-10-15 22:32:36 -0500109}
Chris Austend7cf0e42015-11-07 14:27:12 -0600110
Patrick Venture0b02be92018-08-31 11:55:55 -0700111// The fw progress sensor contains some additional information that needs to be
112// processed prior to calling the dbus code.
113int set_sensor_dbus_state_fwprogress(const sensorRES_t* pRec,
Willy Tu11d68892022-01-20 10:37:34 -0800114 const lookup_t* pTable, const char*)
Patrick Venture0b02be92018-08-31 11:55:55 -0700115{
Patrick Venture0b02be92018-08-31 11:55:55 -0700116 char valuestring[128];
117 char* p = valuestring;
Chris Austend7cf0e42015-11-07 14:27:12 -0600118
Patrick Venture0b02be92018-08-31 11:55:55 -0700119 switch (pTable->offset)
120 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700121 case 0x00:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700122 std::snprintf(
123 p, sizeof(valuestring), "POST Error, %s",
124 event_data_lookup(g_fwprogress00h, pRec->event_data2));
Patrick Venture0b02be92018-08-31 11:55:55 -0700125 break;
126 case 0x01: /* Using g_fwprogress02h for 0x01 because that's what the
127 ipmi spec says to do */
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700128 std::snprintf(
129 p, sizeof(valuestring), "FW Hang, %s",
130 event_data_lookup(g_fwprogress02h, pRec->event_data2));
Patrick Venture0b02be92018-08-31 11:55:55 -0700131 break;
132 case 0x02:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700133 std::snprintf(
134 p, sizeof(valuestring), "FW Progress, %s",
135 event_data_lookup(g_fwprogress02h, pRec->event_data2));
Patrick Venture0b02be92018-08-31 11:55:55 -0700136 break;
137 default:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700138 std::snprintf(
139 p, sizeof(valuestring),
140 "Internal warning, fw_progres offset unknown (0x%02x)",
141 pTable->offset);
Patrick Venture0b02be92018-08-31 11:55:55 -0700142 break;
143 }
Chris Austen0130d6e2015-10-15 22:32:36 -0500144
Patrick Venture0b02be92018-08-31 11:55:55 -0700145 return set_sensor_dbus_state_s(pRec->sensor_number, pTable->member, p);
Chris Austen0130d6e2015-10-15 22:32:36 -0500146}
147
Patrick Venture0b02be92018-08-31 11:55:55 -0700148// Handling this special OEM sensor by coping what is in byte 4. I also think
149// that is odd considering byte 3 is for sensor reading. This seems like a
150// misuse of the IPMI spec
Willy Tu11d68892022-01-20 10:37:34 -0800151int set_sensor_dbus_state_osbootcount(const sensorRES_t* pRec, const lookup_t*,
152 const char*)
Patrick Venture0b02be92018-08-31 11:55:55 -0700153{
154 return set_sensor_dbus_state_y(pRec->sensor_number, "setValue",
Chris Austen10ccc0f2015-12-10 18:27:04 -0600155 pRec->assert_state7_0);
Chris Austen0a4e2472015-10-18 12:19:40 -0500156}
157
Patrick Venture0b02be92018-08-31 11:55:55 -0700158int set_sensor_dbus_state_system_event(const sensorRES_t* pRec,
Willy Tu11d68892022-01-20 10:37:34 -0800159 const lookup_t* pTable, const char*)
Patrick Venture0b02be92018-08-31 11:55:55 -0700160{
161 char valuestring[128];
162 char* p = valuestring;
Chris Austen800ba712015-12-03 15:31:00 -0600163
Patrick Venture0b02be92018-08-31 11:55:55 -0700164 switch (pTable->offset)
165 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700166 case 0x00:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700167 std::snprintf(p, sizeof(valuestring), "System Reconfigured");
Patrick Venture0b02be92018-08-31 11:55:55 -0700168 break;
169 case 0x01:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700170 std::snprintf(p, sizeof(valuestring), "OEM Boot Event");
Patrick Venture0b02be92018-08-31 11:55:55 -0700171 break;
172 case 0x02:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700173 std::snprintf(p, sizeof(valuestring),
174 "Undetermined System Hardware Failure");
Patrick Venture0b02be92018-08-31 11:55:55 -0700175 break;
176 case 0x03:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700177 std::snprintf(
178 p, sizeof(valuestring),
179 "System Failure see error log for more details (0x%02x)",
180 pRec->event_data2);
Patrick Venture0b02be92018-08-31 11:55:55 -0700181 break;
182 case 0x04:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700183 std::snprintf(
Patrick Venture0b02be92018-08-31 11:55:55 -0700184 p, sizeof(valuestring),
185 "System Failure see PEF error log for more details (0x%02x)",
186 pRec->event_data2);
187 break;
188 default:
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700189 std::snprintf(
190 p, sizeof(valuestring),
191 "Internal warning, system_event offset unknown (0x%02x)",
192 pTable->offset);
Patrick Venture0b02be92018-08-31 11:55:55 -0700193 break;
194 }
Chris Austen800ba712015-12-03 15:31:00 -0600195
Patrick Venture0b02be92018-08-31 11:55:55 -0700196 return set_sensor_dbus_state_s(pRec->sensor_number, pTable->member, p);
Chris Austen800ba712015-12-03 15:31:00 -0600197}
Chris Austen0130d6e2015-10-15 22:32:36 -0500198
Chris Austen8a45e7c2015-10-15 00:31:46 -0500199// This table lists only senors we care about telling dbus about.
Chris Austen0012e9b2015-10-22 01:37:46 -0500200// Offset definition cab be found in section 42.2 of the IPMI 2.0
Chris Austen8a45e7c2015-10-15 00:31:46 -0500201// spec. Add more if/when there are more items of interest.
Chris Austen0130d6e2015-10-15 22:32:36 -0500202lookup_t g_ipmidbuslookup[] = {
Chris Austen8a45e7c2015-10-15 00:31:46 -0500203
Patrick Venture0b02be92018-08-31 11:55:55 -0700204 {0xe9, 0x00, set_sensor_dbus_state_simple, "setValue", "Disabled",
205 ""}, // OCC Inactive 0
206 {0xe9, 0x01, set_sensor_dbus_state_simple, "setValue", "Enabled",
207 ""}, // OCC Active 1
208 // Turbo Allowed
209 {0xda, 0x00, set_sensor_dbus_state_simple, "setValue", "True", "False"},
210 // Power Supply Derating
211 {0xb4, 0x00, set_sensor_dbus_state_simple, "setValue", "", ""},
212 // Power Cap
213 {0xC2, 0x00, set_sensor_dbus_state_simple, "setValue", "", ""},
214 {0x07, 0x07, set_sensor_dbus_state_simple, "setPresent", "True", "False"},
215 {0x07, 0x08, set_sensor_dbus_state_simple, "setFault", "True", "False"},
216 {0x0C, 0x06, set_sensor_dbus_state_simple, "setPresent", "True", "False"},
217 {0x0C, 0x04, set_sensor_dbus_state_simple, "setFault", "True", "False"},
218 {0x0F, 0x02, set_sensor_dbus_state_fwprogress, "setValue", "True", "False"},
219 {0x0F, 0x01, set_sensor_dbus_state_fwprogress, "setValue", "True", "False"},
220 {0x0F, 0x00, set_sensor_dbus_state_fwprogress, "setValue", "True", "False"},
221 {0xC7, 0x01, set_sensor_dbus_state_simple, "setFault", "True", "False"},
222 {0xc3, 0x00, set_sensor_dbus_state_osbootcount, "setValue", "", ""},
223 {0x1F, 0x00, set_sensor_dbus_state_simple, "setValue",
224 "Boot completed (00)", ""},
225 {0x1F, 0x01, set_sensor_dbus_state_simple, "setValue",
226 "Boot completed (01)", ""},
227 {0x1F, 0x02, set_sensor_dbus_state_simple, "setValue", "PXE boot completed",
228 ""},
229 {0x1F, 0x03, set_sensor_dbus_state_simple, "setValue",
230 "Diagnostic boot completed", ""},
231 {0x1F, 0x04, set_sensor_dbus_state_simple, "setValue",
232 "CD-ROM boot completed", ""},
233 {0x1F, 0x05, set_sensor_dbus_state_simple, "setValue", "ROM boot completed",
234 ""},
235 {0x1F, 0x06, set_sensor_dbus_state_simple, "setValue",
236 "Boot completed (06)", ""},
237 {0x12, 0x00, set_sensor_dbus_state_system_event, "setValue", "", ""},
238 {0x12, 0x01, set_sensor_dbus_state_system_event, "setValue", "", ""},
239 {0x12, 0x02, set_sensor_dbus_state_system_event, "setValue", "", ""},
240 {0x12, 0x03, set_sensor_dbus_state_system_event, "setValue", "", ""},
241 {0x12, 0x04, set_sensor_dbus_state_system_event, "setValue", "", ""},
242 {0xCA, 0x00, set_sensor_dbus_state_simple, "setValue", "Disabled", ""},
243 {0xCA, 0x01, set_sensor_dbus_state_simple, "setValue", "Enabled", ""},
244 {0xFF, 0xFF, NULL, "", "", ""}};
Chris Austen8a45e7c2015-10-15 00:31:46 -0500245
Patrick Ventured99148b2018-10-13 10:06:13 -0700246void reportSensorEventAssert(const sensorRES_t* pRec, int index)
Patrick Venture0b02be92018-08-31 11:55:55 -0700247{
248 lookup_t* pTable = &g_ipmidbuslookup[index];
249 (*pTable->func)(pRec, pTable, pTable->assertion);
Chris Austen0130d6e2015-10-15 22:32:36 -0500250}
Patrick Ventured99148b2018-10-13 10:06:13 -0700251void reportSensorEventDeassert(const sensorRES_t* pRec, int index)
Patrick Venture0b02be92018-08-31 11:55:55 -0700252{
253 lookup_t* pTable = &g_ipmidbuslookup[index];
254 (*pTable->func)(pRec, pTable, pTable->deassertion);
Chris Austen0130d6e2015-10-15 22:32:36 -0500255}
256
Patrick Venture0b02be92018-08-31 11:55:55 -0700257int findindex(const uint8_t sensor_type, int offset, int* index)
258{
Patrick Venture0b02be92018-08-31 11:55:55 -0700259 int i = 0, rc = 0;
260 lookup_t* pTable = g_ipmidbuslookup;
Gunnar Millsd8249ee2018-04-12 16:33:53 -0500261
Patrick Venture0b02be92018-08-31 11:55:55 -0700262 do
263 {
264 if (((pTable + i)->sensor_type == sensor_type) &&
265 ((pTable + i)->offset == offset))
266 {
267 rc = 1;
268 *index = i;
269 break;
270 }
271 i++;
272 } while ((pTable + i)->sensor_type != 0xFF);
Chris Austen8a45e7c2015-10-15 00:31:46 -0500273
Patrick Venture0b02be92018-08-31 11:55:55 -0700274 return rc;
Chris Austen8a45e7c2015-10-15 00:31:46 -0500275}
276
Patrick Venture0b02be92018-08-31 11:55:55 -0700277bool shouldReport(uint8_t sensorType, int offset, int* index)
278{
Patrick Venture0b02be92018-08-31 11:55:55 -0700279 bool rc = false;
Chris Austen0a4e2472015-10-18 12:19:40 -0500280
Patrick Venture0b02be92018-08-31 11:55:55 -0700281 if (findindex(sensorType, offset, index))
282 {
283 rc = true;
284 }
285 if (rc == false)
286 {
Aditya Saripalli5fb14602017-11-09 14:46:27 +0530287#ifdef __IPMI_DEBUG__
288 log<level::DEBUG>("LOOKATME: Sensor should not be reported",
Patrick Venture0b02be92018-08-31 11:55:55 -0700289 entry("SENSORTYPE=0x%02x", sensorType),
290 entry("OFFSET=0x%02x", offset));
Aditya Saripalli5fb14602017-11-09 14:46:27 +0530291#endif
Patrick Venture0b02be92018-08-31 11:55:55 -0700292 }
Chris Austen0a4e2472015-10-18 12:19:40 -0500293
Patrick Venture0b02be92018-08-31 11:55:55 -0700294 return rc;
Chris Austen8a45e7c2015-10-15 00:31:46 -0500295}
296
Patrick Venture0b02be92018-08-31 11:55:55 -0700297int updateSensorRecordFromSSRAESC(const void* record)
298{
Patrick Ventured99148b2018-10-13 10:06:13 -0700299 auto pRec = static_cast<const sensorRES_t*>(record);
Patrick Venture0b02be92018-08-31 11:55:55 -0700300 uint8_t stype;
Patrick Venture4491a462018-10-13 13:00:42 -0700301 int index;
Chris Austen8a45e7c2015-10-15 00:31:46 -0500302
Patrick Venture0b02be92018-08-31 11:55:55 -0700303 stype = find_type_for_sensor_number(pRec->sensor_number);
Chris Austen8a45e7c2015-10-15 00:31:46 -0500304
Patrick Venture0b02be92018-08-31 11:55:55 -0700305 // 0xC3 types use the assertion7_0 for the value to be set
306 // so skip the reseach and call the correct event reporting
307 // function
308 if (stype == 0xC3)
309 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700310 shouldReport(stype, 0x00, &index);
311 reportSensorEventAssert(pRec, index);
312 }
313 else
314 {
315 // Scroll through each bit position . Determine
316 // if any bit is either asserted or Deasserted.
Patrick Venture4491a462018-10-13 13:00:42 -0700317 for (int i = 0; i < 8; i++)
Patrick Venture0b02be92018-08-31 11:55:55 -0700318 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700319 if ((ISBITSET(pRec->assert_state7_0, i)) &&
320 (shouldReport(stype, i, &index)))
321 {
322 reportSensorEventAssert(pRec, index);
323 }
324 if ((ISBITSET(pRec->assert_state14_8, i)) &&
325 (shouldReport(stype, i + 8, &index)))
326 {
327 reportSensorEventAssert(pRec, index);
328 }
329 if ((ISBITSET(pRec->deassert_state7_0, i)) &&
330 (shouldReport(stype, i, &index)))
331 {
332 reportSensorEventDeassert(pRec, index);
333 }
334 if ((ISBITSET(pRec->deassert_state14_8, i)) &&
335 (shouldReport(stype, i + 8, &index)))
336 {
337 reportSensorEventDeassert(pRec, index);
338 }
339 }
340 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500341
Patrick Venture0b02be92018-08-31 11:55:55 -0700342 return 0;
Chris Austen8a45e7c2015-10-15 00:31:46 -0500343}