blob: dc26e0a7e657f8615d375adb72ff2f5249e11594 [file] [log] [blame]
Aaron Durbin3bde3d72013-11-04 21:45:52 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Aaron Durbin3bde3d72013-11-04 21:45:52 -060015 */
16
17/* These devices are created at runtime */
Timothy Pearson033bb4b2015-02-10 22:21:39 -060018External (\_PR.CP00, DeviceObj)
19External (\_PR.CP01, DeviceObj)
20External (\_PR.CP02, DeviceObj)
21External (\_PR.CP03, DeviceObj)
Aaron Durbin3bde3d72013-11-04 21:45:52 -060022
23/* Notify OS to re-read CPU tables, assuming ^2 CPU count */
24Method (PNOT)
25{
26 If (LGreaterEqual (\PCNT, 2)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060027 Notify (\_PR.CP00, 0x81) // _CST
28 Notify (\_PR.CP01, 0x81) // _CST
Aaron Durbin3bde3d72013-11-04 21:45:52 -060029 }
30 If (LGreaterEqual (\PCNT, 4)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060031 Notify (\_PR.CP02, 0x81) // _CST
32 Notify (\_PR.CP03, 0x81) // _CST
Aaron Durbin3bde3d72013-11-04 21:45:52 -060033 }
34}
35
36/* Notify OS to re-read CPU _PPC limit, assuming ^2 CPU count */
37Method (PPCN)
38{
39 If (LGreaterEqual (\PCNT, 2)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060040 Notify (\_PR.CP00, 0x80) // _PPC
41 Notify (\_PR.CP01, 0x80) // _PPC
Aaron Durbin3bde3d72013-11-04 21:45:52 -060042 }
43 If (LGreaterEqual (\PCNT, 4)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060044 Notify (\_PR.CP02, 0x80) // _PPC
45 Notify (\_PR.CP03, 0x80) // _PPC
Aaron Durbin3bde3d72013-11-04 21:45:52 -060046 }
47}
48
49/* Notify OS to re-read Throttle Limit tables, assuming ^2 CPU count */
50Method (TNOT)
51{
52 If (LGreaterEqual (\PCNT, 2)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060053 Notify (\_PR.CP00, 0x82) // _TPC
54 Notify (\_PR.CP01, 0x82) // _TPC
Aaron Durbin3bde3d72013-11-04 21:45:52 -060055 }
56 If (LGreaterEqual (\PCNT, 4)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060057 Notify (\_PR.CP02, 0x82) // _TPC
58 Notify (\_PR.CP03, 0x82) // _TPC
Aaron Durbin3bde3d72013-11-04 21:45:52 -060059 }
60}
61
62/* Return a package containing enabled processor entries */
63Method (PPKG)
64{
65 If (LGreaterEqual (\PCNT, 4)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060066 Return (Package() {\_PR.CP00, \_PR.CP01, \_PR.CP02, \_PR.CP03})
Aaron Durbin3bde3d72013-11-04 21:45:52 -060067 } ElseIf (LGreaterEqual (\PCNT, 2)) {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060068 Return (Package() {\_PR.CP00, \_PR.CP01})
Aaron Durbin3bde3d72013-11-04 21:45:52 -060069 } Else {
Timothy Pearson033bb4b2015-02-10 22:21:39 -060070 Return (Package() {\_PR.CP00})
Aaron Durbin3bde3d72013-11-04 21:45:52 -060071 }
72}