prettier: re-format

Prettier is enabled in openbmc-build-scripts on Markdown, JSON, and YAML
files to have consistent formatting for these file types.  Re-run the
formatter on the whole repository.

Change-Id: I5cffceb935b088f2c3fcf6f170508fb39fef1dc9
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/README.md b/README.md
index 6538a89..36c5a4d 100644
--- a/README.md
+++ b/README.md
@@ -1,25 +1,31 @@
 # Intel IPMI OEM support library
-This component is intended to provide Intel-specific IPMI`[3]` command handlers for
-OpenBMC. These handlers are intended to integrate BMC with servers based on
+
+This component is intended to provide Intel-specific IPMI`[3]` command handlers
+for OpenBMC. These handlers are intended to integrate BMC with servers based on
 Intel architecture.
 
 ## Overview
-`intel-ipmi-oem` serves as an extension`[1]` to OpenBMC IPMI daemon`[2]`.
-It is compiled as a shared library and intended to both:
+
+`intel-ipmi-oem` serves as an extension`[1]` to OpenBMC IPMI daemon`[2]`. It is
+compiled as a shared library and intended to both:
+
 - override existing implementation of standard IPMI commands to comply with
   Intel-specific solutions,
 - provide implementation for non-standard OEM extensions.
 
 ## Capabilities
+
 Related features provided by the library are grouped in separate source files.
 Main extensions to vanilla OpenBMC IPMI stack are the following:
+
 - Acquiring SMBIOS data over IPMI
 - Commands for better integration with Intel hardware
 - Firmware update extensions
 - Extended parsing of IPMI Platform Events`[4]`
 
 ## References
+
 1. [OpenBMC IPMI Architecture](https://github.com/openbmc/docs/blob/master/architecture/ipmi-architecture.md)
 2. [Phosphor IPMI Host](https://github.com/openbmc/phosphor-host-ipmid)
 3. [IPMI Specification v2.0](https://www.intel.pl/content/www/pl/pl/products/docs/servers/ipmi/ipmi-second-gen-interface-spec-v2-rev1-1.html)
-4. [Intel Platform Events parsing](docs/Intel_IPMI_Platform_Events.md)
\ No newline at end of file
+4. [Intel Platform Events parsing](docs/Intel_IPMI_Platform_Events.md)
diff --git a/cmake-format.json b/cmake-format.json
index 4a68fb7..260764f 100755
--- a/cmake-format.json
+++ b/cmake-format.json
@@ -1,13 +1,12 @@
 {
-  "enum_char": ".",
-  "line_ending": "unix",
-  "bullet_char": "*",
-  "max_subargs_per_line": 99,
-  "command_case": "lower",
-  "tab_size": 4,
-  "line_width": 80,
-  "separate_fn_name_with_space": true,
-  "dangle_parens": true,
-  "separate_ctrl_name_with_space": true
+    "enum_char": ".",
+    "line_ending": "unix",
+    "bullet_char": "*",
+    "max_subargs_per_line": 99,
+    "command_case": "lower",
+    "tab_size": 4,
+    "line_width": 80,
+    "separate_fn_name_with_space": true,
+    "dangle_parens": true,
+    "separate_ctrl_name_with_space": true
 }
-
diff --git a/docs/Intel_IPMI_Platform_Events.md b/docs/Intel_IPMI_Platform_Events.md
index b5176fc..810b683 100644
--- a/docs/Intel_IPMI_Platform_Events.md
+++ b/docs/Intel_IPMI_Platform_Events.md
@@ -1,58 +1,63 @@
 # Intel IPMI Platform Events parsing
+
 In many cases Manufacturers-specific IPMI Platfrom Events are stored in binary
 form in System Event Log making it very difficult to easily understand platfrom
 state. This document specifies a solution for presenting Manufacturer Spcific
 IPMI Platform Events in a human readable form by defining a generic framework
-for parsing and defining new messages in an easy and scallable way.
-Example of events originating from Intel Management Engine (ME) is used as
-a case-study. General design of the solution is followed by tailored-down
-implementation for OpenBMC described in detail.
+for parsing and defining new messages in an easy and scallable way. Example of
+events originating from Intel Management Engine (ME) is used as a case-study.
+General design of the solution is followed by tailored-down implementation for
+OpenBMC described in detail.
 
 ## Glossary
-- **IPMI** - Intelligent Platform Management Interface; standarized binary
-    protocol of communication between endpoints in datacenter `[1]`
-- **Platform Event** - specific type of IPMI binary payload, used for encoding
-    and sending asynchronous one-way messages to recipient `[1]-29.3`
-- **ME** - Intel Management Engine, autonomous subsystem used for remote
-    datacenter management `[5]`
-- **Redfish** - modern datacenter management protocol, built around REST
-    protocol and JSON format `[2]`
-- **OpenBMC** - open-source BMC implementation with Redfish-oriented
-    interface `[3]`
 
+- **IPMI** - Intelligent Platform Management Interface; standarized binary
+  protocol of communication between endpoints in datacenter `[1]`
+- **Platform Event** - specific type of IPMI binary payload, used for encoding
+  and sending asynchronous one-way messages to recipient `[1]-29.3`
+- **ME** - Intel Management Engine, autonomous subsystem used for remote
+  datacenter management `[5]`
+- **Redfish** - modern datacenter management protocol, built around REST
+  protocol and JSON format `[2]`
+- **OpenBMC** - open-source BMC implementation with Redfish-oriented interface
+  `[3]`
 
 ## Problem statement
+
 IPMI is designed to be a compact and efficient binary format of data exchanged
 between entities in data-center. Recipient is responsible to receive data,
 properly analyze, parse and translate the binary representation to
-human-readable format. IPMI Platform Events is one type of these messages,
-used to inform recipient about occurence of a particular well defined situation.
+human-readable format. IPMI Platform Events is one type of these messages, used
+to inform recipient about occurence of a particular well defined situation.
 
 Part of IPMI Platform Events are standarized and described in the specification
 and already have an open-source implementation ready `[6]`, however this is only
 part of the spectrum. Increasing complexity of datacenter systems have multipled
 possible sources of events which are defined by manufacturer-specirfic
-extenstions to platform event data. One of these sources is Intel ME, which
-is able to deliver information about its own state of operation and in some
-cases notify about certain erroneous system-wide conditions, like interface
-errors.
+extenstions to platform event data. One of these sources is Intel ME, which is
+able to deliver information about its own state of operation and in some cases
+notify about certain erroneous system-wide conditions, like interface errors.
 
 These OEM-specific messages lacks support in existing open-source
 implementations. They require manual, documentation-based `[5]` implementation,
 which is historically the source of many interpretation errors. Any document
 update requires manual code modification according to specific changes which is
-not efficient nor scalable. Furthermore - documentation is not always
-clear on event severity or possible resolution actions.
+not efficient nor scalable. Furthermore - documentation is not always clear on
+event severity or possible resolution actions.
 
 ## Solution
-Generic OEM-agnostic algorithm is proposed to achieve human-readable output
-for binary IPMI Platform Event.
+
+Generic OEM-agnostic algorithm is proposed to achieve human-readable output for
+binary IPMI Platform Event.
 
 In general, each event consists of predefined payload:
+
 ```ascii
 [GeneratorID][SensorNumber][EventType][EventData[2]]
 ```
+
 where:
+
 - `GeneratorID` - used to determine source of the event,
 - `SensorNumber` - generator-specific unique sensor number,
 - `EventType` - sensor-specific group of events,
@@ -60,15 +65,16 @@
 
 One might observe, that each consecutive event field is narrowing down the
 domain of event interpretations, starting with `GeneratorID` at the top, ending
-with `EventData` at the end of a `decision tree`. Software should be able
-to determine meaning of the event by using the `divide and conquer` approach
-for predefined list of well known event definitions. One should notice the fact,
-that such decision tree might be also needed for breakdown of `EventData`,
-as in many OEM-specific IPMI implementations that is also the case.
+with `EventData` at the end of a `decision tree`. Software should be able to
+determine meaning of the event by using the `divide and conquer` approach for
+predefined list of well known event definitions. One should notice the fact,
+that such decision tree might be also needed for breakdown of `EventData`, as in
+many OEM-specific IPMI implementations that is also the case.
 
 Implementation should be therefore a series of filters with increasing
-specialization on each level. Recursive algorithm for this will look like
-the following:
+specialization on each level. Recursive algorithm for this will look like the
+following:
+
 ```ascii
      +-------------+           +*Step 1*               +
      | +---------+ |           |                       |
@@ -90,25 +96,30 @@
 |                                                                              |
 +------------------------------------------------------------------------------+
 ```
+
 Described process will be repeated until there is nothing to break-down and
 singular unique event interpretation will be determined (an `EventId`).
 
 Not all event data is a decision point - certain chunks of data should be kept
 as-is or formatted in certain way, to be introduced in human-readable `Message`.
-Parser operation should also include a logic for extracting  `Parameters` during the traversal process.
+Parser operation should also include a logic for extracting `Parameters` during
+the traversal process.
 
 Effectively, both `EventId` and an optional collection of `Parameters` should be
-then used as input for lookup mechanic to generate final `Event Message`.
-Each message consists of following entries:
+then used as input for lookup mechanic to generate final `Event Message`. Each
+message consists of following entries:
+
 - `EventId` - associated unique event,
 - `Severity` - determines how severely this particular event might affect usual
-    datacenter operation,
+  datacenter operation,
 - `Resolution` - suggested steps to mitigate possible problem,
 - `Message` - human-readable message, possibly with predefined placeholders for
-    `Parameters`.
+  `Parameters`.
 
 ### Example
+
 Example of such message parsing process is shown below:
+
 ```ascii
         +-------------+
         |[GeneratorId]|
@@ -135,8 +146,10 @@
         |0x## (Percentage)+---------------+    +-------------------------------------------+
         +-----------------+
 ```
-, determined `ParsedEvent` might be then passed to lookup mechanism,
-which contains human-readable information for each `EventId`:
+
+, determined `ParsedEvent` might be then passed to lookup mechanism, which
+contains human-readable information for each `EventId`:
+
 ```ascii
 +------------------------------------------------+
 |+------------------------------------------------+
@@ -154,10 +167,12 @@
 ```
 
 ## Solution in OpenBMC
-Proposed algorithm is delivered as part of open-source OpenBMC project `[3]`.
-As this software stack is built with micro-service architecture in mind,
-the implementation had to be divided into multiple parts:
-- IPMI Platform Event payload unpacking  (`[7]`)
+
+Proposed algorithm is delivered as part of open-source OpenBMC project `[3]`. As
+this software stack is built with micro-service architecture in mind, the
+implementation had to be divided into multiple parts:
+
+- IPMI Platform Event payload unpacking (`[7]`)
   - `openbmc/intel-ipmi-oem/src/sensorcommands.cpp`
   - `openbmc/intel-ipmi-oem/src/ipmi_to_redfish_hooks.cpp`
 - Intel ME event parsing
@@ -169,26 +184,32 @@
     - `openbmc/bmcweb/redfish-core/include/registries/openbmc_message_registry.hpp`
 
 ### OpenBMC flow
+
 #### Event arrival
+
 1. IPMI driver notifies `intel-ipmi-oem` about incoming `Platform Event`
-    (NetFn=0x4, Cmd=0x2)
-   - Proper command handler in `intel-ipmi-oem/src/sensorcommands.cpp`
-        is notified
-2. Message is forwarded to `intel-ipmi-oem/src/ipmi_to_redfish_hooks.cpp`
-    as call to `sel::checkRedfishHooks`
-    - `sel::checkRedfishHooks` analyzes the data, `BIOS` events are handled
-        in-place, while `ME` events are delegated to `intel-ipmi-oem/src/me_to_redfish_hooks.cpp`
-3. `me::messageHook` is called with the payload. Parsing algorithm
-    determines final `EventId` and `Parameters`
-    - `me::utils::storeRedfishEvent(EventId, Parameters)` is called,
-        it stores event securely in `system journal`
+   (NetFn=0x4, Cmd=0x2)
+   - Proper command handler in `intel-ipmi-oem/src/sensorcommands.cpp` is
+     notified
+2. Message is forwarded to `intel-ipmi-oem/src/ipmi_to_redfish_hooks.cpp` as
+   call to `sel::checkRedfishHooks`
+   - `sel::checkRedfishHooks` analyzes the data, `BIOS` events are handled
+     in-place, while `ME` events are delegated to
+     `intel-ipmi-oem/src/me_to_redfish_hooks.cpp`
+3. `me::messageHook` is called with the payload. Parsing algorithm determines
+   final `EventId` and `Parameters`
+   - `me::utils::storeRedfishEvent(EventId, Parameters)` is called, it stores
+     event securely in `system journal`
 
 #### Platform Event payload parsing
+
 Each IPMI Platform Event is parsed using aforementioned `me::messageHook`
 handler. Implementation of the proposed algorithm is the following:
 
 ##### 1. Determine EventType
+
 Based on `EventType` proper designated handler is called.
+
 ```cpp
 namespace me {
 static bool messageHook(const SELData& selData, std::string& eventId,
@@ -211,9 +232,12 @@
 }
 }
 ```
+
 ##### 2. Call designated handler
+
 Example of handler for `FirmwareStatus`, tailored down to essential distinctive
 use cases:
+
 ```cpp
 namespace fw_status {
 static bool messageHook(const SELData& selData, std::string& eventId,
@@ -257,27 +281,35 @@
 ```
 
 ##### 3. Store parsed log in system
+
 Cascading calls of functions, logging utilities and map resolutions are
 resulting in populating both `std::string& eventId` and
 `std::vector<std::string>& parameters`. This data is then used to form a valid
 system log and stored in system journal.
 
 #### Event data listing
+
 Event data is accessible as `Redfish` resources in two places:
-- `MessageRegistry` - stores all event 'metadata'
-    (severity, resolution notes, messageId)
+
+- `MessageRegistry` - stores all event 'metadata' (severity, resolution notes,
+  messageId)
 - `EventLog` - lists all detected events in the system in processed,
-    human-readable form
+  human-readable form
 
 ##### MessageRegistry
-Implementation of `bmcweb` [MessageRegistry](http://redfish.dmtf.org/schemas/v1/MessageRegistry.json)
-contents can be found at  `openbmc/bmcweb/redfish-core/include/registries/openbmc_message_registry.hpp`.
 
-**Intel-specific events have proper prefix in MessageId: either 'BIOS' or 'ME'.**
+Implementation of `bmcweb`
+[MessageRegistry](http://redfish.dmtf.org/schemas/v1/MessageRegistry.json)
+contents can be found at
+`openbmc/bmcweb/redfish-core/include/registries/openbmc_message_registry.hpp`.
+
+**Intel-specific events have proper prefix in MessageId: either 'BIOS' or
+'ME'.**
 
 It can be read by the user by calling `GET` on Redfish resource:
-`/redfish/v1/Registries/OpenBMC/OpenBMC`. It contains JSON array of entries
-in standard Redfish format, like so:
+`/redfish/v1/Registries/OpenBMC/OpenBMC`. It contains JSON array of entries in
+standard Redfish format, like so:
+
 ```json
 "MEFlashWearOutWarning": {
     "Description": "Indicates that Intel ME has reached certain threshold of flash write operations.",
@@ -292,30 +324,31 @@
 ```
 
 ##### EventLog
-System-wide [EventLog](http://redfish.dmtf.org/schemas/v1/LogService.json)
-is implemented in `bmcweb` at  `openbmc/bmcweb/redfish-core/lib/log_services.hpp`.
+
+System-wide [EventLog](http://redfish.dmtf.org/schemas/v1/LogService.json) is
+implemented in `bmcweb` at `openbmc/bmcweb/redfish-core/lib/log_services.hpp`.
 
 It can be read by the user by calling `GET` on Redfish resource:
-`/redfish/v1/Systems/system/LogServices/EventLog`. It contains JSON array
-of log entries in standard Redfish format, like so:
+`/redfish/v1/Systems/system/LogServices/EventLog`. It contains JSON array of log
+entries in standard Redfish format, like so:
+
 ```json
 {
-    "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/37331",
-    "@odata.type": "#LogEntry.v1_4_0.LogEntry",
-    "Created": "1970-01-01T10:22:11+00:00",
-    "EntryType": "Event",
-    "Id": "37331",
-    "Message": "Warning threshold for number of flash operations has been exceeded. Current percentage of write operations capacity: 50",
-    "MessageArgs": [
-        "50"
-    ],
-    "MessageId": "OpenBMC.0.1.MEFlashWearOutWarning",
-    "Name": "System Event Log Entry",
-    "Severity": "Warning"
+  "@odata.id": "/redfish/v1/Systems/system/LogServices/EventLog/Entries/37331",
+  "@odata.type": "#LogEntry.v1_4_0.LogEntry",
+  "Created": "1970-01-01T10:22:11+00:00",
+  "EntryType": "Event",
+  "Id": "37331",
+  "Message": "Warning threshold for number of flash operations has been exceeded. Current percentage of write operations capacity: 50",
+  "MessageArgs": ["50"],
+  "MessageId": "OpenBMC.0.1.MEFlashWearOutWarning",
+  "Name": "System Event Log Entry",
+  "Severity": "Warning"
 }
 ```
 
 ## References
+
 1. [IPMI Specification v2.0](https://www.intel.pl/content/www/pl/pl/products/docs/servers/ipmi/ipmi-second-gen-interface-spec-v2-rev1-1.html)
 2. [DMTF Redfish Schema Guide](https://www.dmtf.org/sites/default/files/standards/documents/DSP2046_2019.3.pdf)
 3. [OpenBMC](https://github.com/openbmc)