linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921
@ 2022-09-14  6:14 Kunkun Jiang
  2022-09-14 10:18 ` Oliver Upton
  2022-10-04  9:27 ` [tip: timers/core] " tip-bot2 for Kunkun Jiang
  0 siblings, 2 replies; 4+ messages in thread
From: Kunkun Jiang @ 2022-09-14  6:14 UTC (permalink / raw)
  To: Mark Rutland, Marc Zyngier, Daniel Lezcano, Thomas Gleixner,
	Oliver Upton
  Cc: wanghaibin.wang, yuzenghui, Kunkun Jiang, linux-arm-kernel, linux-kernel

The commit a38b71b0833e ("clocksource/drivers/arm_arch_timer:
Move system register timer programming over to CVAL") moves the
programming of the timers from the countdown timer (TVAL) over
to the comparator (CVAL). This makes it necessary to read the
counter when programming next event. However, the workaround of
Cortex-A73 erratum 858921 does not set the corresponding
set_next_event_phys and set_next_event_virt.

Add the appropriate hooks to apply the erratum mitigation when
programming the next timer event.

Fixes: a38b71b0833e ("clocksource/drivers/arm_arch_timer: Move system register timer programming over to CVAL")
Signed-off-by: Kunkun Jiang <jiangkunkun@huawei.com>
Acked-by: Marc Zyngier <maz@kernel.org>
---
 drivers/clocksource/arm_arch_timer.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c
index 9ab8221ee3c6..ff935efb6a88 100644
--- a/drivers/clocksource/arm_arch_timer.c
+++ b/drivers/clocksource/arm_arch_timer.c
@@ -473,6 +473,8 @@ static const struct arch_timer_erratum_workaround ool_workarounds[] = {
 		.desc = "ARM erratum 858921",
 		.read_cntpct_el0 = arm64_858921_read_cntpct_el0,
 		.read_cntvct_el0 = arm64_858921_read_cntvct_el0,
+		.set_next_event_phys = erratum_set_next_event_phys,
+		.set_next_event_virt = erratum_set_next_event_virt,
 	},
 #endif
 #ifdef CONFIG_SUN50I_ERRATUM_UNKNOWN1
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921
  2022-09-14  6:14 [PATCH v3] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 Kunkun Jiang
@ 2022-09-14 10:18 ` Oliver Upton
  2022-09-20  8:33   ` Daniel Lezcano
  2022-10-04  9:27 ` [tip: timers/core] " tip-bot2 for Kunkun Jiang
  1 sibling, 1 reply; 4+ messages in thread
From: Oliver Upton @ 2022-09-14 10:18 UTC (permalink / raw)
  To: Kunkun Jiang
  Cc: Mark Rutland, Marc Zyngier, Daniel Lezcano, Thomas Gleixner,
	wanghaibin.wang, yuzenghui, linux-arm-kernel, linux-kernel

On Wed, Sep 14, 2022 at 02:14:24PM +0800, Kunkun Jiang wrote:
> The commit a38b71b0833e ("clocksource/drivers/arm_arch_timer:
> Move system register timer programming over to CVAL") moves the
> programming of the timers from the countdown timer (TVAL) over
> to the comparator (CVAL). This makes it necessary to read the
> counter when programming next event. However, the workaround of
> Cortex-A73 erratum 858921 does not set the corresponding
> set_next_event_phys and set_next_event_virt.
> 
> Add the appropriate hooks to apply the erratum mitigation when
> programming the next timer event.
> 
> Fixes: a38b71b0833e ("clocksource/drivers/arm_arch_timer: Move system register timer programming over to CVAL")
> Signed-off-by: Kunkun Jiang <jiangkunkun@huawei.com>
> Acked-by: Marc Zyngier <maz@kernel.org>

Reviewed-by: Oliver Upton <oliver.upton@linux.dev>

--
Thanks,
Oliver

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921
  2022-09-14 10:18 ` Oliver Upton
@ 2022-09-20  8:33   ` Daniel Lezcano
  0 siblings, 0 replies; 4+ messages in thread
From: Daniel Lezcano @ 2022-09-20  8:33 UTC (permalink / raw)
  To: Oliver Upton, Kunkun Jiang
  Cc: Mark Rutland, Marc Zyngier, Thomas Gleixner, wanghaibin.wang,
	yuzenghui, linux-arm-kernel, linux-kernel

On 14/09/2022 12:18, Oliver Upton wrote:
> On Wed, Sep 14, 2022 at 02:14:24PM +0800, Kunkun Jiang wrote:
>> The commit a38b71b0833e ("clocksource/drivers/arm_arch_timer:
>> Move system register timer programming over to CVAL") moves the
>> programming of the timers from the countdown timer (TVAL) over
>> to the comparator (CVAL). This makes it necessary to read the
>> counter when programming next event. However, the workaround of
>> Cortex-A73 erratum 858921 does not set the corresponding
>> set_next_event_phys and set_next_event_virt.
>>
>> Add the appropriate hooks to apply the erratum mitigation when
>> programming the next timer event.
>>
>> Fixes: a38b71b0833e ("clocksource/drivers/arm_arch_timer: Move system register timer programming over to CVAL")
>> Signed-off-by: Kunkun Jiang <jiangkunkun@huawei.com>
>> Acked-by: Marc Zyngier <maz@kernel.org>
> 
> Reviewed-by: Oliver Upton <oliver.upton@linux.dev>

Applied, thanks


-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [tip: timers/core] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921
  2022-09-14  6:14 [PATCH v3] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 Kunkun Jiang
  2022-09-14 10:18 ` Oliver Upton
@ 2022-10-04  9:27 ` tip-bot2 for Kunkun Jiang
  1 sibling, 0 replies; 4+ messages in thread
From: tip-bot2 for Kunkun Jiang @ 2022-10-04  9:27 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Kunkun Jiang, Marc Zyngier, Oliver Upton, Daniel Lezcano, x86,
	linux-kernel

The following commit has been merged into the timers/core branch of tip:

Commit-ID:     6c3b62d93e195f78c1437c8fa7581e9b2f00886e
Gitweb:        https://git.kernel.org/tip/6c3b62d93e195f78c1437c8fa7581e9b2f00886e
Author:        Kunkun Jiang <jiangkunkun@huawei.com>
AuthorDate:    Wed, 14 Sep 2022 14:14:24 +08:00
Committer:     Daniel Lezcano <daniel.lezcano@linaro.org>
CommitterDate: Tue, 20 Sep 2022 10:49:45 +02:00

clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921

The commit a38b71b0833e ("clocksource/drivers/arm_arch_timer:
Move system register timer programming over to CVAL") moves the
programming of the timers from the countdown timer (TVAL) over
to the comparator (CVAL). This makes it necessary to read the
counter when programming next event. However, the workaround of
Cortex-A73 erratum 858921 does not set the corresponding
set_next_event_phys and set_next_event_virt.

Add the appropriate hooks to apply the erratum mitigation when
programming the next timer event.

Fixes: a38b71b0833e ("clocksource/drivers/arm_arch_timer: Move system register timer programming over to CVAL")
Signed-off-by: Kunkun Jiang <jiangkunkun@huawei.com>
Acked-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Oliver Upton <oliver.upton@linux.dev>
Link: https://lore.kernel.org/r/20220914061424.1260-1-jiangkunkun@huawei.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 drivers/clocksource/arm_arch_timer.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c
index 9ab8221..ff935ef 100644
--- a/drivers/clocksource/arm_arch_timer.c
+++ b/drivers/clocksource/arm_arch_timer.c
@@ -473,6 +473,8 @@ static const struct arch_timer_erratum_workaround ool_workarounds[] = {
 		.desc = "ARM erratum 858921",
 		.read_cntpct_el0 = arm64_858921_read_cntpct_el0,
 		.read_cntvct_el0 = arm64_858921_read_cntvct_el0,
+		.set_next_event_phys = erratum_set_next_event_phys,
+		.set_next_event_virt = erratum_set_next_event_virt,
 	},
 #endif
 #ifdef CONFIG_SUN50I_ERRATUM_UNKNOWN1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-04  9:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-14  6:14 [PATCH v3] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 Kunkun Jiang
2022-09-14 10:18 ` Oliver Upton
2022-09-20  8:33   ` Daniel Lezcano
2022-10-04  9:27 ` [tip: timers/core] " tip-bot2 for Kunkun Jiang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).