All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yixun Lan <dlan@kernel.org>
To: Conor Dooley <conor@kernel.org>
Cc: "Uwe Kleine-K�nig" <ukleinek@kernel.org>,
	"Rob Herring" <robh@kernel.org>,
	"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	"Duje Mihanović" <duje@dujemihanovic.xyz>,
	linux-pwm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org,
	spacemit@lists.linux.dev
Subject: Re: [PATCH 1/2] dt-bindings: pwm: marvell,pxa-pwm: Add SpacemiT K3 PWM support
Date: Fri, 10 Apr 2026 07:43:51 +0800	[thread overview]
Message-ID: <20260409234351-GKA1160389@kernel.org> (raw)
In-Reply-To: <20260409-laboring-announcer-4a0f9ca152a1@spud>

Hi Conor, 

On 16:41 Thu 09 Apr     , Conor Dooley wrote:
> On Thu, Apr 09, 2026 at 12:45:11AM +0000, Yixun Lan wrote:
> > The PWM controller in SpacemiT K3 SoC reuse the same IP as previous K1
> > generation, while the difference is that one additional bus clock is
> > added.
> > 
> > Signed-off-by: Yixun Lan <dlan@kernel.org>
> > ---
> >  .../devicetree/bindings/pwm/marvell,pxa-pwm.yaml   | 53 ++++++++++++++++++++--
> >  1 file changed, 50 insertions(+), 3 deletions(-)
> > 
> > diff --git a/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml b/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
> > index 8df327e52810..3427c8ef3945 100644
> > --- a/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
> > +++ b/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
> > @@ -15,7 +15,9 @@ allOf:
> >        properties:
> >          compatible:
> >            contains:
> > -            const: spacemit,k1-pwm
> > +            enum:
> > +              - spacemit,k1-pwm
> > +              - spacemit,k3-pwm
> >      then:
> >        properties:
> >          "#pwm-cells":
> > @@ -26,6 +28,38 @@ allOf:
> >            const: 1
> >            description: |
> >              Used for specifying the period length in nanoseconds.
> > +  - if:
> > +      properties:
> > +        compatible:
> > +          contains:
> > +            enum:
> > +              - spacemit,k3-pwm
> > +    then:
> > +      properties:
> > +        clock-names:
> > +          items:
> > +            - const: func
> > +            - const: bus
> 
> This condition here doesn't appear to do anything? It just repeats
> what's already done unconditonally below?
> 
You right, I should merge clock-names with below..

> > +  - if:
> > +      properties:
> > +        compatible:
> > +          contains:
> > +            enum:
> > +              - spacemit,k3-pwm
> > +    then:
> > +      required:
> > +        - clock-names
> > +      properties:
> > +        clocks:
> > +          minItems: 2
> > +        clock-names:
> > +          minItems: 2
> > +    else:
> > +      properties:
> > +        clocks:
> > +          maxItems: 1
> > +        clock-names:
> > +          maxItems: 1
> >  
> >  properties:
> >    compatible:
> > @@ -36,7 +70,9 @@ properties:
> >            - marvell,pxa168-pwm
> >            - marvell,pxa910-pwm
> >        - items:
> > -          - const: spacemit,k1-pwm
> > +          - enum:
> > +              - spacemit,k1-pwm
> > +              - spacemit,k3-pwm
> >            - const: marvell,pxa910-pwm
> >  
> >    reg:
> > @@ -47,7 +83,18 @@ properties:
> >      description: Number of cells in a pwm specifier.
> >  
> >    clocks:
> > -    maxItems: 1
> > +    minItems: 1
> > +    items:
> > +      - description: The function clock
> > +      - description: An optional bus clock
> > +
> > +  clock-names:
> > +    minItems: 1
> > +    maxItems: 2
> > +    oneOf:
> > +      - items:
> > +          - const: func
> > +          - const: bus
> >  
> >    resets:
> >      maxItems: 1
> > 
> > -- 
> > 2.53.0
> > 



-- 
Yixun Lan (dlan)

WARNING: multiple messages have this Message-ID (diff)
From: Yixun Lan <dlan@kernel.org>
To: Conor Dooley <conor@kernel.org>
Cc: "Uwe Kleine-K�nig" <ukleinek@kernel.org>,
	"Rob Herring" <robh@kernel.org>,
	"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	"Duje Mihanović" <duje@dujemihanovic.xyz>,
	linux-pwm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org,
	spacemit@lists.linux.dev
Subject: Re: [PATCH 1/2] dt-bindings: pwm: marvell,pxa-pwm: Add SpacemiT K3 PWM support
Date: Fri, 10 Apr 2026 07:43:51 +0800	[thread overview]
Message-ID: <20260409234351-GKA1160389@kernel.org> (raw)
In-Reply-To: <20260409-laboring-announcer-4a0f9ca152a1@spud>

Hi Conor, 

On 16:41 Thu 09 Apr     , Conor Dooley wrote:
> On Thu, Apr 09, 2026 at 12:45:11AM +0000, Yixun Lan wrote:
> > The PWM controller in SpacemiT K3 SoC reuse the same IP as previous K1
> > generation, while the difference is that one additional bus clock is
> > added.
> > 
> > Signed-off-by: Yixun Lan <dlan@kernel.org>
> > ---
> >  .../devicetree/bindings/pwm/marvell,pxa-pwm.yaml   | 53 ++++++++++++++++++++--
> >  1 file changed, 50 insertions(+), 3 deletions(-)
> > 
> > diff --git a/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml b/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
> > index 8df327e52810..3427c8ef3945 100644
> > --- a/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
> > +++ b/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
> > @@ -15,7 +15,9 @@ allOf:
> >        properties:
> >          compatible:
> >            contains:
> > -            const: spacemit,k1-pwm
> > +            enum:
> > +              - spacemit,k1-pwm
> > +              - spacemit,k3-pwm
> >      then:
> >        properties:
> >          "#pwm-cells":
> > @@ -26,6 +28,38 @@ allOf:
> >            const: 1
> >            description: |
> >              Used for specifying the period length in nanoseconds.
> > +  - if:
> > +      properties:
> > +        compatible:
> > +          contains:
> > +            enum:
> > +              - spacemit,k3-pwm
> > +    then:
> > +      properties:
> > +        clock-names:
> > +          items:
> > +            - const: func
> > +            - const: bus
> 
> This condition here doesn't appear to do anything? It just repeats
> what's already done unconditonally below?
> 
You right, I should merge clock-names with below..

> > +  - if:
> > +      properties:
> > +        compatible:
> > +          contains:
> > +            enum:
> > +              - spacemit,k3-pwm
> > +    then:
> > +      required:
> > +        - clock-names
> > +      properties:
> > +        clocks:
> > +          minItems: 2
> > +        clock-names:
> > +          minItems: 2
> > +    else:
> > +      properties:
> > +        clocks:
> > +          maxItems: 1
> > +        clock-names:
> > +          maxItems: 1
> >  
> >  properties:
> >    compatible:
> > @@ -36,7 +70,9 @@ properties:
> >            - marvell,pxa168-pwm
> >            - marvell,pxa910-pwm
> >        - items:
> > -          - const: spacemit,k1-pwm
> > +          - enum:
> > +              - spacemit,k1-pwm
> > +              - spacemit,k3-pwm
> >            - const: marvell,pxa910-pwm
> >  
> >    reg:
> > @@ -47,7 +83,18 @@ properties:
> >      description: Number of cells in a pwm specifier.
> >  
> >    clocks:
> > -    maxItems: 1
> > +    minItems: 1
> > +    items:
> > +      - description: The function clock
> > +      - description: An optional bus clock
> > +
> > +  clock-names:
> > +    minItems: 1
> > +    maxItems: 2
> > +    oneOf:
> > +      - items:
> > +          - const: func
> > +          - const: bus
> >  
> >    resets:
> >      maxItems: 1
> > 
> > -- 
> > 2.53.0
> > 



-- 
Yixun Lan (dlan)

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  reply	other threads:[~2026-04-09 23:43 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-09  0:45 [PATCH 0/2] pwm: spacemit: Add Support for K3 SoC Yixun Lan
2026-04-09  0:45 ` Yixun Lan
2026-04-09  0:45 ` [PATCH 1/2] dt-bindings: pwm: marvell,pxa-pwm: Add SpacemiT K3 PWM support Yixun Lan
2026-04-09  0:45   ` Yixun Lan
2026-04-09 15:41   ` Conor Dooley
2026-04-09 15:41     ` Conor Dooley
2026-04-09 23:43     ` Yixun Lan [this message]
2026-04-09 23:43       ` Yixun Lan
2026-04-09  0:45 ` [PATCH 2/2] pwm: pxa: Add optional bus clock Yixun Lan
2026-04-09  0:45   ` Yixun Lan
2026-04-13  8:38   ` Uwe Kleine-König
2026-04-13  8:38     ` Uwe Kleine-König
2026-04-14  6:04     ` Yixun Lan
2026-04-14  6:04       ` Yixun Lan
2026-04-14  8:51       ` Uwe Kleine-König
2026-04-14  8:51         ` Uwe Kleine-König

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=20260409234351-GKA1160389@kernel.org \
    --to=dlan@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=conor@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=duje@dujemihanovic.xyz \
    --cc=krzk+dt@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=robh@kernel.org \
    --cc=spacemit@lists.linux.dev \
    --cc=ukleinek@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.