1fbe8378fSJason M. Bills /*
2fbe8378fSJason M. Bills // Copyright (c) 2019 Intel Corporation
3fbe8378fSJason M. Bills //
4fbe8378fSJason M. Bills // Licensed under the Apache License, Version 2.0 (the "License");
5fbe8378fSJason M. Bills // you may not use this file except in compliance with the License.
6fbe8378fSJason M. Bills // You may obtain a copy of the License at
7fbe8378fSJason M. Bills //
8fbe8378fSJason M. Bills //      http://www.apache.org/licenses/LICENSE-2.0
9fbe8378fSJason M. Bills //
10fbe8378fSJason M. Bills // Unless required by applicable law or agreed to in writing, software
11fbe8378fSJason M. Bills // distributed under the License is distributed on an "AS IS" BASIS,
12fbe8378fSJason M. Bills // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13fbe8378fSJason M. Bills // See the License for the specific language governing permissions and
14fbe8378fSJason M. Bills // limitations under the License.
15fbe8378fSJason M. Bills */
16fbe8378fSJason M. Bills #pragma once
17fbe8378fSJason M. Bills #include <registries.hpp>
18fbe8378fSJason M. Bills 
19fbe8378fSJason M. Bills namespace redfish::message_registries::openbmc
20fbe8378fSJason M. Bills {
21fbe8378fSJason M. Bills const Header header = {
22271584abSEd Tanous     "Copyright 2018 OpenBMC. All rights reserved.",
23e7808c93SGunnar Mills     "#MessageRegistry.v1_4_0.MessageRegistry",
244a0bf539SManojkiran Eda     "OpenBMC.0.2.0",
25271584abSEd Tanous     "OpenBMC Message Registry",
26271584abSEd Tanous     "en",
27271584abSEd Tanous     "This registry defines the base messages for OpenBMC.",
28271584abSEd Tanous     "OpenBMC",
294a0bf539SManojkiran Eda     "0.2.0",
30271584abSEd Tanous     "OpenBMC",
31fbe8378fSJason M. Bills };
32*567e3ab7SChalapathi Venkataramashetty constexpr std::array<MessageEntry, 188> registry = {
33fbe8378fSJason M. Bills     MessageEntry{
34fbe8378fSJason M. Bills         "ADDDCCorrectable",
35fbe8378fSJason M. Bills         {
36271584abSEd Tanous             "Indicates an ADDDC Correctable Error.",
37fbe8378fSJason M. Bills             "ADDDC Correctable Error.Socket=%1 Channel=%2 DIMM=%3 Rank=%4.",
38271584abSEd Tanous             "Warning",
39e7808c93SGunnar Mills             "Warning",
40271584abSEd Tanous             4,
41fbe8378fSJason M. Bills             {
42fbe8378fSJason M. Bills                 "number",
43fbe8378fSJason M. Bills                 "string",
44fbe8378fSJason M. Bills                 "number",
45fbe8378fSJason M. Bills                 "number",
46fbe8378fSJason M. Bills             },
47271584abSEd Tanous             "None.",
48fbe8378fSJason M. Bills         }},
49fbe8378fSJason M. Bills     MessageEntry{
504dcc3f92SSuryakanth Sekar         "AtScaleDebugFeatureEnabledAtHardware",
514dcc3f92SSuryakanth Sekar         {
524dcc3f92SSuryakanth Sekar             "Indicates that At-Scale Debug enable is detected in hardware.",
534dcc3f92SSuryakanth Sekar             "At-Scale Debug Feature is enabled in hardware.",
544dcc3f92SSuryakanth Sekar             "Critical",
55e7808c93SGunnar Mills             "Critical",
564dcc3f92SSuryakanth Sekar             0,
574dcc3f92SSuryakanth Sekar             {},
584dcc3f92SSuryakanth Sekar             "None.",
594dcc3f92SSuryakanth Sekar         }},
604dcc3f92SSuryakanth Sekar     MessageEntry{
614dcc3f92SSuryakanth Sekar         "AtScaleDebugFeatureDisabledAtHardware",
624dcc3f92SSuryakanth Sekar         {
634dcc3f92SSuryakanth Sekar             "Indicates that At-Scale Debug disable is detected in hardware.",
644dcc3f92SSuryakanth Sekar             "At-Scale Debug Feature is disabled in hardware.",
654dcc3f92SSuryakanth Sekar             "OK",
66e7808c93SGunnar Mills             "OK",
674dcc3f92SSuryakanth Sekar             0,
684dcc3f92SSuryakanth Sekar             {},
694dcc3f92SSuryakanth Sekar             "None.",
704dcc3f92SSuryakanth Sekar         }},
714dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugFeatureEnabled",
724dcc3f92SSuryakanth Sekar                  {
734dcc3f92SSuryakanth Sekar                      "Indicates that At-Scale Debug service is started.",
744dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is started.",
754dcc3f92SSuryakanth Sekar                      "Critical",
76e7808c93SGunnar Mills                      "Critical",
774dcc3f92SSuryakanth Sekar                      0,
784dcc3f92SSuryakanth Sekar                      {},
794dcc3f92SSuryakanth Sekar                      "None.",
804dcc3f92SSuryakanth Sekar                  }},
814dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugFeatureDisabled",
824dcc3f92SSuryakanth Sekar                  {
834dcc3f92SSuryakanth Sekar                      "Indicates that At-Scale Debug service is stopped.",
844dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is stopped.",
854dcc3f92SSuryakanth Sekar                      "OK",
86e7808c93SGunnar Mills                      "OK",
874dcc3f92SSuryakanth Sekar                      0,
884dcc3f92SSuryakanth Sekar                      {},
894dcc3f92SSuryakanth Sekar                      "None.",
904dcc3f92SSuryakanth Sekar                  }},
914dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugConnected",
924dcc3f92SSuryakanth Sekar                  {
934dcc3f92SSuryakanth Sekar                      "Indicates At-Scale Debug connection has been established",
944dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is now connected %1",
954dcc3f92SSuryakanth Sekar                      "Critical",
96e7808c93SGunnar Mills                      "Critical",
974dcc3f92SSuryakanth Sekar                      1,
984dcc3f92SSuryakanth Sekar                      {"string"},
994dcc3f92SSuryakanth Sekar                      "None.",
1004dcc3f92SSuryakanth Sekar                  }},
1014dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugDisconnected",
1024dcc3f92SSuryakanth Sekar                  {
1034dcc3f92SSuryakanth Sekar                      "Indicates At-Scale Debug connection has ended",
1044dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is now disconnected",
1054dcc3f92SSuryakanth Sekar                      "OK",
106e7808c93SGunnar Mills                      "OK",
1074dcc3f92SSuryakanth Sekar                      0,
1084dcc3f92SSuryakanth Sekar                      {},
1094dcc3f92SSuryakanth Sekar                      "None.",
1104dcc3f92SSuryakanth Sekar                  }},
1114dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugConnectionFailed",
1124dcc3f92SSuryakanth Sekar                  {
1134dcc3f92SSuryakanth Sekar                      "Indicates At-Scale Debug connection aborted/failed",
1144dcc3f92SSuryakanth Sekar                      "At-Scale Debug connection aborted/failed",
1154dcc3f92SSuryakanth Sekar                      "Critical",
116e7808c93SGunnar Mills                      "Critical",
1174dcc3f92SSuryakanth Sekar                      0,
1184dcc3f92SSuryakanth Sekar                      {},
1194dcc3f92SSuryakanth Sekar                      "None.",
1204dcc3f92SSuryakanth Sekar                  }},
1214dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugSpecialUserEnabled",
1224dcc3f92SSuryakanth Sekar                  {
1234dcc3f92SSuryakanth Sekar                      "Indicates that special user is enabled.",
1244dcc3f92SSuryakanth Sekar                      "At-Scale Debug special user is enabled",
1254dcc3f92SSuryakanth Sekar                      "Critical",
126e7808c93SGunnar Mills                      "Critical",
1274dcc3f92SSuryakanth Sekar                      0,
1284dcc3f92SSuryakanth Sekar                      {},
1294dcc3f92SSuryakanth Sekar                      "None.",
1304dcc3f92SSuryakanth Sekar                  }},
1314dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugSpecialUserDisabled",
1324dcc3f92SSuryakanth Sekar                  {
1334dcc3f92SSuryakanth Sekar                      "Indicates that special user is disabled.",
1344dcc3f92SSuryakanth Sekar                      "At-Scale Debug special user is disabled",
1354dcc3f92SSuryakanth Sekar                      "OK",
136e7808c93SGunnar Mills                      "OK",
1374dcc3f92SSuryakanth Sekar                      0,
1384dcc3f92SSuryakanth Sekar                      {},
1394dcc3f92SSuryakanth Sekar                      "None.",
1404dcc3f92SSuryakanth Sekar                  }},
1414dcc3f92SSuryakanth Sekar 
1424dcc3f92SSuryakanth Sekar     MessageEntry{
143fbe8378fSJason M. Bills         "BIOSBoot",
144fbe8378fSJason M. Bills         {
145fbe8378fSJason M. Bills             "Indicates BIOS has transitioned control to the OS Loader.",
146271584abSEd Tanous             "BIOS System Boot.",
147271584abSEd Tanous             "OK",
148e7808c93SGunnar Mills             "OK",
149271584abSEd Tanous             0,
150271584abSEd Tanous             {},
151271584abSEd Tanous             "None.",
152fbe8378fSJason M. Bills         }},
1530c0f18e7SAppaRao Puli     MessageEntry{"BIOSFirmwarePanicReason",
1540c0f18e7SAppaRao Puli                  {
1550c0f18e7SAppaRao Puli                      "Indicates the reason for BIOS firmware panic.",
1560c0f18e7SAppaRao Puli                      "BIOS firmware panic occurred due to %1.",
1570c0f18e7SAppaRao Puli                      "Warning",
158e7808c93SGunnar Mills                      "Warning",
1590c0f18e7SAppaRao Puli                      1,
1600c0f18e7SAppaRao Puli                      {
1610c0f18e7SAppaRao Puli                          "string",
1620c0f18e7SAppaRao Puli                      },
1630c0f18e7SAppaRao Puli                      "None.",
1640c0f18e7SAppaRao Puli                  }},
1650c0f18e7SAppaRao Puli     MessageEntry{"BIOSFirmwareRecoveryReason",
1660c0f18e7SAppaRao Puli                  {
1670c0f18e7SAppaRao Puli                      "Indicates the reason for BIOS firmware recovery.",
1680c0f18e7SAppaRao Puli                      "BIOS firmware recovery occurred due to %1.",
1690c0f18e7SAppaRao Puli                      "Warning",
170e7808c93SGunnar Mills                      "Warning",
1710c0f18e7SAppaRao Puli                      1,
1720c0f18e7SAppaRao Puli                      {
1730c0f18e7SAppaRao Puli                          "string",
1740c0f18e7SAppaRao Puli                      },
1750c0f18e7SAppaRao Puli                      "None.",
1760c0f18e7SAppaRao Puli                  }},
1770c0f18e7SAppaRao Puli     MessageEntry{"BIOSFirmwareResiliencyError",
1780c0f18e7SAppaRao Puli                  {
1790c0f18e7SAppaRao Puli                      "Indicates BIOS firmware encountered resilience error.",
1800c0f18e7SAppaRao Puli                      "BIOS firmware resiliency error. Error reason: %1.",
1810c0f18e7SAppaRao Puli                      "Critical",
182e7808c93SGunnar Mills                      "Critical",
1830c0f18e7SAppaRao Puli                      1,
1840c0f18e7SAppaRao Puli                      {
1850c0f18e7SAppaRao Puli                          "string",
1860c0f18e7SAppaRao Puli                      },
1870c0f18e7SAppaRao Puli                      "None.",
1880c0f18e7SAppaRao Puli                  }},
1894a0bf539SManojkiran Eda     MessageEntry{
1904a0bf539SManojkiran Eda         "BIOSPOSTCode",
191a3316fc6SZhikuiRen         {
192a3316fc6SZhikuiRen             "BIOS Power-On Self-Test Code received",
1934a0bf539SManojkiran Eda             "Boot Count: %1; Time Stamp Offset: %2 seconds; POST Code: %3",
194a3316fc6SZhikuiRen             "OK",
195e7808c93SGunnar Mills             "OK",
196a3316fc6SZhikuiRen             3,
197a3316fc6SZhikuiRen             {"number", "number", "number"},
198a3316fc6SZhikuiRen             "None.",
199a3316fc6SZhikuiRen         }},
200271584abSEd Tanous     MessageEntry{"BIOSPOSTError",
201fbe8378fSJason M. Bills                  {
202271584abSEd Tanous                      "Indicates BIOS POST has encountered an error.",
203271584abSEd Tanous                      "BIOS POST Error. Error Code=%1",
204271584abSEd Tanous                      "Warning",
205e7808c93SGunnar Mills                      "Warning",
206271584abSEd Tanous                      1,
207271584abSEd Tanous                      {"number"},
208271584abSEd Tanous                      "None.",
209fbe8378fSJason M. Bills                  }},
210fbe8378fSJason M. Bills     MessageEntry{"BIOSRecoveryComplete",
211fbe8378fSJason M. Bills                  {
212271584abSEd Tanous                      "Indicates BIOS Recovery has completed.",
213271584abSEd Tanous                      "BIOS Recovery Complete.",
214271584abSEd Tanous                      "OK",
215e7808c93SGunnar Mills                      "OK",
216271584abSEd Tanous                      0,
217271584abSEd Tanous                      {},
218271584abSEd Tanous                      "None.",
219fbe8378fSJason M. Bills                  }},
220fbe8378fSJason M. Bills     MessageEntry{"BIOSRecoveryStart",
221fbe8378fSJason M. Bills                  {
222271584abSEd Tanous                      "Indicates BIOS Recovery has started.",
223271584abSEd Tanous                      "BIOS Recovery Start.",
224271584abSEd Tanous                      "Warning",
225e7808c93SGunnar Mills                      "Warning",
226271584abSEd Tanous                      0,
227271584abSEd Tanous                      {},
228271584abSEd Tanous                      "None.",
229fbe8378fSJason M. Bills                  }},
230b58c79ebSJonathan Doman     MessageEntry{"BMCBootReason",
231bd5db522SYong Li                  {
232b58c79ebSJonathan Doman                      "Indicates the reason why BMC firmware booted.",
233b58c79ebSJonathan Doman                      "BMC firmware version %1 booted due to %2.",
234bd5db522SYong Li                      "OK",
235e7808c93SGunnar Mills                      "OK",
236b58c79ebSJonathan Doman                      2,
237b58c79ebSJonathan Doman                      {
238b58c79ebSJonathan Doman                          "string",
239b58c79ebSJonathan Doman                          "string",
240b58c79ebSJonathan Doman                      },
241bd5db522SYong Li                      "None.",
242bd5db522SYong Li                  }},
2430c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwarePanicReason",
2440c0f18e7SAppaRao Puli                  {
2450c0f18e7SAppaRao Puli                      "Indicates the reason for last BMC firmware panic.",
2460c0f18e7SAppaRao Puli                      "BMC firmware panic occurred due to %1.",
2470c0f18e7SAppaRao Puli                      "Warning",
248e7808c93SGunnar Mills                      "Warning",
2490c0f18e7SAppaRao Puli                      1,
2500c0f18e7SAppaRao Puli                      {
2510c0f18e7SAppaRao Puli                          "string",
2520c0f18e7SAppaRao Puli                      },
2530c0f18e7SAppaRao Puli                      "None.",
2540c0f18e7SAppaRao Puli                  }},
2550c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwareRecoveryReason",
2560c0f18e7SAppaRao Puli                  {
2570c0f18e7SAppaRao Puli                      "Indicates the reason for last BMC firmware recovery.",
2580c0f18e7SAppaRao Puli                      "BMC firmware recovery occurred due to %1.",
2590c0f18e7SAppaRao Puli                      "Warning",
260e7808c93SGunnar Mills                      "Warning",
2610c0f18e7SAppaRao Puli                      1,
2620c0f18e7SAppaRao Puli                      {
2630c0f18e7SAppaRao Puli                          "string",
2640c0f18e7SAppaRao Puli                      },
2650c0f18e7SAppaRao Puli                      "None.",
2660c0f18e7SAppaRao Puli                  }},
2670c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwareResiliencyError",
2680c0f18e7SAppaRao Puli                  {
2690c0f18e7SAppaRao Puli                      "Indicates BMC firmware encountered resilience error.",
2700c0f18e7SAppaRao Puli                      "BMC firmware resiliency error. Error reason: %1.",
2710c0f18e7SAppaRao Puli                      "Critical",
272e7808c93SGunnar Mills                      "Critical",
2730c0f18e7SAppaRao Puli                      1,
2740c0f18e7SAppaRao Puli                      {
2750c0f18e7SAppaRao Puli                          "string",
2760c0f18e7SAppaRao Puli                      },
2770c0f18e7SAppaRao Puli                      "None.",
2780c0f18e7SAppaRao Puli                  }},
279b58c79ebSJonathan Doman     MessageEntry{"BMCKernelPanic",
280b58c79ebSJonathan Doman                  {
281b58c79ebSJonathan Doman                      "Indicates that BMC kernel panic occurred.",
282b58c79ebSJonathan Doman                      "BMC rebooted due to kernel panic.",
283b58c79ebSJonathan Doman                      "OK",
284b58c79ebSJonathan Doman                      "OK",
285b58c79ebSJonathan Doman                      0,
286b58c79ebSJonathan Doman                      {},
287b58c79ebSJonathan Doman                      "None.",
288b58c79ebSJonathan Doman                  }},
289789771ddSQiang XU     MessageEntry{"ChassisIntrusionDetected",
290789771ddSQiang XU                  {
291789771ddSQiang XU                      "Indicates that a physical security event "
292789771ddSQiang XU                      "of the chassis intrusion has occurred.",
293789771ddSQiang XU                      "Chassis Intrusion Detected.",
294789771ddSQiang XU                      "Warning",
295e7808c93SGunnar Mills                      "Warning",
296789771ddSQiang XU                      0,
297789771ddSQiang XU                      {},
298789771ddSQiang XU                      "None.",
299789771ddSQiang XU                  }},
300789771ddSQiang XU     MessageEntry{"ChassisIntrusionReset",
301789771ddSQiang XU                  {
302789771ddSQiang XU                      "Indicates that chassis intrusion status has recovered.",
303789771ddSQiang XU                      "Chassis Intrusion Reset.",
304789771ddSQiang XU                      "OK",
305e7808c93SGunnar Mills                      "OK",
306789771ddSQiang XU                      0,
307789771ddSQiang XU                      {},
308789771ddSQiang XU                      "None.",
309789771ddSQiang XU                  }},
3100c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwarePanicReason",
3110c0f18e7SAppaRao Puli                  {
3120c0f18e7SAppaRao Puli                      "Indicates the reason for CPLD firmware panic.",
3130c0f18e7SAppaRao Puli                      "CPLD firmware panic occurred due to %1.",
3140c0f18e7SAppaRao Puli                      "Warning",
315e7808c93SGunnar Mills                      "Warning",
3160c0f18e7SAppaRao Puli                      1,
3170c0f18e7SAppaRao Puli                      {
3180c0f18e7SAppaRao Puli                          "string",
3190c0f18e7SAppaRao Puli                      },
3200c0f18e7SAppaRao Puli                      "None.",
3210c0f18e7SAppaRao Puli                  }},
3220c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwareRecoveryReason",
3230c0f18e7SAppaRao Puli                  {
3240c0f18e7SAppaRao Puli                      "Indicates the reason for CPLD firmware recovery.",
3250c0f18e7SAppaRao Puli                      "CPLD firmware recovery occurred due to %1.",
3260c0f18e7SAppaRao Puli                      "Warning",
327e7808c93SGunnar Mills                      "Warning",
3280c0f18e7SAppaRao Puli                      1,
3290c0f18e7SAppaRao Puli                      {
3300c0f18e7SAppaRao Puli                          "string",
3310c0f18e7SAppaRao Puli                      },
3320c0f18e7SAppaRao Puli                      "None.",
3330c0f18e7SAppaRao Puli                  }},
3340c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwareResiliencyError",
3350c0f18e7SAppaRao Puli                  {
3360c0f18e7SAppaRao Puli                      "Indicates CPLD firmware encountered resilience error.",
3370c0f18e7SAppaRao Puli                      "CPLD firmware resiliency error. Error reason: %1.",
3380c0f18e7SAppaRao Puli                      "Critical",
339e7808c93SGunnar Mills                      "Critical",
3400c0f18e7SAppaRao Puli                      1,
3410c0f18e7SAppaRao Puli                      {
3420c0f18e7SAppaRao Puli                          "string",
3430c0f18e7SAppaRao Puli                      },
3440c0f18e7SAppaRao Puli                      "None.",
3450c0f18e7SAppaRao Puli                  }},
346fbe8378fSJason M. Bills     MessageEntry{"CPUError",
347fbe8378fSJason M. Bills                  {
348271584abSEd Tanous                      "Indicates that a CPU Error occurred of "
349fbe8378fSJason M. Bills                      "the specified type or cause.",
350271584abSEd Tanous                      "CPU Error Occurred: %1.",
351271584abSEd Tanous                      "Critical",
352e7808c93SGunnar Mills                      "Critical",
353271584abSEd Tanous                      1,
354271584abSEd Tanous                      {"string"},
355271584abSEd Tanous                      "None.",
356fbe8378fSJason M. Bills                  }},
3575db4be21Sjayaprakash Mutyala     MessageEntry{"CPUMismatch",
3585db4be21Sjayaprakash Mutyala                  {
3595db4be21Sjayaprakash Mutyala                      "Indicates that the specified CPU power/current "
3605db4be21Sjayaprakash Mutyala                      "rating is incompatible with the board.",
3615db4be21Sjayaprakash Mutyala                      "CPU %1 Mismatch.",
3625db4be21Sjayaprakash Mutyala                      "Critical",
363e7808c93SGunnar Mills                      "Critical",
3645db4be21Sjayaprakash Mutyala                      1,
3655db4be21Sjayaprakash Mutyala                      {"number"},
3665db4be21Sjayaprakash Mutyala                      "Install the supported CPU.",
3675db4be21Sjayaprakash Mutyala                  }},
36873de092fSJason M. Bills     MessageEntry{"CPUThermalTrip",
36973de092fSJason M. Bills                  {
370271584abSEd Tanous                      "Indicates that the specified CPU thermal "
37173de092fSJason M. Bills                      "trip has been asserted.",
372271584abSEd Tanous                      "CPU %1 Thermal Trip.",
373271584abSEd Tanous                      "Critical",
374e7808c93SGunnar Mills                      "Critical",
375271584abSEd Tanous                      1,
376271584abSEd Tanous                      {"number"},
377271584abSEd Tanous                      "None.",
37873de092fSJason M. Bills                  }},
379271584abSEd Tanous     MessageEntry{"DCPowerOff",
380fbe8378fSJason M. Bills                  {
381271584abSEd Tanous                      "Indicates that the system DC power is off.",
382271584abSEd Tanous                      "Host system DC power is off",
383271584abSEd Tanous                      "OK",
384e7808c93SGunnar Mills                      "OK",
385271584abSEd Tanous                      0,
386271584abSEd Tanous                      {},
387271584abSEd Tanous                      "None.",
388fbe8378fSJason M. Bills                  }},
389fbe8378fSJason M. Bills     MessageEntry{"DCPowerOn",
390fbe8378fSJason M. Bills                  {
391271584abSEd Tanous                      "Indicates that the system DC power is on.",
392271584abSEd Tanous                      "Host system DC power is on",
393271584abSEd Tanous                      "OK",
394e7808c93SGunnar Mills                      "OK",
395271584abSEd Tanous                      0,
396271584abSEd Tanous                      {},
397271584abSEd Tanous                      "None.",
398fbe8378fSJason M. Bills                  }},
399c75f1e9aSJames Feist     MessageEntry{"DriveError",
400c75f1e9aSJames Feist                  {
401c75f1e9aSJames Feist                      "Indicates that a Drive Error occurred of "
402c75f1e9aSJames Feist                      "the specified type or cause.",
403c75f1e9aSJames Feist                      "Drive Error Occurred: %1.",
404c75f1e9aSJames Feist                      "Warning",
405e7808c93SGunnar Mills                      "Warning",
406c75f1e9aSJames Feist                      1,
407c75f1e9aSJames Feist                      {"string"},
408c75f1e9aSJames Feist                      "None.",
409c75f1e9aSJames Feist                  }},
410271584abSEd Tanous     MessageEntry{"EventLogCleared",
411fbe8378fSJason M. Bills                  {
412271584abSEd Tanous                      "Indicates that the event log has been cleared.",
413271584abSEd Tanous                      "Event Log Cleared.",
414271584abSEd Tanous                      "OK",
415e7808c93SGunnar Mills                      "OK",
416271584abSEd Tanous                      0,
417271584abSEd Tanous                      {},
418271584abSEd Tanous                      "None.",
419fbe8378fSJason M. Bills                  }},
420271584abSEd Tanous     MessageEntry{"FanInserted",
421fbe8378fSJason M. Bills                  {
422271584abSEd Tanous                      "Indicates that a system fan has been inserted.",
423271584abSEd Tanous                      "%1 inserted.",
424271584abSEd Tanous                      "OK",
425e7808c93SGunnar Mills                      "OK",
426271584abSEd Tanous                      1,
427271584abSEd Tanous                      {"string"},
428271584abSEd Tanous                      "None.",
429fbe8378fSJason M. Bills                  }},
430fbe8378fSJason M. Bills     MessageEntry{"FanRedundancyLost",
431fbe8378fSJason M. Bills                  {
432fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been lost.",
433271584abSEd Tanous                      "Fan redundancy lost.",
434271584abSEd Tanous                      "Warning",
435e7808c93SGunnar Mills                      "Warning",
436271584abSEd Tanous                      0,
437271584abSEd Tanous                      {},
438271584abSEd Tanous                      "None.",
439fbe8378fSJason M. Bills                  }},
440271584abSEd Tanous     MessageEntry{"FanRedundancyRegained",
441fbe8378fSJason M. Bills                  {
442fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been regained.",
443271584abSEd Tanous                      "Fan redundancy regained.",
444271584abSEd Tanous                      "OK",
445e7808c93SGunnar Mills                      "OK",
446271584abSEd Tanous                      0,
447271584abSEd Tanous                      {},
448271584abSEd Tanous                      "None.",
449fbe8378fSJason M. Bills                  }},
450271584abSEd Tanous     MessageEntry{"FanRemoved",
451fbe8378fSJason M. Bills                  {
452271584abSEd Tanous                      "Indicates that a system fan has been removed.",
453271584abSEd Tanous                      "%1 removed.",
454271584abSEd Tanous                      "OK",
455e7808c93SGunnar Mills                      "OK",
456271584abSEd Tanous                      1,
457271584abSEd Tanous                      {"string"},
458271584abSEd Tanous                      "None.",
459fbe8378fSJason M. Bills                  }},
4605b0de033SJason M. Bills     MessageEntry{
4615b0de033SJason M. Bills         "FirmwareActivationCompleted",
4625b0de033SJason M. Bills         {
4635b0de033SJason M. Bills             "Indicates a firmware activation has completed successfully.",
4645b0de033SJason M. Bills             "%1 firmware activation completed successfully.",
4655b0de033SJason M. Bills             "OK",
4665b0de033SJason M. Bills             "OK",
4675b0de033SJason M. Bills             1,
4685b0de033SJason M. Bills             {"string"},
4695b0de033SJason M. Bills             "None.",
4705b0de033SJason M. Bills         }},
4715b0de033SJason M. Bills     MessageEntry{"FirmwareActivationFailed",
4725b0de033SJason M. Bills                  {
4735b0de033SJason M. Bills                      "Indicates a firmware activation has failed.",
4745b0de033SJason M. Bills                      "%1 firmware activation failed: %2.",
4755b0de033SJason M. Bills                      "Warning",
4765b0de033SJason M. Bills                      "Warning",
4775b0de033SJason M. Bills                      2,
4785b0de033SJason M. Bills                      {"string", "string"},
4795b0de033SJason M. Bills                      "None.",
4805b0de033SJason M. Bills                  }},
4815b0de033SJason M. Bills     MessageEntry{"FirmwareActivationStarted",
4825b0de033SJason M. Bills                  {
4835b0de033SJason M. Bills                      "Indicates a firmware activation has started.",
4845b0de033SJason M. Bills                      "%1 firmware activation started.",
4855b0de033SJason M. Bills                      "OK",
4865b0de033SJason M. Bills                      "OK",
4875b0de033SJason M. Bills                      1,
4885b0de033SJason M. Bills                      {"string"},
4895b0de033SJason M. Bills                      "None.",
4905b0de033SJason M. Bills                  }},
491*567e3ab7SChalapathi Venkataramashetty     MessageEntry{"FirmwareResiliencyError",
492*567e3ab7SChalapathi Venkataramashetty                  {
493*567e3ab7SChalapathi Venkataramashetty                      "Indicates firmware encountered resilience error.",
494*567e3ab7SChalapathi Venkataramashetty                      "Firmware resiliency error. Error reason: %1.",
495*567e3ab7SChalapathi Venkataramashetty                      "Critical",
496*567e3ab7SChalapathi Venkataramashetty                      "Critical",
497*567e3ab7SChalapathi Venkataramashetty                      1,
498*567e3ab7SChalapathi Venkataramashetty                      {
499*567e3ab7SChalapathi Venkataramashetty                          "string",
500*567e3ab7SChalapathi Venkataramashetty                      },
501*567e3ab7SChalapathi Venkataramashetty                      "None.",
502*567e3ab7SChalapathi Venkataramashetty                  }},
503271584abSEd Tanous     MessageEntry{"FirmwareUpdateCompleted",
504fbe8378fSJason M. Bills                  {
505fbe8378fSJason M. Bills                      "Indicates a firmware update has completed successfully.",
506271584abSEd Tanous                      "%1 firmware update to version %2 completed "
507fbe8378fSJason M. Bills                      "successfully.",
508271584abSEd Tanous                      "OK",
509e7808c93SGunnar Mills                      "OK",
510271584abSEd Tanous                      2,
511271584abSEd Tanous                      {"string", "string"},
512271584abSEd Tanous                      "None.",
513fbe8378fSJason M. Bills                  }},
514fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateFailed",
515fbe8378fSJason M. Bills                  {
516271584abSEd Tanous                      "Indicates a firmware update has failed.",
517a2ec6384SChalapathi Venkataramashetty                      "%1 firmware update to version %2 failed: %3.",
518271584abSEd Tanous                      "Warning",
519e7808c93SGunnar Mills                      "Warning",
520a2ec6384SChalapathi Venkataramashetty                      3,
521a2ec6384SChalapathi Venkataramashetty                      {"string", "string", "string"},
522271584abSEd Tanous                      "None.",
523fbe8378fSJason M. Bills                  }},
5249edd866cSChalapathi Venkataramashetty     MessageEntry{"FirmwareUpdateStaged",
5259edd866cSChalapathi Venkataramashetty                  {
5269edd866cSChalapathi Venkataramashetty                      "Indicates a firmware update has staged successfully.",
5279edd866cSChalapathi Venkataramashetty                      "%1 firmware update to version %2 staged successfully.",
5289edd866cSChalapathi Venkataramashetty                      "OK",
5299edd866cSChalapathi Venkataramashetty                      "OK",
5309edd866cSChalapathi Venkataramashetty                      2,
5319edd866cSChalapathi Venkataramashetty                      {"string", "string"},
5329edd866cSChalapathi Venkataramashetty                      "None.",
5339edd866cSChalapathi Venkataramashetty                  }},
534fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateStarted",
535fbe8378fSJason M. Bills                  {
536271584abSEd Tanous                      "Indicates a firmware update has started.",
537271584abSEd Tanous                      "%1 firmware update to version %2 started.",
538271584abSEd Tanous                      "OK",
539e7808c93SGunnar Mills                      "OK",
540271584abSEd Tanous                      2,
541271584abSEd Tanous                      {"string", "string"},
542271584abSEd Tanous                      "None.",
543fbe8378fSJason M. Bills                  }},
544fbe8378fSJason M. Bills     MessageEntry{
545fbe8378fSJason M. Bills         "GeneralFirmwareSecurityViolation",
546fbe8378fSJason M. Bills         {
547fbe8378fSJason M. Bills             "Indicates a general firmware security violation has occurred.",
548271584abSEd Tanous             "Firmware security violation: %1.",
549271584abSEd Tanous             "Critical",
550e7808c93SGunnar Mills             "Critical",
551271584abSEd Tanous             1,
552271584abSEd Tanous             {"string"},
553271584abSEd Tanous             "None.",
554fbe8378fSJason M. Bills         }},
555271584abSEd Tanous     MessageEntry{"InvalidLoginAttempted",
556fbe8378fSJason M. Bills                  {
557fbe8378fSJason M. Bills                      "Indicates that a login was attempted on the specified "
558fbe8378fSJason M. Bills                      "interface with an invalid username or password.",
559271584abSEd Tanous                      "Invalid username or password attempted on %1.",
560271584abSEd Tanous                      "Warning",
561e7808c93SGunnar Mills                      "Warning",
562271584abSEd Tanous                      1,
563271584abSEd Tanous                      {"string"},
564271584abSEd Tanous                      "None.",
565fbe8378fSJason M. Bills                  }},
5664cde5d90SJames Feist     MessageEntry{"InvalidUpload",
5674cde5d90SJames Feist                  {
5684cde5d90SJames Feist                      "Indicates that the uploaded file was invalid.",
5694cde5d90SJames Feist                      "Invalid file uploaded to %1: %2.",
5704cde5d90SJames Feist                      "Warning",
571e7808c93SGunnar Mills                      "Warning",
5724cde5d90SJames Feist                      2,
5734cde5d90SJames Feist                      {"string", "string"},
5744cde5d90SJames Feist                      "None.",
5754cde5d90SJames Feist                  }},
576fbe8378fSJason M. Bills     MessageEntry{
577d62cec73SJames Feist         "InventoryAdded",
578d62cec73SJames Feist         {
579d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
580d62cec73SJames Feist             "type, and serial number was installed.",
581271584abSEd Tanous             "%1 %2 with serial number %3 was installed.",
582271584abSEd Tanous             "OK",
583e7808c93SGunnar Mills             "OK",
584271584abSEd Tanous             3,
585271584abSEd Tanous 
586d62cec73SJames Feist             {
587d62cec73SJames Feist                 "string",
588d62cec73SJames Feist                 "string",
589d62cec73SJames Feist                 "string",
590d62cec73SJames Feist             },
591271584abSEd Tanous             "None.",
592d62cec73SJames Feist         }},
593d62cec73SJames Feist     MessageEntry{
594d62cec73SJames Feist         "InventoryRemoved",
595d62cec73SJames Feist         {
596d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
597d62cec73SJames Feist             "type, and serial number was removed.",
598271584abSEd Tanous             "%1 %2 with serial number %3 was removed.",
599271584abSEd Tanous             "OK",
600e7808c93SGunnar Mills             "OK",
601271584abSEd Tanous             3,
602271584abSEd Tanous 
603d62cec73SJames Feist             {
604d62cec73SJames Feist                 "string",
605d62cec73SJames Feist                 "string",
606d62cec73SJames Feist                 "string",
607d62cec73SJames Feist             },
608271584abSEd Tanous             "None.",
609d62cec73SJames Feist         }},
610d62cec73SJames Feist     MessageEntry{
611fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToHalf",
612fbe8378fSJason M. Bills         {
613fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to half width.",
614271584abSEd Tanous             "Intel UPI link width reduced to half. Node=%1.",
615271584abSEd Tanous             "Warning",
616e7808c93SGunnar Mills             "Warning",
617271584abSEd Tanous             1,
618271584abSEd Tanous 
619fbe8378fSJason M. Bills             {
620fbe8378fSJason M. Bills                 "number",
621fbe8378fSJason M. Bills             },
622271584abSEd Tanous             "None.",
623fbe8378fSJason M. Bills         }},
624fbe8378fSJason M. Bills     MessageEntry{
625fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToQuarter",
626fbe8378fSJason M. Bills         {
627fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to quarter width.",
628271584abSEd Tanous             "Intel UPI link width reduced to quarter. Node=%1.",
629271584abSEd Tanous             "Warning",
630e7808c93SGunnar Mills             "Warning",
631271584abSEd Tanous             1,
632271584abSEd Tanous 
633fbe8378fSJason M. Bills             {
634fbe8378fSJason M. Bills                 "number",
635fbe8378fSJason M. Bills             },
636271584abSEd Tanous             "None.",
637fbe8378fSJason M. Bills         }},
63893a2b2fcSYong Li 
639271584abSEd Tanous     MessageEntry{"IPMIWatchdog",
64093a2b2fcSYong Li                  {
641271584abSEd Tanous                      "Indicates that there is a host watchdog event.",
642271584abSEd Tanous                      "Host Watchdog Event: %1",
643271584abSEd Tanous                      "OK",
644e7808c93SGunnar Mills                      "OK",
645271584abSEd Tanous                      1,
646271584abSEd Tanous 
64793a2b2fcSYong Li                      {
64893a2b2fcSYong Li                          "string",
64993a2b2fcSYong Li                      },
650271584abSEd Tanous                      "None.",
65193a2b2fcSYong Li                  }},
652789771ddSQiang XU     MessageEntry{"LanLost",
653789771ddSQiang XU                  {
654789771ddSQiang XU                      "Indicates that a physical security event "
655789771ddSQiang XU                      "of the LAN leash has lost.",
656789771ddSQiang XU                      "%1 LAN leash lost.",
657789771ddSQiang XU                      "Warning",
658e7808c93SGunnar Mills                      "Warning",
659789771ddSQiang XU                      1,
660789771ddSQiang XU                      {
661789771ddSQiang XU                          "string",
662789771ddSQiang XU                      },
663789771ddSQiang XU                      "None.",
664789771ddSQiang XU                  }},
665789771ddSQiang XU     MessageEntry{"LanRegained",
666789771ddSQiang XU                  {
667789771ddSQiang XU                      "Indicates that LAN link status has reconnected.",
668789771ddSQiang XU                      "%1 LAN leash regained.",
669789771ddSQiang XU                      "OK",
670e7808c93SGunnar Mills                      "OK",
671789771ddSQiang XU                      1,
672789771ddSQiang XU                      {
673789771ddSQiang XU                          "string",
674789771ddSQiang XU                      },
675789771ddSQiang XU                      "None.",
676789771ddSQiang XU                  }},
677271584abSEd Tanous     MessageEntry{"LegacyPCIPERR",
678fbe8378fSJason M. Bills                  {
679271584abSEd Tanous                      "Indicates a Legacy PCI PERR.",
680271584abSEd Tanous                      "Legacy PCI PERR. Bus=%1 Device=%2 Function=%3.",
681271584abSEd Tanous                      "Warning",
682e7808c93SGunnar Mills                      "Warning",
683271584abSEd Tanous                      3,
684271584abSEd Tanous 
685fbe8378fSJason M. Bills                      {
686fbe8378fSJason M. Bills                          "number",
687fbe8378fSJason M. Bills                          "number",
688fbe8378fSJason M. Bills                          "number",
689fbe8378fSJason M. Bills                      },
690271584abSEd Tanous                      "None.",
691fbe8378fSJason M. Bills                  }},
692271584abSEd Tanous     MessageEntry{"LegacyPCISERR",
693fbe8378fSJason M. Bills                  {
694271584abSEd Tanous                      "Indicates a Legacy PCI SERR.",
695271584abSEd Tanous                      "Legacy PCI SERR. Bus=%1 Device=%2 Function=%3.",
696271584abSEd Tanous                      "Critical",
697e7808c93SGunnar Mills                      "Critical",
698271584abSEd Tanous                      3,
699271584abSEd Tanous 
700fbe8378fSJason M. Bills                      {
701fbe8378fSJason M. Bills                          "number",
702fbe8378fSJason M. Bills                          "number",
703fbe8378fSJason M. Bills                          "number",
704fbe8378fSJason M. Bills                      },
705271584abSEd Tanous                      "None.",
706fbe8378fSJason M. Bills                  }},
707fbe8378fSJason M. Bills     MessageEntry{"ManufacturingModeEntered",
708fbe8378fSJason M. Bills                  {
70953d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC entered Factory, "
71053d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
711271584abSEd Tanous                      "Entered Manufacturing Mode.",
71253d9a666SRichard Marian Thomaiyar                      "Critical",
713e7808c93SGunnar Mills                      "Critical",
71453d9a666SRichard Marian Thomaiyar                      0,
71553d9a666SRichard Marian Thomaiyar                      {},
71653d9a666SRichard Marian Thomaiyar                      "None.",
71753d9a666SRichard Marian Thomaiyar                  }},
71853d9a666SRichard Marian Thomaiyar     MessageEntry{"ManufacturingModeExited",
71953d9a666SRichard Marian Thomaiyar                  {
72053d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC exited Factory, "
72153d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
72253d9a666SRichard Marian Thomaiyar                      "Exited Manufacturing Mode.",
72353d9a666SRichard Marian Thomaiyar                      "OK",
724e7808c93SGunnar Mills                      "OK",
725271584abSEd Tanous                      0,
726271584abSEd Tanous                      {},
727271584abSEd Tanous                      "None.",
728fbe8378fSJason M. Bills                  }},
7299aa46454SAgnieszka Szlendak     MessageEntry{"MEAutoConfigFailed",
7309aa46454SAgnieszka Szlendak                  {
7319aa46454SAgnieszka Szlendak                      "Indicates that Intel ME power sensor "
7329aa46454SAgnieszka Szlendak                      "auto-configuration has failed.",
7339aa46454SAgnieszka Szlendak                      "Intel ME power sensor auto-configuration failed. Power "
7349aa46454SAgnieszka Szlendak                      "monitoring, limiting and HW protection features might "
7359aa46454SAgnieszka Szlendak                      "be unavailable. Failure reason: %1",
7369aa46454SAgnieszka Szlendak                      "Critical",
737e7808c93SGunnar Mills                      "Critical",
7389aa46454SAgnieszka Szlendak                      1,
7399aa46454SAgnieszka Szlendak                      {"string"},
7409aa46454SAgnieszka Szlendak                      "Ensure that Intel ME configuration for power "
7419aa46454SAgnieszka Szlendak                      "sources is correct.",
7429aa46454SAgnieszka Szlendak                  }},
7439aa46454SAgnieszka Szlendak     MessageEntry{
7449aa46454SAgnieszka Szlendak         "MEAutoConfigSuccess",
7459aa46454SAgnieszka Szlendak         {
7469aa46454SAgnieszka Szlendak             "Indicates that Intel ME has performed successful "
7479aa46454SAgnieszka Szlendak             "power sensor auto-configuration.",
7489aa46454SAgnieszka Szlendak             "Intel ME power sensor auto-configuration succeeded. "
7499aa46454SAgnieszka Szlendak             "Determined sources for domain readings are: DC Power: %1 ; "
7509aa46454SAgnieszka Szlendak             "Chassis Power: %2 ; PSU Efficiency: %3 ; Unamanaged power: %4",
7519aa46454SAgnieszka Szlendak             "OK",
752e7808c93SGunnar Mills             "OK",
7539aa46454SAgnieszka Szlendak             4,
7549aa46454SAgnieszka Szlendak             {"string", "string", "string", "string"},
7559aa46454SAgnieszka Szlendak             "None.",
7569aa46454SAgnieszka Szlendak         }},
7579aa46454SAgnieszka Szlendak     MessageEntry{"MEBootGuardHealthEvent",
7589aa46454SAgnieszka Szlendak                  {
7599aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has detected error during "
7609aa46454SAgnieszka Szlendak                      "operations of Intel Boot Guard",
7619aa46454SAgnieszka Szlendak                      "Intel ME has detected following issue with Intel Boot "
7629aa46454SAgnieszka Szlendak                      "Guard: %1",
7639aa46454SAgnieszka Szlendak                      "Critical",
764e7808c93SGunnar Mills                      "Critical",
7659aa46454SAgnieszka Szlendak                      1,
7669aa46454SAgnieszka Szlendak                      {"string"},
7679aa46454SAgnieszka Szlendak                      "None.",
7689aa46454SAgnieszka Szlendak                  }},
7699aa46454SAgnieszka Szlendak     MessageEntry{"MECpuDebugCapabilityDisabled",
7709aa46454SAgnieszka Szlendak                  {
7719aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has detected situation in "
7729aa46454SAgnieszka Szlendak                      "which CPU Debug Capability is disabled.",
7739aa46454SAgnieszka Szlendak                      "CPU Debug Capability disabled",
7749aa46454SAgnieszka Szlendak                      "Warning",
775e7808c93SGunnar Mills                      "Warning",
7769aa46454SAgnieszka Szlendak                      0,
7779aa46454SAgnieszka Szlendak                      {},
7789aa46454SAgnieszka Szlendak                      "None.",
7799aa46454SAgnieszka Szlendak                  }},
7809aa46454SAgnieszka Szlendak     MessageEntry{"MEDirectFlashUpdateRequested",
7819aa46454SAgnieszka Szlendak                  {
7829aa46454SAgnieszka Szlendak                      "Indicates that BIOS has requested Direct Flash "
7839aa46454SAgnieszka Szlendak                      "Update (DFU) of Intel ME",
7849aa46454SAgnieszka Szlendak                      "Intel ME Firmware switched to recovery mode to perform "
7859aa46454SAgnieszka Szlendak                      "full update from BIOS.",
7869aa46454SAgnieszka Szlendak                      "OK",
787e7808c93SGunnar Mills                      "OK",
7889aa46454SAgnieszka Szlendak                      0,
7899aa46454SAgnieszka Szlendak                      {},
7909aa46454SAgnieszka Szlendak                      "This is transient state. Intel ME Firmware should "
7919aa46454SAgnieszka Szlendak                      "return to operational mode after successful image "
7929aa46454SAgnieszka Szlendak                      "update performed by the BIOS.",
7939aa46454SAgnieszka Szlendak                  }},
7949aa46454SAgnieszka Szlendak     MessageEntry{
7959aa46454SAgnieszka Szlendak         "MEExceptionDuringShutdown",
7969aa46454SAgnieszka Szlendak         {
7979aa46454SAgnieszka Szlendak             "Indicates that Intel ME could not successfully "
7989aa46454SAgnieszka Szlendak             "perform emergency host shutdown.",
7999aa46454SAgnieszka Szlendak             "Power Down command triggered by Intel Node Manager policy "
8009aa46454SAgnieszka Szlendak             "failure action and Intel ME forced shutdown. BMC probably did "
8019aa46454SAgnieszka Szlendak             "not respond correctly to Chassis Control.",
8029aa46454SAgnieszka Szlendak             "Warning",
803e7808c93SGunnar Mills             "Warning",
8049aa46454SAgnieszka Szlendak             0,
8059aa46454SAgnieszka Szlendak             {},
8069aa46454SAgnieszka Szlendak             "Verify the Intel Node Manager policy configuration.",
8079aa46454SAgnieszka Szlendak         }},
8089aa46454SAgnieszka Szlendak     MessageEntry{
8099aa46454SAgnieszka Szlendak         "MEFactoryResetError",
8109aa46454SAgnieszka Szlendak         {
8119aa46454SAgnieszka Szlendak             "Indicates that Intel ME has ben restored to factory preset.",
8129aa46454SAgnieszka Szlendak             "Intel ME has performed automatic reset to factory "
8139aa46454SAgnieszka Szlendak             "presets due to following reason: %1",
8149aa46454SAgnieszka Szlendak             "Critical",
815e7808c93SGunnar Mills             "Critical",
8169aa46454SAgnieszka Szlendak             1,
8179aa46454SAgnieszka Szlendak             {"string"},
8189aa46454SAgnieszka Szlendak             "If error is persistent the Flash device must be replaced.",
8199aa46454SAgnieszka Szlendak         }},
8209aa46454SAgnieszka Szlendak     MessageEntry{
8219aa46454SAgnieszka Szlendak         "MEFactoryRestore",
8229aa46454SAgnieszka Szlendak         {
8239aa46454SAgnieszka Szlendak             "Indicates that Intel ME has ben restored to factory preset.",
8249aa46454SAgnieszka Szlendak             "Intel ME has performed automatic reset to factory "
8259aa46454SAgnieszka Szlendak             "presets due to following reason: %1",
8269aa46454SAgnieszka Szlendak             "OK",
827e7808c93SGunnar Mills             "OK",
8289aa46454SAgnieszka Szlendak             1,
8299aa46454SAgnieszka Szlendak             {"string"},
8309aa46454SAgnieszka Szlendak             "If error is persistent the Flash device must be replaced.",
8319aa46454SAgnieszka Szlendak         }},
8329aa46454SAgnieszka Szlendak     MessageEntry{
8339aa46454SAgnieszka Szlendak         "MEFirmwareException",
8349aa46454SAgnieszka Szlendak         {
8359aa46454SAgnieszka Szlendak             "Indicates that Intel ME has encountered firmware "
8369aa46454SAgnieszka Szlendak             "exception during execution.",
8379aa46454SAgnieszka Szlendak             "Intel ME has encountered firmware exception. Error code = %1",
8389aa46454SAgnieszka Szlendak             "Warning",
839e7808c93SGunnar Mills             "Warning",
8409aa46454SAgnieszka Szlendak             1,
8419aa46454SAgnieszka Szlendak             {"string"},
8429aa46454SAgnieszka Szlendak             "Restore factory presets using Force ME Recovery IPMI "
8439aa46454SAgnieszka Szlendak             "command or by doing AC power cycle with Recovery jumper "
8449aa46454SAgnieszka Szlendak             "asserted. If this does not clear the issue, reflash the SPI "
8459aa46454SAgnieszka Szlendak             "flash. If the issue persists, provide the content of error "
8469aa46454SAgnieszka Szlendak             "code to Intel support team for interpretation. (Error codes "
8479aa46454SAgnieszka Szlendak             "are not documented because they only provide clues that must "
8489aa46454SAgnieszka Szlendak             "be interpreted individually..",
8499aa46454SAgnieszka Szlendak         }},
8500c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwarePanicReason",
8510c0f18e7SAppaRao Puli                  {
8520c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware panic.",
8530c0f18e7SAppaRao Puli                      "ME firmware panic occurred due to %1.",
8540c0f18e7SAppaRao Puli                      "Warning",
855e7808c93SGunnar Mills                      "Warning",
8560c0f18e7SAppaRao Puli                      1,
8570c0f18e7SAppaRao Puli                      {
8580c0f18e7SAppaRao Puli                          "string",
8590c0f18e7SAppaRao Puli                      },
8600c0f18e7SAppaRao Puli                      "None.",
8610c0f18e7SAppaRao Puli                  }},
8620c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareRecoveryReason",
8630c0f18e7SAppaRao Puli                  {
8640c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware recovery.",
8650c0f18e7SAppaRao Puli                      "ME firmware recovery occurred due to %1.",
8660c0f18e7SAppaRao Puli                      "Warning",
867e7808c93SGunnar Mills                      "Warning",
8680c0f18e7SAppaRao Puli                      1,
8690c0f18e7SAppaRao Puli                      {
8700c0f18e7SAppaRao Puli                          "string",
8710c0f18e7SAppaRao Puli                      },
8720c0f18e7SAppaRao Puli                      "None.",
8730c0f18e7SAppaRao Puli                  }},
8740c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareResiliencyError",
8750c0f18e7SAppaRao Puli                  {
8760c0f18e7SAppaRao Puli                      "Indicates ME firmware encountered resilience error.",
8770c0f18e7SAppaRao Puli                      "ME firmware resiliency error. Error reason: %1.",
8780c0f18e7SAppaRao Puli                      "Critical",
879e7808c93SGunnar Mills                      "Critical",
8800c0f18e7SAppaRao Puli                      1,
8810c0f18e7SAppaRao Puli                      {
8820c0f18e7SAppaRao Puli                          "string",
8830c0f18e7SAppaRao Puli                      },
8840c0f18e7SAppaRao Puli                      "None.",
8850c0f18e7SAppaRao Puli                  }},
8869aa46454SAgnieszka Szlendak 
8879aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashEraseError",
8889aa46454SAgnieszka Szlendak                  {
8899aa46454SAgnieszka Szlendak                      "Indicates that Intel ME was unable to finish flash "
8909aa46454SAgnieszka Szlendak                      "erase procedure.",
8919aa46454SAgnieszka Szlendak                      "Intel ME has encountered an error during Flash erasure "
8929aa46454SAgnieszka Szlendak                      "procedure probably due to Flash part corruption.",
8939aa46454SAgnieszka Szlendak                      "Critical",
894e7808c93SGunnar Mills                      "Critical",
8959aa46454SAgnieszka Szlendak                      0,
8969aa46454SAgnieszka Szlendak                      {},
8979aa46454SAgnieszka Szlendak                      "The Flash device must be replaced.",
8989aa46454SAgnieszka Szlendak                  }},
8999aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashStateInformation",
9009aa46454SAgnieszka Szlendak                  {
9019aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered a problem "
9029aa46454SAgnieszka Szlendak                      "during IO to flash device.",
9039aa46454SAgnieszka Szlendak                      "Intel ME has encountered problem during IO to flash "
9049aa46454SAgnieszka Szlendak                      "device. Reason: %1",
9059aa46454SAgnieszka Szlendak                      "Critical",
906e7808c93SGunnar Mills                      "Critical",
9079aa46454SAgnieszka Szlendak                      1,
9089aa46454SAgnieszka Szlendak                      {"string"},
9099aa46454SAgnieszka Szlendak                      "If flash wear-out protection occurred wait until it "
9109aa46454SAgnieszka Szlendak                      "expires. Otherwise - flash device must be replaced.",
9119aa46454SAgnieszka Szlendak                  }},
9129aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashStateInformationWritingEnabled",
9139aa46454SAgnieszka Szlendak                  {
9149aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered a problem "
9159aa46454SAgnieszka Szlendak                      "during IO to flash device.",
9169aa46454SAgnieszka Szlendak                      "Intel ME has encountered problem during IO to flash "
9179aa46454SAgnieszka Szlendak                      "device. Reason: %1",
9189aa46454SAgnieszka Szlendak                      "OK",
919e7808c93SGunnar Mills                      "OK",
9209aa46454SAgnieszka Szlendak                      1,
9219aa46454SAgnieszka Szlendak                      {"string"},
9229aa46454SAgnieszka Szlendak                      "If flash wear-out protection occurred wait until it "
9239aa46454SAgnieszka Szlendak                      "expires. Otherwise - flash device must be replaced.",
9249aa46454SAgnieszka Szlendak                  }},
9259aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashVerificationError",
9269aa46454SAgnieszka Szlendak                  {
9279aa46454SAgnieszka Szlendak                      "Indicates that Intel ME encountered invalid flash "
9289aa46454SAgnieszka Szlendak                      "descriptor region.",
9299aa46454SAgnieszka Szlendak                      "Intel ME has detected invalid flash descriptor region. "
9309aa46454SAgnieszka Szlendak                      "Following error is detected: %1",
9319aa46454SAgnieszka Szlendak                      "Critical",
932e7808c93SGunnar Mills                      "Critical",
9339aa46454SAgnieszka Szlendak                      1,
9349aa46454SAgnieszka Szlendak                      {"string"},
9359aa46454SAgnieszka Szlendak                      "Flash Descriptor Region must be created correctly.",
9369aa46454SAgnieszka Szlendak                  }},
9379aa46454SAgnieszka Szlendak     MessageEntry{
9389aa46454SAgnieszka Szlendak         "MEFlashWearOutWarning",
9399aa46454SAgnieszka Szlendak         {
9409aa46454SAgnieszka Szlendak             "Indicates that Intel ME has reached certain "
9419aa46454SAgnieszka Szlendak             "threshold of flash write operations.",
9429aa46454SAgnieszka Szlendak             "Warning threshold for number of flash operations has been "
9439aa46454SAgnieszka Szlendak             "exceeded. Current percentage of write operations capacity: %1",
9449aa46454SAgnieszka Szlendak             "Warning",
945e7808c93SGunnar Mills             "Warning",
9469aa46454SAgnieszka Szlendak             1,
9479aa46454SAgnieszka Szlendak             {"number"},
9489aa46454SAgnieszka Szlendak             "No immediate repair action needed.",
9499aa46454SAgnieszka Szlendak         }},
9509aa46454SAgnieszka Szlendak 
9519aa46454SAgnieszka Szlendak     MessageEntry{
9529aa46454SAgnieszka Szlendak         "MEImageExecutionFailed",
9539aa46454SAgnieszka Szlendak         {
9549aa46454SAgnieszka Szlendak             "Indicates that Intel ME could not load primary FW image.",
9559aa46454SAgnieszka Szlendak             "Intel ME Recovery Image or backup operational image "
9569aa46454SAgnieszka Szlendak             "loaded because operational image is corrupted. This "
9579aa46454SAgnieszka Szlendak             "may be either caused by Flash device corruption or "
9589aa46454SAgnieszka Szlendak             "failed upgrade procedure.",
9599aa46454SAgnieszka Szlendak             "Critical",
960e7808c93SGunnar Mills             "Critical",
9619aa46454SAgnieszka Szlendak             0,
9629aa46454SAgnieszka Szlendak             {},
9639aa46454SAgnieszka Szlendak             "Either the Flash device must be replaced (if error is "
9649aa46454SAgnieszka Szlendak             "persistent) or the upgrade procedure must be started again.",
9659aa46454SAgnieszka Szlendak         }},
9669aa46454SAgnieszka Szlendak 
9679aa46454SAgnieszka Szlendak     MessageEntry{
9689aa46454SAgnieszka Szlendak         "MEInternalError",
9699aa46454SAgnieszka Szlendak         {
9709aa46454SAgnieszka Szlendak             "Indicates that Intel ME encountered "
9719aa46454SAgnieszka Szlendak             "internal error leading to watchdog reset.",
9729aa46454SAgnieszka Szlendak             "Error during Intel ME execution. Watchdog "
9739aa46454SAgnieszka Szlendak             "timeout has expired.",
9749aa46454SAgnieszka Szlendak             "Critical",
975e7808c93SGunnar Mills             "Critical",
9769aa46454SAgnieszka Szlendak             0,
9779aa46454SAgnieszka Szlendak             {},
9789aa46454SAgnieszka Szlendak             "Firmware should automatically recover from error state. "
9799aa46454SAgnieszka Szlendak             "If error is persistent then operational image shall be updated "
9809aa46454SAgnieszka Szlendak             "or hardware board repair is needed.",
9819aa46454SAgnieszka Szlendak         }},
9829aa46454SAgnieszka Szlendak     MessageEntry{"MEManufacturingError",
9839aa46454SAgnieszka Szlendak                  {
9849aa46454SAgnieszka Szlendak                      "Indicates that Intel ME is unable to start in "
9859aa46454SAgnieszka Szlendak                      "operational mode due to wrong configuration.",
9869aa46454SAgnieszka Szlendak                      "Wrong manufacturing configuration detected by Intel ME "
9879aa46454SAgnieszka Szlendak                      "Firmware. Unable to start operational mode. Reason: %1",
9889aa46454SAgnieszka Szlendak                      "Critical",
989e7808c93SGunnar Mills                      "Critical",
9909aa46454SAgnieszka Szlendak                      1,
9919aa46454SAgnieszka Szlendak                      {"string"},
9929aa46454SAgnieszka Szlendak                      " If error is persistent the Flash device must be "
9939aa46454SAgnieszka Szlendak                      "replaced or FW configuration must be updated. Trace "
9949aa46454SAgnieszka Szlendak                      "logs might be gathered for detailed information.",
9959aa46454SAgnieszka Szlendak                  }},
9969aa46454SAgnieszka Szlendak     MessageEntry{"MEMctpInterfaceError",
9979aa46454SAgnieszka Szlendak                  {
9989aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered an error "
9999aa46454SAgnieszka Szlendak                      "in MCTP protocol.",
10009aa46454SAgnieszka Szlendak                      "Intel ME has detected MCTP interface failure and it is "
10019aa46454SAgnieszka Szlendak                      "not functional any more. It may indicate the situation "
10029aa46454SAgnieszka Szlendak                      "when MCTP was not configured by BIOS or a defect which "
10039aa46454SAgnieszka Szlendak                      "may need a Host reset to recover from. Details: %1",
10049aa46454SAgnieszka Szlendak                      "Critical",
1005e7808c93SGunnar Mills                      "Critical",
10069aa46454SAgnieszka Szlendak                      1,
10079aa46454SAgnieszka Szlendak                      {"string"},
10089aa46454SAgnieszka Szlendak                      "Recovery via CPU Host reset or platform reset. If error "
10099aa46454SAgnieszka Szlendak                      "is persistent, deep-dive platform-level debugging is "
10109aa46454SAgnieszka Szlendak                      "required.",
10119aa46454SAgnieszka Szlendak                  }},
1012fbe8378fSJason M. Bills     MessageEntry{"MemoryECCCorrectable",
1013fbe8378fSJason M. Bills                  {
1014271584abSEd Tanous                      "Indicates a Correctable Memory ECC error.",
1015271584abSEd Tanous                      "Memory ECC correctable error. Socket=%1 "
1016fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Rank=%4.",
1017271584abSEd Tanous                      "Warning",
1018e7808c93SGunnar Mills                      "Warning",
1019271584abSEd Tanous                      4,
1020271584abSEd Tanous 
1021fbe8378fSJason M. Bills                      {
1022fbe8378fSJason M. Bills                          "number",
1023fbe8378fSJason M. Bills                          "string",
1024fbe8378fSJason M. Bills                          "number",
1025fbe8378fSJason M. Bills                          "number",
1026fbe8378fSJason M. Bills                      },
1027271584abSEd Tanous                      "None.",
1028fbe8378fSJason M. Bills                  }},
1029271584abSEd Tanous     MessageEntry{"MemoryECCUncorrectable",
1030fbe8378fSJason M. Bills                  {
1031271584abSEd Tanous                      "Indicates an Uncorrectable Memory ECC error.",
1032271584abSEd Tanous                      "Memory ECC uncorrectable error. Socket=%1 Channel=%2 "
1033fbe8378fSJason M. Bills                      "DIMM=%3 Rank=%4.",
1034271584abSEd Tanous                      "Critical",
1035e7808c93SGunnar Mills                      "Critical",
1036271584abSEd Tanous                      4,
1037271584abSEd Tanous 
1038fbe8378fSJason M. Bills                      {
1039fbe8378fSJason M. Bills                          "number",
1040fbe8378fSJason M. Bills                          "string",
1041fbe8378fSJason M. Bills                          "number",
1042fbe8378fSJason M. Bills                          "number",
1043fbe8378fSJason M. Bills                      },
1044271584abSEd Tanous                      "None.",
1045fbe8378fSJason M. Bills                  }},
1046271584abSEd Tanous     MessageEntry{"MemoryParityCommandAndAddress",
1047fbe8378fSJason M. Bills                  {
1048271584abSEd Tanous                      "Indicates a Command and Address parity error.",
1049271584abSEd Tanous                      "Command and Address parity error. Socket=%1 Channel=%2 "
1050fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
1051271584abSEd Tanous                      "Critical",
1052e7808c93SGunnar Mills                      "Critical",
1053271584abSEd Tanous                      5,
1054271584abSEd Tanous 
1055fbe8378fSJason M. Bills                      {
1056fbe8378fSJason M. Bills                          "number",
1057fbe8378fSJason M. Bills                          "string",
1058fbe8378fSJason M. Bills                          "number",
1059fbe8378fSJason M. Bills                          "number",
1060fbe8378fSJason M. Bills                          "number",
1061fbe8378fSJason M. Bills                      },
1062271584abSEd Tanous                      "None.",
1063fbe8378fSJason M. Bills                  }},
1064fbe8378fSJason M. Bills     MessageEntry{"MemoryParityNotKnown",
1065fbe8378fSJason M. Bills                  {
1066271584abSEd Tanous                      "Indicates an unknown parity error.",
1067271584abSEd Tanous                      "Memory parity error. Socket=%1 Channel=%2 "
1068fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
1069271584abSEd Tanous                      "Critical",
1070e7808c93SGunnar Mills                      "Critical",
1071271584abSEd Tanous                      5,
1072271584abSEd Tanous 
1073fbe8378fSJason M. Bills                      {
1074fbe8378fSJason M. Bills                          "number",
1075fbe8378fSJason M. Bills                          "string",
1076fbe8378fSJason M. Bills                          "number",
1077fbe8378fSJason M. Bills                          "number",
1078fbe8378fSJason M. Bills                          "number",
1079fbe8378fSJason M. Bills                      },
1080271584abSEd Tanous                      "None.",
1081fbe8378fSJason M. Bills                  }},
1082271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationDisabled",
1083fbe8378fSJason M. Bills                  {
1084fbe8378fSJason M. Bills                      "Indicates Memory RAS Disabled Configuration Status.",
1085271584abSEd Tanous                      "Memory RAS Configuration Disabled. Error=%1 Mode=%2.",
1086271584abSEd Tanous                      "OK",
1087e7808c93SGunnar Mills                      "OK",
1088271584abSEd Tanous                      2,
1089271584abSEd Tanous 
1090fbe8378fSJason M. Bills                      {
1091fbe8378fSJason M. Bills                          "string",
1092fbe8378fSJason M. Bills                          "string",
1093fbe8378fSJason M. Bills                      },
1094271584abSEd Tanous                      "None.",
1095fbe8378fSJason M. Bills                  }},
1096271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationEnabled",
1097fbe8378fSJason M. Bills                  {
1098271584abSEd Tanous                      "Indicates Memory RAS Enabled Configuration Status.",
1099271584abSEd Tanous                      "Memory RAS Configuration Enabled. Error=%1 Mode=%2.",
1100271584abSEd Tanous                      "OK",
1101e7808c93SGunnar Mills                      "OK",
1102271584abSEd Tanous                      2,
1103271584abSEd Tanous 
1104fbe8378fSJason M. Bills                      {
1105fbe8378fSJason M. Bills                          "string",
1106fbe8378fSJason M. Bills                          "string",
1107fbe8378fSJason M. Bills                      },
1108271584abSEd Tanous                      "None.",
1109fbe8378fSJason M. Bills                  }},
1110271584abSEd Tanous     MessageEntry{"MemoryRASModeDisabled",
1111fbe8378fSJason M. Bills                  {
1112271584abSEd Tanous                      "Indicates Memory RAS Disabled Mode Selection.",
1113271584abSEd Tanous                      "Memory RAS Mode Select Disabled. Prior Mode=%1 "
1114fbe8378fSJason M. Bills                      "Selected Mode=%2.",
1115271584abSEd Tanous                      "OK",
1116e7808c93SGunnar Mills                      "OK",
1117271584abSEd Tanous                      2,
1118271584abSEd Tanous 
1119fbe8378fSJason M. Bills                      {
1120fbe8378fSJason M. Bills                          "string",
1121fbe8378fSJason M. Bills                          "string",
1122fbe8378fSJason M. Bills                      },
1123271584abSEd Tanous                      "None.",
1124fbe8378fSJason M. Bills                  }},
1125271584abSEd Tanous     MessageEntry{"MemoryRASModeEnabled",
1126fbe8378fSJason M. Bills                  {
1127271584abSEd Tanous                      "Indicates Memory RAS Enabled Mode Selection.",
1128271584abSEd Tanous                      "Memory RAS Mode Select Enabled. Prior Mode=%1 Selected "
1129fbe8378fSJason M. Bills                      "Mode=%2.",
1130271584abSEd Tanous                      "OK",
1131e7808c93SGunnar Mills                      "OK",
1132271584abSEd Tanous                      2,
1133271584abSEd Tanous 
1134fbe8378fSJason M. Bills                      {
1135fbe8378fSJason M. Bills                          "string",
1136fbe8378fSJason M. Bills                          "string",
1137fbe8378fSJason M. Bills                      },
1138271584abSEd Tanous                      "None.",
1139fbe8378fSJason M. Bills                  }},
1140271584abSEd Tanous     MessageEntry{"MemoryThermTrip",
1141fbe8378fSJason M. Bills                  {
1142bc6be237Sjayaprakash Mutyala                      "Indicates that the system memory ThermTrip is asserted "
1143bc6be237Sjayaprakash Mutyala                      "by the specified component.",
1144bc6be237Sjayaprakash Mutyala                      "Memory ThermTrip asserted: %1.",
1145271584abSEd Tanous                      "Critical",
1146e7808c93SGunnar Mills                      "Critical",
1147bc6be237Sjayaprakash Mutyala                      1,
1148bc6be237Sjayaprakash Mutyala                      {"string"},
1149271584abSEd Tanous                      "None.",
1150fbe8378fSJason M. Bills                  }},
11519aa46454SAgnieszka Szlendak     MessageEntry{"MEMultiPchModeMisconfig",
11529aa46454SAgnieszka Szlendak                  {
11539aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered "
11549aa46454SAgnieszka Szlendak                      "problems in initializing Multi-PCH mode.",
11559aa46454SAgnieszka Szlendak                      "Intel ME error in Multi-PCH mode: %1",
11569aa46454SAgnieszka Szlendak                      "Critical",
1157e7808c93SGunnar Mills                      "Critical",
11589aa46454SAgnieszka Szlendak                      1,
11599aa46454SAgnieszka Szlendak                      {"string"},
11609aa46454SAgnieszka Szlendak                      "None.",
11619aa46454SAgnieszka Szlendak                  }},
11629aa46454SAgnieszka Szlendak     MessageEntry{
11639aa46454SAgnieszka Szlendak         "MEPeciOverDmiError",
11649aa46454SAgnieszka Szlendak         {
11659aa46454SAgnieszka Szlendak             "Indicates that Intel ME is unable to communicate "
11669aa46454SAgnieszka Szlendak             "using PECI over DMI.",
11679aa46454SAgnieszka Szlendak             "Intel ME has detected  PECI over DMI interface failure "
11689aa46454SAgnieszka Szlendak             "and it is not functional any more. It may indicate the "
11699aa46454SAgnieszka Szlendak             "situation when PECI over DMI was not configured by "
11709aa46454SAgnieszka Szlendak             "BIOS or a defect which may require a CPU Host reset to "
11719aa46454SAgnieszka Szlendak             "recover from. Details: %1",
11729aa46454SAgnieszka Szlendak             "Critical",
1173e7808c93SGunnar Mills             "Critical",
11749aa46454SAgnieszka Szlendak             1,
11759aa46454SAgnieszka Szlendak             {"string"},
11769aa46454SAgnieszka Szlendak             "Recovery via CPU Host reset or platform reset. If error is "
11779aa46454SAgnieszka Szlendak             "persistent, deep-dive platform-level debugging is required.",
11789aa46454SAgnieszka Szlendak         }},
11799aa46454SAgnieszka Szlendak     MessageEntry{
11809aa46454SAgnieszka Szlendak         "MEPttHealthEvent",
11819aa46454SAgnieszka Szlendak         {
11829aa46454SAgnieszka Szlendak             "Indicates that Intel ME has encountered issue with Intel PTT",
11839aa46454SAgnieszka Szlendak             "Intel ME has detected following issue with Intel PTT: %1",
11849aa46454SAgnieszka Szlendak             "Warning",
1185e7808c93SGunnar Mills             "Warning",
11869aa46454SAgnieszka Szlendak             1,
11879aa46454SAgnieszka Szlendak             {"string"},
11889aa46454SAgnieszka Szlendak             "None.",
11899aa46454SAgnieszka Szlendak         }},
11909aa46454SAgnieszka Szlendak     MessageEntry{
11919aa46454SAgnieszka Szlendak         "MERecoveryGpioForced",
11929aa46454SAgnieszka Szlendak         {
11939aa46454SAgnieszka Szlendak             "Indicates that Intel ME image is booted in "
11949aa46454SAgnieszka Szlendak             "recovery mode due to GPIO assertion.",
11959aa46454SAgnieszka Szlendak             "Intel ME Recovery Image loaded due to recovery MGPIO "
11969aa46454SAgnieszka Szlendak             "pin asserted. Pin number is configurable in factory "
11979aa46454SAgnieszka Szlendak             "presets, Default recovery pin is MGPIO1.",
11989aa46454SAgnieszka Szlendak             "OK",
1199e7808c93SGunnar Mills             "OK",
12009aa46454SAgnieszka Szlendak             0,
12019aa46454SAgnieszka Szlendak             {},
12029aa46454SAgnieszka Szlendak             "Deassert recovery GPIO and reset the Intel ME back to "
12039aa46454SAgnieszka Szlendak             "operational mode. If Recovery Jumper is in legacy behavior, "
12049aa46454SAgnieszka Szlendak             "a ME reset (eg. Cold Reset IPMI cmd) is needed to have ME "
12059aa46454SAgnieszka Szlendak             "back in operational mode.",
12069aa46454SAgnieszka Szlendak         }},
12079aa46454SAgnieszka Szlendak     MessageEntry{"MERestrictedMode",
12089aa46454SAgnieszka Szlendak                  {
12099aa46454SAgnieszka Szlendak                      "Indicates events related to Intel ME restricted mode.",
12109aa46454SAgnieszka Szlendak                      "Intel ME restricted mode information: %1",
12119aa46454SAgnieszka Szlendak                      "Critical",
1212e7808c93SGunnar Mills                      "Critical",
12139aa46454SAgnieszka Szlendak                      1,
12149aa46454SAgnieszka Szlendak                      {"string"},
12159aa46454SAgnieszka Szlendak                      "None.",
12169aa46454SAgnieszka Szlendak                  }},
12179aa46454SAgnieszka Szlendak     MessageEntry{
12189aa46454SAgnieszka Szlendak         "MESmbusLinkFailure",
12199aa46454SAgnieszka Szlendak         {
12209aa46454SAgnieszka Szlendak             "Indicate that Intel ME encountered SMBus link error.",
12219aa46454SAgnieszka Szlendak             "Intel ME has detected SMBus link error. "
12229aa46454SAgnieszka Szlendak             "Sensor Bus: %1 , MUX Address: %2 ",
12239aa46454SAgnieszka Szlendak             "Critical",
1224e7808c93SGunnar Mills             "Critical",
12259aa46454SAgnieszka Szlendak             2,
12269aa46454SAgnieszka Szlendak             {"string", "string"},
12279aa46454SAgnieszka Szlendak             "Devices connected to given SMLINK might cause communication "
12289aa46454SAgnieszka Szlendak             "corruption. See error code and refer to Intel ME External "
12299aa46454SAgnieszka Szlendak             "Interfaces Specification for details.",
12309aa46454SAgnieszka Szlendak         }},
12319aa46454SAgnieszka Szlendak     MessageEntry{
12329aa46454SAgnieszka Szlendak         "MEUmaError",
12339aa46454SAgnieszka Szlendak         {
12349aa46454SAgnieszka Szlendak             "Indicates that Intel ME has encountered UMA operation error.",
12359aa46454SAgnieszka Szlendak             "Intel ME has encountered UMA operation error. Details: %1",
12369aa46454SAgnieszka Szlendak             "Critical",
1237e7808c93SGunnar Mills             "Critical",
12389aa46454SAgnieszka Szlendak             1,
12399aa46454SAgnieszka Szlendak             {"string"},
12409aa46454SAgnieszka Szlendak             "Platform reset when UMA not configured correctly, or when "
12419aa46454SAgnieszka Szlendak             "error occurred during normal operation on correctly "
12429aa46454SAgnieszka Szlendak             "configured UMA multiple times leading to Intel ME entering "
12439aa46454SAgnieszka Szlendak             "Recovery or restricted operational mode.",
12449aa46454SAgnieszka Szlendak         }},
12459aa46454SAgnieszka Szlendak     MessageEntry{"MEUnsupportedFeature",
12469aa46454SAgnieszka Szlendak                  {
12479aa46454SAgnieszka Szlendak                      "Indicates that Intel ME is configuration with "
12489aa46454SAgnieszka Szlendak                      "feature which is not supported on this platform.",
12499aa46454SAgnieszka Szlendak                      "Feature not supported in current segment detected by "
12509aa46454SAgnieszka Szlendak                      "Intel ME Firmware. Details: %1",
12519aa46454SAgnieszka Szlendak                      "Critical",
1252e7808c93SGunnar Mills                      "Critical",
12539aa46454SAgnieszka Szlendak                      1,
12549aa46454SAgnieszka Szlendak                      {"string"},
12559aa46454SAgnieszka Szlendak                      "Proper FW configuration must be updated or use the "
12569aa46454SAgnieszka Szlendak                      "Flash device with proper FW configuration",
12579aa46454SAgnieszka Szlendak                  }},
1258271584abSEd Tanous     MessageEntry{"MirroringRedundancyDegraded",
1259fbe8378fSJason M. Bills                  {
1260fbe8378fSJason M. Bills                      "Indicates the mirroring redundancy state is degraded.",
1261271584abSEd Tanous                      "Mirroring redundancy state degraded. Socket=%1 "
1262fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
1263271584abSEd Tanous                      "Warning",
1264e7808c93SGunnar Mills                      "Warning",
1265271584abSEd Tanous                      5,
1266271584abSEd Tanous 
1267fbe8378fSJason M. Bills                      {
1268fbe8378fSJason M. Bills                          "number",
1269fbe8378fSJason M. Bills                          "string",
1270fbe8378fSJason M. Bills                          "number",
1271fbe8378fSJason M. Bills                          "number",
1272fbe8378fSJason M. Bills                          "number",
1273fbe8378fSJason M. Bills                      },
1274271584abSEd Tanous                      "None.",
1275fbe8378fSJason M. Bills                  }},
1276fbe8378fSJason M. Bills     MessageEntry{
1277fbe8378fSJason M. Bills         "MirroringRedundancyFull",
1278fbe8378fSJason M. Bills         {
1279fbe8378fSJason M. Bills             "Indicates the mirroring redundancy state is fully redundant.",
1280271584abSEd Tanous             "Mirroring redundancy state fully redundant. Socket=%1 "
1281fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
1282271584abSEd Tanous             "OK",
1283e7808c93SGunnar Mills             "OK",
1284271584abSEd Tanous             5,
1285271584abSEd Tanous 
1286fbe8378fSJason M. Bills             {
1287fbe8378fSJason M. Bills                 "number",
1288fbe8378fSJason M. Bills                 "string",
1289fbe8378fSJason M. Bills                 "number",
1290fbe8378fSJason M. Bills                 "number",
1291fbe8378fSJason M. Bills                 "number",
1292fbe8378fSJason M. Bills             },
1293271584abSEd Tanous             "None.",
1294fbe8378fSJason M. Bills         }},
1295271584abSEd Tanous     MessageEntry{"NMIButtonPressed",
1296fbe8378fSJason M. Bills                  {
1297271584abSEd Tanous                      "Indicates that the NMI button was pressed.",
1298271584abSEd Tanous                      "NMI Button Pressed.",
1299271584abSEd Tanous                      "Critical",
1300e7808c93SGunnar Mills                      "Critical",
1301271584abSEd Tanous                      0,
1302271584abSEd Tanous                      {},
1303271584abSEd Tanous                      "None.",
1304fbe8378fSJason M. Bills                  }},
1305b76f9ca1SChen,Yugang     MessageEntry{"NMIDiagnosticInterrupt",
1306b76f9ca1SChen,Yugang                  {
1307271584abSEd Tanous                      "Indicates that an NMI Diagnostic "
1308b76f9ca1SChen,Yugang                      "Interrupt has been generated.",
1309271584abSEd Tanous                      "NMI Diagnostic Interrupt.",
1310271584abSEd Tanous                      "Critical",
1311e7808c93SGunnar Mills                      "Critical",
1312271584abSEd Tanous                      0,
1313271584abSEd Tanous                      {},
1314271584abSEd Tanous                      "None.",
1315b76f9ca1SChen,Yugang                  }},
1316271584abSEd Tanous     MessageEntry{"PCIeCorrectableAdvisoryNonFatal",
1317fbe8378fSJason M. Bills                  {
1318fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Advisory Non-fatal Error.",
1319271584abSEd Tanous                      "PCIe Correctable Advisory Non-fatal Error. Bus=%1 "
1320fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1321271584abSEd Tanous                      "Warning",
1322e7808c93SGunnar Mills                      "Warning",
1323271584abSEd Tanous                      3,
1324271584abSEd Tanous 
1325fbe8378fSJason M. Bills                      {
1326fbe8378fSJason M. Bills                          "number",
1327fbe8378fSJason M. Bills                          "number",
1328fbe8378fSJason M. Bills                          "number",
1329fbe8378fSJason M. Bills                      },
1330271584abSEd Tanous                      "None.",
1331fbe8378fSJason M. Bills                  }},
1332271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadDLLP",
1333fbe8378fSJason M. Bills                  {
1334271584abSEd Tanous                      "Indicates a PCIe Correctable Bad DLLP Error.",
1335271584abSEd Tanous 
1336fbe8378fSJason M. Bills                      "PCIe Correctable Bad DLLP. Bus=%1 Device=%2 Function=%3.",
1337271584abSEd Tanous                      "Warning",
1338e7808c93SGunnar Mills                      "Warning",
1339271584abSEd Tanous                      3,
1340271584abSEd Tanous 
1341fbe8378fSJason M. Bills                      {
1342fbe8378fSJason M. Bills                          "number",
1343fbe8378fSJason M. Bills                          "number",
1344fbe8378fSJason M. Bills                          "number",
1345fbe8378fSJason M. Bills                      },
1346271584abSEd Tanous                      "None.",
1347fbe8378fSJason M. Bills                  }},
1348271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadTLP",
1349fbe8378fSJason M. Bills                  {
1350271584abSEd Tanous                      "Indicates a PCIe Correctable Bad TLP Error.",
1351271584abSEd Tanous 
1352fbe8378fSJason M. Bills                      "PCIe Correctable Bad TLP. Bus=%1 Device=%2 Function=%3.",
1353271584abSEd Tanous                      "Warning",
1354e7808c93SGunnar Mills                      "Warning",
1355271584abSEd Tanous                      3,
1356271584abSEd Tanous 
1357fbe8378fSJason M. Bills                      {
1358fbe8378fSJason M. Bills                          "number",
1359fbe8378fSJason M. Bills                          "number",
1360fbe8378fSJason M. Bills                          "number",
1361fbe8378fSJason M. Bills                      },
1362271584abSEd Tanous                      "None.",
1363fbe8378fSJason M. Bills                  }},
1364271584abSEd Tanous     MessageEntry{"PCIeCorrectableHeaderLogOverflow",
1365fbe8378fSJason M. Bills                  {
1366fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Header Log Overflow Error.",
1367271584abSEd Tanous                      "PCIe Correctable Header Log Overflow. Bus=%1 Device=%2 "
1368fbe8378fSJason M. Bills                      "Function=%3.",
1369271584abSEd Tanous                      "Warning",
1370e7808c93SGunnar Mills                      "Warning",
1371271584abSEd Tanous                      3,
1372271584abSEd Tanous 
1373fbe8378fSJason M. Bills                      {
1374fbe8378fSJason M. Bills                          "number",
1375fbe8378fSJason M. Bills                          "number",
1376fbe8378fSJason M. Bills                          "number",
1377fbe8378fSJason M. Bills                      },
1378271584abSEd Tanous                      "None.",
1379fbe8378fSJason M. Bills                  }},
1380271584abSEd Tanous     MessageEntry{"PCIeCorrectableInternal",
1381fbe8378fSJason M. Bills                  {
1382271584abSEd Tanous                      "Indicates a PCIe Correctable Internal Error.",
1383271584abSEd Tanous                      "PCIe Correctable Internal Error. Bus=%1 Device=%2 "
1384fbe8378fSJason M. Bills                      "Function=%3.",
1385271584abSEd Tanous                      "Warning",
1386e7808c93SGunnar Mills                      "Warning",
1387271584abSEd Tanous                      3,
1388271584abSEd Tanous 
1389fbe8378fSJason M. Bills                      {
1390fbe8378fSJason M. Bills                          "number",
1391fbe8378fSJason M. Bills                          "number",
1392fbe8378fSJason M. Bills                          "number",
1393fbe8378fSJason M. Bills                      },
1394271584abSEd Tanous                      "None.",
1395fbe8378fSJason M. Bills                  }},
1396fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableLinkBWChanged",
1397fbe8378fSJason M. Bills                  {
1398fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Link BW Changed Error.",
1399271584abSEd Tanous                      "PCIe Correctable Link BW Changed. Bus=%1 "
1400fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1401271584abSEd Tanous                      "Warning",
1402e7808c93SGunnar Mills                      "Warning",
1403271584abSEd Tanous                      3,
1404271584abSEd Tanous 
1405fbe8378fSJason M. Bills                      {
1406fbe8378fSJason M. Bills                          "number",
1407fbe8378fSJason M. Bills                          "number",
1408fbe8378fSJason M. Bills                          "number",
1409fbe8378fSJason M. Bills                      },
1410271584abSEd Tanous                      "None.",
1411fbe8378fSJason M. Bills                  }},
1412271584abSEd Tanous     MessageEntry{"PCIeCorrectableReceiverError",
1413fbe8378fSJason M. Bills                  {
1414271584abSEd Tanous                      "Indicates a PCIe Correctable Receiver Error.",
1415271584abSEd Tanous                      "PCIe Correctable Receiver Error. Bus=%1 Device=%2 "
1416fbe8378fSJason M. Bills                      "Function=%3.",
1417271584abSEd Tanous                      "Warning",
1418e7808c93SGunnar Mills                      "Warning",
1419271584abSEd Tanous                      3,
1420271584abSEd Tanous 
1421fbe8378fSJason M. Bills                      {
1422fbe8378fSJason M. Bills                          "number",
1423fbe8378fSJason M. Bills                          "number",
1424fbe8378fSJason M. Bills                          "number",
1425fbe8378fSJason M. Bills                      },
1426271584abSEd Tanous                      "None.",
1427fbe8378fSJason M. Bills                  }},
1428271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayNumRollover",
1429fbe8378fSJason M. Bills                  {
1430271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Num Rollover.",
1431271584abSEd Tanous                      "PCIe Correctable Replay Num Rollover. Bus=%1 Device=%2 "
1432fbe8378fSJason M. Bills                      "Function=%3.",
1433271584abSEd Tanous                      "Warning",
1434e7808c93SGunnar Mills                      "Warning",
1435271584abSEd Tanous                      3,
1436271584abSEd Tanous 
1437fbe8378fSJason M. Bills                      {
1438fbe8378fSJason M. Bills                          "number",
1439fbe8378fSJason M. Bills                          "number",
1440fbe8378fSJason M. Bills                          "number",
1441fbe8378fSJason M. Bills                      },
1442271584abSEd Tanous                      "None.",
1443fbe8378fSJason M. Bills                  }},
1444271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayTimerTimeout",
1445fbe8378fSJason M. Bills                  {
1446271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Timer Timeout.",
1447271584abSEd Tanous                      "PCIe Correctable Replay Timer Timeout. Bus=%1 "
1448fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1449271584abSEd Tanous                      "Warning",
1450e7808c93SGunnar Mills                      "Warning",
1451271584abSEd Tanous                      3,
1452271584abSEd Tanous 
1453fbe8378fSJason M. Bills                      {
1454fbe8378fSJason M. Bills                          "number",
1455fbe8378fSJason M. Bills                          "number",
1456fbe8378fSJason M. Bills                          "number",
1457fbe8378fSJason M. Bills                      },
1458271584abSEd Tanous                      "None.",
1459fbe8378fSJason M. Bills                  }},
1460fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableUnspecifiedAERError",
1461fbe8378fSJason M. Bills                  {
1462fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Unspecified AER Error.",
1463271584abSEd Tanous                      "PCIe Correctable Unspecified AER Error. "
1464fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
1465271584abSEd Tanous                      "Warning",
1466e7808c93SGunnar Mills                      "Warning",
1467271584abSEd Tanous                      3,
1468271584abSEd Tanous 
1469fbe8378fSJason M. Bills                      {
1470fbe8378fSJason M. Bills                          "number",
1471fbe8378fSJason M. Bills                          "number",
1472fbe8378fSJason M. Bills                          "number",
1473fbe8378fSJason M. Bills                      },
1474271584abSEd Tanous                      "None.",
1475fbe8378fSJason M. Bills                  }},
1476271584abSEd Tanous     MessageEntry{"PCIeFatalACSViolation",
1477fbe8378fSJason M. Bills                  {
1478271584abSEd Tanous                      "Indicates a PCIe ACS Violation Error.",
1479271584abSEd Tanous 
1480fbe8378fSJason M. Bills                      "PCIe Fatal ACS Violation. Bus=%1 Device=%2 Function=%3.",
14814228a160SJason M. Bills                      "Critical",
1482e7808c93SGunnar Mills                      "Critical",
1483271584abSEd Tanous                      3,
1484271584abSEd Tanous 
1485fbe8378fSJason M. Bills                      {
1486fbe8378fSJason M. Bills                          "number",
1487fbe8378fSJason M. Bills                          "number",
1488fbe8378fSJason M. Bills                          "number",
1489fbe8378fSJason M. Bills                      },
1490271584abSEd Tanous                      "None.",
1491fbe8378fSJason M. Bills                  }},
1492271584abSEd Tanous     MessageEntry{"PCIeFatalAtomicEgressBlocked",
1493fbe8378fSJason M. Bills                  {
1494271584abSEd Tanous                      "Indicates a PCIe Atomic Egress Blocked Error.",
1495271584abSEd Tanous                      "PCIe Fatal Atomic Egress Blocked. Bus=%1 Device=%2 "
1496fbe8378fSJason M. Bills                      "Function=%3.",
14974228a160SJason M. Bills                      "Critical",
1498e7808c93SGunnar Mills                      "Critical",
1499271584abSEd Tanous                      3,
1500271584abSEd Tanous 
1501fbe8378fSJason M. Bills                      {
1502fbe8378fSJason M. Bills                          "number",
1503fbe8378fSJason M. Bills                          "number",
1504fbe8378fSJason M. Bills                          "number",
1505fbe8378fSJason M. Bills                      },
1506271584abSEd Tanous                      "None.",
1507fbe8378fSJason M. Bills                  }},
1508fbe8378fSJason M. Bills     MessageEntry{
1509fbe8378fSJason M. Bills         "PCIeFatalCompleterAbort",
1510fbe8378fSJason M. Bills         {
1511271584abSEd Tanous             "Indicates a PCIe Completer Abort Error.",
1512271584abSEd Tanous 
1513fbe8378fSJason M. Bills             "PCIe Fatal Completer Abort. Bus=%1 Device=%2 Function=%3.",
15144228a160SJason M. Bills             "Critical",
1515e7808c93SGunnar Mills             "Critical",
1516271584abSEd Tanous             3,
1517271584abSEd Tanous 
1518fbe8378fSJason M. Bills             {
1519fbe8378fSJason M. Bills                 "number",
1520fbe8378fSJason M. Bills                 "number",
1521fbe8378fSJason M. Bills                 "number",
1522fbe8378fSJason M. Bills             },
1523271584abSEd Tanous             "None.",
1524fbe8378fSJason M. Bills         }},
1525fbe8378fSJason M. Bills     MessageEntry{
1526fbe8378fSJason M. Bills         "PCIeFatalCompletionTimeout",
1527fbe8378fSJason M. Bills         {
1528271584abSEd Tanous             "Indicates a PCIe Completion Timeout Error.",
1529271584abSEd Tanous 
1530fbe8378fSJason M. Bills             "PCIe Fatal Completion Timeout. Bus=%1 Device=%2 Function=%3.",
15314228a160SJason M. Bills             "Critical",
1532e7808c93SGunnar Mills             "Critical",
1533271584abSEd Tanous             3,
1534271584abSEd Tanous 
1535fbe8378fSJason M. Bills             {
1536fbe8378fSJason M. Bills                 "number",
1537fbe8378fSJason M. Bills                 "number",
1538fbe8378fSJason M. Bills                 "number",
1539fbe8378fSJason M. Bills             },
1540271584abSEd Tanous             "None.",
1541fbe8378fSJason M. Bills         }},
1542fbe8378fSJason M. Bills     MessageEntry{
1543fbe8378fSJason M. Bills         "PCIeFatalDataLinkLayerProtocol",
1544fbe8378fSJason M. Bills         {
1545271584abSEd Tanous             "Indicates a PCIe Data Link Layer Protocol Error.",
1546271584abSEd Tanous 
1547fbe8378fSJason M. Bills             "PCIe Fatal Data Link Layer Protocol Error. Bus=%1 Device=%2 "
1548fbe8378fSJason M. Bills             "Function=%3.",
15494228a160SJason M. Bills             "Critical",
1550e7808c93SGunnar Mills             "Critical",
1551271584abSEd Tanous             3,
1552271584abSEd Tanous 
1553fbe8378fSJason M. Bills             {
1554fbe8378fSJason M. Bills                 "number",
1555fbe8378fSJason M. Bills                 "number",
1556fbe8378fSJason M. Bills                 "number",
1557fbe8378fSJason M. Bills             },
1558271584abSEd Tanous             "None.",
1559fbe8378fSJason M. Bills         }},
1560271584abSEd Tanous     MessageEntry{"PCIeFatalECRCError",
1561fbe8378fSJason M. Bills                  {
1562271584abSEd Tanous                      "Indicates a PCIe ECRC Error.",
1563271584abSEd Tanous                      "PCIe Fatal ECRC Error. Bus=%1 Device=%2 Function=%3.",
15644228a160SJason M. Bills                      "Critical",
1565e7808c93SGunnar Mills                      "Critical",
1566271584abSEd Tanous                      3,
1567271584abSEd Tanous 
1568fbe8378fSJason M. Bills                      {
1569fbe8378fSJason M. Bills                          "number",
1570fbe8378fSJason M. Bills                          "number",
1571fbe8378fSJason M. Bills                          "number",
1572fbe8378fSJason M. Bills                      },
1573271584abSEd Tanous                      "None.",
1574fbe8378fSJason M. Bills                  }},
1575271584abSEd Tanous     MessageEntry{"PCIeFatalFlowControlProtocol",
1576fbe8378fSJason M. Bills                  {
1577271584abSEd Tanous                      "Indicates a PCIe Flow Control Protocol Error.",
1578271584abSEd Tanous 
1579fbe8378fSJason M. Bills                      "PCIe Fatal Flow Control Protocol Error. Bus=%1 Device=%2 "
1580fbe8378fSJason M. Bills                      "Function=%3.",
15814228a160SJason M. Bills                      "Critical",
1582e7808c93SGunnar Mills                      "Critical",
1583271584abSEd Tanous                      3,
1584271584abSEd Tanous 
1585fbe8378fSJason M. Bills                      {
1586fbe8378fSJason M. Bills                          "number",
1587fbe8378fSJason M. Bills                          "number",
1588fbe8378fSJason M. Bills                          "number",
1589fbe8378fSJason M. Bills                      },
1590271584abSEd Tanous                      "None.",
1591fbe8378fSJason M. Bills                  }},
1592fbe8378fSJason M. Bills     MessageEntry{
1593fbe8378fSJason M. Bills         "PCIeFatalMalformedTLP",
1594fbe8378fSJason M. Bills         {
1595271584abSEd Tanous             "Indicates a PCIe Malformed TLP Error.",
1596271584abSEd Tanous 
1597fbe8378fSJason M. Bills             "PCIe Fatal Malformed TLP Error. Bus=%1 Device=%2 Function=%3.",
15984228a160SJason M. Bills             "Critical",
1599e7808c93SGunnar Mills             "Critical",
1600271584abSEd Tanous             3,
1601271584abSEd Tanous 
1602fbe8378fSJason M. Bills             {
1603fbe8378fSJason M. Bills                 "number",
1604fbe8378fSJason M. Bills                 "number",
1605fbe8378fSJason M. Bills                 "number",
1606fbe8378fSJason M. Bills             },
1607271584abSEd Tanous             "None.",
1608fbe8378fSJason M. Bills         }},
1609fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalMCBlockedTLP",
1610fbe8378fSJason M. Bills                  {
1611271584abSEd Tanous                      "Indicates a PCIe MC Blocked TLP Error.",
1612271584abSEd Tanous                      "PCIe Fatal MC Blocked TLP Error. Bus=%1 "
1613fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
16144228a160SJason M. Bills                      "Critical",
1615e7808c93SGunnar Mills                      "Critical",
1616271584abSEd Tanous                      3,
1617271584abSEd Tanous 
1618fbe8378fSJason M. Bills                      {
1619fbe8378fSJason M. Bills                          "number",
1620fbe8378fSJason M. Bills                          "number",
1621fbe8378fSJason M. Bills                          "number",
1622fbe8378fSJason M. Bills                      },
1623271584abSEd Tanous                      "None.",
1624fbe8378fSJason M. Bills                  }},
1625fbe8378fSJason M. Bills     MessageEntry{
1626fbe8378fSJason M. Bills         "PCIeFatalPoisonedTLP",
1627fbe8378fSJason M. Bills         {
1628271584abSEd Tanous             "Indicates a PCIe Poisoned TLP Error.",
1629271584abSEd Tanous 
1630fbe8378fSJason M. Bills             "PCIe Fatal Poisoned TLP Error. Bus=%1 Device=%2 Function=%3.",
16314228a160SJason M. Bills             "Critical",
1632e7808c93SGunnar Mills             "Critical",
1633271584abSEd Tanous             3,
1634271584abSEd Tanous 
1635fbe8378fSJason M. Bills             {
1636fbe8378fSJason M. Bills                 "number",
1637fbe8378fSJason M. Bills                 "number",
1638fbe8378fSJason M. Bills                 "number",
1639fbe8378fSJason M. Bills             },
1640271584abSEd Tanous             "None.",
1641fbe8378fSJason M. Bills         }},
1642271584abSEd Tanous     MessageEntry{"PCIeFatalReceiverBufferOverflow",
1643fbe8378fSJason M. Bills                  {
1644271584abSEd Tanous                      "Indicates a PCIe Receiver Buffer Overflow Error.",
1645271584abSEd Tanous                      "PCIe Fatal Receiver Buffer Overflow. Bus=%1 Device=%2 "
1646fbe8378fSJason M. Bills                      "Function=%3.",
16474228a160SJason M. Bills                      "Critical",
1648e7808c93SGunnar Mills                      "Critical",
1649271584abSEd Tanous                      3,
1650271584abSEd Tanous 
1651fbe8378fSJason M. Bills                      {
1652fbe8378fSJason M. Bills                          "number",
1653fbe8378fSJason M. Bills                          "number",
1654fbe8378fSJason M. Bills                          "number",
1655fbe8378fSJason M. Bills                      },
1656271584abSEd Tanous                      "None.",
1657fbe8378fSJason M. Bills                  }},
1658fbe8378fSJason M. Bills     MessageEntry{
165914c8aee2SEd Tanous         "PCIeFatalReceivedErrNonFatalMessage",
1660fbe8378fSJason M. Bills         {
1661fbe8378fSJason M. Bills             "Indicates a PCIe Received ERR_NONFATAL Message Error.",
1662271584abSEd Tanous 
1663fbe8378fSJason M. Bills             "PCIe Fatal Received ERR_NONFATAL Message. Bus=%1 Device=%2 "
1664fbe8378fSJason M. Bills             "Function=%3.",
16654228a160SJason M. Bills             "Critical",
1666e7808c93SGunnar Mills             "Critical",
1667271584abSEd Tanous             3,
1668271584abSEd Tanous 
1669fbe8378fSJason M. Bills             {
1670fbe8378fSJason M. Bills                 "number",
1671fbe8378fSJason M. Bills                 "number",
1672fbe8378fSJason M. Bills                 "number",
1673fbe8378fSJason M. Bills             },
1674271584abSEd Tanous             "None.",
1675fbe8378fSJason M. Bills         }},
1676fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalReceivedFatalMessageFromDownstream",
1677fbe8378fSJason M. Bills                  {
1678271584abSEd Tanous                      "Indicates a PCIe Received Fatal Message "
1679fbe8378fSJason M. Bills                      "From Downstream Error.",
1680271584abSEd Tanous 
1681fbe8378fSJason M. Bills                      "PCIe Fatal Received Fatal Message From Downstream. "
1682fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
16834228a160SJason M. Bills                      "Critical",
1684e7808c93SGunnar Mills                      "Critical",
1685271584abSEd Tanous                      3,
1686271584abSEd Tanous 
1687fbe8378fSJason M. Bills                      {
1688fbe8378fSJason M. Bills                          "number",
1689fbe8378fSJason M. Bills                          "number",
1690fbe8378fSJason M. Bills                          "number",
1691fbe8378fSJason M. Bills                      },
1692271584abSEd Tanous                      "None.",
1693fbe8378fSJason M. Bills                  }},
1694271584abSEd Tanous     MessageEntry{"PCIeFatalSurpriseLinkDown",
1695fbe8378fSJason M. Bills                  {
1696271584abSEd Tanous                      "Indicates a PCIe Surprise Link Down Error.",
1697271584abSEd Tanous                      "PCIe Fatal Surprise Link Down Error. Bus=%1 Device=%2 "
1698fbe8378fSJason M. Bills                      "Function=%3.",
16994228a160SJason M. Bills                      "Critical",
1700e7808c93SGunnar Mills                      "Critical",
1701271584abSEd Tanous                      3,
1702271584abSEd Tanous 
1703fbe8378fSJason M. Bills                      {
1704fbe8378fSJason M. Bills                          "number",
1705fbe8378fSJason M. Bills                          "number",
1706fbe8378fSJason M. Bills                          "number",
1707fbe8378fSJason M. Bills                      },
1708271584abSEd Tanous                      "None.",
1709fbe8378fSJason M. Bills                  }},
1710271584abSEd Tanous     MessageEntry{"PCIeFatalTLPPrefixBlocked",
1711fbe8378fSJason M. Bills                  {
1712271584abSEd Tanous                      "Indicates a PCIe TLP Prefix Blocked Error.",
1713271584abSEd Tanous                      "PCIe Fatal TLP Prefix Blocked Error. Bus=%1 Device=%2 "
1714fbe8378fSJason M. Bills                      "Function=%3.",
17154228a160SJason M. Bills                      "Critical",
1716e7808c93SGunnar Mills                      "Critical",
1717271584abSEd Tanous                      3,
1718271584abSEd Tanous 
1719fbe8378fSJason M. Bills                      {
1720fbe8378fSJason M. Bills                          "number",
1721fbe8378fSJason M. Bills                          "number",
1722fbe8378fSJason M. Bills                          "number",
1723fbe8378fSJason M. Bills                      },
1724271584abSEd Tanous                      "None.",
1725fbe8378fSJason M. Bills                  }},
1726fbe8378fSJason M. Bills     MessageEntry{
1727fbe8378fSJason M. Bills         "PCIeFatalUncorrectableInternal",
1728fbe8378fSJason M. Bills         {
1729271584abSEd Tanous             "Indicates a PCIe Uncorrectable Internal Error.",
1730271584abSEd Tanous 
1731fbe8378fSJason M. Bills             "PCIe Fatal Uncorrectable Internal Error. Bus=%1 Device=%2 "
1732fbe8378fSJason M. Bills             "Function=%3.",
17334228a160SJason M. Bills             "Critical",
1734e7808c93SGunnar Mills             "Critical",
1735271584abSEd Tanous             3,
1736271584abSEd Tanous 
1737fbe8378fSJason M. Bills             {
1738fbe8378fSJason M. Bills                 "number",
1739fbe8378fSJason M. Bills                 "number",
1740fbe8378fSJason M. Bills                 "number",
1741fbe8378fSJason M. Bills             },
1742271584abSEd Tanous             "None.",
1743fbe8378fSJason M. Bills         }},
1744271584abSEd Tanous     MessageEntry{"PCIeFatalUnexpectedCompletion",
1745fbe8378fSJason M. Bills                  {
1746271584abSEd Tanous                      "Indicates a PCIe Unexpected Completion Error.",
1747271584abSEd Tanous                      "PCIe Fatal Unexpected Completion. Bus=%1 Device=%2 "
1748fbe8378fSJason M. Bills                      "Function=%3.",
17494228a160SJason M. Bills                      "Critical",
1750e7808c93SGunnar Mills                      "Critical",
1751271584abSEd Tanous                      3,
1752271584abSEd Tanous 
1753fbe8378fSJason M. Bills                      {
1754fbe8378fSJason M. Bills                          "number",
1755fbe8378fSJason M. Bills                          "number",
1756fbe8378fSJason M. Bills                          "number",
1757fbe8378fSJason M. Bills                      },
1758271584abSEd Tanous                      "None.",
1759fbe8378fSJason M. Bills                  }},
1760271584abSEd Tanous     MessageEntry{"PCIeFatalUnspecifiedNonAERFatalError",
1761fbe8378fSJason M. Bills                  {
1762271584abSEd Tanous                      "Indicates a PCIe Unspecified Non-AER Fatal Error.",
1763271584abSEd Tanous                      "PCIe Fatal Unspecified Non-AER Fatal Error. Bus=%1 "
1764fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
17654228a160SJason M. Bills                      "Critical",
1766e7808c93SGunnar Mills                      "Critical",
1767271584abSEd Tanous                      3,
1768271584abSEd Tanous 
1769fbe8378fSJason M. Bills                      {
1770fbe8378fSJason M. Bills                          "number",
1771fbe8378fSJason M. Bills                          "number",
1772fbe8378fSJason M. Bills                          "number",
1773fbe8378fSJason M. Bills                      },
1774271584abSEd Tanous                      "None.",
1775fbe8378fSJason M. Bills                  }},
1776fbe8378fSJason M. Bills     MessageEntry{
1777fbe8378fSJason M. Bills         "PCIeFatalUnsupportedRequest",
1778fbe8378fSJason M. Bills         {
1779271584abSEd Tanous             "Indicates a PCIe Unsupported Request Error.",
1780271584abSEd Tanous 
1781fbe8378fSJason M. Bills             "PCIe Fatal Unsupported Request. Bus=%1 Device=%2 Function=%3.",
17824228a160SJason M. Bills             "Critical",
1783e7808c93SGunnar Mills             "Critical",
1784271584abSEd Tanous             3,
1785271584abSEd Tanous 
1786fbe8378fSJason M. Bills             {
1787fbe8378fSJason M. Bills                 "number",
1788fbe8378fSJason M. Bills                 "number",
1789fbe8378fSJason M. Bills                 "number",
1790fbe8378fSJason M. Bills             },
1791271584abSEd Tanous             "None.",
1792fbe8378fSJason M. Bills         }},
1793271584abSEd Tanous     MessageEntry{"PowerButtonPressed",
1794fbe8378fSJason M. Bills                  {
1795271584abSEd Tanous                      "Indicates that the power button was pressed.",
1796271584abSEd Tanous                      "Power Button Pressed.",
1797271584abSEd Tanous                      "OK",
1798e7808c93SGunnar Mills                      "OK",
1799271584abSEd Tanous                      0,
1800271584abSEd Tanous                      {},
1801271584abSEd Tanous                      "None.",
1802fbe8378fSJason M. Bills                  }},
1803dd118a2eSJason M. Bills     MessageEntry{"PowerRestorePolicyApplied",
1804dd118a2eSJason M. Bills                  {
1805271584abSEd Tanous                      "Indicates that power was restored and the "
1806dd118a2eSJason M. Bills                      "BMC has applied the restore policy.",
1807271584abSEd Tanous                      "Power restore policy applied.",
1808271584abSEd Tanous                      "OK",
1809e7808c93SGunnar Mills                      "OK",
1810271584abSEd Tanous                      0,
1811271584abSEd Tanous                      {},
1812271584abSEd Tanous                      "None.",
1813dd118a2eSJason M. Bills                  }},
1814271584abSEd Tanous     MessageEntry{"PowerSupplyConfigurationError",
1815fbe8378fSJason M. Bills                  {
1816271584abSEd Tanous                      "Indicates an error in power supply configuration.",
1817271584abSEd Tanous                      "Power supply %1 configuration error.",
18189c6b0159SYong Li                      "Warning",
1819e7808c93SGunnar Mills                      "Warning",
1820271584abSEd Tanous                      1,
1821271584abSEd Tanous                      {"string"},
1822271584abSEd Tanous                      "None.",
1823fbe8378fSJason M. Bills                  }},
1824fbe8378fSJason M. Bills     MessageEntry{
18257f68549fSjayaprakash Mutyala         "PowerSupplyConfigurationErrorRecovered",
18267f68549fSjayaprakash Mutyala         {
18277f68549fSjayaprakash Mutyala             "Indicates that power supply configuration error recovered "
18287f68549fSjayaprakash Mutyala             "from a failure.",
18297f68549fSjayaprakash Mutyala             "Power supply %1 configuration error recovered.",
18307f68549fSjayaprakash Mutyala             "OK",
1831e7808c93SGunnar Mills             "OK",
18327f68549fSjayaprakash Mutyala             1,
18337f68549fSjayaprakash Mutyala             {"string"},
18347f68549fSjayaprakash Mutyala             "None.",
18357f68549fSjayaprakash Mutyala         }},
18367f68549fSjayaprakash Mutyala     MessageEntry{
1837fbe8378fSJason M. Bills         "PowerSupplyFanFailed",
1838fbe8378fSJason M. Bills         {
1839fbe8378fSJason M. Bills             "Indicates that the specified power supply fan has failed.",
1840271584abSEd Tanous             "Power supply %1 fan %2 failed.",
18419c6b0159SYong Li             "Warning",
1842e7808c93SGunnar Mills             "Warning",
1843271584abSEd Tanous             2,
1844271584abSEd Tanous             {"string", "string"},
1845271584abSEd Tanous             "None.",
1846fbe8378fSJason M. Bills         }},
1847dac62eefSCheng C Yang     MessageEntry{
1848dac62eefSCheng C Yang         "PowerSupplyFanRecovered",
1849dac62eefSCheng C Yang         {
1850dac62eefSCheng C Yang             "Indicates that the power supply fan recovered from a failure.",
1851271584abSEd Tanous             "Power supply %1 fan %2 recovered.",
1852271584abSEd Tanous             "OK",
1853e7808c93SGunnar Mills             "OK",
1854271584abSEd Tanous             2,
1855271584abSEd Tanous             {"string", "string"},
1856271584abSEd Tanous             "None.",
1857dac62eefSCheng C Yang         }},
1858fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailed",
1859fbe8378fSJason M. Bills                  {
1860271584abSEd Tanous                      "Indicates that a power supply has failed.",
1861271584abSEd Tanous                      "Power supply %1 failed.",
18629c6b0159SYong Li                      "Warning",
1863e7808c93SGunnar Mills                      "Warning",
1864271584abSEd Tanous                      1,
1865271584abSEd Tanous                      {"string"},
1866271584abSEd Tanous                      "None.",
1867fbe8378fSJason M. Bills                  }},
1868fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailurePredicted",
1869fbe8378fSJason M. Bills                  {
1870fbe8378fSJason M. Bills                      "Indicates that a power supply is predicted to fail.",
1871271584abSEd Tanous                      "Power supply %1 failure predicted.",
1872271584abSEd Tanous                      "Warning",
1873e7808c93SGunnar Mills                      "Warning",
1874271584abSEd Tanous                      1,
1875271584abSEd Tanous                      {"string"},
1876271584abSEd Tanous                      "None.",
1877fbe8378fSJason M. Bills                  }},
1878271584abSEd Tanous     MessageEntry{"PowerSupplyInserted",
1879fbe8378fSJason M. Bills                  {
1880271584abSEd Tanous                      "Indicates that a power supply has been inserted.",
1881271584abSEd Tanous                      "Power supply %1 inserted.",
1882271584abSEd Tanous                      "OK",
1883e7808c93SGunnar Mills                      "OK",
1884271584abSEd Tanous                      1,
1885271584abSEd Tanous                      {"string"},
1886271584abSEd Tanous                      "None.",
1887fbe8378fSJason M. Bills                  }},
1888271584abSEd Tanous     MessageEntry{"PowerSupplyPowerGoodFailed",
1889bc48a175SJason M. Bills                  {
1890271584abSEd Tanous                      "Indicates that the power supply power good signal "
1891bc48a175SJason M. Bills                      "failed to assert within the specified time.",
1892271584abSEd Tanous                      "Power supply power good failed to assert within %1 "
1893bc48a175SJason M. Bills                      "milliseconds.",
1894271584abSEd Tanous                      "Critical",
1895e7808c93SGunnar Mills                      "Critical",
1896271584abSEd Tanous                      1,
1897271584abSEd Tanous                      {"number"},
1898271584abSEd Tanous                      "None.",
1899bc48a175SJason M. Bills                  }},
1900dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPowerLost",
1901dac62eefSCheng C Yang                  {
1902dac62eefSCheng C Yang                      "Indicates that a power supply has lost input power.",
1903271584abSEd Tanous                      "Power supply %1 power lost.",
19049c6b0159SYong Li                      "Warning",
1905e7808c93SGunnar Mills                      "Warning",
1906271584abSEd Tanous                      1,
1907271584abSEd Tanous                      {"string"},
1908271584abSEd Tanous                      "None.",
1909dac62eefSCheng C Yang                  }},
1910271584abSEd Tanous     MessageEntry{"PowerSupplyPowerRestored",
1911dac62eefSCheng C Yang                  {
1912dac62eefSCheng C Yang                      "Indicates that a power supply input power was restored.",
1913271584abSEd Tanous                      "Power supply %1 power restored.",
1914271584abSEd Tanous                      "OK",
1915e7808c93SGunnar Mills                      "OK",
1916271584abSEd Tanous                      1,
1917271584abSEd Tanous                      {"string"},
1918271584abSEd Tanous                      "None.",
1919dac62eefSCheng C Yang                  }},
1920dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPredictedFailureRecovered",
1921dac62eefSCheng C Yang                  {
1922271584abSEd Tanous                      "Indicates that a power supply recovered "
1923dac62eefSCheng C Yang                      "from a predicted failure.",
1924271584abSEd Tanous                      "Power supply %1 predicted failure recovered.",
1925271584abSEd Tanous                      "OK",
1926e7808c93SGunnar Mills                      "OK",
1927271584abSEd Tanous                      1,
1928271584abSEd Tanous                      {"string"},
1929271584abSEd Tanous                      "None.",
1930dac62eefSCheng C Yang                  }},
1931271584abSEd Tanous     MessageEntry{"PowerSupplyRecovered",
1932dac62eefSCheng C Yang                  {
1933dac62eefSCheng C Yang                      "Indicates that a power supply recovered from a failure.",
1934271584abSEd Tanous                      "Power supply %1 recovered.",
1935271584abSEd Tanous                      "OK",
1936e7808c93SGunnar Mills                      "OK",
1937271584abSEd Tanous                      1,
1938271584abSEd Tanous                      {"string"},
1939271584abSEd Tanous                      "None.",
1940dac62eefSCheng C Yang                  }},
1941271584abSEd Tanous     MessageEntry{"PowerSupplyRemoved",
1942fbe8378fSJason M. Bills                  {
1943271584abSEd Tanous                      "Indicates that a power supply has been removed.",
1944271584abSEd Tanous                      "Power supply %1 removed.",
1945271584abSEd Tanous                      "Warning",
1946e7808c93SGunnar Mills                      "Warning",
1947271584abSEd Tanous                      1,
1948271584abSEd Tanous                      {"string"},
1949271584abSEd Tanous                      "None.",
1950fbe8378fSJason M. Bills                  }},
1951271584abSEd Tanous     MessageEntry{"PowerUnitDegradedFromNonRedundant",
1952cecb4cb6SCheng C Yang                  {
1953cecb4cb6SCheng C Yang                      "Indicates that power unit is come back to redundant from"
1954cecb4cb6SCheng C Yang                      "nonredundant but is still not in full redundancy mode.",
1955271584abSEd Tanous                      "Power Unit degraded from nonredundant.",
1956271584abSEd Tanous                      "Warning",
1957e7808c93SGunnar Mills                      "Warning",
1958271584abSEd Tanous                      0,
1959271584abSEd Tanous                      {},
1960271584abSEd Tanous                      "None.",
1961cecb4cb6SCheng C Yang                  }},
1962cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitDegradedFromRedundant",
1963cecb4cb6SCheng C Yang                  {
1964cecb4cb6SCheng C Yang                      "Indicates that power unit is degarded from full "
1965cecb4cb6SCheng C Yang                      "redundancy mode.",
1966271584abSEd Tanous                      "Power Unit degraded from redundant.",
1967271584abSEd Tanous                      "Warning",
1968e7808c93SGunnar Mills                      "Warning",
1969271584abSEd Tanous                      0,
1970271584abSEd Tanous                      {},
1971271584abSEd Tanous                      "None.",
1972cecb4cb6SCheng C Yang                  }},
1973271584abSEd Tanous     MessageEntry{"PowerUnitRedundancyDegraded",
1974cecb4cb6SCheng C Yang                  {
1975cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been degraded.",
1976271584abSEd Tanous                      "Power Unit Redundancy degraded.",
1977271584abSEd Tanous                      "Warning",
1978e7808c93SGunnar Mills                      "Warning",
1979271584abSEd Tanous                      0,
1980271584abSEd Tanous                      {},
1981271584abSEd Tanous                      "None.",
1982cecb4cb6SCheng C Yang                  }},
1983cecb4cb6SCheng C Yang     MessageEntry{
1984cecb4cb6SCheng C Yang         "PowerUnitNonRedundantFromInsufficient",
1985cecb4cb6SCheng C Yang         {
1986cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode and get"
1987cecb4cb6SCheng C Yang             "sufficient power to support redundancy from insufficient"
1988cecb4cb6SCheng C Yang             "power.",
1989271584abSEd Tanous 
1990cecb4cb6SCheng C Yang             "Power Unit NonRedundant from insufficient to sufficient.",
1991271584abSEd Tanous             "Warning",
1992e7808c93SGunnar Mills             "Warning",
1993271584abSEd Tanous             0,
1994271584abSEd Tanous             {},
1995271584abSEd Tanous             "None.",
1996cecb4cb6SCheng C Yang         }},
1997271584abSEd Tanous     MessageEntry{"PowerUnitNonRedundantInsufficient",
1998cecb4cb6SCheng C Yang                  {
1999271584abSEd Tanous                      "Indicates that power unit do not have sufficient "
2000cecb4cb6SCheng C Yang                      "power to support redundancy.",
2001271584abSEd Tanous                      "Power Unit NonRedundant and has insufficient resource.",
20024228a160SJason M. Bills                      "Critical",
2003e7808c93SGunnar Mills                      "Critical",
2004271584abSEd Tanous                      0,
2005271584abSEd Tanous                      {},
2006271584abSEd Tanous                      "None.",
2007cecb4cb6SCheng C Yang                  }},
2008cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitRedundancyLost",
2009cecb4cb6SCheng C Yang                  {
2010cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been lost.",
2011271584abSEd Tanous                      "Power Unit Redundancy lost.",
2012271584abSEd Tanous                      "Warning",
2013e7808c93SGunnar Mills                      "Warning",
2014271584abSEd Tanous                      0,
2015271584abSEd Tanous                      {},
2016271584abSEd Tanous                      "None.",
2017cecb4cb6SCheng C Yang                  }},
2018cecb4cb6SCheng C Yang     MessageEntry{
2019cecb4cb6SCheng C Yang         "PowerUnitRedundancyRegained",
2020cecb4cb6SCheng C Yang         {
2021cecb4cb6SCheng C Yang             "Indicates that power unit full redundancy has been regained.",
2022271584abSEd Tanous             "Power Unit Redundancy regained.",
2023271584abSEd Tanous             "OK",
2024e7808c93SGunnar Mills             "OK",
2025271584abSEd Tanous             0,
2026271584abSEd Tanous             {},
2027271584abSEd Tanous             "None.",
2028cecb4cb6SCheng C Yang         }},
2029cecb4cb6SCheng C Yang     MessageEntry{
2030cecb4cb6SCheng C Yang         "PowerUnitNonRedundantSufficient",
2031cecb4cb6SCheng C Yang         {
2032cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode but still"
2033cecb4cb6SCheng C Yang             "has sufficient power to support redundancy.",
2034271584abSEd Tanous             "Power Unit Nonredundant but has sufficient resource.",
2035271584abSEd Tanous             "Warning",
2036e7808c93SGunnar Mills             "Warning",
2037271584abSEd Tanous             0,
2038271584abSEd Tanous             {},
2039271584abSEd Tanous             "None.",
2040cecb4cb6SCheng C Yang         }},
2041271584abSEd Tanous     MessageEntry{"ResetButtonPressed",
2042fbe8378fSJason M. Bills                  {
2043271584abSEd Tanous                      "Indicates that the reset button was pressed.",
2044271584abSEd Tanous                      "Reset Button Pressed.",
2045271584abSEd Tanous                      "OK",
2046e7808c93SGunnar Mills                      "OK",
2047271584abSEd Tanous                      0,
2048271584abSEd Tanous                      {},
2049271584abSEd Tanous                      "None.",
2050fbe8378fSJason M. Bills                  }},
20518ae37025SChen,Yugang     MessageEntry{"SecurityBoot2ndFlashEnabled",
20528ae37025SChen,Yugang                  {
20538ae37025SChen,Yugang                      "Indicates that the BMC 2nd boot flash is enabled.",
20548ae37025SChen,Yugang                      "BMC 2nd boot flash is enabled.",
20558ae37025SChen,Yugang                      "Critical",
2056e7808c93SGunnar Mills                      "Critical",
20578ae37025SChen,Yugang                      0,
20588ae37025SChen,Yugang                      {},
20598ae37025SChen,Yugang                      "None.",
20608ae37025SChen,Yugang                  }},
20618ae37025SChen,Yugang     MessageEntry{"SecurityP2aBridgeEnabled",
20628ae37025SChen,Yugang                  {
20638ae37025SChen,Yugang                      "Indicates that the P2A bridge is enabled.",
20648ae37025SChen,Yugang                      "P2A(PCIe to AHB) bridge is enabled.",
20658ae37025SChen,Yugang                      "Critical",
2066e7808c93SGunnar Mills                      "Critical",
20678ae37025SChen,Yugang                      0,
20688ae37025SChen,Yugang                      {},
20698ae37025SChen,Yugang                      "None.",
20708ae37025SChen,Yugang                  }},
20718ae37025SChen,Yugang     MessageEntry{"SecurityUartPortDebugEnabled",
20728ae37025SChen,Yugang                  {
20738ae37025SChen,Yugang                      "Indicates that the uart port debug is enabled.",
20748ae37025SChen,Yugang                      "Uart port debug is enabled.",
20758ae37025SChen,Yugang                      "Critical",
2076e7808c93SGunnar Mills                      "Critical",
20778ae37025SChen,Yugang                      0,
20788ae37025SChen,Yugang                      {},
20798ae37025SChen,Yugang                      "None.",
20808ae37025SChen,Yugang                  }},
20818988dda4SSuryakanth Sekar     MessageEntry{
20828988dda4SSuryakanth Sekar         "SecurityUserStrongHashAlgoRestored",
20838988dda4SSuryakanth Sekar         {
20848988dda4SSuryakanth Sekar             "Indicates that password computing hash algorithm changed.",
20858988dda4SSuryakanth Sekar             "Password computing hash algorithm is changed to sha256/sha512.",
20868988dda4SSuryakanth Sekar             "OK",
2087e7808c93SGunnar Mills             "OK",
20888988dda4SSuryakanth Sekar             0,
20898988dda4SSuryakanth Sekar             {},
20908988dda4SSuryakanth Sekar             "None.",
20918988dda4SSuryakanth Sekar         }},
20928988dda4SSuryakanth Sekar 
20938988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroAssigned",
20948988dda4SSuryakanth Sekar                  {
20958988dda4SSuryakanth Sekar                      "Indicates that non root user assigned with user ID zero.",
20968988dda4SSuryakanth Sekar                      "User ID Zero is assigned with non-root user.",
20978988dda4SSuryakanth Sekar                      "Critical",
2098e7808c93SGunnar Mills                      "Critical",
20998988dda4SSuryakanth Sekar                      0,
21008988dda4SSuryakanth Sekar                      {},
21018988dda4SSuryakanth Sekar                      "None.",
21028988dda4SSuryakanth Sekar                  }},
21038988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroRemoved",
21048988dda4SSuryakanth Sekar                  {
21058988dda4SSuryakanth Sekar                      "Indicates that non root user ID is removed",
21068988dda4SSuryakanth Sekar                      "Non root user assigned with user ID zero is removed.",
21078988dda4SSuryakanth Sekar                      "OK",
2108e7808c93SGunnar Mills                      "OK",
21098988dda4SSuryakanth Sekar                      0,
21108988dda4SSuryakanth Sekar                      {},
21118988dda4SSuryakanth Sekar                      "None.",
21128988dda4SSuryakanth Sekar                  }},
21138988dda4SSuryakanth Sekar 
21148988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootEnabled",
21158988dda4SSuryakanth Sekar                  {
21168988dda4SSuryakanth Sekar                      "Indicates that system root user is enabled.",
21178988dda4SSuryakanth Sekar                      "User root is enabled.",
21188988dda4SSuryakanth Sekar                      "Critical",
2119e7808c93SGunnar Mills                      "Critical",
21208988dda4SSuryakanth Sekar                      0,
21218988dda4SSuryakanth Sekar                      {},
21228988dda4SSuryakanth Sekar                      "None.",
21238988dda4SSuryakanth Sekar                  }},
21248988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootDisabled",
21258988dda4SSuryakanth Sekar                  {
21268988dda4SSuryakanth Sekar                      "Indicates that system root user is disabled.",
21278988dda4SSuryakanth Sekar                      "User root is disabled.",
21288988dda4SSuryakanth Sekar                      "OK",
2129e7808c93SGunnar Mills                      "OK",
21308988dda4SSuryakanth Sekar                      0,
21318988dda4SSuryakanth Sekar                      {},
21328988dda4SSuryakanth Sekar                      "None.",
21338988dda4SSuryakanth Sekar                  }},
21348988dda4SSuryakanth Sekar 
21358988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellEnabled",
21368988dda4SSuryakanth Sekar                  {
21378988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is enabled.",
21388988dda4SSuryakanth Sekar                      "Unsupported shell is enabled.",
21398988dda4SSuryakanth Sekar                      "Critical",
2140e7808c93SGunnar Mills                      "Critical",
21418988dda4SSuryakanth Sekar                      0,
21428988dda4SSuryakanth Sekar                      {},
21438988dda4SSuryakanth Sekar                      "None.",
21448988dda4SSuryakanth Sekar                  }},
21458988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellRemoved",
21468988dda4SSuryakanth Sekar                  {
21478988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is removed.",
21488988dda4SSuryakanth Sekar                      "Unsupported shell is removed.",
21498988dda4SSuryakanth Sekar                      "OK",
2150e7808c93SGunnar Mills                      "OK",
21518988dda4SSuryakanth Sekar                      0,
21528988dda4SSuryakanth Sekar                      {},
21538988dda4SSuryakanth Sekar                      "None.",
21548988dda4SSuryakanth Sekar                  }},
21558988dda4SSuryakanth Sekar 
21568988dda4SSuryakanth Sekar     MessageEntry{
21578988dda4SSuryakanth Sekar         "SecurityUserWeakHashAlgoEnabled",
21588988dda4SSuryakanth Sekar         {
21598988dda4SSuryakanth Sekar             "Indicates that weak password computing hash algorithm is enabled.",
21608988dda4SSuryakanth Sekar             "Weak password computing hash algorithm is enabled.",
21618988dda4SSuryakanth Sekar             "Critical",
2162e7808c93SGunnar Mills             "Critical",
21638988dda4SSuryakanth Sekar             0,
21648988dda4SSuryakanth Sekar             {},
21658988dda4SSuryakanth Sekar             "None.",
21668988dda4SSuryakanth Sekar         }},
2167fbe8378fSJason M. Bills     MessageEntry{"SELEntryAdded",
2168fbe8378fSJason M. Bills                  {
2169271584abSEd Tanous                      "Indicates a SEL entry was added using the "
2170fbe8378fSJason M. Bills                      "Add SEL Entry or Platform Event command.",
2171271584abSEd Tanous                      "SEL Entry Added: %1",
2172271584abSEd Tanous                      "OK",
2173e7808c93SGunnar Mills                      "OK",
2174271584abSEd Tanous                      1,
2175271584abSEd Tanous 
2176fbe8378fSJason M. Bills                      {
2177fbe8378fSJason M. Bills                          "string",
2178fbe8378fSJason M. Bills                      },
2179271584abSEd Tanous                      "None.",
2180fbe8378fSJason M. Bills                  }},
2181271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingHigh",
2182fbe8378fSJason M. Bills                  {
2183271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2184fbe8378fSJason M. Bills                      "critical high threshold going high.",
2185271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going "
2186fbe8378fSJason M. Bills                      "high. Reading=%2 Threshold=%3.",
2187271584abSEd Tanous                      "Critical",
2188e7808c93SGunnar Mills                      "Critical",
2189271584abSEd Tanous                      3,
2190271584abSEd Tanous                      {"string", "number", "number"},
2191271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
2192fbe8378fSJason M. Bills                  }},
2193271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingLow",
2194fbe8378fSJason M. Bills                  {
2195271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2196fbe8378fSJason M. Bills                      "critical high threshold going low.",
2197271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going low. "
2198fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2199271584abSEd Tanous                      "OK",
2200e7808c93SGunnar Mills                      "OK",
2201271584abSEd Tanous                      3,
2202271584abSEd Tanous                      {"string", "number", "number"},
2203271584abSEd Tanous                      "None.",
2204fbe8378fSJason M. Bills                  }},
2205271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingHigh",
2206fbe8378fSJason M. Bills                  {
2207271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2208fbe8378fSJason M. Bills                      "critical low threshold going high.",
2209271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going high. "
2210fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2211271584abSEd Tanous                      "OK",
2212e7808c93SGunnar Mills                      "OK",
2213271584abSEd Tanous                      3,
2214271584abSEd Tanous                      {"string", "number", "number"},
2215271584abSEd Tanous                      "None.",
2216fbe8378fSJason M. Bills                  }},
2217271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingLow",
2218fbe8378fSJason M. Bills                  {
2219271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2220fbe8378fSJason M. Bills                      "critical low threshold going low.",
2221271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going low. "
2222fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2223271584abSEd Tanous                      "Critical",
2224e7808c93SGunnar Mills                      "Critical",
2225271584abSEd Tanous                      3,
2226271584abSEd Tanous                      {"string", "number", "number"},
2227271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
2228fbe8378fSJason M. Bills                  }},
2229271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingHigh",
2230fbe8378fSJason M. Bills                  {
2231271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2232fbe8378fSJason M. Bills                      "warning high threshold going high.",
2233271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going high. "
2234fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2235271584abSEd Tanous                      "Warning",
2236e7808c93SGunnar Mills                      "Warning",
2237271584abSEd Tanous                      3,
2238271584abSEd Tanous                      {"string", "number", "number"},
2239271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
2240fbe8378fSJason M. Bills                  }},
2241271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingLow",
2242fbe8378fSJason M. Bills                  {
2243271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2244fbe8378fSJason M. Bills                      "warning high threshold going low.",
2245271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going low. "
2246fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2247271584abSEd Tanous                      "OK",
2248e7808c93SGunnar Mills                      "OK",
2249271584abSEd Tanous                      3,
2250271584abSEd Tanous                      {"string", "number", "number"},
2251271584abSEd Tanous                      "None.",
2252fbe8378fSJason M. Bills                  }},
2253271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingHigh",
2254fbe8378fSJason M. Bills                  {
2255271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2256fbe8378fSJason M. Bills                      "warning low threshold going high.",
2257271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going high. "
2258fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2259271584abSEd Tanous                      "OK",
2260e7808c93SGunnar Mills                      "OK",
2261271584abSEd Tanous                      3,
2262271584abSEd Tanous                      {"string", "number", "number"},
2263271584abSEd Tanous                      "None.",
2264fbe8378fSJason M. Bills                  }},
2265271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingLow",
2266fbe8378fSJason M. Bills                  {
2267271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2268fbe8378fSJason M. Bills                      "warning low threshold going low.",
2269271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going low. "
2270fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2271271584abSEd Tanous                      "Warning",
2272e7808c93SGunnar Mills                      "Warning",
2273271584abSEd Tanous                      3,
2274271584abSEd Tanous                      {"string", "number", "number"},
2275271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
2276fbe8378fSJason M. Bills                  }},
2277fb7579e9SJames Feist     MessageEntry{"ServiceFailure",
2278fb7579e9SJames Feist                  {
2279fb7579e9SJames Feist                      "Indicates that a service has exited unsuccessfully.",
2280271584abSEd Tanous                      "Service %1 has exited unsuccessfully.",
2281271584abSEd Tanous                      "Warning",
2282e7808c93SGunnar Mills                      "Warning",
2283271584abSEd Tanous                      1,
2284271584abSEd Tanous                      {"string"},
2285271584abSEd Tanous                      "None.",
2286fb7579e9SJames Feist                  }},
2287fbe8378fSJason M. Bills     MessageEntry{"SparingRedundancyDegraded",
2288fbe8378fSJason M. Bills                  {
2289fbe8378fSJason M. Bills                      "Indicates the sparing redundancy state is degraded.",
2290271584abSEd Tanous                      "Sparing redundancy state degraded. Socket=%1 "
2291fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
2292271584abSEd Tanous                      "Warning",
2293e7808c93SGunnar Mills                      "Warning",
2294271584abSEd Tanous                      5,
2295271584abSEd Tanous 
2296fbe8378fSJason M. Bills                      {
2297fbe8378fSJason M. Bills                          "number",
2298fbe8378fSJason M. Bills                          "string",
2299fbe8378fSJason M. Bills                          "number",
2300fbe8378fSJason M. Bills                          "string",
2301fbe8378fSJason M. Bills                          "number",
2302fbe8378fSJason M. Bills                      },
2303271584abSEd Tanous                      "None.",
2304fbe8378fSJason M. Bills                  }},
2305fbe8378fSJason M. Bills     MessageEntry{
2306fbe8378fSJason M. Bills         "SparingRedundancyFull",
2307fbe8378fSJason M. Bills         {
2308fbe8378fSJason M. Bills             "Indicates the sparing redundancy state is fully redundant.",
2309271584abSEd Tanous             "Sparing redundancy state fully redundant. Socket=%1 "
2310fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
2311271584abSEd Tanous             "OK",
2312e7808c93SGunnar Mills             "OK",
2313271584abSEd Tanous             5,
2314271584abSEd Tanous 
2315fbe8378fSJason M. Bills             {
2316fbe8378fSJason M. Bills                 "number",
2317fbe8378fSJason M. Bills                 "string",
2318fbe8378fSJason M. Bills                 "number",
2319fbe8378fSJason M. Bills                 "string",
2320fbe8378fSJason M. Bills                 "number",
2321fbe8378fSJason M. Bills             },
2322271584abSEd Tanous             "None.",
2323fbe8378fSJason M. Bills         }},
2324271584abSEd Tanous     MessageEntry{"SsbThermalTrip",
2325b76f9ca1SChen,Yugang                  {
2326b76f9ca1SChen,Yugang                      "Indicates that an SSB Thermal trip has been asserted.",
2327271584abSEd Tanous                      "SSB Thermal trip.",
2328271584abSEd Tanous                      "Critical",
2329e7808c93SGunnar Mills                      "Critical",
2330271584abSEd Tanous                      0,
2331271584abSEd Tanous                      {},
2332271584abSEd Tanous                      "None.",
2333b76f9ca1SChen,Yugang                  }},
233452efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceDisabledProvisioned",
233552efa5d6SRichard Marian Thomaiyar                  {
233652efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the disabled "
233752efa5d6SRichard Marian Thomaiyar                      "provisioned state. All commands are blocked to execute "
233852efa5d6SRichard Marian Thomaiyar                      "through the system interface.",
233952efa5d6SRichard Marian Thomaiyar                      "The system interface is in the disabled provisioned "
234052efa5d6SRichard Marian Thomaiyar                      "state.",
234152efa5d6SRichard Marian Thomaiyar                      "OK",
2342e7808c93SGunnar Mills                      "OK",
234352efa5d6SRichard Marian Thomaiyar                      0,
234452efa5d6SRichard Marian Thomaiyar                      {},
234552efa5d6SRichard Marian Thomaiyar                      "None.",
234652efa5d6SRichard Marian Thomaiyar                  }},
234752efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceUnprovisioned",
234852efa5d6SRichard Marian Thomaiyar                  {
234952efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the "
235052efa5d6SRichard Marian Thomaiyar                      "unprovisioned state. All commands are permitted to "
235152efa5d6SRichard Marian Thomaiyar                      "execute through the system interface.",
235252efa5d6SRichard Marian Thomaiyar                      "The system interface is in the unprovisioned state.",
235352efa5d6SRichard Marian Thomaiyar                      "Critical",
2354e7808c93SGunnar Mills                      "Critical",
235552efa5d6SRichard Marian Thomaiyar                      0,
235652efa5d6SRichard Marian Thomaiyar                      {},
235752efa5d6SRichard Marian Thomaiyar                      "None.",
235852efa5d6SRichard Marian Thomaiyar                  }},
235952efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceWhitelistProvisioned",
236052efa5d6SRichard Marian Thomaiyar                  {
236152efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the whitelist "
236252efa5d6SRichard Marian Thomaiyar                      "provisioned state. Only whitelisted commands "
236352efa5d6SRichard Marian Thomaiyar                      "are permitted to execute through the system interface.",
236452efa5d6SRichard Marian Thomaiyar                      "The system interface is in the whitelist provisioned "
236552efa5d6SRichard Marian Thomaiyar                      "state.",
236652efa5d6SRichard Marian Thomaiyar                      "Warning",
2367e7808c93SGunnar Mills                      "Warning",
236852efa5d6SRichard Marian Thomaiyar                      0,
236952efa5d6SRichard Marian Thomaiyar                      {},
237052efa5d6SRichard Marian Thomaiyar                      "None.",
237152efa5d6SRichard Marian Thomaiyar                  }},
2372bc48a175SJason M. Bills     MessageEntry{"SystemPowerGoodFailed",
2373bc48a175SJason M. Bills                  {
2374bc48a175SJason M. Bills                      "Indicates that the system power good signal failed "
2375bc48a175SJason M. Bills                      "to assert within the specified time (VR failure).",
2376271584abSEd Tanous                      "System power good failed to assert within %1 "
2377bc48a175SJason M. Bills                      "milliseconds (VR failure).",
2378271584abSEd Tanous                      "Critical",
2379e7808c93SGunnar Mills                      "Critical",
2380271584abSEd Tanous                      1,
2381271584abSEd Tanous                      {"number"},
2382271584abSEd Tanous                      "None.",
2383bc48a175SJason M. Bills                  }},
2384fbe8378fSJason M. Bills     MessageEntry{"SystemPowerLost",
2385fbe8378fSJason M. Bills                  {
2386271584abSEd Tanous                      "Indicates that power was lost while the "
2387fbe8378fSJason M. Bills                      "system was powered on.",
2388271584abSEd Tanous                      "System Power Lost.",
2389271584abSEd Tanous                      "Critical",
2390e7808c93SGunnar Mills                      "Critical",
2391271584abSEd Tanous                      0,
2392271584abSEd Tanous                      {},
2393271584abSEd Tanous                      "None.",
2394fbe8378fSJason M. Bills                  }},
2395271584abSEd Tanous     MessageEntry{"SystemPowerOffFailed",
2396fbe8378fSJason M. Bills                  {
2397271584abSEd Tanous                      "Indicates that the system failed to power off.",
2398271584abSEd Tanous                      "System Power-Off Failed.",
2399271584abSEd Tanous                      "Critical",
2400e7808c93SGunnar Mills                      "Critical",
2401271584abSEd Tanous                      0,
2402271584abSEd Tanous                      {},
2403271584abSEd Tanous                      "None.",
2404fbe8378fSJason M. Bills                  }},
2405271584abSEd Tanous     MessageEntry{"SystemPowerOnFailed",
2406fbe8378fSJason M. Bills                  {
2407271584abSEd Tanous                      "Indicates that the system failed to power on.",
2408271584abSEd Tanous                      "System Power-On Failed.",
2409271584abSEd Tanous                      "Critical",
2410e7808c93SGunnar Mills                      "Critical",
2411271584abSEd Tanous                      0,
2412271584abSEd Tanous                      {},
2413271584abSEd Tanous                      "None.",
2414fbe8378fSJason M. Bills                  }},
241573de092fSJason M. Bills     MessageEntry{
241673de092fSJason M. Bills         "VoltageRegulatorOverheated",
241773de092fSJason M. Bills         {
241873de092fSJason M. Bills             "Indicates that the specified voltage regulator overheated.",
2419271584abSEd Tanous             "%1 Voltage Regulator Overheated.",
2420271584abSEd Tanous             "Critical",
2421e7808c93SGunnar Mills             "Critical",
2422271584abSEd Tanous             1,
2423271584abSEd Tanous             {"string"},
2424271584abSEd Tanous             "None.",
242573de092fSJason M. Bills         }},
24269aa46454SAgnieszka Szlendak 
2427fbe8378fSJason M. Bills };
2428fbe8378fSJason M. Bills } // namespace redfish::message_registries::openbmc
2429