]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/Include/CpuHotPlugData.h
UefiCpuPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / UefiCpuPkg / Include / CpuHotPlugData.h
CommitLineData
a0fa23aa
MK
1/** @file\r
2Definition for a structure sharing information for CPU hot plug.\r
3\r
4Copyright (c) 2013 - 2015, Intel Corporation. All rights reserved.<BR>\r
0acd8697 5SPDX-License-Identifier: BSD-2-Clause-Patent\r
a0fa23aa
MK
6\r
7**/\r
8\r
9#ifndef _CPU_HOT_PLUG_DATA_H_\r
10#define _CPU_HOT_PLUG_DATA_H_\r
11\r
12#define CPU_HOT_PLUG_DATA_REVISION_1 0x00000001\r
13\r
14typedef struct {\r
15 UINT32 Revision; // Used for version identification for this structure\r
16 UINT32 ArrayLength; // The entries number of the following ApicId array and SmBase array\r
17 //\r
18 // Data required for SMBASE relocation\r
19 //\r
20 UINT64 *ApicId; // Pointer to ApicId array\r
21 UINTN *SmBase; // Pointer to SmBase array\r
22 UINT32 Reserved;\r
23 UINT32 SmrrBase;\r
24 UINT32 SmrrSize;\r
25} CPU_HOT_PLUG_DATA;\r
26\r
27#endif\r