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