summaryrefslogtreecommitdiffstats
path: root/src/cpu/intel/common/acpi/cpu.asl
blob: 85d8a67e11aa881e34558d1ec918d921027d1332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-only */

/* 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)
}