From: Ilkka Koskinen <ilkka@os.amperecomputing.com>
To: Besar Wicaksono <bwicaksono@nvidia.com>
Cc: will@kernel.org, suzuki.poulose@arm.com, robin.murphy@arm.com,
ilkka@os.amperecomputing.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-tegra@vger.kernel.org,
mark.rutland@arm.com, treding@nvidia.com, jonathanh@nvidia.com,
vsethi@nvidia.com, rwiley@nvidia.com, sdonthineni@nvidia.com,
skelley@nvidia.com, ywan@nvidia.com, mochs@nvidia.com,
nirmoyd@nvidia.com
Subject: Re: [PATCH 5/8] perf/arm_cspmu: nvidia: Add Tegra410 PCIE-TGT PMU
Date: Thu, 29 Jan 2026 14:40:24 -0800 (PST) [thread overview]
Message-ID: <409515ed-61bc-2cd5-ea9b-e9f246884c6e@os.amperecomputing.com> (raw)
In-Reply-To: <20260126181155.2776097-6-bwicaksono@nvidia.com>
Hi Besar,
On Mon, 26 Jan 2026, Besar Wicaksono wrote:
> Adds PCIE-TGT PMU support in Tegra410 SOC.
>
> Signed-off-by: Besar Wicaksono <bwicaksono@nvidia.com>
> ---
> .../admin-guide/perf/nvidia-tegra410-pmu.rst | 76 ++++
> drivers/perf/arm_cspmu/nvidia_cspmu.c | 324 ++++++++++++++++++
> 2 files changed, 400 insertions(+)
>
> diff --git a/drivers/perf/arm_cspmu/nvidia_cspmu.c b/drivers/perf/arm_cspmu/nvidia_cspmu.c
> index 3a5531d1f94c..095d2f322c6f 100644
> --- a/drivers/perf/arm_cspmu/nvidia_cspmu.c
> +++ b/drivers/perf/arm_cspmu/nvidia_cspmu.c
<snip>
> +static void pcie_tgt_pmu_reset_ev_filter(struct arm_cspmu *cspmu,
> + const struct perf_event *event)
> +{
> + bool addr_filter_en;
> + u64 base, mask;
> + int idx;
> +
> + addr_filter_en = pcie_tgt_pmu_addr_en(event);
> + if (!addr_filter_en)
> + return;
> +
> + base = pcie_tgt_pmu_dst_addr_base(event);
> + mask = pcie_tgt_pmu_dst_addr_mask(event);
> + idx = pcie_tgt_find_addr_idx(cspmu, base, mask, true);
> +
> + if (idx < 0) {
> + dev_err(cspmu->dev,
> + "Unable to find the address filter slot to reset\n");
> + return;
> + }
> +
> + pcie_tgt_pmu_config_addr_filter(
> + cspmu, false, base, mask, idx);
I think you can fit the arguments in the same line with the function name
Otherwise, looks good to me.
Reviewed-by: Ilkka Koskinen <ilkka@os.amperecomputing.com>
Cheers, Ilkka
next prev parent reply other threads:[~2026-01-29 22:40 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-26 18:11 [PATCH 0/8] perf: add NVIDIA Tegra410 Uncore PMU support Besar Wicaksono
2026-01-26 18:11 ` [PATCH 1/8] perf/arm_cspmu: nvidia: Rename doc to Tegra241 Besar Wicaksono
2026-01-26 18:11 ` [PATCH 2/8] perf/arm_cspmu: nvidia: Add Tegra410 UCF PMU Besar Wicaksono
2026-01-29 22:20 ` Ilkka Koskinen
2026-01-26 18:11 ` [PATCH 3/8] perf/arm_cspmu: Add arm_cspmu_acpi_dev_get Besar Wicaksono
2026-01-29 22:23 ` Ilkka Koskinen
2026-01-26 18:11 ` [PATCH 4/8] perf/arm_cspmu: nvidia: Add Tegra410 PCIE PMU Besar Wicaksono
2026-01-28 15:56 ` kernel test robot
2026-01-29 22:34 ` Ilkka Koskinen
2026-01-26 18:11 ` [PATCH 5/8] perf/arm_cspmu: nvidia: Add Tegra410 PCIE-TGT PMU Besar Wicaksono
2026-01-29 22:40 ` Ilkka Koskinen [this message]
2026-02-10 16:01 ` Besar Wicaksono
2026-01-26 18:11 ` [PATCH 6/8] perf: add NVIDIA Tegra410 CPU Memory Latency PMU Besar Wicaksono
2026-01-28 0:40 ` kernel test robot
2026-01-30 2:09 ` Ilkka Koskinen
2026-01-26 18:11 ` [PATCH 7/8] perf: add NVIDIA Tegra410 C2C PMU Besar Wicaksono
2026-01-30 2:54 ` Ilkka Koskinen
2026-01-26 18:11 ` [PATCH 8/8] arm64: defconfig: Enable NVIDIA TEGRA410 PMU Besar Wicaksono
2026-02-08 11:18 ` Krzysztof Kozlowski
2026-02-10 16:05 ` Besar Wicaksono
2026-02-10 16:15 ` Krzysztof Kozlowski
2026-02-10 17:42 ` Besar Wicaksono
2026-02-11 6:19 ` Krzysztof Kozlowski
2026-02-11 10:36 ` Jon Hunter
2026-02-11 10:41 ` Krzysztof Kozlowski
2026-02-11 10:47 ` Jon Hunter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=409515ed-61bc-2cd5-ea9b-e9f246884c6e@os.amperecomputing.com \
--to=ilkka@os.amperecomputing.com \
--cc=bwicaksono@nvidia.com \
--cc=jonathanh@nvidia.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mochs@nvidia.com \
--cc=nirmoyd@nvidia.com \
--cc=robin.murphy@arm.com \
--cc=rwiley@nvidia.com \
--cc=sdonthineni@nvidia.com \
--cc=skelley@nvidia.com \
--cc=suzuki.poulose@arm.com \
--cc=treding@nvidia.com \
--cc=vsethi@nvidia.com \
--cc=will@kernel.org \
--cc=ywan@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome