Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 1 | /* |
| 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. |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | /* These devices are created at runtime */ |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 18 | External (\_PR.CP00, DeviceObj) |
| 19 | External (\_PR.CP01, DeviceObj) |
| 20 | External (\_PR.CP02, DeviceObj) |
| 21 | External (\_PR.CP03, DeviceObj) |
Lee Leahy | 3247172 | 2015-04-20 15:20:28 -0700 | [diff] [blame] | 22 | |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 23 | |
| 24 | /* Notify OS to re-read CPU tables, assuming ^2 CPU count */ |
| 25 | Method (PNOT) |
| 26 | { |
| 27 | If (LGreaterEqual (\PCNT, 2)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 28 | Notify (\_PR.CP00, 0x81) /* _CST */ |
| 29 | Notify (\_PR.CP01, 0x81) /* _CST */ |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 30 | } |
| 31 | If (LGreaterEqual (\PCNT, 4)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 32 | Notify (\_PR.CP02, 0x81) /* _CST */ |
| 33 | Notify (\_PR.CP03, 0x81) /* _CST */ |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 34 | } |
| 35 | } |
| 36 | |
| 37 | /* Notify OS to re-read CPU _PPC limit, assuming ^2 CPU count */ |
| 38 | Method (PPCN) |
| 39 | { |
| 40 | If (LGreaterEqual (\PCNT, 2)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 41 | Notify (\_PR.CP00, 0x80) /* _PPC */ |
| 42 | Notify (\_PR.CP01, 0x80) /* _PPC */ |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 43 | } |
| 44 | If (LGreaterEqual (\PCNT, 4)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 45 | Notify (\_PR.CP02, 0x80) /* _PPC */ |
| 46 | Notify (\_PR.CP03, 0x80) /* _PPC */ |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 47 | } |
| 48 | } |
| 49 | |
| 50 | /* Notify OS to re-read Throttle Limit tables, assuming ^2 CPU count */ |
| 51 | Method (TNOT) |
| 52 | { |
| 53 | If (LGreaterEqual (\PCNT, 2)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 54 | Notify (\_PR.CP00, 0x82) /* _TPC */ |
| 55 | Notify (\_PR.CP01, 0x82) /* _TPC */ |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 56 | } |
| 57 | If (LGreaterEqual (\PCNT, 4)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 58 | Notify (\_PR.CP02, 0x82) /* _TPC */ |
| 59 | Notify (\_PR.CP03, 0x82) /* _TPC */ |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | |
| 63 | /* Return a package containing enabled processor entries */ |
| 64 | Method (PPKG) |
| 65 | { |
| 66 | If (LGreaterEqual (\PCNT, 4)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 67 | Return (Package() {\_PR.CP00, \_PR.CP01, \_PR.CP02, \_PR.CP03}) |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 68 | } ElseIf (LGreaterEqual (\PCNT, 2)) { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 69 | Return (Package() {\_PR.CP00, \_PR.CP01}) |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 70 | } Else { |
Jagadish Krishnamoorthy | 98d62f2 | 2015-07-09 00:32:32 -0700 | [diff] [blame] | 71 | Return (Package() {\_PR.CP00}) |
Lee Leahy | 77ff0b1 | 2015-05-05 15:07:29 -0700 | [diff] [blame] | 72 | } |
| 73 | } |