summaryrefslogtreecommitdiff
path: root/ReferenceCode/AcpiTables/Protocol/AcpiPlatformPolicy/AcpiPlatformPolicy.h
blob: 5dc7727fe62d01c0bf89dc32154dc99b253e0412 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @file
  Interface definition details between ACPI and platform drivers during DXE phase.

@copyright
  Copyright (c) 2012 Intel Corporation. All rights reserved
  This software and associated documentation (if any) is furnished
  under a license and may only be used or copied in accordance
  with the terms of the license. Except as permitted by such
  license, no part of this software or documentation may be
  reproduced, stored in a retrieval system, or transmitted in any
  form or by any means without the express written consent of
  Intel Corporation.

  This file contains an 'Intel Peripheral Driver' and uniquely
  identified as "Intel Reference Module" and is
  licensed for Intel CPUs and chipsets under the terms of your
  license agreement with Intel or your vendor.  This file may
  be modified by the user, subject to additional terms of the
  license agreement
**/

#ifndef _ACPI_PLATFORM_POLICY_H_
#define _ACPI_PLATFORM_POLICY_H_

///
///  ACPI policy provided by platform for DXE phase
///
#define ACPI_PLATFORM_POLICY_PROTOCOL_GUID \
     { 0xe9a6ca5a, 0x85bc, 0x4840, 0x87, 0x84, 0x94, 0xcf, 0xc9, 0xed, 0x67, 0x66 }

///
/// Extern the GUID for protocol users.
///
extern EFI_GUID gAcpiPlatformPolicyProtocolGuid;

//
// Forward reference for ANSI C compatibility
//
EFI_FORWARD_DECLARATION (ACPI_PLATFORM_POLICY_PROTOCOL);

///
/// Protocol revision number
///
#define ACPI_PLATFORM_POLICY_PROTOCOL_REVISION_1  1

///
/// ACPI DXE Platform Policy
///
struct _ACPI_PLATFORM_POLICY_PROTOCOL {
  UINT8                   Revision;
  UINT16                  BoardId;
  UINT8                   EnableDptf;            ///< 0=Disable; 1=Enable; DEFAULT=0
  UINT8                   EnableCppc;             ///< 0=Disable; 1=Enable; DEFAULT=0
  UINT8                   EnableCppcPlatformSCI;  ///< 0=Disable; 1=Enable; DEFAULT=0
  UINT8                   EnableRtD3;             ///< 0=Disable; 1=Enable; DEFAULT=0
  UINT8                   EnableAcpiDebug;        ///< 0=Disable; 1=Enable; DEFAULT=0
};

#endif