diff options
author | Anshuman Khandual <anshuman.khandual@arm.com> | 2023-08-17 11:24:03 +0530 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2023-08-18 18:07:10 +0100 |
commit | 1aa3d0274a4aac338ee45a3dfc3b17c944bcc2bc (patch) | |
tree | e0520212b012cae05dedab209f7cc2cf7a229db2 /include/linux/perf | |
parent | 81e5ee471609848ee1ebf3beb2a46788113fe0eb (diff) | |
download | linux-stable-1aa3d0274a4aac338ee45a3dfc3b17c944bcc2bc.tar.gz linux-stable-1aa3d0274a4aac338ee45a3dfc3b17c944bcc2bc.tar.bz2 linux-stable-1aa3d0274a4aac338ee45a3dfc3b17c944bcc2bc.zip |
arm_pmu: acpi: Add a representative platform device for TRBE
ACPI TRBE does not have a HID for identification which could create and add
a platform device into the platform bus. Also without a platform device, it
cannot be probed and bound to a platform driver.
This creates a dummy platform device for TRBE after ascertaining that ACPI
provides required interrupts uniformly across all cpus on the system. This
device gets created inside drivers/perf/arm_pmu_acpi.c to accommodate TRBE
being built as a module.
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com>
Link: https://lore.kernel.org/r/20230817055405.249630-3-anshuman.khandual@arm.com
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'include/linux/perf')
-rw-r--r-- | include/linux/perf/arm_pmu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/perf/arm_pmu.h b/include/linux/perf/arm_pmu.h index a0801f68762b..143fbc10ecfe 100644 --- a/include/linux/perf/arm_pmu.h +++ b/include/linux/perf/arm_pmu.h @@ -187,5 +187,6 @@ void armpmu_free_irq(int irq, int cpu); #endif /* CONFIG_ARM_PMU */ #define ARMV8_SPE_PDEV_NAME "arm,spe-v1" +#define ARMV8_TRBE_PDEV_NAME "arm,trbe" #endif /* __ARM_PMU_H__ */ |