VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Include/AcpiCpuData.h@ 85788

Last change on this file since 85788 was 80721, checked in by vboxsync, 5 years ago

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • Property svn:eol-style set to native
File size: 7.3 KB
Line 
1/** @file
2Definitions for CPU S3 data.
3
4Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
5SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9#ifndef _ACPI_CPU_DATA_H_
10#define _ACPI_CPU_DATA_H_
11
12//
13// Register types in register table
14//
15typedef enum {
16 Msr,
17 ControlRegister,
18 MemoryMapped,
19 CacheControl,
20
21 //
22 // Semaphore type used to control the execute sequence of the Msr.
23 // It will be insert between two Msr which has execute dependence.
24 //
25 Semaphore,
26 InvalidReg
27} REGISTER_TYPE;
28
29//
30// Describe the dependency type for different features.
31// The value set to CPU_REGISTER_TABLE_ENTRY.Value when the REGISTER_TYPE is Semaphore.
32//
33typedef enum {
34 NoneDepType,
35 ThreadDepType,
36 CoreDepType,
37 PackageDepType,
38 InvalidDepType
39} CPU_FEATURE_DEPENDENCE_TYPE;
40
41//
42// CPU information.
43//
44typedef struct {
45 //
46 // Record the package count in this CPU.
47 //
48 UINT32 PackageCount;
49 //
50 // Record the max core count in this CPU.
51 // Different packages may have different core count, this value
52 // save the max core count in all the packages.
53 //
54 UINT32 MaxCoreCount;
55 //
56 // Record the max thread count in this CPU.
57 // Different cores may have different thread count, this value
58 // save the max thread count in all the cores.
59 //
60 UINT32 MaxThreadCount;
61 //
62 // This field points to an array.
63 // This array saves valid core count (type UINT32) of each package.
64 // The array has PackageCount elements.
65 //
66 // If the platform does not support MSR setting at S3 resume, and
67 // therefore it doesn't need the dependency semaphores, it should set
68 // this field to 0.
69 //
70 EFI_PHYSICAL_ADDRESS ValidCoreCountPerPackage;
71} CPU_STATUS_INFORMATION;
72
73//
74// Element of register table entry
75//
76typedef struct {
77 REGISTER_TYPE RegisterType; // offset 0 - 3
78 UINT32 Index; // offset 4 - 7
79 UINT8 ValidBitStart; // offset 8
80 UINT8 ValidBitLength; // offset 9
81 BOOLEAN TestThenWrite; // offset 10
82 UINT8 Reserved1; // offset 11
83 UINT32 HighIndex; // offset 12-15, only valid for MemoryMapped
84 UINT64 Value; // offset 16-23
85} CPU_REGISTER_TABLE_ENTRY;
86
87//
88// Register table definition, including current table length,
89// allocated size of this table, and pointer to the list of table entries.
90//
91typedef struct {
92 //
93 // The number of valid entries in the RegisterTableEntry buffer
94 //
95 UINT32 TableLength;
96 UINT32 NumberBeforeReset;
97 //
98 // The size, in bytes, of the RegisterTableEntry buffer
99 //
100 UINT32 AllocatedSize;
101 //
102 // The initial APIC ID of the CPU this register table applies to
103 //
104 UINT32 InitialApicId;
105 //
106 // Physical address of CPU_REGISTER_TABLE_ENTRY structures.
107 //
108 EFI_PHYSICAL_ADDRESS RegisterTableEntry;
109} CPU_REGISTER_TABLE;
110
111//
112// Data structure that is required for ACPI S3 resume. The PCD
113// PcdCpuS3DataAddress must be set to the physical address where this structure
114// is allocated
115//
116typedef struct {
117 //
118 // Physical address of 4KB buffer allocated below 1MB from memory of type
119 // EfiReservedMemoryType. The buffer is not required to be initialized, but
120 // it is recommended that the buffer be zero-filled. This buffer is used to
121 // wake APs during an ACPI S3 resume.
122 //
123 EFI_PHYSICAL_ADDRESS StartupVector;
124 //
125 // Physical address of structure of type IA32_DESCRIPTOR. The
126 // IA32_DESCRIPTOR structure provides the base address and length of a GDT
127 // The GDT must be filled in with the GDT contents that are
128 // used during an ACPI S3 resume. This is typically the contents of the GDT
129 // used by the boot processor when the platform is booted.
130 //
131 EFI_PHYSICAL_ADDRESS GdtrProfile;
132 //
133 // Physical address of structure of type IA32_DESCRIPTOR. The
134 // IA32_DESCRIPTOR structure provides the base address and length of an IDT.
135 // The IDT must be filled in with the IDT contents that are
136 // used during an ACPI S3 resume. This is typically the contents of the IDT
137 // used by the boot processor when the platform is booted.
138 //
139 EFI_PHYSICAL_ADDRESS IdtrProfile;
140 //
141 // Physical address of a buffer that is used as stacks during ACPI S3 resume.
142 // The total size of this buffer, in bytes, is NumberOfCpus * StackSize. This
143 // structure must be allocated from memory of type EfiACPIMemoryNVS.
144 //
145 EFI_PHYSICAL_ADDRESS StackAddress;
146 //
147 // The size, in bytes, of the stack provided to each CPU during ACPI S3 resume.
148 //
149 UINT32 StackSize;
150 //
151 // The number of CPUs. If a platform does not support hot plug CPUs, then
152 // this is the number of CPUs detected when the platform is booted, regardless
153 // of being enabled or disabled. If a platform does support hot plug CPUs,
154 // then this is the maximum number of CPUs that the platform supports.
155 //
156 UINT32 NumberOfCpus;
157 //
158 // Physical address of structure of type MTRR_SETTINGS that contains a copy
159 // of the MTRR settings that are compatible with the MTRR settings used by
160 // the boot processor when the platform was booted. These MTRR settings are
161 // used during an ACPI S3 resume.
162 //
163 EFI_PHYSICAL_ADDRESS MtrrTable;
164 //
165 // Physical address of an array of CPU_REGISTER_TABLE structures, with
166 // NumberOfCpus entries. If a register table is not required, then the
167 // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to 0.
168 // If TableLength is > 0, then elements of RegisterTableEntry are used to
169 // initialize the CPU that matches InitialApicId, during an ACPI S3 resume,
170 // before SMBASE relocation is performed.
171 //
172 EFI_PHYSICAL_ADDRESS PreSmmInitRegisterTable;
173 //
174 // Physical address of an array of CPU_REGISTER_TABLE structures, with
175 // NumberOfCpus entries. If a register table is not required, then the
176 // TableLength and AllocatedSize fields of CPU_REGISTER_TABLE are set to 0.
177 // If TableLength is > 0, then elements of RegisterTableEntry are used to
178 // initialize the CPU that matches InitialApicId, during an ACPI S3 resume,
179 // after SMBASE relocation is performed.
180 //
181 EFI_PHYSICAL_ADDRESS RegisterTable;
182 //
183 // Physical address of a buffer that contains the machine check handler that
184 // is used during an ACPI S3 Resume. In order for this machine check
185 // handler to be active on an AP during an ACPI S3 resume, the machine check
186 // vector in the IDT provided by IdtrProfile must be initialized to transfer
187 // control to this physical address.
188 //
189 EFI_PHYSICAL_ADDRESS ApMachineCheckHandlerBase;
190 //
191 // The size, in bytes, of the machine check handler that is used during an
192 // ACPI S3 Resume. If this field is 0, then a machine check handler is not
193 // provided.
194 //
195 UINT32 ApMachineCheckHandlerSize;
196 //
197 // CPU information which is required when set the register table.
198 //
199 CPU_STATUS_INFORMATION CpuStatus;
200 //
201 // Location info for each AP.
202 // It points to an array which saves all APs location info.
203 // The array count is the AP count in this CPU.
204 //
205 // If the platform does not support MSR setting at S3 resume, and
206 // therefore it doesn't need the dependency semaphores, it should set
207 // this field to 0.
208 //
209 EFI_PHYSICAL_ADDRESS ApLocation;
210} ACPI_CPU_DATA;
211
212#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette