Andrew Geissler | ec9fc42 | 2021-04-19 16:29:13 -0500 | [diff] [blame] | 1 | description: > |
| 2 | Implement to provide information on the condition of the host firmware. |
| 3 | The expectation is the implementer of this interface utilize their host |
| 4 | protocol (IPMI, PLDM, ...) to check the state of the host firmware running |
| 5 | on the system. |
| 6 | |
| 7 | properties: |
| 8 | - name: CurrentFirmwareCondition |
| 9 | type: enum[self.FirmwareCondition] |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 10 | default: "Unknown" |
Andrew Geissler | ec9fc42 | 2021-04-19 16:29:13 -0500 | [diff] [blame] | 11 | description: > |
| 12 | The current condition of the host |
| 13 | |
| 14 | enumerations: |
| 15 | - name: FirmwareCondition |
| 16 | description: > |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 17 | The current condition of the host firmware |
Andrew Geissler | ec9fc42 | 2021-04-19 16:29:13 -0500 | [diff] [blame] | 18 | values: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 19 | - name: "Unknown" |
| 20 | description: > |
| 21 | The condition of the host firmware is unknown |
| 22 | - name: "Off" |
| 23 | description: > |
| 24 | Host firmware is not responsive to communication |
| 25 | - name: "Running" |
| 26 | description: > |
| 27 | Host firmware is running and responsive to communication |