mirror of https://github.com/acidanthera/audk.git
ArmVirtPkg/Kvmtool: Add DSDT ACPI table
Most ACPI tables for Kvmtool firmware are dynamically generated. The AML code is also generated at runtime for most components in appropriate SSDTs. Although there may not be much to describe in the DSDT, the DSDT table is mandatory. Therefore, add an empty stub for DSDT. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
parent
dc1118fa0d
commit
0dbd356983
|
@ -0,0 +1,21 @@
|
|||
/** @file
|
||||
Differentiated System Description Table Fields (DSDT)
|
||||
|
||||
Copyright (c) 2021 - 2022, ARM Ltd. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
|
||||
DefinitionBlock ("DsdtTable.aml", "DSDT", 2, "ARMLTD", "ARM-KVMT", 1) {
|
||||
Scope (_SB) {
|
||||
//
|
||||
// Most ACPI tables for Kvmtool firmware are
|
||||
// dynamically generated. The AML code is also
|
||||
// generated at runtime for most components in
|
||||
// appropriate SSDTs.
|
||||
// Although there may not be much to describe
|
||||
// in the DSDT, the DSDT table is mandatory.
|
||||
// Therefore, add an empty stub for DSDT.
|
||||
//
|
||||
} // Scope (_SB)
|
||||
}
|
Loading…
Reference in New Issue