summaryrefslogtreecommitdiff
path: root/src/cpu/amd/agesa/family16kb/acpi/cpu.asl
blob: 48505ebddfd9159af6c1333b1f9ea859500cce3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * This file is part of the coreboot project.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/*
 * Processor Object
 *
 */
Scope (\_SB) {/* define processor scope */
	Device (P000) {
	Name(_HID, "ACPI0007")
	Name(_UID, 0)
	}

	Device (P001) {
	Name(_HID, "ACPI0007")
	Name(_UID, 1)
	}

	Device (P002) {
	Name(_HID, "ACPI0007")
	Name(_UID, 2)
	}

	Device (P003) {
	Name(_HID, "ACPI0007")
	Name(_UID, 3)
	}

	Device (P004) {
	Name(_HID, "ACPI0007")
	Name(_UID, 4)
	}

	Device (P005) {
	Name(_HID, "ACPI0007")
	Name(_UID, 5)
	}

	Device (P006) {
	Name(_HID, "ACPI0007")
	Name(_UID, 6)
	}

	Device (P007) {
	Name(_HID, "ACPI0007")
	Name(_UID, 7)
	}
} /* End _SB scope */