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