/** @file
|
This file describes the contents of the ACPI DMA address Remapping
|
Some additional ACPI values are defined in Acpi1_0.h and Acpi2_0.h.
|
|
Copyright (c) 2019 Intel Corporation. All rights reserved. <BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
**/
|
|
#ifndef _SA_DMAR_H_
|
#define _SA_DMAR_H_
|
|
///
|
/// Include standard ACPI table definitions
|
///
|
#include <IndustryStandard/Acpi30.h>
|
#include <DmaRemappingTable.h>
|
|
#pragma pack(1)
|
|
#define EFI_ACPI_DMAR_OEM_TABLE_ID 0x20202020324B4445 ///< "EDK2 "
|
#define EFI_ACPI_DMAR_OEM_CREATOR_ID 0x4C544E49 ///< "INTL"
|
#pragma pack()
|
|
#endif
|