pc: acpi: drop unused CPU_STATUS_LEN from DSDT
[qemu/ar7.git] / hw / i386 / acpi-dsdt-cpu-hotplug.dsl
blob53e1389183334cac8c662353a27d0c9e1c26116d
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
12  * You should have received a copy of the GNU General Public License along
13  * with this program; if not, see <http://www.gnu.org/licenses/>.
14  */
16 /****************************************************************
17  * CPU hotplug
18  ****************************************************************/
20 Scope(\_SB) {
21     /* Objects filled in by run-time generated SSDT */
22     External(NTFY, MethodObj)
23     External(CPON, PkgObj)
24     External(PRS, FieldUnitObj)
26     /* Methods called by run-time generated SSDT Processor objects */
27     Method(CPMA, 1, NotSerialized) {
28         // _MAT method - create an madt apic buffer
29         // Arg0 = Processor ID = Local APIC ID
30         // Local0 = CPON flag for this cpu
31         Store(DerefOf(Index(CPON, Arg0)), Local0)
32         // Local1 = Buffer (in madt apic form) to return
33         Store(Buffer(8) {0x00, 0x08, 0x00, 0x00, 0x00, 0, 0, 0}, Local1)
34         // Update the processor id, lapic id, and enable/disable status
35         Store(Arg0, Index(Local1, 2))
36         Store(Arg0, Index(Local1, 3))
37         Store(Local0, Index(Local1, 4))
38         Return (Local1)
39     }
40     Method(CPST, 1, NotSerialized) {
41         // _STA method - return ON status of cpu
42         // Arg0 = Processor ID = Local APIC ID
43         // Local0 = CPON flag for this cpu
44         Store(DerefOf(Index(CPON, Arg0)), Local0)
45         If (Local0) {
46             Return (0xF)
47         } Else {
48             Return (0x0)
49         }
50     }
51     Method(CPEJ, 2, NotSerialized) {
52         // _EJ0 method - eject callback
53         Sleep(200)
54     }
56     Method(PRSC, 0) {
57         // Local5 = active cpu bitmap
58         Store(PRS, Local5)
59         // Local2 = last read byte from bitmap
60         Store(Zero, Local2)
61         // Local0 = Processor ID / APIC ID iterator
62         Store(Zero, Local0)
63         While (LLess(Local0, SizeOf(CPON))) {
64             // Local1 = CPON flag for this cpu
65             Store(DerefOf(Index(CPON, Local0)), Local1)
66             If (And(Local0, 0x07)) {
67                 // Shift down previously read bitmap byte
68                 ShiftRight(Local2, 1, Local2)
69             } Else {
70                 // Read next byte from cpu bitmap
71                 Store(DerefOf(Index(Local5, ShiftRight(Local0, 3))), Local2)
72             }
73             // Local3 = active state for this cpu
74             Store(And(Local2, 1), Local3)
76             If (LNotEqual(Local1, Local3)) {
77                 // State change - update CPON with new state
78                 Store(Local3, Index(CPON, Local0))
79                 // Do CPU notify
80                 If (LEqual(Local3, 1)) {
81                     NTFY(Local0, 1)
82                 } Else {
83                     NTFY(Local0, 3)
84                 }
85             }
86             Increment(Local0)
87         }
88     }