]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2DeviceRefCodePkg/AcpiTablesPCAT/CPU.asl
8449ed0d5584c927da34cae104ab3d4c95cc9923
[mirror_edk2.git] / Vlv2DeviceRefCodePkg / AcpiTablesPCAT / CPU.asl
1 /**************************************************************************;
2 ;* *;
3 ;* *;
4 ;* Intel Corporation - ACPI Reference Code for the Baytrail *;
5 ;* Family of Customer Reference Boards. *;
6 ;* *;
7 ;* *;
8 ;* Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved *;
9 ;
10 ; SPDX-License-Identifier: BSD-2-Clause-Patent
11 ;
12 ;* *;
13 ;* *;
14 ;**************************************************************************/
15
16
17
18 // NOTE: The _PDC Implementation is out of the scope of this
19 // reference code. Please see the latest Hyper-Threading Technology
20 // Reference Code for complete implementation details.
21
22 Scope(\_PR)
23 {
24 Processor(CPU0, // Unique name for Processor 0.
25 1, // Unique ID for Processor 0.
26 0x00, // CPU0 ACPI P_BLK address = ACPIBASE + 10h.
27 0) // CPU0 P_BLK length = 6 bytes.
28 {}
29
30 Processor(CPU1, // Unique name for Processor 1.
31 2, // Unique ID for Processor 1.
32 0x00,
33 0) // CPU1 P_BLK length = 6 bytes.
34 {}
35
36 Processor(CPU2, // Unique name for Processor 2.
37 3, // Unique ID for Processor 2.
38 0x00,
39 0) // CPU2 P_BLK length = 6 bytes.
40 {}
41
42 Processor(CPU3, // Unique name for Processor 3.
43 4, // Unique ID for Processor 3.
44 0x00,
45 0) // CPU3 P_BLK length = 6 bytes.
46 {}
47 } // End _PR
48
49