linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Marc Zyngier <marc.zyngier@arm.com>
To: Bhupesh Sharma <bhupesh.sharma@freescale.com>,
	arnd@arndb.de, mark.rutland@arm.com,
	linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org
Cc: bhupesh.linux@gmail.com, Catalin.Marinas@arm.com,
	will.deacon@arm.com, olof@lixom.net,
	Jaiprakash Singh <b44839@freescale.com>,
	Alison Wang <alison.wang@freescale.com>,
	Liu Gang <Gang.Liu@freescale.com>,
	Minghuan Lian <Minghuan.Lian@freescale.com>,
	Shaohui Xie <Shaohui.Xie@freescale.com>,
	Nikhil Badola <nikhil.badola@freescale.com>,
	Yangbo Lu <yangbo.lu@freescale.com>,
	Scott Wood <scottwood@freescale.com>
Subject: Re: [PATCH v2 07/10] dts/ls2085a: Update DTSI to add support of various peripherals
Date: Fri, 04 Sep 2015 11:54:50 +0100	[thread overview]
Message-ID: <55E9787A.7050304@arm.com> (raw)
In-Reply-To: <1441350322-4671-1-git-send-email-bhupesh.sharma@freescale.com>

On 04/09/15 08:05, Bhupesh Sharma wrote:
> This patch updates the LS2085a DTSI (DTS Include) file to add
> support for various peripherals supported by FSL LS2085a SoC, for e.g.:
> 	- USB 3.0 Host
> 	- PMU
> 	- CCN-504
> 	- Watchdog
> 	- SATA
> 	- SPI
> 	- PCIe
> 	- etc.
> 
> Signed-off-by: Bhupesh Sharma <bhupesh.sharma@freescale.com>
> Signed-off-by: Jaiprakash Singh <b44839@freescale.com>
> Signed-off-by: Alison Wang <alison.wang@freescale.com>
> Signed-off-by: Liu Gang <Gang.Liu@freescale.com>
> Signed-off-by: Minghuan Lian <Minghuan.Lian@freescale.com>
> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
> Signed-off-by: Nikhil Badola <nikhil.badola@freescale.com>
> Signed-off-by: Yangbo Lu <yangbo.lu@freescale.com>
> Signed-off-by: Scott Wood <scottwood@freescale.com>
> ---
>  arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi |  469 +++++++++++++++++++++++-
>  1 file changed, 459 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi
> index 333d942..5fee0a7 100644
> --- a/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi
> +++ b/arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi

[...]

>  	gic: interrupt-controller@6000000 {
>  		compatible = "arm,gic-v3";
>  		reg = <0x0 0x06000000 0 0x10000>, /* GIC Dist */
> -		      <0x0 0x06100000 0 0x100000>; /* GICR (RD_base + SGI_base) */
> +		      <0x0 0x06100000 0 0x100000>, /* GICR (RD_base + SGI_base) */
> +		      <0x0 0x0c0c0000 0 0x2000>, /* GICC */
> +		      <0x0 0x0c0d0000 0 0x1000>, /* GICH */
> +		      <0x0 0x0c0e0000 0 0x20000>; /* GICV */
>  		#interrupt-cells = <3>;
> +		#address-cells = <2>;
> +		#size-cells = <2>;
> +		ranges;
>  		interrupt-controller;
>  		interrupts = <1 9 0x4>;
> +
> +		its: gic-its@6020000 {
> +			compatible = "arm,gic-v3-its";
> +			msi-controller;
> +			reg = <0x0 0x6020000 0 0x20000>;
> +		};
> +	};

[...]

>  	fsl_mc: fsl-mc@80c000000 {
>  		compatible = "fsl,qoriq-mc";
> +		#stream-id-cells = <2>;
>  		reg = <0x00000008 0x0c000000 0 0x40>,	 /* MC portal base */
>  		      <0x00000000 0x08340000 0 0x40000>; /* MC control reg */
> +		lpi-parent = <&its>;

I'm afraid there is no such thing as "lpi_parent" as a property. We have
msi_parent, which is (I think) what you want, and is dealt with in the
ITS driver. Also, you'll need to describe the DeviceIDs that can be
generated by this device so that the ITS can be correctly programmed.

Thanks,

	M.
-- 
Jazz is not dead. It just smells funny...

  parent reply	other threads:[~2015-09-04 10:54 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-04  7:05 [PATCH v2 07/10] dts/ls2085a: Update DTSI to add support of various peripherals Bhupesh Sharma
2015-09-04  7:05 ` [PATCH v2 08/10] dts/ls2085a: Update Simulator DTS " Bhupesh Sharma
2015-09-04 21:31   ` Li Yang
2015-09-05  8:15     ` Sharma Bhupesh
2015-09-04  7:05 ` [PATCH v2 09/10] dts/ls2080a: Add DTS support for LS2080a QDS & RDB boards Bhupesh Sharma
2015-09-04  7:05 ` [PATCH v2 10/10] dts/Makefile: Add build support for LS2080a QDS & RDB board DTS Bhupesh Sharma
2015-09-04 10:54 ` Marc Zyngier [this message]
2015-09-09  3:58   ` [PATCH v2 07/10] dts/ls2085a: Update DTSI to add support of various peripherals Sharma Bhupesh
2015-09-04 21:02 ` Li Yang
2015-09-05  8:37   ` Sharma Bhupesh
2015-09-06 20:57     ` Rob Herring
2015-09-06 21:03       ` Sharma Bhupesh
2015-09-07 20:58         ` Rob Herring
2015-09-09  3:55           ` Sharma Bhupesh
2015-09-04 21:15 ` Rob Herring
2015-09-28 10:03   ` Bhupesh SHARMA
2015-09-28 13:44     ` Rob Herring
     [not found]   ` <CALRxmdC9ZzGiw6CVnVTqhH1xvA-P9s8cpYbk8DoVq7CodFS0VA@mail.gmail.com>
2015-10-01 20:05     ` Stuart Yoder
2015-10-01 21:42       ` Li Yang
2015-10-01 21:58         ` Scott Wood
2015-10-01 22:41           ` Li Yang
2015-10-01 23:18             ` Scott Wood

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=55E9787A.7050304@arm.com \
    --to=marc.zyngier@arm.com \
    --cc=Catalin.Marinas@arm.com \
    --cc=Gang.Liu@freescale.com \
    --cc=Minghuan.Lian@freescale.com \
    --cc=Shaohui.Xie@freescale.com \
    --cc=alison.wang@freescale.com \
    --cc=arnd@arndb.de \
    --cc=b44839@freescale.com \
    --cc=bhupesh.linux@gmail.com \
    --cc=bhupesh.sharma@freescale.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=nikhil.badola@freescale.com \
    --cc=olof@lixom.net \
    --cc=scottwood@freescale.com \
    --cc=will.deacon@arm.com \
    --cc=yangbo.lu@freescale.com \
    /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).