hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/** @file
*
*  Copyright (c) 2017, Linaro Limited. All rights reserved.
*
*  SPDX-License-Identifier: BSD-2-Clause-Patent
*
**/
 
#ifndef __DT_PLATFORM_DXE_H__
#define __DT_PLATFORM_DXE_H__
 
#include <Guid/HiiPlatformSetupFormset.h>
#include <Guid/DtPlatformFormSet.h>
 
#define DT_ACPI_SELECT_DT       0x0
#define DT_ACPI_SELECT_ACPI     0x1
 
#define DT_ACPI_VARIABLE_NAME   L"DtAcpiPref"
 
typedef struct {
  UINT8         Pref;
  UINT8         Reserved[3];
} DT_ACPI_VARSTORE_DATA;
 
#endif