QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
869 B
35 lines
869 B
# -*- Mode: Python -*-
|
|
# vim: filetype=python
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
##
|
|
# == GHESv2 CPER Error Injection
|
|
#
|
|
# Defined since ACPI Specification 6.1, section 18.3.2.8 Generic
|
|
# Hardware Error Source version 2. See:
|
|
#
|
|
# https://uefi.org/sites/default/files/resources/ACPI_6_1.pdf
|
|
##
|
|
|
|
##
|
|
# @inject-ghes-v2-error:
|
|
#
|
|
# Inject an error with additional ACPI 6.1 GHESv2 error information
|
|
#
|
|
# @cper: contains a base64 encoded string with raw data for a single
|
|
# CPER record with Generic Error Status Block, Generic Error Data
|
|
# Entry and generic error data payload, as described at
|
|
# https://uefi.org/specs/UEFI/2.10/Apx_N_Common_Platform_Error_Record.html#format
|
|
#
|
|
# Features:
|
|
#
|
|
# @unstable: This command is experimental.
|
|
#
|
|
# Since: 10.2
|
|
##
|
|
{ 'command': 'inject-ghes-v2-error',
|
|
'data': {
|
|
'cper': 'str'
|
|
},
|
|
'features': [ 'unstable' ]
|
|
}
|
|
|