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