com.ibm: Add additional properties to SBE dump
This commit introduces two new properties to the SBE dump D-Bus
interface:
- ErrorLogId: References the log entry that triggered the dump.
- FailingUnitId: Identifies the failing SBE causing the dump.
These additions help in associating dumps with specific error logs and
identifying the SBE involved in failures.
Change-Id: I83f7bff90d7e48249767a9393f3049f0cd58f60f
Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
diff --git a/yaml/com/ibm/Dump/Entry/SBE.interface.yaml b/yaml/com/ibm/Dump/Entry/SBE.interface.yaml
index 854246b..5198ed8 100644
--- a/yaml/com/ibm/Dump/Entry/SBE.interface.yaml
+++ b/yaml/com/ibm/Dump/Entry/SBE.interface.yaml
@@ -11,3 +11,18 @@
packaged into the OpenPOWER dump format and which is called as SBE dump.
There will be one instance of SBE on each processor. Implement this
interface to add support for managing the SBE dump.
+
+properties:
+ - name: ErrorLogId
+ type: uint32
+ description: >
+ The id of the log associated with the action which triggered the dump.
+ This ID is a reference to an error log entry in the logging system.
+ The value should be a 32-bit unsigned integer.
+
+ - name: FailingUnitId
+ type: uint32
+ description: >
+ A unique id of the failing SBE which is causing the dump. This ID
+ could be used to identify the specific SBE within the system. The
+ value should be a 32-bit unsigned integer.