All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Robert Richter <rric@kernel.org>,  SoC Team <soc@kernel.org>
Cc: Robin Murphy <robin.murphy@arm.com>,
	devicetree@vger.kernel.org,  linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] arm64: dts: cavium: Fix GICv3 ITS nodes
Date: Thu, 16 Mar 2023 14:51:38 -0500	[thread overview]
Message-ID: <CAL_JsqLz9mtsOr1sTB+eAxGOsZFthrLV-LbFBW7o7RdwgLCBZQ@mail.gmail.com> (raw)
In-Reply-To: <20230208185506.2305349-1-robh@kernel.org>

On Wed, Feb 8, 2023 at 12:55 PM Rob Herring <robh@kernel.org> wrote:
>
> The GICv3 ITS is an MSI controller, therefore its node name should be
> 'msi-controller'. The ITS node is also expected to have '#msi-cells'.
> Add it on Thunder as there are no users. Thunder2 uses 'msi-parent', but
> Robin says that should be 'msi-map' instead and I'm not sure what's
> correct for it.
>
> The unit-addresses of both the ITS and main GIC node on thunder2 are also
> wrong, so fix them while we're here.
>
> Cc: Robin Murphy <robin.murphy@arm.com>
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---
>  arch/arm64/boot/dts/cavium/thunder-88xx.dtsi  | 3 ++-
>  arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi | 4 ++--
>  2 files changed, 4 insertions(+), 3 deletions(-)

Ping!

Should we remove these platforms instead if they aren't maintained?

>
> diff --git a/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi b/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi
> index e0a71795261b..8ad31dee11a3 100644
> --- a/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi
> +++ b/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi
> @@ -389,9 +389,10 @@ gic0: interrupt-controller@8010,00000000 {
>                               <0x8010 0x80000000 0x0 0x600000>; /* GICR */
>                         interrupts = <1 9 0xf04>;
>
> -                       its: gic-its@8010,00020000 {
> +                       its: msi-controller@801000020000 {
>                                 compatible = "arm,gic-v3-its";
>                                 msi-controller;
> +                               #msi-cells = <1>;
>                                 reg = <0x8010 0x20000 0x0 0x200000>;
>                         };
>                 };
> diff --git a/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi b/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi
> index dfb41705a9a9..3419bd252696 100644
> --- a/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi
> +++ b/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi
> @@ -55,7 +55,7 @@ psci {
>                 method = "smc";
>         };
>
> -       gic: interrupt-controller@400080000 {
> +       gic: interrupt-controller@4000080000 {
>                 compatible = "arm,gic-v3";
>                 #interrupt-cells = <3>;
>                 #address-cells = <2>;
> @@ -67,7 +67,7 @@ gic: interrupt-controller@400080000 {
>                       <0x04 0x01000000 0x0 0x1000000>;  /* GICR */
>                 interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
>
> -               gicits: gic-its@40010000 {
> +               gicits: msi-controller@4000100000 {
>                         compatible = "arm,gic-v3-its";
>                         msi-controller;
>                         reg = <0x04 0x00100000 0x0 0x20000>;    /* GIC ITS */
> --
> 2.39.1
>

WARNING: multiple messages have this Message-ID (diff)
From: Rob Herring <robh@kernel.org>
To: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Robert Richter <rric@kernel.org>,  SoC Team <soc@kernel.org>
Cc: Robin Murphy <robin.murphy@arm.com>,
	devicetree@vger.kernel.org,  linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] arm64: dts: cavium: Fix GICv3 ITS nodes
Date: Thu, 16 Mar 2023 14:51:38 -0500	[thread overview]
Message-ID: <CAL_JsqLz9mtsOr1sTB+eAxGOsZFthrLV-LbFBW7o7RdwgLCBZQ@mail.gmail.com> (raw)
In-Reply-To: <20230208185506.2305349-1-robh@kernel.org>

On Wed, Feb 8, 2023 at 12:55 PM Rob Herring <robh@kernel.org> wrote:
>
> The GICv3 ITS is an MSI controller, therefore its node name should be
> 'msi-controller'. The ITS node is also expected to have '#msi-cells'.
> Add it on Thunder as there are no users. Thunder2 uses 'msi-parent', but
> Robin says that should be 'msi-map' instead and I'm not sure what's
> correct for it.
>
> The unit-addresses of both the ITS and main GIC node on thunder2 are also
> wrong, so fix them while we're here.
>
> Cc: Robin Murphy <robin.murphy@arm.com>
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---
>  arch/arm64/boot/dts/cavium/thunder-88xx.dtsi  | 3 ++-
>  arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi | 4 ++--
>  2 files changed, 4 insertions(+), 3 deletions(-)

Ping!

Should we remove these platforms instead if they aren't maintained?

>
> diff --git a/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi b/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi
> index e0a71795261b..8ad31dee11a3 100644
> --- a/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi
> +++ b/arch/arm64/boot/dts/cavium/thunder-88xx.dtsi
> @@ -389,9 +389,10 @@ gic0: interrupt-controller@8010,00000000 {
>                               <0x8010 0x80000000 0x0 0x600000>; /* GICR */
>                         interrupts = <1 9 0xf04>;
>
> -                       its: gic-its@8010,00020000 {
> +                       its: msi-controller@801000020000 {
>                                 compatible = "arm,gic-v3-its";
>                                 msi-controller;
> +                               #msi-cells = <1>;
>                                 reg = <0x8010 0x20000 0x0 0x200000>;
>                         };
>                 };
> diff --git a/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi b/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi
> index dfb41705a9a9..3419bd252696 100644
> --- a/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi
> +++ b/arch/arm64/boot/dts/cavium/thunder2-99xx.dtsi
> @@ -55,7 +55,7 @@ psci {
>                 method = "smc";
>         };
>
> -       gic: interrupt-controller@400080000 {
> +       gic: interrupt-controller@4000080000 {
>                 compatible = "arm,gic-v3";
>                 #interrupt-cells = <3>;
>                 #address-cells = <2>;
> @@ -67,7 +67,7 @@ gic: interrupt-controller@400080000 {
>                       <0x04 0x01000000 0x0 0x1000000>;  /* GICR */
>                 interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
>
> -               gicits: gic-its@40010000 {
> +               gicits: msi-controller@4000100000 {
>                         compatible = "arm,gic-v3-its";
>                         msi-controller;
>                         reg = <0x04 0x00100000 0x0 0x20000>;    /* GIC ITS */
> --
> 2.39.1
>

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

  reply	other threads:[~2023-03-16 19:51 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-08 18:55 [PATCH] arm64: dts: cavium: Fix GICv3 ITS nodes Rob Herring
2023-02-08 18:55 ` Rob Herring
2023-03-16 19:51 ` Rob Herring [this message]
2023-03-16 19:51   ` Rob Herring
2023-03-17 12:40   ` Krzysztof Kozlowski
2023-03-17 12:40     ` Krzysztof Kozlowski
2023-03-17 12:40 ` Krzysztof Kozlowski
2023-03-17 12:40   ` 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=CAL_JsqLz9mtsOr1sTB+eAxGOsZFthrLV-LbFBW7o7RdwgLCBZQ@mail.gmail.com \
    --to=robh@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=rric@kernel.org \
    --cc=soc@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.