soc: Remove copyright notices
[coreboot.git] / src / soc / amd / picasso / acpi / cpu.asl
blob59ac62e1ec079814fd08a150b85423337ed1f1f7
1 /*
2  * This file is part of the coreboot project.
3  *
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; version 2 of the License.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
15 /* Required function by EC, Notify OS to re-read CPU tables */
16 Method (PNOT)
21  * Processor Object
22  */
23 /* These devices are created at runtime */
24 External (\_PR.P000, DeviceObj)
25 External (\_PR.P001, DeviceObj)
26 External (\_PR.P002, DeviceObj)
27 External (\_PR.P003, DeviceObj)
28 External (\_PR.P004, DeviceObj)
29 External (\_PR.P005, DeviceObj)
30 External (\_PR.P006, DeviceObj)
31 External (\_PR.P007, DeviceObj)
33 /* Return a package containing enabled processor entries */
34 Method (PPKG)
36         If (LGreaterEqual (\PCNT, 2)) {
37                 Return (Package ()
38                 {
39                         \_PR.P000,
40                         \_PR.P001
41                 })
42         } Else {
43                 Return (Package ()
44                 {
45                         \_PR.P000
46                 })
47         }