File: proc_cap_intel.h

package info (click to toggle)
linux 6.12.38-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,675,544 kB
  • sloc: ansic: 25,916,840; asm: 269,589; sh: 136,393; python: 65,219; makefile: 55,714; perl: 37,750; xml: 19,284; cpp: 5,894; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (40 lines) | stat: -rw-r--r-- 1,383 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* SPDX-License-Identifier: GPL-2.0 */

/* Vendor specific processor capabilities bit definition
 * for Intel processors. Those bits are used to convey OSPM
 * power management capabilities to the platform.
 */

#ifndef __PROC_CAP_INTEL_H__
#define __PROC_CAP_INTEL_H__

#define ACPI_PROC_CAP_P_FFH			(0x0001)
#define ACPI_PROC_CAP_C_C1_HALT			(0x0002)
#define ACPI_PROC_CAP_T_FFH			(0x0004)
#define ACPI_PROC_CAP_SMP_C1PT			(0x0008)
#define ACPI_PROC_CAP_SMP_C2C3			(0x0010)
#define ACPI_PROC_CAP_SMP_P_SWCOORD		(0x0020)
#define ACPI_PROC_CAP_SMP_C_SWCOORD		(0x0040)
#define ACPI_PROC_CAP_SMP_T_SWCOORD		(0x0080)
#define ACPI_PROC_CAP_C_C1_FFH			(0x0100)
#define ACPI_PROC_CAP_C_C2C3_FFH		(0x0200)
#define ACPI_PROC_CAP_SMP_P_HWCOORD		(0x0800)
#define ACPI_PROC_CAP_COLLAB_PROC_PERF		(0x1000)

#define ACPI_PROC_CAP_EST_CAPABILITY_SMP	(ACPI_PROC_CAP_SMP_C1PT | \
						 ACPI_PROC_CAP_C_C1_HALT | \
						 ACPI_PROC_CAP_P_FFH)

#define ACPI_PROC_CAP_EST_CAPABILITY_SWSMP	(ACPI_PROC_CAP_SMP_C1PT | \
						 ACPI_PROC_CAP_C_C1_HALT | \
						 ACPI_PROC_CAP_SMP_P_SWCOORD | \
						 ACPI_PROC_CAP_SMP_P_HWCOORD | \
						 ACPI_PROC_CAP_P_FFH)

#define ACPI_PROC_CAP_C_CAPABILITY_SMP		(ACPI_PROC_CAP_SMP_C2C3  | \
						 ACPI_PROC_CAP_SMP_C1PT  | \
						 ACPI_PROC_CAP_C_C1_HALT | \
						 ACPI_PROC_CAP_C_C1_FFH  | \
						 ACPI_PROC_CAP_C_C2C3_FFH)

#endif /* __PROC_CAP_INTEL_H__ */