From: Yicong Yang <yangyicong@huawei.com>
To: <will@kernel.org>, <mark.rutland@arm.com>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>
Cc: <yangyicong@hisilicon.com>, <hejunhao3@huawei.com>,
<jonathan.cameron@huawei.com>, <prime.zeng@hisilicon.com>,
<linuxarm@huawei.com>, <wangyushan12@huawei.com>
Subject: Re: [RESEND PATCH v3 0/8] General updates and two new drivers for HiSilicon Uncore PMU
Date: Mon, 12 May 2025 16:42:33 +0800 [thread overview]
Message-ID: <e45f5183-d1ff-970b-3b15-7f7239b6b405@huawei.com> (raw)
In-Reply-To: <20250425090029.50786-1-yangyicong@huawei.com>
a gentle ping on this...
thanks.
On 2025/4/25 17:00, Yicong Yang wrote:
> From: Yicong Yang <yangyicong@hisilicon.com>
>
> Support new version of DDRC/SLLC PMU identified with updated ACPI HID and
> register definition. In order to support this, we do a preliminary refactor
> to initialize device of each version by using driver data of each HID
> rather than checking the version. This will also make the driver easier to
> maintain and extend, since only the HID specific information along
> with the new HID will be added to support the new version without touching
> the common logic.
>
> Two new Uncore PMU drivers is also added to support the monitoring the
> events of the system bus (by NoC PMU) and the DVM operations (by MN PMU).
>
> Change since v2:
> - Rebase on 6.15-rc1, add Jonathan's tag.
> Link: https://lore.kernel.org/linux-arm-kernel/20250321073846.23507-1-yangyicong@huawei.com/
>
> Change since v1:
> - Fold patch which extending the struct hisi_pmu_dev_info into its user
> - Use bit shift rather than bit mask for SLLC PMU registers configuration
> - Address other comments by Jonathan, thanks
> Link: https://lore.kernel.org/linux-arm-kernel/20250218092000.41641-1-yangyicong@huawei.com/
>
> Junhao He (6):
> drivers/perf: hisi: Simplify the probe process for each DDRC version
> drivers/perf: hisi: Add support for HiSilicon DDRC v3 PMU driver
> drivers/perf: hisi: Use ACPI driver_data to retrieve SLLC PMU
> information
> drivers/perf: hisi: Add support for HiSilicon SLLC v3 PMU driver
> drivers/perf: hisi: Relax the event number check of v2 PMUs
> drivers/perf: hisi: Add support for HiSilicon MN PMU driver
>
> Yicong Yang (2):
> drivers/perf: hisi: Support PMUs with no interrupt
> drivers/perf: hisi: Add support for HiSilicon NoC PMU
>
> Documentation/admin-guide/perf/hisi-pmu.rst | 11 +
> drivers/perf/hisilicon/Makefile | 3 +-
> drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c | 354 ++++++++--------
> drivers/perf/hisilicon/hisi_uncore_hha_pmu.c | 6 +-
> drivers/perf/hisilicon/hisi_uncore_mn_pmu.c | 355 ++++++++++++++++
> drivers/perf/hisilicon/hisi_uncore_noc_pmu.c | 392 ++++++++++++++++++
> drivers/perf/hisilicon/hisi_uncore_pa_pmu.c | 2 +-
> drivers/perf/hisilicon/hisi_uncore_pmu.c | 11 +-
> drivers/perf/hisilicon/hisi_uncore_pmu.h | 2 +
> drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c | 220 +++++++---
> 10 files changed, 1098 insertions(+), 258 deletions(-)
> create mode 100644 drivers/perf/hisilicon/hisi_uncore_mn_pmu.c
> create mode 100644 drivers/perf/hisilicon/hisi_uncore_noc_pmu.c
>
next prev parent reply other threads:[~2025-05-12 8:42 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-25 9:00 Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 1/8] drivers/perf: hisi: Simplify the probe process for each DDRC version Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 2/8] drivers/perf: hisi: Add support for HiSilicon DDRC v3 PMU driver Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 3/8] drivers/perf: hisi: Use ACPI driver_data to retrieve SLLC PMU information Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 4/8] drivers/perf: hisi: Add support for HiSilicon SLLC v3 PMU driver Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 5/8] drivers/perf: hisi: Relax the event number check of v2 PMUs Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 6/8] drivers/perf: hisi: Support PMUs with no interrupt Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 7/8] drivers/perf: hisi: Add support for HiSilicon NoC PMU Yicong Yang
2025-04-25 9:00 ` [RESEND PATCH v3 8/8] drivers/perf: hisi: Add support for HiSilicon MN PMU driver Yicong Yang
2025-05-12 8:42 ` Yicong Yang [this message]
2025-06-19 12:55 [RESEND PATCH v3 0/8] General updates and two new drivers for HiSilicon Uncore PMU Yicong Yang
2025-07-01 12:36 ` Yicong Yang
2025-07-13 16:27 ` Jonathan Cameron
2025-07-13 20:02 ` Will Deacon
2025-07-14 15:10 ` Will Deacon
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=e45f5183-d1ff-970b-3b15-7f7239b6b405@huawei.com \
--to=yangyicong@huawei.com \
--cc=hejunhao3@huawei.com \
--cc=jonathan.cameron@huawei.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=mark.rutland@arm.com \
--cc=prime.zeng@hisilicon.com \
--cc=wangyushan12@huawei.com \
--cc=will@kernel.org \
--cc=yangyicong@hisilicon.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
all inboxes | Powered by JetHome®