SUPERH platform development
 help / color / mirror / Atom feed
From: Simon Horman <horms@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/4] ARM: shmobile: r8a7779: Add scif nodes to dtsi
Date: Wed, 30 Apr 2014 01:51:34 +0000	[thread overview]
Message-ID: <20140430015134.GH24989@verge.net.au> (raw)
In-Reply-To: <2171203.7Ft1Jpoq1o@avalon>

On Wed, Apr 30, 2014 at 02:42:20AM +0200, Laurent Pinchart wrote:
> Hi Simon,
> 
> Thank you for the patch.
> 
> On Tuesday 29 April 2014 16:43:23 Simon Horman wrote:
> > Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> > ---
> >  arch/arm/boot/dts/r8a7779.dtsi | 60 +++++++++++++++++++++++++++++++++++++++
> >  1 file changed, 60 insertions(+)
> > 
> > diff --git a/arch/arm/boot/dts/r8a7779.dtsi b/arch/arm/boot/dts/r8a7779.dtsi
> > index e924f96..3e9cca4 100644
> > --- a/arch/arm/boot/dts/r8a7779.dtsi
> > +++ b/arch/arm/boot/dts/r8a7779.dtsi
> > @@ -203,6 +203,66 @@
> >  		status = "disabled";
> >  	};
> > 
> > +	scif0: serial@ffe40000 {
> > +		compatible = "renesas,scif", "renesas,scif-r8a7779";
> 
> The most specific compatible string should come first, so this should read
> 
> 		compatible = "renesas,scif-r8a7779", "renesas,scif";

Thanks.

> 
> > +		reg = <0xffe40000 265>;
> 
> 265 ? Don't you mean 256 ? 0x100 might be a better option.

Thanks.

> 
> > +		interrupt-parent = <&gic>;
> > +		interrupts = <0 88 IRQ_TYPE_LEVEL_HIGH>;
> > +		clocks = <&cpg_clocks R8A7779_CLK_P>;
> > +		clock-names = "sci_ick";
> 
> Could you try the SCI RFC patch set I've just sent that drop the interface 
> clock in favour of the functional clock ?

Yes, I will test this patch against your SCI patch.

> > +		status = "disabled";
> > +	};
> > +
> > +	scif1: serial@ffe41000 {
> > +		compatible = "renesas,scif", "renesas,scif-r8a7779";
> > +		reg = <0xffe41000 265>;
> > +		interrupt-parent = <&gic>;
> > +		interrupts = <0 89 IRQ_TYPE_LEVEL_HIGH>;
> > +		clocks = <&cpg_clocks R8A7779_CLK_P>;
> > +		clock-names = "sci_ick";
> > +		status = "disabled";
> > +	};
> > +
> > +	scif2: serial@ffe42000 {
> > +		compatible = "renesas,scif", "renesas,scif-r8a7779";
> > +		reg = <0xffe42000 265>;
> > +		interrupt-parent = <&gic>;
> > +		interrupts = <0 90 IRQ_TYPE_LEVEL_HIGH>;
> > +		clocks = <&cpg_clocks R8A7779_CLK_P>;
> > +		clock-names = "sci_ick";
> > +		status = "disabled";
> > +	};
> > +
> > +	scif3: serial@ffe43000 {
> > +		compatible = "renesas,scif", "renesas,scif-r8a7779";
> > +		reg = <0xffe43000 265>;
> > +		interrupt-parent = <&gic>;
> > +		interrupts = <0 91 IRQ_TYPE_LEVEL_HIGH>;
> > +		clocks = <&cpg_clocks R8A7779_CLK_P>;
> > +		clock-names = "sci_ick";
> > +		status = "disabled";
> > +	};
> > +
> > +	scif4: serial@ffe44000 {
> > +		compatible = "renesas,scif", "renesas,scif-r8a7779";
> > +		reg = <0xffe44000 265>;
> > +		interrupt-parent = <&gic>;
> > +		interrupts = <0 92 IRQ_TYPE_LEVEL_HIGH>;
> > +		clocks = <&cpg_clocks R8A7779_CLK_P>;
> > +		clock-names = "sci_ick";
> > +		status = "disabled";
> > +	};
> > +
> > +	scif5: serial@ffe45000 {
> > +		compatible = "renesas,scif", "renesas,scif-r8a7779";
> > +		reg = <0xffe45000 265>;
> > +		interrupt-parent = <&gic>;
> > +		interrupts = <0 93 IRQ_TYPE_LEVEL_HIGH>;
> > +		clocks = <&cpg_clocks R8A7779_CLK_P>;
> > +		clock-names = "sci_ick";
> > +		status = "disabled";
> > +	};
> > +
> >  	pfc: pfc@fffc0000 {
> >  		compatible = "renesas,pfc-r8a7779";
> >  		reg = <0xfffc0000 0x23c>;
> 
> -- 
> Regards,
> 
> Laurent Pinchart
> 

  reply	other threads:[~2014-04-30  1:51 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-29  7:43 [PATCH/RFC 0/4] ARM: shmobile: marzen: Initialise SCIF devices using DT Simon Horman
2014-04-29  7:43 ` [PATCH 1/4] ARM: shmobile: r8a7779: Add scif nodes to dtsi Simon Horman
2014-04-30  0:42   ` Laurent Pinchart
2014-04-30  1:51     ` Simon Horman [this message]
2014-04-29  7:43 ` [PATCH 2/4] ARM: shmobile: marzen: Remove early_printk from command line Simon Horman
2014-04-30  0:45   ` Laurent Pinchart
2014-04-29  7:43 ` [PATCH 3/4] ARM: shmobile: marzen: Initialise SCIF devices using DT Simon Horman
2014-04-30  0:45   ` Laurent Pinchart
2014-04-29  7:43 ` [PATCH 4/4] ARM: shmobile: marzen: Use disabled variant of clock workaround for scif devices Simon Horman
2014-04-29 13:40   ` Magnus Damm
2014-04-29 23:51     ` Simon Horman
2014-04-30  0:47       ` Laurent Pinchart
2014-04-30  1:50         ` Simon Horman
2014-04-30  4:49           ` Magnus Damm
2014-04-30  5:31             ` Simon Horman

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=20140430015134.GH24989@verge.net.au \
    --to=horms@verge.net.au \
    --cc=linux-arm-kernel@lists.infradead.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