summaryrefslogtreecommitdiffstats
path: root/src/cpu/intel/common/acpi/cpu.asl
blob: 24c9a2423981bfcf00701c64d70510e25562c4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

/* These come from the dynamically created CPU SSDT */
External (\_SB.CNOT, MethodObj)

/* Notify OS to re-read CPU tables */
Method (PNOT)
{
	\_SB.CNOT (0x81)
}

/* Notify OS to re-read CPU _PPC limit */
Method (PPCN)
{
	\_SB.CNOT (0x80)
}

/* Notify OS to re-read Throttle Limit tables */
Method (TNOT)
{
	\_SB.CNOT (0x82)
}