Dhruvaraj Subhashchandran | a2eb94f | 2021-05-05 02:44:28 -0500 | [diff] [blame] | 1 | description: > |
| 2 | Implement this to add Hardware dump management. |
| 3 | |
Patrick Williams | a134741 | 2022-12-06 10:56:22 -0600 | [diff] [blame] | 4 | Hardware dump is a collection hardware state information, including various |
| 5 | registers, and it is used for debugging system checkstop. checkstop is the |
| 6 | descriptive term for entire system termination by the hardware due to a |
| 7 | detected error. |
Dhruvaraj Subhashchandran | 0cd3adb | 2024-04-26 02:34:41 -0500 | [diff] [blame] | 8 | |
| 9 | properties: |
| 10 | - name: ErrorLogId |
| 11 | type: uint32 |
| 12 | description: > |
| 13 | The id of the log associated with the action which triggered the dump. |
| 14 | This ID is a reference to an error log entry in the logging system. |
| 15 | The value should be a 32-bit unsigned integer. |
| 16 | |
| 17 | - name: FailingUnitId |
| 18 | type: uint32 |
| 19 | description: > |
| 20 | A unique id of the failing hardware unit which is causing the dump. |
| 21 | This ID could be used to identify the specific piece of hardware |
| 22 | within the system. The value should be a 32-bit unsigned integer. |