Andrew Geissler | ec9fc42 | 2021-04-19 16:29:13 -0500 | [diff] [blame] | 1 | description: > |
Patrick Williams | a134741 | 2022-12-06 10:56:22 -0600 | [diff] [blame] | 2 | Implement to provide information on the condition of the host firmware. The |
| 3 | expectation is the implementer of this interface utilize their host protocol |
| 4 | (IPMI, PLDM, ...) to check the state of the host firmware running on the |
| 5 | system. |
Andrew Geissler | ec9fc42 | 2021-04-19 16:29:13 -0500 | [diff] [blame] | 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 |