mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Xuyang Dong" <dongxuyang@eswincomputing.com>
To: "Philipp Zabel" <p.zabel@pengutronix.de>,
	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,
	daniel.lezcano@kernel.org, tglx@kernel.org
Cc: ningyu@eswincomputing.com, linmin@eswincomputing.com,
	xuxiang@eswincomputing.com, wangguosheng@eswincomputing.com,
	pinkesh.vaghela@einfochips.com,
	"Conor Dooley" <conor.dooley@microchip.com>
Subject: Re: Re: [PATCH v12 2/4] dt-bindings: pwm: dwc: Add eswin compatible
Date: Wed, 22 Jul 2026 15:41:28 +0800 (GMT+08:00)	[thread overview]
Message-ID: <2dc5a7e7.8901.19f88c5bd14.Coremail.dongxuyang@eswincomputing.com> (raw)
In-Reply-To: <cfbb371050354026869b2c12fe948151220aa4c5.camel@pengutronix.de>

> 
> On Di, 2026-07-21 at 20:08 +0800, dongxuyang@eswincomputing.com wrote:
> > From: Xuyang Dong <dongxuyang@eswincomputing.com>
> > 
> > EIC7700 integrates the DesignWare PWM IP described by the generic
> > snps,dw-apb-timers-pwm2 binding. On this SoC, the presetn and
> > timer_N_resetn inputs are physically tied together to a single reset
> > line, so exactly one reset is both required and sufficient, unlike
> > the generic binding where up to two independent lines are optional.
> > 
> > Add the eswin,eic7700-pwm compatible string and constrain its resets
> > property to exactly one entry.
> > 
> > Acked-by: Conor Dooley <conor.dooley@microchip.com>
> > Signed-off-by: Xuyang Dong <dongxuyang@eswincomputing.com>
> > ---
> >  .../bindings/pwm/snps,dw-apb-timers-pwm2.yaml | 32 ++++++++++++++++---
> >  1 file changed, 28 insertions(+), 4 deletions(-)
> > 
> > diff --git a/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml b/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml
> > index 213fdaef25d9..9a9a24ddc61b 100644
> > --- a/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml
> > +++ b/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml
> > @@ -20,12 +20,11 @@ description:
> >    instead of having to encode the IP version number in the device tree
> >    compatible.
> >  
> > -allOf:
> > -  - $ref: pwm.yaml#
> > -
> >  properties:
> >    compatible:
> > -    const: snps,dw-apb-timers-pwm2
> > +    enum:
> > +      - snps,dw-apb-timers-pwm2
> > +      - eswin,eic7700-pwm
> >  
> >    reg:
> >      maxItems: 1
> > @@ -44,6 +43,7 @@ properties:
> >        - const: timer
> >  
> >    resets:
> > +    minItems: 1
> >      items:
> >        - description: Interface bus (presetn) reset
> 
> I'm not sure if that is better than just keeping both resets and
> pointing them to the same reset control, but as it stands, the
> description is incorrect. On eswin, the first item is a combined
> presetn + timer_n_resetn reset input, not presetn.
> 

Hi Philipp,

If we add a description of resets under the eswin,eic7700-pwm compatible, 
do you think this modification is appropriate?

  - if:
      properties:
        compatible:
          contains:
            const: eswin,eic7700-pwm
    then:
      properties:
        resets:
          items:
            - description:
                Presetn and timer_N_resetn are tied together to a
                single combined bus-interface and timer-counter
                reset line.
        reset-names: false
      required:
        - resets

Best regards,
Xuyang Dong

  reply	other threads:[~2026-07-22  7:41 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 [this message]
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
     [not found]   ` <20260721122141.D3A9C1F00A3D@smtp.kernel.org>
2026-07-23  7:18     ` Xuyang Dong
2026-07-24  5:54   ` Krzysztof Kozlowski

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=2dc5a7e7.8901.19f88c5bd14.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=conor.dooley@microchip.com \
    --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=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

all inboxes | Powered by JetHome®