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 };
324cde5d90SJames Feist constexpr std::array<MessageEntry, 182> 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                  }},
175a3316fc6SZhikuiRen     MessageEntry{"BIOSPOSTCode",
176a3316fc6SZhikuiRen                  {
177a3316fc6SZhikuiRen                      "BIOS Power-On Self-Test Code received",
178a3316fc6SZhikuiRen                      "Boot Count: %1: TS Offset: %2; POST Code: %3",
179a3316fc6SZhikuiRen                      "OK",
180a3316fc6SZhikuiRen                      3,
181a3316fc6SZhikuiRen                      {"number", "number", "number"},
182a3316fc6SZhikuiRen                      "None.",
183a3316fc6SZhikuiRen                  }},
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                  }},
3155db4be21Sjayaprakash Mutyala     MessageEntry{"CPUMismatch",
3165db4be21Sjayaprakash Mutyala                  {
3175db4be21Sjayaprakash Mutyala                      "Indicates that the specified CPU power/current "
3185db4be21Sjayaprakash Mutyala                      "rating is incompatible with the board.",
3195db4be21Sjayaprakash Mutyala                      "CPU %1 Mismatch.",
3205db4be21Sjayaprakash Mutyala                      "Critical",
3215db4be21Sjayaprakash Mutyala                      1,
3225db4be21Sjayaprakash Mutyala                      {"number"},
3235db4be21Sjayaprakash Mutyala                      "Install the supported CPU.",
3245db4be21Sjayaprakash Mutyala                  }},
32573de092fSJason M. Bills     MessageEntry{"CPUThermalTrip",
32673de092fSJason M. Bills                  {
327271584abSEd Tanous                      "Indicates that the specified CPU thermal "
32873de092fSJason M. Bills                      "trip has been asserted.",
329271584abSEd Tanous                      "CPU %1 Thermal Trip.",
330271584abSEd Tanous                      "Critical",
331271584abSEd Tanous                      1,
332271584abSEd Tanous                      {"number"},
333271584abSEd Tanous                      "None.",
33473de092fSJason M. Bills                  }},
335271584abSEd Tanous     MessageEntry{"DCPowerOff",
336fbe8378fSJason M. Bills                  {
337271584abSEd Tanous                      "Indicates that the system DC power is off.",
338271584abSEd Tanous                      "Host system DC power is off",
339271584abSEd Tanous                      "OK",
340271584abSEd Tanous                      0,
341271584abSEd Tanous                      {},
342271584abSEd Tanous                      "None.",
343fbe8378fSJason M. Bills                  }},
344fbe8378fSJason M. Bills     MessageEntry{"DCPowerOn",
345fbe8378fSJason M. Bills                  {
346271584abSEd Tanous                      "Indicates that the system DC power is on.",
347271584abSEd Tanous                      "Host system DC power is on",
348271584abSEd Tanous                      "OK",
349271584abSEd Tanous                      0,
350271584abSEd Tanous                      {},
351271584abSEd Tanous                      "None.",
352fbe8378fSJason M. Bills                  }},
353c75f1e9aSJames Feist     MessageEntry{"DriveError",
354c75f1e9aSJames Feist                  {
355c75f1e9aSJames Feist                      "Indicates that a Drive Error occurred of "
356c75f1e9aSJames Feist                      "the specified type or cause.",
357c75f1e9aSJames Feist                      "Drive Error Occurred: %1.",
358c75f1e9aSJames Feist                      "Warning",
359c75f1e9aSJames Feist                      1,
360c75f1e9aSJames Feist                      {"string"},
361c75f1e9aSJames Feist                      "None.",
362c75f1e9aSJames Feist                  }},
363271584abSEd Tanous     MessageEntry{"EventLogCleared",
364fbe8378fSJason M. Bills                  {
365271584abSEd Tanous                      "Indicates that the event log has been cleared.",
366271584abSEd Tanous                      "Event Log Cleared.",
367271584abSEd Tanous                      "OK",
368271584abSEd Tanous                      0,
369271584abSEd Tanous                      {},
370271584abSEd Tanous                      "None.",
371fbe8378fSJason M. Bills                  }},
372271584abSEd Tanous     MessageEntry{"FanInserted",
373fbe8378fSJason M. Bills                  {
374271584abSEd Tanous                      "Indicates that a system fan has been inserted.",
375271584abSEd Tanous                      "%1 inserted.",
376271584abSEd Tanous                      "OK",
377271584abSEd Tanous                      1,
378271584abSEd Tanous                      {"string"},
379271584abSEd Tanous                      "None.",
380fbe8378fSJason M. Bills                  }},
381fbe8378fSJason M. Bills     MessageEntry{"FanRedundancyLost",
382fbe8378fSJason M. Bills                  {
383fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been lost.",
384271584abSEd Tanous                      "Fan redundancy lost.",
385271584abSEd Tanous                      "Warning",
386271584abSEd Tanous                      0,
387271584abSEd Tanous                      {},
388271584abSEd Tanous                      "None.",
389fbe8378fSJason M. Bills                  }},
390271584abSEd Tanous     MessageEntry{"FanRedundancyRegained",
391fbe8378fSJason M. Bills                  {
392fbe8378fSJason M. Bills                      "Indicates that system fan redundancy has been regained.",
393271584abSEd Tanous                      "Fan redundancy regained.",
394271584abSEd Tanous                      "OK",
395271584abSEd Tanous                      0,
396271584abSEd Tanous                      {},
397271584abSEd Tanous                      "None.",
398fbe8378fSJason M. Bills                  }},
399271584abSEd Tanous     MessageEntry{"FanRemoved",
400fbe8378fSJason M. Bills                  {
401271584abSEd Tanous                      "Indicates that a system fan has been removed.",
402271584abSEd Tanous                      "%1 removed.",
403271584abSEd Tanous                      "OK",
404271584abSEd Tanous                      1,
405271584abSEd Tanous                      {"string"},
406271584abSEd Tanous                      "None.",
407fbe8378fSJason M. Bills                  }},
408271584abSEd Tanous     MessageEntry{"FirmwareUpdateCompleted",
409fbe8378fSJason M. Bills                  {
410fbe8378fSJason M. Bills                      "Indicates a firmware update has completed successfully.",
411271584abSEd Tanous                      "%1 firmware update to version %2 completed "
412fbe8378fSJason M. Bills                      "successfully.",
413271584abSEd Tanous                      "OK",
414271584abSEd Tanous                      2,
415271584abSEd Tanous                      {"string", "string"},
416271584abSEd Tanous                      "None.",
417fbe8378fSJason M. Bills                  }},
418fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateFailed",
419fbe8378fSJason M. Bills                  {
420271584abSEd Tanous                      "Indicates a firmware update has failed.",
421*a2ec6384SChalapathi Venkataramashetty                      "%1 firmware update to version %2 failed: %3.",
422271584abSEd Tanous                      "Warning",
423*a2ec6384SChalapathi Venkataramashetty                      3,
424*a2ec6384SChalapathi Venkataramashetty                      {"string", "string", "string"},
425271584abSEd Tanous                      "None.",
426fbe8378fSJason M. Bills                  }},
427fbe8378fSJason M. Bills     MessageEntry{"FirmwareUpdateStarted",
428fbe8378fSJason M. Bills                  {
429271584abSEd Tanous                      "Indicates a firmware update has started.",
430271584abSEd Tanous                      "%1 firmware update to version %2 started.",
431271584abSEd Tanous                      "OK",
432271584abSEd Tanous                      2,
433271584abSEd Tanous                      {"string", "string"},
434271584abSEd Tanous                      "None.",
435fbe8378fSJason M. Bills                  }},
436fbe8378fSJason M. Bills     MessageEntry{
437fbe8378fSJason M. Bills         "GeneralFirmwareSecurityViolation",
438fbe8378fSJason M. Bills         {
439fbe8378fSJason M. Bills             "Indicates a general firmware security violation has occurred.",
440271584abSEd Tanous             "Firmware security violation: %1.",
441271584abSEd Tanous             "Critical",
442271584abSEd Tanous             1,
443271584abSEd Tanous             {"string"},
444271584abSEd Tanous             "None.",
445fbe8378fSJason M. Bills         }},
446271584abSEd Tanous     MessageEntry{"InvalidLoginAttempted",
447fbe8378fSJason M. Bills                  {
448fbe8378fSJason M. Bills                      "Indicates that a login was attempted on the specified "
449fbe8378fSJason M. Bills                      "interface with an invalid username or password.",
450271584abSEd Tanous                      "Invalid username or password attempted on %1.",
451271584abSEd Tanous                      "Warning",
452271584abSEd Tanous                      1,
453271584abSEd Tanous                      {"string"},
454271584abSEd Tanous                      "None.",
455fbe8378fSJason M. Bills                  }},
4564cde5d90SJames Feist     MessageEntry{"InvalidUpload",
4574cde5d90SJames Feist                  {
4584cde5d90SJames Feist                      "Indicates that the uploaded file was invalid.",
4594cde5d90SJames Feist                      "Invalid file uploaded to %1: %2.",
4604cde5d90SJames Feist                      "Warning",
4614cde5d90SJames Feist                      2,
4624cde5d90SJames Feist                      {"string", "string"},
4634cde5d90SJames Feist                      "None.",
4644cde5d90SJames Feist                  }},
465fbe8378fSJason M. Bills     MessageEntry{
466d62cec73SJames Feist         "InventoryAdded",
467d62cec73SJames Feist         {
468d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
469d62cec73SJames Feist             "type, and serial number was installed.",
470271584abSEd Tanous             "%1 %2 with serial number %3 was installed.",
471271584abSEd Tanous             "OK",
472271584abSEd Tanous             3,
473271584abSEd Tanous 
474d62cec73SJames Feist             {
475d62cec73SJames Feist                 "string",
476d62cec73SJames Feist                 "string",
477d62cec73SJames Feist                 "string",
478d62cec73SJames Feist             },
479271584abSEd Tanous             "None.",
480d62cec73SJames Feist         }},
481d62cec73SJames Feist     MessageEntry{
482d62cec73SJames Feist         "InventoryRemoved",
483d62cec73SJames Feist         {
484d62cec73SJames Feist             "Indicates that an inventory item with the specified model, "
485d62cec73SJames Feist             "type, and serial number was removed.",
486271584abSEd Tanous             "%1 %2 with serial number %3 was removed.",
487271584abSEd Tanous             "OK",
488271584abSEd Tanous             3,
489271584abSEd Tanous 
490d62cec73SJames Feist             {
491d62cec73SJames Feist                 "string",
492d62cec73SJames Feist                 "string",
493d62cec73SJames Feist                 "string",
494d62cec73SJames Feist             },
495271584abSEd Tanous             "None.",
496d62cec73SJames Feist         }},
497d62cec73SJames Feist     MessageEntry{
498fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToHalf",
499fbe8378fSJason M. Bills         {
500fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to half width.",
501271584abSEd Tanous             "Intel UPI link width reduced to half. Node=%1.",
502271584abSEd Tanous             "Warning",
503271584abSEd Tanous             1,
504271584abSEd Tanous 
505fbe8378fSJason M. Bills             {
506fbe8378fSJason M. Bills                 "number",
507fbe8378fSJason M. Bills             },
508271584abSEd Tanous             "None.",
509fbe8378fSJason M. Bills         }},
510fbe8378fSJason M. Bills     MessageEntry{
511fbe8378fSJason M. Bills         "IntelUPILinkWidthReducedToQuarter",
512fbe8378fSJason M. Bills         {
513fbe8378fSJason M. Bills             "Indicates Intel UPI link width has reduced to quarter width.",
514271584abSEd Tanous             "Intel UPI link width reduced to quarter. Node=%1.",
515271584abSEd Tanous             "Warning",
516271584abSEd Tanous             1,
517271584abSEd Tanous 
518fbe8378fSJason M. Bills             {
519fbe8378fSJason M. Bills                 "number",
520fbe8378fSJason M. Bills             },
521271584abSEd Tanous             "None.",
522fbe8378fSJason M. Bills         }},
52393a2b2fcSYong Li 
524271584abSEd Tanous     MessageEntry{"IPMIWatchdog",
52593a2b2fcSYong Li                  {
526271584abSEd Tanous                      "Indicates that there is a host watchdog event.",
527271584abSEd Tanous                      "Host Watchdog Event: %1",
528271584abSEd Tanous                      "OK",
529271584abSEd Tanous                      1,
530271584abSEd Tanous 
53193a2b2fcSYong Li                      {
53293a2b2fcSYong Li                          "string",
53393a2b2fcSYong Li                      },
534271584abSEd Tanous                      "None.",
53593a2b2fcSYong Li                  }},
536789771ddSQiang XU     MessageEntry{"LanLost",
537789771ddSQiang XU                  {
538789771ddSQiang XU                      "Indicates that a physical security event "
539789771ddSQiang XU                      "of the LAN leash has lost.",
540789771ddSQiang XU                      "%1 LAN leash lost.",
541789771ddSQiang XU                      "Warning",
542789771ddSQiang XU                      1,
543789771ddSQiang XU                      {
544789771ddSQiang XU                          "string",
545789771ddSQiang XU                      },
546789771ddSQiang XU                      "None.",
547789771ddSQiang XU                  }},
548789771ddSQiang XU     MessageEntry{"LanRegained",
549789771ddSQiang XU                  {
550789771ddSQiang XU                      "Indicates that LAN link status has reconnected.",
551789771ddSQiang XU                      "%1 LAN leash regained.",
552789771ddSQiang XU                      "OK",
553789771ddSQiang XU                      1,
554789771ddSQiang XU                      {
555789771ddSQiang XU                          "string",
556789771ddSQiang XU                      },
557789771ddSQiang XU                      "None.",
558789771ddSQiang XU                  }},
559271584abSEd Tanous     MessageEntry{"LegacyPCIPERR",
560fbe8378fSJason M. Bills                  {
561271584abSEd Tanous                      "Indicates a Legacy PCI PERR.",
562271584abSEd Tanous                      "Legacy PCI PERR. Bus=%1 Device=%2 Function=%3.",
563271584abSEd Tanous                      "Warning",
564271584abSEd Tanous                      3,
565271584abSEd Tanous 
566fbe8378fSJason M. Bills                      {
567fbe8378fSJason M. Bills                          "number",
568fbe8378fSJason M. Bills                          "number",
569fbe8378fSJason M. Bills                          "number",
570fbe8378fSJason M. Bills                      },
571271584abSEd Tanous                      "None.",
572fbe8378fSJason M. Bills                  }},
573271584abSEd Tanous     MessageEntry{"LegacyPCISERR",
574fbe8378fSJason M. Bills                  {
575271584abSEd Tanous                      "Indicates a Legacy PCI SERR.",
576271584abSEd Tanous                      "Legacy PCI SERR. Bus=%1 Device=%2 Function=%3.",
577271584abSEd Tanous                      "Critical",
578271584abSEd Tanous                      3,
579271584abSEd Tanous 
580fbe8378fSJason M. Bills                      {
581fbe8378fSJason M. Bills                          "number",
582fbe8378fSJason M. Bills                          "number",
583fbe8378fSJason M. Bills                          "number",
584fbe8378fSJason M. Bills                      },
585271584abSEd Tanous                      "None.",
586fbe8378fSJason M. Bills                  }},
587fbe8378fSJason M. Bills     MessageEntry{"ManufacturingModeEntered",
588fbe8378fSJason M. Bills                  {
58953d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC entered Factory, "
59053d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
591271584abSEd Tanous                      "Entered Manufacturing Mode.",
59253d9a666SRichard Marian Thomaiyar                      "Critical",
59353d9a666SRichard Marian Thomaiyar                      0,
59453d9a666SRichard Marian Thomaiyar                      {},
59553d9a666SRichard Marian Thomaiyar                      "None.",
59653d9a666SRichard Marian Thomaiyar                  }},
59753d9a666SRichard Marian Thomaiyar     MessageEntry{"ManufacturingModeExited",
59853d9a666SRichard Marian Thomaiyar                  {
59953d9a666SRichard Marian Thomaiyar                      "Indicates that the BMC exited Factory, "
60053d9a666SRichard Marian Thomaiyar                      "or Manufacturing mode.",
60153d9a666SRichard Marian Thomaiyar                      "Exited Manufacturing Mode.",
60253d9a666SRichard Marian Thomaiyar                      "OK",
603271584abSEd Tanous                      0,
604271584abSEd Tanous                      {},
605271584abSEd Tanous                      "None.",
606fbe8378fSJason M. Bills                  }},
6079aa46454SAgnieszka Szlendak     MessageEntry{"MEAutoConfigFailed",
6089aa46454SAgnieszka Szlendak                  {
6099aa46454SAgnieszka Szlendak                      "Indicates that Intel ME power sensor "
6109aa46454SAgnieszka Szlendak                      "auto-configuration has failed.",
6119aa46454SAgnieszka Szlendak                      "Intel ME power sensor auto-configuration failed. Power "
6129aa46454SAgnieszka Szlendak                      "monitoring, limiting and HW protection features might "
6139aa46454SAgnieszka Szlendak                      "be unavailable. Failure reason: %1",
6149aa46454SAgnieszka Szlendak                      "Critical",
6159aa46454SAgnieszka Szlendak                      1,
6169aa46454SAgnieszka Szlendak                      {"string"},
6179aa46454SAgnieszka Szlendak                      "Ensure that Intel ME configuration for power "
6189aa46454SAgnieszka Szlendak                      "sources is correct.",
6199aa46454SAgnieszka Szlendak                  }},
6209aa46454SAgnieszka Szlendak     MessageEntry{
6219aa46454SAgnieszka Szlendak         "MEAutoConfigSuccess",
6229aa46454SAgnieszka Szlendak         {
6239aa46454SAgnieszka Szlendak             "Indicates that Intel ME has performed successful "
6249aa46454SAgnieszka Szlendak             "power sensor auto-configuration.",
6259aa46454SAgnieszka Szlendak             "Intel ME power sensor auto-configuration succeeded. "
6269aa46454SAgnieszka Szlendak             "Determined sources for domain readings are: DC Power: %1 ; "
6279aa46454SAgnieszka Szlendak             "Chassis Power: %2 ; PSU Efficiency: %3 ; Unamanaged power: %4",
6289aa46454SAgnieszka Szlendak             "OK",
6299aa46454SAgnieszka Szlendak             4,
6309aa46454SAgnieszka Szlendak             {"string", "string", "string", "string"},
6319aa46454SAgnieszka Szlendak             "None.",
6329aa46454SAgnieszka Szlendak         }},
6339aa46454SAgnieszka Szlendak     MessageEntry{"MEBootGuardHealthEvent",
6349aa46454SAgnieszka Szlendak                  {
6359aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has detected error during "
6369aa46454SAgnieszka Szlendak                      "operations of Intel Boot Guard",
6379aa46454SAgnieszka Szlendak                      "Intel ME has detected following issue with Intel Boot "
6389aa46454SAgnieszka Szlendak                      "Guard: %1",
6399aa46454SAgnieszka Szlendak                      "Critical",
6409aa46454SAgnieszka Szlendak                      1,
6419aa46454SAgnieszka Szlendak                      {"string"},
6429aa46454SAgnieszka Szlendak                      "None.",
6439aa46454SAgnieszka Szlendak                  }},
6449aa46454SAgnieszka Szlendak     MessageEntry{"MECpuDebugCapabilityDisabled",
6459aa46454SAgnieszka Szlendak                  {
6469aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has detected situation in "
6479aa46454SAgnieszka Szlendak                      "which CPU Debug Capability is disabled.",
6489aa46454SAgnieszka Szlendak                      "CPU Debug Capability disabled",
6499aa46454SAgnieszka Szlendak                      "Warning",
6509aa46454SAgnieszka Szlendak                      0,
6519aa46454SAgnieszka Szlendak                      {},
6529aa46454SAgnieszka Szlendak                      "None.",
6539aa46454SAgnieszka Szlendak                  }},
6549aa46454SAgnieszka Szlendak     MessageEntry{"MEDirectFlashUpdateRequested",
6559aa46454SAgnieszka Szlendak                  {
6569aa46454SAgnieszka Szlendak                      "Indicates that BIOS has requested Direct Flash "
6579aa46454SAgnieszka Szlendak                      "Update (DFU) of Intel ME",
6589aa46454SAgnieszka Szlendak                      "Intel ME Firmware switched to recovery mode to perform "
6599aa46454SAgnieszka Szlendak                      "full update from BIOS.",
6609aa46454SAgnieszka Szlendak                      "OK",
6619aa46454SAgnieszka Szlendak                      0,
6629aa46454SAgnieszka Szlendak                      {},
6639aa46454SAgnieszka Szlendak                      "This is transient state. Intel ME Firmware should "
6649aa46454SAgnieszka Szlendak                      "return to operational mode after successful image "
6659aa46454SAgnieszka Szlendak                      "update performed by the BIOS.",
6669aa46454SAgnieszka Szlendak                  }},
6679aa46454SAgnieszka Szlendak     MessageEntry{
6689aa46454SAgnieszka Szlendak         "MEExceptionDuringShutdown",
6699aa46454SAgnieszka Szlendak         {
6709aa46454SAgnieszka Szlendak             "Indicates that Intel ME could not successfully "
6719aa46454SAgnieszka Szlendak             "perform emergency host shutdown.",
6729aa46454SAgnieszka Szlendak             "Power Down command triggered by Intel Node Manager policy "
6739aa46454SAgnieszka Szlendak             "failure action and Intel ME forced shutdown. BMC probably did "
6749aa46454SAgnieszka Szlendak             "not respond correctly to Chassis Control.",
6759aa46454SAgnieszka Szlendak             "Warning",
6769aa46454SAgnieszka Szlendak             0,
6779aa46454SAgnieszka Szlendak             {},
6789aa46454SAgnieszka Szlendak             "Verify the Intel Node Manager policy configuration.",
6799aa46454SAgnieszka Szlendak         }},
6809aa46454SAgnieszka Szlendak     MessageEntry{
6819aa46454SAgnieszka Szlendak         "MEFactoryResetError",
6829aa46454SAgnieszka Szlendak         {
6839aa46454SAgnieszka Szlendak             "Indicates that Intel ME has ben restored to factory preset.",
6849aa46454SAgnieszka Szlendak             "Intel ME has performed automatic reset to factory "
6859aa46454SAgnieszka Szlendak             "presets due to following reason: %1",
6869aa46454SAgnieszka Szlendak             "Critical",
6879aa46454SAgnieszka Szlendak             1,
6889aa46454SAgnieszka Szlendak             {"string"},
6899aa46454SAgnieszka Szlendak             "If error is persistent the Flash device must be replaced.",
6909aa46454SAgnieszka Szlendak         }},
6919aa46454SAgnieszka Szlendak     MessageEntry{
6929aa46454SAgnieszka Szlendak         "MEFactoryRestore",
6939aa46454SAgnieszka Szlendak         {
6949aa46454SAgnieszka Szlendak             "Indicates that Intel ME has ben restored to factory preset.",
6959aa46454SAgnieszka Szlendak             "Intel ME has performed automatic reset to factory "
6969aa46454SAgnieszka Szlendak             "presets due to following reason: %1",
6979aa46454SAgnieszka Szlendak             "OK",
6989aa46454SAgnieszka Szlendak             1,
6999aa46454SAgnieszka Szlendak             {"string"},
7009aa46454SAgnieszka Szlendak             "If error is persistent the Flash device must be replaced.",
7019aa46454SAgnieszka Szlendak         }},
7029aa46454SAgnieszka Szlendak     MessageEntry{
7039aa46454SAgnieszka Szlendak         "MEFirmwareException",
7049aa46454SAgnieszka Szlendak         {
7059aa46454SAgnieszka Szlendak             "Indicates that Intel ME has encountered firmware "
7069aa46454SAgnieszka Szlendak             "exception during execution.",
7079aa46454SAgnieszka Szlendak             "Intel ME has encountered firmware exception. Error code = %1",
7089aa46454SAgnieszka Szlendak             "Warning",
7099aa46454SAgnieszka Szlendak             1,
7109aa46454SAgnieszka Szlendak             {"string"},
7119aa46454SAgnieszka Szlendak             "Restore factory presets using Force ME Recovery IPMI "
7129aa46454SAgnieszka Szlendak             "command or by doing AC power cycle with Recovery jumper "
7139aa46454SAgnieszka Szlendak             "asserted. If this does not clear the issue, reflash the SPI "
7149aa46454SAgnieszka Szlendak             "flash. If the issue persists, provide the content of error "
7159aa46454SAgnieszka Szlendak             "code to Intel support team for interpretation. (Error codes "
7169aa46454SAgnieszka Szlendak             "are not documented because they only provide clues that must "
7179aa46454SAgnieszka Szlendak             "be interpreted individually..",
7189aa46454SAgnieszka Szlendak         }},
7190c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwarePanicReason",
7200c0f18e7SAppaRao Puli                  {
7210c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware panic.",
7220c0f18e7SAppaRao Puli                      "ME firmware panic occurred due to %1.",
7230c0f18e7SAppaRao Puli                      "Warning",
7240c0f18e7SAppaRao Puli                      1,
7250c0f18e7SAppaRao Puli                      {
7260c0f18e7SAppaRao Puli                          "string",
7270c0f18e7SAppaRao Puli                      },
7280c0f18e7SAppaRao Puli                      "None.",
7290c0f18e7SAppaRao Puli                  }},
7300c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareRecoveryReason",
7310c0f18e7SAppaRao Puli                  {
7320c0f18e7SAppaRao Puli                      "Indicates the reason for ME firmware recovery.",
7330c0f18e7SAppaRao Puli                      "ME firmware recovery occurred due to %1.",
7340c0f18e7SAppaRao Puli                      "Warning",
7350c0f18e7SAppaRao Puli                      1,
7360c0f18e7SAppaRao Puli                      {
7370c0f18e7SAppaRao Puli                          "string",
7380c0f18e7SAppaRao Puli                      },
7390c0f18e7SAppaRao Puli                      "None.",
7400c0f18e7SAppaRao Puli                  }},
7410c0f18e7SAppaRao Puli     MessageEntry{"MEFirmwareResiliencyError",
7420c0f18e7SAppaRao Puli                  {
7430c0f18e7SAppaRao Puli                      "Indicates ME firmware encountered resilience error.",
7440c0f18e7SAppaRao Puli                      "ME firmware resiliency error. Error reason: %1.",
7450c0f18e7SAppaRao Puli                      "Critical",
7460c0f18e7SAppaRao Puli                      1,
7470c0f18e7SAppaRao Puli                      {
7480c0f18e7SAppaRao Puli                          "string",
7490c0f18e7SAppaRao Puli                      },
7500c0f18e7SAppaRao Puli                      "None.",
7510c0f18e7SAppaRao Puli                  }},
7529aa46454SAgnieszka Szlendak 
7539aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashEraseError",
7549aa46454SAgnieszka Szlendak                  {
7559aa46454SAgnieszka Szlendak                      "Indicates that Intel ME was unable to finish flash "
7569aa46454SAgnieszka Szlendak                      "erase procedure.",
7579aa46454SAgnieszka Szlendak                      "Intel ME has encountered an error during Flash erasure "
7589aa46454SAgnieszka Szlendak                      "procedure probably due to Flash part corruption.",
7599aa46454SAgnieszka Szlendak                      "Critical",
7609aa46454SAgnieszka Szlendak                      0,
7619aa46454SAgnieszka Szlendak                      {},
7629aa46454SAgnieszka Szlendak                      "The Flash device must be replaced.",
7639aa46454SAgnieszka Szlendak                  }},
7649aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashStateInformation",
7659aa46454SAgnieszka Szlendak                  {
7669aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered a problem "
7679aa46454SAgnieszka Szlendak                      "during IO to flash device.",
7689aa46454SAgnieszka Szlendak                      "Intel ME has encountered problem during IO to flash "
7699aa46454SAgnieszka Szlendak                      "device. Reason: %1",
7709aa46454SAgnieszka Szlendak                      "Critical",
7719aa46454SAgnieszka Szlendak                      1,
7729aa46454SAgnieszka Szlendak                      {"string"},
7739aa46454SAgnieszka Szlendak                      "If flash wear-out protection occurred wait until it "
7749aa46454SAgnieszka Szlendak                      "expires. Otherwise - flash device must be replaced.",
7759aa46454SAgnieszka Szlendak                  }},
7769aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashStateInformationWritingEnabled",
7779aa46454SAgnieszka Szlendak                  {
7789aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered a problem "
7799aa46454SAgnieszka Szlendak                      "during IO to flash device.",
7809aa46454SAgnieszka Szlendak                      "Intel ME has encountered problem during IO to flash "
7819aa46454SAgnieszka Szlendak                      "device. Reason: %1",
7829aa46454SAgnieszka Szlendak                      "OK",
7839aa46454SAgnieszka Szlendak                      1,
7849aa46454SAgnieszka Szlendak                      {"string"},
7859aa46454SAgnieszka Szlendak                      "If flash wear-out protection occurred wait until it "
7869aa46454SAgnieszka Szlendak                      "expires. Otherwise - flash device must be replaced.",
7879aa46454SAgnieszka Szlendak                  }},
7889aa46454SAgnieszka Szlendak     MessageEntry{"MEFlashVerificationError",
7899aa46454SAgnieszka Szlendak                  {
7909aa46454SAgnieszka Szlendak                      "Indicates that Intel ME encountered invalid flash "
7919aa46454SAgnieszka Szlendak                      "descriptor region.",
7929aa46454SAgnieszka Szlendak                      "Intel ME has detected invalid flash descriptor region. "
7939aa46454SAgnieszka Szlendak                      "Following error is detected: %1",
7949aa46454SAgnieszka Szlendak                      "Critical",
7959aa46454SAgnieszka Szlendak                      1,
7969aa46454SAgnieszka Szlendak                      {"string"},
7979aa46454SAgnieszka Szlendak                      "Flash Descriptor Region must be created correctly.",
7989aa46454SAgnieszka Szlendak                  }},
7999aa46454SAgnieszka Szlendak     MessageEntry{
8009aa46454SAgnieszka Szlendak         "MEFlashWearOutWarning",
8019aa46454SAgnieszka Szlendak         {
8029aa46454SAgnieszka Szlendak             "Indicates that Intel ME has reached certain "
8039aa46454SAgnieszka Szlendak             "threshold of flash write operations.",
8049aa46454SAgnieszka Szlendak             "Warning threshold for number of flash operations has been "
8059aa46454SAgnieszka Szlendak             "exceeded. Current percentage of write operations capacity: %1",
8069aa46454SAgnieszka Szlendak             "Warning",
8079aa46454SAgnieszka Szlendak             1,
8089aa46454SAgnieszka Szlendak             {"number"},
8099aa46454SAgnieszka Szlendak             "No immediate repair action needed.",
8109aa46454SAgnieszka Szlendak         }},
8119aa46454SAgnieszka Szlendak 
8129aa46454SAgnieszka Szlendak     MessageEntry{
8139aa46454SAgnieszka Szlendak         "MEImageExecutionFailed",
8149aa46454SAgnieszka Szlendak         {
8159aa46454SAgnieszka Szlendak             "Indicates that Intel ME could not load primary FW image.",
8169aa46454SAgnieszka Szlendak             "Intel ME Recovery Image or backup operational image "
8179aa46454SAgnieszka Szlendak             "loaded because operational image is corrupted. This "
8189aa46454SAgnieszka Szlendak             "may be either caused by Flash device corruption or "
8199aa46454SAgnieszka Szlendak             "failed upgrade procedure.",
8209aa46454SAgnieszka Szlendak             "Critical",
8219aa46454SAgnieszka Szlendak             0,
8229aa46454SAgnieszka Szlendak             {},
8239aa46454SAgnieszka Szlendak             "Either the Flash device must be replaced (if error is "
8249aa46454SAgnieszka Szlendak             "persistent) or the upgrade procedure must be started again.",
8259aa46454SAgnieszka Szlendak         }},
8269aa46454SAgnieszka Szlendak 
8279aa46454SAgnieszka Szlendak     MessageEntry{
8289aa46454SAgnieszka Szlendak         "MEInternalError",
8299aa46454SAgnieszka Szlendak         {
8309aa46454SAgnieszka Szlendak             "Indicates that Intel ME encountered "
8319aa46454SAgnieszka Szlendak             "internal error leading to watchdog reset.",
8329aa46454SAgnieszka Szlendak             "Error during Intel ME execution. Watchdog "
8339aa46454SAgnieszka Szlendak             "timeout has expired.",
8349aa46454SAgnieszka Szlendak             "Critical",
8359aa46454SAgnieszka Szlendak             0,
8369aa46454SAgnieszka Szlendak             {},
8379aa46454SAgnieszka Szlendak             "Firmware should automatically recover from error state. "
8389aa46454SAgnieszka Szlendak             "If error is persistent then operational image shall be updated "
8399aa46454SAgnieszka Szlendak             "or hardware board repair is needed.",
8409aa46454SAgnieszka Szlendak         }},
8419aa46454SAgnieszka Szlendak     MessageEntry{"MEManufacturingError",
8429aa46454SAgnieszka Szlendak                  {
8439aa46454SAgnieszka Szlendak                      "Indicates that Intel ME is unable to start in "
8449aa46454SAgnieszka Szlendak                      "operational mode due to wrong configuration.",
8459aa46454SAgnieszka Szlendak                      "Wrong manufacturing configuration detected by Intel ME "
8469aa46454SAgnieszka Szlendak                      "Firmware. Unable to start operational mode. Reason: %1",
8479aa46454SAgnieszka Szlendak                      "Critical",
8489aa46454SAgnieszka Szlendak                      1,
8499aa46454SAgnieszka Szlendak                      {"string"},
8509aa46454SAgnieszka Szlendak                      " If error is persistent the Flash device must be "
8519aa46454SAgnieszka Szlendak                      "replaced or FW configuration must be updated. Trace "
8529aa46454SAgnieszka Szlendak                      "logs might be gathered for detailed information.",
8539aa46454SAgnieszka Szlendak                  }},
8549aa46454SAgnieszka Szlendak     MessageEntry{"MEMctpInterfaceError",
8559aa46454SAgnieszka Szlendak                  {
8569aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered an error "
8579aa46454SAgnieszka Szlendak                      "in MCTP protocol.",
8589aa46454SAgnieszka Szlendak                      "Intel ME has detected MCTP interface failure and it is "
8599aa46454SAgnieszka Szlendak                      "not functional any more. It may indicate the situation "
8609aa46454SAgnieszka Szlendak                      "when MCTP was not configured by BIOS or a defect which "
8619aa46454SAgnieszka Szlendak                      "may need a Host reset to recover from. Details: %1",
8629aa46454SAgnieszka Szlendak                      "Critical",
8639aa46454SAgnieszka Szlendak                      1,
8649aa46454SAgnieszka Szlendak                      {"string"},
8659aa46454SAgnieszka Szlendak                      "Recovery via CPU Host reset or platform reset. If error "
8669aa46454SAgnieszka Szlendak                      "is persistent, deep-dive platform-level debugging is "
8679aa46454SAgnieszka Szlendak                      "required.",
8689aa46454SAgnieszka Szlendak                  }},
869fbe8378fSJason M. Bills     MessageEntry{"MemoryECCCorrectable",
870fbe8378fSJason M. Bills                  {
871271584abSEd Tanous                      "Indicates a Correctable Memory ECC error.",
872271584abSEd Tanous                      "Memory ECC correctable error. Socket=%1 "
873fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Rank=%4.",
874271584abSEd Tanous                      "Warning",
875271584abSEd Tanous                      4,
876271584abSEd Tanous 
877fbe8378fSJason M. Bills                      {
878fbe8378fSJason M. Bills                          "number",
879fbe8378fSJason M. Bills                          "string",
880fbe8378fSJason M. Bills                          "number",
881fbe8378fSJason M. Bills                          "number",
882fbe8378fSJason M. Bills                      },
883271584abSEd Tanous                      "None.",
884fbe8378fSJason M. Bills                  }},
885271584abSEd Tanous     MessageEntry{"MemoryECCUncorrectable",
886fbe8378fSJason M. Bills                  {
887271584abSEd Tanous                      "Indicates an Uncorrectable Memory ECC error.",
888271584abSEd Tanous                      "Memory ECC uncorrectable error. Socket=%1 Channel=%2 "
889fbe8378fSJason M. Bills                      "DIMM=%3 Rank=%4.",
890271584abSEd Tanous                      "Critical",
891271584abSEd Tanous                      4,
892271584abSEd Tanous 
893fbe8378fSJason M. Bills                      {
894fbe8378fSJason M. Bills                          "number",
895fbe8378fSJason M. Bills                          "string",
896fbe8378fSJason M. Bills                          "number",
897fbe8378fSJason M. Bills                          "number",
898fbe8378fSJason M. Bills                      },
899271584abSEd Tanous                      "None.",
900fbe8378fSJason M. Bills                  }},
901271584abSEd Tanous     MessageEntry{"MemoryParityCommandAndAddress",
902fbe8378fSJason M. Bills                  {
903271584abSEd Tanous                      "Indicates a Command and Address parity error.",
904271584abSEd Tanous                      "Command and Address parity error. Socket=%1 Channel=%2 "
905fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
906271584abSEd Tanous                      "Critical",
907271584abSEd Tanous                      5,
908271584abSEd Tanous 
909fbe8378fSJason M. Bills                      {
910fbe8378fSJason M. Bills                          "number",
911fbe8378fSJason M. Bills                          "string",
912fbe8378fSJason M. Bills                          "number",
913fbe8378fSJason M. Bills                          "number",
914fbe8378fSJason M. Bills                          "number",
915fbe8378fSJason M. Bills                      },
916271584abSEd Tanous                      "None.",
917fbe8378fSJason M. Bills                  }},
918fbe8378fSJason M. Bills     MessageEntry{"MemoryParityNotKnown",
919fbe8378fSJason M. Bills                  {
920271584abSEd Tanous                      "Indicates an unknown parity error.",
921271584abSEd Tanous                      "Memory parity error. Socket=%1 Channel=%2 "
922fbe8378fSJason M. Bills                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
923271584abSEd Tanous                      "Critical",
924271584abSEd Tanous                      5,
925271584abSEd Tanous 
926fbe8378fSJason M. Bills                      {
927fbe8378fSJason M. Bills                          "number",
928fbe8378fSJason M. Bills                          "string",
929fbe8378fSJason M. Bills                          "number",
930fbe8378fSJason M. Bills                          "number",
931fbe8378fSJason M. Bills                          "number",
932fbe8378fSJason M. Bills                      },
933271584abSEd Tanous                      "None.",
934fbe8378fSJason M. Bills                  }},
935271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationDisabled",
936fbe8378fSJason M. Bills                  {
937fbe8378fSJason M. Bills                      "Indicates Memory RAS Disabled Configuration Status.",
938271584abSEd Tanous                      "Memory RAS Configuration Disabled. Error=%1 Mode=%2.",
939271584abSEd Tanous                      "OK",
940271584abSEd Tanous                      2,
941271584abSEd Tanous 
942fbe8378fSJason M. Bills                      {
943fbe8378fSJason M. Bills                          "string",
944fbe8378fSJason M. Bills                          "string",
945fbe8378fSJason M. Bills                      },
946271584abSEd Tanous                      "None.",
947fbe8378fSJason M. Bills                  }},
948271584abSEd Tanous     MessageEntry{"MemoryRASConfigurationEnabled",
949fbe8378fSJason M. Bills                  {
950271584abSEd Tanous                      "Indicates Memory RAS Enabled Configuration Status.",
951271584abSEd Tanous                      "Memory RAS Configuration Enabled. Error=%1 Mode=%2.",
952271584abSEd Tanous                      "OK",
953271584abSEd Tanous                      2,
954271584abSEd Tanous 
955fbe8378fSJason M. Bills                      {
956fbe8378fSJason M. Bills                          "string",
957fbe8378fSJason M. Bills                          "string",
958fbe8378fSJason M. Bills                      },
959271584abSEd Tanous                      "None.",
960fbe8378fSJason M. Bills                  }},
961271584abSEd Tanous     MessageEntry{"MemoryRASModeDisabled",
962fbe8378fSJason M. Bills                  {
963271584abSEd Tanous                      "Indicates Memory RAS Disabled Mode Selection.",
964271584abSEd Tanous                      "Memory RAS Mode Select Disabled. Prior Mode=%1 "
965fbe8378fSJason M. Bills                      "Selected Mode=%2.",
966271584abSEd Tanous                      "OK",
967271584abSEd Tanous                      2,
968271584abSEd Tanous 
969fbe8378fSJason M. Bills                      {
970fbe8378fSJason M. Bills                          "string",
971fbe8378fSJason M. Bills                          "string",
972fbe8378fSJason M. Bills                      },
973271584abSEd Tanous                      "None.",
974fbe8378fSJason M. Bills                  }},
975271584abSEd Tanous     MessageEntry{"MemoryRASModeEnabled",
976fbe8378fSJason M. Bills                  {
977271584abSEd Tanous                      "Indicates Memory RAS Enabled Mode Selection.",
978271584abSEd Tanous                      "Memory RAS Mode Select Enabled. Prior Mode=%1 Selected "
979fbe8378fSJason M. Bills                      "Mode=%2.",
980271584abSEd Tanous                      "OK",
981271584abSEd Tanous                      2,
982271584abSEd Tanous 
983fbe8378fSJason M. Bills                      {
984fbe8378fSJason M. Bills                          "string",
985fbe8378fSJason M. Bills                          "string",
986fbe8378fSJason M. Bills                      },
987271584abSEd Tanous                      "None.",
988fbe8378fSJason M. Bills                  }},
989271584abSEd Tanous     MessageEntry{"MemoryThermTrip",
990fbe8378fSJason M. Bills                  {
991bc6be237Sjayaprakash Mutyala                      "Indicates that the system memory ThermTrip is asserted "
992bc6be237Sjayaprakash Mutyala                      "by the specified component.",
993bc6be237Sjayaprakash Mutyala                      "Memory ThermTrip asserted: %1.",
994271584abSEd Tanous                      "Critical",
995bc6be237Sjayaprakash Mutyala                      1,
996bc6be237Sjayaprakash Mutyala                      {"string"},
997271584abSEd Tanous                      "None.",
998fbe8378fSJason M. Bills                  }},
9999aa46454SAgnieszka Szlendak     MessageEntry{"MEMultiPchModeMisconfig",
10009aa46454SAgnieszka Szlendak                  {
10019aa46454SAgnieszka Szlendak                      "Indicates that Intel ME has encountered "
10029aa46454SAgnieszka Szlendak                      "problems in initializing Multi-PCH mode.",
10039aa46454SAgnieszka Szlendak                      "Intel ME error in Multi-PCH mode: %1",
10049aa46454SAgnieszka Szlendak                      "Critical",
10059aa46454SAgnieszka Szlendak                      1,
10069aa46454SAgnieszka Szlendak                      {"string"},
10079aa46454SAgnieszka Szlendak                      "None.",
10089aa46454SAgnieszka Szlendak                  }},
10099aa46454SAgnieszka Szlendak     MessageEntry{
10109aa46454SAgnieszka Szlendak         "MEPeciOverDmiError",
10119aa46454SAgnieszka Szlendak         {
10129aa46454SAgnieszka Szlendak             "Indicates that Intel ME is unable to communicate "
10139aa46454SAgnieszka Szlendak             "using PECI over DMI.",
10149aa46454SAgnieszka Szlendak             "Intel ME has detected  PECI over DMI interface failure "
10159aa46454SAgnieszka Szlendak             "and it is not functional any more. It may indicate the "
10169aa46454SAgnieszka Szlendak             "situation when PECI over DMI was not configured by "
10179aa46454SAgnieszka Szlendak             "BIOS or a defect which may require a CPU Host reset to "
10189aa46454SAgnieszka Szlendak             "recover from. Details: %1",
10199aa46454SAgnieszka Szlendak             "Critical",
10209aa46454SAgnieszka Szlendak             1,
10219aa46454SAgnieszka Szlendak             {"string"},
10229aa46454SAgnieszka Szlendak             "Recovery via CPU Host reset or platform reset. If error is "
10239aa46454SAgnieszka Szlendak             "persistent, deep-dive platform-level debugging is required.",
10249aa46454SAgnieszka Szlendak         }},
10259aa46454SAgnieszka Szlendak     MessageEntry{
10269aa46454SAgnieszka Szlendak         "MEPttHealthEvent",
10279aa46454SAgnieszka Szlendak         {
10289aa46454SAgnieszka Szlendak             "Indicates that Intel ME has encountered issue with Intel PTT",
10299aa46454SAgnieszka Szlendak             "Intel ME has detected following issue with Intel PTT: %1",
10309aa46454SAgnieszka Szlendak             "Warning",
10319aa46454SAgnieszka Szlendak             1,
10329aa46454SAgnieszka Szlendak             {"string"},
10339aa46454SAgnieszka Szlendak             "None.",
10349aa46454SAgnieszka Szlendak         }},
10359aa46454SAgnieszka Szlendak     MessageEntry{
10369aa46454SAgnieszka Szlendak         "MERecoveryGpioForced",
10379aa46454SAgnieszka Szlendak         {
10389aa46454SAgnieszka Szlendak             "Indicates that Intel ME image is booted in "
10399aa46454SAgnieszka Szlendak             "recovery mode due to GPIO assertion.",
10409aa46454SAgnieszka Szlendak             "Intel ME Recovery Image loaded due to recovery MGPIO "
10419aa46454SAgnieszka Szlendak             "pin asserted. Pin number is configurable in factory "
10429aa46454SAgnieszka Szlendak             "presets, Default recovery pin is MGPIO1.",
10439aa46454SAgnieszka Szlendak             "OK",
10449aa46454SAgnieszka Szlendak             0,
10459aa46454SAgnieszka Szlendak             {},
10469aa46454SAgnieszka Szlendak             "Deassert recovery GPIO and reset the Intel ME back to "
10479aa46454SAgnieszka Szlendak             "operational mode. If Recovery Jumper is in legacy behavior, "
10489aa46454SAgnieszka Szlendak             "a ME reset (eg. Cold Reset IPMI cmd) is needed to have ME "
10499aa46454SAgnieszka Szlendak             "back in operational mode.",
10509aa46454SAgnieszka Szlendak         }},
10519aa46454SAgnieszka Szlendak     MessageEntry{"MERestrictedMode",
10529aa46454SAgnieszka Szlendak                  {
10539aa46454SAgnieszka Szlendak                      "Indicates events related to Intel ME restricted mode.",
10549aa46454SAgnieszka Szlendak                      "Intel ME restricted mode information: %1",
10559aa46454SAgnieszka Szlendak                      "Critical",
10569aa46454SAgnieszka Szlendak                      1,
10579aa46454SAgnieszka Szlendak                      {"string"},
10589aa46454SAgnieszka Szlendak                      "None.",
10599aa46454SAgnieszka Szlendak                  }},
10609aa46454SAgnieszka Szlendak     MessageEntry{
10619aa46454SAgnieszka Szlendak         "MESmbusLinkFailure",
10629aa46454SAgnieszka Szlendak         {
10639aa46454SAgnieszka Szlendak             "Indicate that Intel ME encountered SMBus link error.",
10649aa46454SAgnieszka Szlendak             "Intel ME has detected SMBus link error. "
10659aa46454SAgnieszka Szlendak             "Sensor Bus: %1 , MUX Address: %2 ",
10669aa46454SAgnieszka Szlendak             "Critical",
10679aa46454SAgnieszka Szlendak             2,
10689aa46454SAgnieszka Szlendak             {"string", "string"},
10699aa46454SAgnieszka Szlendak             "Devices connected to given SMLINK might cause communication "
10709aa46454SAgnieszka Szlendak             "corruption. See error code and refer to Intel ME External "
10719aa46454SAgnieszka Szlendak             "Interfaces Specification for details.",
10729aa46454SAgnieszka Szlendak         }},
10739aa46454SAgnieszka Szlendak     MessageEntry{
10749aa46454SAgnieszka Szlendak         "MEUmaError",
10759aa46454SAgnieszka Szlendak         {
10769aa46454SAgnieszka Szlendak             "Indicates that Intel ME has encountered UMA operation error.",
10779aa46454SAgnieszka Szlendak             "Intel ME has encountered UMA operation error. Details: %1",
10789aa46454SAgnieszka Szlendak             "Critical",
10799aa46454SAgnieszka Szlendak             1,
10809aa46454SAgnieszka Szlendak             {"string"},
10819aa46454SAgnieszka Szlendak             "Platform reset when UMA not configured correctly, or when "
10829aa46454SAgnieszka Szlendak             "error occurred during normal operation on correctly "
10839aa46454SAgnieszka Szlendak             "configured UMA multiple times leading to Intel ME entering "
10849aa46454SAgnieszka Szlendak             "Recovery or restricted operational mode.",
10859aa46454SAgnieszka Szlendak         }},
10869aa46454SAgnieszka Szlendak     MessageEntry{"MEUnsupportedFeature",
10879aa46454SAgnieszka Szlendak                  {
10889aa46454SAgnieszka Szlendak                      "Indicates that Intel ME is configuration with "
10899aa46454SAgnieszka Szlendak                      "feature which is not supported on this platform.",
10909aa46454SAgnieszka Szlendak                      "Feature not supported in current segment detected by "
10919aa46454SAgnieszka Szlendak                      "Intel ME Firmware. Details: %1",
10929aa46454SAgnieszka Szlendak                      "Critical",
10939aa46454SAgnieszka Szlendak                      1,
10949aa46454SAgnieszka Szlendak                      {"string"},
10959aa46454SAgnieszka Szlendak                      "Proper FW configuration must be updated or use the "
10969aa46454SAgnieszka Szlendak                      "Flash device with proper FW configuration",
10979aa46454SAgnieszka Szlendak                  }},
1098271584abSEd Tanous     MessageEntry{"MirroringRedundancyDegraded",
1099fbe8378fSJason M. Bills                  {
1100fbe8378fSJason M. Bills                      "Indicates the mirroring redundancy state is degraded.",
1101271584abSEd Tanous                      "Mirroring redundancy state degraded. Socket=%1 "
1102fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
1103271584abSEd Tanous                      "Warning",
1104271584abSEd Tanous                      5,
1105271584abSEd Tanous 
1106fbe8378fSJason M. Bills                      {
1107fbe8378fSJason M. Bills                          "number",
1108fbe8378fSJason M. Bills                          "string",
1109fbe8378fSJason M. Bills                          "number",
1110fbe8378fSJason M. Bills                          "number",
1111fbe8378fSJason M. Bills                          "number",
1112fbe8378fSJason M. Bills                      },
1113271584abSEd Tanous                      "None.",
1114fbe8378fSJason M. Bills                  }},
1115fbe8378fSJason M. Bills     MessageEntry{
1116fbe8378fSJason M. Bills         "MirroringRedundancyFull",
1117fbe8378fSJason M. Bills         {
1118fbe8378fSJason M. Bills             "Indicates the mirroring redundancy state is fully redundant.",
1119271584abSEd Tanous             "Mirroring redundancy state fully redundant. Socket=%1 "
1120fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
1121271584abSEd Tanous             "OK",
1122271584abSEd Tanous             5,
1123271584abSEd Tanous 
1124fbe8378fSJason M. Bills             {
1125fbe8378fSJason M. Bills                 "number",
1126fbe8378fSJason M. Bills                 "string",
1127fbe8378fSJason M. Bills                 "number",
1128fbe8378fSJason M. Bills                 "number",
1129fbe8378fSJason M. Bills                 "number",
1130fbe8378fSJason M. Bills             },
1131271584abSEd Tanous             "None.",
1132fbe8378fSJason M. Bills         }},
1133271584abSEd Tanous     MessageEntry{"NMIButtonPressed",
1134fbe8378fSJason M. Bills                  {
1135271584abSEd Tanous                      "Indicates that the NMI button was pressed.",
1136271584abSEd Tanous                      "NMI Button Pressed.",
1137271584abSEd Tanous                      "Critical",
1138271584abSEd Tanous                      0,
1139271584abSEd Tanous                      {},
1140271584abSEd Tanous                      "None.",
1141fbe8378fSJason M. Bills                  }},
1142b76f9ca1SChen,Yugang     MessageEntry{"NMIDiagnosticInterrupt",
1143b76f9ca1SChen,Yugang                  {
1144271584abSEd Tanous                      "Indicates that an NMI Diagnostic "
1145b76f9ca1SChen,Yugang                      "Interrupt has been generated.",
1146271584abSEd Tanous                      "NMI Diagnostic Interrupt.",
1147271584abSEd Tanous                      "Critical",
1148271584abSEd Tanous                      0,
1149271584abSEd Tanous                      {},
1150271584abSEd Tanous                      "None.",
1151b76f9ca1SChen,Yugang                  }},
1152271584abSEd Tanous     MessageEntry{"PCIeCorrectableAdvisoryNonFatal",
1153fbe8378fSJason M. Bills                  {
1154fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Advisory Non-fatal Error.",
1155271584abSEd Tanous                      "PCIe Correctable Advisory Non-fatal Error. Bus=%1 "
1156fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1157271584abSEd Tanous                      "Warning",
1158271584abSEd Tanous                      3,
1159271584abSEd Tanous 
1160fbe8378fSJason M. Bills                      {
1161fbe8378fSJason M. Bills                          "number",
1162fbe8378fSJason M. Bills                          "number",
1163fbe8378fSJason M. Bills                          "number",
1164fbe8378fSJason M. Bills                      },
1165271584abSEd Tanous                      "None.",
1166fbe8378fSJason M. Bills                  }},
1167271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadDLLP",
1168fbe8378fSJason M. Bills                  {
1169271584abSEd Tanous                      "Indicates a PCIe Correctable Bad DLLP Error.",
1170271584abSEd Tanous 
1171fbe8378fSJason M. Bills                      "PCIe Correctable Bad DLLP. Bus=%1 Device=%2 Function=%3.",
1172271584abSEd Tanous                      "Warning",
1173271584abSEd Tanous                      3,
1174271584abSEd Tanous 
1175fbe8378fSJason M. Bills                      {
1176fbe8378fSJason M. Bills                          "number",
1177fbe8378fSJason M. Bills                          "number",
1178fbe8378fSJason M. Bills                          "number",
1179fbe8378fSJason M. Bills                      },
1180271584abSEd Tanous                      "None.",
1181fbe8378fSJason M. Bills                  }},
1182271584abSEd Tanous     MessageEntry{"PCIeCorrectableBadTLP",
1183fbe8378fSJason M. Bills                  {
1184271584abSEd Tanous                      "Indicates a PCIe Correctable Bad TLP Error.",
1185271584abSEd Tanous 
1186fbe8378fSJason M. Bills                      "PCIe Correctable Bad TLP. Bus=%1 Device=%2 Function=%3.",
1187271584abSEd Tanous                      "Warning",
1188271584abSEd Tanous                      3,
1189271584abSEd Tanous 
1190fbe8378fSJason M. Bills                      {
1191fbe8378fSJason M. Bills                          "number",
1192fbe8378fSJason M. Bills                          "number",
1193fbe8378fSJason M. Bills                          "number",
1194fbe8378fSJason M. Bills                      },
1195271584abSEd Tanous                      "None.",
1196fbe8378fSJason M. Bills                  }},
1197271584abSEd Tanous     MessageEntry{"PCIeCorrectableHeaderLogOverflow",
1198fbe8378fSJason M. Bills                  {
1199fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Header Log Overflow Error.",
1200271584abSEd Tanous                      "PCIe Correctable Header Log Overflow. Bus=%1 Device=%2 "
1201fbe8378fSJason M. Bills                      "Function=%3.",
1202271584abSEd Tanous                      "Warning",
1203271584abSEd Tanous                      3,
1204271584abSEd Tanous 
1205fbe8378fSJason M. Bills                      {
1206fbe8378fSJason M. Bills                          "number",
1207fbe8378fSJason M. Bills                          "number",
1208fbe8378fSJason M. Bills                          "number",
1209fbe8378fSJason M. Bills                      },
1210271584abSEd Tanous                      "None.",
1211fbe8378fSJason M. Bills                  }},
1212271584abSEd Tanous     MessageEntry{"PCIeCorrectableInternal",
1213fbe8378fSJason M. Bills                  {
1214271584abSEd Tanous                      "Indicates a PCIe Correctable Internal Error.",
1215271584abSEd Tanous                      "PCIe Correctable Internal Error. Bus=%1 Device=%2 "
1216fbe8378fSJason M. Bills                      "Function=%3.",
1217271584abSEd Tanous                      "Warning",
1218271584abSEd Tanous                      3,
1219271584abSEd Tanous 
1220fbe8378fSJason M. Bills                      {
1221fbe8378fSJason M. Bills                          "number",
1222fbe8378fSJason M. Bills                          "number",
1223fbe8378fSJason M. Bills                          "number",
1224fbe8378fSJason M. Bills                      },
1225271584abSEd Tanous                      "None.",
1226fbe8378fSJason M. Bills                  }},
1227fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableLinkBWChanged",
1228fbe8378fSJason M. Bills                  {
1229fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Link BW Changed Error.",
1230271584abSEd Tanous                      "PCIe Correctable Link BW Changed. Bus=%1 "
1231fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1232271584abSEd Tanous                      "Warning",
1233271584abSEd Tanous                      3,
1234271584abSEd Tanous 
1235fbe8378fSJason M. Bills                      {
1236fbe8378fSJason M. Bills                          "number",
1237fbe8378fSJason M. Bills                          "number",
1238fbe8378fSJason M. Bills                          "number",
1239fbe8378fSJason M. Bills                      },
1240271584abSEd Tanous                      "None.",
1241fbe8378fSJason M. Bills                  }},
1242271584abSEd Tanous     MessageEntry{"PCIeCorrectableReceiverError",
1243fbe8378fSJason M. Bills                  {
1244271584abSEd Tanous                      "Indicates a PCIe Correctable Receiver Error.",
1245271584abSEd Tanous                      "PCIe Correctable Receiver Error. Bus=%1 Device=%2 "
1246fbe8378fSJason M. Bills                      "Function=%3.",
1247271584abSEd Tanous                      "Warning",
1248271584abSEd Tanous                      3,
1249271584abSEd Tanous 
1250fbe8378fSJason M. Bills                      {
1251fbe8378fSJason M. Bills                          "number",
1252fbe8378fSJason M. Bills                          "number",
1253fbe8378fSJason M. Bills                          "number",
1254fbe8378fSJason M. Bills                      },
1255271584abSEd Tanous                      "None.",
1256fbe8378fSJason M. Bills                  }},
1257271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayNumRollover",
1258fbe8378fSJason M. Bills                  {
1259271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Num Rollover.",
1260271584abSEd Tanous                      "PCIe Correctable Replay Num Rollover. Bus=%1 Device=%2 "
1261fbe8378fSJason M. Bills                      "Function=%3.",
1262271584abSEd Tanous                      "Warning",
1263271584abSEd Tanous                      3,
1264271584abSEd Tanous 
1265fbe8378fSJason M. Bills                      {
1266fbe8378fSJason M. Bills                          "number",
1267fbe8378fSJason M. Bills                          "number",
1268fbe8378fSJason M. Bills                          "number",
1269fbe8378fSJason M. Bills                      },
1270271584abSEd Tanous                      "None.",
1271fbe8378fSJason M. Bills                  }},
1272271584abSEd Tanous     MessageEntry{"PCIeCorrectableReplayTimerTimeout",
1273fbe8378fSJason M. Bills                  {
1274271584abSEd Tanous                      "Indicates a PCIe Correctable Replay Timer Timeout.",
1275271584abSEd Tanous                      "PCIe Correctable Replay Timer Timeout. Bus=%1 "
1276fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
1277271584abSEd Tanous                      "Warning",
1278271584abSEd Tanous                      3,
1279271584abSEd Tanous 
1280fbe8378fSJason M. Bills                      {
1281fbe8378fSJason M. Bills                          "number",
1282fbe8378fSJason M. Bills                          "number",
1283fbe8378fSJason M. Bills                          "number",
1284fbe8378fSJason M. Bills                      },
1285271584abSEd Tanous                      "None.",
1286fbe8378fSJason M. Bills                  }},
1287fbe8378fSJason M. Bills     MessageEntry{"PCIeCorrectableUnspecifiedAERError",
1288fbe8378fSJason M. Bills                  {
1289fbe8378fSJason M. Bills                      "Indicates a PCIe Correctable Unspecified AER Error.",
1290271584abSEd Tanous                      "PCIe Correctable Unspecified AER Error. "
1291fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
1292271584abSEd Tanous                      "Warning",
1293271584abSEd Tanous                      3,
1294271584abSEd Tanous 
1295fbe8378fSJason M. Bills                      {
1296fbe8378fSJason M. Bills                          "number",
1297fbe8378fSJason M. Bills                          "number",
1298fbe8378fSJason M. Bills                          "number",
1299fbe8378fSJason M. Bills                      },
1300271584abSEd Tanous                      "None.",
1301fbe8378fSJason M. Bills                  }},
1302271584abSEd Tanous     MessageEntry{"PCIeFatalACSViolation",
1303fbe8378fSJason M. Bills                  {
1304271584abSEd Tanous                      "Indicates a PCIe ACS Violation Error.",
1305271584abSEd Tanous 
1306fbe8378fSJason M. Bills                      "PCIe Fatal ACS Violation. Bus=%1 Device=%2 Function=%3.",
13074228a160SJason M. Bills                      "Critical",
1308271584abSEd Tanous                      3,
1309271584abSEd Tanous 
1310fbe8378fSJason M. Bills                      {
1311fbe8378fSJason M. Bills                          "number",
1312fbe8378fSJason M. Bills                          "number",
1313fbe8378fSJason M. Bills                          "number",
1314fbe8378fSJason M. Bills                      },
1315271584abSEd Tanous                      "None.",
1316fbe8378fSJason M. Bills                  }},
1317271584abSEd Tanous     MessageEntry{"PCIeFatalAtomicEgressBlocked",
1318fbe8378fSJason M. Bills                  {
1319271584abSEd Tanous                      "Indicates a PCIe Atomic Egress Blocked Error.",
1320271584abSEd Tanous                      "PCIe Fatal Atomic Egress Blocked. Bus=%1 Device=%2 "
1321fbe8378fSJason M. Bills                      "Function=%3.",
13224228a160SJason M. Bills                      "Critical",
1323271584abSEd Tanous                      3,
1324271584abSEd Tanous 
1325fbe8378fSJason M. Bills                      {
1326fbe8378fSJason M. Bills                          "number",
1327fbe8378fSJason M. Bills                          "number",
1328fbe8378fSJason M. Bills                          "number",
1329fbe8378fSJason M. Bills                      },
1330271584abSEd Tanous                      "None.",
1331fbe8378fSJason M. Bills                  }},
1332fbe8378fSJason M. Bills     MessageEntry{
1333fbe8378fSJason M. Bills         "PCIeFatalCompleterAbort",
1334fbe8378fSJason M. Bills         {
1335271584abSEd Tanous             "Indicates a PCIe Completer Abort Error.",
1336271584abSEd Tanous 
1337fbe8378fSJason M. Bills             "PCIe Fatal Completer Abort. Bus=%1 Device=%2 Function=%3.",
13384228a160SJason M. Bills             "Critical",
1339271584abSEd Tanous             3,
1340271584abSEd Tanous 
1341fbe8378fSJason M. Bills             {
1342fbe8378fSJason M. Bills                 "number",
1343fbe8378fSJason M. Bills                 "number",
1344fbe8378fSJason M. Bills                 "number",
1345fbe8378fSJason M. Bills             },
1346271584abSEd Tanous             "None.",
1347fbe8378fSJason M. Bills         }},
1348fbe8378fSJason M. Bills     MessageEntry{
1349fbe8378fSJason M. Bills         "PCIeFatalCompletionTimeout",
1350fbe8378fSJason M. Bills         {
1351271584abSEd Tanous             "Indicates a PCIe Completion Timeout Error.",
1352271584abSEd Tanous 
1353fbe8378fSJason M. Bills             "PCIe Fatal Completion Timeout. Bus=%1 Device=%2 Function=%3.",
13544228a160SJason M. Bills             "Critical",
1355271584abSEd Tanous             3,
1356271584abSEd Tanous 
1357fbe8378fSJason M. Bills             {
1358fbe8378fSJason M. Bills                 "number",
1359fbe8378fSJason M. Bills                 "number",
1360fbe8378fSJason M. Bills                 "number",
1361fbe8378fSJason M. Bills             },
1362271584abSEd Tanous             "None.",
1363fbe8378fSJason M. Bills         }},
1364fbe8378fSJason M. Bills     MessageEntry{
1365fbe8378fSJason M. Bills         "PCIeFatalDataLinkLayerProtocol",
1366fbe8378fSJason M. Bills         {
1367271584abSEd Tanous             "Indicates a PCIe Data Link Layer Protocol Error.",
1368271584abSEd Tanous 
1369fbe8378fSJason M. Bills             "PCIe Fatal Data Link Layer Protocol Error. Bus=%1 Device=%2 "
1370fbe8378fSJason M. Bills             "Function=%3.",
13714228a160SJason M. Bills             "Critical",
1372271584abSEd Tanous             3,
1373271584abSEd Tanous 
1374fbe8378fSJason M. Bills             {
1375fbe8378fSJason M. Bills                 "number",
1376fbe8378fSJason M. Bills                 "number",
1377fbe8378fSJason M. Bills                 "number",
1378fbe8378fSJason M. Bills             },
1379271584abSEd Tanous             "None.",
1380fbe8378fSJason M. Bills         }},
1381271584abSEd Tanous     MessageEntry{"PCIeFatalECRCError",
1382fbe8378fSJason M. Bills                  {
1383271584abSEd Tanous                      "Indicates a PCIe ECRC Error.",
1384271584abSEd Tanous                      "PCIe Fatal ECRC Error. Bus=%1 Device=%2 Function=%3.",
13854228a160SJason M. Bills                      "Critical",
1386271584abSEd Tanous                      3,
1387271584abSEd Tanous 
1388fbe8378fSJason M. Bills                      {
1389fbe8378fSJason M. Bills                          "number",
1390fbe8378fSJason M. Bills                          "number",
1391fbe8378fSJason M. Bills                          "number",
1392fbe8378fSJason M. Bills                      },
1393271584abSEd Tanous                      "None.",
1394fbe8378fSJason M. Bills                  }},
1395271584abSEd Tanous     MessageEntry{"PCIeFatalFlowControlProtocol",
1396fbe8378fSJason M. Bills                  {
1397271584abSEd Tanous                      "Indicates a PCIe Flow Control Protocol Error.",
1398271584abSEd Tanous 
1399fbe8378fSJason M. Bills                      "PCIe Fatal Flow Control Protocol Error. Bus=%1 Device=%2 "
1400fbe8378fSJason M. Bills                      "Function=%3.",
14014228a160SJason M. Bills                      "Critical",
1402271584abSEd Tanous                      3,
1403271584abSEd Tanous 
1404fbe8378fSJason M. Bills                      {
1405fbe8378fSJason M. Bills                          "number",
1406fbe8378fSJason M. Bills                          "number",
1407fbe8378fSJason M. Bills                          "number",
1408fbe8378fSJason M. Bills                      },
1409271584abSEd Tanous                      "None.",
1410fbe8378fSJason M. Bills                  }},
1411fbe8378fSJason M. Bills     MessageEntry{
1412fbe8378fSJason M. Bills         "PCIeFatalMalformedTLP",
1413fbe8378fSJason M. Bills         {
1414271584abSEd Tanous             "Indicates a PCIe Malformed TLP Error.",
1415271584abSEd Tanous 
1416fbe8378fSJason M. Bills             "PCIe Fatal Malformed TLP Error. Bus=%1 Device=%2 Function=%3.",
14174228a160SJason M. Bills             "Critical",
1418271584abSEd Tanous             3,
1419271584abSEd Tanous 
1420fbe8378fSJason M. Bills             {
1421fbe8378fSJason M. Bills                 "number",
1422fbe8378fSJason M. Bills                 "number",
1423fbe8378fSJason M. Bills                 "number",
1424fbe8378fSJason M. Bills             },
1425271584abSEd Tanous             "None.",
1426fbe8378fSJason M. Bills         }},
1427fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalMCBlockedTLP",
1428fbe8378fSJason M. Bills                  {
1429271584abSEd Tanous                      "Indicates a PCIe MC Blocked TLP Error.",
1430271584abSEd Tanous                      "PCIe Fatal MC Blocked TLP Error. Bus=%1 "
1431fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
14324228a160SJason M. Bills                      "Critical",
1433271584abSEd Tanous                      3,
1434271584abSEd Tanous 
1435fbe8378fSJason M. Bills                      {
1436fbe8378fSJason M. Bills                          "number",
1437fbe8378fSJason M. Bills                          "number",
1438fbe8378fSJason M. Bills                          "number",
1439fbe8378fSJason M. Bills                      },
1440271584abSEd Tanous                      "None.",
1441fbe8378fSJason M. Bills                  }},
1442fbe8378fSJason M. Bills     MessageEntry{
1443fbe8378fSJason M. Bills         "PCIeFatalPoisonedTLP",
1444fbe8378fSJason M. Bills         {
1445271584abSEd Tanous             "Indicates a PCIe Poisoned TLP Error.",
1446271584abSEd Tanous 
1447fbe8378fSJason M. Bills             "PCIe Fatal Poisoned TLP Error. Bus=%1 Device=%2 Function=%3.",
14484228a160SJason M. Bills             "Critical",
1449271584abSEd Tanous             3,
1450271584abSEd Tanous 
1451fbe8378fSJason M. Bills             {
1452fbe8378fSJason M. Bills                 "number",
1453fbe8378fSJason M. Bills                 "number",
1454fbe8378fSJason M. Bills                 "number",
1455fbe8378fSJason M. Bills             },
1456271584abSEd Tanous             "None.",
1457fbe8378fSJason M. Bills         }},
1458271584abSEd Tanous     MessageEntry{"PCIeFatalReceiverBufferOverflow",
1459fbe8378fSJason M. Bills                  {
1460271584abSEd Tanous                      "Indicates a PCIe Receiver Buffer Overflow Error.",
1461271584abSEd Tanous                      "PCIe Fatal Receiver Buffer Overflow. Bus=%1 Device=%2 "
1462fbe8378fSJason M. Bills                      "Function=%3.",
14634228a160SJason M. Bills                      "Critical",
1464271584abSEd Tanous                      3,
1465271584abSEd Tanous 
1466fbe8378fSJason M. Bills                      {
1467fbe8378fSJason M. Bills                          "number",
1468fbe8378fSJason M. Bills                          "number",
1469fbe8378fSJason M. Bills                          "number",
1470fbe8378fSJason M. Bills                      },
1471271584abSEd Tanous                      "None.",
1472fbe8378fSJason M. Bills                  }},
1473fbe8378fSJason M. Bills     MessageEntry{
147414c8aee2SEd Tanous         "PCIeFatalReceivedErrNonFatalMessage",
1475fbe8378fSJason M. Bills         {
1476fbe8378fSJason M. Bills             "Indicates a PCIe Received ERR_NONFATAL Message Error.",
1477271584abSEd Tanous 
1478fbe8378fSJason M. Bills             "PCIe Fatal Received ERR_NONFATAL Message. Bus=%1 Device=%2 "
1479fbe8378fSJason M. Bills             "Function=%3.",
14804228a160SJason M. Bills             "Critical",
1481271584abSEd Tanous             3,
1482271584abSEd Tanous 
1483fbe8378fSJason M. Bills             {
1484fbe8378fSJason M. Bills                 "number",
1485fbe8378fSJason M. Bills                 "number",
1486fbe8378fSJason M. Bills                 "number",
1487fbe8378fSJason M. Bills             },
1488271584abSEd Tanous             "None.",
1489fbe8378fSJason M. Bills         }},
1490fbe8378fSJason M. Bills     MessageEntry{"PCIeFatalReceivedFatalMessageFromDownstream",
1491fbe8378fSJason M. Bills                  {
1492271584abSEd Tanous                      "Indicates a PCIe Received Fatal Message "
1493fbe8378fSJason M. Bills                      "From Downstream Error.",
1494271584abSEd Tanous 
1495fbe8378fSJason M. Bills                      "PCIe Fatal Received Fatal Message From Downstream. "
1496fbe8378fSJason M. Bills                      "Bus=%1 Device=%2 Function=%3.",
14974228a160SJason M. Bills                      "Critical",
1498271584abSEd Tanous                      3,
1499271584abSEd Tanous 
1500fbe8378fSJason M. Bills                      {
1501fbe8378fSJason M. Bills                          "number",
1502fbe8378fSJason M. Bills                          "number",
1503fbe8378fSJason M. Bills                          "number",
1504fbe8378fSJason M. Bills                      },
1505271584abSEd Tanous                      "None.",
1506fbe8378fSJason M. Bills                  }},
1507271584abSEd Tanous     MessageEntry{"PCIeFatalSurpriseLinkDown",
1508fbe8378fSJason M. Bills                  {
1509271584abSEd Tanous                      "Indicates a PCIe Surprise Link Down Error.",
1510271584abSEd Tanous                      "PCIe Fatal Surprise Link Down Error. Bus=%1 Device=%2 "
1511fbe8378fSJason M. Bills                      "Function=%3.",
15124228a160SJason M. Bills                      "Critical",
1513271584abSEd Tanous                      3,
1514271584abSEd Tanous 
1515fbe8378fSJason M. Bills                      {
1516fbe8378fSJason M. Bills                          "number",
1517fbe8378fSJason M. Bills                          "number",
1518fbe8378fSJason M. Bills                          "number",
1519fbe8378fSJason M. Bills                      },
1520271584abSEd Tanous                      "None.",
1521fbe8378fSJason M. Bills                  }},
1522271584abSEd Tanous     MessageEntry{"PCIeFatalTLPPrefixBlocked",
1523fbe8378fSJason M. Bills                  {
1524271584abSEd Tanous                      "Indicates a PCIe TLP Prefix Blocked Error.",
1525271584abSEd Tanous                      "PCIe Fatal TLP Prefix Blocked Error. Bus=%1 Device=%2 "
1526fbe8378fSJason M. Bills                      "Function=%3.",
15274228a160SJason M. Bills                      "Critical",
1528271584abSEd Tanous                      3,
1529271584abSEd Tanous 
1530fbe8378fSJason M. Bills                      {
1531fbe8378fSJason M. Bills                          "number",
1532fbe8378fSJason M. Bills                          "number",
1533fbe8378fSJason M. Bills                          "number",
1534fbe8378fSJason M. Bills                      },
1535271584abSEd Tanous                      "None.",
1536fbe8378fSJason M. Bills                  }},
1537fbe8378fSJason M. Bills     MessageEntry{
1538fbe8378fSJason M. Bills         "PCIeFatalUncorrectableInternal",
1539fbe8378fSJason M. Bills         {
1540271584abSEd Tanous             "Indicates a PCIe Uncorrectable Internal Error.",
1541271584abSEd Tanous 
1542fbe8378fSJason M. Bills             "PCIe Fatal Uncorrectable Internal Error. Bus=%1 Device=%2 "
1543fbe8378fSJason M. Bills             "Function=%3.",
15444228a160SJason M. Bills             "Critical",
1545271584abSEd Tanous             3,
1546271584abSEd Tanous 
1547fbe8378fSJason M. Bills             {
1548fbe8378fSJason M. Bills                 "number",
1549fbe8378fSJason M. Bills                 "number",
1550fbe8378fSJason M. Bills                 "number",
1551fbe8378fSJason M. Bills             },
1552271584abSEd Tanous             "None.",
1553fbe8378fSJason M. Bills         }},
1554271584abSEd Tanous     MessageEntry{"PCIeFatalUnexpectedCompletion",
1555fbe8378fSJason M. Bills                  {
1556271584abSEd Tanous                      "Indicates a PCIe Unexpected Completion Error.",
1557271584abSEd Tanous                      "PCIe Fatal Unexpected Completion. Bus=%1 Device=%2 "
1558fbe8378fSJason M. Bills                      "Function=%3.",
15594228a160SJason M. Bills                      "Critical",
1560271584abSEd Tanous                      3,
1561271584abSEd Tanous 
1562fbe8378fSJason M. Bills                      {
1563fbe8378fSJason M. Bills                          "number",
1564fbe8378fSJason M. Bills                          "number",
1565fbe8378fSJason M. Bills                          "number",
1566fbe8378fSJason M. Bills                      },
1567271584abSEd Tanous                      "None.",
1568fbe8378fSJason M. Bills                  }},
1569271584abSEd Tanous     MessageEntry{"PCIeFatalUnspecifiedNonAERFatalError",
1570fbe8378fSJason M. Bills                  {
1571271584abSEd Tanous                      "Indicates a PCIe Unspecified Non-AER Fatal Error.",
1572271584abSEd Tanous                      "PCIe Fatal Unspecified Non-AER Fatal Error. Bus=%1 "
1573fbe8378fSJason M. Bills                      "Device=%2 Function=%3.",
15744228a160SJason M. Bills                      "Critical",
1575271584abSEd Tanous                      3,
1576271584abSEd Tanous 
1577fbe8378fSJason M. Bills                      {
1578fbe8378fSJason M. Bills                          "number",
1579fbe8378fSJason M. Bills                          "number",
1580fbe8378fSJason M. Bills                          "number",
1581fbe8378fSJason M. Bills                      },
1582271584abSEd Tanous                      "None.",
1583fbe8378fSJason M. Bills                  }},
1584fbe8378fSJason M. Bills     MessageEntry{
1585fbe8378fSJason M. Bills         "PCIeFatalUnsupportedRequest",
1586fbe8378fSJason M. Bills         {
1587271584abSEd Tanous             "Indicates a PCIe Unsupported Request Error.",
1588271584abSEd Tanous 
1589fbe8378fSJason M. Bills             "PCIe Fatal Unsupported Request. Bus=%1 Device=%2 Function=%3.",
15904228a160SJason M. Bills             "Critical",
1591271584abSEd Tanous             3,
1592271584abSEd Tanous 
1593fbe8378fSJason M. Bills             {
1594fbe8378fSJason M. Bills                 "number",
1595fbe8378fSJason M. Bills                 "number",
1596fbe8378fSJason M. Bills                 "number",
1597fbe8378fSJason M. Bills             },
1598271584abSEd Tanous             "None.",
1599fbe8378fSJason M. Bills         }},
1600271584abSEd Tanous     MessageEntry{"PowerButtonPressed",
1601fbe8378fSJason M. Bills                  {
1602271584abSEd Tanous                      "Indicates that the power button was pressed.",
1603271584abSEd Tanous                      "Power Button Pressed.",
1604271584abSEd Tanous                      "OK",
1605271584abSEd Tanous                      0,
1606271584abSEd Tanous                      {},
1607271584abSEd Tanous                      "None.",
1608fbe8378fSJason M. Bills                  }},
1609dd118a2eSJason M. Bills     MessageEntry{"PowerRestorePolicyApplied",
1610dd118a2eSJason M. Bills                  {
1611271584abSEd Tanous                      "Indicates that power was restored and the "
1612dd118a2eSJason M. Bills                      "BMC has applied the restore policy.",
1613271584abSEd Tanous                      "Power restore policy applied.",
1614271584abSEd Tanous                      "OK",
1615271584abSEd Tanous                      0,
1616271584abSEd Tanous                      {},
1617271584abSEd Tanous                      "None.",
1618dd118a2eSJason M. Bills                  }},
1619271584abSEd Tanous     MessageEntry{"PowerSupplyConfigurationError",
1620fbe8378fSJason M. Bills                  {
1621271584abSEd Tanous                      "Indicates an error in power supply configuration.",
1622271584abSEd Tanous                      "Power supply %1 configuration error.",
16239c6b0159SYong Li                      "Warning",
1624271584abSEd Tanous                      1,
1625271584abSEd Tanous                      {"string"},
1626271584abSEd Tanous                      "None.",
1627fbe8378fSJason M. Bills                  }},
1628fbe8378fSJason M. Bills     MessageEntry{
16297f68549fSjayaprakash Mutyala         "PowerSupplyConfigurationErrorRecovered",
16307f68549fSjayaprakash Mutyala         {
16317f68549fSjayaprakash Mutyala             "Indicates that power supply configuration error recovered "
16327f68549fSjayaprakash Mutyala             "from a failure.",
16337f68549fSjayaprakash Mutyala             "Power supply %1 configuration error recovered.",
16347f68549fSjayaprakash Mutyala             "OK",
16357f68549fSjayaprakash Mutyala             1,
16367f68549fSjayaprakash Mutyala             {"string"},
16377f68549fSjayaprakash Mutyala             "None.",
16387f68549fSjayaprakash Mutyala         }},
16397f68549fSjayaprakash Mutyala     MessageEntry{
1640fbe8378fSJason M. Bills         "PowerSupplyFanFailed",
1641fbe8378fSJason M. Bills         {
1642fbe8378fSJason M. Bills             "Indicates that the specified power supply fan has failed.",
1643271584abSEd Tanous             "Power supply %1 fan %2 failed.",
16449c6b0159SYong Li             "Warning",
1645271584abSEd Tanous             2,
1646271584abSEd Tanous             {"string", "string"},
1647271584abSEd Tanous             "None.",
1648fbe8378fSJason M. Bills         }},
1649dac62eefSCheng C Yang     MessageEntry{
1650dac62eefSCheng C Yang         "PowerSupplyFanRecovered",
1651dac62eefSCheng C Yang         {
1652dac62eefSCheng C Yang             "Indicates that the power supply fan recovered from a failure.",
1653271584abSEd Tanous             "Power supply %1 fan %2 recovered.",
1654271584abSEd Tanous             "OK",
1655271584abSEd Tanous             2,
1656271584abSEd Tanous             {"string", "string"},
1657271584abSEd Tanous             "None.",
1658dac62eefSCheng C Yang         }},
1659fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailed",
1660fbe8378fSJason M. Bills                  {
1661271584abSEd Tanous                      "Indicates that a power supply has failed.",
1662271584abSEd Tanous                      "Power supply %1 failed.",
16639c6b0159SYong Li                      "Warning",
1664271584abSEd Tanous                      1,
1665271584abSEd Tanous                      {"string"},
1666271584abSEd Tanous                      "None.",
1667fbe8378fSJason M. Bills                  }},
1668fbe8378fSJason M. Bills     MessageEntry{"PowerSupplyFailurePredicted",
1669fbe8378fSJason M. Bills                  {
1670fbe8378fSJason M. Bills                      "Indicates that a power supply is predicted to fail.",
1671271584abSEd Tanous                      "Power supply %1 failure predicted.",
1672271584abSEd Tanous                      "Warning",
1673271584abSEd Tanous                      1,
1674271584abSEd Tanous                      {"string"},
1675271584abSEd Tanous                      "None.",
1676fbe8378fSJason M. Bills                  }},
1677271584abSEd Tanous     MessageEntry{"PowerSupplyInserted",
1678fbe8378fSJason M. Bills                  {
1679271584abSEd Tanous                      "Indicates that a power supply has been inserted.",
1680271584abSEd Tanous                      "Power supply %1 inserted.",
1681271584abSEd Tanous                      "OK",
1682271584abSEd Tanous                      1,
1683271584abSEd Tanous                      {"string"},
1684271584abSEd Tanous                      "None.",
1685fbe8378fSJason M. Bills                  }},
1686271584abSEd Tanous     MessageEntry{"PowerSupplyPowerGoodFailed",
1687bc48a175SJason M. Bills                  {
1688271584abSEd Tanous                      "Indicates that the power supply power good signal "
1689bc48a175SJason M. Bills                      "failed to assert within the specified time.",
1690271584abSEd Tanous                      "Power supply power good failed to assert within %1 "
1691bc48a175SJason M. Bills                      "milliseconds.",
1692271584abSEd Tanous                      "Critical",
1693271584abSEd Tanous                      1,
1694271584abSEd Tanous                      {"number"},
1695271584abSEd Tanous                      "None.",
1696bc48a175SJason M. Bills                  }},
1697dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPowerLost",
1698dac62eefSCheng C Yang                  {
1699dac62eefSCheng C Yang                      "Indicates that a power supply has lost input power.",
1700271584abSEd Tanous                      "Power supply %1 power lost.",
17019c6b0159SYong Li                      "Warning",
1702271584abSEd Tanous                      1,
1703271584abSEd Tanous                      {"string"},
1704271584abSEd Tanous                      "None.",
1705dac62eefSCheng C Yang                  }},
1706271584abSEd Tanous     MessageEntry{"PowerSupplyPowerRestored",
1707dac62eefSCheng C Yang                  {
1708dac62eefSCheng C Yang                      "Indicates that a power supply input power was restored.",
1709271584abSEd Tanous                      "Power supply %1 power restored.",
1710271584abSEd Tanous                      "OK",
1711271584abSEd Tanous                      1,
1712271584abSEd Tanous                      {"string"},
1713271584abSEd Tanous                      "None.",
1714dac62eefSCheng C Yang                  }},
1715dac62eefSCheng C Yang     MessageEntry{"PowerSupplyPredictedFailureRecovered",
1716dac62eefSCheng C Yang                  {
1717271584abSEd Tanous                      "Indicates that a power supply recovered "
1718dac62eefSCheng C Yang                      "from a predicted failure.",
1719271584abSEd Tanous                      "Power supply %1 predicted failure recovered.",
1720271584abSEd Tanous                      "OK",
1721271584abSEd Tanous                      1,
1722271584abSEd Tanous                      {"string"},
1723271584abSEd Tanous                      "None.",
1724dac62eefSCheng C Yang                  }},
1725271584abSEd Tanous     MessageEntry{"PowerSupplyRecovered",
1726dac62eefSCheng C Yang                  {
1727dac62eefSCheng C Yang                      "Indicates that a power supply recovered from a failure.",
1728271584abSEd Tanous                      "Power supply %1 recovered.",
1729271584abSEd Tanous                      "OK",
1730271584abSEd Tanous                      1,
1731271584abSEd Tanous                      {"string"},
1732271584abSEd Tanous                      "None.",
1733dac62eefSCheng C Yang                  }},
1734271584abSEd Tanous     MessageEntry{"PowerSupplyRemoved",
1735fbe8378fSJason M. Bills                  {
1736271584abSEd Tanous                      "Indicates that a power supply has been removed.",
1737271584abSEd Tanous                      "Power supply %1 removed.",
1738271584abSEd Tanous                      "Warning",
1739271584abSEd Tanous                      1,
1740271584abSEd Tanous                      {"string"},
1741271584abSEd Tanous                      "None.",
1742fbe8378fSJason M. Bills                  }},
1743271584abSEd Tanous     MessageEntry{"PowerUnitDegradedFromNonRedundant",
1744cecb4cb6SCheng C Yang                  {
1745cecb4cb6SCheng C Yang                      "Indicates that power unit is come back to redundant from"
1746cecb4cb6SCheng C Yang                      "nonredundant but is still not in full redundancy mode.",
1747271584abSEd Tanous                      "Power Unit degraded from nonredundant.",
1748271584abSEd Tanous                      "Warning",
1749271584abSEd Tanous                      0,
1750271584abSEd Tanous                      {},
1751271584abSEd Tanous                      "None.",
1752cecb4cb6SCheng C Yang                  }},
1753cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitDegradedFromRedundant",
1754cecb4cb6SCheng C Yang                  {
1755cecb4cb6SCheng C Yang                      "Indicates that power unit is degarded from full "
1756cecb4cb6SCheng C Yang                      "redundancy mode.",
1757271584abSEd Tanous                      "Power Unit degraded from redundant.",
1758271584abSEd Tanous                      "Warning",
1759271584abSEd Tanous                      0,
1760271584abSEd Tanous                      {},
1761271584abSEd Tanous                      "None.",
1762cecb4cb6SCheng C Yang                  }},
1763271584abSEd Tanous     MessageEntry{"PowerUnitRedundancyDegraded",
1764cecb4cb6SCheng C Yang                  {
1765cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been degraded.",
1766271584abSEd Tanous                      "Power Unit Redundancy degraded.",
1767271584abSEd Tanous                      "Warning",
1768271584abSEd Tanous                      0,
1769271584abSEd Tanous                      {},
1770271584abSEd Tanous                      "None.",
1771cecb4cb6SCheng C Yang                  }},
1772cecb4cb6SCheng C Yang     MessageEntry{
1773cecb4cb6SCheng C Yang         "PowerUnitNonRedundantFromInsufficient",
1774cecb4cb6SCheng C Yang         {
1775cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode and get"
1776cecb4cb6SCheng C Yang             "sufficient power to support redundancy from insufficient"
1777cecb4cb6SCheng C Yang             "power.",
1778271584abSEd Tanous 
1779cecb4cb6SCheng C Yang             "Power Unit NonRedundant from insufficient to sufficient.",
1780271584abSEd Tanous             "Warning",
1781271584abSEd Tanous             0,
1782271584abSEd Tanous             {},
1783271584abSEd Tanous             "None.",
1784cecb4cb6SCheng C Yang         }},
1785271584abSEd Tanous     MessageEntry{"PowerUnitNonRedundantInsufficient",
1786cecb4cb6SCheng C Yang                  {
1787271584abSEd Tanous                      "Indicates that power unit do not have sufficient "
1788cecb4cb6SCheng C Yang                      "power to support redundancy.",
1789271584abSEd Tanous                      "Power Unit NonRedundant and has insufficient resource.",
17904228a160SJason M. Bills                      "Critical",
1791271584abSEd Tanous                      0,
1792271584abSEd Tanous                      {},
1793271584abSEd Tanous                      "None.",
1794cecb4cb6SCheng C Yang                  }},
1795cecb4cb6SCheng C Yang     MessageEntry{"PowerUnitRedundancyLost",
1796cecb4cb6SCheng C Yang                  {
1797cecb4cb6SCheng C Yang                      "Indicates that power unit redundancy has been lost.",
1798271584abSEd Tanous                      "Power Unit Redundancy lost.",
1799271584abSEd Tanous                      "Warning",
1800271584abSEd Tanous                      0,
1801271584abSEd Tanous                      {},
1802271584abSEd Tanous                      "None.",
1803cecb4cb6SCheng C Yang                  }},
1804cecb4cb6SCheng C Yang     MessageEntry{
1805cecb4cb6SCheng C Yang         "PowerUnitRedundancyRegained",
1806cecb4cb6SCheng C Yang         {
1807cecb4cb6SCheng C Yang             "Indicates that power unit full redundancy has been regained.",
1808271584abSEd Tanous             "Power Unit Redundancy regained.",
1809271584abSEd Tanous             "OK",
1810271584abSEd Tanous             0,
1811271584abSEd Tanous             {},
1812271584abSEd Tanous             "None.",
1813cecb4cb6SCheng C Yang         }},
1814cecb4cb6SCheng C Yang     MessageEntry{
1815cecb4cb6SCheng C Yang         "PowerUnitNonRedundantSufficient",
1816cecb4cb6SCheng C Yang         {
1817cecb4cb6SCheng C Yang             "Indicates that power unit is not in redundancy mode but still"
1818cecb4cb6SCheng C Yang             "has sufficient power to support redundancy.",
1819271584abSEd Tanous             "Power Unit Nonredundant but has sufficient resource.",
1820271584abSEd Tanous             "Warning",
1821271584abSEd Tanous             0,
1822271584abSEd Tanous             {},
1823271584abSEd Tanous             "None.",
1824cecb4cb6SCheng C Yang         }},
1825271584abSEd Tanous     MessageEntry{"ResetButtonPressed",
1826fbe8378fSJason M. Bills                  {
1827271584abSEd Tanous                      "Indicates that the reset button was pressed.",
1828271584abSEd Tanous                      "Reset Button Pressed.",
1829271584abSEd Tanous                      "OK",
1830271584abSEd Tanous                      0,
1831271584abSEd Tanous                      {},
1832271584abSEd Tanous                      "None.",
1833fbe8378fSJason M. Bills                  }},
18348ae37025SChen,Yugang     MessageEntry{"SecurityBoot2ndFlashEnabled",
18358ae37025SChen,Yugang                  {
18368ae37025SChen,Yugang                      "Indicates that the BMC 2nd boot flash is enabled.",
18378ae37025SChen,Yugang                      "BMC 2nd boot flash is enabled.",
18388ae37025SChen,Yugang                      "Critical",
18398ae37025SChen,Yugang                      0,
18408ae37025SChen,Yugang                      {},
18418ae37025SChen,Yugang                      "None.",
18428ae37025SChen,Yugang                  }},
18438ae37025SChen,Yugang     MessageEntry{"SecurityP2aBridgeEnabled",
18448ae37025SChen,Yugang                  {
18458ae37025SChen,Yugang                      "Indicates that the P2A bridge is enabled.",
18468ae37025SChen,Yugang                      "P2A(PCIe to AHB) bridge is enabled.",
18478ae37025SChen,Yugang                      "Critical",
18488ae37025SChen,Yugang                      0,
18498ae37025SChen,Yugang                      {},
18508ae37025SChen,Yugang                      "None.",
18518ae37025SChen,Yugang                  }},
18528ae37025SChen,Yugang     MessageEntry{"SecurityUartPortDebugEnabled",
18538ae37025SChen,Yugang                  {
18548ae37025SChen,Yugang                      "Indicates that the uart port debug is enabled.",
18558ae37025SChen,Yugang                      "Uart port debug is enabled.",
18568ae37025SChen,Yugang                      "Critical",
18578ae37025SChen,Yugang                      0,
18588ae37025SChen,Yugang                      {},
18598ae37025SChen,Yugang                      "None.",
18608ae37025SChen,Yugang                  }},
18618988dda4SSuryakanth Sekar     MessageEntry{
18628988dda4SSuryakanth Sekar         "SecurityUserStrongHashAlgoRestored",
18638988dda4SSuryakanth Sekar         {
18648988dda4SSuryakanth Sekar             "Indicates that password computing hash algorithm changed.",
18658988dda4SSuryakanth Sekar             "Password computing hash algorithm is changed to sha256/sha512.",
18668988dda4SSuryakanth Sekar             "OK",
18678988dda4SSuryakanth Sekar             0,
18688988dda4SSuryakanth Sekar             {},
18698988dda4SSuryakanth Sekar             "None.",
18708988dda4SSuryakanth Sekar         }},
18718988dda4SSuryakanth Sekar 
18728988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroAssigned",
18738988dda4SSuryakanth Sekar                  {
18748988dda4SSuryakanth Sekar                      "Indicates that non root user assigned with user ID zero.",
18758988dda4SSuryakanth Sekar                      "User ID Zero is assigned with non-root user.",
18768988dda4SSuryakanth Sekar                      "Critical",
18778988dda4SSuryakanth Sekar                      0,
18788988dda4SSuryakanth Sekar                      {},
18798988dda4SSuryakanth Sekar                      "None.",
18808988dda4SSuryakanth Sekar                  }},
18818988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserNonRootUidZeroRemoved",
18828988dda4SSuryakanth Sekar                  {
18838988dda4SSuryakanth Sekar                      "Indicates that non root user ID is removed",
18848988dda4SSuryakanth Sekar                      "Non root user assigned with user ID zero is removed.",
18858988dda4SSuryakanth Sekar                      "OK",
18868988dda4SSuryakanth Sekar                      0,
18878988dda4SSuryakanth Sekar                      {},
18888988dda4SSuryakanth Sekar                      "None.",
18898988dda4SSuryakanth Sekar                  }},
18908988dda4SSuryakanth Sekar 
18918988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootEnabled",
18928988dda4SSuryakanth Sekar                  {
18938988dda4SSuryakanth Sekar                      "Indicates that system root user is enabled.",
18948988dda4SSuryakanth Sekar                      "User root is enabled.",
18958988dda4SSuryakanth Sekar                      "Critical",
18968988dda4SSuryakanth Sekar                      0,
18978988dda4SSuryakanth Sekar                      {},
18988988dda4SSuryakanth Sekar                      "None.",
18998988dda4SSuryakanth Sekar                  }},
19008988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserRootDisabled",
19018988dda4SSuryakanth Sekar                  {
19028988dda4SSuryakanth Sekar                      "Indicates that system root user is disabled.",
19038988dda4SSuryakanth Sekar                      "User root is disabled.",
19048988dda4SSuryakanth Sekar                      "OK",
19058988dda4SSuryakanth Sekar                      0,
19068988dda4SSuryakanth Sekar                      {},
19078988dda4SSuryakanth Sekar                      "None.",
19088988dda4SSuryakanth Sekar                  }},
19098988dda4SSuryakanth Sekar 
19108988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellEnabled",
19118988dda4SSuryakanth Sekar                  {
19128988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is enabled.",
19138988dda4SSuryakanth Sekar                      "Unsupported shell is enabled.",
19148988dda4SSuryakanth Sekar                      "Critical",
19158988dda4SSuryakanth Sekar                      0,
19168988dda4SSuryakanth Sekar                      {},
19178988dda4SSuryakanth Sekar                      "None.",
19188988dda4SSuryakanth Sekar                  }},
19198988dda4SSuryakanth Sekar     MessageEntry{"SecurityUserUnsupportedShellRemoved",
19208988dda4SSuryakanth Sekar                  {
19218988dda4SSuryakanth Sekar                      "Indicates that unsupported shell is removed.",
19228988dda4SSuryakanth Sekar                      "Unsupported shell is removed.",
19238988dda4SSuryakanth Sekar                      "OK",
19248988dda4SSuryakanth Sekar                      0,
19258988dda4SSuryakanth Sekar                      {},
19268988dda4SSuryakanth Sekar                      "None.",
19278988dda4SSuryakanth Sekar                  }},
19288988dda4SSuryakanth Sekar 
19298988dda4SSuryakanth Sekar     MessageEntry{
19308988dda4SSuryakanth Sekar         "SecurityUserWeakHashAlgoEnabled",
19318988dda4SSuryakanth Sekar         {
19328988dda4SSuryakanth Sekar             "Indicates that weak password computing hash algorithm is enabled.",
19338988dda4SSuryakanth Sekar             "Weak password computing hash algorithm is enabled.",
19348988dda4SSuryakanth Sekar             "Critical",
19358988dda4SSuryakanth Sekar             0,
19368988dda4SSuryakanth Sekar             {},
19378988dda4SSuryakanth Sekar             "None.",
19388988dda4SSuryakanth Sekar         }},
1939fbe8378fSJason M. Bills     MessageEntry{"SELEntryAdded",
1940fbe8378fSJason M. Bills                  {
1941271584abSEd Tanous                      "Indicates a SEL entry was added using the "
1942fbe8378fSJason M. Bills                      "Add SEL Entry or Platform Event command.",
1943271584abSEd Tanous                      "SEL Entry Added: %1",
1944271584abSEd Tanous                      "OK",
1945271584abSEd Tanous                      1,
1946271584abSEd Tanous 
1947fbe8378fSJason M. Bills                      {
1948fbe8378fSJason M. Bills                          "string",
1949fbe8378fSJason M. Bills                      },
1950271584abSEd Tanous                      "None.",
1951fbe8378fSJason M. Bills                  }},
1952271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingHigh",
1953fbe8378fSJason M. Bills                  {
1954271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1955fbe8378fSJason M. Bills                      "critical high threshold going high.",
1956271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going "
1957fbe8378fSJason M. Bills                      "high. Reading=%2 Threshold=%3.",
1958271584abSEd Tanous                      "Critical",
1959271584abSEd Tanous                      3,
1960271584abSEd Tanous                      {"string", "number", "number"},
1961271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1962fbe8378fSJason M. Bills                  }},
1963271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalHighGoingLow",
1964fbe8378fSJason M. Bills                  {
1965271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1966fbe8378fSJason M. Bills                      "critical high threshold going low.",
1967271584abSEd Tanous                      "%1 sensor crossed a critical high threshold going low. "
1968fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1969271584abSEd Tanous                      "OK",
1970271584abSEd Tanous                      3,
1971271584abSEd Tanous                      {"string", "number", "number"},
1972271584abSEd Tanous                      "None.",
1973fbe8378fSJason M. Bills                  }},
1974271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingHigh",
1975fbe8378fSJason M. Bills                  {
1976271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1977fbe8378fSJason M. Bills                      "critical low threshold going high.",
1978271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going high. "
1979fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1980271584abSEd Tanous                      "OK",
1981271584abSEd Tanous                      3,
1982271584abSEd Tanous                      {"string", "number", "number"},
1983271584abSEd Tanous                      "None.",
1984fbe8378fSJason M. Bills                  }},
1985271584abSEd Tanous     MessageEntry{"SensorThresholdCriticalLowGoingLow",
1986fbe8378fSJason M. Bills                  {
1987271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1988fbe8378fSJason M. Bills                      "critical low threshold going low.",
1989271584abSEd Tanous                      "%1 sensor crossed a critical low threshold going low. "
1990fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
1991271584abSEd Tanous                      "Critical",
1992271584abSEd Tanous                      3,
1993271584abSEd Tanous                      {"string", "number", "number"},
1994271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
1995fbe8378fSJason M. Bills                  }},
1996271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingHigh",
1997fbe8378fSJason M. Bills                  {
1998271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
1999fbe8378fSJason M. Bills                      "warning high threshold going high.",
2000271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going high. "
2001fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2002271584abSEd Tanous                      "Warning",
2003271584abSEd Tanous                      3,
2004271584abSEd Tanous                      {"string", "number", "number"},
2005271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
2006fbe8378fSJason M. Bills                  }},
2007271584abSEd Tanous     MessageEntry{"SensorThresholdWarningHighGoingLow",
2008fbe8378fSJason M. Bills                  {
2009271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2010fbe8378fSJason M. Bills                      "warning high threshold going low.",
2011271584abSEd Tanous                      "%1 sensor crossed a warning high threshold going low. "
2012fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2013271584abSEd Tanous                      "OK",
2014271584abSEd Tanous                      3,
2015271584abSEd Tanous                      {"string", "number", "number"},
2016271584abSEd Tanous                      "None.",
2017fbe8378fSJason M. Bills                  }},
2018271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingHigh",
2019fbe8378fSJason M. Bills                  {
2020271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2021fbe8378fSJason M. Bills                      "warning low threshold going high.",
2022271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going high. "
2023fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2024271584abSEd Tanous                      "OK",
2025271584abSEd Tanous                      3,
2026271584abSEd Tanous                      {"string", "number", "number"},
2027271584abSEd Tanous                      "None.",
2028fbe8378fSJason M. Bills                  }},
2029271584abSEd Tanous     MessageEntry{"SensorThresholdWarningLowGoingLow",
2030fbe8378fSJason M. Bills                  {
2031271584abSEd Tanous                      "Indicates that a threshold sensor has crossed a "
2032fbe8378fSJason M. Bills                      "warning low threshold going low.",
2033271584abSEd Tanous                      "%1 sensor crossed a warning low threshold going low. "
2034fbe8378fSJason M. Bills                      "Reading=%2 Threshold=%3.",
2035271584abSEd Tanous                      "Warning",
2036271584abSEd Tanous                      3,
2037271584abSEd Tanous                      {"string", "number", "number"},
2038271584abSEd Tanous                      "Check the sensor or subsystem for errors.",
2039fbe8378fSJason M. Bills                  }},
2040fb7579e9SJames Feist     MessageEntry{"ServiceFailure",
2041fb7579e9SJames Feist                  {
2042fb7579e9SJames Feist                      "Indicates that a service has exited unsuccessfully.",
2043271584abSEd Tanous                      "Service %1 has exited unsuccessfully.",
2044271584abSEd Tanous                      "Warning",
2045271584abSEd Tanous                      1,
2046271584abSEd Tanous                      {"string"},
2047271584abSEd Tanous                      "None.",
2048fb7579e9SJames Feist                  }},
2049fbe8378fSJason M. Bills     MessageEntry{"SparingRedundancyDegraded",
2050fbe8378fSJason M. Bills                  {
2051fbe8378fSJason M. Bills                      "Indicates the sparing redundancy state is degraded.",
2052271584abSEd Tanous                      "Sparing redundancy state degraded. Socket=%1 "
2053fbe8378fSJason M. Bills                      "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
2054271584abSEd Tanous                      "Warning",
2055271584abSEd Tanous                      5,
2056271584abSEd Tanous 
2057fbe8378fSJason M. Bills                      {
2058fbe8378fSJason M. Bills                          "number",
2059fbe8378fSJason M. Bills                          "string",
2060fbe8378fSJason M. Bills                          "number",
2061fbe8378fSJason M. Bills                          "string",
2062fbe8378fSJason M. Bills                          "number",
2063fbe8378fSJason M. Bills                      },
2064271584abSEd Tanous                      "None.",
2065fbe8378fSJason M. Bills                  }},
2066fbe8378fSJason M. Bills     MessageEntry{
2067fbe8378fSJason M. Bills         "SparingRedundancyFull",
2068fbe8378fSJason M. Bills         {
2069fbe8378fSJason M. Bills             "Indicates the sparing redundancy state is fully redundant.",
2070271584abSEd Tanous             "Sparing redundancy state fully redundant. Socket=%1 "
2071fbe8378fSJason M. Bills             "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
2072271584abSEd Tanous             "OK",
2073271584abSEd Tanous             5,
2074271584abSEd Tanous 
2075fbe8378fSJason M. Bills             {
2076fbe8378fSJason M. Bills                 "number",
2077fbe8378fSJason M. Bills                 "string",
2078fbe8378fSJason M. Bills                 "number",
2079fbe8378fSJason M. Bills                 "string",
2080fbe8378fSJason M. Bills                 "number",
2081fbe8378fSJason M. Bills             },
2082271584abSEd Tanous             "None.",
2083fbe8378fSJason M. Bills         }},
2084271584abSEd Tanous     MessageEntry{"SsbThermalTrip",
2085b76f9ca1SChen,Yugang                  {
2086b76f9ca1SChen,Yugang                      "Indicates that an SSB Thermal trip has been asserted.",
2087271584abSEd Tanous                      "SSB Thermal trip.",
2088271584abSEd Tanous                      "Critical",
2089271584abSEd Tanous                      0,
2090271584abSEd Tanous                      {},
2091271584abSEd Tanous                      "None.",
2092b76f9ca1SChen,Yugang                  }},
209352efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceDisabledProvisioned",
209452efa5d6SRichard Marian Thomaiyar                  {
209552efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the disabled "
209652efa5d6SRichard Marian Thomaiyar                      "provisioned state. All commands are blocked to execute "
209752efa5d6SRichard Marian Thomaiyar                      "through the system interface.",
209852efa5d6SRichard Marian Thomaiyar                      "The system interface is in the disabled provisioned "
209952efa5d6SRichard Marian Thomaiyar                      "state.",
210052efa5d6SRichard Marian Thomaiyar                      "OK",
210152efa5d6SRichard Marian Thomaiyar                      0,
210252efa5d6SRichard Marian Thomaiyar                      {},
210352efa5d6SRichard Marian Thomaiyar                      "None.",
210452efa5d6SRichard Marian Thomaiyar                  }},
210552efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceUnprovisioned",
210652efa5d6SRichard Marian Thomaiyar                  {
210752efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the "
210852efa5d6SRichard Marian Thomaiyar                      "unprovisioned state. All commands are permitted to "
210952efa5d6SRichard Marian Thomaiyar                      "execute through the system interface.",
211052efa5d6SRichard Marian Thomaiyar                      "The system interface is in the unprovisioned state.",
211152efa5d6SRichard Marian Thomaiyar                      "Critical",
211252efa5d6SRichard Marian Thomaiyar                      0,
211352efa5d6SRichard Marian Thomaiyar                      {},
211452efa5d6SRichard Marian Thomaiyar                      "None.",
211552efa5d6SRichard Marian Thomaiyar                  }},
211652efa5d6SRichard Marian Thomaiyar     MessageEntry{"SystemInterfaceWhitelistProvisioned",
211752efa5d6SRichard Marian Thomaiyar                  {
211852efa5d6SRichard Marian Thomaiyar                      "Indicates that the system interface is in the whitelist "
211952efa5d6SRichard Marian Thomaiyar                      "provisioned state. Only whitelisted commands "
212052efa5d6SRichard Marian Thomaiyar                      "are permitted to execute through the system interface.",
212152efa5d6SRichard Marian Thomaiyar                      "The system interface is in the whitelist provisioned "
212252efa5d6SRichard Marian Thomaiyar                      "state.",
212352efa5d6SRichard Marian Thomaiyar                      "Warning",
212452efa5d6SRichard Marian Thomaiyar                      0,
212552efa5d6SRichard Marian Thomaiyar                      {},
212652efa5d6SRichard Marian Thomaiyar                      "None.",
212752efa5d6SRichard Marian Thomaiyar                  }},
2128bc48a175SJason M. Bills     MessageEntry{"SystemPowerGoodFailed",
2129bc48a175SJason M. Bills                  {
2130bc48a175SJason M. Bills                      "Indicates that the system power good signal failed "
2131bc48a175SJason M. Bills                      "to assert within the specified time (VR failure).",
2132271584abSEd Tanous                      "System power good failed to assert within %1 "
2133bc48a175SJason M. Bills                      "milliseconds (VR failure).",
2134271584abSEd Tanous                      "Critical",
2135271584abSEd Tanous                      1,
2136271584abSEd Tanous                      {"number"},
2137271584abSEd Tanous                      "None.",
2138bc48a175SJason M. Bills                  }},
2139fbe8378fSJason M. Bills     MessageEntry{"SystemPowerLost",
2140fbe8378fSJason M. Bills                  {
2141271584abSEd Tanous                      "Indicates that power was lost while the "
2142fbe8378fSJason M. Bills                      "system was powered on.",
2143271584abSEd Tanous                      "System Power Lost.",
2144271584abSEd Tanous                      "Critical",
2145271584abSEd Tanous                      0,
2146271584abSEd Tanous                      {},
2147271584abSEd Tanous                      "None.",
2148fbe8378fSJason M. Bills                  }},
2149271584abSEd Tanous     MessageEntry{"SystemPowerOffFailed",
2150fbe8378fSJason M. Bills                  {
2151271584abSEd Tanous                      "Indicates that the system failed to power off.",
2152271584abSEd Tanous                      "System Power-Off Failed.",
2153271584abSEd Tanous                      "Critical",
2154271584abSEd Tanous                      0,
2155271584abSEd Tanous                      {},
2156271584abSEd Tanous                      "None.",
2157fbe8378fSJason M. Bills                  }},
2158271584abSEd Tanous     MessageEntry{"SystemPowerOnFailed",
2159fbe8378fSJason M. Bills                  {
2160271584abSEd Tanous                      "Indicates that the system failed to power on.",
2161271584abSEd Tanous                      "System Power-On Failed.",
2162271584abSEd Tanous                      "Critical",
2163271584abSEd Tanous                      0,
2164271584abSEd Tanous                      {},
2165271584abSEd Tanous                      "None.",
2166fbe8378fSJason M. Bills                  }},
216773de092fSJason M. Bills     MessageEntry{
216873de092fSJason M. Bills         "VoltageRegulatorOverheated",
216973de092fSJason M. Bills         {
217073de092fSJason M. Bills             "Indicates that the specified voltage regulator overheated.",
2171271584abSEd Tanous             "%1 Voltage Regulator Overheated.",
2172271584abSEd Tanous             "Critical",
2173271584abSEd Tanous             1,
2174271584abSEd Tanous             {"string"},
2175271584abSEd Tanous             "None.",
217673de092fSJason M. Bills         }},
21779aa46454SAgnieszka Szlendak 
2178fbe8378fSJason M. Bills };
2179fbe8378fSJason M. Bills } // namespace redfish::message_registries::openbmc
2180