xref: /openbmc/bmcweb/redfish-core/include/registries/openbmc_message_registry.hpp (revision 96330b9965034bacf1f676c8f049f273db82cc14)
1 /*
2 // Copyright (c) 2019 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //      http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 */
16 #pragma once
17 #include <registries.hpp>
18 
19 namespace redfish::message_registries::openbmc
20 {
21 const Header header = {
22     "Copyright 2018 OpenBMC. All rights reserved.",
23     "#MessageRegistry.v1_4_0.MessageRegistry",
24     "OpenBMC.0.1.0",
25     "OpenBMC Message Registry",
26     "en",
27     "This registry defines the base messages for OpenBMC.",
28     "OpenBMC",
29     "0.1.0",
30     "OpenBMC",
31 };
32 constexpr std::array<MessageEntry, 183> registry = {
33     MessageEntry{
34         "ADDDCCorrectable",
35         {
36             "Indicates an ADDDC Correctable Error.",
37             "ADDDC Correctable Error.Socket=%1 Channel=%2 DIMM=%3 Rank=%4.",
38             "Warning",
39             "Warning",
40             4,
41             {
42                 "number",
43                 "string",
44                 "number",
45                 "number",
46             },
47             "None.",
48         }},
49     MessageEntry{
50         "AtScaleDebugFeatureEnabledAtHardware",
51         {
52             "Indicates that At-Scale Debug enable is detected in hardware.",
53             "At-Scale Debug Feature is enabled in hardware.",
54             "Critical",
55             "Critical",
56             0,
57             {},
58             "None.",
59         }},
60     MessageEntry{
61         "AtScaleDebugFeatureDisabledAtHardware",
62         {
63             "Indicates that At-Scale Debug disable is detected in hardware.",
64             "At-Scale Debug Feature is disabled in hardware.",
65             "OK",
66             "OK",
67             0,
68             {},
69             "None.",
70         }},
71     MessageEntry{"AtScaleDebugFeatureEnabled",
72                  {
73                      "Indicates that At-Scale Debug service is started.",
74                      "At-Scale Debug service is started.",
75                      "Critical",
76                      "Critical",
77                      0,
78                      {},
79                      "None.",
80                  }},
81     MessageEntry{"AtScaleDebugFeatureDisabled",
82                  {
83                      "Indicates that At-Scale Debug service is stopped.",
84                      "At-Scale Debug service is stopped.",
85                      "OK",
86                      "OK",
87                      0,
88                      {},
89                      "None.",
90                  }},
91     MessageEntry{"AtScaleDebugConnected",
92                  {
93                      "Indicates At-Scale Debug connection has been established",
94                      "At-Scale Debug service is now connected %1",
95                      "Critical",
96                      "Critical",
97                      1,
98                      {"string"},
99                      "None.",
100                  }},
101     MessageEntry{"AtScaleDebugDisconnected",
102                  {
103                      "Indicates At-Scale Debug connection has ended",
104                      "At-Scale Debug service is now disconnected",
105                      "OK",
106                      "OK",
107                      0,
108                      {},
109                      "None.",
110                  }},
111     MessageEntry{"AtScaleDebugConnectionFailed",
112                  {
113                      "Indicates At-Scale Debug connection aborted/failed",
114                      "At-Scale Debug connection aborted/failed",
115                      "Critical",
116                      "Critical",
117                      0,
118                      {},
119                      "None.",
120                  }},
121     MessageEntry{"AtScaleDebugSpecialUserEnabled",
122                  {
123                      "Indicates that special user is enabled.",
124                      "At-Scale Debug special user is enabled",
125                      "Critical",
126                      "Critical",
127                      0,
128                      {},
129                      "None.",
130                  }},
131     MessageEntry{"AtScaleDebugSpecialUserDisabled",
132                  {
133                      "Indicates that special user is disabled.",
134                      "At-Scale Debug special user is disabled",
135                      "OK",
136                      "OK",
137                      0,
138                      {},
139                      "None.",
140                  }},
141 
142     MessageEntry{
143         "BIOSBoot",
144         {
145             "Indicates BIOS has transitioned control to the OS Loader.",
146             "BIOS System Boot.",
147             "OK",
148             "OK",
149             0,
150             {},
151             "None.",
152         }},
153     MessageEntry{"BIOSFirmwarePanicReason",
154                  {
155                      "Indicates the reason for BIOS firmware panic.",
156                      "BIOS firmware panic occurred due to %1.",
157                      "Warning",
158                      "Warning",
159                      1,
160                      {
161                          "string",
162                      },
163                      "None.",
164                  }},
165     MessageEntry{"BIOSFirmwareRecoveryReason",
166                  {
167                      "Indicates the reason for BIOS firmware recovery.",
168                      "BIOS firmware recovery occurred due to %1.",
169                      "Warning",
170                      "Warning",
171                      1,
172                      {
173                          "string",
174                      },
175                      "None.",
176                  }},
177     MessageEntry{"BIOSFirmwareResiliencyError",
178                  {
179                      "Indicates BIOS firmware encountered resilience error.",
180                      "BIOS firmware resiliency error. Error reason: %1.",
181                      "Critical",
182                      "Critical",
183                      1,
184                      {
185                          "string",
186                      },
187                      "None.",
188                  }},
189     MessageEntry{"BIOSPOSTCode",
190                  {
191                      "BIOS Power-On Self-Test Code received",
192                      "Boot Count: %1: TS Offset: %2; POST Code: %3",
193                      "OK",
194                      "OK",
195                      3,
196                      {"number", "number", "number"},
197                      "None.",
198                  }},
199     MessageEntry{"BIOSPOSTError",
200                  {
201                      "Indicates BIOS POST has encountered an error.",
202                      "BIOS POST Error. Error Code=%1",
203                      "Warning",
204                      "Warning",
205                      1,
206                      {"number"},
207                      "None.",
208                  }},
209     MessageEntry{"BIOSRecoveryComplete",
210                  {
211                      "Indicates BIOS Recovery has completed.",
212                      "BIOS Recovery Complete.",
213                      "OK",
214                      "OK",
215                      0,
216                      {},
217                      "None.",
218                  }},
219     MessageEntry{"BIOSRecoveryStart",
220                  {
221                      "Indicates BIOS Recovery has started.",
222                      "BIOS Recovery Start.",
223                      "Warning",
224                      "Warning",
225                      0,
226                      {},
227                      "None.",
228                  }},
229     MessageEntry{"BMCKernelPanic",
230                  {
231                      "Indicates that BMC kernel panic occurred.",
232                      "BMC rebooted due to kernel panic.",
233                      "OK",
234                      "OK",
235                      0,
236                      {},
237                      "None.",
238                  }},
239     MessageEntry{"BMCFirmwarePanicReason",
240                  {
241                      "Indicates the reason for last BMC firmware panic.",
242                      "BMC firmware panic occurred due to %1.",
243                      "Warning",
244                      "Warning",
245                      1,
246                      {
247                          "string",
248                      },
249                      "None.",
250                  }},
251     MessageEntry{"BMCFirmwareRecoveryReason",
252                  {
253                      "Indicates the reason for last BMC firmware recovery.",
254                      "BMC firmware recovery occurred due to %1.",
255                      "Warning",
256                      "Warning",
257                      1,
258                      {
259                          "string",
260                      },
261                      "None.",
262                  }},
263     MessageEntry{"BMCFirmwareResiliencyError",
264                  {
265                      "Indicates BMC firmware encountered resilience error.",
266                      "BMC firmware resiliency error. Error reason: %1.",
267                      "Critical",
268                      "Critical",
269                      1,
270                      {
271                          "string",
272                      },
273                      "None.",
274                  }},
275     MessageEntry{"ChassisIntrusionDetected",
276                  {
277                      "Indicates that a physical security event "
278                      "of the chassis intrusion has occurred.",
279                      "Chassis Intrusion Detected.",
280                      "Warning",
281                      "Warning",
282                      0,
283                      {},
284                      "None.",
285                  }},
286     MessageEntry{"ChassisIntrusionReset",
287                  {
288                      "Indicates that chassis intrusion status has recovered.",
289                      "Chassis Intrusion Reset.",
290                      "OK",
291                      "OK",
292                      0,
293                      {},
294                      "None.",
295                  }},
296     MessageEntry{"CPLDFirmwarePanicReason",
297                  {
298                      "Indicates the reason for CPLD firmware panic.",
299                      "CPLD firmware panic occurred due to %1.",
300                      "Warning",
301                      "Warning",
302                      1,
303                      {
304                          "string",
305                      },
306                      "None.",
307                  }},
308     MessageEntry{"CPLDFirmwareRecoveryReason",
309                  {
310                      "Indicates the reason for CPLD firmware recovery.",
311                      "CPLD firmware recovery occurred due to %1.",
312                      "Warning",
313                      "Warning",
314                      1,
315                      {
316                          "string",
317                      },
318                      "None.",
319                  }},
320     MessageEntry{"CPLDFirmwareResiliencyError",
321                  {
322                      "Indicates CPLD firmware encountered resilience error.",
323                      "CPLD firmware resiliency error. Error reason: %1.",
324                      "Critical",
325                      "Critical",
326                      1,
327                      {
328                          "string",
329                      },
330                      "None.",
331                  }},
332     MessageEntry{"CPUError",
333                  {
334                      "Indicates that a CPU Error occurred of "
335                      "the specified type or cause.",
336                      "CPU Error Occurred: %1.",
337                      "Critical",
338                      "Critical",
339                      1,
340                      {"string"},
341                      "None.",
342                  }},
343     MessageEntry{"CPUMismatch",
344                  {
345                      "Indicates that the specified CPU power/current "
346                      "rating is incompatible with the board.",
347                      "CPU %1 Mismatch.",
348                      "Critical",
349                      "Critical",
350                      1,
351                      {"number"},
352                      "Install the supported CPU.",
353                  }},
354     MessageEntry{"CPUThermalTrip",
355                  {
356                      "Indicates that the specified CPU thermal "
357                      "trip has been asserted.",
358                      "CPU %1 Thermal Trip.",
359                      "Critical",
360                      "Critical",
361                      1,
362                      {"number"},
363                      "None.",
364                  }},
365     MessageEntry{"DCPowerOff",
366                  {
367                      "Indicates that the system DC power is off.",
368                      "Host system DC power is off",
369                      "OK",
370                      "OK",
371                      0,
372                      {},
373                      "None.",
374                  }},
375     MessageEntry{"DCPowerOn",
376                  {
377                      "Indicates that the system DC power is on.",
378                      "Host system DC power is on",
379                      "OK",
380                      "OK",
381                      0,
382                      {},
383                      "None.",
384                  }},
385     MessageEntry{"DriveError",
386                  {
387                      "Indicates that a Drive Error occurred of "
388                      "the specified type or cause.",
389                      "Drive Error Occurred: %1.",
390                      "Warning",
391                      "Warning",
392                      1,
393                      {"string"},
394                      "None.",
395                  }},
396     MessageEntry{"EventLogCleared",
397                  {
398                      "Indicates that the event log has been cleared.",
399                      "Event Log Cleared.",
400                      "OK",
401                      "OK",
402                      0,
403                      {},
404                      "None.",
405                  }},
406     MessageEntry{"FanInserted",
407                  {
408                      "Indicates that a system fan has been inserted.",
409                      "%1 inserted.",
410                      "OK",
411                      "OK",
412                      1,
413                      {"string"},
414                      "None.",
415                  }},
416     MessageEntry{"FanRedundancyLost",
417                  {
418                      "Indicates that system fan redundancy has been lost.",
419                      "Fan redundancy lost.",
420                      "Warning",
421                      "Warning",
422                      0,
423                      {},
424                      "None.",
425                  }},
426     MessageEntry{"FanRedundancyRegained",
427                  {
428                      "Indicates that system fan redundancy has been regained.",
429                      "Fan redundancy regained.",
430                      "OK",
431                      "OK",
432                      0,
433                      {},
434                      "None.",
435                  }},
436     MessageEntry{"FanRemoved",
437                  {
438                      "Indicates that a system fan has been removed.",
439                      "%1 removed.",
440                      "OK",
441                      "OK",
442                      1,
443                      {"string"},
444                      "None.",
445                  }},
446     MessageEntry{"FirmwareUpdateCompleted",
447                  {
448                      "Indicates a firmware update has completed successfully.",
449                      "%1 firmware update to version %2 completed "
450                      "successfully.",
451                      "OK",
452                      "OK",
453                      2,
454                      {"string", "string"},
455                      "None.",
456                  }},
457     MessageEntry{"FirmwareUpdateFailed",
458                  {
459                      "Indicates a firmware update has failed.",
460                      "%1 firmware update to version %2 failed: %3.",
461                      "Warning",
462                      "Warning",
463                      3,
464                      {"string", "string", "string"},
465                      "None.",
466                  }},
467     MessageEntry{"FirmwareUpdateStaged",
468                  {
469                      "Indicates a firmware update has staged successfully.",
470                      "%1 firmware update to version %2 staged successfully.",
471                      "OK",
472                      "OK",
473                      2,
474                      {"string", "string"},
475                      "None.",
476                  }},
477     MessageEntry{"FirmwareUpdateStarted",
478                  {
479                      "Indicates a firmware update has started.",
480                      "%1 firmware update to version %2 started.",
481                      "OK",
482                      "OK",
483                      2,
484                      {"string", "string"},
485                      "None.",
486                  }},
487     MessageEntry{
488         "GeneralFirmwareSecurityViolation",
489         {
490             "Indicates a general firmware security violation has occurred.",
491             "Firmware security violation: %1.",
492             "Critical",
493             "Critical",
494             1,
495             {"string"},
496             "None.",
497         }},
498     MessageEntry{"InvalidLoginAttempted",
499                  {
500                      "Indicates that a login was attempted on the specified "
501                      "interface with an invalid username or password.",
502                      "Invalid username or password attempted on %1.",
503                      "Warning",
504                      "Warning",
505                      1,
506                      {"string"},
507                      "None.",
508                  }},
509     MessageEntry{"InvalidUpload",
510                  {
511                      "Indicates that the uploaded file was invalid.",
512                      "Invalid file uploaded to %1: %2.",
513                      "Warning",
514                      "Warning",
515                      2,
516                      {"string", "string"},
517                      "None.",
518                  }},
519     MessageEntry{
520         "InventoryAdded",
521         {
522             "Indicates that an inventory item with the specified model, "
523             "type, and serial number was installed.",
524             "%1 %2 with serial number %3 was installed.",
525             "OK",
526             "OK",
527             3,
528 
529             {
530                 "string",
531                 "string",
532                 "string",
533             },
534             "None.",
535         }},
536     MessageEntry{
537         "InventoryRemoved",
538         {
539             "Indicates that an inventory item with the specified model, "
540             "type, and serial number was removed.",
541             "%1 %2 with serial number %3 was removed.",
542             "OK",
543             "OK",
544             3,
545 
546             {
547                 "string",
548                 "string",
549                 "string",
550             },
551             "None.",
552         }},
553     MessageEntry{
554         "IntelUPILinkWidthReducedToHalf",
555         {
556             "Indicates Intel UPI link width has reduced to half width.",
557             "Intel UPI link width reduced to half. Node=%1.",
558             "Warning",
559             "Warning",
560             1,
561 
562             {
563                 "number",
564             },
565             "None.",
566         }},
567     MessageEntry{
568         "IntelUPILinkWidthReducedToQuarter",
569         {
570             "Indicates Intel UPI link width has reduced to quarter width.",
571             "Intel UPI link width reduced to quarter. Node=%1.",
572             "Warning",
573             "Warning",
574             1,
575 
576             {
577                 "number",
578             },
579             "None.",
580         }},
581 
582     MessageEntry{"IPMIWatchdog",
583                  {
584                      "Indicates that there is a host watchdog event.",
585                      "Host Watchdog Event: %1",
586                      "OK",
587                      "OK",
588                      1,
589 
590                      {
591                          "string",
592                      },
593                      "None.",
594                  }},
595     MessageEntry{"LanLost",
596                  {
597                      "Indicates that a physical security event "
598                      "of the LAN leash has lost.",
599                      "%1 LAN leash lost.",
600                      "Warning",
601                      "Warning",
602                      1,
603                      {
604                          "string",
605                      },
606                      "None.",
607                  }},
608     MessageEntry{"LanRegained",
609                  {
610                      "Indicates that LAN link status has reconnected.",
611                      "%1 LAN leash regained.",
612                      "OK",
613                      "OK",
614                      1,
615                      {
616                          "string",
617                      },
618                      "None.",
619                  }},
620     MessageEntry{"LegacyPCIPERR",
621                  {
622                      "Indicates a Legacy PCI PERR.",
623                      "Legacy PCI PERR. Bus=%1 Device=%2 Function=%3.",
624                      "Warning",
625                      "Warning",
626                      3,
627 
628                      {
629                          "number",
630                          "number",
631                          "number",
632                      },
633                      "None.",
634                  }},
635     MessageEntry{"LegacyPCISERR",
636                  {
637                      "Indicates a Legacy PCI SERR.",
638                      "Legacy PCI SERR. Bus=%1 Device=%2 Function=%3.",
639                      "Critical",
640                      "Critical",
641                      3,
642 
643                      {
644                          "number",
645                          "number",
646                          "number",
647                      },
648                      "None.",
649                  }},
650     MessageEntry{"ManufacturingModeEntered",
651                  {
652                      "Indicates that the BMC entered Factory, "
653                      "or Manufacturing mode.",
654                      "Entered Manufacturing Mode.",
655                      "Critical",
656                      "Critical",
657                      0,
658                      {},
659                      "None.",
660                  }},
661     MessageEntry{"ManufacturingModeExited",
662                  {
663                      "Indicates that the BMC exited Factory, "
664                      "or Manufacturing mode.",
665                      "Exited Manufacturing Mode.",
666                      "OK",
667                      "OK",
668                      0,
669                      {},
670                      "None.",
671                  }},
672     MessageEntry{"MEAutoConfigFailed",
673                  {
674                      "Indicates that Intel ME power sensor "
675                      "auto-configuration has failed.",
676                      "Intel ME power sensor auto-configuration failed. Power "
677                      "monitoring, limiting and HW protection features might "
678                      "be unavailable. Failure reason: %1",
679                      "Critical",
680                      "Critical",
681                      1,
682                      {"string"},
683                      "Ensure that Intel ME configuration for power "
684                      "sources is correct.",
685                  }},
686     MessageEntry{
687         "MEAutoConfigSuccess",
688         {
689             "Indicates that Intel ME has performed successful "
690             "power sensor auto-configuration.",
691             "Intel ME power sensor auto-configuration succeeded. "
692             "Determined sources for domain readings are: DC Power: %1 ; "
693             "Chassis Power: %2 ; PSU Efficiency: %3 ; Unamanaged power: %4",
694             "OK",
695             "OK",
696             4,
697             {"string", "string", "string", "string"},
698             "None.",
699         }},
700     MessageEntry{"MEBootGuardHealthEvent",
701                  {
702                      "Indicates that Intel ME has detected error during "
703                      "operations of Intel Boot Guard",
704                      "Intel ME has detected following issue with Intel Boot "
705                      "Guard: %1",
706                      "Critical",
707                      "Critical",
708                      1,
709                      {"string"},
710                      "None.",
711                  }},
712     MessageEntry{"MECpuDebugCapabilityDisabled",
713                  {
714                      "Indicates that Intel ME has detected situation in "
715                      "which CPU Debug Capability is disabled.",
716                      "CPU Debug Capability disabled",
717                      "Warning",
718                      "Warning",
719                      0,
720                      {},
721                      "None.",
722                  }},
723     MessageEntry{"MEDirectFlashUpdateRequested",
724                  {
725                      "Indicates that BIOS has requested Direct Flash "
726                      "Update (DFU) of Intel ME",
727                      "Intel ME Firmware switched to recovery mode to perform "
728                      "full update from BIOS.",
729                      "OK",
730                      "OK",
731                      0,
732                      {},
733                      "This is transient state. Intel ME Firmware should "
734                      "return to operational mode after successful image "
735                      "update performed by the BIOS.",
736                  }},
737     MessageEntry{
738         "MEExceptionDuringShutdown",
739         {
740             "Indicates that Intel ME could not successfully "
741             "perform emergency host shutdown.",
742             "Power Down command triggered by Intel Node Manager policy "
743             "failure action and Intel ME forced shutdown. BMC probably did "
744             "not respond correctly to Chassis Control.",
745             "Warning",
746             "Warning",
747             0,
748             {},
749             "Verify the Intel Node Manager policy configuration.",
750         }},
751     MessageEntry{
752         "MEFactoryResetError",
753         {
754             "Indicates that Intel ME has ben restored to factory preset.",
755             "Intel ME has performed automatic reset to factory "
756             "presets due to following reason: %1",
757             "Critical",
758             "Critical",
759             1,
760             {"string"},
761             "If error is persistent the Flash device must be replaced.",
762         }},
763     MessageEntry{
764         "MEFactoryRestore",
765         {
766             "Indicates that Intel ME has ben restored to factory preset.",
767             "Intel ME has performed automatic reset to factory "
768             "presets due to following reason: %1",
769             "OK",
770             "OK",
771             1,
772             {"string"},
773             "If error is persistent the Flash device must be replaced.",
774         }},
775     MessageEntry{
776         "MEFirmwareException",
777         {
778             "Indicates that Intel ME has encountered firmware "
779             "exception during execution.",
780             "Intel ME has encountered firmware exception. Error code = %1",
781             "Warning",
782             "Warning",
783             1,
784             {"string"},
785             "Restore factory presets using Force ME Recovery IPMI "
786             "command or by doing AC power cycle with Recovery jumper "
787             "asserted. If this does not clear the issue, reflash the SPI "
788             "flash. If the issue persists, provide the content of error "
789             "code to Intel support team for interpretation. (Error codes "
790             "are not documented because they only provide clues that must "
791             "be interpreted individually..",
792         }},
793     MessageEntry{"MEFirmwarePanicReason",
794                  {
795                      "Indicates the reason for ME firmware panic.",
796                      "ME firmware panic occurred due to %1.",
797                      "Warning",
798                      "Warning",
799                      1,
800                      {
801                          "string",
802                      },
803                      "None.",
804                  }},
805     MessageEntry{"MEFirmwareRecoveryReason",
806                  {
807                      "Indicates the reason for ME firmware recovery.",
808                      "ME firmware recovery occurred due to %1.",
809                      "Warning",
810                      "Warning",
811                      1,
812                      {
813                          "string",
814                      },
815                      "None.",
816                  }},
817     MessageEntry{"MEFirmwareResiliencyError",
818                  {
819                      "Indicates ME firmware encountered resilience error.",
820                      "ME firmware resiliency error. Error reason: %1.",
821                      "Critical",
822                      "Critical",
823                      1,
824                      {
825                          "string",
826                      },
827                      "None.",
828                  }},
829 
830     MessageEntry{"MEFlashEraseError",
831                  {
832                      "Indicates that Intel ME was unable to finish flash "
833                      "erase procedure.",
834                      "Intel ME has encountered an error during Flash erasure "
835                      "procedure probably due to Flash part corruption.",
836                      "Critical",
837                      "Critical",
838                      0,
839                      {},
840                      "The Flash device must be replaced.",
841                  }},
842     MessageEntry{"MEFlashStateInformation",
843                  {
844                      "Indicates that Intel ME has encountered a problem "
845                      "during IO to flash device.",
846                      "Intel ME has encountered problem during IO to flash "
847                      "device. Reason: %1",
848                      "Critical",
849                      "Critical",
850                      1,
851                      {"string"},
852                      "If flash wear-out protection occurred wait until it "
853                      "expires. Otherwise - flash device must be replaced.",
854                  }},
855     MessageEntry{"MEFlashStateInformationWritingEnabled",
856                  {
857                      "Indicates that Intel ME has encountered a problem "
858                      "during IO to flash device.",
859                      "Intel ME has encountered problem during IO to flash "
860                      "device. Reason: %1",
861                      "OK",
862                      "OK",
863                      1,
864                      {"string"},
865                      "If flash wear-out protection occurred wait until it "
866                      "expires. Otherwise - flash device must be replaced.",
867                  }},
868     MessageEntry{"MEFlashVerificationError",
869                  {
870                      "Indicates that Intel ME encountered invalid flash "
871                      "descriptor region.",
872                      "Intel ME has detected invalid flash descriptor region. "
873                      "Following error is detected: %1",
874                      "Critical",
875                      "Critical",
876                      1,
877                      {"string"},
878                      "Flash Descriptor Region must be created correctly.",
879                  }},
880     MessageEntry{
881         "MEFlashWearOutWarning",
882         {
883             "Indicates that Intel ME has reached certain "
884             "threshold of flash write operations.",
885             "Warning threshold for number of flash operations has been "
886             "exceeded. Current percentage of write operations capacity: %1",
887             "Warning",
888             "Warning",
889             1,
890             {"number"},
891             "No immediate repair action needed.",
892         }},
893 
894     MessageEntry{
895         "MEImageExecutionFailed",
896         {
897             "Indicates that Intel ME could not load primary FW image.",
898             "Intel ME Recovery Image or backup operational image "
899             "loaded because operational image is corrupted. This "
900             "may be either caused by Flash device corruption or "
901             "failed upgrade procedure.",
902             "Critical",
903             "Critical",
904             0,
905             {},
906             "Either the Flash device must be replaced (if error is "
907             "persistent) or the upgrade procedure must be started again.",
908         }},
909 
910     MessageEntry{
911         "MEInternalError",
912         {
913             "Indicates that Intel ME encountered "
914             "internal error leading to watchdog reset.",
915             "Error during Intel ME execution. Watchdog "
916             "timeout has expired.",
917             "Critical",
918             "Critical",
919             0,
920             {},
921             "Firmware should automatically recover from error state. "
922             "If error is persistent then operational image shall be updated "
923             "or hardware board repair is needed.",
924         }},
925     MessageEntry{"MEManufacturingError",
926                  {
927                      "Indicates that Intel ME is unable to start in "
928                      "operational mode due to wrong configuration.",
929                      "Wrong manufacturing configuration detected by Intel ME "
930                      "Firmware. Unable to start operational mode. Reason: %1",
931                      "Critical",
932                      "Critical",
933                      1,
934                      {"string"},
935                      " If error is persistent the Flash device must be "
936                      "replaced or FW configuration must be updated. Trace "
937                      "logs might be gathered for detailed information.",
938                  }},
939     MessageEntry{"MEMctpInterfaceError",
940                  {
941                      "Indicates that Intel ME has encountered an error "
942                      "in MCTP protocol.",
943                      "Intel ME has detected MCTP interface failure and it is "
944                      "not functional any more. It may indicate the situation "
945                      "when MCTP was not configured by BIOS or a defect which "
946                      "may need a Host reset to recover from. Details: %1",
947                      "Critical",
948                      "Critical",
949                      1,
950                      {"string"},
951                      "Recovery via CPU Host reset or platform reset. If error "
952                      "is persistent, deep-dive platform-level debugging is "
953                      "required.",
954                  }},
955     MessageEntry{"MemoryECCCorrectable",
956                  {
957                      "Indicates a Correctable Memory ECC error.",
958                      "Memory ECC correctable error. Socket=%1 "
959                      "Channel=%2 DIMM=%3 Rank=%4.",
960                      "Warning",
961                      "Warning",
962                      4,
963 
964                      {
965                          "number",
966                          "string",
967                          "number",
968                          "number",
969                      },
970                      "None.",
971                  }},
972     MessageEntry{"MemoryECCUncorrectable",
973                  {
974                      "Indicates an Uncorrectable Memory ECC error.",
975                      "Memory ECC uncorrectable error. Socket=%1 Channel=%2 "
976                      "DIMM=%3 Rank=%4.",
977                      "Critical",
978                      "Critical",
979                      4,
980 
981                      {
982                          "number",
983                          "string",
984                          "number",
985                          "number",
986                      },
987                      "None.",
988                  }},
989     MessageEntry{"MemoryParityCommandAndAddress",
990                  {
991                      "Indicates a Command and Address parity error.",
992                      "Command and Address parity error. Socket=%1 Channel=%2 "
993                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
994                      "Critical",
995                      "Critical",
996                      5,
997 
998                      {
999                          "number",
1000                          "string",
1001                          "number",
1002                          "number",
1003                          "number",
1004                      },
1005                      "None.",
1006                  }},
1007     MessageEntry{"MemoryParityNotKnown",
1008                  {
1009                      "Indicates an unknown parity error.",
1010                      "Memory parity error. Socket=%1 Channel=%2 "
1011                      "DIMM=%3 ChannelValid=%4 DIMMValid=%5.",
1012                      "Critical",
1013                      "Critical",
1014                      5,
1015 
1016                      {
1017                          "number",
1018                          "string",
1019                          "number",
1020                          "number",
1021                          "number",
1022                      },
1023                      "None.",
1024                  }},
1025     MessageEntry{"MemoryRASConfigurationDisabled",
1026                  {
1027                      "Indicates Memory RAS Disabled Configuration Status.",
1028                      "Memory RAS Configuration Disabled. Error=%1 Mode=%2.",
1029                      "OK",
1030                      "OK",
1031                      2,
1032 
1033                      {
1034                          "string",
1035                          "string",
1036                      },
1037                      "None.",
1038                  }},
1039     MessageEntry{"MemoryRASConfigurationEnabled",
1040                  {
1041                      "Indicates Memory RAS Enabled Configuration Status.",
1042                      "Memory RAS Configuration Enabled. Error=%1 Mode=%2.",
1043                      "OK",
1044                      "OK",
1045                      2,
1046 
1047                      {
1048                          "string",
1049                          "string",
1050                      },
1051                      "None.",
1052                  }},
1053     MessageEntry{"MemoryRASModeDisabled",
1054                  {
1055                      "Indicates Memory RAS Disabled Mode Selection.",
1056                      "Memory RAS Mode Select Disabled. Prior Mode=%1 "
1057                      "Selected Mode=%2.",
1058                      "OK",
1059                      "OK",
1060                      2,
1061 
1062                      {
1063                          "string",
1064                          "string",
1065                      },
1066                      "None.",
1067                  }},
1068     MessageEntry{"MemoryRASModeEnabled",
1069                  {
1070                      "Indicates Memory RAS Enabled Mode Selection.",
1071                      "Memory RAS Mode Select Enabled. Prior Mode=%1 Selected "
1072                      "Mode=%2.",
1073                      "OK",
1074                      "OK",
1075                      2,
1076 
1077                      {
1078                          "string",
1079                          "string",
1080                      },
1081                      "None.",
1082                  }},
1083     MessageEntry{"MemoryThermTrip",
1084                  {
1085                      "Indicates that the system memory ThermTrip is asserted "
1086                      "by the specified component.",
1087                      "Memory ThermTrip asserted: %1.",
1088                      "Critical",
1089                      "Critical",
1090                      1,
1091                      {"string"},
1092                      "None.",
1093                  }},
1094     MessageEntry{"MEMultiPchModeMisconfig",
1095                  {
1096                      "Indicates that Intel ME has encountered "
1097                      "problems in initializing Multi-PCH mode.",
1098                      "Intel ME error in Multi-PCH mode: %1",
1099                      "Critical",
1100                      "Critical",
1101                      1,
1102                      {"string"},
1103                      "None.",
1104                  }},
1105     MessageEntry{
1106         "MEPeciOverDmiError",
1107         {
1108             "Indicates that Intel ME is unable to communicate "
1109             "using PECI over DMI.",
1110             "Intel ME has detected  PECI over DMI interface failure "
1111             "and it is not functional any more. It may indicate the "
1112             "situation when PECI over DMI was not configured by "
1113             "BIOS or a defect which may require a CPU Host reset to "
1114             "recover from. Details: %1",
1115             "Critical",
1116             "Critical",
1117             1,
1118             {"string"},
1119             "Recovery via CPU Host reset or platform reset. If error is "
1120             "persistent, deep-dive platform-level debugging is required.",
1121         }},
1122     MessageEntry{
1123         "MEPttHealthEvent",
1124         {
1125             "Indicates that Intel ME has encountered issue with Intel PTT",
1126             "Intel ME has detected following issue with Intel PTT: %1",
1127             "Warning",
1128             "Warning",
1129             1,
1130             {"string"},
1131             "None.",
1132         }},
1133     MessageEntry{
1134         "MERecoveryGpioForced",
1135         {
1136             "Indicates that Intel ME image is booted in "
1137             "recovery mode due to GPIO assertion.",
1138             "Intel ME Recovery Image loaded due to recovery MGPIO "
1139             "pin asserted. Pin number is configurable in factory "
1140             "presets, Default recovery pin is MGPIO1.",
1141             "OK",
1142             "OK",
1143             0,
1144             {},
1145             "Deassert recovery GPIO and reset the Intel ME back to "
1146             "operational mode. If Recovery Jumper is in legacy behavior, "
1147             "a ME reset (eg. Cold Reset IPMI cmd) is needed to have ME "
1148             "back in operational mode.",
1149         }},
1150     MessageEntry{"MERestrictedMode",
1151                  {
1152                      "Indicates events related to Intel ME restricted mode.",
1153                      "Intel ME restricted mode information: %1",
1154                      "Critical",
1155                      "Critical",
1156                      1,
1157                      {"string"},
1158                      "None.",
1159                  }},
1160     MessageEntry{
1161         "MESmbusLinkFailure",
1162         {
1163             "Indicate that Intel ME encountered SMBus link error.",
1164             "Intel ME has detected SMBus link error. "
1165             "Sensor Bus: %1 , MUX Address: %2 ",
1166             "Critical",
1167             "Critical",
1168             2,
1169             {"string", "string"},
1170             "Devices connected to given SMLINK might cause communication "
1171             "corruption. See error code and refer to Intel ME External "
1172             "Interfaces Specification for details.",
1173         }},
1174     MessageEntry{
1175         "MEUmaError",
1176         {
1177             "Indicates that Intel ME has encountered UMA operation error.",
1178             "Intel ME has encountered UMA operation error. Details: %1",
1179             "Critical",
1180             "Critical",
1181             1,
1182             {"string"},
1183             "Platform reset when UMA not configured correctly, or when "
1184             "error occurred during normal operation on correctly "
1185             "configured UMA multiple times leading to Intel ME entering "
1186             "Recovery or restricted operational mode.",
1187         }},
1188     MessageEntry{"MEUnsupportedFeature",
1189                  {
1190                      "Indicates that Intel ME is configuration with "
1191                      "feature which is not supported on this platform.",
1192                      "Feature not supported in current segment detected by "
1193                      "Intel ME Firmware. Details: %1",
1194                      "Critical",
1195                      "Critical",
1196                      1,
1197                      {"string"},
1198                      "Proper FW configuration must be updated or use the "
1199                      "Flash device with proper FW configuration",
1200                  }},
1201     MessageEntry{"MirroringRedundancyDegraded",
1202                  {
1203                      "Indicates the mirroring redundancy state is degraded.",
1204                      "Mirroring redundancy state degraded. Socket=%1 "
1205                      "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
1206                      "Warning",
1207                      "Warning",
1208                      5,
1209 
1210                      {
1211                          "number",
1212                          "string",
1213                          "number",
1214                          "number",
1215                          "number",
1216                      },
1217                      "None.",
1218                  }},
1219     MessageEntry{
1220         "MirroringRedundancyFull",
1221         {
1222             "Indicates the mirroring redundancy state is fully redundant.",
1223             "Mirroring redundancy state fully redundant. Socket=%1 "
1224             "Channel=%2 DIMM=%3 Pair=%4 Rank=%5.",
1225             "OK",
1226             "OK",
1227             5,
1228 
1229             {
1230                 "number",
1231                 "string",
1232                 "number",
1233                 "number",
1234                 "number",
1235             },
1236             "None.",
1237         }},
1238     MessageEntry{"NMIButtonPressed",
1239                  {
1240                      "Indicates that the NMI button was pressed.",
1241                      "NMI Button Pressed.",
1242                      "Critical",
1243                      "Critical",
1244                      0,
1245                      {},
1246                      "None.",
1247                  }},
1248     MessageEntry{"NMIDiagnosticInterrupt",
1249                  {
1250                      "Indicates that an NMI Diagnostic "
1251                      "Interrupt has been generated.",
1252                      "NMI Diagnostic Interrupt.",
1253                      "Critical",
1254                      "Critical",
1255                      0,
1256                      {},
1257                      "None.",
1258                  }},
1259     MessageEntry{"PCIeCorrectableAdvisoryNonFatal",
1260                  {
1261                      "Indicates a PCIe Correctable Advisory Non-fatal Error.",
1262                      "PCIe Correctable Advisory Non-fatal Error. Bus=%1 "
1263                      "Device=%2 Function=%3.",
1264                      "Warning",
1265                      "Warning",
1266                      3,
1267 
1268                      {
1269                          "number",
1270                          "number",
1271                          "number",
1272                      },
1273                      "None.",
1274                  }},
1275     MessageEntry{"PCIeCorrectableBadDLLP",
1276                  {
1277                      "Indicates a PCIe Correctable Bad DLLP Error.",
1278 
1279                      "PCIe Correctable Bad DLLP. Bus=%1 Device=%2 Function=%3.",
1280                      "Warning",
1281                      "Warning",
1282                      3,
1283 
1284                      {
1285                          "number",
1286                          "number",
1287                          "number",
1288                      },
1289                      "None.",
1290                  }},
1291     MessageEntry{"PCIeCorrectableBadTLP",
1292                  {
1293                      "Indicates a PCIe Correctable Bad TLP Error.",
1294 
1295                      "PCIe Correctable Bad TLP. Bus=%1 Device=%2 Function=%3.",
1296                      "Warning",
1297                      "Warning",
1298                      3,
1299 
1300                      {
1301                          "number",
1302                          "number",
1303                          "number",
1304                      },
1305                      "None.",
1306                  }},
1307     MessageEntry{"PCIeCorrectableHeaderLogOverflow",
1308                  {
1309                      "Indicates a PCIe Correctable Header Log Overflow Error.",
1310                      "PCIe Correctable Header Log Overflow. Bus=%1 Device=%2 "
1311                      "Function=%3.",
1312                      "Warning",
1313                      "Warning",
1314                      3,
1315 
1316                      {
1317                          "number",
1318                          "number",
1319                          "number",
1320                      },
1321                      "None.",
1322                  }},
1323     MessageEntry{"PCIeCorrectableInternal",
1324                  {
1325                      "Indicates a PCIe Correctable Internal Error.",
1326                      "PCIe Correctable Internal Error. Bus=%1 Device=%2 "
1327                      "Function=%3.",
1328                      "Warning",
1329                      "Warning",
1330                      3,
1331 
1332                      {
1333                          "number",
1334                          "number",
1335                          "number",
1336                      },
1337                      "None.",
1338                  }},
1339     MessageEntry{"PCIeCorrectableLinkBWChanged",
1340                  {
1341                      "Indicates a PCIe Correctable Link BW Changed Error.",
1342                      "PCIe Correctable Link BW Changed. Bus=%1 "
1343                      "Device=%2 Function=%3.",
1344                      "Warning",
1345                      "Warning",
1346                      3,
1347 
1348                      {
1349                          "number",
1350                          "number",
1351                          "number",
1352                      },
1353                      "None.",
1354                  }},
1355     MessageEntry{"PCIeCorrectableReceiverError",
1356                  {
1357                      "Indicates a PCIe Correctable Receiver Error.",
1358                      "PCIe Correctable Receiver Error. Bus=%1 Device=%2 "
1359                      "Function=%3.",
1360                      "Warning",
1361                      "Warning",
1362                      3,
1363 
1364                      {
1365                          "number",
1366                          "number",
1367                          "number",
1368                      },
1369                      "None.",
1370                  }},
1371     MessageEntry{"PCIeCorrectableReplayNumRollover",
1372                  {
1373                      "Indicates a PCIe Correctable Replay Num Rollover.",
1374                      "PCIe Correctable Replay Num Rollover. Bus=%1 Device=%2 "
1375                      "Function=%3.",
1376                      "Warning",
1377                      "Warning",
1378                      3,
1379 
1380                      {
1381                          "number",
1382                          "number",
1383                          "number",
1384                      },
1385                      "None.",
1386                  }},
1387     MessageEntry{"PCIeCorrectableReplayTimerTimeout",
1388                  {
1389                      "Indicates a PCIe Correctable Replay Timer Timeout.",
1390                      "PCIe Correctable Replay Timer Timeout. Bus=%1 "
1391                      "Device=%2 Function=%3.",
1392                      "Warning",
1393                      "Warning",
1394                      3,
1395 
1396                      {
1397                          "number",
1398                          "number",
1399                          "number",
1400                      },
1401                      "None.",
1402                  }},
1403     MessageEntry{"PCIeCorrectableUnspecifiedAERError",
1404                  {
1405                      "Indicates a PCIe Correctable Unspecified AER Error.",
1406                      "PCIe Correctable Unspecified AER Error. "
1407                      "Bus=%1 Device=%2 Function=%3.",
1408                      "Warning",
1409                      "Warning",
1410                      3,
1411 
1412                      {
1413                          "number",
1414                          "number",
1415                          "number",
1416                      },
1417                      "None.",
1418                  }},
1419     MessageEntry{"PCIeFatalACSViolation",
1420                  {
1421                      "Indicates a PCIe ACS Violation Error.",
1422 
1423                      "PCIe Fatal ACS Violation. Bus=%1 Device=%2 Function=%3.",
1424                      "Critical",
1425                      "Critical",
1426                      3,
1427 
1428                      {
1429                          "number",
1430                          "number",
1431                          "number",
1432                      },
1433                      "None.",
1434                  }},
1435     MessageEntry{"PCIeFatalAtomicEgressBlocked",
1436                  {
1437                      "Indicates a PCIe Atomic Egress Blocked Error.",
1438                      "PCIe Fatal Atomic Egress Blocked. Bus=%1 Device=%2 "
1439                      "Function=%3.",
1440                      "Critical",
1441                      "Critical",
1442                      3,
1443 
1444                      {
1445                          "number",
1446                          "number",
1447                          "number",
1448                      },
1449                      "None.",
1450                  }},
1451     MessageEntry{
1452         "PCIeFatalCompleterAbort",
1453         {
1454             "Indicates a PCIe Completer Abort Error.",
1455 
1456             "PCIe Fatal Completer Abort. Bus=%1 Device=%2 Function=%3.",
1457             "Critical",
1458             "Critical",
1459             3,
1460 
1461             {
1462                 "number",
1463                 "number",
1464                 "number",
1465             },
1466             "None.",
1467         }},
1468     MessageEntry{
1469         "PCIeFatalCompletionTimeout",
1470         {
1471             "Indicates a PCIe Completion Timeout Error.",
1472 
1473             "PCIe Fatal Completion Timeout. Bus=%1 Device=%2 Function=%3.",
1474             "Critical",
1475             "Critical",
1476             3,
1477 
1478             {
1479                 "number",
1480                 "number",
1481                 "number",
1482             },
1483             "None.",
1484         }},
1485     MessageEntry{
1486         "PCIeFatalDataLinkLayerProtocol",
1487         {
1488             "Indicates a PCIe Data Link Layer Protocol Error.",
1489 
1490             "PCIe Fatal Data Link Layer Protocol Error. Bus=%1 Device=%2 "
1491             "Function=%3.",
1492             "Critical",
1493             "Critical",
1494             3,
1495 
1496             {
1497                 "number",
1498                 "number",
1499                 "number",
1500             },
1501             "None.",
1502         }},
1503     MessageEntry{"PCIeFatalECRCError",
1504                  {
1505                      "Indicates a PCIe ECRC Error.",
1506                      "PCIe Fatal ECRC Error. Bus=%1 Device=%2 Function=%3.",
1507                      "Critical",
1508                      "Critical",
1509                      3,
1510 
1511                      {
1512                          "number",
1513                          "number",
1514                          "number",
1515                      },
1516                      "None.",
1517                  }},
1518     MessageEntry{"PCIeFatalFlowControlProtocol",
1519                  {
1520                      "Indicates a PCIe Flow Control Protocol Error.",
1521 
1522                      "PCIe Fatal Flow Control Protocol Error. Bus=%1 Device=%2 "
1523                      "Function=%3.",
1524                      "Critical",
1525                      "Critical",
1526                      3,
1527 
1528                      {
1529                          "number",
1530                          "number",
1531                          "number",
1532                      },
1533                      "None.",
1534                  }},
1535     MessageEntry{
1536         "PCIeFatalMalformedTLP",
1537         {
1538             "Indicates a PCIe Malformed TLP Error.",
1539 
1540             "PCIe Fatal Malformed TLP Error. Bus=%1 Device=%2 Function=%3.",
1541             "Critical",
1542             "Critical",
1543             3,
1544 
1545             {
1546                 "number",
1547                 "number",
1548                 "number",
1549             },
1550             "None.",
1551         }},
1552     MessageEntry{"PCIeFatalMCBlockedTLP",
1553                  {
1554                      "Indicates a PCIe MC Blocked TLP Error.",
1555                      "PCIe Fatal MC Blocked TLP Error. Bus=%1 "
1556                      "Device=%2 Function=%3.",
1557                      "Critical",
1558                      "Critical",
1559                      3,
1560 
1561                      {
1562                          "number",
1563                          "number",
1564                          "number",
1565                      },
1566                      "None.",
1567                  }},
1568     MessageEntry{
1569         "PCIeFatalPoisonedTLP",
1570         {
1571             "Indicates a PCIe Poisoned TLP Error.",
1572 
1573             "PCIe Fatal Poisoned TLP Error. Bus=%1 Device=%2 Function=%3.",
1574             "Critical",
1575             "Critical",
1576             3,
1577 
1578             {
1579                 "number",
1580                 "number",
1581                 "number",
1582             },
1583             "None.",
1584         }},
1585     MessageEntry{"PCIeFatalReceiverBufferOverflow",
1586                  {
1587                      "Indicates a PCIe Receiver Buffer Overflow Error.",
1588                      "PCIe Fatal Receiver Buffer Overflow. Bus=%1 Device=%2 "
1589                      "Function=%3.",
1590                      "Critical",
1591                      "Critical",
1592                      3,
1593 
1594                      {
1595                          "number",
1596                          "number",
1597                          "number",
1598                      },
1599                      "None.",
1600                  }},
1601     MessageEntry{
1602         "PCIeFatalReceivedErrNonFatalMessage",
1603         {
1604             "Indicates a PCIe Received ERR_NONFATAL Message Error.",
1605 
1606             "PCIe Fatal Received ERR_NONFATAL Message. Bus=%1 Device=%2 "
1607             "Function=%3.",
1608             "Critical",
1609             "Critical",
1610             3,
1611 
1612             {
1613                 "number",
1614                 "number",
1615                 "number",
1616             },
1617             "None.",
1618         }},
1619     MessageEntry{"PCIeFatalReceivedFatalMessageFromDownstream",
1620                  {
1621                      "Indicates a PCIe Received Fatal Message "
1622                      "From Downstream Error.",
1623 
1624                      "PCIe Fatal Received Fatal Message From Downstream. "
1625                      "Bus=%1 Device=%2 Function=%3.",
1626                      "Critical",
1627                      "Critical",
1628                      3,
1629 
1630                      {
1631                          "number",
1632                          "number",
1633                          "number",
1634                      },
1635                      "None.",
1636                  }},
1637     MessageEntry{"PCIeFatalSurpriseLinkDown",
1638                  {
1639                      "Indicates a PCIe Surprise Link Down Error.",
1640                      "PCIe Fatal Surprise Link Down Error. Bus=%1 Device=%2 "
1641                      "Function=%3.",
1642                      "Critical",
1643                      "Critical",
1644                      3,
1645 
1646                      {
1647                          "number",
1648                          "number",
1649                          "number",
1650                      },
1651                      "None.",
1652                  }},
1653     MessageEntry{"PCIeFatalTLPPrefixBlocked",
1654                  {
1655                      "Indicates a PCIe TLP Prefix Blocked Error.",
1656                      "PCIe Fatal TLP Prefix Blocked Error. Bus=%1 Device=%2 "
1657                      "Function=%3.",
1658                      "Critical",
1659                      "Critical",
1660                      3,
1661 
1662                      {
1663                          "number",
1664                          "number",
1665                          "number",
1666                      },
1667                      "None.",
1668                  }},
1669     MessageEntry{
1670         "PCIeFatalUncorrectableInternal",
1671         {
1672             "Indicates a PCIe Uncorrectable Internal Error.",
1673 
1674             "PCIe Fatal Uncorrectable Internal Error. Bus=%1 Device=%2 "
1675             "Function=%3.",
1676             "Critical",
1677             "Critical",
1678             3,
1679 
1680             {
1681                 "number",
1682                 "number",
1683                 "number",
1684             },
1685             "None.",
1686         }},
1687     MessageEntry{"PCIeFatalUnexpectedCompletion",
1688                  {
1689                      "Indicates a PCIe Unexpected Completion Error.",
1690                      "PCIe Fatal Unexpected Completion. Bus=%1 Device=%2 "
1691                      "Function=%3.",
1692                      "Critical",
1693                      "Critical",
1694                      3,
1695 
1696                      {
1697                          "number",
1698                          "number",
1699                          "number",
1700                      },
1701                      "None.",
1702                  }},
1703     MessageEntry{"PCIeFatalUnspecifiedNonAERFatalError",
1704                  {
1705                      "Indicates a PCIe Unspecified Non-AER Fatal Error.",
1706                      "PCIe Fatal Unspecified Non-AER Fatal Error. Bus=%1 "
1707                      "Device=%2 Function=%3.",
1708                      "Critical",
1709                      "Critical",
1710                      3,
1711 
1712                      {
1713                          "number",
1714                          "number",
1715                          "number",
1716                      },
1717                      "None.",
1718                  }},
1719     MessageEntry{
1720         "PCIeFatalUnsupportedRequest",
1721         {
1722             "Indicates a PCIe Unsupported Request Error.",
1723 
1724             "PCIe Fatal Unsupported Request. Bus=%1 Device=%2 Function=%3.",
1725             "Critical",
1726             "Critical",
1727             3,
1728 
1729             {
1730                 "number",
1731                 "number",
1732                 "number",
1733             },
1734             "None.",
1735         }},
1736     MessageEntry{"PowerButtonPressed",
1737                  {
1738                      "Indicates that the power button was pressed.",
1739                      "Power Button Pressed.",
1740                      "OK",
1741                      "OK",
1742                      0,
1743                      {},
1744                      "None.",
1745                  }},
1746     MessageEntry{"PowerRestorePolicyApplied",
1747                  {
1748                      "Indicates that power was restored and the "
1749                      "BMC has applied the restore policy.",
1750                      "Power restore policy applied.",
1751                      "OK",
1752                      "OK",
1753                      0,
1754                      {},
1755                      "None.",
1756                  }},
1757     MessageEntry{"PowerSupplyConfigurationError",
1758                  {
1759                      "Indicates an error in power supply configuration.",
1760                      "Power supply %1 configuration error.",
1761                      "Warning",
1762                      "Warning",
1763                      1,
1764                      {"string"},
1765                      "None.",
1766                  }},
1767     MessageEntry{
1768         "PowerSupplyConfigurationErrorRecovered",
1769         {
1770             "Indicates that power supply configuration error recovered "
1771             "from a failure.",
1772             "Power supply %1 configuration error recovered.",
1773             "OK",
1774             "OK",
1775             1,
1776             {"string"},
1777             "None.",
1778         }},
1779     MessageEntry{
1780         "PowerSupplyFanFailed",
1781         {
1782             "Indicates that the specified power supply fan has failed.",
1783             "Power supply %1 fan %2 failed.",
1784             "Warning",
1785             "Warning",
1786             2,
1787             {"string", "string"},
1788             "None.",
1789         }},
1790     MessageEntry{
1791         "PowerSupplyFanRecovered",
1792         {
1793             "Indicates that the power supply fan recovered from a failure.",
1794             "Power supply %1 fan %2 recovered.",
1795             "OK",
1796             "OK",
1797             2,
1798             {"string", "string"},
1799             "None.",
1800         }},
1801     MessageEntry{"PowerSupplyFailed",
1802                  {
1803                      "Indicates that a power supply has failed.",
1804                      "Power supply %1 failed.",
1805                      "Warning",
1806                      "Warning",
1807                      1,
1808                      {"string"},
1809                      "None.",
1810                  }},
1811     MessageEntry{"PowerSupplyFailurePredicted",
1812                  {
1813                      "Indicates that a power supply is predicted to fail.",
1814                      "Power supply %1 failure predicted.",
1815                      "Warning",
1816                      "Warning",
1817                      1,
1818                      {"string"},
1819                      "None.",
1820                  }},
1821     MessageEntry{"PowerSupplyInserted",
1822                  {
1823                      "Indicates that a power supply has been inserted.",
1824                      "Power supply %1 inserted.",
1825                      "OK",
1826                      "OK",
1827                      1,
1828                      {"string"},
1829                      "None.",
1830                  }},
1831     MessageEntry{"PowerSupplyPowerGoodFailed",
1832                  {
1833                      "Indicates that the power supply power good signal "
1834                      "failed to assert within the specified time.",
1835                      "Power supply power good failed to assert within %1 "
1836                      "milliseconds.",
1837                      "Critical",
1838                      "Critical",
1839                      1,
1840                      {"number"},
1841                      "None.",
1842                  }},
1843     MessageEntry{"PowerSupplyPowerLost",
1844                  {
1845                      "Indicates that a power supply has lost input power.",
1846                      "Power supply %1 power lost.",
1847                      "Warning",
1848                      "Warning",
1849                      1,
1850                      {"string"},
1851                      "None.",
1852                  }},
1853     MessageEntry{"PowerSupplyPowerRestored",
1854                  {
1855                      "Indicates that a power supply input power was restored.",
1856                      "Power supply %1 power restored.",
1857                      "OK",
1858                      "OK",
1859                      1,
1860                      {"string"},
1861                      "None.",
1862                  }},
1863     MessageEntry{"PowerSupplyPredictedFailureRecovered",
1864                  {
1865                      "Indicates that a power supply recovered "
1866                      "from a predicted failure.",
1867                      "Power supply %1 predicted failure recovered.",
1868                      "OK",
1869                      "OK",
1870                      1,
1871                      {"string"},
1872                      "None.",
1873                  }},
1874     MessageEntry{"PowerSupplyRecovered",
1875                  {
1876                      "Indicates that a power supply recovered from a failure.",
1877                      "Power supply %1 recovered.",
1878                      "OK",
1879                      "OK",
1880                      1,
1881                      {"string"},
1882                      "None.",
1883                  }},
1884     MessageEntry{"PowerSupplyRemoved",
1885                  {
1886                      "Indicates that a power supply has been removed.",
1887                      "Power supply %1 removed.",
1888                      "Warning",
1889                      "Warning",
1890                      1,
1891                      {"string"},
1892                      "None.",
1893                  }},
1894     MessageEntry{"PowerUnitDegradedFromNonRedundant",
1895                  {
1896                      "Indicates that power unit is come back to redundant from"
1897                      "nonredundant but is still not in full redundancy mode.",
1898                      "Power Unit degraded from nonredundant.",
1899                      "Warning",
1900                      "Warning",
1901                      0,
1902                      {},
1903                      "None.",
1904                  }},
1905     MessageEntry{"PowerUnitDegradedFromRedundant",
1906                  {
1907                      "Indicates that power unit is degarded from full "
1908                      "redundancy mode.",
1909                      "Power Unit degraded from redundant.",
1910                      "Warning",
1911                      "Warning",
1912                      0,
1913                      {},
1914                      "None.",
1915                  }},
1916     MessageEntry{"PowerUnitRedundancyDegraded",
1917                  {
1918                      "Indicates that power unit redundancy has been degraded.",
1919                      "Power Unit Redundancy degraded.",
1920                      "Warning",
1921                      "Warning",
1922                      0,
1923                      {},
1924                      "None.",
1925                  }},
1926     MessageEntry{
1927         "PowerUnitNonRedundantFromInsufficient",
1928         {
1929             "Indicates that power unit is not in redundancy mode and get"
1930             "sufficient power to support redundancy from insufficient"
1931             "power.",
1932 
1933             "Power Unit NonRedundant from insufficient to sufficient.",
1934             "Warning",
1935             "Warning",
1936             0,
1937             {},
1938             "None.",
1939         }},
1940     MessageEntry{"PowerUnitNonRedundantInsufficient",
1941                  {
1942                      "Indicates that power unit do not have sufficient "
1943                      "power to support redundancy.",
1944                      "Power Unit NonRedundant and has insufficient resource.",
1945                      "Critical",
1946                      "Critical",
1947                      0,
1948                      {},
1949                      "None.",
1950                  }},
1951     MessageEntry{"PowerUnitRedundancyLost",
1952                  {
1953                      "Indicates that power unit redundancy has been lost.",
1954                      "Power Unit Redundancy lost.",
1955                      "Warning",
1956                      "Warning",
1957                      0,
1958                      {},
1959                      "None.",
1960                  }},
1961     MessageEntry{
1962         "PowerUnitRedundancyRegained",
1963         {
1964             "Indicates that power unit full redundancy has been regained.",
1965             "Power Unit Redundancy regained.",
1966             "OK",
1967             "OK",
1968             0,
1969             {},
1970             "None.",
1971         }},
1972     MessageEntry{
1973         "PowerUnitNonRedundantSufficient",
1974         {
1975             "Indicates that power unit is not in redundancy mode but still"
1976             "has sufficient power to support redundancy.",
1977             "Power Unit Nonredundant but has sufficient resource.",
1978             "Warning",
1979             "Warning",
1980             0,
1981             {},
1982             "None.",
1983         }},
1984     MessageEntry{"ResetButtonPressed",
1985                  {
1986                      "Indicates that the reset button was pressed.",
1987                      "Reset Button Pressed.",
1988                      "OK",
1989                      "OK",
1990                      0,
1991                      {},
1992                      "None.",
1993                  }},
1994     MessageEntry{"SecurityBoot2ndFlashEnabled",
1995                  {
1996                      "Indicates that the BMC 2nd boot flash is enabled.",
1997                      "BMC 2nd boot flash is enabled.",
1998                      "Critical",
1999                      "Critical",
2000                      0,
2001                      {},
2002                      "None.",
2003                  }},
2004     MessageEntry{"SecurityP2aBridgeEnabled",
2005                  {
2006                      "Indicates that the P2A bridge is enabled.",
2007                      "P2A(PCIe to AHB) bridge is enabled.",
2008                      "Critical",
2009                      "Critical",
2010                      0,
2011                      {},
2012                      "None.",
2013                  }},
2014     MessageEntry{"SecurityUartPortDebugEnabled",
2015                  {
2016                      "Indicates that the uart port debug is enabled.",
2017                      "Uart port debug is enabled.",
2018                      "Critical",
2019                      "Critical",
2020                      0,
2021                      {},
2022                      "None.",
2023                  }},
2024     MessageEntry{
2025         "SecurityUserStrongHashAlgoRestored",
2026         {
2027             "Indicates that password computing hash algorithm changed.",
2028             "Password computing hash algorithm is changed to sha256/sha512.",
2029             "OK",
2030             "OK",
2031             0,
2032             {},
2033             "None.",
2034         }},
2035 
2036     MessageEntry{"SecurityUserNonRootUidZeroAssigned",
2037                  {
2038                      "Indicates that non root user assigned with user ID zero.",
2039                      "User ID Zero is assigned with non-root user.",
2040                      "Critical",
2041                      "Critical",
2042                      0,
2043                      {},
2044                      "None.",
2045                  }},
2046     MessageEntry{"SecurityUserNonRootUidZeroRemoved",
2047                  {
2048                      "Indicates that non root user ID is removed",
2049                      "Non root user assigned with user ID zero is removed.",
2050                      "OK",
2051                      "OK",
2052                      0,
2053                      {},
2054                      "None.",
2055                  }},
2056 
2057     MessageEntry{"SecurityUserRootEnabled",
2058                  {
2059                      "Indicates that system root user is enabled.",
2060                      "User root is enabled.",
2061                      "Critical",
2062                      "Critical",
2063                      0,
2064                      {},
2065                      "None.",
2066                  }},
2067     MessageEntry{"SecurityUserRootDisabled",
2068                  {
2069                      "Indicates that system root user is disabled.",
2070                      "User root is disabled.",
2071                      "OK",
2072                      "OK",
2073                      0,
2074                      {},
2075                      "None.",
2076                  }},
2077 
2078     MessageEntry{"SecurityUserUnsupportedShellEnabled",
2079                  {
2080                      "Indicates that unsupported shell is enabled.",
2081                      "Unsupported shell is enabled.",
2082                      "Critical",
2083                      "Critical",
2084                      0,
2085                      {},
2086                      "None.",
2087                  }},
2088     MessageEntry{"SecurityUserUnsupportedShellRemoved",
2089                  {
2090                      "Indicates that unsupported shell is removed.",
2091                      "Unsupported shell is removed.",
2092                      "OK",
2093                      "OK",
2094                      0,
2095                      {},
2096                      "None.",
2097                  }},
2098 
2099     MessageEntry{
2100         "SecurityUserWeakHashAlgoEnabled",
2101         {
2102             "Indicates that weak password computing hash algorithm is enabled.",
2103             "Weak password computing hash algorithm is enabled.",
2104             "Critical",
2105             "Critical",
2106             0,
2107             {},
2108             "None.",
2109         }},
2110     MessageEntry{"SELEntryAdded",
2111                  {
2112                      "Indicates a SEL entry was added using the "
2113                      "Add SEL Entry or Platform Event command.",
2114                      "SEL Entry Added: %1",
2115                      "OK",
2116                      "OK",
2117                      1,
2118 
2119                      {
2120                          "string",
2121                      },
2122                      "None.",
2123                  }},
2124     MessageEntry{"SensorThresholdCriticalHighGoingHigh",
2125                  {
2126                      "Indicates that a threshold sensor has crossed a "
2127                      "critical high threshold going high.",
2128                      "%1 sensor crossed a critical high threshold going "
2129                      "high. Reading=%2 Threshold=%3.",
2130                      "Critical",
2131                      "Critical",
2132                      3,
2133                      {"string", "number", "number"},
2134                      "Check the sensor or subsystem for errors.",
2135                  }},
2136     MessageEntry{"SensorThresholdCriticalHighGoingLow",
2137                  {
2138                      "Indicates that a threshold sensor has crossed a "
2139                      "critical high threshold going low.",
2140                      "%1 sensor crossed a critical high threshold going low. "
2141                      "Reading=%2 Threshold=%3.",
2142                      "OK",
2143                      "OK",
2144                      3,
2145                      {"string", "number", "number"},
2146                      "None.",
2147                  }},
2148     MessageEntry{"SensorThresholdCriticalLowGoingHigh",
2149                  {
2150                      "Indicates that a threshold sensor has crossed a "
2151                      "critical low threshold going high.",
2152                      "%1 sensor crossed a critical low threshold going high. "
2153                      "Reading=%2 Threshold=%3.",
2154                      "OK",
2155                      "OK",
2156                      3,
2157                      {"string", "number", "number"},
2158                      "None.",
2159                  }},
2160     MessageEntry{"SensorThresholdCriticalLowGoingLow",
2161                  {
2162                      "Indicates that a threshold sensor has crossed a "
2163                      "critical low threshold going low.",
2164                      "%1 sensor crossed a critical low threshold going low. "
2165                      "Reading=%2 Threshold=%3.",
2166                      "Critical",
2167                      "Critical",
2168                      3,
2169                      {"string", "number", "number"},
2170                      "Check the sensor or subsystem for errors.",
2171                  }},
2172     MessageEntry{"SensorThresholdWarningHighGoingHigh",
2173                  {
2174                      "Indicates that a threshold sensor has crossed a "
2175                      "warning high threshold going high.",
2176                      "%1 sensor crossed a warning high threshold going high. "
2177                      "Reading=%2 Threshold=%3.",
2178                      "Warning",
2179                      "Warning",
2180                      3,
2181                      {"string", "number", "number"},
2182                      "Check the sensor or subsystem for errors.",
2183                  }},
2184     MessageEntry{"SensorThresholdWarningHighGoingLow",
2185                  {
2186                      "Indicates that a threshold sensor has crossed a "
2187                      "warning high threshold going low.",
2188                      "%1 sensor crossed a warning high threshold going low. "
2189                      "Reading=%2 Threshold=%3.",
2190                      "OK",
2191                      "OK",
2192                      3,
2193                      {"string", "number", "number"},
2194                      "None.",
2195                  }},
2196     MessageEntry{"SensorThresholdWarningLowGoingHigh",
2197                  {
2198                      "Indicates that a threshold sensor has crossed a "
2199                      "warning low threshold going high.",
2200                      "%1 sensor crossed a warning low threshold going high. "
2201                      "Reading=%2 Threshold=%3.",
2202                      "OK",
2203                      "OK",
2204                      3,
2205                      {"string", "number", "number"},
2206                      "None.",
2207                  }},
2208     MessageEntry{"SensorThresholdWarningLowGoingLow",
2209                  {
2210                      "Indicates that a threshold sensor has crossed a "
2211                      "warning low threshold going low.",
2212                      "%1 sensor crossed a warning low threshold going low. "
2213                      "Reading=%2 Threshold=%3.",
2214                      "Warning",
2215                      "Warning",
2216                      3,
2217                      {"string", "number", "number"},
2218                      "Check the sensor or subsystem for errors.",
2219                  }},
2220     MessageEntry{"ServiceFailure",
2221                  {
2222                      "Indicates that a service has exited unsuccessfully.",
2223                      "Service %1 has exited unsuccessfully.",
2224                      "Warning",
2225                      "Warning",
2226                      1,
2227                      {"string"},
2228                      "None.",
2229                  }},
2230     MessageEntry{"SparingRedundancyDegraded",
2231                  {
2232                      "Indicates the sparing redundancy state is degraded.",
2233                      "Sparing redundancy state degraded. Socket=%1 "
2234                      "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
2235                      "Warning",
2236                      "Warning",
2237                      5,
2238 
2239                      {
2240                          "number",
2241                          "string",
2242                          "number",
2243                          "string",
2244                          "number",
2245                      },
2246                      "None.",
2247                  }},
2248     MessageEntry{
2249         "SparingRedundancyFull",
2250         {
2251             "Indicates the sparing redundancy state is fully redundant.",
2252             "Sparing redundancy state fully redundant. Socket=%1 "
2253             "Channel=%2 DIMM=%3 Domain=%4 Rank=%5.",
2254             "OK",
2255             "OK",
2256             5,
2257 
2258             {
2259                 "number",
2260                 "string",
2261                 "number",
2262                 "string",
2263                 "number",
2264             },
2265             "None.",
2266         }},
2267     MessageEntry{"SsbThermalTrip",
2268                  {
2269                      "Indicates that an SSB Thermal trip has been asserted.",
2270                      "SSB Thermal trip.",
2271                      "Critical",
2272                      "Critical",
2273                      0,
2274                      {},
2275                      "None.",
2276                  }},
2277     MessageEntry{"SystemInterfaceDisabledProvisioned",
2278                  {
2279                      "Indicates that the system interface is in the disabled "
2280                      "provisioned state. All commands are blocked to execute "
2281                      "through the system interface.",
2282                      "The system interface is in the disabled provisioned "
2283                      "state.",
2284                      "OK",
2285                      "OK",
2286                      0,
2287                      {},
2288                      "None.",
2289                  }},
2290     MessageEntry{"SystemInterfaceUnprovisioned",
2291                  {
2292                      "Indicates that the system interface is in the "
2293                      "unprovisioned state. All commands are permitted to "
2294                      "execute through the system interface.",
2295                      "The system interface is in the unprovisioned state.",
2296                      "Critical",
2297                      "Critical",
2298                      0,
2299                      {},
2300                      "None.",
2301                  }},
2302     MessageEntry{"SystemInterfaceWhitelistProvisioned",
2303                  {
2304                      "Indicates that the system interface is in the whitelist "
2305                      "provisioned state. Only whitelisted commands "
2306                      "are permitted to execute through the system interface.",
2307                      "The system interface is in the whitelist provisioned "
2308                      "state.",
2309                      "Warning",
2310                      "Warning",
2311                      0,
2312                      {},
2313                      "None.",
2314                  }},
2315     MessageEntry{"SystemPowerGoodFailed",
2316                  {
2317                      "Indicates that the system power good signal failed "
2318                      "to assert within the specified time (VR failure).",
2319                      "System power good failed to assert within %1 "
2320                      "milliseconds (VR failure).",
2321                      "Critical",
2322                      "Critical",
2323                      1,
2324                      {"number"},
2325                      "None.",
2326                  }},
2327     MessageEntry{"SystemPowerLost",
2328                  {
2329                      "Indicates that power was lost while the "
2330                      "system was powered on.",
2331                      "System Power Lost.",
2332                      "Critical",
2333                      "Critical",
2334                      0,
2335                      {},
2336                      "None.",
2337                  }},
2338     MessageEntry{"SystemPowerOffFailed",
2339                  {
2340                      "Indicates that the system failed to power off.",
2341                      "System Power-Off Failed.",
2342                      "Critical",
2343                      "Critical",
2344                      0,
2345                      {},
2346                      "None.",
2347                  }},
2348     MessageEntry{"SystemPowerOnFailed",
2349                  {
2350                      "Indicates that the system failed to power on.",
2351                      "System Power-On Failed.",
2352                      "Critical",
2353                      "Critical",
2354                      0,
2355                      {},
2356                      "None.",
2357                  }},
2358     MessageEntry{
2359         "VoltageRegulatorOverheated",
2360         {
2361             "Indicates that the specified voltage regulator overheated.",
2362             "%1 Voltage Regulator Overheated.",
2363             "Critical",
2364             "Critical",
2365             1,
2366             {"string"},
2367             "None.",
2368         }},
2369 
2370 };
2371 } // namespace redfish::message_registries::openbmc
2372