From: Conor Dooley <conor@kernel.org>
To: Hal Feng <hal.feng@starfivetech.com>
Cc: "Uwe Kleine-König" <ukleinek@kernel.org>,
"Philipp Zabel" <p.zabel@pengutronix.de>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Emil Renner Berthing" <emil.renner.berthing@canonical.com>,
"Palmer Dabbelt" <palmer@dabbelt.com>,
"Paul Walmsley" <pjw@kernel.org>,
"Albert Ou" <aou@eecs.berkeley.edu>,
"Changhuang Liang" <changhuang.liang@starfivetech.com>,
linux-pwm@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v18 2/3] riscv: dts: starfive: Correct pwm nodes
Date: Fri, 15 May 2026 14:09:42 +0100 [thread overview]
Message-ID: <20260515-dandruff-outpour-7b3b6b5480db@spud> (raw)
In-Reply-To: <20260515054723.25024-3-hal.feng@starfivetech.com>
[-- Attachment #1: Type: text/plain, Size: 2895 bytes --]
On Fri, May 15, 2026 at 01:47:21PM +0800, Hal Feng wrote:
> Each of the StarFive JH7100/JH7110 SoCs has 8 OpenCores PTC IP
> cores. One OpenCores PTC IP core can output one PWM channel.
>
> Signed-off-by: Hal Feng <hal.feng@starfivetech.com>
> ---
> .../boot/dts/starfive/jh7100-common.dtsi | 28 ++++++--
> arch/riscv/boot/dts/starfive/jh7100.dtsi | 69 ++++++++++++++++++-
> .../boot/dts/starfive/jh7110-common.dtsi | 27 ++++++--
> .../boot/dts/starfive/jh7110-milkv-mars.dts | 6 +-
> .../dts/starfive/jh7110-milkv-marscm.dtsi | 6 +-
> .../dts/starfive/jh7110-pine64-star64.dts | 6 +-
> .../jh7110-starfive-visionfive-2-lite.dtsi | 6 +-
> .../jh7110-starfive-visionfive-2.dtsi | 6 +-
> arch/riscv/boot/dts/starfive/jh7110.dtsi | 69 ++++++++++++++++++-
> 9 files changed, 200 insertions(+), 23 deletions(-)
>
> diff --git a/arch/riscv/boot/dts/starfive/jh7100-common.dtsi b/arch/riscv/boot/dts/starfive/jh7100-common.dtsi
> index ae1a6aeb0aea..85106545090e 100644
> --- a/arch/riscv/boot/dts/starfive/jh7100-common.dtsi
> +++ b/arch/riscv/boot/dts/starfive/jh7100-common.dtsi
> @@ -199,13 +199,23 @@ GPO_I2C2_PAD_SDA_OEN,
> };
> };
>
> - pwm_pins: pwm-0 {
> - pwm-pins {
> + pwm0_pins: pwm0-0 {
> + pwm0-pins {
> pinmux = <GPIOMUX(7,
> GPO_PWM_PAD_OUT_BIT0,
> GPO_PWM_PAD_OE_N_BIT0,
> - GPI_NONE)>,
> - <GPIOMUX(5,
> + GPI_NONE)>;
> + bias-disable;
> + drive-strength = <35>;
> + input-disable;
> + input-schmitt-disable;
> + slew-rate = <0>;
> + };
> + };
> +
> + pwm1_pins: pwm1-0 {
> + pwm1-pins {
> + pinmux = <GPIOMUX(5,
> GPO_PWM_PAD_OUT_BIT1,
> GPO_PWM_PAD_OE_N_BIT1,
> GPI_NONE)>;
> @@ -359,9 +369,15 @@ &osc_aud {
> clock-frequency = <27000000>;
> };
>
> -&pwm {
> +&pwm0 {
> + pinctrl-names = "default";
> + pinctrl-0 = <&pwm0_pins>;
> + status = "okay";
> +};
> +
> +&pwm1 {
> pinctrl-names = "default";
> - pinctrl-0 = <&pwm_pins>;
> + pinctrl-0 = <&pwm1_pins>;
> status = "okay";
> };
>
> diff --git a/arch/riscv/boot/dts/starfive/jh7100.dtsi b/arch/riscv/boot/dts/starfive/jh7100.dtsi
> index 7de0732b8eab..4629e9747307 100644
> --- a/arch/riscv/boot/dts/starfive/jh7100.dtsi
> +++ b/arch/riscv/boot/dts/starfive/jh7100.dtsi
> @@ -360,9 +360,72 @@ watchdog@12480000 {
> <&rstgen JH7100_RSTN_WDT>;
> };
>
> - pwm: pwm@12490000 {
> - compatible = "starfive,jh7100-pwm", "opencores,pwm-v1";
> - reg = <0x0 0x12490000 0x0 0x10000>;
> + pwm0: pwm@12490000 {
> + compatible = "opencores,pwm-v1";
> + reg = <0x0 0x12490000 0x0 0x10>;
NAK on the compatibles front, but this also looks very suspect, given
the size of the register regions, but I think it is actually correct.
You need to explain why it is correct in the commit message.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2026-05-15 13:09 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-15 5:47 [PATCH v18 0/3] Add OpenCores PTC PWM support Hal Feng
2026-05-15 5:47 ` [PATCH v18 1/3] dt-bindings: pwm: opencores: Drop starfive compatibles and update maintainers Hal Feng
2026-05-15 6:02 ` sashiko-bot
2026-05-15 13:06 ` Conor Dooley
2026-05-15 5:47 ` [PATCH v18 2/3] riscv: dts: starfive: Correct pwm nodes Hal Feng
2026-05-15 6:34 ` sashiko-bot
2026-05-15 13:09 ` Conor Dooley [this message]
2026-05-15 5:47 ` [PATCH v18 3/3] pwm: Add OpenCores PTC PWM driver Hal Feng
2026-05-15 7:02 ` sashiko-bot
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=20260515-dandruff-outpour-7b3b6b5480db@spud \
--to=conor@kernel.org \
--cc=aou@eecs.berkeley.edu \
--cc=changhuang.liang@starfivetech.com \
--cc=devicetree@vger.kernel.org \
--cc=emil.renner.berthing@canonical.com \
--cc=hal.feng@starfivetech.com \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=p.zabel@pengutronix.de \
--cc=palmer@dabbelt.com \
--cc=pjw@kernel.org \
--cc=robh@kernel.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox