[PATCH v3 5/5] perf/arm_cspmu: Add devicetree support
Besar Wicaksono
bwicaksono at nvidia.com
Wed Feb 7 12:08:51 PST 2024
> -----Original Message-----
> From: Robin Murphy <robin.murphy at arm.com>
> Sent: Tuesday, February 6, 2024 4:28 AM
> To: will at kernel.org
> Cc: mark.rutland at arm.com; linux-arm-kernel at lists.infradead.org;
> devicetree at vger.kernel.org; suzuki.poulose at arm.com;
> ilkka at os.amperecomputing.com; Besar Wicaksono
> <bwicaksono at nvidia.com>; Yifei Wan <YWan at nvidia.com>; Richard Wiley
> <rwiley at nvidia.com>
> Subject: [PATCH v3 5/5] perf/arm_cspmu: Add devicetree support
>
> External email: Use caution opening links or attachments
>
>
> Hook up devicetree probing support. For now let's hope that people
> implement PMIIDR properly and we don't need an override property or
> match data mechanism.
>
> Reviewed-by: Ilkka Koskinen <ilkka at os.amperecomputing.com>
> Signed-off-by: Robin Murphy <robin.murphy at arm.com>
Reviewed-by: Besar Wicaksono <bwicaksono at nvidia.com>
Tested-by: Besar Wicaksono <bwicaksono at nvidia.com>
Regards,
Besar
> ---
> v2: Use APMT node to distinguish ACPI; adjust for binding change
> v3: Handle NULL APMT node properly, fix phandle iteration.
> ---
> drivers/perf/arm_cspmu/arm_cspmu.c | 67 ++++++++++++++++++++++++-
> -----
> 1 file changed, 55 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/perf/arm_cspmu/arm_cspmu.c
> b/drivers/perf/arm_cspmu/arm_cspmu.c
> index b54dc7fd6ca5..6bc21ef96250 100644
> --- a/drivers/perf/arm_cspmu/arm_cspmu.c
> +++ b/drivers/perf/arm_cspmu/arm_cspmu.c
> @@ -27,6 +27,7 @@
> #include <linux/io-64-nonatomic-lo-hi.h>
> #include <linux/module.h>
> #include <linux/mutex.h>
> +#include <linux/of.h>
> #include <linux/perf_event.h>
> #include <linux/platform_device.h>
>
> @@ -114,7 +115,9 @@ static void arm_cspmu_set_ev_filter(struct
> arm_cspmu *cspmu,
>
> static struct acpi_apmt_node *arm_cspmu_apmt_node(struct device *dev)
> {
> - return *(struct acpi_apmt_node **)dev_get_platdata(dev);
> + struct acpi_apmt_node **ptr = dev_get_platdata(dev);
> +
> + return ptr ? *ptr : NULL;
> }
>
> /*
> @@ -310,6 +313,10 @@ static const char *arm_cspmu_get_name(const
> struct arm_cspmu *cspmu)
>
> dev = cspmu->dev;
> apmt_node = arm_cspmu_apmt_node(dev);
> + if (!apmt_node)
> + return devm_kasprintf(dev, GFP_KERNEL, PMUNAME "_%u",
> + atomic_fetch_inc(&pmu_idx[0]));
> +
> pmu_type = apmt_node->type;
>
> if (pmu_type >= ACPI_APMT_NODE_TYPE_COUNT) {
> @@ -425,7 +432,7 @@ static int arm_cspmu_init_impl_ops(struct
> arm_cspmu *cspmu)
> };
>
> /* Firmware may override implementer/product ID from PMIIDR */
> - if (apmt_node->impl_id)
> + if (apmt_node && apmt_node->impl_id)
> cspmu->impl.pmiidr = apmt_node->impl_id;
>
> /* Find implementer specific attribute ops. */
> @@ -940,7 +947,14 @@ static struct arm_cspmu *arm_cspmu_alloc(struct
> platform_device *pdev)
> platform_set_drvdata(pdev, cspmu);
>
> apmt_node = arm_cspmu_apmt_node(dev);
> - cspmu->has_atomic_dword = apmt_node->flags &
> ACPI_APMT_FLAGS_ATOMIC;
> + if (apmt_node) {
> + cspmu->has_atomic_dword = apmt_node->flags &
> ACPI_APMT_FLAGS_ATOMIC;
> + } else {
> + u32 width = 0;
> +
> + device_property_read_u32(dev, "reg-io-width", &width);
> + cspmu->has_atomic_dword = (width == 8);
> + }
>
> return cspmu;
> }
> @@ -1131,11 +1145,6 @@ static int arm_cspmu_acpi_get_cpus(struct
> arm_cspmu *cspmu)
> }
> }
>
> - if (cpumask_empty(&cspmu->associated_cpus)) {
> - dev_dbg(cspmu->dev, "No cpu associated with the PMU\n");
> - return -ENODEV;
> - }
> -
> return 0;
> }
> #else
> @@ -1145,9 +1154,36 @@ static int arm_cspmu_acpi_get_cpus(struct
> arm_cspmu *cspmu)
> }
> #endif
>
> +static int arm_cspmu_of_get_cpus(struct arm_cspmu *cspmu)
> +{
> + struct of_phandle_iterator it;
> + int ret, cpu;
> +
> + of_for_each_phandle(&it, ret, dev_of_node(cspmu->dev), "cpus", NULL,
> 0) {
> + cpu = of_cpu_node_to_id(it.node);
> + if (cpu < 0)
> + continue;
> + cpumask_set_cpu(cpu, &cspmu->associated_cpus);
> + }
> + return ret == -ENOENT ? 0 : ret;
> +}
> +
> static int arm_cspmu_get_cpus(struct arm_cspmu *cspmu)
> {
> - return arm_cspmu_acpi_get_cpus(cspmu);
> + int ret = 0;
> +
> + if (arm_cspmu_apmt_node(cspmu->dev))
> + ret = arm_cspmu_acpi_get_cpus(cspmu);
> + else if (device_property_present(cspmu->dev, "cpus"))
> + ret = arm_cspmu_of_get_cpus(cspmu);
> + else
> + cpumask_copy(&cspmu->associated_cpus, cpu_possible_mask);
> +
> + if (!ret && cpumask_empty(&cspmu->associated_cpus)) {
> + dev_dbg(cspmu->dev, "No cpu associated with the PMU\n");
> + ret = -ENODEV;
> + }
> + return ret;
> }
>
> static int arm_cspmu_register_pmu(struct arm_cspmu *cspmu)
> @@ -1244,11 +1280,18 @@ static const struct platform_device_id
> arm_cspmu_id[] = {
> };
> MODULE_DEVICE_TABLE(platform, arm_cspmu_id);
>
> +static const struct of_device_id arm_cspmu_of_match[] = {
> + { .compatible = "arm,coresight-pmu" },
> + {}
> +};
> +MODULE_DEVICE_TABLE(of, arm_cspmu_of_match);
> +
> static struct platform_driver arm_cspmu_driver = {
> .driver = {
> - .name = DRVNAME,
> - .suppress_bind_attrs = true,
> - },
> + .name = DRVNAME,
> + .of_match_table = arm_cspmu_of_match,
> + .suppress_bind_attrs = true,
> + },
> .probe = arm_cspmu_device_probe,
> .remove = arm_cspmu_device_remove,
> .id_table = arm_cspmu_id,
> --
> 2.39.2.101.g768bb238c484.dirty
More information about the linux-arm-kernel
mailing list