2 Definitions for CPU S3 data.
4 Copyright (c) 2013 - 2017, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #ifndef _ACPI_CPU_DATA_H_
16 #define _ACPI_CPU_DATA_H_
19 // Register types in register table
29 // Element of register table entry
32 REGISTER_TYPE RegisterType
; // offset 0 - 3
33 UINT32 Index
; // offset 4 - 7
34 UINT8 ValidBitStart
; // offset 8
35 UINT8 ValidBitLength
; // offset 9
36 UINT16 Reserved
; // offset 10 - 11
37 UINT32 HighIndex
; // offset 12-15, only valid for MemoryMapped
38 UINT64 Value
; // offset 16-23
39 } CPU_REGISTER_TABLE_ENTRY
;
42 // Register table definition, including current table length,
43 // allocated size of this table, and pointer to the list of table entries.
47 // The number of valid entries in the RegisterTableEntry buffer
50 UINT32 NumberBeforeReset
;
52 // The size, in bytes, of the RegisterTableEntry buffer
56 // The initial APIC ID of the CPU this register table applies to
60 // Physical address of CPU_REGISTER_TABLE_ENTRY structures. This buffer must be
61 // allocated below 4GB from memory of type EfiACPIMemoryNVS.
63 EFI_PHYSICAL_ADDRESS RegisterTableEntry
;
67 // Data structure that is required for ACPI S3 resume. This structure must be
68 // allocated below 4GB from memory of type EfiACPIMemoryNVS. The PCD
69 // PcdCpuS3DataAddress must be set to the physical address where this structure
74 // Physical address of 4KB buffer allocated below 1MB from memory of type
75 // EfiReservedMemoryType. The buffer is not required to be initialized, but
76 // it is recommended that the buffer be zero-filled. This buffer is used to
77 // wake APs during an ACPI S3 resume.
79 EFI_PHYSICAL_ADDRESS StartupVector
;
81 // Physical address of structure of type IA32_DESCRIPTOR. This structure must
82 // be allocated below 4GB from memory of type EfiACPIMemoryNVS. The
83 // IA32_DESCRIPTOR structure provides the base address and length of a GDT
84 // The buffer for GDT must also be allocated below 4GB from memory of type
85 // EfiACPIMemoryNVS. The GDT must be filled in with the GDT contents that are
86 // used during an ACPI S3 resume. This is typically the contents of the GDT
87 // used by the boot processor when the platform is booted.
89 EFI_PHYSICAL_ADDRESS GdtrProfile
;
91 // Physical address of structure of type IA32_DESCRIPTOR. This structure must
92 // be allocated below 4GB from memory of type EfiACPIMemoryNVS. The
93 // IA32_DESCRIPTOR structure provides the base address and length of an IDT.
94 // The buffer for IDT must also be allocated below 4GB from memory of type
95 // EfiACPIMemoryNVS. The IDT must be filled in with the IDT contents that are
96 // used during an ACPI S3 resume. This is typically the contents of the IDT
97 // used by the boot processor when the platform is booted.
99 EFI_PHYSICAL_ADDRESS IdtrProfile
;
101 // Physical address of a buffer that is used as stacks during ACPI S3 resume.
102 // The total size of this buffer, in bytes, is NumberOfCpus * StackSize. This
103 // structure must be allocated below 4GB from memory of type EfiACPIMemoryNVS.
105 EFI_PHYSICAL_ADDRESS StackAddress
;
107 // The size, in bytes, of the stack provided to each CPU during ACPI S3 resume.
111 // The number of CPUs. If a platform does not support hot plug CPUs, then
112 // this is the number of CPUs detected when the platform is booted, regardless
113 // of being enabled or disabled. If a platform does support hot plug CPUs,
114 // then this is the maximum number of CPUs that the platform supports.
118 // Physical address of structure of type MTRR_SETTINGS that contains a copy
119 // of the MTRR settings that are compatible with the MTRR settings used by
120 // the boot processor when the platform was booted. These MTRR settings are
121 // used during an ACPI S3 resume. This structure must be allocated below 4GB
122 // from memory of type EfiACPIMemoryNVS.
124 EFI_PHYSICAL_ADDRESS MtrrTable
;
126 // Physical address of an array of CPU_REGISTER_TABLE structures, with
127 // NumberOfCpus entries. This array must be allocated below 4GB from memory
128 // of type EfiACPIMemoryNVS. If a register table is not required, then the
129 // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to 0.
130 // If TableLength is > 0, then elements of RegisterTableEntry are used to
131 // initialize the CPU that matches InitialApicId, during an ACPI S3 resume,
132 // before SMBASE relocation is performed.
134 EFI_PHYSICAL_ADDRESS PreSmmInitRegisterTable
;
136 // Physical address of an array of CPU_REGISTER_TABLE structures, with
137 // NumberOfCpus entries. This array must be allocated below 4GB from memory
138 // of type EfiACPIMemoryNVS. If a register table is not required, then the
139 // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to 0.
140 // If TableLength is > 0, then elements of RegisterTableEntry are used to
141 // initialize the CPU that matches InitialApicId, during an ACPI S3 resume,
142 // after SMBASE relocation is performed.
144 EFI_PHYSICAL_ADDRESS RegisterTable
;
146 // Physical address of a buffer that contains the machine check handler that
147 // is used during an ACPI S3 Resume. This buffer must be allocated below 4GB
148 // from memory of type EfiACPIMemoryNVS. In order for this machine check
149 // handler to be active on an AP during an ACPI S3 resume, the machine check
150 // vector in the IDT provided by IdtrProfile must be initialized to transfer
151 // control to this physical address.
153 EFI_PHYSICAL_ADDRESS ApMachineCheckHandlerBase
;
155 // The size, in bytes, of the machine check handler that is used during an
156 // ACPI S3 Resume. If this field is 0, then a machine check handler is not
159 UINT32 ApMachineCheckHandlerSize
;