summaryrefslogtreecommitdiff
path: root/ChvRefCodePkg/Include/Emt1.h
blob: 3637da2f4747b27915b528de523a4c61eb1c75d1 (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
60
61
62
63
64
65
66
/** @file
  Energe Management Table extra.

  Copyright (c) 1996 - 2015, Intel Corporation. All rights reserved.<BR>

  This program and the accompanying materials
  are licensed and made available under the terms and conditions of the BSD License
  which accompanies this distribution.  The full text of the license may be found at
  http://opensource.org/licenses/bsd-license.php.

  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

**/

#ifndef _EMT1_H
#define _EMT1_H

//
// Statements that include other files
//
#include <IndustryStandard/Acpi10.h>
#include <IndustryStandard/Acpi20.h>
#include <IndustryStandard/Acpi30.h>

#define EFI_ACPI_EMT1_REVISION                          0x00000000
#define EFI_ACPI_OEM1_REVISION                          0x00000001
#define EFI_ACPI_EMT1_SIGNATURE                         SIGNATURE_32('E', 'M', '_', '1')
#define EFI_ACPI_OEM1_SIGNATURE                         SIGNATURE_32('O', 'E', 'M', '1')

#define EFI_ACPI_EMT1_TABLE_ID     SIGNATURE_64('O','E','M','1',' ',' ',' ',' ') // OEM table id 8 bytes long
#define EFI_ACPI_OEM1_TABLE_ID     SIGNATURE_64('E','N','R','G','Y','M','G','T') // OEM table id 8 bytes long

#pragma pack(1)

typedef struct {
    EFI_ACPI_DESCRIPTION_HEADER Header;
    UINT16   IaAppsRun;
    UINT8    IaAppsCap;
    UINT8    CapOrVoltFlag;
    UINT8    BootOnInvalidBatt;
} EFI_ACPI_ENERGY_MANAGEMENT_1_TABLE;

typedef struct {
    EFI_ACPI_DESCRIPTION_HEADER Header;
    UINT8                       FixedOption0;
    UINT8                       FixedOption1;
    UINT8                       DBIInGpioNumber;
    UINT8                       DBIOutGpioNumber;
    UINT8                       BatChpType;
    UINT16                      IaAppsRun;
    UINT8                       BatIdDBIBase;
    UINT8                       BatIdAnlgBase;
    UINT8                       IaAppsCap;
    UINT16                      VBattFreqLmt;
    UINT8                       CapFreqIdx;
    UINT8                       Rsvd1;
    UINT8                       BatIdx;
    UINT8                       IaAppsToUse;
    UINT8                       TurboChrg;
    UINT8                       Rsvd2[11];
}EFI_ACPI_EM_OEM_1_TABLE;

#pragma pack()

#endif