From: Shawn Guo <shawnguo@kernel.org>
To: Chuanhua Han <chuanhua.han@nxp.com>
Cc: broonie@kernel.org, robh+dt@kernel.org, mark.rutland@arm.com,
leoyang.li@nxp.com, linux-spi@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/3] arm64: dts: ls1088a: Add the DSPI controller node
Date: Sat, 24 Aug 2019 20:36:48 +0200 [thread overview]
Message-ID: <20190824183647.GC14936@X250> (raw)
In-Reply-To: <20190801083105.30102-2-chuanhua.han@nxp.com>
On Thu, Aug 01, 2019 at 04:31:04PM +0800, Chuanhua Han wrote:
> This patch adds the DSPI controller node for ls1088a boards.
>
> Signed-off-by: Chuanhua Han <chuanhua.han@nxp.com>
> ---
> arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
> index dacd8cf..fe8f1bd 100644
> --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
> +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
> @@ -252,6 +252,19 @@
> #thermal-sensor-cells = <1>;
> };
>
> + dspi: spi@2100000 {
> + compatible = "fsl,ls1088a-dspi",
> + "fsl,ls1021a-v1.0-dspi";
I fixed the indent to have two compatible strings aligned on same
column when applying.
Shawn
> + #address-cells = <1>;
> + #size-cells = <0>;
> + reg = <0x0 0x2100000 0x0 0x10000>;
> + interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
> + clock-names = "dspi";
> + clocks = <&clockgen 4 1>;
> + spi-num-chipselects = <6>;
> + status = "disabled";
> + };
> +
> duart0: serial@21c0500 {
> compatible = "fsl,ns16550", "ns16550a";
> reg = <0x0 0x21c0500 0x0 0x100>;
> --
> 2.9.5
>
WARNING: multiple messages have this Message-ID (diff)
From: Shawn Guo <shawnguo@kernel.org>
To: Chuanhua Han <chuanhua.han@nxp.com>
Cc: mark.rutland@arm.com, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, robh+dt@kernel.org,
linux-spi@vger.kernel.org, broonie@kernel.org,
leoyang.li@nxp.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/3] arm64: dts: ls1088a: Add the DSPI controller node
Date: Sat, 24 Aug 2019 20:36:48 +0200 [thread overview]
Message-ID: <20190824183647.GC14936@X250> (raw)
In-Reply-To: <20190801083105.30102-2-chuanhua.han@nxp.com>
On Thu, Aug 01, 2019 at 04:31:04PM +0800, Chuanhua Han wrote:
> This patch adds the DSPI controller node for ls1088a boards.
>
> Signed-off-by: Chuanhua Han <chuanhua.han@nxp.com>
> ---
> arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
> index dacd8cf..fe8f1bd 100644
> --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
> +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
> @@ -252,6 +252,19 @@
> #thermal-sensor-cells = <1>;
> };
>
> + dspi: spi@2100000 {
> + compatible = "fsl,ls1088a-dspi",
> + "fsl,ls1021a-v1.0-dspi";
I fixed the indent to have two compatible strings aligned on same
column when applying.
Shawn
> + #address-cells = <1>;
> + #size-cells = <0>;
> + reg = <0x0 0x2100000 0x0 0x10000>;
> + interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
> + clock-names = "dspi";
> + clocks = <&clockgen 4 1>;
> + spi-num-chipselects = <6>;
> + status = "disabled";
> + };
> +
> duart0: serial@21c0500 {
> compatible = "fsl,ns16550", "ns16550a";
> reg = <0x0 0x21c0500 0x0 0x100>;
> --
> 2.9.5
>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2019-08-24 18:36 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-01 8:31 [PATCH 1/3] dt-bindings: fsl: dspi: Add fsl,ls1088a-dspi compatible string Chuanhua Han
2019-08-01 8:31 ` [PATCH 1/3] dt-bindings: fsl: dspi: Add fsl, ls1088a-dspi " Chuanhua Han
2019-08-01 8:31 ` [PATCH 2/3] arm64: dts: ls1088a: Add the DSPI controller node Chuanhua Han
2019-08-01 8:31 ` Chuanhua Han
2019-08-24 18:36 ` Shawn Guo [this message]
2019-08-24 18:36 ` Shawn Guo
2019-08-01 8:31 ` [PATCH 3/3] arm64: dts: ls1088a-qds: Add the spi-flash nodes under the DSPI controller Chuanhua Han
2019-08-01 8:31 ` Chuanhua Han
2019-08-21 18:34 ` [PATCH 1/3] dt-bindings: fsl: dspi: Add fsl,ls1088a-dspi compatible string Rob Herring
2019-08-21 18:34 ` Rob Herring
2019-08-21 18:34 ` Rob Herring
2019-08-24 18:35 ` Shawn Guo
2019-08-24 18:35 ` Shawn Guo
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=20190824183647.GC14936@X250 \
--to=shawnguo@kernel.org \
--cc=broonie@kernel.org \
--cc=chuanhua.han@nxp.com \
--cc=devicetree@vger.kernel.org \
--cc=leoyang.li@nxp.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=robh+dt@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.