From: Junhao He <hejunhao3@huawei.com>
To: <will@kernel.org>, <jonathan.cameron@huawei.com>,
<linux-kernel@vger.kernel.org>
Cc: <linux-arm-kernel@lists.infradead.org>, <linuxarm@huawei.com>,
<yangyicong@huawei.com>, <prime.zeng@hisilicon.com>,
<hejunhao3@huawei.com>
Subject: [PATCH] drivers/perf: hisi: Enable HiSilicon Erratum 162700402 quirk for UC PMU
Date: Wed, 7 Feb 2024 17:42:45 +0800 [thread overview]
Message-ID: <20240207094245.34195-1-hejunhao3@huawei.com> (raw)
HiSilicon UC PMU v2 suffers the erratum 162700402 that the PMU counter
cannot be set due to the lack of clock under power saving mode. This will
lead to error or inaccurate counts. The clock can be enabled by the PMU
global enabling control.
This patch tries to fix this by set the UC PMU enable before set event
period to turn on the clock, and then restore the UC PMU configuration.
The counter register can hold its value without a clock.
Signed-off-by: Junhao He <hejunhao3@huawei.com>
---
drivers/perf/hisilicon/hisi_uncore_uc_pmu.c | 40 ++++++++++++++++++++-
1 file changed, 39 insertions(+), 1 deletion(-)
diff --git a/drivers/perf/hisilicon/hisi_uncore_uc_pmu.c b/drivers/perf/hisilicon/hisi_uncore_uc_pmu.c
index 636fb79647c8..8e7a9e1f419a 100644
--- a/drivers/perf/hisilicon/hisi_uncore_uc_pmu.c
+++ b/drivers/perf/hisilicon/hisi_uncore_uc_pmu.c
@@ -287,10 +287,48 @@ static u64 hisi_uc_pmu_read_counter(struct hisi_pmu *uc_pmu,
return readq(uc_pmu->base + HISI_UC_CNTR_REGn(hwc->idx));
}
-static void hisi_uc_pmu_write_counter(struct hisi_pmu *uc_pmu,
+static bool hisi_uc_pmu_get_glb_en_state(struct hisi_pmu *uc_pmu)
+{
+ u32 val;
+
+ val = readl(uc_pmu->base + HISI_UC_EVENT_CTRL_REG);
+ return !!FIELD_GET(HISI_UC_EVENT_GLB_EN, val);
+}
+
+static void hisi_uc_pmu_write_counter_quirk_hip09(struct hisi_pmu *uc_pmu,
struct hw_perf_event *hwc, u64 val)
{
+ bool enable = hisi_uc_pmu_get_glb_en_state(uc_pmu);
+
+ /* Set the UC PMU enable to turn on the clock. */
+ if (!enable)
+ hisi_uc_pmu_start_counters(uc_pmu);
+
writeq(val, uc_pmu->base + HISI_UC_CNTR_REGn(hwc->idx));
+
+ /*
+ * The counter register can hold its value without a clock. We need
+ * restore the UC PMU configuration. The irq handler will also call
+ * the function to set period. At this time, PMU is still enabled and
+ * we cannot directly disable the PMU.
+ */
+ if (!enable)
+ hisi_uc_pmu_stop_counters(uc_pmu);
+}
+
+static void hisi_uc_pmu_write_counter(struct hisi_pmu *uc_pmu,
+ struct hw_perf_event *hwc, u64 val)
+{
+ /*
+ * HiSilicon UC PMU v2 suffers the erratum 162700402 that the PMU
+ * counter cannot be set due to the lack of clock under power saving
+ * mode. This will lead to error or inaccurate counts. The clock can
+ * be enabled by the PMU global enabling control.
+ */
+ if (uc_pmu->identifier == HISI_PMU_V2)
+ hisi_uc_pmu_write_counter_quirk_hip09(uc_pmu, hwc, val);
+ else
+ writeq(val, uc_pmu->base + HISI_UC_CNTR_REGn(hwc->idx));
}
static void hisi_uc_pmu_enable_counter_int(struct hisi_pmu *uc_pmu,
--
2.33.0
next reply other threads:[~2024-02-07 9:43 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-07 9:42 Junhao He [this message]
2024-02-08 10:50 ` Jonathan Cameron
2024-02-23 4:05 ` hejunhao
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=20240207094245.34195-1-hejunhao3@huawei.com \
--to=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=prime.zeng@hisilicon.com \
--cc=will@kernel.org \
--cc=yangyicong@huawei.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®