From: Rob Herring <robh@kernel.org>
To: Daniel Palmer <daniel@0x0f.com>
Cc: soc@kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org, linux@armlinux.org.uk, w@1wt.eu
Subject: Re: [RFC PATCH 1/3] dt: bindings: interrupt-controller: Add binding description for msc313-intc
Date: Fri, 31 Jul 2020 12:23:16 -0600 [thread overview]
Message-ID: <20200731182316.GB520811@bogus> (raw)
In-Reply-To: <20200730130044.2037509-2-daniel@0x0f.com>
On Thu, Jul 30, 2020 at 10:00:42PM +0900, Daniel Palmer wrote:
> Adds a YAML description of the binding for the msc313-intc.
>
> Signed-off-by: Daniel Palmer <daniel@0x0f.com>
> Tested-by: Willy Tarreau <w@1wt.eu>
> ---
> .../mstar,msc313-intc.yaml | 79 +++++++++++++++++++
> MAINTAINERS | 1 +
> 2 files changed, 80 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/interrupt-controller/mstar,msc313-intc.yaml
>
> diff --git a/Documentation/devicetree/bindings/interrupt-controller/mstar,msc313-intc.yaml b/Documentation/devicetree/bindings/interrupt-controller/mstar,msc313-intc.yaml
> new file mode 100644
> index 000000000000..e87c72d452c3
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/interrupt-controller/mstar,msc313-intc.yaml
> @@ -0,0 +1,79 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +# Copyright 2020 thingy.jp.
> +%YAML 1.2
> +---
> +$id: "http://devicetree.org/schemas/interrupt-controller/mstar,msc313-intc.yaml#"
> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
> +
> +title: MStar/SigmaStar ARMv7 SoC Interrupt Controller Device Tree Bindings
> +
> +maintainers:
> + - Daniel Palmer <daniel@thingy.jp>
> +
> +allOf:
> + - $ref: /schemas/interrupt-controller.yaml#
> +
> +properties:
> + "#interrupt-cells":
> + const: 2
> +
> + compatible:
> + enum:
> + - mstar,msc313-intc-irq
> + - mstar,msc313-intc-fiq
> +
> + reg:
> + maxItems: 1
> +
> + interrupt-controller: true
> +
> + mstar,gic-offset:
> + description:
> + Offset added to the intc irq number to get the parent GIC irq.
> + allOf:
> + - $ref: /schemas/types.yaml#/definitions/uint32
> + - minimum: 0
> + maximum: 255
> +
> + mstar,nr-interrupts:
> + description:
> + Number of interrupt lines this intc has.
Generally, no other interrupt controller needs this type of property,
why do you?
Can't this be implied by the compatible string? Same question for
mstar,gic-offset.
> + allOf:
> + - $ref: /schemas/types.yaml#/definitions/uint32
> + - minimum: 0
> + maximum: 255
> +
> +required:
> + - "#interrupt-cells"
> + - compatible
> + - reg
> + - interrupt-controller
> + - mstar,gic-offset
> + - mstar,nr-interrupts
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + intc_fiq: intc@201310 {
> + compatible = "mstar,msc313-intc-fiq";
> + interrupt-controller;
> + reg = <0x201310 0x40>;
> + #interrupt-cells = <2>;
> + interrupt-parent = <&gic>;
> + mstar,gic-offset = <96>;
> + mstar,nr-interrupts = <32>;
> + };
> +
> + - |
> + intc_irq: intc@201350 {
> + compatible = "mstar,msc313-intc-irq";
> + interrupt-controller;
> + reg = <0x201350 0x40>;
> + #interrupt-cells = <2>;
> + interrupt-parent = <&gic>;
> + mstar,gic-offset = <32>;
> + mstar,nr-interrupts = <64>;
> + };
> +
> +...
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 9b35edac7ef7..cf64b4b90222 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2140,6 +2140,7 @@ L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
> S: Maintained
> W: http://linux-chenxing.org/
> F: Documentation/devicetree/bindings/arm/mstar/*
> +F: Documentation/devicetree/bindings/interrupt-controller/mstar,msc313-intc.yaml
> F: arch/arm/boot/dts/infinity*.dtsi
> F: arch/arm/boot/dts/mercury*.dtsi
> F: arch/arm/boot/dts/mstar-v7.dtsi
> --
> 2.27.0
>
next prev parent reply other threads:[~2020-07-31 18:23 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-30 13:00 [RFC PATCH 0/3] ARM: mstar: msc313 intc driver Daniel Palmer
2020-07-30 13:00 ` [RFC PATCH 1/3] dt: bindings: interrupt-controller: Add binding description for msc313-intc Daniel Palmer
2020-07-31 18:21 ` Rob Herring
2020-07-31 18:23 ` Rob Herring [this message]
2020-07-30 13:00 ` [RFC PATCH 2/3] ARM: mstar: msc313-intc interrupt controller driver Daniel Palmer
2020-08-21 18:46 ` Olof Johansson
2020-07-30 13:00 ` [RFC PATCH 3/3] ARM: mstar: Add interrupt controller to base dtsi Daniel Palmer
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=20200731182316.GB520811@bogus \
--to=robh@kernel.org \
--cc=daniel@0x0f.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=soc@kernel.org \
--cc=w@1wt.eu \
/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;
as well as URLs for NNTP newsgroup(s).