From: Conor Dooley <conor@kernel.org>
To: Changhuang Liang <changhuang.liang@starfivetech.com>
Cc: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Thomas Gleixner <tglx@kernel.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org,
Ley Foon Tan <leyfoon.tan@starfivetech.com>
Subject: Re: [PATCH v1 1/5] dt-bindings: interrupt-controller: Convert the word "jh8100" to "jhb100"
Date: Fri, 10 Apr 2026 18:43:01 +0100 [thread overview]
Message-ID: <20260410-rockstar-monologue-b3f64fe20226@spud> (raw)
In-Reply-To: <20260410090106.622781-2-changhuang.liang@starfivetech.com>
[-- Attachment #1: Type: text/plain, Size: 3792 bytes --]
On Fri, Apr 10, 2026 at 02:01:02AM -0700, Changhuang Liang wrote:
> The StarFive JH8100 SoC was discontinued before production. The
> newly taped-out JHB100 SoC uses the same interrupt controller IP.
>
> Rename the binding file, compatible string, and MAINTAINERS entry
> from "jh8100" to "jhb100". In JHB100 SoC, The clocks and resets are
> not operated by users, but they exist in the hardware. Mark them as
> optional.
Content looks fine, I think the commit message should be changed to
something like "repurpose binding for unreleased jh8100 for jhb100".
W/ something along those lines
Acked-by: Conor Dooley <conor.dooley@microchip.com>
pw-bot: not-applicable
>
> Signed-off-by: Changhuang Liang <changhuang.liang@starfivetech.com>
> ---
> ...ve,jh8100-intc.yaml => starfive,jhb100-intc.yaml} | 12 ++++--------
> MAINTAINERS | 2 +-
> 2 files changed, 5 insertions(+), 9 deletions(-)
> rename Documentation/devicetree/bindings/interrupt-controller/{starfive,jh8100-intc.yaml => starfive,jhb100-intc.yaml} (81%)
>
> diff --git a/Documentation/devicetree/bindings/interrupt-controller/starfive,jh8100-intc.yaml b/Documentation/devicetree/bindings/interrupt-controller/starfive,jhb100-intc.yaml
> similarity index 81%
> rename from Documentation/devicetree/bindings/interrupt-controller/starfive,jh8100-intc.yaml
> rename to Documentation/devicetree/bindings/interrupt-controller/starfive,jhb100-intc.yaml
> index ada5788602d6..576b1d6c7973 100644
> --- a/Documentation/devicetree/bindings/interrupt-controller/starfive,jh8100-intc.yaml
> +++ b/Documentation/devicetree/bindings/interrupt-controller/starfive,jhb100-intc.yaml
> @@ -1,13 +1,13 @@
> # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> %YAML 1.2
> ---
> -$id: http://devicetree.org/schemas/interrupt-controller/starfive,jh8100-intc.yaml#
> +$id: http://devicetree.org/schemas/interrupt-controller/starfive,jhb100-intc.yaml#
> $schema: http://devicetree.org/meta-schemas/core.yaml#
>
> title: StarFive External Interrupt Controller
>
> description:
> - StarFive SoC JH8100 contain a external interrupt controller. It can be used
> + StarFive SoC JHB100 contain a external interrupt controller. It can be used
> to handle high-level input interrupt signals. It also send the output
> interrupt signal to RISC-V PLIC.
>
> @@ -16,7 +16,7 @@ maintainers:
>
> properties:
> compatible:
> - const: starfive,jh8100-intc
> + const: starfive,jhb100-intc
>
> reg:
> maxItems: 1
> @@ -40,8 +40,6 @@ properties:
> required:
> - compatible
> - reg
> - - clocks
> - - resets
> - interrupts
> - interrupt-controller
> - "#interrupt-cells"
> @@ -51,10 +49,8 @@ additionalProperties: false
> examples:
> - |
> interrupt-controller@12260000 {
> - compatible = "starfive,jh8100-intc";
> + compatible = "starfive,jhb100-intc";
> reg = <0x12260000 0x10000>;
> - clocks = <&syscrg_ne 76>;
> - resets = <&syscrg_ne 13>;
> interrupts = <45>;
> interrupt-controller;
> #interrupt-cells = <1>;
> diff --git a/MAINTAINERS b/MAINTAINERS
> index d238590a31f2..a2961727e3d1 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -25312,7 +25312,7 @@ F: drivers/phy/starfive/phy-jh7110-usb.c
> STARFIVE JH8100 EXTERNAL INTERRUPT CONTROLLER DRIVER
> M: Changhuang Liang <changhuang.liang@starfivetech.com>
> S: Supported
> -F: Documentation/devicetree/bindings/interrupt-controller/starfive,jh8100-intc.yaml
> +F: Documentation/devicetree/bindings/interrupt-controller/starfive,jhb100-intc.yaml
> F: drivers/irqchip/irq-starfive-jh8100-intc.c
>
> STATIC BRANCH/CALL
> --
> 2.25.1
>
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2026-04-10 17:43 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-10 9:01 [PATCH v1 0/5] Add interrupt controller for JHB100 SoC Changhuang Liang
2026-04-10 9:01 ` [PATCH v1 1/5] dt-bindings: interrupt-controller: Convert the word "jh8100" to "jhb100" Changhuang Liang
2026-04-10 17:43 ` Conor Dooley [this message]
2026-04-10 9:01 ` [PATCH v1 2/5] irqchip: starfive: " Changhuang Liang
2026-04-10 14:26 ` Thomas Gleixner
2026-04-10 9:01 ` [PATCH v1 3/5] irqchip: starfive: Use devm_ interfaces to simplify resource release Changhuang Liang
2026-04-10 9:27 ` Philipp Zabel
2026-04-10 9:53 ` Changhuang Liang
2026-04-10 14:32 ` Thomas Gleixner
2026-04-10 9:01 ` [PATCH v1 4/5] irqchip: starfive: Increase the interrupt source number up to 64 Changhuang Liang
2026-04-10 14:37 ` Thomas Gleixner
2026-04-10 9:01 ` [PATCH v1 5/5] irqchip: starfive: Implement irq_set_type and irq_ack hooks Changhuang Liang
2026-04-10 14:46 ` Thomas Gleixner
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=20260410-rockstar-monologue-b3f64fe20226@spud \
--to=conor@kernel.org \
--cc=changhuang.liang@starfivetech.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=leyfoon.tan@starfivetech.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=p.zabel@pengutronix.de \
--cc=robh@kernel.org \
--cc=tglx@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