From: "Xuyang Dong" <dongxuyang@eswincomputing.com>
To: sashiko-reviews@lists.linux.dev
Cc: ukleinek@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, ben-linux@fluff.org,
ben.dooks@codethink.co.uk, linux-pwm@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
p.zabel@pengutronix.de, daniel.lezcano@kernel.org,
tglx@kernel.org, ningyu@eswincomputing.com,
linmin@eswincomputing.com, xuxiang@eswincomputing.com,
wangguosheng@eswincomputing.com, pinkesh.vaghela@einfochips.com,
"Xuyang Dong" <dongxuyang@eswincomputing.com>
Subject: Re: Re: [PATCH v12 4/4] dt-bindings: timer: dwc: Update resets property items
Date: Thu, 23 Jul 2026 15:18:31 +0800 (GMT+08:00) [thread overview]
Message-ID: <26588538.89e6.19f8dd71564.Coremail.dongxuyang@eswincomputing.com> (raw)
In-Reply-To: <20260721122141.D3A9C1F00A3D@smtp.kernel.org>
>
> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
> - [High] The timer driver ignores the newly documented APB interface reset (`presetn`), leading to system hangs if specified.
> --
>
> --- Patch [4]: [PATCH v12 4/4] dt-bindings: timer: dwc: Update resets property items ---
> commit 0298afcc08fcedc8999619356e00017ff450203d
> Author: Xuyang Dong <dongxuyang@eswincomputing.com>
>
> dt-bindings: timer: dwc: Update resets property items
>
> This commit updates the snps,dw-apb-timer binding to allow up to two reset
> lines. It specifically documents the timer_N_resetn and presetn reset inputs
> to match the hardware capabilities of the DesignWare IP family.
>
> > diff --git a/Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml b/Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
> > index d33c9205a9093..4d30cd01ac65f 100644
> > --- a/Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
> > +++ b/Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
> > @@ -25,7 +25,10 @@ properties:
> > maxItems: 1
> >
> > resets:
> > - maxItems: 1
> > + minItems: 1
> > + items:
> > + - description: Timer ticks reference (timer_N_resetn) reset
> > + - description: APB interface (presetn) reset
>
> [Severity: High]
> Will this cause a system bus hang if a device tree is updated to specify
> both resets?
>
> Looking at timer_get_base_and_rate() in
> drivers/clocksource/dw_apb_timer_of.c, the driver unconditionally fetches
> and deasserts only the first reset by passing NULL as the id:
>
> drivers/clocksource/dw_apb_timer_of.c:timer_get_base_and_rate() {
> ...
> /*
> * Reset the timer if the reset control is available, wiping
> * out the state the firmware may have left it
> */
> rstc = of_reset_control_get(np, NULL);
> if (!IS_ERR(rstc)) {
> reset_control_assert(rstc);
> reset_control_deassert(rstc);
> }
> ...
> }
>
> If the device tree specifies both resets to match this newly added schema
> capability, the second reset (presetn, which controls the APB bus interface)
> will be completely ignored and left asserted.
>
> Should the driver be updated to explicitly fetch and deassert both resets
> (e.g., via reset_control_bulk_get) before extending the binding, to avoid
> system hangs when memory-mapped registers are accessed?
>
Hi Sashiko,
In the next version, replace of_reset_control_get() with
of_reset_control_array_get_optional_exclusive() to ensure all resets
can be deasserted.
Best regards,
Xuyang Dong
> >
> > clocks:
> > minItems: 1
>
> --
> Sashiko AI review · https://sashiko.dev/#/patchset/20260721120757.1134-1-dongxuyang@eswincomputing.com?part=4
prev parent reply other threads:[~2026-07-23 7:19 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-21 12:07 [PATCH v12 0/4] Update designware pwm driver Xuyang Dong
2026-07-21 12:08 ` [PATCH v12 1/4] dt-bindings: pwm: dwc: Document optional resets property dongxuyang
2026-07-21 12:50 ` Philipp Zabel
2026-07-22 7:41 ` Xuyang Dong
2026-07-21 12:08 ` [PATCH v12 2/4] dt-bindings: pwm: dwc: Add eswin compatible dongxuyang
2026-07-21 12:52 ` Philipp Zabel
2026-07-22 7:41 ` Xuyang Dong
2026-07-21 12:09 ` [PATCH v12 3/4] pwm: dwc: add of/platform support dongxuyang
2026-07-21 13:10 ` Philipp Zabel
2026-07-22 7:41 ` Xuyang Dong
2026-07-21 12:09 ` [PATCH v12 4/4] dt-bindings: timer: dwc: Update resets property items dongxuyang
2026-07-21 12:21 ` sashiko-bot
2026-07-23 7:18 ` Xuyang Dong [this message]
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=26588538.89e6.19f8dd71564.Coremail.dongxuyang@eswincomputing.com \
--to=dongxuyang@eswincomputing.com \
--cc=ben-linux@fluff.org \
--cc=ben.dooks@codethink.co.uk \
--cc=conor+dt@kernel.org \
--cc=daniel.lezcano@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linmin@eswincomputing.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=ningyu@eswincomputing.com \
--cc=p.zabel@pengutronix.de \
--cc=pinkesh.vaghela@einfochips.com \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=tglx@kernel.org \
--cc=ukleinek@kernel.org \
--cc=wangguosheng@eswincomputing.com \
--cc=xuxiang@eswincomputing.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