Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
BACKPORT: ACPICA: ACPI 6.3: PPTT add additional fields in Processor S…
Browse files Browse the repository at this point in the history
…tructure Flags

ACPICA commit c736ea34add19a3a07e0e398711847cd6b95affd

Link: acpica/acpica@c736ea34

This patch is part of the eMAG2 ARM SPE PMU patch set.
This patch is backported from:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.2-rc6&id=b5eab512e7cffb2bb37c4b342b5594e9e75fd486

Signed-off-by: Erik Schmauss <[email protected]>
Signed-off-by: Bob Moore <[email protected]>
Signed-off-by: Khuong Dinh <[email protected]>
  • Loading branch information
Erik Schmauss authored and tphan-ampere committed Apr 21, 2020
1 parent 068ff4a commit 51df9ae
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions include/acpi/actbl2.h
Original file line number Diff line number Diff line change
Expand Up @@ -1472,8 +1472,11 @@ struct acpi_pptt_processor {

/* Flags */

#define ACPI_PPTT_PHYSICAL_PACKAGE (1) /* Physical package */
#define ACPI_PPTT_ACPI_PROCESSOR_ID_VALID (2) /* ACPI Processor ID valid */
#define ACPI_PPTT_PHYSICAL_PACKAGE (1)
#define ACPI_PPTT_ACPI_PROCESSOR_ID_VALID (1<<1)
#define ACPI_PPTT_ACPI_PROCESSOR_IS_THREAD (1<<2) /* ACPI 6.3 */
#define ACPI_PPTT_ACPI_LEAF_NODE (1<<3) /* ACPI 6.3 */
#define ACPI_PPTT_ACPI_IDENTICAL (1<<4) /* ACPI 6.3 */

/* 1: Cache Type Structure */

Expand Down

0 comments on commit 51df9ae

Please sign in to comment.