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 };
32*a3316fc6SZhikuiRen constexpr std::array<MessageEntry, 154> 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                  }},
175*a3316fc6SZhikuiRen     MessageEntry{"BIOSPOSTCode",
176*a3316fc6SZhikuiRen                  {
177*a3316fc6SZhikuiRen                      "BIOS Power-On Self-Test Code received",
178*a3316fc6SZhikuiRen                      "Boot Count: %1: TS Offset: %2; POST Code: %3",
179*a3316fc6SZhikuiRen                      "OK",
180*a3316fc6SZhikuiRen                      3,
181*a3316fc6SZhikuiRen                      {"number", "number", "number"},
182*a3316fc6SZhikuiRen                      "None.",
183*a3316fc6SZhikuiRen                  }},
184271584abSEd Tanous     MessageEntry{"BIOSPOSTError",
185fbe8378fSJason M. Bills                  {
186271584abSEd Tanous                      "Indicates BIOS POST has encountered an error.",
187271584abSEd Tanous                      "BIOS POST Error. Error Code=%1",
188271584abSEd Tanous                      "Warning",
189271584abSEd Tanous                      1,
190271584abSEd Tanous                      {"number"},
191271584abSEd Tanous                      "None.",
192fbe8378fSJason M. Bills                  }},
193fbe8378fSJason M. Bills     MessageEntry{"BIOSRecoveryComplete",
194fbe8378fSJason M. Bills                  {
195271584abSEd Tanous                      "Indicates BIOS Recovery has completed.",
196271584abSEd Tanous                      "BIOS Recovery Complete.",
197271584abSEd Tanous                      "OK",
198271584abSEd Tanous                      0,
199271584abSEd Tanous                      {},
200271584abSEd Tanous                      "None.",
201fbe8378fSJason M. Bills                  }},
202fbe8378fSJason M. Bills     MessageEntry{"BIOSRecoveryStart",
203fbe8378fSJason M. Bills                  {
204271584abSEd Tanous                      "Indicates BIOS Recovery has started.",
205271584abSEd Tanous                      "BIOS Recovery Start.",
206271584abSEd Tanous                      "Warning",
207271584abSEd Tanous                      0,
208271584abSEd Tanous                      {},
209271584abSEd Tanous                      "None.",
210fbe8378fSJason M. Bills                  }},
211bd5db522SYong Li     MessageEntry{"BMCKernelPanic",
212bd5db522SYong Li                  {
213bd5db522SYong Li                      "Indicates that BMC kernel panic occurred.",
214bd5db522SYong Li                      "BMC rebooted due to kernel panic.",
215bd5db522SYong Li                      "OK",
216bd5db522SYong Li                      0,
217bd5db522SYong Li                      {},
218bd5db522SYong Li                      "None.",
219bd5db522SYong Li                  }},
2200c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwarePanicReason",
2210c0f18e7SAppaRao Puli                  {
2220c0f18e7SAppaRao Puli                      "Indicates the reason for last BMC firmware panic.",
2230c0f18e7SAppaRao Puli                      "BMC firmware panic occurred due to %1.",
2240c0f18e7SAppaRao Puli                      "Warning",
2250c0f18e7SAppaRao Puli                      1,
2260c0f18e7SAppaRao Puli                      {
2270c0f18e7SAppaRao Puli                          "string",
2280c0f18e7SAppaRao Puli                      },
2290c0f18e7SAppaRao Puli                      "None.",
2300c0f18e7SAppaRao Puli                  }},
2310c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwareRecoveryReason",
2320c0f18e7SAppaRao Puli                  {
2330c0f18e7SAppaRao Puli                      "Indicates the reason for last BMC firmware recovery.",
2340c0f18e7SAppaRao Puli                      "BMC firmware recovery occurred due to %1.",
2350c0f18e7SAppaRao Puli                      "Warning",
2360c0f18e7SAppaRao Puli                      1,
2370c0f18e7SAppaRao Puli                      {
2380c0f18e7SAppaRao Puli                          "string",
2390c0f18e7SAppaRao Puli                      },
2400c0f18e7SAppaRao Puli                      "None.",
2410c0f18e7SAppaRao Puli                  }},
2420c0f18e7SAppaRao Puli     MessageEntry{"BMCFirmwareResiliencyError",
2430c0f18e7SAppaRao Puli                  {
2440c0f18e7SAppaRao Puli                      "Indicates BMC firmware encountered resilience error.",
2450c0f18e7SAppaRao Puli                      "BMC firmware resiliency error. Error reason: %1.",
2460c0f18e7SAppaRao Puli                      "Critical",
2470c0f18e7SAppaRao Puli                      1,
2480c0f18e7SAppaRao Puli                      {
2490c0f18e7SAppaRao Puli                          "string",
2500c0f18e7SAppaRao Puli                      },
2510c0f18e7SAppaRao Puli                      "None.",
2520c0f18e7SAppaRao Puli                  }},
253789771ddSQiang XU     MessageEntry{"ChassisIntrusionDetected",
254789771ddSQiang XU                  {
255789771ddSQiang XU                      "Indicates that a physical security event "
256789771ddSQiang XU                      "of the chassis intrusion has occurred.",
257789771ddSQiang XU                      "Chassis Intrusion Detected.",
258789771ddSQiang XU                      "Warning",
259789771ddSQiang XU                      0,
260789771ddSQiang XU                      {},
261789771ddSQiang XU                      "None.",
262789771ddSQiang XU                  }},
263789771ddSQiang XU     MessageEntry{"ChassisIntrusionReset",
264789771ddSQiang XU                  {
265789771ddSQiang XU                      "Indicates that chassis intrusion status has recovered.",
266789771ddSQiang XU                      "Chassis Intrusion Reset.",
267789771ddSQiang XU                      "OK",
268789771ddSQiang XU                      0,
269789771ddSQiang XU                      {},
270789771ddSQiang XU                      "None.",
271789771ddSQiang XU                  }},
2720c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwarePanicReason",
2730c0f18e7SAppaRao Puli                  {
2740c0f18e7SAppaRao Puli                      "Indicates the reason for CPLD firmware panic.",
2750c0f18e7SAppaRao Puli                      "CPLD firmware panic occurred due to %1.",
2760c0f18e7SAppaRao Puli                      "Warning",
2770c0f18e7SAppaRao Puli                      1,
2780c0f18e7SAppaRao Puli                      {
2790c0f18e7SAppaRao Puli                          "string",
2800c0f18e7SAppaRao Puli                      },
2810c0f18e7SAppaRao Puli                      "None.",
2820c0f18e7SAppaRao Puli                  }},
2830c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwareRecoveryReason",
2840c0f18e7SAppaRao Puli                  {
2850c0f18e7SAppaRao Puli                      "Indicates the reason for CPLD firmware recovery.",
2860c0f18e7SAppaRao Puli                      "CPLD firmware recovery occurred due to %1.",
2870c0f18e7SAppaRao Puli                      "Warning",
2880c0f18e7SAppaRao Puli                      1,
2890c0f18e7SAppaRao Puli                      {
2900c0f18e7SAppaRao Puli                          "string",
2910c0f18e7SAppaRao Puli                      },
2920c0f18e7SAppaRao Puli                      "None.",
2930c0f18e7SAppaRao Puli                  }},
2940c0f18e7SAppaRao Puli     MessageEntry{"CPLDFirmwareResiliencyError",
2950c0f18e7SAppaRao Puli                  {
2960c0f18e7SAppaRao Puli                      "Indicates CPLD firmware encountered resilience error.",
2970c0f18e7SAppaRao Puli                      "CPLD firmware resiliency error. Error reason: %1.",
2980c0f18e7SAppaRao Puli                      "Critical",
2990c0f18e7SAppaRao Puli                      1,
3000c0f18e7SAppaRao Puli                      {
3010c0f18e7SAppaRao Puli                          "string",
3020c0f18e7SAppaRao Puli                      },
3030c0f18e7SAppaRao Puli                      "None.",
3040c0f18e7SAppaRao Puli                  }},
305fbe8378fSJason M. Bills     MessageEntry{"CPUError",
306fbe8378fSJason M. Bills                  {
307271584abSEd Tanous                      "Indicates that a CPU Error occurred of "
308fbe8378fSJason M. Bills                      "the specified type or cause.",
309271584abSEd Tanous                      "CPU Error Occurred: %1.",
310271584abSEd Tanous                      "Critical",
311271584abSEd Tanous                      1,
312271584abSEd Tanous                      {"string"},
313271584abSEd Tanous                      "None.",
314fbe8378fSJason M. Bills                  }},
31573de092fSJason M. Bills     MessageEntry{"CPUThermalTrip",
31673de092fSJason M. Bills                  {
317271584abSEd Tanous                      "Indicates that the specified CPU thermal "
31873de092fSJason M. Bills                      "trip has been asserted.",
319271584abSEd Tanous                      "CPU %1 Thermal Trip.",
320271584abSEd Tanous                      "Critical",
321271584abSEd Tanous                      1,
322271584abSEd Tanous                      {"number"},
323271584abSEd Tanous                      "None.",
32473de092fSJason M. Bills                  }},
325271584abSEd Tanous     MessageEntry{"DCPowerOff",
326fbe8378fSJason M. Bills                  {
327271584abSEd Tanous                      "Indicates that the system DC power is off.",
328271584abSEd Tanous                      "Host system DC power is off",
329271584abSEd Tanous                      "OK",
330271584abSEd Tanous                      0,
331271584abSEd Tanous                      {},
332271584abSEd Tanous                      "None.",
333fbe8378fSJason M. Bills                  }},
334fbe8378fSJason M. Bills     MessageEntry{"DCPowerOn",
335fbe8378fSJason M. Bills                  {
336271584abSEd Tanous                      "Indicates that the system DC power is on.",
337271584abSEd Tanous                      "Host system DC power is on",
338271584abSEd Tanous                      "OK",
339271584abSEd Tanous                      0,
340271584abSEd Tanous                      {},
341271584abSEd Tanous                      "None.",
342fbe8378fSJason M. Bills                  }},
343c75f1e9aSJames Feist     MessageEntry{"DriveError",
344c75f1e9aSJames Feist                  {
345c75f1e9aSJames Feist                      "Indicates that a Drive Error occurred of "
346c75f1e9aSJames Feist                      "the specified type or cause.",
347c75f1e9aSJames Feist                      "Drive Error Occurred: %1.",
348c75f1e9aSJames Feist                      "Warning",
349c75f1e9aSJames Feist                      1,
350c75f1e9aSJames Feist                      {"string"},
351c75f1e9aSJames Feist                      "None.",
352c75f1e9aSJames Feist                  }},
353271584abSEd Tanous     MessageEntry{"EventLogCleared",
354fbe8378fSJason M. Bills                  {
355271584abSEd Tanous                      "Indicates that the event log has been cleared.",
356271584abSEd Tanous                      "Event Log Cleared.",
357271584abSEd Tanous                      "OK",
358271584abSEd Tanous                      0,
359271584abSEd Tanous                      {},
360271584abSEd Tanous                      "None.",
361fbe8378fSJason M. Bills                  }},
362271584abSEd Tanous     MessageEntry{"FanInserted",
363fbe8378fSJason M. Bills                  {
364271584abSEd Tanous                      "Indicates that a system fan has been inserted.",
365271584abSEd Tanous                      "%1 inserted.",
366271584abSEd Tanous                      "OK",
367271584abSEd Tanous                      1,
368271584abSEd Tanous                      {"string"},
369271584abSEd Tanous                      "None.",
370fbe8378fSJason M. Bills                  }},
371fbe8378fSJason M. Bills     MessageEntry{"FanRedundancyLost",
372fbe8378fSJason M. Bills                  {
373fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been lost.",
374271584abSEd Tanous                      "Fan redundancy lost.",
375271584abSEd Tanous                      "Warning",
376271584abSEd Tanous                      0,
377271584abSEd Tanous                      {},
378271584abSEd Tanous                      "None.",
379fbe8378fSJason M. Bills                  }},
380271584abSEd Tanous     MessageEntry{"FanRedundancyRegained",
381fbe8378fSJason M. Bills                  {
382fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been regained.",
383271584abSEd Tanous                      "Fan redundancy regained.",
384271584abSEd Tanous                      "OK",
385271584abSEd Tanous                      0,
386271584abSEd Tanous                      {},
387271584abSEd Tanous                      "None.",
388fbe8378fSJason M. Bills                  }},
389271584abSEd Tanous     MessageEntry{"FanRemoved",
390fbe8378fSJason M. Bills                  {
391271584abSEd Tanous                      "Indicates that a system fan has been removed.",
392271584abSEd Tanous                      "%1 removed.",
393271584abSEd Tanous                      "OK",
394271584abSEd Tanous                      1,
395271584abSEd Tanous                      {"string"},
396271584abSEd Tanous                      "None.",
397fbe8378fSJason M. Bills                  }},
398271584abSEd Tanous     MessageEntry{"FirmwareUpdateCompleted",
399fbe8378fSJason M. Bills                  {
400fbe8378fSJason M. Bills                      "Indicates a firmware update has completed successfully.",
401271584abSEd Tanous                      "%1 firmware update to version %2 completed "
402fbe8378fSJason M. Bills                      "successfully.",
403271584abSEd Tanous                      "OK",
404271584abSEd Tanous                      2,
405271584abSEd Tanous                      {"string", "string"},
406271584abSEd Tanous                      "None.",
407fbe8378fSJason M. Bills                  }},
408fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateFailed",
409fbe8378fSJason M. Bills                  {
410271584abSEd Tanous                      "Indicates a firmware update has failed.",
411271584abSEd Tanous                      "%1 firmware update to version %2 failed.",
412271584abSEd Tanous                      "Warning",
413271584abSEd Tanous                      2,
414271584abSEd Tanous                      {"string", "string"},
415271584abSEd Tanous                      "None.",
416fbe8378fSJason M. Bills                  }},
417fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateStarted",
418fbe8378fSJason M. Bills                  {
419271584abSEd Tanous                      "Indicates a firmware update has started.",
420271584abSEd Tanous                      "%1 firmware update to version %2 started.",
421271584abSEd Tanous                      "OK",
422271584abSEd Tanous                      2,
423271584abSEd Tanous                      {"string", "string"},
424271584abSEd Tanous                      "None.",
425fbe8378fSJason M. Bills                  }},
426fbe8378fSJason M. Bills     MessageEntry{
427fbe8378fSJason M. Bills         "GeneralFirmwareSecurityViolation",
428fbe8378fSJason M. Bills         {
429fbe8378fSJason M. Bills             "Indicates a general firmware security violation has occurred.",
430271584abSEd Tanous             "Firmware security violation: %1.",
431271584abSEd Tanous             "Critical",
432271584abSEd Tanous             1,
433271584abSEd Tanous             {"string"},
434271584abSEd Tanous             "None.",
435fbe8378fSJason M. Bills         }},
436271584abSEd Tanous     MessageEntry{"InvalidLoginAttempted",
437fbe8378fSJason M. Bills                  {
438fbe8378fSJason M. Bills                      "Indicates that a login was attempted on the specified "
439fbe8378fSJason M. Bills                      "interface with an invalid username or password.",
440271584abSEd Tanous                      "Invalid username or password attempted on %1.",
441271584abSEd Tanous                      "Warning",
442271584abSEd Tanous                      1,
443271584abSEd Tanous                      {"string"},
444271584abSEd Tanous                      "None.",
445fbe8378fSJason M. Bills                  }},
446fbe8378fSJason M. Bills     MessageEntry{
447d62cec73SJames Feist         "InventoryAdded",
448d62cec73SJames Feist         {
449d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
450d62cec73SJames Feist             "type, and serial number was installed.",
451271584abSEd Tanous             "%1 %2 with serial number %3 was installed.",
452271584abSEd Tanous             "OK",
453271584abSEd Tanous             3,
454271584abSEd Tanous 
455d62cec73SJames Feist             {
456d62cec73SJames Feist                 "string",
457d62cec73SJames Feist                 "string",
458d62cec73SJames Feist                 "string",
459d62cec73SJames Feist             },
460271584abSEd Tanous             "None.",
461d62cec73SJames Feist         }},
462d62cec73SJames Feist     MessageEntry{
463d62cec73SJames Feist         "InventoryRemoved",
464d62cec73SJames Feist         {
465d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
466d62cec73SJames Feist             "type, and serial number was removed.",
467271584abSEd Tanous             "%1 %2 with serial number %3 was removed.",
468271584abSEd Tanous             "OK",
469271584abSEd Tanous             3,
470271584abSEd Tanous 
471d62cec73SJames Feist             {
472d62cec73SJames Feist                 "string",
473d62cec73SJames Feist                 "string",
474d62cec73SJames Feist                 "string",
475d62cec73SJames Feist             },
476271584abSEd Tanous             "None.",
477d62cec73SJames Feist         }},
478d62cec73SJames Feist     MessageEntry{
479fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToHalf",
480fbe8378fSJason M. Bills         {
481fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to half width.",
482271584abSEd Tanous             "Intel UPI link width reduced to half. Node=%1.",
483271584abSEd Tanous             "Warning",
484271584abSEd Tanous             1,
485271584abSEd Tanous 
486fbe8378fSJason M. Bills             {
487fbe8378fSJason M. Bills                 "number",
488fbe8378fSJason M. Bills             },
489271584abSEd Tanous             "None.",
490fbe8378fSJason M. Bills         }},
491fbe8378fSJason M. Bills     MessageEntry{
492fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToQuarter",
493fbe8378fSJason M. Bills         {
494fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to quarter width.",
495271584abSEd Tanous             "Intel UPI link width reduced to quarter. Node=%1.",
496271584abSEd Tanous             "Warning",
497271584abSEd Tanous             1,
498271584abSEd Tanous 
499fbe8378fSJason M. Bills             {
500fbe8378fSJason M. Bills                 "number",
501fbe8378fSJason M. Bills             },
502271584abSEd Tanous             "None.",
503fbe8378fSJason M. Bills         }},
50493a2b2fcSYong Li 
505271584abSEd Tanous     MessageEntry{"IPMIWatchdog",
50693a2b2fcSYong Li                  {
507271584abSEd Tanous                      "Indicates that there is a host watchdog event.",
508271584abSEd Tanous                      "Host Watchdog Event: %1",
509271584abSEd Tanous                      "OK",
510271584abSEd Tanous                      1,
511271584abSEd Tanous 
51293a2b2fcSYong Li                      {
51393a2b2fcSYong Li                          "string",
51493a2b2fcSYong Li                      },
515271584abSEd Tanous                      "None.",
51693a2b2fcSYong Li                  }},
517789771ddSQiang XU     MessageEntry{"LanLost",
518789771ddSQiang XU                  {
519789771ddSQiang XU                      "Indicates that a physical security event "
520789771ddSQiang XU                      "of the LAN leash has lost.",
521789771ddSQiang XU                      "%1 LAN leash lost.",
522789771ddSQiang XU                      "Warning",
523789771ddSQiang XU                      1,
524789771ddSQiang XU                      {
525789771ddSQiang XU                          "string",
526789771ddSQiang XU                      },
527789771ddSQiang XU                      "None.",
528789771ddSQiang XU                  }},
529789771ddSQiang XU     MessageEntry{"LanRegained",
530789771ddSQiang XU                  {
531789771ddSQiang XU                      "Indicates that LAN link status has reconnected.",
532789771ddSQiang XU                      "%1 LAN leash regained.",
533789771ddSQiang XU                      "OK",
534789771ddSQiang XU                      1,
535789771ddSQiang XU                      {
536789771ddSQiang XU                          "string",
537789771ddSQiang XU                      },
538789771ddSQiang XU                      "None.",
539789771ddSQiang XU                  }},
540271584abSEd Tanous     MessageEntry{"LegacyPCIPERR",
541fbe8378fSJason M. Bills                  {
542271584abSEd Tanous                      "Indicates a Legacy PCI PERR.",
543271584abSEd Tanous                      "Legacy PCI PERR. Bus=%1 Device=%2 Function=%3.",
544271584abSEd Tanous                      "Warning",
545271584abSEd Tanous                      3,
546271584abSEd Tanous 
547fbe8378fSJason M. Bills                      {
548fbe8378fSJason M. Bills                          "number",
549fbe8378fSJason M. Bills                          "number",
550fbe8378fSJason M. Bills                          "number",
551fbe8378fSJason M. Bills                      },
552271584abSEd Tanous                      "None.",
553fbe8378fSJason M. Bills                  }},
554271584abSEd Tanous     MessageEntry{"LegacyPCISERR",
555fbe8378fSJason M. Bills                  {
556271584abSEd Tanous                      "Indicates a Legacy PCI SERR.",
557271584abSEd Tanous                      "Legacy PCI SERR. Bus=%1 Device=%2 Function=%3.",
558271584abSEd Tanous                      "Critical",
559271584abSEd Tanous                      3,
560271584abSEd Tanous 
561fbe8378fSJason M. Bills                      {
562fbe8378fSJason M. Bills                          "number",
563fbe8378fSJason M. Bills                          "number",
564fbe8378fSJason M. Bills                          "number",
565fbe8378fSJason M. Bills                      },
566271584abSEd Tanous                      "None.",
567fbe8378fSJason M. Bills                  }},
568fbe8378fSJason M. Bills     MessageEntry{"ManufacturingModeEntered",
569fbe8378fSJason M. Bills                  {
57053d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC entered Factory, "
57153d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
572271584abSEd Tanous                      "Entered Manufacturing Mode.",
57353d9a666SRichard Marian Thomaiyar                      "Critical",
57453d9a666SRichard Marian Thomaiyar                      0,
57553d9a666SRichard Marian Thomaiyar                      {},
57653d9a666SRichard Marian Thomaiyar                      "None.",
57753d9a666SRichard Marian Thomaiyar                  }},
57853d9a666SRichard Marian Thomaiyar     MessageEntry{"ManufacturingModeExited",
57953d9a666SRichard Marian Thomaiyar                  {
58053d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC exited Factory, "
58153d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
58253d9a666SRichard Marian Thomaiyar                      "Exited Manufacturing Mode.",
58353d9a666SRichard Marian Thomaiyar                      "OK",
584271584abSEd Tanous                      0,
585271584abSEd Tanous                      {},
586271584abSEd Tanous                      "None.",
587fbe8378fSJason M. Bills                  }},
5880c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwarePanicReason",
5890c0f18e7SAppaRao Puli                  {
5900c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware panic.",
5910c0f18e7SAppaRao Puli                      "ME firmware panic occurred due to %1.",
5920c0f18e7SAppaRao Puli                      "Warning",
5930c0f18e7SAppaRao Puli                      1,
5940c0f18e7SAppaRao Puli                      {
5950c0f18e7SAppaRao Puli                          "string",
5960c0f18e7SAppaRao Puli                      },
5970c0f18e7SAppaRao Puli                      "None.",
5980c0f18e7SAppaRao Puli                  }},
5990c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareRecoveryReason",
6000c0f18e7SAppaRao Puli                  {
6010c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware recovery.",
6020c0f18e7SAppaRao Puli                      "ME firmware recovery occurred due to %1.",
6030c0f18e7SAppaRao Puli                      "Warning",
6040c0f18e7SAppaRao Puli                      1,
6050c0f18e7SAppaRao Puli                      {
6060c0f18e7SAppaRao Puli                          "string",
6070c0f18e7SAppaRao Puli                      },
6080c0f18e7SAppaRao Puli                      "None.",
6090c0f18e7SAppaRao Puli                  }},
6100c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareResiliencyError",
6110c0f18e7SAppaRao Puli                  {
6120c0f18e7SAppaRao Puli                      "Indicates ME firmware encountered resilience error.",
6130c0f18e7SAppaRao Puli                      "ME firmware resiliency error. Error reason: %1.",
6140c0f18e7SAppaRao Puli                      "Critical",
6150c0f18e7SAppaRao Puli                      1,
6160c0f18e7SAppaRao Puli                      {
6170c0f18e7SAppaRao Puli                          "string",
6180c0f18e7SAppaRao Puli                      },
6190c0f18e7SAppaRao Puli                      "None.",
6200c0f18e7SAppaRao Puli                  }},
621fbe8378fSJason M. Bills     MessageEntry{"MemoryECCCorrectable",
622fbe8378fSJason M. Bills                  {
623271584abSEd Tanous                      "Indicates a Correctable Memory ECC error.",
624271584abSEd Tanous                      "Memory ECC correctable error. Socket=%1 "
625fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Rank=%4.",
626271584abSEd Tanous                      "Warning",
627271584abSEd Tanous                      4,
628271584abSEd Tanous 
629fbe8378fSJason M. Bills                      {
630fbe8378fSJason M. Bills                          "number",
631fbe8378fSJason M. Bills                          "string",
632fbe8378fSJason M. Bills                          "number",
633fbe8378fSJason M. Bills                          "number",
634fbe8378fSJason M. Bills                      },
635271584abSEd Tanous                      "None.",
636fbe8378fSJason M. Bills                  }},
637271584abSEd Tanous     MessageEntry{"MemoryECCUncorrectable",
638fbe8378fSJason M. Bills                  {
639271584abSEd Tanous                      "Indicates an Uncorrectable Memory ECC error.",
640271584abSEd Tanous                      "Memory ECC uncorrectable error. Socket=%1 Channel=%2 "
641fbe8378fSJason M. Bills                      "DIMM=%3 Rank=%4.",
642271584abSEd Tanous                      "Critical",
643271584abSEd Tanous                      4,
644271584abSEd Tanous 
645fbe8378fSJason M. Bills                      {
646fbe8378fSJason M. Bills                          "number",
647fbe8378fSJason M. Bills                          "string",
648fbe8378fSJason M. Bills                          "number",
649fbe8378fSJason M. Bills                          "number",
650fbe8378fSJason M. Bills                      },
651271584abSEd Tanous                      "None.",
652fbe8378fSJason M. Bills                  }},
653271584abSEd Tanous     MessageEntry{"MemoryParityCommandAndAddress",
654fbe8378fSJason M. Bills                  {
655271584abSEd Tanous                      "Indicates a Command and Address parity error.",
656271584abSEd Tanous                      "Command and Address parity error. Socket=%1 Channel=%2 "
657fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
658271584abSEd Tanous                      "Critical",
659271584abSEd Tanous                      5,
660271584abSEd Tanous 
661fbe8378fSJason M. Bills                      {
662fbe8378fSJason M. Bills                          "number",
663fbe8378fSJason M. Bills                          "string",
664fbe8378fSJason M. Bills                          "number",
665fbe8378fSJason M. Bills                          "number",
666fbe8378fSJason M. Bills                          "number",
667fbe8378fSJason M. Bills                      },
668271584abSEd Tanous                      "None.",
669fbe8378fSJason M. Bills                  }},
670fbe8378fSJason M. Bills     MessageEntry{"MemoryParityNotKnown",
671fbe8378fSJason M. Bills                  {
672271584abSEd Tanous                      "Indicates an unknown parity error.",
673271584abSEd Tanous                      "Memory parity error. Socket=%1 Channel=%2 "
674fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
675271584abSEd Tanous                      "Critical",
676271584abSEd Tanous                      5,
677271584abSEd Tanous 
678fbe8378fSJason M. Bills                      {
679fbe8378fSJason M. Bills                          "number",
680fbe8378fSJason M. Bills                          "string",
681fbe8378fSJason M. Bills                          "number",
682fbe8378fSJason M. Bills                          "number",
683fbe8378fSJason M. Bills                          "number",
684fbe8378fSJason M. Bills                      },
685271584abSEd Tanous                      "None.",
686fbe8378fSJason M. Bills                  }},
687271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationDisabled",
688fbe8378fSJason M. Bills                  {
689fbe8378fSJason M. Bills                      "Indicates Memory RAS Disabled Configuration Status.",
690271584abSEd Tanous                      "Memory RAS Configuration Disabled. Error=%1 Mode=%2.",
691271584abSEd Tanous                      "OK",
692271584abSEd Tanous                      2,
693271584abSEd Tanous 
694fbe8378fSJason M. Bills                      {
695fbe8378fSJason M. Bills                          "string",
696fbe8378fSJason M. Bills                          "string",
697fbe8378fSJason M. Bills                      },
698271584abSEd Tanous                      "None.",
699fbe8378fSJason M. Bills                  }},
700271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationEnabled",
701fbe8378fSJason M. Bills                  {
702271584abSEd Tanous                      "Indicates Memory RAS Enabled Configuration Status.",
703271584abSEd Tanous                      "Memory RAS Configuration Enabled. Error=%1 Mode=%2.",
704271584abSEd Tanous                      "OK",
705271584abSEd Tanous                      2,
706271584abSEd Tanous 
707fbe8378fSJason M. Bills                      {
708fbe8378fSJason M. Bills                          "string",
709fbe8378fSJason M. Bills                          "string",
710fbe8378fSJason M. Bills                      },
711271584abSEd Tanous                      "None.",
712fbe8378fSJason M. Bills                  }},
713271584abSEd Tanous     MessageEntry{"MemoryRASModeDisabled",
714fbe8378fSJason M. Bills                  {
715271584abSEd Tanous                      "Indicates Memory RAS Disabled Mode Selection.",
716271584abSEd Tanous                      "Memory RAS Mode Select Disabled. Prior Mode=%1 "
717fbe8378fSJason M. Bills                      "Selected Mode=%2.",
718271584abSEd Tanous                      "OK",
719271584abSEd Tanous                      2,
720271584abSEd Tanous 
721fbe8378fSJason M. Bills                      {
722fbe8378fSJason M. Bills                          "string",
723fbe8378fSJason M. Bills                          "string",
724fbe8378fSJason M. Bills                      },
725271584abSEd Tanous                      "None.",
726fbe8378fSJason M. Bills                  }},
727271584abSEd Tanous     MessageEntry{"MemoryRASModeEnabled",
728fbe8378fSJason M. Bills                  {
729271584abSEd Tanous                      "Indicates Memory RAS Enabled Mode Selection.",
730271584abSEd Tanous                      "Memory RAS Mode Select Enabled. Prior Mode=%1 Selected "
731fbe8378fSJason M. Bills                      "Mode=%2.",
732271584abSEd Tanous                      "OK",
733271584abSEd Tanous                      2,
734271584abSEd Tanous 
735fbe8378fSJason M. Bills                      {
736fbe8378fSJason M. Bills                          "string",
737fbe8378fSJason M. Bills                          "string",
738fbe8378fSJason M. Bills                      },
739271584abSEd Tanous                      "None.",
740fbe8378fSJason M. Bills                  }},
741271584abSEd Tanous     MessageEntry{"MemoryThermTrip",
742fbe8378fSJason M. Bills                  {
743bc6be237Sjayaprakash Mutyala                      "Indicates that the system memory ThermTrip is asserted "
744bc6be237Sjayaprakash Mutyala                      "by the specified component.",
745bc6be237Sjayaprakash Mutyala                      "Memory ThermTrip asserted: %1.",
746271584abSEd Tanous                      "Critical",
747bc6be237Sjayaprakash Mutyala                      1,
748bc6be237Sjayaprakash Mutyala                      {"string"},
749271584abSEd Tanous                      "None.",
750fbe8378fSJason M. Bills                  }},
751271584abSEd Tanous     MessageEntry{"MirroringRedundancyDegraded",
752fbe8378fSJason M. Bills                  {
753fbe8378fSJason M. Bills                      "Indicates the mirroring redundancy state is degraded.",
754271584abSEd Tanous                      "Mirroring redundancy state degraded. Socket=%1 "
755fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
756271584abSEd Tanous                      "Warning",
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                  }},
768fbe8378fSJason M. Bills     MessageEntry{
769fbe8378fSJason M. Bills         "MirroringRedundancyFull",
770fbe8378fSJason M. Bills         {
771fbe8378fSJason M. Bills             "Indicates the mirroring redundancy state is fully redundant.",
772271584abSEd Tanous             "Mirroring redundancy state fully redundant. Socket=%1 "
773fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
774271584abSEd Tanous             "OK",
775271584abSEd Tanous             5,
776271584abSEd Tanous 
777fbe8378fSJason M. Bills             {
778fbe8378fSJason M. Bills                 "number",
779fbe8378fSJason M. Bills                 "string",
780fbe8378fSJason M. Bills                 "number",
781fbe8378fSJason M. Bills                 "number",
782fbe8378fSJason M. Bills                 "number",
783fbe8378fSJason M. Bills             },
784271584abSEd Tanous             "None.",
785fbe8378fSJason M. Bills         }},
786271584abSEd Tanous     MessageEntry{"NMIButtonPressed",
787fbe8378fSJason M. Bills                  {
788271584abSEd Tanous                      "Indicates that the NMI button was pressed.",
789271584abSEd Tanous                      "NMI Button Pressed.",
790271584abSEd Tanous                      "Critical",
791271584abSEd Tanous                      0,
792271584abSEd Tanous                      {},
793271584abSEd Tanous                      "None.",
794fbe8378fSJason M. Bills                  }},
795b76f9ca1SChen,Yugang     MessageEntry{"NMIDiagnosticInterrupt",
796b76f9ca1SChen,Yugang                  {
797271584abSEd Tanous                      "Indicates that an NMI Diagnostic "
798b76f9ca1SChen,Yugang                      "Interrupt has been generated.",
799271584abSEd Tanous                      "NMI Diagnostic Interrupt.",
800271584abSEd Tanous                      "Critical",
801271584abSEd Tanous                      0,
802271584abSEd Tanous                      {},
803271584abSEd Tanous                      "None.",
804b76f9ca1SChen,Yugang                  }},
805271584abSEd Tanous     MessageEntry{"PCIeCorrectableAdvisoryNonFatal",
806fbe8378fSJason M. Bills                  {
807fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Advisory Non-fatal Error.",
808271584abSEd Tanous                      "PCIe Correctable Advisory Non-fatal Error. Bus=%1 "
809fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
810271584abSEd Tanous                      "Warning",
811271584abSEd Tanous                      3,
812271584abSEd Tanous 
813fbe8378fSJason M. Bills                      {
814fbe8378fSJason M. Bills                          "number",
815fbe8378fSJason M. Bills                          "number",
816fbe8378fSJason M. Bills                          "number",
817fbe8378fSJason M. Bills                      },
818271584abSEd Tanous                      "None.",
819fbe8378fSJason M. Bills                  }},
820271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadDLLP",
821fbe8378fSJason M. Bills                  {
822271584abSEd Tanous                      "Indicates a PCIe Correctable Bad DLLP Error.",
823271584abSEd Tanous 
824fbe8378fSJason M. Bills                      "PCIe Correctable Bad DLLP. Bus=%1 Device=%2 Function=%3.",
825271584abSEd Tanous                      "Warning",
826271584abSEd Tanous                      3,
827271584abSEd Tanous 
828fbe8378fSJason M. Bills                      {
829fbe8378fSJason M. Bills                          "number",
830fbe8378fSJason M. Bills                          "number",
831fbe8378fSJason M. Bills                          "number",
832fbe8378fSJason M. Bills                      },
833271584abSEd Tanous                      "None.",
834fbe8378fSJason M. Bills                  }},
835271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadTLP",
836fbe8378fSJason M. Bills                  {
837271584abSEd Tanous                      "Indicates a PCIe Correctable Bad TLP Error.",
838271584abSEd Tanous 
839fbe8378fSJason M. Bills                      "PCIe Correctable Bad TLP. Bus=%1 Device=%2 Function=%3.",
840271584abSEd Tanous                      "Warning",
841271584abSEd Tanous                      3,
842271584abSEd Tanous 
843fbe8378fSJason M. Bills                      {
844fbe8378fSJason M. Bills                          "number",
845fbe8378fSJason M. Bills                          "number",
846fbe8378fSJason M. Bills                          "number",
847fbe8378fSJason M. Bills                      },
848271584abSEd Tanous                      "None.",
849fbe8378fSJason M. Bills                  }},
850271584abSEd Tanous     MessageEntry{"PCIeCorrectableHeaderLogOverflow",
851fbe8378fSJason M. Bills                  {
852fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Header Log Overflow Error.",
853271584abSEd Tanous                      "PCIe Correctable Header Log Overflow. Bus=%1 Device=%2 "
854fbe8378fSJason M. Bills                      "Function=%3.",
855271584abSEd Tanous                      "Warning",
856271584abSEd Tanous                      3,
857271584abSEd Tanous 
858fbe8378fSJason M. Bills                      {
859fbe8378fSJason M. Bills                          "number",
860fbe8378fSJason M. Bills                          "number",
861fbe8378fSJason M. Bills                          "number",
862fbe8378fSJason M. Bills                      },
863271584abSEd Tanous                      "None.",
864fbe8378fSJason M. Bills                  }},
865271584abSEd Tanous     MessageEntry{"PCIeCorrectableInternal",
866fbe8378fSJason M. Bills                  {
867271584abSEd Tanous                      "Indicates a PCIe Correctable Internal Error.",
868271584abSEd Tanous                      "PCIe Correctable Internal Error. Bus=%1 Device=%2 "
869fbe8378fSJason M. Bills                      "Function=%3.",
870271584abSEd Tanous                      "Warning",
871271584abSEd Tanous                      3,
872271584abSEd Tanous 
873fbe8378fSJason M. Bills                      {
874fbe8378fSJason M. Bills                          "number",
875fbe8378fSJason M. Bills                          "number",
876fbe8378fSJason M. Bills                          "number",
877fbe8378fSJason M. Bills                      },
878271584abSEd Tanous                      "None.",
879fbe8378fSJason M. Bills                  }},
880fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableLinkBWChanged",
881fbe8378fSJason M. Bills                  {
882fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Link BW Changed Error.",
883271584abSEd Tanous                      "PCIe Correctable Link BW Changed. Bus=%1 "
884fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
885271584abSEd Tanous                      "Warning",
886271584abSEd Tanous                      3,
887271584abSEd Tanous 
888fbe8378fSJason M. Bills                      {
889fbe8378fSJason M. Bills                          "number",
890fbe8378fSJason M. Bills                          "number",
891fbe8378fSJason M. Bills                          "number",
892fbe8378fSJason M. Bills                      },
893271584abSEd Tanous                      "None.",
894fbe8378fSJason M. Bills                  }},
895271584abSEd Tanous     MessageEntry{"PCIeCorrectableReceiverError",
896fbe8378fSJason M. Bills                  {
897271584abSEd Tanous                      "Indicates a PCIe Correctable Receiver Error.",
898271584abSEd Tanous                      "PCIe Correctable Receiver Error. Bus=%1 Device=%2 "
899fbe8378fSJason M. Bills                      "Function=%3.",
900271584abSEd Tanous                      "Warning",
901271584abSEd Tanous                      3,
902271584abSEd Tanous 
903fbe8378fSJason M. Bills                      {
904fbe8378fSJason M. Bills                          "number",
905fbe8378fSJason M. Bills                          "number",
906fbe8378fSJason M. Bills                          "number",
907fbe8378fSJason M. Bills                      },
908271584abSEd Tanous                      "None.",
909fbe8378fSJason M. Bills                  }},
910271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayNumRollover",
911fbe8378fSJason M. Bills                  {
912271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Num Rollover.",
913271584abSEd Tanous                      "PCIe Correctable Replay Num Rollover. Bus=%1 Device=%2 "
914fbe8378fSJason M. Bills                      "Function=%3.",
915271584abSEd Tanous                      "Warning",
916271584abSEd Tanous                      3,
917271584abSEd Tanous 
918fbe8378fSJason M. Bills                      {
919fbe8378fSJason M. Bills                          "number",
920fbe8378fSJason M. Bills                          "number",
921fbe8378fSJason M. Bills                          "number",
922fbe8378fSJason M. Bills                      },
923271584abSEd Tanous                      "None.",
924fbe8378fSJason M. Bills                  }},
925271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayTimerTimeout",
926fbe8378fSJason M. Bills                  {
927271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Timer Timeout.",
928271584abSEd Tanous                      "PCIe Correctable Replay Timer Timeout. Bus=%1 "
929fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
930271584abSEd Tanous                      "Warning",
931271584abSEd Tanous                      3,
932271584abSEd Tanous 
933fbe8378fSJason M. Bills                      {
934fbe8378fSJason M. Bills                          "number",
935fbe8378fSJason M. Bills                          "number",
936fbe8378fSJason M. Bills                          "number",
937fbe8378fSJason M. Bills                      },
938271584abSEd Tanous                      "None.",
939fbe8378fSJason M. Bills                  }},
940fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableUnspecifiedAERError",
941fbe8378fSJason M. Bills                  {
942fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Unspecified AER Error.",
943271584abSEd Tanous                      "PCIe Correctable Unspecified AER Error. "
944fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
945271584abSEd Tanous                      "Warning",
946271584abSEd Tanous                      3,
947271584abSEd Tanous 
948fbe8378fSJason M. Bills                      {
949fbe8378fSJason M. Bills                          "number",
950fbe8378fSJason M. Bills                          "number",
951fbe8378fSJason M. Bills                          "number",
952fbe8378fSJason M. Bills                      },
953271584abSEd Tanous                      "None.",
954fbe8378fSJason M. Bills                  }},
955271584abSEd Tanous     MessageEntry{"PCIeFatalACSViolation",
956fbe8378fSJason M. Bills                  {
957271584abSEd Tanous                      "Indicates a PCIe ACS Violation Error.",
958271584abSEd Tanous 
959fbe8378fSJason M. Bills                      "PCIe Fatal ACS Violation. Bus=%1 Device=%2 Function=%3.",
9604228a160SJason M. Bills                      "Critical",
961271584abSEd Tanous                      3,
962271584abSEd Tanous 
963fbe8378fSJason M. Bills                      {
964fbe8378fSJason M. Bills                          "number",
965fbe8378fSJason M. Bills                          "number",
966fbe8378fSJason M. Bills                          "number",
967fbe8378fSJason M. Bills                      },
968271584abSEd Tanous                      "None.",
969fbe8378fSJason M. Bills                  }},
970271584abSEd Tanous     MessageEntry{"PCIeFatalAtomicEgressBlocked",
971fbe8378fSJason M. Bills                  {
972271584abSEd Tanous                      "Indicates a PCIe Atomic Egress Blocked Error.",
973271584abSEd Tanous                      "PCIe Fatal Atomic Egress Blocked. Bus=%1 Device=%2 "
974fbe8378fSJason M. Bills                      "Function=%3.",
9754228a160SJason M. Bills                      "Critical",
976271584abSEd Tanous                      3,
977271584abSEd Tanous 
978fbe8378fSJason M. Bills                      {
979fbe8378fSJason M. Bills                          "number",
980fbe8378fSJason M. Bills                          "number",
981fbe8378fSJason M. Bills                          "number",
982fbe8378fSJason M. Bills                      },
983271584abSEd Tanous                      "None.",
984fbe8378fSJason M. Bills                  }},
985fbe8378fSJason M. Bills     MessageEntry{
986fbe8378fSJason M. Bills         "PCIeFatalCompleterAbort",
987fbe8378fSJason M. Bills         {
988271584abSEd Tanous             "Indicates a PCIe Completer Abort Error.",
989271584abSEd Tanous 
990fbe8378fSJason M. Bills             "PCIe Fatal Completer Abort. Bus=%1 Device=%2 Function=%3.",
9914228a160SJason M. Bills             "Critical",
992271584abSEd Tanous             3,
993271584abSEd Tanous 
994fbe8378fSJason M. Bills             {
995fbe8378fSJason M. Bills                 "number",
996fbe8378fSJason M. Bills                 "number",
997fbe8378fSJason M. Bills                 "number",
998fbe8378fSJason M. Bills             },
999271584abSEd Tanous             "None.",
1000fbe8378fSJason M. Bills         }},
1001fbe8378fSJason M. Bills     MessageEntry{
1002fbe8378fSJason M. Bills         "PCIeFatalCompletionTimeout",
1003fbe8378fSJason M. Bills         {
1004271584abSEd Tanous             "Indicates a PCIe Completion Timeout Error.",
1005271584abSEd Tanous 
1006fbe8378fSJason M. Bills             "PCIe Fatal Completion Timeout. Bus=%1 Device=%2 Function=%3.",
10074228a160SJason M. Bills             "Critical",
1008271584abSEd Tanous             3,
1009271584abSEd Tanous 
1010fbe8378fSJason M. Bills             {
1011fbe8378fSJason M. Bills                 "number",
1012fbe8378fSJason M. Bills                 "number",
1013fbe8378fSJason M. Bills                 "number",
1014fbe8378fSJason M. Bills             },
1015271584abSEd Tanous             "None.",
1016fbe8378fSJason M. Bills         }},
1017fbe8378fSJason M. Bills     MessageEntry{
1018fbe8378fSJason M. Bills         "PCIeFatalDataLinkLayerProtocol",
1019fbe8378fSJason M. Bills         {
1020271584abSEd Tanous             "Indicates a PCIe Data Link Layer Protocol Error.",
1021271584abSEd Tanous 
1022fbe8378fSJason M. Bills             "PCIe Fatal Data Link Layer Protocol Error. Bus=%1 Device=%2 "
1023fbe8378fSJason M. Bills             "Function=%3.",
10244228a160SJason M. Bills             "Critical",
1025271584abSEd Tanous             3,
1026271584abSEd Tanous 
1027fbe8378fSJason M. Bills             {
1028fbe8378fSJason M. Bills                 "number",
1029fbe8378fSJason M. Bills                 "number",
1030fbe8378fSJason M. Bills                 "number",
1031fbe8378fSJason M. Bills             },
1032271584abSEd Tanous             "None.",
1033fbe8378fSJason M. Bills         }},
1034271584abSEd Tanous     MessageEntry{"PCIeFatalECRCError",
1035fbe8378fSJason M. Bills                  {
1036271584abSEd Tanous                      "Indicates a PCIe ECRC Error.",
1037271584abSEd Tanous                      "PCIe Fatal ECRC Error. Bus=%1 Device=%2 Function=%3.",
10384228a160SJason M. Bills                      "Critical",
1039271584abSEd Tanous                      3,
1040271584abSEd Tanous 
1041fbe8378fSJason M. Bills                      {
1042fbe8378fSJason M. Bills                          "number",
1043fbe8378fSJason M. Bills                          "number",
1044fbe8378fSJason M. Bills                          "number",
1045fbe8378fSJason M. Bills                      },
1046271584abSEd Tanous                      "None.",
1047fbe8378fSJason M. Bills                  }},
1048271584abSEd Tanous     MessageEntry{"PCIeFatalFlowControlProtocol",
1049fbe8378fSJason M. Bills                  {
1050271584abSEd Tanous                      "Indicates a PCIe Flow Control Protocol Error.",
1051271584abSEd Tanous 
1052fbe8378fSJason M. Bills                      "PCIe Fatal Flow Control Protocol Error. Bus=%1 Device=%2 "
1053fbe8378fSJason M. Bills                      "Function=%3.",
10544228a160SJason M. Bills                      "Critical",
1055271584abSEd Tanous                      3,
1056271584abSEd Tanous 
1057fbe8378fSJason M. Bills                      {
1058fbe8378fSJason M. Bills                          "number",
1059fbe8378fSJason M. Bills                          "number",
1060fbe8378fSJason M. Bills                          "number",
1061fbe8378fSJason M. Bills                      },
1062271584abSEd Tanous                      "None.",
1063fbe8378fSJason M. Bills                  }},
1064fbe8378fSJason M. Bills     MessageEntry{
1065fbe8378fSJason M. Bills         "PCIeFatalMalformedTLP",
1066fbe8378fSJason M. Bills         {
1067271584abSEd Tanous             "Indicates a PCIe Malformed TLP Error.",
1068271584abSEd Tanous 
1069fbe8378fSJason M. Bills             "PCIe Fatal Malformed TLP Error. Bus=%1 Device=%2 Function=%3.",
10704228a160SJason M. Bills             "Critical",
1071271584abSEd Tanous             3,
1072271584abSEd Tanous 
1073fbe8378fSJason M. Bills             {
1074fbe8378fSJason M. Bills                 "number",
1075fbe8378fSJason M. Bills                 "number",
1076fbe8378fSJason M. Bills                 "number",
1077fbe8378fSJason M. Bills             },
1078271584abSEd Tanous             "None.",
1079fbe8378fSJason M. Bills         }},
1080fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalMCBlockedTLP",
1081fbe8378fSJason M. Bills                  {
1082271584abSEd Tanous                      "Indicates a PCIe MC Blocked TLP Error.",
1083271584abSEd Tanous                      "PCIe Fatal MC Blocked TLP Error. Bus=%1 "
1084fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
10854228a160SJason M. Bills                      "Critical",
1086271584abSEd Tanous                      3,
1087271584abSEd Tanous 
1088fbe8378fSJason M. Bills                      {
1089fbe8378fSJason M. Bills                          "number",
1090fbe8378fSJason M. Bills                          "number",
1091fbe8378fSJason M. Bills                          "number",
1092fbe8378fSJason M. Bills                      },
1093271584abSEd Tanous                      "None.",
1094fbe8378fSJason M. Bills                  }},
1095fbe8378fSJason M. Bills     MessageEntry{
1096fbe8378fSJason M. Bills         "PCIeFatalPoisonedTLP",
1097fbe8378fSJason M. Bills         {
1098271584abSEd Tanous             "Indicates a PCIe Poisoned TLP Error.",
1099271584abSEd Tanous 
1100fbe8378fSJason M. Bills             "PCIe Fatal Poisoned TLP Error. Bus=%1 Device=%2 Function=%3.",
11014228a160SJason M. Bills             "Critical",
1102271584abSEd Tanous             3,
1103271584abSEd Tanous 
1104fbe8378fSJason M. Bills             {
1105fbe8378fSJason M. Bills                 "number",
1106fbe8378fSJason M. Bills                 "number",
1107fbe8378fSJason M. Bills                 "number",
1108fbe8378fSJason M. Bills             },
1109271584abSEd Tanous             "None.",
1110fbe8378fSJason M. Bills         }},
1111271584abSEd Tanous     MessageEntry{"PCIeFatalReceiverBufferOverflow",
1112fbe8378fSJason M. Bills                  {
1113271584abSEd Tanous                      "Indicates a PCIe Receiver Buffer Overflow Error.",
1114271584abSEd Tanous                      "PCIe Fatal Receiver Buffer Overflow. Bus=%1 Device=%2 "
1115fbe8378fSJason M. Bills                      "Function=%3.",
11164228a160SJason M. Bills                      "Critical",
1117271584abSEd Tanous                      3,
1118271584abSEd Tanous 
1119fbe8378fSJason M. Bills                      {
1120fbe8378fSJason M. Bills                          "number",
1121fbe8378fSJason M. Bills                          "number",
1122fbe8378fSJason M. Bills                          "number",
1123fbe8378fSJason M. Bills                      },
1124271584abSEd Tanous                      "None.",
1125fbe8378fSJason M. Bills                  }},
1126fbe8378fSJason M. Bills     MessageEntry{
112714c8aee2SEd Tanous         "PCIeFatalReceivedErrNonFatalMessage",
1128fbe8378fSJason M. Bills         {
1129fbe8378fSJason M. Bills             "Indicates a PCIe Received ERR_NONFATAL Message Error.",
1130271584abSEd Tanous 
1131fbe8378fSJason M. Bills             "PCIe Fatal Received ERR_NONFATAL Message. Bus=%1 Device=%2 "
1132fbe8378fSJason M. Bills             "Function=%3.",
11334228a160SJason M. Bills             "Critical",
1134271584abSEd Tanous             3,
1135271584abSEd Tanous 
1136fbe8378fSJason M. Bills             {
1137fbe8378fSJason M. Bills                 "number",
1138fbe8378fSJason M. Bills                 "number",
1139fbe8378fSJason M. Bills                 "number",
1140fbe8378fSJason M. Bills             },
1141271584abSEd Tanous             "None.",
1142fbe8378fSJason M. Bills         }},
1143fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalReceivedFatalMessageFromDownstream",
1144fbe8378fSJason M. Bills                  {
1145271584abSEd Tanous                      "Indicates a PCIe Received Fatal Message "
1146fbe8378fSJason M. Bills                      "From Downstream Error.",
1147271584abSEd Tanous 
1148fbe8378fSJason M. Bills                      "PCIe Fatal Received Fatal Message From Downstream. "
1149fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
11504228a160SJason M. Bills                      "Critical",
1151271584abSEd Tanous                      3,
1152271584abSEd Tanous 
1153fbe8378fSJason M. Bills                      {
1154fbe8378fSJason M. Bills                          "number",
1155fbe8378fSJason M. Bills                          "number",
1156fbe8378fSJason M. Bills                          "number",
1157fbe8378fSJason M. Bills                      },
1158271584abSEd Tanous                      "None.",
1159fbe8378fSJason M. Bills                  }},
1160271584abSEd Tanous     MessageEntry{"PCIeFatalSurpriseLinkDown",
1161fbe8378fSJason M. Bills                  {
1162271584abSEd Tanous                      "Indicates a PCIe Surprise Link Down Error.",
1163271584abSEd Tanous                      "PCIe Fatal Surprise Link Down Error. Bus=%1 Device=%2 "
1164fbe8378fSJason M. Bills                      "Function=%3.",
11654228a160SJason M. Bills                      "Critical",
1166271584abSEd Tanous                      3,
1167271584abSEd Tanous 
1168fbe8378fSJason M. Bills                      {
1169fbe8378fSJason M. Bills                          "number",
1170fbe8378fSJason M. Bills                          "number",
1171fbe8378fSJason M. Bills                          "number",
1172fbe8378fSJason M. Bills                      },
1173271584abSEd Tanous                      "None.",
1174fbe8378fSJason M. Bills                  }},
1175271584abSEd Tanous     MessageEntry{"PCIeFatalTLPPrefixBlocked",
1176fbe8378fSJason M. Bills                  {
1177271584abSEd Tanous                      "Indicates a PCIe TLP Prefix Blocked Error.",
1178271584abSEd Tanous                      "PCIe Fatal TLP Prefix Blocked Error. Bus=%1 Device=%2 "
1179fbe8378fSJason M. Bills                      "Function=%3.",
11804228a160SJason M. Bills                      "Critical",
1181271584abSEd Tanous                      3,
1182271584abSEd Tanous 
1183fbe8378fSJason M. Bills                      {
1184fbe8378fSJason M. Bills                          "number",
1185fbe8378fSJason M. Bills                          "number",
1186fbe8378fSJason M. Bills                          "number",
1187fbe8378fSJason M. Bills                      },
1188271584abSEd Tanous                      "None.",
1189fbe8378fSJason M. Bills                  }},
1190fbe8378fSJason M. Bills     MessageEntry{
1191fbe8378fSJason M. Bills         "PCIeFatalUncorrectableInternal",
1192fbe8378fSJason M. Bills         {
1193271584abSEd Tanous             "Indicates a PCIe Uncorrectable Internal Error.",
1194271584abSEd Tanous 
1195fbe8378fSJason M. Bills             "PCIe Fatal Uncorrectable Internal Error. Bus=%1 Device=%2 "
1196fbe8378fSJason M. Bills             "Function=%3.",
11974228a160SJason M. Bills             "Critical",
1198271584abSEd Tanous             3,
1199271584abSEd Tanous 
1200fbe8378fSJason M. Bills             {
1201fbe8378fSJason M. Bills                 "number",
1202fbe8378fSJason M. Bills                 "number",
1203fbe8378fSJason M. Bills                 "number",
1204fbe8378fSJason M. Bills             },
1205271584abSEd Tanous             "None.",
1206fbe8378fSJason M. Bills         }},
1207271584abSEd Tanous     MessageEntry{"PCIeFatalUnexpectedCompletion",
1208fbe8378fSJason M. Bills                  {
1209271584abSEd Tanous                      "Indicates a PCIe Unexpected Completion Error.",
1210271584abSEd Tanous                      "PCIe Fatal Unexpected Completion. Bus=%1 Device=%2 "
1211fbe8378fSJason M. Bills                      "Function=%3.",
12124228a160SJason M. Bills                      "Critical",
1213271584abSEd Tanous                      3,
1214271584abSEd Tanous 
1215fbe8378fSJason M. Bills                      {
1216fbe8378fSJason M. Bills                          "number",
1217fbe8378fSJason M. Bills                          "number",
1218fbe8378fSJason M. Bills                          "number",
1219fbe8378fSJason M. Bills                      },
1220271584abSEd Tanous                      "None.",
1221fbe8378fSJason M. Bills                  }},
1222271584abSEd Tanous     MessageEntry{"PCIeFatalUnspecifiedNonAERFatalError",
1223fbe8378fSJason M. Bills                  {
1224271584abSEd Tanous                      "Indicates a PCIe Unspecified Non-AER Fatal Error.",
1225271584abSEd Tanous                      "PCIe Fatal Unspecified Non-AER Fatal Error. Bus=%1 "
1226fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
12274228a160SJason M. Bills                      "Critical",
1228271584abSEd Tanous                      3,
1229271584abSEd Tanous 
1230fbe8378fSJason M. Bills                      {
1231fbe8378fSJason M. Bills                          "number",
1232fbe8378fSJason M. Bills                          "number",
1233fbe8378fSJason M. Bills                          "number",
1234fbe8378fSJason M. Bills                      },
1235271584abSEd Tanous                      "None.",
1236fbe8378fSJason M. Bills                  }},
1237fbe8378fSJason M. Bills     MessageEntry{
1238fbe8378fSJason M. Bills         "PCIeFatalUnsupportedRequest",
1239fbe8378fSJason M. Bills         {
1240271584abSEd Tanous             "Indicates a PCIe Unsupported Request Error.",
1241271584abSEd Tanous 
1242fbe8378fSJason M. Bills             "PCIe Fatal Unsupported Request. Bus=%1 Device=%2 Function=%3.",
12434228a160SJason M. Bills             "Critical",
1244271584abSEd Tanous             3,
1245271584abSEd Tanous 
1246fbe8378fSJason M. Bills             {
1247fbe8378fSJason M. Bills                 "number",
1248fbe8378fSJason M. Bills                 "number",
1249fbe8378fSJason M. Bills                 "number",
1250fbe8378fSJason M. Bills             },
1251271584abSEd Tanous             "None.",
1252fbe8378fSJason M. Bills         }},
1253271584abSEd Tanous     MessageEntry{"PowerButtonPressed",
1254fbe8378fSJason M. Bills                  {
1255271584abSEd Tanous                      "Indicates that the power button was pressed.",
1256271584abSEd Tanous                      "Power Button Pressed.",
1257271584abSEd Tanous                      "OK",
1258271584abSEd Tanous                      0,
1259271584abSEd Tanous                      {},
1260271584abSEd Tanous                      "None.",
1261fbe8378fSJason M. Bills                  }},
1262dd118a2eSJason M. Bills     MessageEntry{"PowerRestorePolicyApplied",
1263dd118a2eSJason M. Bills                  {
1264271584abSEd Tanous                      "Indicates that power was restored and the "
1265dd118a2eSJason M. Bills                      "BMC has applied the restore policy.",
1266271584abSEd Tanous                      "Power restore policy applied.",
1267271584abSEd Tanous                      "OK",
1268271584abSEd Tanous                      0,
1269271584abSEd Tanous                      {},
1270271584abSEd Tanous                      "None.",
1271dd118a2eSJason M. Bills                  }},
1272271584abSEd Tanous     MessageEntry{"PowerSupplyConfigurationError",
1273fbe8378fSJason M. Bills                  {
1274271584abSEd Tanous                      "Indicates an error in power supply configuration.",
1275271584abSEd Tanous                      "Power supply %1 configuration error.",
12769c6b0159SYong Li                      "Warning",
1277271584abSEd Tanous                      1,
1278271584abSEd Tanous                      {"string"},
1279271584abSEd Tanous                      "None.",
1280fbe8378fSJason M. Bills                  }},
1281fbe8378fSJason M. Bills     MessageEntry{
12827f68549fSjayaprakash Mutyala         "PowerSupplyConfigurationErrorRecovered",
12837f68549fSjayaprakash Mutyala         {
12847f68549fSjayaprakash Mutyala             "Indicates that power supply configuration error recovered "
12857f68549fSjayaprakash Mutyala             "from a failure.",
12867f68549fSjayaprakash Mutyala             "Power supply %1 configuration error recovered.",
12877f68549fSjayaprakash Mutyala             "OK",
12887f68549fSjayaprakash Mutyala             1,
12897f68549fSjayaprakash Mutyala             {"string"},
12907f68549fSjayaprakash Mutyala             "None.",
12917f68549fSjayaprakash Mutyala         }},
12927f68549fSjayaprakash Mutyala     MessageEntry{
1293fbe8378fSJason M. Bills         "PowerSupplyFanFailed",
1294fbe8378fSJason M. Bills         {
1295fbe8378fSJason M. Bills             "Indicates that the specified power supply fan has failed.",
1296271584abSEd Tanous             "Power supply %1 fan %2 failed.",
12979c6b0159SYong Li             "Warning",
1298271584abSEd Tanous             2,
1299271584abSEd Tanous             {"string", "string"},
1300271584abSEd Tanous             "None.",
1301fbe8378fSJason M. Bills         }},
1302dac62eefSCheng C Yang     MessageEntry{
1303dac62eefSCheng C Yang         "PowerSupplyFanRecovered",
1304dac62eefSCheng C Yang         {
1305dac62eefSCheng C Yang             "Indicates that the power supply fan recovered from a failure.",
1306271584abSEd Tanous             "Power supply %1 fan %2 recovered.",
1307271584abSEd Tanous             "OK",
1308271584abSEd Tanous             2,
1309271584abSEd Tanous             {"string", "string"},
1310271584abSEd Tanous             "None.",
1311dac62eefSCheng C Yang         }},
1312fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailed",
1313fbe8378fSJason M. Bills                  {
1314271584abSEd Tanous                      "Indicates that a power supply has failed.",
1315271584abSEd Tanous                      "Power supply %1 failed.",
13169c6b0159SYong Li                      "Warning",
1317271584abSEd Tanous                      1,
1318271584abSEd Tanous                      {"string"},
1319271584abSEd Tanous                      "None.",
1320fbe8378fSJason M. Bills                  }},
1321fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailurePredicted",
1322fbe8378fSJason M. Bills                  {
1323fbe8378fSJason M. Bills                      "Indicates that a power supply is predicted to fail.",
1324271584abSEd Tanous                      "Power supply %1 failure predicted.",
1325271584abSEd Tanous                      "Warning",
1326271584abSEd Tanous                      1,
1327271584abSEd Tanous                      {"string"},
1328271584abSEd Tanous                      "None.",
1329fbe8378fSJason M. Bills                  }},
1330271584abSEd Tanous     MessageEntry{"PowerSupplyInserted",
1331fbe8378fSJason M. Bills                  {
1332271584abSEd Tanous                      "Indicates that a power supply has been inserted.",
1333271584abSEd Tanous                      "Power supply %1 inserted.",
1334271584abSEd Tanous                      "OK",
1335271584abSEd Tanous                      1,
1336271584abSEd Tanous                      {"string"},
1337271584abSEd Tanous                      "None.",
1338fbe8378fSJason M. Bills                  }},
1339271584abSEd Tanous     MessageEntry{"PowerSupplyPowerGoodFailed",
1340bc48a175SJason M. Bills                  {
1341271584abSEd Tanous                      "Indicates that the power supply power good signal "
1342bc48a175SJason M. Bills                      "failed to assert within the specified time.",
1343271584abSEd Tanous                      "Power supply power good failed to assert within %1 "
1344bc48a175SJason M. Bills                      "milliseconds.",
1345271584abSEd Tanous                      "Critical",
1346271584abSEd Tanous                      1,
1347271584abSEd Tanous                      {"number"},
1348271584abSEd Tanous                      "None.",
1349bc48a175SJason M. Bills                  }},
1350dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPowerLost",
1351dac62eefSCheng C Yang                  {
1352dac62eefSCheng C Yang                      "Indicates that a power supply has lost input power.",
1353271584abSEd Tanous                      "Power supply %1 power lost.",
13549c6b0159SYong Li                      "Warning",
1355271584abSEd Tanous                      1,
1356271584abSEd Tanous                      {"string"},
1357271584abSEd Tanous                      "None.",
1358dac62eefSCheng C Yang                  }},
1359271584abSEd Tanous     MessageEntry{"PowerSupplyPowerRestored",
1360dac62eefSCheng C Yang                  {
1361dac62eefSCheng C Yang                      "Indicates that a power supply input power was restored.",
1362271584abSEd Tanous                      "Power supply %1 power restored.",
1363271584abSEd Tanous                      "OK",
1364271584abSEd Tanous                      1,
1365271584abSEd Tanous                      {"string"},
1366271584abSEd Tanous                      "None.",
1367dac62eefSCheng C Yang                  }},
1368dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPredictedFailureRecovered",
1369dac62eefSCheng C Yang                  {
1370271584abSEd Tanous                      "Indicates that a power supply recovered "
1371dac62eefSCheng C Yang                      "from a predicted failure.",
1372271584abSEd Tanous                      "Power supply %1 predicted failure recovered.",
1373271584abSEd Tanous                      "OK",
1374271584abSEd Tanous                      1,
1375271584abSEd Tanous                      {"string"},
1376271584abSEd Tanous                      "None.",
1377dac62eefSCheng C Yang                  }},
1378271584abSEd Tanous     MessageEntry{"PowerSupplyRecovered",
1379dac62eefSCheng C Yang                  {
1380dac62eefSCheng C Yang                      "Indicates that a power supply recovered from a failure.",
1381271584abSEd Tanous                      "Power supply %1 recovered.",
1382271584abSEd Tanous                      "OK",
1383271584abSEd Tanous                      1,
1384271584abSEd Tanous                      {"string"},
1385271584abSEd Tanous                      "None.",
1386dac62eefSCheng C Yang                  }},
1387271584abSEd Tanous     MessageEntry{"PowerSupplyRemoved",
1388fbe8378fSJason M. Bills                  {
1389271584abSEd Tanous                      "Indicates that a power supply has been removed.",
1390271584abSEd Tanous                      "Power supply %1 removed.",
1391271584abSEd Tanous                      "Warning",
1392271584abSEd Tanous                      1,
1393271584abSEd Tanous                      {"string"},
1394271584abSEd Tanous                      "None.",
1395fbe8378fSJason M. Bills                  }},
1396271584abSEd Tanous     MessageEntry{"PowerUnitDegradedFromNonRedundant",
1397cecb4cb6SCheng C Yang                  {
1398cecb4cb6SCheng C Yang                      "Indicates that power unit is come back to redundant from"
1399cecb4cb6SCheng C Yang                      "nonredundant but is still not in full redundancy mode.",
1400271584abSEd Tanous                      "Power Unit degraded from nonredundant.",
1401271584abSEd Tanous                      "Warning",
1402271584abSEd Tanous                      0,
1403271584abSEd Tanous                      {},
1404271584abSEd Tanous                      "None.",
1405cecb4cb6SCheng C Yang                  }},
1406cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitDegradedFromRedundant",
1407cecb4cb6SCheng C Yang                  {
1408cecb4cb6SCheng C Yang                      "Indicates that power unit is degarded from full "
1409cecb4cb6SCheng C Yang                      "redundancy mode.",
1410271584abSEd Tanous                      "Power Unit degraded from redundant.",
1411271584abSEd Tanous                      "Warning",
1412271584abSEd Tanous                      0,
1413271584abSEd Tanous                      {},
1414271584abSEd Tanous                      "None.",
1415cecb4cb6SCheng C Yang                  }},
1416271584abSEd Tanous     MessageEntry{"PowerUnitRedundancyDegraded",
1417cecb4cb6SCheng C Yang                  {
1418cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been degraded.",
1419271584abSEd Tanous                      "Power Unit Redundancy degraded.",
1420271584abSEd Tanous                      "Warning",
1421271584abSEd Tanous                      0,
1422271584abSEd Tanous                      {},
1423271584abSEd Tanous                      "None.",
1424cecb4cb6SCheng C Yang                  }},
1425cecb4cb6SCheng C Yang     MessageEntry{
1426cecb4cb6SCheng C Yang         "PowerUnitNonRedundantFromInsufficient",
1427cecb4cb6SCheng C Yang         {
1428cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode and get"
1429cecb4cb6SCheng C Yang             "sufficient power to support redundancy from insufficient"
1430cecb4cb6SCheng C Yang             "power.",
1431271584abSEd Tanous 
1432cecb4cb6SCheng C Yang             "Power Unit NonRedundant from insufficient to sufficient.",
1433271584abSEd Tanous             "Warning",
1434271584abSEd Tanous             0,
1435271584abSEd Tanous             {},
1436271584abSEd Tanous             "None.",
1437cecb4cb6SCheng C Yang         }},
1438271584abSEd Tanous     MessageEntry{"PowerUnitNonRedundantInsufficient",
1439cecb4cb6SCheng C Yang                  {
1440271584abSEd Tanous                      "Indicates that power unit do not have sufficient "
1441cecb4cb6SCheng C Yang                      "power to support redundancy.",
1442271584abSEd Tanous                      "Power Unit NonRedundant and has insufficient resource.",
14434228a160SJason M. Bills                      "Critical",
1444271584abSEd Tanous                      0,
1445271584abSEd Tanous                      {},
1446271584abSEd Tanous                      "None.",
1447cecb4cb6SCheng C Yang                  }},
1448cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitRedundancyLost",
1449cecb4cb6SCheng C Yang                  {
1450cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been lost.",
1451271584abSEd Tanous                      "Power Unit Redundancy lost.",
1452271584abSEd Tanous                      "Warning",
1453271584abSEd Tanous                      0,
1454271584abSEd Tanous                      {},
1455271584abSEd Tanous                      "None.",
1456cecb4cb6SCheng C Yang                  }},
1457cecb4cb6SCheng C Yang     MessageEntry{
1458cecb4cb6SCheng C Yang         "PowerUnitRedundancyRegained",
1459cecb4cb6SCheng C Yang         {
1460cecb4cb6SCheng C Yang             "Indicates that power unit full redundancy has been regained.",
1461271584abSEd Tanous             "Power Unit Redundancy regained.",
1462271584abSEd Tanous             "OK",
1463271584abSEd Tanous             0,
1464271584abSEd Tanous             {},
1465271584abSEd Tanous             "None.",
1466cecb4cb6SCheng C Yang         }},
1467cecb4cb6SCheng C Yang     MessageEntry{
1468cecb4cb6SCheng C Yang         "PowerUnitNonRedundantSufficient",
1469cecb4cb6SCheng C Yang         {
1470cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode but still"
1471cecb4cb6SCheng C Yang             "has sufficient power to support redundancy.",
1472271584abSEd Tanous             "Power Unit Nonredundant but has sufficient resource.",
1473271584abSEd Tanous             "Warning",
1474271584abSEd Tanous             0,
1475271584abSEd Tanous             {},
1476271584abSEd Tanous             "None.",
1477cecb4cb6SCheng C Yang         }},
1478271584abSEd Tanous     MessageEntry{"ResetButtonPressed",
1479fbe8378fSJason M. Bills                  {
1480271584abSEd Tanous                      "Indicates that the reset button was pressed.",
1481271584abSEd Tanous                      "Reset Button Pressed.",
1482271584abSEd Tanous                      "OK",
1483271584abSEd Tanous                      0,
1484271584abSEd Tanous                      {},
1485271584abSEd Tanous                      "None.",
1486fbe8378fSJason M. Bills                  }},
14878ae37025SChen,Yugang     MessageEntry{"SecurityBoot2ndFlashEnabled",
14888ae37025SChen,Yugang                  {
14898ae37025SChen,Yugang                      "Indicates that the BMC 2nd boot flash is enabled.",
14908ae37025SChen,Yugang                      "BMC 2nd boot flash is enabled.",
14918ae37025SChen,Yugang                      "Critical",
14928ae37025SChen,Yugang                      0,
14938ae37025SChen,Yugang                      {},
14948ae37025SChen,Yugang                      "None.",
14958ae37025SChen,Yugang                  }},
14968ae37025SChen,Yugang     MessageEntry{"SecurityP2aBridgeEnabled",
14978ae37025SChen,Yugang                  {
14988ae37025SChen,Yugang                      "Indicates that the P2A bridge is enabled.",
14998ae37025SChen,Yugang                      "P2A(PCIe to AHB) bridge is enabled.",
15008ae37025SChen,Yugang                      "Critical",
15018ae37025SChen,Yugang                      0,
15028ae37025SChen,Yugang                      {},
15038ae37025SChen,Yugang                      "None.",
15048ae37025SChen,Yugang                  }},
15058ae37025SChen,Yugang     MessageEntry{"SecurityUartPortDebugEnabled",
15068ae37025SChen,Yugang                  {
15078ae37025SChen,Yugang                      "Indicates that the uart port debug is enabled.",
15088ae37025SChen,Yugang                      "Uart port debug is enabled.",
15098ae37025SChen,Yugang                      "Critical",
15108ae37025SChen,Yugang                      0,
15118ae37025SChen,Yugang                      {},
15128ae37025SChen,Yugang                      "None.",
15138ae37025SChen,Yugang                  }},
15148988dda4SSuryakanth Sekar     MessageEntry{
15158988dda4SSuryakanth Sekar         "SecurityUserStrongHashAlgoRestored",
15168988dda4SSuryakanth Sekar         {
15178988dda4SSuryakanth Sekar             "Indicates that password computing hash algorithm changed.",
15188988dda4SSuryakanth Sekar             "Password computing hash algorithm is changed to sha256/sha512.",
15198988dda4SSuryakanth Sekar             "OK",
15208988dda4SSuryakanth Sekar             0,
15218988dda4SSuryakanth Sekar             {},
15228988dda4SSuryakanth Sekar             "None.",
15238988dda4SSuryakanth Sekar         }},
15248988dda4SSuryakanth Sekar 
15258988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroAssigned",
15268988dda4SSuryakanth Sekar                  {
15278988dda4SSuryakanth Sekar                      "Indicates that non root user assigned with user ID zero.",
15288988dda4SSuryakanth Sekar                      "User ID Zero is assigned with non-root user.",
15298988dda4SSuryakanth Sekar                      "Critical",
15308988dda4SSuryakanth Sekar                      0,
15318988dda4SSuryakanth Sekar                      {},
15328988dda4SSuryakanth Sekar                      "None.",
15338988dda4SSuryakanth Sekar                  }},
15348988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroRemoved",
15358988dda4SSuryakanth Sekar                  {
15368988dda4SSuryakanth Sekar                      "Indicates that non root user ID is removed",
15378988dda4SSuryakanth Sekar                      "Non root user assigned with user ID zero is removed.",
15388988dda4SSuryakanth Sekar                      "OK",
15398988dda4SSuryakanth Sekar                      0,
15408988dda4SSuryakanth Sekar                      {},
15418988dda4SSuryakanth Sekar                      "None.",
15428988dda4SSuryakanth Sekar                  }},
15438988dda4SSuryakanth Sekar 
15448988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootEnabled",
15458988dda4SSuryakanth Sekar                  {
15468988dda4SSuryakanth Sekar                      "Indicates that system root user is enabled.",
15478988dda4SSuryakanth Sekar                      "User root is enabled.",
15488988dda4SSuryakanth Sekar                      "Critical",
15498988dda4SSuryakanth Sekar                      0,
15508988dda4SSuryakanth Sekar                      {},
15518988dda4SSuryakanth Sekar                      "None.",
15528988dda4SSuryakanth Sekar                  }},
15538988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootDisabled",
15548988dda4SSuryakanth Sekar                  {
15558988dda4SSuryakanth Sekar                      "Indicates that system root user is disabled.",
15568988dda4SSuryakanth Sekar                      "User root is disabled.",
15578988dda4SSuryakanth Sekar                      "OK",
15588988dda4SSuryakanth Sekar                      0,
15598988dda4SSuryakanth Sekar                      {},
15608988dda4SSuryakanth Sekar                      "None.",
15618988dda4SSuryakanth Sekar                  }},
15628988dda4SSuryakanth Sekar 
15638988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellEnabled",
15648988dda4SSuryakanth Sekar                  {
15658988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is enabled.",
15668988dda4SSuryakanth Sekar                      "Unsupported shell is enabled.",
15678988dda4SSuryakanth Sekar                      "Critical",
15688988dda4SSuryakanth Sekar                      0,
15698988dda4SSuryakanth Sekar                      {},
15708988dda4SSuryakanth Sekar                      "None.",
15718988dda4SSuryakanth Sekar                  }},
15728988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellRemoved",
15738988dda4SSuryakanth Sekar                  {
15748988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is removed.",
15758988dda4SSuryakanth Sekar                      "Unsupported shell is removed.",
15768988dda4SSuryakanth Sekar                      "OK",
15778988dda4SSuryakanth Sekar                      0,
15788988dda4SSuryakanth Sekar                      {},
15798988dda4SSuryakanth Sekar                      "None.",
15808988dda4SSuryakanth Sekar                  }},
15818988dda4SSuryakanth Sekar 
15828988dda4SSuryakanth Sekar     MessageEntry{
15838988dda4SSuryakanth Sekar         "SecurityUserWeakHashAlgoEnabled",
15848988dda4SSuryakanth Sekar         {
15858988dda4SSuryakanth Sekar             "Indicates that weak password computing hash algorithm is enabled.",
15868988dda4SSuryakanth Sekar             "Weak password computing hash algorithm is enabled.",
15878988dda4SSuryakanth Sekar             "Critical",
15888988dda4SSuryakanth Sekar             0,
15898988dda4SSuryakanth Sekar             {},
15908988dda4SSuryakanth Sekar             "None.",
15918988dda4SSuryakanth Sekar         }},
15928988dda4SSuryakanth Sekar 
1593fbe8378fSJason M. Bills     MessageEntry{"SELEntryAdded",
1594fbe8378fSJason M. Bills                  {
1595271584abSEd Tanous                      "Indicates a SEL entry was added using the "
1596fbe8378fSJason M. Bills                      "Add SEL Entry or Platform Event command.",
1597271584abSEd Tanous                      "SEL Entry Added: %1",
1598271584abSEd Tanous                      "OK",
1599271584abSEd Tanous                      1,
1600271584abSEd Tanous 
1601fbe8378fSJason M. Bills                      {
1602fbe8378fSJason M. Bills                          "string",
1603fbe8378fSJason M. Bills                      },
1604271584abSEd Tanous                      "None.",
1605fbe8378fSJason M. Bills                  }},
1606271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingHigh",
1607fbe8378fSJason M. Bills                  {
1608271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1609fbe8378fSJason M. Bills                      "critical high threshold going high.",
1610271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going "
1611fbe8378fSJason M. Bills                      "high. Reading=%2 Threshold=%3.",
1612271584abSEd Tanous                      "Critical",
1613271584abSEd Tanous                      3,
1614271584abSEd Tanous                      {"string", "number", "number"},
1615271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1616fbe8378fSJason M. Bills                  }},
1617271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingLow",
1618fbe8378fSJason M. Bills                  {
1619271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1620fbe8378fSJason M. Bills                      "critical high threshold going low.",
1621271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going low. "
1622fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1623271584abSEd Tanous                      "OK",
1624271584abSEd Tanous                      3,
1625271584abSEd Tanous                      {"string", "number", "number"},
1626271584abSEd Tanous                      "None.",
1627fbe8378fSJason M. Bills                  }},
1628271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingHigh",
1629fbe8378fSJason M. Bills                  {
1630271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1631fbe8378fSJason M. Bills                      "critical low threshold going high.",
1632271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going high. "
1633fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1634271584abSEd Tanous                      "OK",
1635271584abSEd Tanous                      3,
1636271584abSEd Tanous                      {"string", "number", "number"},
1637271584abSEd Tanous                      "None.",
1638fbe8378fSJason M. Bills                  }},
1639271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingLow",
1640fbe8378fSJason M. Bills                  {
1641271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1642fbe8378fSJason M. Bills                      "critical low threshold going low.",
1643271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going low. "
1644fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1645271584abSEd Tanous                      "Critical",
1646271584abSEd Tanous                      3,
1647271584abSEd Tanous                      {"string", "number", "number"},
1648271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1649fbe8378fSJason M. Bills                  }},
1650271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingHigh",
1651fbe8378fSJason M. Bills                  {
1652271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1653fbe8378fSJason M. Bills                      "warning high threshold going high.",
1654271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going high. "
1655fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1656271584abSEd Tanous                      "Warning",
1657271584abSEd Tanous                      3,
1658271584abSEd Tanous                      {"string", "number", "number"},
1659271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1660fbe8378fSJason M. Bills                  }},
1661271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingLow",
1662fbe8378fSJason M. Bills                  {
1663271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1664fbe8378fSJason M. Bills                      "warning high threshold going low.",
1665271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going low. "
1666fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1667271584abSEd Tanous                      "OK",
1668271584abSEd Tanous                      3,
1669271584abSEd Tanous                      {"string", "number", "number"},
1670271584abSEd Tanous                      "None.",
1671fbe8378fSJason M. Bills                  }},
1672271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingHigh",
1673fbe8378fSJason M. Bills                  {
1674271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1675fbe8378fSJason M. Bills                      "warning low threshold going high.",
1676271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going high. "
1677fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1678271584abSEd Tanous                      "OK",
1679271584abSEd Tanous                      3,
1680271584abSEd Tanous                      {"string", "number", "number"},
1681271584abSEd Tanous                      "None.",
1682fbe8378fSJason M. Bills                  }},
1683271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingLow",
1684fbe8378fSJason M. Bills                  {
1685271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1686fbe8378fSJason M. Bills                      "warning low threshold going low.",
1687271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going low. "
1688fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1689271584abSEd Tanous                      "Warning",
1690271584abSEd Tanous                      3,
1691271584abSEd Tanous                      {"string", "number", "number"},
1692271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1693fbe8378fSJason M. Bills                  }},
1694fb7579e9SJames Feist     MessageEntry{"ServiceFailure",
1695fb7579e9SJames Feist                  {
1696fb7579e9SJames Feist                      "Indicates that a service has exited unsuccessfully.",
1697271584abSEd Tanous                      "Service %1 has exited unsuccessfully.",
1698271584abSEd Tanous                      "Warning",
1699271584abSEd Tanous                      1,
1700271584abSEd Tanous                      {"string"},
1701271584abSEd Tanous                      "None.",
1702fb7579e9SJames Feist                  }},
1703fbe8378fSJason M. Bills     MessageEntry{"SparingRedundancyDegraded",
1704fbe8378fSJason M. Bills                  {
1705fbe8378fSJason M. Bills                      "Indicates the sparing redundancy state is degraded.",
1706271584abSEd Tanous                      "Sparing redundancy state degraded. Socket=%1 "
1707fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
1708271584abSEd Tanous                      "Warning",
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                  }},
1720fbe8378fSJason M. Bills     MessageEntry{
1721fbe8378fSJason M. Bills         "SparingRedundancyFull",
1722fbe8378fSJason M. Bills         {
1723fbe8378fSJason M. Bills             "Indicates the sparing redundancy state is fully redundant.",
1724271584abSEd Tanous             "Sparing redundancy state fully redundant. Socket=%1 "
1725fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
1726271584abSEd Tanous             "OK",
1727271584abSEd Tanous             5,
1728271584abSEd Tanous 
1729fbe8378fSJason M. Bills             {
1730fbe8378fSJason M. Bills                 "number",
1731fbe8378fSJason M. Bills                 "string",
1732fbe8378fSJason M. Bills                 "number",
1733fbe8378fSJason M. Bills                 "string",
1734fbe8378fSJason M. Bills                 "number",
1735fbe8378fSJason M. Bills             },
1736271584abSEd Tanous             "None.",
1737fbe8378fSJason M. Bills         }},
1738271584abSEd Tanous     MessageEntry{"SsbThermalTrip",
1739b76f9ca1SChen,Yugang                  {
1740b76f9ca1SChen,Yugang                      "Indicates that an SSB Thermal trip has been asserted.",
1741271584abSEd Tanous                      "SSB Thermal trip.",
1742271584abSEd Tanous                      "Critical",
1743271584abSEd Tanous                      0,
1744271584abSEd Tanous                      {},
1745271584abSEd Tanous                      "None.",
1746b76f9ca1SChen,Yugang                  }},
174752efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceDisabledProvisioned",
174852efa5d6SRichard Marian Thomaiyar                  {
174952efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the disabled "
175052efa5d6SRichard Marian Thomaiyar                      "provisioned state. All commands are blocked to execute "
175152efa5d6SRichard Marian Thomaiyar                      "through the system interface.",
175252efa5d6SRichard Marian Thomaiyar                      "The system interface is in the disabled provisioned "
175352efa5d6SRichard Marian Thomaiyar                      "state.",
175452efa5d6SRichard Marian Thomaiyar                      "OK",
175552efa5d6SRichard Marian Thomaiyar                      0,
175652efa5d6SRichard Marian Thomaiyar                      {},
175752efa5d6SRichard Marian Thomaiyar                      "None.",
175852efa5d6SRichard Marian Thomaiyar                  }},
175952efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceUnprovisioned",
176052efa5d6SRichard Marian Thomaiyar                  {
176152efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the "
176252efa5d6SRichard Marian Thomaiyar                      "unprovisioned state. All commands are permitted to "
176352efa5d6SRichard Marian Thomaiyar                      "execute through the system interface.",
176452efa5d6SRichard Marian Thomaiyar                      "The system interface is in the unprovisioned state.",
176552efa5d6SRichard Marian Thomaiyar                      "Critical",
176652efa5d6SRichard Marian Thomaiyar                      0,
176752efa5d6SRichard Marian Thomaiyar                      {},
176852efa5d6SRichard Marian Thomaiyar                      "None.",
176952efa5d6SRichard Marian Thomaiyar                  }},
177052efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceWhitelistProvisioned",
177152efa5d6SRichard Marian Thomaiyar                  {
177252efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the whitelist "
177352efa5d6SRichard Marian Thomaiyar                      "provisioned state. Only whitelisted commands "
177452efa5d6SRichard Marian Thomaiyar                      "are permitted to execute through the system interface.",
177552efa5d6SRichard Marian Thomaiyar                      "The system interface is in the whitelist provisioned "
177652efa5d6SRichard Marian Thomaiyar                      "state.",
177752efa5d6SRichard Marian Thomaiyar                      "Warning",
177852efa5d6SRichard Marian Thomaiyar                      0,
177952efa5d6SRichard Marian Thomaiyar                      {},
178052efa5d6SRichard Marian Thomaiyar                      "None.",
178152efa5d6SRichard Marian Thomaiyar                  }},
1782bc48a175SJason M. Bills     MessageEntry{"SystemPowerGoodFailed",
1783bc48a175SJason M. Bills                  {
1784bc48a175SJason M. Bills                      "Indicates that the system power good signal failed "
1785bc48a175SJason M. Bills                      "to assert within the specified time (VR failure).",
1786271584abSEd Tanous                      "System power good failed to assert within %1 "
1787bc48a175SJason M. Bills                      "milliseconds (VR failure).",
1788271584abSEd Tanous                      "Critical",
1789271584abSEd Tanous                      1,
1790271584abSEd Tanous                      {"number"},
1791271584abSEd Tanous                      "None.",
1792bc48a175SJason M. Bills                  }},
1793fbe8378fSJason M. Bills     MessageEntry{"SystemPowerLost",
1794fbe8378fSJason M. Bills                  {
1795271584abSEd Tanous                      "Indicates that power was lost while the "
1796fbe8378fSJason M. Bills                      "system was powered on.",
1797271584abSEd Tanous                      "System Power Lost.",
1798271584abSEd Tanous                      "Critical",
1799271584abSEd Tanous                      0,
1800271584abSEd Tanous                      {},
1801271584abSEd Tanous                      "None.",
1802fbe8378fSJason M. Bills                  }},
1803271584abSEd Tanous     MessageEntry{"SystemPowerOffFailed",
1804fbe8378fSJason M. Bills                  {
1805271584abSEd Tanous                      "Indicates that the system failed to power off.",
1806271584abSEd Tanous                      "System Power-Off Failed.",
1807271584abSEd Tanous                      "Critical",
1808271584abSEd Tanous                      0,
1809271584abSEd Tanous                      {},
1810271584abSEd Tanous                      "None.",
1811fbe8378fSJason M. Bills                  }},
1812271584abSEd Tanous     MessageEntry{"SystemPowerOnFailed",
1813fbe8378fSJason M. Bills                  {
1814271584abSEd Tanous                      "Indicates that the system failed to power on.",
1815271584abSEd Tanous                      "System Power-On Failed.",
1816271584abSEd Tanous                      "Critical",
1817271584abSEd Tanous                      0,
1818271584abSEd Tanous                      {},
1819271584abSEd Tanous                      "None.",
1820fbe8378fSJason M. Bills                  }},
182173de092fSJason M. Bills     MessageEntry{
182273de092fSJason M. Bills         "VoltageRegulatorOverheated",
182373de092fSJason M. Bills         {
182473de092fSJason M. Bills             "Indicates that the specified voltage regulator overheated.",
1825271584abSEd Tanous             "%1 Voltage Regulator Overheated.",
1826271584abSEd Tanous             "Critical",
1827271584abSEd Tanous             1,
1828271584abSEd Tanous             {"string"},
1829271584abSEd Tanous             "None.",
183073de092fSJason M. Bills         }},
1831fbe8378fSJason M. Bills };
1832fbe8378fSJason M. Bills } // namespace redfish::message_registries::openbmc
1833