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.",
23271584abSEd Tanous     "#MessageRegistry.v1_0_0.MessageRegistry",
24271584abSEd Tanous     "OpenBMC.0.1.0",
25271584abSEd Tanous     "OpenBMC Message Registry",
26271584abSEd Tanous     "en",
27271584abSEd Tanous     "This registry defines the base messages for OpenBMC.",
28271584abSEd Tanous     "OpenBMC",
29271584abSEd Tanous     "0.1.0",
30271584abSEd Tanous     "OpenBMC",
31fbe8378fSJason M. Bills };
328988dda4SSuryakanth Sekar constexpr std::array<MessageEntry, 152> 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",
39271584abSEd Tanous             4,
40fbe8378fSJason M. Bills             {
41fbe8378fSJason M. Bills                 "number",
42fbe8378fSJason M. Bills                 "string",
43fbe8378fSJason M. Bills                 "number",
44fbe8378fSJason M. Bills                 "number",
45fbe8378fSJason M. Bills             },
46271584abSEd Tanous             "None.",
47fbe8378fSJason M. Bills         }},
48fbe8378fSJason M. Bills     MessageEntry{
494dcc3f92SSuryakanth Sekar         "AtScaleDebugFeatureEnabledAtHardware",
504dcc3f92SSuryakanth Sekar         {
514dcc3f92SSuryakanth Sekar             "Indicates that At-Scale Debug enable is detected in hardware.",
524dcc3f92SSuryakanth Sekar             "At-Scale Debug Feature is enabled in hardware.",
534dcc3f92SSuryakanth Sekar             "Critical",
544dcc3f92SSuryakanth Sekar             0,
554dcc3f92SSuryakanth Sekar             {},
564dcc3f92SSuryakanth Sekar             "None.",
574dcc3f92SSuryakanth Sekar         }},
584dcc3f92SSuryakanth Sekar     MessageEntry{
594dcc3f92SSuryakanth Sekar         "AtScaleDebugFeatureDisabledAtHardware",
604dcc3f92SSuryakanth Sekar         {
614dcc3f92SSuryakanth Sekar             "Indicates that At-Scale Debug disable is detected in hardware.",
624dcc3f92SSuryakanth Sekar             "At-Scale Debug Feature is disabled in hardware.",
634dcc3f92SSuryakanth Sekar             "OK",
644dcc3f92SSuryakanth Sekar             0,
654dcc3f92SSuryakanth Sekar             {},
664dcc3f92SSuryakanth Sekar             "None.",
674dcc3f92SSuryakanth Sekar         }},
684dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugFeatureEnabled",
694dcc3f92SSuryakanth Sekar                  {
704dcc3f92SSuryakanth Sekar                      "Indicates that At-Scale Debug service is started.",
714dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is started.",
724dcc3f92SSuryakanth Sekar                      "Critical",
734dcc3f92SSuryakanth Sekar                      0,
744dcc3f92SSuryakanth Sekar                      {},
754dcc3f92SSuryakanth Sekar                      "None.",
764dcc3f92SSuryakanth Sekar                  }},
774dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugFeatureDisabled",
784dcc3f92SSuryakanth Sekar                  {
794dcc3f92SSuryakanth Sekar                      "Indicates that At-Scale Debug service is stopped.",
804dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is stopped.",
814dcc3f92SSuryakanth Sekar                      "OK",
824dcc3f92SSuryakanth Sekar                      0,
834dcc3f92SSuryakanth Sekar                      {},
844dcc3f92SSuryakanth Sekar                      "None.",
854dcc3f92SSuryakanth Sekar                  }},
864dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugConnected",
874dcc3f92SSuryakanth Sekar                  {
884dcc3f92SSuryakanth Sekar                      "Indicates At-Scale Debug connection has been established",
894dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is now connected %1",
904dcc3f92SSuryakanth Sekar                      "Critical",
914dcc3f92SSuryakanth Sekar                      1,
924dcc3f92SSuryakanth Sekar                      {"string"},
934dcc3f92SSuryakanth Sekar                      "None.",
944dcc3f92SSuryakanth Sekar                  }},
954dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugDisconnected",
964dcc3f92SSuryakanth Sekar                  {
974dcc3f92SSuryakanth Sekar                      "Indicates At-Scale Debug connection has ended",
984dcc3f92SSuryakanth Sekar                      "At-Scale Debug service is now disconnected",
994dcc3f92SSuryakanth Sekar                      "OK",
1004dcc3f92SSuryakanth Sekar                      0,
1014dcc3f92SSuryakanth Sekar                      {},
1024dcc3f92SSuryakanth Sekar                      "None.",
1034dcc3f92SSuryakanth Sekar                  }},
1044dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugConnectionFailed",
1054dcc3f92SSuryakanth Sekar                  {
1064dcc3f92SSuryakanth Sekar                      "Indicates At-Scale Debug connection aborted/failed",
1074dcc3f92SSuryakanth Sekar                      "At-Scale Debug connection aborted/failed",
1084dcc3f92SSuryakanth Sekar                      "Critical",
1094dcc3f92SSuryakanth Sekar                      0,
1104dcc3f92SSuryakanth Sekar                      {},
1114dcc3f92SSuryakanth Sekar                      "None.",
1124dcc3f92SSuryakanth Sekar                  }},
1134dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugSpecialUserEnabled",
1144dcc3f92SSuryakanth Sekar                  {
1154dcc3f92SSuryakanth Sekar                      "Indicates that special user is enabled.",
1164dcc3f92SSuryakanth Sekar                      "At-Scale Debug special user is enabled",
1174dcc3f92SSuryakanth Sekar                      "Critical",
1184dcc3f92SSuryakanth Sekar                      0,
1194dcc3f92SSuryakanth Sekar                      {},
1204dcc3f92SSuryakanth Sekar                      "None.",
1214dcc3f92SSuryakanth Sekar                  }},
1224dcc3f92SSuryakanth Sekar     MessageEntry{"AtScaleDebugSpecialUserDisabled",
1234dcc3f92SSuryakanth Sekar                  {
1244dcc3f92SSuryakanth Sekar                      "Indicates that special user is disabled.",
1254dcc3f92SSuryakanth Sekar                      "At-Scale Debug special user is disabled",
1264dcc3f92SSuryakanth Sekar                      "OK",
1274dcc3f92SSuryakanth Sekar                      0,
1284dcc3f92SSuryakanth Sekar                      {},
1294dcc3f92SSuryakanth Sekar                      "None.",
1304dcc3f92SSuryakanth Sekar                  }},
1314dcc3f92SSuryakanth Sekar 
1324dcc3f92SSuryakanth Sekar     MessageEntry{
133fbe8378fSJason M. Bills         "BIOSBoot",
134fbe8378fSJason M. Bills         {
135fbe8378fSJason M. Bills             "Indicates BIOS has transitioned control to the OS Loader.",
136271584abSEd Tanous             "BIOS System Boot.",
137271584abSEd Tanous             "OK",
138271584abSEd Tanous             0,
139271584abSEd Tanous             {},
140271584abSEd Tanous             "None.",
141fbe8378fSJason M. Bills         }},
1420c0f18e7SAppaRao Puli     MessageEntry{"BIOSFirmwarePanicReason",
1430c0f18e7SAppaRao Puli                  {
1440c0f18e7SAppaRao Puli                      "Indicates the reason for BIOS firmware panic.",
1450c0f18e7SAppaRao Puli                      "BIOS firmware panic occurred due to %1.",
1460c0f18e7SAppaRao Puli                      "Warning",
1470c0f18e7SAppaRao Puli                      1,
1480c0f18e7SAppaRao Puli                      {
1490c0f18e7SAppaRao Puli                          "string",
1500c0f18e7SAppaRao Puli                      },
1510c0f18e7SAppaRao Puli                      "None.",
1520c0f18e7SAppaRao Puli                  }},
1530c0f18e7SAppaRao Puli     MessageEntry{"BIOSFirmwareRecoveryReason",
1540c0f18e7SAppaRao Puli                  {
1550c0f18e7SAppaRao Puli                      "Indicates the reason for BIOS firmware recovery.",
1560c0f18e7SAppaRao Puli                      "BIOS firmware recovery occurred due to %1.",
1570c0f18e7SAppaRao Puli                      "Warning",
1580c0f18e7SAppaRao Puli                      1,
1590c0f18e7SAppaRao Puli                      {
1600c0f18e7SAppaRao Puli                          "string",
1610c0f18e7SAppaRao Puli                      },
1620c0f18e7SAppaRao Puli                      "None.",
1630c0f18e7SAppaRao Puli                  }},
1640c0f18e7SAppaRao Puli     MessageEntry{"BIOSFirmwareResiliencyError",
1650c0f18e7SAppaRao Puli                  {
1660c0f18e7SAppaRao Puli                      "Indicates BIOS firmware encountered resilience error.",
1670c0f18e7SAppaRao Puli                      "BIOS firmware resiliency error. Error reason: %1.",
1680c0f18e7SAppaRao Puli                      "Critical",
1690c0f18e7SAppaRao Puli                      1,
1700c0f18e7SAppaRao Puli                      {
1710c0f18e7SAppaRao Puli                          "string",
1720c0f18e7SAppaRao Puli                      },
1730c0f18e7SAppaRao Puli                      "None.",
1740c0f18e7SAppaRao Puli                  }},
175271584abSEd Tanous     MessageEntry{"BIOSPOSTError",
176fbe8378fSJason M. Bills                  {
177271584abSEd Tanous                      "Indicates BIOS POST has encountered an error.",
178271584abSEd Tanous                      "BIOS POST Error. Error Code=%1",
179271584abSEd Tanous                      "Warning",
180271584abSEd Tanous                      1,
181271584abSEd Tanous                      {"number"},
182271584abSEd Tanous                      "None.",
183fbe8378fSJason M. Bills                  }},
184fbe8378fSJason M. Bills     MessageEntry{"BIOSRecoveryComplete",
185fbe8378fSJason M. Bills                  {
186271584abSEd Tanous                      "Indicates BIOS Recovery has completed.",
187271584abSEd Tanous                      "BIOS Recovery Complete.",
188271584abSEd Tanous                      "OK",
189271584abSEd Tanous                      0,
190271584abSEd Tanous                      {},
191271584abSEd Tanous                      "None.",
192fbe8378fSJason M. Bills                  }},
193fbe8378fSJason M. Bills     MessageEntry{"BIOSRecoveryStart",
194fbe8378fSJason M. Bills                  {
195271584abSEd Tanous                      "Indicates BIOS Recovery has started.",
196271584abSEd Tanous                      "BIOS Recovery Start.",
197271584abSEd Tanous                      "Warning",
198271584abSEd Tanous                      0,
199271584abSEd Tanous                      {},
200271584abSEd Tanous                      "None.",
201fbe8378fSJason M. Bills                  }},
2020c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwarePanicReason",
2030c0f18e7SAppaRao Puli                  {
2040c0f18e7SAppaRao Puli                      "Indicates the reason for last BMC firmware panic.",
2050c0f18e7SAppaRao Puli                      "BMC firmware panic occurred due to %1.",
2060c0f18e7SAppaRao Puli                      "Warning",
2070c0f18e7SAppaRao Puli                      1,
2080c0f18e7SAppaRao Puli                      {
2090c0f18e7SAppaRao Puli                          "string",
2100c0f18e7SAppaRao Puli                      },
2110c0f18e7SAppaRao Puli                      "None.",
2120c0f18e7SAppaRao Puli                  }},
2130c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwareRecoveryReason",
2140c0f18e7SAppaRao Puli                  {
2150c0f18e7SAppaRao Puli                      "Indicates the reason for last BMC firmware recovery.",
2160c0f18e7SAppaRao Puli                      "BMC firmware recovery occurred due to %1.",
2170c0f18e7SAppaRao Puli                      "Warning",
2180c0f18e7SAppaRao Puli                      1,
2190c0f18e7SAppaRao Puli                      {
2200c0f18e7SAppaRao Puli                          "string",
2210c0f18e7SAppaRao Puli                      },
2220c0f18e7SAppaRao Puli                      "None.",
2230c0f18e7SAppaRao Puli                  }},
2240c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwareResiliencyError",
2250c0f18e7SAppaRao Puli                  {
2260c0f18e7SAppaRao Puli                      "Indicates BMC firmware encountered resilience error.",
2270c0f18e7SAppaRao Puli                      "BMC firmware resiliency error. Error reason: %1.",
2280c0f18e7SAppaRao Puli                      "Critical",
2290c0f18e7SAppaRao Puli                      1,
2300c0f18e7SAppaRao Puli                      {
2310c0f18e7SAppaRao Puli                          "string",
2320c0f18e7SAppaRao Puli                      },
2330c0f18e7SAppaRao Puli                      "None.",
2340c0f18e7SAppaRao Puli                  }},
235789771ddSQiang XU     MessageEntry{"ChassisIntrusionDetected",
236789771ddSQiang XU                  {
237789771ddSQiang XU                      "Indicates that a physical security event "
238789771ddSQiang XU                      "of the chassis intrusion has occurred.",
239789771ddSQiang XU                      "Chassis Intrusion Detected.",
240789771ddSQiang XU                      "Warning",
241789771ddSQiang XU                      0,
242789771ddSQiang XU                      {},
243789771ddSQiang XU                      "None.",
244789771ddSQiang XU                  }},
245789771ddSQiang XU     MessageEntry{"ChassisIntrusionReset",
246789771ddSQiang XU                  {
247789771ddSQiang XU                      "Indicates that chassis intrusion status has recovered.",
248789771ddSQiang XU                      "Chassis Intrusion Reset.",
249789771ddSQiang XU                      "OK",
250789771ddSQiang XU                      0,
251789771ddSQiang XU                      {},
252789771ddSQiang XU                      "None.",
253789771ddSQiang XU                  }},
2540c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwarePanicReason",
2550c0f18e7SAppaRao Puli                  {
2560c0f18e7SAppaRao Puli                      "Indicates the reason for CPLD firmware panic.",
2570c0f18e7SAppaRao Puli                      "CPLD firmware panic occurred due to %1.",
2580c0f18e7SAppaRao Puli                      "Warning",
2590c0f18e7SAppaRao Puli                      1,
2600c0f18e7SAppaRao Puli                      {
2610c0f18e7SAppaRao Puli                          "string",
2620c0f18e7SAppaRao Puli                      },
2630c0f18e7SAppaRao Puli                      "None.",
2640c0f18e7SAppaRao Puli                  }},
2650c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwareRecoveryReason",
2660c0f18e7SAppaRao Puli                  {
2670c0f18e7SAppaRao Puli                      "Indicates the reason for CPLD firmware recovery.",
2680c0f18e7SAppaRao Puli                      "CPLD firmware recovery occurred due to %1.",
2690c0f18e7SAppaRao Puli                      "Warning",
2700c0f18e7SAppaRao Puli                      1,
2710c0f18e7SAppaRao Puli                      {
2720c0f18e7SAppaRao Puli                          "string",
2730c0f18e7SAppaRao Puli                      },
2740c0f18e7SAppaRao Puli                      "None.",
2750c0f18e7SAppaRao Puli                  }},
2760c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwareResiliencyError",
2770c0f18e7SAppaRao Puli                  {
2780c0f18e7SAppaRao Puli                      "Indicates CPLD firmware encountered resilience error.",
2790c0f18e7SAppaRao Puli                      "CPLD firmware resiliency error. Error reason: %1.",
2800c0f18e7SAppaRao Puli                      "Critical",
2810c0f18e7SAppaRao Puli                      1,
2820c0f18e7SAppaRao Puli                      {
2830c0f18e7SAppaRao Puli                          "string",
2840c0f18e7SAppaRao Puli                      },
2850c0f18e7SAppaRao Puli                      "None.",
2860c0f18e7SAppaRao Puli                  }},
287fbe8378fSJason M. Bills     MessageEntry{"CPUError",
288fbe8378fSJason M. Bills                  {
289271584abSEd Tanous                      "Indicates that a CPU Error occurred of "
290fbe8378fSJason M. Bills                      "the specified type or cause.",
291271584abSEd Tanous                      "CPU Error Occurred: %1.",
292271584abSEd Tanous                      "Critical",
293271584abSEd Tanous                      1,
294271584abSEd Tanous                      {"string"},
295271584abSEd Tanous                      "None.",
296fbe8378fSJason M. Bills                  }},
29773de092fSJason M. Bills     MessageEntry{"CPUThermalTrip",
29873de092fSJason M. Bills                  {
299271584abSEd Tanous                      "Indicates that the specified CPU thermal "
30073de092fSJason M. Bills                      "trip has been asserted.",
301271584abSEd Tanous                      "CPU %1 Thermal Trip.",
302271584abSEd Tanous                      "Critical",
303271584abSEd Tanous                      1,
304271584abSEd Tanous                      {"number"},
305271584abSEd Tanous                      "None.",
30673de092fSJason M. Bills                  }},
307271584abSEd Tanous     MessageEntry{"DCPowerOff",
308fbe8378fSJason M. Bills                  {
309271584abSEd Tanous                      "Indicates that the system DC power is off.",
310271584abSEd Tanous                      "Host system DC power is off",
311271584abSEd Tanous                      "OK",
312271584abSEd Tanous                      0,
313271584abSEd Tanous                      {},
314271584abSEd Tanous                      "None.",
315fbe8378fSJason M. Bills                  }},
316fbe8378fSJason M. Bills     MessageEntry{"DCPowerOn",
317fbe8378fSJason M. Bills                  {
318271584abSEd Tanous                      "Indicates that the system DC power is on.",
319271584abSEd Tanous                      "Host system DC power is on",
320271584abSEd Tanous                      "OK",
321271584abSEd Tanous                      0,
322271584abSEd Tanous                      {},
323271584abSEd Tanous                      "None.",
324fbe8378fSJason M. Bills                  }},
325c75f1e9aSJames Feist     MessageEntry{"DriveError",
326c75f1e9aSJames Feist                  {
327c75f1e9aSJames Feist                      "Indicates that a Drive Error occurred of "
328c75f1e9aSJames Feist                      "the specified type or cause.",
329c75f1e9aSJames Feist                      "Drive Error Occurred: %1.",
330c75f1e9aSJames Feist                      "Warning",
331c75f1e9aSJames Feist                      1,
332c75f1e9aSJames Feist                      {"string"},
333c75f1e9aSJames Feist                      "None.",
334c75f1e9aSJames Feist                  }},
335271584abSEd Tanous     MessageEntry{"EventLogCleared",
336fbe8378fSJason M. Bills                  {
337271584abSEd Tanous                      "Indicates that the event log has been cleared.",
338271584abSEd Tanous                      "Event Log Cleared.",
339271584abSEd Tanous                      "OK",
340271584abSEd Tanous                      0,
341271584abSEd Tanous                      {},
342271584abSEd Tanous                      "None.",
343fbe8378fSJason M. Bills                  }},
344271584abSEd Tanous     MessageEntry{"FanInserted",
345fbe8378fSJason M. Bills                  {
346271584abSEd Tanous                      "Indicates that a system fan has been inserted.",
347271584abSEd Tanous                      "%1 inserted.",
348271584abSEd Tanous                      "OK",
349271584abSEd Tanous                      1,
350271584abSEd Tanous                      {"string"},
351271584abSEd Tanous                      "None.",
352fbe8378fSJason M. Bills                  }},
353fbe8378fSJason M. Bills     MessageEntry{"FanRedundancyLost",
354fbe8378fSJason M. Bills                  {
355fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been lost.",
356271584abSEd Tanous                      "Fan redundancy lost.",
357271584abSEd Tanous                      "Warning",
358271584abSEd Tanous                      0,
359271584abSEd Tanous                      {},
360271584abSEd Tanous                      "None.",
361fbe8378fSJason M. Bills                  }},
362271584abSEd Tanous     MessageEntry{"FanRedundancyRegained",
363fbe8378fSJason M. Bills                  {
364fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been regained.",
365271584abSEd Tanous                      "Fan redundancy regained.",
366271584abSEd Tanous                      "OK",
367271584abSEd Tanous                      0,
368271584abSEd Tanous                      {},
369271584abSEd Tanous                      "None.",
370fbe8378fSJason M. Bills                  }},
371271584abSEd Tanous     MessageEntry{"FanRemoved",
372fbe8378fSJason M. Bills                  {
373271584abSEd Tanous                      "Indicates that a system fan has been removed.",
374271584abSEd Tanous                      "%1 removed.",
375271584abSEd Tanous                      "OK",
376271584abSEd Tanous                      1,
377271584abSEd Tanous                      {"string"},
378271584abSEd Tanous                      "None.",
379fbe8378fSJason M. Bills                  }},
380271584abSEd Tanous     MessageEntry{"FirmwareUpdateCompleted",
381fbe8378fSJason M. Bills                  {
382fbe8378fSJason M. Bills                      "Indicates a firmware update has completed successfully.",
383271584abSEd Tanous                      "%1 firmware update to version %2 completed "
384fbe8378fSJason M. Bills                      "successfully.",
385271584abSEd Tanous                      "OK",
386271584abSEd Tanous                      2,
387271584abSEd Tanous                      {"string", "string"},
388271584abSEd Tanous                      "None.",
389fbe8378fSJason M. Bills                  }},
390fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateFailed",
391fbe8378fSJason M. Bills                  {
392271584abSEd Tanous                      "Indicates a firmware update has failed.",
393271584abSEd Tanous                      "%1 firmware update to version %2 failed.",
394271584abSEd Tanous                      "Warning",
395271584abSEd Tanous                      2,
396271584abSEd Tanous                      {"string", "string"},
397271584abSEd Tanous                      "None.",
398fbe8378fSJason M. Bills                  }},
399fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateStarted",
400fbe8378fSJason M. Bills                  {
401271584abSEd Tanous                      "Indicates a firmware update has started.",
402271584abSEd Tanous                      "%1 firmware update to version %2 started.",
403271584abSEd Tanous                      "OK",
404271584abSEd Tanous                      2,
405271584abSEd Tanous                      {"string", "string"},
406271584abSEd Tanous                      "None.",
407fbe8378fSJason M. Bills                  }},
408fbe8378fSJason M. Bills     MessageEntry{
409fbe8378fSJason M. Bills         "GeneralFirmwareSecurityViolation",
410fbe8378fSJason M. Bills         {
411fbe8378fSJason M. Bills             "Indicates a general firmware security violation has occurred.",
412271584abSEd Tanous             "Firmware security violation: %1.",
413271584abSEd Tanous             "Critical",
414271584abSEd Tanous             1,
415271584abSEd Tanous             {"string"},
416271584abSEd Tanous             "None.",
417fbe8378fSJason M. Bills         }},
418271584abSEd Tanous     MessageEntry{"InvalidLoginAttempted",
419fbe8378fSJason M. Bills                  {
420fbe8378fSJason M. Bills                      "Indicates that a login was attempted on the specified "
421fbe8378fSJason M. Bills                      "interface with an invalid username or password.",
422271584abSEd Tanous                      "Invalid username or password attempted on %1.",
423271584abSEd Tanous                      "Warning",
424271584abSEd Tanous                      1,
425271584abSEd Tanous                      {"string"},
426271584abSEd Tanous                      "None.",
427fbe8378fSJason M. Bills                  }},
428fbe8378fSJason M. Bills     MessageEntry{
429d62cec73SJames Feist         "InventoryAdded",
430d62cec73SJames Feist         {
431d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
432d62cec73SJames Feist             "type, and serial number was installed.",
433271584abSEd Tanous             "%1 %2 with serial number %3 was installed.",
434271584abSEd Tanous             "OK",
435271584abSEd Tanous             3,
436271584abSEd Tanous 
437d62cec73SJames Feist             {
438d62cec73SJames Feist                 "string",
439d62cec73SJames Feist                 "string",
440d62cec73SJames Feist                 "string",
441d62cec73SJames Feist             },
442271584abSEd Tanous             "None.",
443d62cec73SJames Feist         }},
444d62cec73SJames Feist     MessageEntry{
445d62cec73SJames Feist         "InventoryRemoved",
446d62cec73SJames Feist         {
447d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
448d62cec73SJames Feist             "type, and serial number was removed.",
449271584abSEd Tanous             "%1 %2 with serial number %3 was removed.",
450271584abSEd Tanous             "OK",
451271584abSEd Tanous             3,
452271584abSEd Tanous 
453d62cec73SJames Feist             {
454d62cec73SJames Feist                 "string",
455d62cec73SJames Feist                 "string",
456d62cec73SJames Feist                 "string",
457d62cec73SJames Feist             },
458271584abSEd Tanous             "None.",
459d62cec73SJames Feist         }},
460d62cec73SJames Feist     MessageEntry{
461fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToHalf",
462fbe8378fSJason M. Bills         {
463fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to half width.",
464271584abSEd Tanous             "Intel UPI link width reduced to half. Node=%1.",
465271584abSEd Tanous             "Warning",
466271584abSEd Tanous             1,
467271584abSEd Tanous 
468fbe8378fSJason M. Bills             {
469fbe8378fSJason M. Bills                 "number",
470fbe8378fSJason M. Bills             },
471271584abSEd Tanous             "None.",
472fbe8378fSJason M. Bills         }},
473fbe8378fSJason M. Bills     MessageEntry{
474fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToQuarter",
475fbe8378fSJason M. Bills         {
476fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to quarter width.",
477271584abSEd Tanous             "Intel UPI link width reduced to quarter. Node=%1.",
478271584abSEd Tanous             "Warning",
479271584abSEd Tanous             1,
480271584abSEd Tanous 
481fbe8378fSJason M. Bills             {
482fbe8378fSJason M. Bills                 "number",
483fbe8378fSJason M. Bills             },
484271584abSEd Tanous             "None.",
485fbe8378fSJason M. Bills         }},
48693a2b2fcSYong Li 
487271584abSEd Tanous     MessageEntry{"IPMIWatchdog",
48893a2b2fcSYong Li                  {
489271584abSEd Tanous                      "Indicates that there is a host watchdog event.",
490271584abSEd Tanous                      "Host Watchdog Event: %1",
491271584abSEd Tanous                      "OK",
492271584abSEd Tanous                      1,
493271584abSEd Tanous 
49493a2b2fcSYong Li                      {
49593a2b2fcSYong Li                          "string",
49693a2b2fcSYong Li                      },
497271584abSEd Tanous                      "None.",
49893a2b2fcSYong Li                  }},
499789771ddSQiang XU     MessageEntry{"LanLost",
500789771ddSQiang XU                  {
501789771ddSQiang XU                      "Indicates that a physical security event "
502789771ddSQiang XU                      "of the LAN leash has lost.",
503789771ddSQiang XU                      "%1 LAN leash lost.",
504789771ddSQiang XU                      "Warning",
505789771ddSQiang XU                      1,
506789771ddSQiang XU                      {
507789771ddSQiang XU                          "string",
508789771ddSQiang XU                      },
509789771ddSQiang XU                      "None.",
510789771ddSQiang XU                  }},
511789771ddSQiang XU     MessageEntry{"LanRegained",
512789771ddSQiang XU                  {
513789771ddSQiang XU                      "Indicates that LAN link status has reconnected.",
514789771ddSQiang XU                      "%1 LAN leash regained.",
515789771ddSQiang XU                      "OK",
516789771ddSQiang XU                      1,
517789771ddSQiang XU                      {
518789771ddSQiang XU                          "string",
519789771ddSQiang XU                      },
520789771ddSQiang XU                      "None.",
521789771ddSQiang XU                  }},
522271584abSEd Tanous     MessageEntry{"LegacyPCIPERR",
523fbe8378fSJason M. Bills                  {
524271584abSEd Tanous                      "Indicates a Legacy PCI PERR.",
525271584abSEd Tanous                      "Legacy PCI PERR. Bus=%1 Device=%2 Function=%3.",
526271584abSEd Tanous                      "Warning",
527271584abSEd Tanous                      3,
528271584abSEd Tanous 
529fbe8378fSJason M. Bills                      {
530fbe8378fSJason M. Bills                          "number",
531fbe8378fSJason M. Bills                          "number",
532fbe8378fSJason M. Bills                          "number",
533fbe8378fSJason M. Bills                      },
534271584abSEd Tanous                      "None.",
535fbe8378fSJason M. Bills                  }},
536271584abSEd Tanous     MessageEntry{"LegacyPCISERR",
537fbe8378fSJason M. Bills                  {
538271584abSEd Tanous                      "Indicates a Legacy PCI SERR.",
539271584abSEd Tanous                      "Legacy PCI SERR. Bus=%1 Device=%2 Function=%3.",
540271584abSEd Tanous                      "Critical",
541271584abSEd Tanous                      3,
542271584abSEd Tanous 
543fbe8378fSJason M. Bills                      {
544fbe8378fSJason M. Bills                          "number",
545fbe8378fSJason M. Bills                          "number",
546fbe8378fSJason M. Bills                          "number",
547fbe8378fSJason M. Bills                      },
548271584abSEd Tanous                      "None.",
549fbe8378fSJason M. Bills                  }},
550fbe8378fSJason M. Bills     MessageEntry{"ManufacturingModeEntered",
551fbe8378fSJason M. Bills                  {
55253d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC entered Factory, "
55353d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
554271584abSEd Tanous                      "Entered Manufacturing Mode.",
55553d9a666SRichard Marian Thomaiyar                      "Critical",
55653d9a666SRichard Marian Thomaiyar                      0,
55753d9a666SRichard Marian Thomaiyar                      {},
55853d9a666SRichard Marian Thomaiyar                      "None.",
55953d9a666SRichard Marian Thomaiyar                  }},
56053d9a666SRichard Marian Thomaiyar     MessageEntry{"ManufacturingModeExited",
56153d9a666SRichard Marian Thomaiyar                  {
56253d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC exited Factory, "
56353d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
56453d9a666SRichard Marian Thomaiyar                      "Exited Manufacturing Mode.",
56553d9a666SRichard Marian Thomaiyar                      "OK",
566271584abSEd Tanous                      0,
567271584abSEd Tanous                      {},
568271584abSEd Tanous                      "None.",
569fbe8378fSJason M. Bills                  }},
5700c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwarePanicReason",
5710c0f18e7SAppaRao Puli                  {
5720c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware panic.",
5730c0f18e7SAppaRao Puli                      "ME firmware panic occurred due to %1.",
5740c0f18e7SAppaRao Puli                      "Warning",
5750c0f18e7SAppaRao Puli                      1,
5760c0f18e7SAppaRao Puli                      {
5770c0f18e7SAppaRao Puli                          "string",
5780c0f18e7SAppaRao Puli                      },
5790c0f18e7SAppaRao Puli                      "None.",
5800c0f18e7SAppaRao Puli                  }},
5810c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareRecoveryReason",
5820c0f18e7SAppaRao Puli                  {
5830c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware recovery.",
5840c0f18e7SAppaRao Puli                      "ME firmware recovery occurred due to %1.",
5850c0f18e7SAppaRao Puli                      "Warning",
5860c0f18e7SAppaRao Puli                      1,
5870c0f18e7SAppaRao Puli                      {
5880c0f18e7SAppaRao Puli                          "string",
5890c0f18e7SAppaRao Puli                      },
5900c0f18e7SAppaRao Puli                      "None.",
5910c0f18e7SAppaRao Puli                  }},
5920c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareResiliencyError",
5930c0f18e7SAppaRao Puli                  {
5940c0f18e7SAppaRao Puli                      "Indicates ME firmware encountered resilience error.",
5950c0f18e7SAppaRao Puli                      "ME firmware resiliency error. Error reason: %1.",
5960c0f18e7SAppaRao Puli                      "Critical",
5970c0f18e7SAppaRao Puli                      1,
5980c0f18e7SAppaRao Puli                      {
5990c0f18e7SAppaRao Puli                          "string",
6000c0f18e7SAppaRao Puli                      },
6010c0f18e7SAppaRao Puli                      "None.",
6020c0f18e7SAppaRao Puli                  }},
603fbe8378fSJason M. Bills     MessageEntry{"MemoryECCCorrectable",
604fbe8378fSJason M. Bills                  {
605271584abSEd Tanous                      "Indicates a Correctable Memory ECC error.",
606271584abSEd Tanous                      "Memory ECC correctable error. Socket=%1 "
607fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Rank=%4.",
608271584abSEd Tanous                      "Warning",
609271584abSEd Tanous                      4,
610271584abSEd Tanous 
611fbe8378fSJason M. Bills                      {
612fbe8378fSJason M. Bills                          "number",
613fbe8378fSJason M. Bills                          "string",
614fbe8378fSJason M. Bills                          "number",
615fbe8378fSJason M. Bills                          "number",
616fbe8378fSJason M. Bills                      },
617271584abSEd Tanous                      "None.",
618fbe8378fSJason M. Bills                  }},
619271584abSEd Tanous     MessageEntry{"MemoryECCUncorrectable",
620fbe8378fSJason M. Bills                  {
621271584abSEd Tanous                      "Indicates an Uncorrectable Memory ECC error.",
622271584abSEd Tanous                      "Memory ECC uncorrectable error. Socket=%1 Channel=%2 "
623fbe8378fSJason M. Bills                      "DIMM=%3 Rank=%4.",
624271584abSEd Tanous                      "Critical",
625271584abSEd Tanous                      4,
626271584abSEd Tanous 
627fbe8378fSJason M. Bills                      {
628fbe8378fSJason M. Bills                          "number",
629fbe8378fSJason M. Bills                          "string",
630fbe8378fSJason M. Bills                          "number",
631fbe8378fSJason M. Bills                          "number",
632fbe8378fSJason M. Bills                      },
633271584abSEd Tanous                      "None.",
634fbe8378fSJason M. Bills                  }},
635271584abSEd Tanous     MessageEntry{"MemoryParityCommandAndAddress",
636fbe8378fSJason M. Bills                  {
637271584abSEd Tanous                      "Indicates a Command and Address parity error.",
638271584abSEd Tanous                      "Command and Address parity error. Socket=%1 Channel=%2 "
639fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
640271584abSEd Tanous                      "Critical",
641271584abSEd Tanous                      5,
642271584abSEd Tanous 
643fbe8378fSJason M. Bills                      {
644fbe8378fSJason M. Bills                          "number",
645fbe8378fSJason M. Bills                          "string",
646fbe8378fSJason M. Bills                          "number",
647fbe8378fSJason M. Bills                          "number",
648fbe8378fSJason M. Bills                          "number",
649fbe8378fSJason M. Bills                      },
650271584abSEd Tanous                      "None.",
651fbe8378fSJason M. Bills                  }},
652fbe8378fSJason M. Bills     MessageEntry{"MemoryParityNotKnown",
653fbe8378fSJason M. Bills                  {
654271584abSEd Tanous                      "Indicates an unknown parity error.",
655271584abSEd Tanous                      "Memory parity error. Socket=%1 Channel=%2 "
656fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
657271584abSEd Tanous                      "Critical",
658271584abSEd Tanous                      5,
659271584abSEd Tanous 
660fbe8378fSJason M. Bills                      {
661fbe8378fSJason M. Bills                          "number",
662fbe8378fSJason M. Bills                          "string",
663fbe8378fSJason M. Bills                          "number",
664fbe8378fSJason M. Bills                          "number",
665fbe8378fSJason M. Bills                          "number",
666fbe8378fSJason M. Bills                      },
667271584abSEd Tanous                      "None.",
668fbe8378fSJason M. Bills                  }},
669271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationDisabled",
670fbe8378fSJason M. Bills                  {
671fbe8378fSJason M. Bills                      "Indicates Memory RAS Disabled Configuration Status.",
672271584abSEd Tanous                      "Memory RAS Configuration Disabled. Error=%1 Mode=%2.",
673271584abSEd Tanous                      "OK",
674271584abSEd Tanous                      2,
675271584abSEd Tanous 
676fbe8378fSJason M. Bills                      {
677fbe8378fSJason M. Bills                          "string",
678fbe8378fSJason M. Bills                          "string",
679fbe8378fSJason M. Bills                      },
680271584abSEd Tanous                      "None.",
681fbe8378fSJason M. Bills                  }},
682271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationEnabled",
683fbe8378fSJason M. Bills                  {
684271584abSEd Tanous                      "Indicates Memory RAS Enabled Configuration Status.",
685271584abSEd Tanous                      "Memory RAS Configuration Enabled. Error=%1 Mode=%2.",
686271584abSEd Tanous                      "OK",
687271584abSEd Tanous                      2,
688271584abSEd Tanous 
689fbe8378fSJason M. Bills                      {
690fbe8378fSJason M. Bills                          "string",
691fbe8378fSJason M. Bills                          "string",
692fbe8378fSJason M. Bills                      },
693271584abSEd Tanous                      "None.",
694fbe8378fSJason M. Bills                  }},
695271584abSEd Tanous     MessageEntry{"MemoryRASModeDisabled",
696fbe8378fSJason M. Bills                  {
697271584abSEd Tanous                      "Indicates Memory RAS Disabled Mode Selection.",
698271584abSEd Tanous                      "Memory RAS Mode Select Disabled. Prior Mode=%1 "
699fbe8378fSJason M. Bills                      "Selected Mode=%2.",
700271584abSEd Tanous                      "OK",
701271584abSEd Tanous                      2,
702271584abSEd Tanous 
703fbe8378fSJason M. Bills                      {
704fbe8378fSJason M. Bills                          "string",
705fbe8378fSJason M. Bills                          "string",
706fbe8378fSJason M. Bills                      },
707271584abSEd Tanous                      "None.",
708fbe8378fSJason M. Bills                  }},
709271584abSEd Tanous     MessageEntry{"MemoryRASModeEnabled",
710fbe8378fSJason M. Bills                  {
711271584abSEd Tanous                      "Indicates Memory RAS Enabled Mode Selection.",
712271584abSEd Tanous                      "Memory RAS Mode Select Enabled. Prior Mode=%1 Selected "
713fbe8378fSJason M. Bills                      "Mode=%2.",
714271584abSEd Tanous                      "OK",
715271584abSEd Tanous                      2,
716271584abSEd Tanous 
717fbe8378fSJason M. Bills                      {
718fbe8378fSJason M. Bills                          "string",
719fbe8378fSJason M. Bills                          "string",
720fbe8378fSJason M. Bills                      },
721271584abSEd Tanous                      "None.",
722fbe8378fSJason M. Bills                  }},
723271584abSEd Tanous     MessageEntry{"MemoryThermTrip",
724fbe8378fSJason M. Bills                  {
725bc6be237Sjayaprakash Mutyala                      "Indicates that the system memory ThermTrip is asserted "
726bc6be237Sjayaprakash Mutyala                      "by the specified component.",
727bc6be237Sjayaprakash Mutyala                      "Memory ThermTrip asserted: %1.",
728271584abSEd Tanous                      "Critical",
729bc6be237Sjayaprakash Mutyala                      1,
730bc6be237Sjayaprakash Mutyala                      {"string"},
731271584abSEd Tanous                      "None.",
732fbe8378fSJason M. Bills                  }},
733271584abSEd Tanous     MessageEntry{"MirroringRedundancyDegraded",
734fbe8378fSJason M. Bills                  {
735fbe8378fSJason M. Bills                      "Indicates the mirroring redundancy state is degraded.",
736271584abSEd Tanous                      "Mirroring redundancy state degraded. Socket=%1 "
737fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
738271584abSEd Tanous                      "Warning",
739271584abSEd Tanous                      5,
740271584abSEd Tanous 
741fbe8378fSJason M. Bills                      {
742fbe8378fSJason M. Bills                          "number",
743fbe8378fSJason M. Bills                          "string",
744fbe8378fSJason M. Bills                          "number",
745fbe8378fSJason M. Bills                          "number",
746fbe8378fSJason M. Bills                          "number",
747fbe8378fSJason M. Bills                      },
748271584abSEd Tanous                      "None.",
749fbe8378fSJason M. Bills                  }},
750fbe8378fSJason M. Bills     MessageEntry{
751fbe8378fSJason M. Bills         "MirroringRedundancyFull",
752fbe8378fSJason M. Bills         {
753fbe8378fSJason M. Bills             "Indicates the mirroring redundancy state is fully redundant.",
754271584abSEd Tanous             "Mirroring redundancy state fully redundant. Socket=%1 "
755fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
756271584abSEd Tanous             "OK",
757271584abSEd Tanous             5,
758271584abSEd Tanous 
759fbe8378fSJason M. Bills             {
760fbe8378fSJason M. Bills                 "number",
761fbe8378fSJason M. Bills                 "string",
762fbe8378fSJason M. Bills                 "number",
763fbe8378fSJason M. Bills                 "number",
764fbe8378fSJason M. Bills                 "number",
765fbe8378fSJason M. Bills             },
766271584abSEd Tanous             "None.",
767fbe8378fSJason M. Bills         }},
768271584abSEd Tanous     MessageEntry{"NMIButtonPressed",
769fbe8378fSJason M. Bills                  {
770271584abSEd Tanous                      "Indicates that the NMI button was pressed.",
771271584abSEd Tanous                      "NMI Button Pressed.",
772271584abSEd Tanous                      "Critical",
773271584abSEd Tanous                      0,
774271584abSEd Tanous                      {},
775271584abSEd Tanous                      "None.",
776fbe8378fSJason M. Bills                  }},
777b76f9ca1SChen,Yugang     MessageEntry{"NMIDiagnosticInterrupt",
778b76f9ca1SChen,Yugang                  {
779271584abSEd Tanous                      "Indicates that an NMI Diagnostic "
780b76f9ca1SChen,Yugang                      "Interrupt has been generated.",
781271584abSEd Tanous                      "NMI Diagnostic Interrupt.",
782271584abSEd Tanous                      "Critical",
783271584abSEd Tanous                      0,
784271584abSEd Tanous                      {},
785271584abSEd Tanous                      "None.",
786b76f9ca1SChen,Yugang                  }},
787271584abSEd Tanous     MessageEntry{"PCIeCorrectableAdvisoryNonFatal",
788fbe8378fSJason M. Bills                  {
789fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Advisory Non-fatal Error.",
790271584abSEd Tanous                      "PCIe Correctable Advisory Non-fatal Error. Bus=%1 "
791fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
792271584abSEd Tanous                      "Warning",
793271584abSEd Tanous                      3,
794271584abSEd Tanous 
795fbe8378fSJason M. Bills                      {
796fbe8378fSJason M. Bills                          "number",
797fbe8378fSJason M. Bills                          "number",
798fbe8378fSJason M. Bills                          "number",
799fbe8378fSJason M. Bills                      },
800271584abSEd Tanous                      "None.",
801fbe8378fSJason M. Bills                  }},
802271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadDLLP",
803fbe8378fSJason M. Bills                  {
804271584abSEd Tanous                      "Indicates a PCIe Correctable Bad DLLP Error.",
805271584abSEd Tanous 
806fbe8378fSJason M. Bills                      "PCIe Correctable Bad DLLP. Bus=%1 Device=%2 Function=%3.",
807271584abSEd Tanous                      "Warning",
808271584abSEd Tanous                      3,
809271584abSEd Tanous 
810fbe8378fSJason M. Bills                      {
811fbe8378fSJason M. Bills                          "number",
812fbe8378fSJason M. Bills                          "number",
813fbe8378fSJason M. Bills                          "number",
814fbe8378fSJason M. Bills                      },
815271584abSEd Tanous                      "None.",
816fbe8378fSJason M. Bills                  }},
817271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadTLP",
818fbe8378fSJason M. Bills                  {
819271584abSEd Tanous                      "Indicates a PCIe Correctable Bad TLP Error.",
820271584abSEd Tanous 
821fbe8378fSJason M. Bills                      "PCIe Correctable Bad TLP. Bus=%1 Device=%2 Function=%3.",
822271584abSEd Tanous                      "Warning",
823271584abSEd Tanous                      3,
824271584abSEd Tanous 
825fbe8378fSJason M. Bills                      {
826fbe8378fSJason M. Bills                          "number",
827fbe8378fSJason M. Bills                          "number",
828fbe8378fSJason M. Bills                          "number",
829fbe8378fSJason M. Bills                      },
830271584abSEd Tanous                      "None.",
831fbe8378fSJason M. Bills                  }},
832271584abSEd Tanous     MessageEntry{"PCIeCorrectableHeaderLogOverflow",
833fbe8378fSJason M. Bills                  {
834fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Header Log Overflow Error.",
835271584abSEd Tanous                      "PCIe Correctable Header Log Overflow. Bus=%1 Device=%2 "
836fbe8378fSJason M. Bills                      "Function=%3.",
837271584abSEd Tanous                      "Warning",
838271584abSEd Tanous                      3,
839271584abSEd Tanous 
840fbe8378fSJason M. Bills                      {
841fbe8378fSJason M. Bills                          "number",
842fbe8378fSJason M. Bills                          "number",
843fbe8378fSJason M. Bills                          "number",
844fbe8378fSJason M. Bills                      },
845271584abSEd Tanous                      "None.",
846fbe8378fSJason M. Bills                  }},
847271584abSEd Tanous     MessageEntry{"PCIeCorrectableInternal",
848fbe8378fSJason M. Bills                  {
849271584abSEd Tanous                      "Indicates a PCIe Correctable Internal Error.",
850271584abSEd Tanous                      "PCIe Correctable Internal Error. Bus=%1 Device=%2 "
851fbe8378fSJason M. Bills                      "Function=%3.",
852271584abSEd Tanous                      "Warning",
853271584abSEd Tanous                      3,
854271584abSEd Tanous 
855fbe8378fSJason M. Bills                      {
856fbe8378fSJason M. Bills                          "number",
857fbe8378fSJason M. Bills                          "number",
858fbe8378fSJason M. Bills                          "number",
859fbe8378fSJason M. Bills                      },
860271584abSEd Tanous                      "None.",
861fbe8378fSJason M. Bills                  }},
862fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableLinkBWChanged",
863fbe8378fSJason M. Bills                  {
864fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Link BW Changed Error.",
865271584abSEd Tanous                      "PCIe Correctable Link BW Changed. Bus=%1 "
866fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
867271584abSEd Tanous                      "Warning",
868271584abSEd Tanous                      3,
869271584abSEd Tanous 
870fbe8378fSJason M. Bills                      {
871fbe8378fSJason M. Bills                          "number",
872fbe8378fSJason M. Bills                          "number",
873fbe8378fSJason M. Bills                          "number",
874fbe8378fSJason M. Bills                      },
875271584abSEd Tanous                      "None.",
876fbe8378fSJason M. Bills                  }},
877271584abSEd Tanous     MessageEntry{"PCIeCorrectableReceiverError",
878fbe8378fSJason M. Bills                  {
879271584abSEd Tanous                      "Indicates a PCIe Correctable Receiver Error.",
880271584abSEd Tanous                      "PCIe Correctable Receiver Error. Bus=%1 Device=%2 "
881fbe8378fSJason M. Bills                      "Function=%3.",
882271584abSEd Tanous                      "Warning",
883271584abSEd Tanous                      3,
884271584abSEd Tanous 
885fbe8378fSJason M. Bills                      {
886fbe8378fSJason M. Bills                          "number",
887fbe8378fSJason M. Bills                          "number",
888fbe8378fSJason M. Bills                          "number",
889fbe8378fSJason M. Bills                      },
890271584abSEd Tanous                      "None.",
891fbe8378fSJason M. Bills                  }},
892271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayNumRollover",
893fbe8378fSJason M. Bills                  {
894271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Num Rollover.",
895271584abSEd Tanous                      "PCIe Correctable Replay Num Rollover. Bus=%1 Device=%2 "
896fbe8378fSJason M. Bills                      "Function=%3.",
897271584abSEd Tanous                      "Warning",
898271584abSEd Tanous                      3,
899271584abSEd Tanous 
900fbe8378fSJason M. Bills                      {
901fbe8378fSJason M. Bills                          "number",
902fbe8378fSJason M. Bills                          "number",
903fbe8378fSJason M. Bills                          "number",
904fbe8378fSJason M. Bills                      },
905271584abSEd Tanous                      "None.",
906fbe8378fSJason M. Bills                  }},
907271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayTimerTimeout",
908fbe8378fSJason M. Bills                  {
909271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Timer Timeout.",
910271584abSEd Tanous                      "PCIe Correctable Replay Timer Timeout. Bus=%1 "
911fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
912271584abSEd Tanous                      "Warning",
913271584abSEd Tanous                      3,
914271584abSEd Tanous 
915fbe8378fSJason M. Bills                      {
916fbe8378fSJason M. Bills                          "number",
917fbe8378fSJason M. Bills                          "number",
918fbe8378fSJason M. Bills                          "number",
919fbe8378fSJason M. Bills                      },
920271584abSEd Tanous                      "None.",
921fbe8378fSJason M. Bills                  }},
922fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableUnspecifiedAERError",
923fbe8378fSJason M. Bills                  {
924fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Unspecified AER Error.",
925271584abSEd Tanous                      "PCIe Correctable Unspecified AER Error. "
926fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
927271584abSEd Tanous                      "Warning",
928271584abSEd Tanous                      3,
929271584abSEd Tanous 
930fbe8378fSJason M. Bills                      {
931fbe8378fSJason M. Bills                          "number",
932fbe8378fSJason M. Bills                          "number",
933fbe8378fSJason M. Bills                          "number",
934fbe8378fSJason M. Bills                      },
935271584abSEd Tanous                      "None.",
936fbe8378fSJason M. Bills                  }},
937271584abSEd Tanous     MessageEntry{"PCIeFatalACSViolation",
938fbe8378fSJason M. Bills                  {
939271584abSEd Tanous                      "Indicates a PCIe ACS Violation Error.",
940271584abSEd Tanous 
941fbe8378fSJason M. Bills                      "PCIe Fatal ACS Violation. Bus=%1 Device=%2 Function=%3.",
942*4228a160SJason M. Bills                      "Critical",
943271584abSEd Tanous                      3,
944271584abSEd Tanous 
945fbe8378fSJason M. Bills                      {
946fbe8378fSJason M. Bills                          "number",
947fbe8378fSJason M. Bills                          "number",
948fbe8378fSJason M. Bills                          "number",
949fbe8378fSJason M. Bills                      },
950271584abSEd Tanous                      "None.",
951fbe8378fSJason M. Bills                  }},
952271584abSEd Tanous     MessageEntry{"PCIeFatalAtomicEgressBlocked",
953fbe8378fSJason M. Bills                  {
954271584abSEd Tanous                      "Indicates a PCIe Atomic Egress Blocked Error.",
955271584abSEd Tanous                      "PCIe Fatal Atomic Egress Blocked. Bus=%1 Device=%2 "
956fbe8378fSJason M. Bills                      "Function=%3.",
957*4228a160SJason M. Bills                      "Critical",
958271584abSEd Tanous                      3,
959271584abSEd Tanous 
960fbe8378fSJason M. Bills                      {
961fbe8378fSJason M. Bills                          "number",
962fbe8378fSJason M. Bills                          "number",
963fbe8378fSJason M. Bills                          "number",
964fbe8378fSJason M. Bills                      },
965271584abSEd Tanous                      "None.",
966fbe8378fSJason M. Bills                  }},
967fbe8378fSJason M. Bills     MessageEntry{
968fbe8378fSJason M. Bills         "PCIeFatalCompleterAbort",
969fbe8378fSJason M. Bills         {
970271584abSEd Tanous             "Indicates a PCIe Completer Abort Error.",
971271584abSEd Tanous 
972fbe8378fSJason M. Bills             "PCIe Fatal Completer Abort. Bus=%1 Device=%2 Function=%3.",
973*4228a160SJason M. Bills             "Critical",
974271584abSEd Tanous             3,
975271584abSEd Tanous 
976fbe8378fSJason M. Bills             {
977fbe8378fSJason M. Bills                 "number",
978fbe8378fSJason M. Bills                 "number",
979fbe8378fSJason M. Bills                 "number",
980fbe8378fSJason M. Bills             },
981271584abSEd Tanous             "None.",
982fbe8378fSJason M. Bills         }},
983fbe8378fSJason M. Bills     MessageEntry{
984fbe8378fSJason M. Bills         "PCIeFatalCompletionTimeout",
985fbe8378fSJason M. Bills         {
986271584abSEd Tanous             "Indicates a PCIe Completion Timeout Error.",
987271584abSEd Tanous 
988fbe8378fSJason M. Bills             "PCIe Fatal Completion Timeout. Bus=%1 Device=%2 Function=%3.",
989*4228a160SJason M. Bills             "Critical",
990271584abSEd Tanous             3,
991271584abSEd Tanous 
992fbe8378fSJason M. Bills             {
993fbe8378fSJason M. Bills                 "number",
994fbe8378fSJason M. Bills                 "number",
995fbe8378fSJason M. Bills                 "number",
996fbe8378fSJason M. Bills             },
997271584abSEd Tanous             "None.",
998fbe8378fSJason M. Bills         }},
999fbe8378fSJason M. Bills     MessageEntry{
1000fbe8378fSJason M. Bills         "PCIeFatalDataLinkLayerProtocol",
1001fbe8378fSJason M. Bills         {
1002271584abSEd Tanous             "Indicates a PCIe Data Link Layer Protocol Error.",
1003271584abSEd Tanous 
1004fbe8378fSJason M. Bills             "PCIe Fatal Data Link Layer Protocol Error. Bus=%1 Device=%2 "
1005fbe8378fSJason M. Bills             "Function=%3.",
1006*4228a160SJason M. Bills             "Critical",
1007271584abSEd Tanous             3,
1008271584abSEd Tanous 
1009fbe8378fSJason M. Bills             {
1010fbe8378fSJason M. Bills                 "number",
1011fbe8378fSJason M. Bills                 "number",
1012fbe8378fSJason M. Bills                 "number",
1013fbe8378fSJason M. Bills             },
1014271584abSEd Tanous             "None.",
1015fbe8378fSJason M. Bills         }},
1016271584abSEd Tanous     MessageEntry{"PCIeFatalECRCError",
1017fbe8378fSJason M. Bills                  {
1018271584abSEd Tanous                      "Indicates a PCIe ECRC Error.",
1019271584abSEd Tanous                      "PCIe Fatal ECRC Error. Bus=%1 Device=%2 Function=%3.",
1020*4228a160SJason M. Bills                      "Critical",
1021271584abSEd Tanous                      3,
1022271584abSEd Tanous 
1023fbe8378fSJason M. Bills                      {
1024fbe8378fSJason M. Bills                          "number",
1025fbe8378fSJason M. Bills                          "number",
1026fbe8378fSJason M. Bills                          "number",
1027fbe8378fSJason M. Bills                      },
1028271584abSEd Tanous                      "None.",
1029fbe8378fSJason M. Bills                  }},
1030271584abSEd Tanous     MessageEntry{"PCIeFatalFlowControlProtocol",
1031fbe8378fSJason M. Bills                  {
1032271584abSEd Tanous                      "Indicates a PCIe Flow Control Protocol Error.",
1033271584abSEd Tanous 
1034fbe8378fSJason M. Bills                      "PCIe Fatal Flow Control Protocol Error. Bus=%1 Device=%2 "
1035fbe8378fSJason M. Bills                      "Function=%3.",
1036*4228a160SJason M. Bills                      "Critical",
1037271584abSEd Tanous                      3,
1038271584abSEd Tanous 
1039fbe8378fSJason M. Bills                      {
1040fbe8378fSJason M. Bills                          "number",
1041fbe8378fSJason M. Bills                          "number",
1042fbe8378fSJason M. Bills                          "number",
1043fbe8378fSJason M. Bills                      },
1044271584abSEd Tanous                      "None.",
1045fbe8378fSJason M. Bills                  }},
1046fbe8378fSJason M. Bills     MessageEntry{
1047fbe8378fSJason M. Bills         "PCIeFatalMalformedTLP",
1048fbe8378fSJason M. Bills         {
1049271584abSEd Tanous             "Indicates a PCIe Malformed TLP Error.",
1050271584abSEd Tanous 
1051fbe8378fSJason M. Bills             "PCIe Fatal Malformed TLP Error. Bus=%1 Device=%2 Function=%3.",
1052*4228a160SJason M. Bills             "Critical",
1053271584abSEd Tanous             3,
1054271584abSEd Tanous 
1055fbe8378fSJason M. Bills             {
1056fbe8378fSJason M. Bills                 "number",
1057fbe8378fSJason M. Bills                 "number",
1058fbe8378fSJason M. Bills                 "number",
1059fbe8378fSJason M. Bills             },
1060271584abSEd Tanous             "None.",
1061fbe8378fSJason M. Bills         }},
1062fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalMCBlockedTLP",
1063fbe8378fSJason M. Bills                  {
1064271584abSEd Tanous                      "Indicates a PCIe MC Blocked TLP Error.",
1065271584abSEd Tanous                      "PCIe Fatal MC Blocked TLP Error. Bus=%1 "
1066fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1067*4228a160SJason M. Bills                      "Critical",
1068271584abSEd Tanous                      3,
1069271584abSEd Tanous 
1070fbe8378fSJason M. Bills                      {
1071fbe8378fSJason M. Bills                          "number",
1072fbe8378fSJason M. Bills                          "number",
1073fbe8378fSJason M. Bills                          "number",
1074fbe8378fSJason M. Bills                      },
1075271584abSEd Tanous                      "None.",
1076fbe8378fSJason M. Bills                  }},
1077fbe8378fSJason M. Bills     MessageEntry{
1078fbe8378fSJason M. Bills         "PCIeFatalPoisonedTLP",
1079fbe8378fSJason M. Bills         {
1080271584abSEd Tanous             "Indicates a PCIe Poisoned TLP Error.",
1081271584abSEd Tanous 
1082fbe8378fSJason M. Bills             "PCIe Fatal Poisoned TLP Error. Bus=%1 Device=%2 Function=%3.",
1083*4228a160SJason M. Bills             "Critical",
1084271584abSEd Tanous             3,
1085271584abSEd Tanous 
1086fbe8378fSJason M. Bills             {
1087fbe8378fSJason M. Bills                 "number",
1088fbe8378fSJason M. Bills                 "number",
1089fbe8378fSJason M. Bills                 "number",
1090fbe8378fSJason M. Bills             },
1091271584abSEd Tanous             "None.",
1092fbe8378fSJason M. Bills         }},
1093271584abSEd Tanous     MessageEntry{"PCIeFatalReceiverBufferOverflow",
1094fbe8378fSJason M. Bills                  {
1095271584abSEd Tanous                      "Indicates a PCIe Receiver Buffer Overflow Error.",
1096271584abSEd Tanous                      "PCIe Fatal Receiver Buffer Overflow. Bus=%1 Device=%2 "
1097fbe8378fSJason M. Bills                      "Function=%3.",
1098*4228a160SJason M. Bills                      "Critical",
1099271584abSEd Tanous                      3,
1100271584abSEd Tanous 
1101fbe8378fSJason M. Bills                      {
1102fbe8378fSJason M. Bills                          "number",
1103fbe8378fSJason M. Bills                          "number",
1104fbe8378fSJason M. Bills                          "number",
1105fbe8378fSJason M. Bills                      },
1106271584abSEd Tanous                      "None.",
1107fbe8378fSJason M. Bills                  }},
1108fbe8378fSJason M. Bills     MessageEntry{
110914c8aee2SEd Tanous         "PCIeFatalReceivedErrNonFatalMessage",
1110fbe8378fSJason M. Bills         {
1111fbe8378fSJason M. Bills             "Indicates a PCIe Received ERR_NONFATAL Message Error.",
1112271584abSEd Tanous 
1113fbe8378fSJason M. Bills             "PCIe Fatal Received ERR_NONFATAL Message. Bus=%1 Device=%2 "
1114fbe8378fSJason M. Bills             "Function=%3.",
1115*4228a160SJason M. Bills             "Critical",
1116271584abSEd Tanous             3,
1117271584abSEd Tanous 
1118fbe8378fSJason M. Bills             {
1119fbe8378fSJason M. Bills                 "number",
1120fbe8378fSJason M. Bills                 "number",
1121fbe8378fSJason M. Bills                 "number",
1122fbe8378fSJason M. Bills             },
1123271584abSEd Tanous             "None.",
1124fbe8378fSJason M. Bills         }},
1125fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalReceivedFatalMessageFromDownstream",
1126fbe8378fSJason M. Bills                  {
1127271584abSEd Tanous                      "Indicates a PCIe Received Fatal Message "
1128fbe8378fSJason M. Bills                      "From Downstream Error.",
1129271584abSEd Tanous 
1130fbe8378fSJason M. Bills                      "PCIe Fatal Received Fatal Message From Downstream. "
1131fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
1132*4228a160SJason M. Bills                      "Critical",
1133271584abSEd Tanous                      3,
1134271584abSEd Tanous 
1135fbe8378fSJason M. Bills                      {
1136fbe8378fSJason M. Bills                          "number",
1137fbe8378fSJason M. Bills                          "number",
1138fbe8378fSJason M. Bills                          "number",
1139fbe8378fSJason M. Bills                      },
1140271584abSEd Tanous                      "None.",
1141fbe8378fSJason M. Bills                  }},
1142271584abSEd Tanous     MessageEntry{"PCIeFatalSurpriseLinkDown",
1143fbe8378fSJason M. Bills                  {
1144271584abSEd Tanous                      "Indicates a PCIe Surprise Link Down Error.",
1145271584abSEd Tanous                      "PCIe Fatal Surprise Link Down Error. Bus=%1 Device=%2 "
1146fbe8378fSJason M. Bills                      "Function=%3.",
1147*4228a160SJason M. Bills                      "Critical",
1148271584abSEd Tanous                      3,
1149271584abSEd Tanous 
1150fbe8378fSJason M. Bills                      {
1151fbe8378fSJason M. Bills                          "number",
1152fbe8378fSJason M. Bills                          "number",
1153fbe8378fSJason M. Bills                          "number",
1154fbe8378fSJason M. Bills                      },
1155271584abSEd Tanous                      "None.",
1156fbe8378fSJason M. Bills                  }},
1157271584abSEd Tanous     MessageEntry{"PCIeFatalTLPPrefixBlocked",
1158fbe8378fSJason M. Bills                  {
1159271584abSEd Tanous                      "Indicates a PCIe TLP Prefix Blocked Error.",
1160271584abSEd Tanous                      "PCIe Fatal TLP Prefix Blocked Error. Bus=%1 Device=%2 "
1161fbe8378fSJason M. Bills                      "Function=%3.",
1162*4228a160SJason M. Bills                      "Critical",
1163271584abSEd Tanous                      3,
1164271584abSEd Tanous 
1165fbe8378fSJason M. Bills                      {
1166fbe8378fSJason M. Bills                          "number",
1167fbe8378fSJason M. Bills                          "number",
1168fbe8378fSJason M. Bills                          "number",
1169fbe8378fSJason M. Bills                      },
1170271584abSEd Tanous                      "None.",
1171fbe8378fSJason M. Bills                  }},
1172fbe8378fSJason M. Bills     MessageEntry{
1173fbe8378fSJason M. Bills         "PCIeFatalUncorrectableInternal",
1174fbe8378fSJason M. Bills         {
1175271584abSEd Tanous             "Indicates a PCIe Uncorrectable Internal Error.",
1176271584abSEd Tanous 
1177fbe8378fSJason M. Bills             "PCIe Fatal Uncorrectable Internal Error. Bus=%1 Device=%2 "
1178fbe8378fSJason M. Bills             "Function=%3.",
1179*4228a160SJason M. Bills             "Critical",
1180271584abSEd Tanous             3,
1181271584abSEd Tanous 
1182fbe8378fSJason M. Bills             {
1183fbe8378fSJason M. Bills                 "number",
1184fbe8378fSJason M. Bills                 "number",
1185fbe8378fSJason M. Bills                 "number",
1186fbe8378fSJason M. Bills             },
1187271584abSEd Tanous             "None.",
1188fbe8378fSJason M. Bills         }},
1189271584abSEd Tanous     MessageEntry{"PCIeFatalUnexpectedCompletion",
1190fbe8378fSJason M. Bills                  {
1191271584abSEd Tanous                      "Indicates a PCIe Unexpected Completion Error.",
1192271584abSEd Tanous                      "PCIe Fatal Unexpected Completion. Bus=%1 Device=%2 "
1193fbe8378fSJason M. Bills                      "Function=%3.",
1194*4228a160SJason M. Bills                      "Critical",
1195271584abSEd Tanous                      3,
1196271584abSEd Tanous 
1197fbe8378fSJason M. Bills                      {
1198fbe8378fSJason M. Bills                          "number",
1199fbe8378fSJason M. Bills                          "number",
1200fbe8378fSJason M. Bills                          "number",
1201fbe8378fSJason M. Bills                      },
1202271584abSEd Tanous                      "None.",
1203fbe8378fSJason M. Bills                  }},
1204271584abSEd Tanous     MessageEntry{"PCIeFatalUnspecifiedNonAERFatalError",
1205fbe8378fSJason M. Bills                  {
1206271584abSEd Tanous                      "Indicates a PCIe Unspecified Non-AER Fatal Error.",
1207271584abSEd Tanous                      "PCIe Fatal Unspecified Non-AER Fatal Error. Bus=%1 "
1208fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1209*4228a160SJason M. Bills                      "Critical",
1210271584abSEd Tanous                      3,
1211271584abSEd Tanous 
1212fbe8378fSJason M. Bills                      {
1213fbe8378fSJason M. Bills                          "number",
1214fbe8378fSJason M. Bills                          "number",
1215fbe8378fSJason M. Bills                          "number",
1216fbe8378fSJason M. Bills                      },
1217271584abSEd Tanous                      "None.",
1218fbe8378fSJason M. Bills                  }},
1219fbe8378fSJason M. Bills     MessageEntry{
1220fbe8378fSJason M. Bills         "PCIeFatalUnsupportedRequest",
1221fbe8378fSJason M. Bills         {
1222271584abSEd Tanous             "Indicates a PCIe Unsupported Request Error.",
1223271584abSEd Tanous 
1224fbe8378fSJason M. Bills             "PCIe Fatal Unsupported Request. Bus=%1 Device=%2 Function=%3.",
1225*4228a160SJason M. Bills             "Critical",
1226271584abSEd Tanous             3,
1227271584abSEd Tanous 
1228fbe8378fSJason M. Bills             {
1229fbe8378fSJason M. Bills                 "number",
1230fbe8378fSJason M. Bills                 "number",
1231fbe8378fSJason M. Bills                 "number",
1232fbe8378fSJason M. Bills             },
1233271584abSEd Tanous             "None.",
1234fbe8378fSJason M. Bills         }},
1235271584abSEd Tanous     MessageEntry{"PowerButtonPressed",
1236fbe8378fSJason M. Bills                  {
1237271584abSEd Tanous                      "Indicates that the power button was pressed.",
1238271584abSEd Tanous                      "Power Button Pressed.",
1239271584abSEd Tanous                      "OK",
1240271584abSEd Tanous                      0,
1241271584abSEd Tanous                      {},
1242271584abSEd Tanous                      "None.",
1243fbe8378fSJason M. Bills                  }},
1244dd118a2eSJason M. Bills     MessageEntry{"PowerRestorePolicyApplied",
1245dd118a2eSJason M. Bills                  {
1246271584abSEd Tanous                      "Indicates that power was restored and the "
1247dd118a2eSJason M. Bills                      "BMC has applied the restore policy.",
1248271584abSEd Tanous                      "Power restore policy applied.",
1249271584abSEd Tanous                      "OK",
1250271584abSEd Tanous                      0,
1251271584abSEd Tanous                      {},
1252271584abSEd Tanous                      "None.",
1253dd118a2eSJason M. Bills                  }},
1254271584abSEd Tanous     MessageEntry{"PowerSupplyConfigurationError",
1255fbe8378fSJason M. Bills                  {
1256271584abSEd Tanous                      "Indicates an error in power supply configuration.",
1257271584abSEd Tanous                      "Power supply %1 configuration error.",
12589c6b0159SYong Li                      "Warning",
1259271584abSEd Tanous                      1,
1260271584abSEd Tanous                      {"string"},
1261271584abSEd Tanous                      "None.",
1262fbe8378fSJason M. Bills                  }},
1263fbe8378fSJason M. Bills     MessageEntry{
12647f68549fSjayaprakash Mutyala         "PowerSupplyConfigurationErrorRecovered",
12657f68549fSjayaprakash Mutyala         {
12667f68549fSjayaprakash Mutyala             "Indicates that power supply configuration error recovered "
12677f68549fSjayaprakash Mutyala             "from a failure.",
12687f68549fSjayaprakash Mutyala             "Power supply %1 configuration error recovered.",
12697f68549fSjayaprakash Mutyala             "OK",
12707f68549fSjayaprakash Mutyala             1,
12717f68549fSjayaprakash Mutyala             {"string"},
12727f68549fSjayaprakash Mutyala             "None.",
12737f68549fSjayaprakash Mutyala         }},
12747f68549fSjayaprakash Mutyala     MessageEntry{
1275fbe8378fSJason M. Bills         "PowerSupplyFanFailed",
1276fbe8378fSJason M. Bills         {
1277fbe8378fSJason M. Bills             "Indicates that the specified power supply fan has failed.",
1278271584abSEd Tanous             "Power supply %1 fan %2 failed.",
12799c6b0159SYong Li             "Warning",
1280271584abSEd Tanous             2,
1281271584abSEd Tanous             {"string", "string"},
1282271584abSEd Tanous             "None.",
1283fbe8378fSJason M. Bills         }},
1284dac62eefSCheng C Yang     MessageEntry{
1285dac62eefSCheng C Yang         "PowerSupplyFanRecovered",
1286dac62eefSCheng C Yang         {
1287dac62eefSCheng C Yang             "Indicates that the power supply fan recovered from a failure.",
1288271584abSEd Tanous             "Power supply %1 fan %2 recovered.",
1289271584abSEd Tanous             "OK",
1290271584abSEd Tanous             2,
1291271584abSEd Tanous             {"string", "string"},
1292271584abSEd Tanous             "None.",
1293dac62eefSCheng C Yang         }},
1294fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailed",
1295fbe8378fSJason M. Bills                  {
1296271584abSEd Tanous                      "Indicates that a power supply has failed.",
1297271584abSEd Tanous                      "Power supply %1 failed.",
12989c6b0159SYong Li                      "Warning",
1299271584abSEd Tanous                      1,
1300271584abSEd Tanous                      {"string"},
1301271584abSEd Tanous                      "None.",
1302fbe8378fSJason M. Bills                  }},
1303fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailurePredicted",
1304fbe8378fSJason M. Bills                  {
1305fbe8378fSJason M. Bills                      "Indicates that a power supply is predicted to fail.",
1306271584abSEd Tanous                      "Power supply %1 failure predicted.",
1307271584abSEd Tanous                      "Warning",
1308271584abSEd Tanous                      1,
1309271584abSEd Tanous                      {"string"},
1310271584abSEd Tanous                      "None.",
1311fbe8378fSJason M. Bills                  }},
1312271584abSEd Tanous     MessageEntry{"PowerSupplyInserted",
1313fbe8378fSJason M. Bills                  {
1314271584abSEd Tanous                      "Indicates that a power supply has been inserted.",
1315271584abSEd Tanous                      "Power supply %1 inserted.",
1316271584abSEd Tanous                      "OK",
1317271584abSEd Tanous                      1,
1318271584abSEd Tanous                      {"string"},
1319271584abSEd Tanous                      "None.",
1320fbe8378fSJason M. Bills                  }},
1321271584abSEd Tanous     MessageEntry{"PowerSupplyPowerGoodFailed",
1322bc48a175SJason M. Bills                  {
1323271584abSEd Tanous                      "Indicates that the power supply power good signal "
1324bc48a175SJason M. Bills                      "failed to assert within the specified time.",
1325271584abSEd Tanous                      "Power supply power good failed to assert within %1 "
1326bc48a175SJason M. Bills                      "milliseconds.",
1327271584abSEd Tanous                      "Critical",
1328271584abSEd Tanous                      1,
1329271584abSEd Tanous                      {"number"},
1330271584abSEd Tanous                      "None.",
1331bc48a175SJason M. Bills                  }},
1332dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPowerLost",
1333dac62eefSCheng C Yang                  {
1334dac62eefSCheng C Yang                      "Indicates that a power supply has lost input power.",
1335271584abSEd Tanous                      "Power supply %1 power lost.",
13369c6b0159SYong Li                      "Warning",
1337271584abSEd Tanous                      1,
1338271584abSEd Tanous                      {"string"},
1339271584abSEd Tanous                      "None.",
1340dac62eefSCheng C Yang                  }},
1341271584abSEd Tanous     MessageEntry{"PowerSupplyPowerRestored",
1342dac62eefSCheng C Yang                  {
1343dac62eefSCheng C Yang                      "Indicates that a power supply input power was restored.",
1344271584abSEd Tanous                      "Power supply %1 power restored.",
1345271584abSEd Tanous                      "OK",
1346271584abSEd Tanous                      1,
1347271584abSEd Tanous                      {"string"},
1348271584abSEd Tanous                      "None.",
1349dac62eefSCheng C Yang                  }},
1350dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPredictedFailureRecovered",
1351dac62eefSCheng C Yang                  {
1352271584abSEd Tanous                      "Indicates that a power supply recovered "
1353dac62eefSCheng C Yang                      "from a predicted failure.",
1354271584abSEd Tanous                      "Power supply %1 predicted failure recovered.",
1355271584abSEd Tanous                      "OK",
1356271584abSEd Tanous                      1,
1357271584abSEd Tanous                      {"string"},
1358271584abSEd Tanous                      "None.",
1359dac62eefSCheng C Yang                  }},
1360271584abSEd Tanous     MessageEntry{"PowerSupplyRecovered",
1361dac62eefSCheng C Yang                  {
1362dac62eefSCheng C Yang                      "Indicates that a power supply recovered from a failure.",
1363271584abSEd Tanous                      "Power supply %1 recovered.",
1364271584abSEd Tanous                      "OK",
1365271584abSEd Tanous                      1,
1366271584abSEd Tanous                      {"string"},
1367271584abSEd Tanous                      "None.",
1368dac62eefSCheng C Yang                  }},
1369271584abSEd Tanous     MessageEntry{"PowerSupplyRemoved",
1370fbe8378fSJason M. Bills                  {
1371271584abSEd Tanous                      "Indicates that a power supply has been removed.",
1372271584abSEd Tanous                      "Power supply %1 removed.",
1373271584abSEd Tanous                      "Warning",
1374271584abSEd Tanous                      1,
1375271584abSEd Tanous                      {"string"},
1376271584abSEd Tanous                      "None.",
1377fbe8378fSJason M. Bills                  }},
1378271584abSEd Tanous     MessageEntry{"PowerUnitDegradedFromNonRedundant",
1379cecb4cb6SCheng C Yang                  {
1380cecb4cb6SCheng C Yang                      "Indicates that power unit is come back to redundant from"
1381cecb4cb6SCheng C Yang                      "nonredundant but is still not in full redundancy mode.",
1382271584abSEd Tanous                      "Power Unit degraded from nonredundant.",
1383271584abSEd Tanous                      "Warning",
1384271584abSEd Tanous                      0,
1385271584abSEd Tanous                      {},
1386271584abSEd Tanous                      "None.",
1387cecb4cb6SCheng C Yang                  }},
1388cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitDegradedFromRedundant",
1389cecb4cb6SCheng C Yang                  {
1390cecb4cb6SCheng C Yang                      "Indicates that power unit is degarded from full "
1391cecb4cb6SCheng C Yang                      "redundancy mode.",
1392271584abSEd Tanous                      "Power Unit degraded from redundant.",
1393271584abSEd Tanous                      "Warning",
1394271584abSEd Tanous                      0,
1395271584abSEd Tanous                      {},
1396271584abSEd Tanous                      "None.",
1397cecb4cb6SCheng C Yang                  }},
1398271584abSEd Tanous     MessageEntry{"PowerUnitRedundancyDegraded",
1399cecb4cb6SCheng C Yang                  {
1400cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been degraded.",
1401271584abSEd Tanous                      "Power Unit Redundancy degraded.",
1402271584abSEd Tanous                      "Warning",
1403271584abSEd Tanous                      0,
1404271584abSEd Tanous                      {},
1405271584abSEd Tanous                      "None.",
1406cecb4cb6SCheng C Yang                  }},
1407cecb4cb6SCheng C Yang     MessageEntry{
1408cecb4cb6SCheng C Yang         "PowerUnitNonRedundantFromInsufficient",
1409cecb4cb6SCheng C Yang         {
1410cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode and get"
1411cecb4cb6SCheng C Yang             "sufficient power to support redundancy from insufficient"
1412cecb4cb6SCheng C Yang             "power.",
1413271584abSEd Tanous 
1414cecb4cb6SCheng C Yang             "Power Unit NonRedundant from insufficient to sufficient.",
1415271584abSEd Tanous             "Warning",
1416271584abSEd Tanous             0,
1417271584abSEd Tanous             {},
1418271584abSEd Tanous             "None.",
1419cecb4cb6SCheng C Yang         }},
1420271584abSEd Tanous     MessageEntry{"PowerUnitNonRedundantInsufficient",
1421cecb4cb6SCheng C Yang                  {
1422271584abSEd Tanous                      "Indicates that power unit do not have sufficient "
1423cecb4cb6SCheng C Yang                      "power to support redundancy.",
1424271584abSEd Tanous                      "Power Unit NonRedundant and has insufficient resource.",
1425*4228a160SJason M. Bills                      "Critical",
1426271584abSEd Tanous                      0,
1427271584abSEd Tanous                      {},
1428271584abSEd Tanous                      "None.",
1429cecb4cb6SCheng C Yang                  }},
1430cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitRedundancyLost",
1431cecb4cb6SCheng C Yang                  {
1432cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been lost.",
1433271584abSEd Tanous                      "Power Unit Redundancy lost.",
1434271584abSEd Tanous                      "Warning",
1435271584abSEd Tanous                      0,
1436271584abSEd Tanous                      {},
1437271584abSEd Tanous                      "None.",
1438cecb4cb6SCheng C Yang                  }},
1439cecb4cb6SCheng C Yang     MessageEntry{
1440cecb4cb6SCheng C Yang         "PowerUnitRedundancyRegained",
1441cecb4cb6SCheng C Yang         {
1442cecb4cb6SCheng C Yang             "Indicates that power unit full redundancy has been regained.",
1443271584abSEd Tanous             "Power Unit Redundancy regained.",
1444271584abSEd Tanous             "OK",
1445271584abSEd Tanous             0,
1446271584abSEd Tanous             {},
1447271584abSEd Tanous             "None.",
1448cecb4cb6SCheng C Yang         }},
1449cecb4cb6SCheng C Yang     MessageEntry{
1450cecb4cb6SCheng C Yang         "PowerUnitNonRedundantSufficient",
1451cecb4cb6SCheng C Yang         {
1452cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode but still"
1453cecb4cb6SCheng C Yang             "has sufficient power to support redundancy.",
1454271584abSEd Tanous             "Power Unit Nonredundant but has sufficient resource.",
1455271584abSEd Tanous             "Warning",
1456271584abSEd Tanous             0,
1457271584abSEd Tanous             {},
1458271584abSEd Tanous             "None.",
1459cecb4cb6SCheng C Yang         }},
1460271584abSEd Tanous     MessageEntry{"ResetButtonPressed",
1461fbe8378fSJason M. Bills                  {
1462271584abSEd Tanous                      "Indicates that the reset button was pressed.",
1463271584abSEd Tanous                      "Reset Button Pressed.",
1464271584abSEd Tanous                      "OK",
1465271584abSEd Tanous                      0,
1466271584abSEd Tanous                      {},
1467271584abSEd Tanous                      "None.",
1468fbe8378fSJason M. Bills                  }},
14698ae37025SChen,Yugang     MessageEntry{"SecurityBoot2ndFlashEnabled",
14708ae37025SChen,Yugang                  {
14718ae37025SChen,Yugang                      "Indicates that the BMC 2nd boot flash is enabled.",
14728ae37025SChen,Yugang                      "BMC 2nd boot flash is enabled.",
14738ae37025SChen,Yugang                      "Critical",
14748ae37025SChen,Yugang                      0,
14758ae37025SChen,Yugang                      {},
14768ae37025SChen,Yugang                      "None.",
14778ae37025SChen,Yugang                  }},
14788ae37025SChen,Yugang     MessageEntry{"SecurityP2aBridgeEnabled",
14798ae37025SChen,Yugang                  {
14808ae37025SChen,Yugang                      "Indicates that the P2A bridge is enabled.",
14818ae37025SChen,Yugang                      "P2A(PCIe to AHB) bridge is enabled.",
14828ae37025SChen,Yugang                      "Critical",
14838ae37025SChen,Yugang                      0,
14848ae37025SChen,Yugang                      {},
14858ae37025SChen,Yugang                      "None.",
14868ae37025SChen,Yugang                  }},
14878ae37025SChen,Yugang     MessageEntry{"SecurityUartPortDebugEnabled",
14888ae37025SChen,Yugang                  {
14898ae37025SChen,Yugang                      "Indicates that the uart port debug is enabled.",
14908ae37025SChen,Yugang                      "Uart port debug is enabled.",
14918ae37025SChen,Yugang                      "Critical",
14928ae37025SChen,Yugang                      0,
14938ae37025SChen,Yugang                      {},
14948ae37025SChen,Yugang                      "None.",
14958ae37025SChen,Yugang                  }},
14968988dda4SSuryakanth Sekar     MessageEntry{
14978988dda4SSuryakanth Sekar         "SecurityUserStrongHashAlgoRestored",
14988988dda4SSuryakanth Sekar         {
14998988dda4SSuryakanth Sekar             "Indicates that password computing hash algorithm changed.",
15008988dda4SSuryakanth Sekar             "Password computing hash algorithm is changed to sha256/sha512.",
15018988dda4SSuryakanth Sekar             "OK",
15028988dda4SSuryakanth Sekar             0,
15038988dda4SSuryakanth Sekar             {},
15048988dda4SSuryakanth Sekar             "None.",
15058988dda4SSuryakanth Sekar         }},
15068988dda4SSuryakanth Sekar 
15078988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroAssigned",
15088988dda4SSuryakanth Sekar                  {
15098988dda4SSuryakanth Sekar                      "Indicates that non root user assigned with user ID zero.",
15108988dda4SSuryakanth Sekar                      "User ID Zero is assigned with non-root user.",
15118988dda4SSuryakanth Sekar                      "Critical",
15128988dda4SSuryakanth Sekar                      0,
15138988dda4SSuryakanth Sekar                      {},
15148988dda4SSuryakanth Sekar                      "None.",
15158988dda4SSuryakanth Sekar                  }},
15168988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroRemoved",
15178988dda4SSuryakanth Sekar                  {
15188988dda4SSuryakanth Sekar                      "Indicates that non root user ID is removed",
15198988dda4SSuryakanth Sekar                      "Non root user assigned with user ID zero is removed.",
15208988dda4SSuryakanth Sekar                      "OK",
15218988dda4SSuryakanth Sekar                      0,
15228988dda4SSuryakanth Sekar                      {},
15238988dda4SSuryakanth Sekar                      "None.",
15248988dda4SSuryakanth Sekar                  }},
15258988dda4SSuryakanth Sekar 
15268988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootEnabled",
15278988dda4SSuryakanth Sekar                  {
15288988dda4SSuryakanth Sekar                      "Indicates that system root user is enabled.",
15298988dda4SSuryakanth Sekar                      "User root is enabled.",
15308988dda4SSuryakanth Sekar                      "Critical",
15318988dda4SSuryakanth Sekar                      0,
15328988dda4SSuryakanth Sekar                      {},
15338988dda4SSuryakanth Sekar                      "None.",
15348988dda4SSuryakanth Sekar                  }},
15358988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootDisabled",
15368988dda4SSuryakanth Sekar                  {
15378988dda4SSuryakanth Sekar                      "Indicates that system root user is disabled.",
15388988dda4SSuryakanth Sekar                      "User root is disabled.",
15398988dda4SSuryakanth Sekar                      "OK",
15408988dda4SSuryakanth Sekar                      0,
15418988dda4SSuryakanth Sekar                      {},
15428988dda4SSuryakanth Sekar                      "None.",
15438988dda4SSuryakanth Sekar                  }},
15448988dda4SSuryakanth Sekar 
15458988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellEnabled",
15468988dda4SSuryakanth Sekar                  {
15478988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is enabled.",
15488988dda4SSuryakanth Sekar                      "Unsupported shell is enabled.",
15498988dda4SSuryakanth Sekar                      "Critical",
15508988dda4SSuryakanth Sekar                      0,
15518988dda4SSuryakanth Sekar                      {},
15528988dda4SSuryakanth Sekar                      "None.",
15538988dda4SSuryakanth Sekar                  }},
15548988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellRemoved",
15558988dda4SSuryakanth Sekar                  {
15568988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is removed.",
15578988dda4SSuryakanth Sekar                      "Unsupported shell is removed.",
15588988dda4SSuryakanth Sekar                      "OK",
15598988dda4SSuryakanth Sekar                      0,
15608988dda4SSuryakanth Sekar                      {},
15618988dda4SSuryakanth Sekar                      "None.",
15628988dda4SSuryakanth Sekar                  }},
15638988dda4SSuryakanth Sekar 
15648988dda4SSuryakanth Sekar     MessageEntry{
15658988dda4SSuryakanth Sekar         "SecurityUserWeakHashAlgoEnabled",
15668988dda4SSuryakanth Sekar         {
15678988dda4SSuryakanth Sekar             "Indicates that weak password computing hash algorithm is enabled.",
15688988dda4SSuryakanth Sekar             "Weak password computing hash algorithm is enabled.",
15698988dda4SSuryakanth Sekar             "Critical",
15708988dda4SSuryakanth Sekar             0,
15718988dda4SSuryakanth Sekar             {},
15728988dda4SSuryakanth Sekar             "None.",
15738988dda4SSuryakanth Sekar         }},
15748988dda4SSuryakanth Sekar 
1575fbe8378fSJason M. Bills     MessageEntry{"SELEntryAdded",
1576fbe8378fSJason M. Bills                  {
1577271584abSEd Tanous                      "Indicates a SEL entry was added using the "
1578fbe8378fSJason M. Bills                      "Add SEL Entry or Platform Event command.",
1579271584abSEd Tanous                      "SEL Entry Added: %1",
1580271584abSEd Tanous                      "OK",
1581271584abSEd Tanous                      1,
1582271584abSEd Tanous 
1583fbe8378fSJason M. Bills                      {
1584fbe8378fSJason M. Bills                          "string",
1585fbe8378fSJason M. Bills                      },
1586271584abSEd Tanous                      "None.",
1587fbe8378fSJason M. Bills                  }},
1588271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingHigh",
1589fbe8378fSJason M. Bills                  {
1590271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1591fbe8378fSJason M. Bills                      "critical high threshold going high.",
1592271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going "
1593fbe8378fSJason M. Bills                      "high. Reading=%2 Threshold=%3.",
1594271584abSEd Tanous                      "Critical",
1595271584abSEd Tanous                      3,
1596271584abSEd Tanous                      {"string", "number", "number"},
1597271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1598fbe8378fSJason M. Bills                  }},
1599271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingLow",
1600fbe8378fSJason M. Bills                  {
1601271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1602fbe8378fSJason M. Bills                      "critical high threshold going low.",
1603271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going low. "
1604fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1605271584abSEd Tanous                      "OK",
1606271584abSEd Tanous                      3,
1607271584abSEd Tanous                      {"string", "number", "number"},
1608271584abSEd Tanous                      "None.",
1609fbe8378fSJason M. Bills                  }},
1610271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingHigh",
1611fbe8378fSJason M. Bills                  {
1612271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1613fbe8378fSJason M. Bills                      "critical low threshold going high.",
1614271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going high. "
1615fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1616271584abSEd Tanous                      "OK",
1617271584abSEd Tanous                      3,
1618271584abSEd Tanous                      {"string", "number", "number"},
1619271584abSEd Tanous                      "None.",
1620fbe8378fSJason M. Bills                  }},
1621271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingLow",
1622fbe8378fSJason M. Bills                  {
1623271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1624fbe8378fSJason M. Bills                      "critical low threshold going low.",
1625271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going low. "
1626fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1627271584abSEd Tanous                      "Critical",
1628271584abSEd Tanous                      3,
1629271584abSEd Tanous                      {"string", "number", "number"},
1630271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1631fbe8378fSJason M. Bills                  }},
1632271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingHigh",
1633fbe8378fSJason M. Bills                  {
1634271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1635fbe8378fSJason M. Bills                      "warning high threshold going high.",
1636271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going high. "
1637fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1638271584abSEd Tanous                      "Warning",
1639271584abSEd Tanous                      3,
1640271584abSEd Tanous                      {"string", "number", "number"},
1641271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1642fbe8378fSJason M. Bills                  }},
1643271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingLow",
1644fbe8378fSJason M. Bills                  {
1645271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1646fbe8378fSJason M. Bills                      "warning high threshold going low.",
1647271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going low. "
1648fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1649271584abSEd Tanous                      "OK",
1650271584abSEd Tanous                      3,
1651271584abSEd Tanous                      {"string", "number", "number"},
1652271584abSEd Tanous                      "None.",
1653fbe8378fSJason M. Bills                  }},
1654271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingHigh",
1655fbe8378fSJason M. Bills                  {
1656271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1657fbe8378fSJason M. Bills                      "warning low threshold going high.",
1658271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going high. "
1659fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1660271584abSEd Tanous                      "OK",
1661271584abSEd Tanous                      3,
1662271584abSEd Tanous                      {"string", "number", "number"},
1663271584abSEd Tanous                      "None.",
1664fbe8378fSJason M. Bills                  }},
1665271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingLow",
1666fbe8378fSJason M. Bills                  {
1667271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1668fbe8378fSJason M. Bills                      "warning low threshold going low.",
1669271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going low. "
1670fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1671271584abSEd Tanous                      "Warning",
1672271584abSEd Tanous                      3,
1673271584abSEd Tanous                      {"string", "number", "number"},
1674271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1675fbe8378fSJason M. Bills                  }},
1676fb7579e9SJames Feist     MessageEntry{"ServiceFailure",
1677fb7579e9SJames Feist                  {
1678fb7579e9SJames Feist                      "Indicates that a service has exited unsuccessfully.",
1679271584abSEd Tanous                      "Service %1 has exited unsuccessfully.",
1680271584abSEd Tanous                      "Warning",
1681271584abSEd Tanous                      1,
1682271584abSEd Tanous                      {"string"},
1683271584abSEd Tanous                      "None.",
1684fb7579e9SJames Feist                  }},
1685fbe8378fSJason M. Bills     MessageEntry{"SparingRedundancyDegraded",
1686fbe8378fSJason M. Bills                  {
1687fbe8378fSJason M. Bills                      "Indicates the sparing redundancy state is degraded.",
1688271584abSEd Tanous                      "Sparing redundancy state degraded. Socket=%1 "
1689fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
1690271584abSEd Tanous                      "Warning",
1691271584abSEd Tanous                      5,
1692271584abSEd Tanous 
1693fbe8378fSJason M. Bills                      {
1694fbe8378fSJason M. Bills                          "number",
1695fbe8378fSJason M. Bills                          "string",
1696fbe8378fSJason M. Bills                          "number",
1697fbe8378fSJason M. Bills                          "string",
1698fbe8378fSJason M. Bills                          "number",
1699fbe8378fSJason M. Bills                      },
1700271584abSEd Tanous                      "None.",
1701fbe8378fSJason M. Bills                  }},
1702fbe8378fSJason M. Bills     MessageEntry{
1703fbe8378fSJason M. Bills         "SparingRedundancyFull",
1704fbe8378fSJason M. Bills         {
1705fbe8378fSJason M. Bills             "Indicates the sparing redundancy state is fully redundant.",
1706271584abSEd Tanous             "Sparing redundancy state fully redundant. Socket=%1 "
1707fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
1708271584abSEd Tanous             "OK",
1709271584abSEd Tanous             5,
1710271584abSEd Tanous 
1711fbe8378fSJason M. Bills             {
1712fbe8378fSJason M. Bills                 "number",
1713fbe8378fSJason M. Bills                 "string",
1714fbe8378fSJason M. Bills                 "number",
1715fbe8378fSJason M. Bills                 "string",
1716fbe8378fSJason M. Bills                 "number",
1717fbe8378fSJason M. Bills             },
1718271584abSEd Tanous             "None.",
1719fbe8378fSJason M. Bills         }},
1720271584abSEd Tanous     MessageEntry{"SsbThermalTrip",
1721b76f9ca1SChen,Yugang                  {
1722b76f9ca1SChen,Yugang                      "Indicates that an SSB Thermal trip has been asserted.",
1723271584abSEd Tanous                      "SSB Thermal trip.",
1724271584abSEd Tanous                      "Critical",
1725271584abSEd Tanous                      0,
1726271584abSEd Tanous                      {},
1727271584abSEd Tanous                      "None.",
1728b76f9ca1SChen,Yugang                  }},
172952efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceDisabledProvisioned",
173052efa5d6SRichard Marian Thomaiyar                  {
173152efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the disabled "
173252efa5d6SRichard Marian Thomaiyar                      "provisioned state. All commands are blocked to execute "
173352efa5d6SRichard Marian Thomaiyar                      "through the system interface.",
173452efa5d6SRichard Marian Thomaiyar                      "The system interface is in the disabled provisioned "
173552efa5d6SRichard Marian Thomaiyar                      "state.",
173652efa5d6SRichard Marian Thomaiyar                      "OK",
173752efa5d6SRichard Marian Thomaiyar                      0,
173852efa5d6SRichard Marian Thomaiyar                      {},
173952efa5d6SRichard Marian Thomaiyar                      "None.",
174052efa5d6SRichard Marian Thomaiyar                  }},
174152efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceUnprovisioned",
174252efa5d6SRichard Marian Thomaiyar                  {
174352efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the "
174452efa5d6SRichard Marian Thomaiyar                      "unprovisioned state. All commands are permitted to "
174552efa5d6SRichard Marian Thomaiyar                      "execute through the system interface.",
174652efa5d6SRichard Marian Thomaiyar                      "The system interface is in the unprovisioned state.",
174752efa5d6SRichard Marian Thomaiyar                      "Critical",
174852efa5d6SRichard Marian Thomaiyar                      0,
174952efa5d6SRichard Marian Thomaiyar                      {},
175052efa5d6SRichard Marian Thomaiyar                      "None.",
175152efa5d6SRichard Marian Thomaiyar                  }},
175252efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceWhitelistProvisioned",
175352efa5d6SRichard Marian Thomaiyar                  {
175452efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the whitelist "
175552efa5d6SRichard Marian Thomaiyar                      "provisioned state. Only whitelisted commands "
175652efa5d6SRichard Marian Thomaiyar                      "are permitted to execute through the system interface.",
175752efa5d6SRichard Marian Thomaiyar                      "The system interface is in the whitelist provisioned "
175852efa5d6SRichard Marian Thomaiyar                      "state.",
175952efa5d6SRichard Marian Thomaiyar                      "Warning",
176052efa5d6SRichard Marian Thomaiyar                      0,
176152efa5d6SRichard Marian Thomaiyar                      {},
176252efa5d6SRichard Marian Thomaiyar                      "None.",
176352efa5d6SRichard Marian Thomaiyar                  }},
1764bc48a175SJason M. Bills     MessageEntry{"SystemPowerGoodFailed",
1765bc48a175SJason M. Bills                  {
1766bc48a175SJason M. Bills                      "Indicates that the system power good signal failed "
1767bc48a175SJason M. Bills                      "to assert within the specified time (VR failure).",
1768271584abSEd Tanous                      "System power good failed to assert within %1 "
1769bc48a175SJason M. Bills                      "milliseconds (VR failure).",
1770271584abSEd Tanous                      "Critical",
1771271584abSEd Tanous                      1,
1772271584abSEd Tanous                      {"number"},
1773271584abSEd Tanous                      "None.",
1774bc48a175SJason M. Bills                  }},
1775fbe8378fSJason M. Bills     MessageEntry{"SystemPowerLost",
1776fbe8378fSJason M. Bills                  {
1777271584abSEd Tanous                      "Indicates that power was lost while the "
1778fbe8378fSJason M. Bills                      "system was powered on.",
1779271584abSEd Tanous                      "System Power Lost.",
1780271584abSEd Tanous                      "Critical",
1781271584abSEd Tanous                      0,
1782271584abSEd Tanous                      {},
1783271584abSEd Tanous                      "None.",
1784fbe8378fSJason M. Bills                  }},
1785271584abSEd Tanous     MessageEntry{"SystemPowerOffFailed",
1786fbe8378fSJason M. Bills                  {
1787271584abSEd Tanous                      "Indicates that the system failed to power off.",
1788271584abSEd Tanous                      "System Power-Off Failed.",
1789271584abSEd Tanous                      "Critical",
1790271584abSEd Tanous                      0,
1791271584abSEd Tanous                      {},
1792271584abSEd Tanous                      "None.",
1793fbe8378fSJason M. Bills                  }},
1794271584abSEd Tanous     MessageEntry{"SystemPowerOnFailed",
1795fbe8378fSJason M. Bills                  {
1796271584abSEd Tanous                      "Indicates that the system failed to power on.",
1797271584abSEd Tanous                      "System Power-On Failed.",
1798271584abSEd Tanous                      "Critical",
1799271584abSEd Tanous                      0,
1800271584abSEd Tanous                      {},
1801271584abSEd Tanous                      "None.",
1802fbe8378fSJason M. Bills                  }},
180373de092fSJason M. Bills     MessageEntry{
180473de092fSJason M. Bills         "VoltageRegulatorOverheated",
180573de092fSJason M. Bills         {
180673de092fSJason M. Bills             "Indicates that the specified voltage regulator overheated.",
1807271584abSEd Tanous             "%1 Voltage Regulator Overheated.",
1808271584abSEd Tanous             "Critical",
1809271584abSEd Tanous             1,
1810271584abSEd Tanous             {"string"},
1811271584abSEd Tanous             "None.",
181273de092fSJason M. Bills         }},
1813fbe8378fSJason M. Bills };
1814fbe8378fSJason M. Bills } // namespace redfish::message_registries::openbmc
1815