Simon Glass | d9434a1 | 2020-09-22 12:44:47 -0600 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | ||||
3 | * Copyright 2019 Google LLC | ||||
4 | */ | ||||
5 | |||||
6 | /* These come from the dynamically created CPU SSDT */ | ||||
7 | External (\_PR.CNOT, MethodObj) | ||||
8 | |||||
9 | /* Notify OS to re-read CPU tables */ | ||||
10 | Method (PNOT) | ||||
11 | { | ||||
12 | \_PR.CNOT (0x81) | ||||
13 | } | ||||
14 | |||||
15 | /* Notify OS to re-read CPU _PPC limit */ | ||||
16 | Method (PPCN) | ||||
17 | { | ||||
18 | \_PR.CNOT (0x80) | ||||
19 | } | ||||
20 | |||||
21 | /* Notify OS to re-read Throttle Limit tables */ | ||||
22 | Method (TNOT) | ||||
23 | { | ||||
24 | \_PR.CNOT (0x82) | ||||
25 | } |