forked from tianocore/edk2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DynamicTablesPkg: Add X64 MADT table generator
Updates X64 namespace object. Updates the object parser. Updates the Readme. Cc: Sami Mujawar <[email protected]> Cc: Pierre Gondois <[email protected]> Signed-off-by: Abdul Lateef Attar <[email protected]>
- Loading branch information
1 parent
24d835a
commit e89ff68
Showing
7 changed files
with
778 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
DynamicTablesPkg/Library/Acpi/X64/AcpiMadtLib/AcpiMadtLib.inf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
## @file | ||
# MADT Table Generator | ||
# | ||
# Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved. | ||
# | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
## | ||
|
||
[Defines] | ||
INF_VERSION = 1.30 | ||
BASE_NAME = AcpiMadtLib | ||
FILE_GUID = 3D0CA837-FDA2-4546-9CDC-42953238E456 | ||
VERSION_STRING = 1.0 | ||
MODULE_TYPE = DXE_DRIVER | ||
LIBRARY_CLASS = NULL|DXE_DRIVER | ||
CONSTRUCTOR = AcpiMadtLibConstructor | ||
DESTRUCTOR = AcpiMadtLibDestructor | ||
|
||
# | ||
# The following information is for reference only and not required by the build tools. | ||
# | ||
# VALID_ARCHITECTURES = IA32 X64 | ||
# | ||
|
||
[Sources.IA32, Sources.X64] | ||
MadtGenerator.c | ||
|
||
[Packages] | ||
DynamicTablesPkg/DynamicTablesPkg.dec | ||
MdeModulePkg/MdeModulePkg.dec | ||
MdePkg/MdePkg.dec | ||
|
||
[LibraryClasses] | ||
BaseLib | ||
DebugLib |
Oops, something went wrong.