linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Shawn Guo <shawnguo@kernel.org>
To: Anson Huang <anson.huang@nxp.com>
Cc: "kernel@pengutronix.de" <kernel@pengutronix.de>,
	Fabio Estevam <fabio.estevam@nxp.com>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>,
	"mark.rutland@arm.com" <mark.rutland@arm.com>,
	"mturquette@baylibre.com" <mturquette@baylibre.com>,
	"sboyd@kernel.org" <sboyd@kernel.org>,
	"michael@amarulasolutions.com" <michael@amarulasolutions.com>,
	"matteo.lisi@engicam.com" <matteo.lisi@engicam.com>,
	dl-linux-imx <linux-imx@nxp.com>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-clk@vger.kernel.org" <linux-clk@vger.kernel.org>
Subject: Re: [PATCH V2 2/2] ARM: dts: imx6ul: add GPIO clocks
Date: Thu, 28 Jun 2018 08:52:18 +0800	[thread overview]
Message-ID: <20180628005217.GC22683@dragon> (raw)
In-Reply-To: <AM3PR04MB1315D8B57E1A5D47BECBDCD3F54A0@AM3PR04MB1315.eurprd04.prod.outlook.com>

On Mon, Jun 25, 2018 at 03:14:39AM +0000, Anson Huang wrote:
> Gentle Ping...

I cannot apply this dts patch until the clock patch is landed on
mainline, because it has a dependency on new clock ID IMX6UL_CLK_GPIO1
created by clock patch.

Shawn

> > -----Original Message-----
> > From: Anson Huang
> > Sent: Sunday, June 3, 2018 9:44 AM
> > To: shawnguo@kernel.org; kernel@pengutronix.de; Fabio Estevam
> > <fabio.estevam@nxp.com>; robh+dt@kernel.org; mark.rutland@arm.com;
> > mturquette@baylibre.com; sboyd@kernel.org;
> > michael@amarulasolutions.com; matteo.lisi@engicam.com
> > Cc: dl-linux-imx <linux-imx@nxp.com>; linux-arm-kernel@lists.infradead.org;
> > devicetree@vger.kernel.org; linux-kernel@vger.kernel.org;
> > linux-clk@vger.kernel.org
> > Subject: [PATCH V2 2/2] ARM: dts: imx6ul: add GPIO clocks
> > 
> > i.MX6UL has GPIO clock gates in CCM CCGR, add clock property for GPIO driver
> > to make sure all GPIO banks work as expected.
> > 
> > Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> > ---
> > 	no changes since V1.
> >  arch/arm/boot/dts/imx6ul.dtsi | 5 +++++
> >  1 file changed, 5 insertions(+)
> > 
> > diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi
> > index 1241972..405e068 100644
> > --- a/arch/arm/boot/dts/imx6ul.dtsi
> > +++ b/arch/arm/boot/dts/imx6ul.dtsi
> > @@ -437,6 +437,7 @@
> >  				reg = <0x0209c000 0x4000>;
> >  				interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>,
> >  					     <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
> > +				clocks = <&clks IMX6UL_CLK_GPIO1>;
> >  				gpio-controller;
> >  				#gpio-cells = <2>;
> >  				interrupt-controller;
> > @@ -450,6 +451,7 @@
> >  				reg = <0x020a0000 0x4000>;
> >  				interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>,
> >  					     <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
> > +				clocks = <&clks IMX6UL_CLK_GPIO2>;
> >  				gpio-controller;
> >  				#gpio-cells = <2>;
> >  				interrupt-controller;
> > @@ -462,6 +464,7 @@
> >  				reg = <0x020a4000 0x4000>;
> >  				interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>,
> >  					     <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
> > +				clocks = <&clks IMX6UL_CLK_GPIO3>;
> >  				gpio-controller;
> >  				#gpio-cells = <2>;
> >  				interrupt-controller;
> > @@ -474,6 +477,7 @@
> >  				reg = <0x020a8000 0x4000>;
> >  				interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>,
> >  					     <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
> > +				clocks = <&clks IMX6UL_CLK_GPIO4>;
> >  				gpio-controller;
> >  				#gpio-cells = <2>;
> >  				interrupt-controller;
> > @@ -486,6 +490,7 @@
> >  				reg = <0x020ac000 0x4000>;
> >  				interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>,
> >  					     <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
> > +				clocks = <&clks IMX6UL_CLK_GPIO5>;
> >  				gpio-controller;
> >  				#gpio-cells = <2>;
> >  				interrupt-controller;
> > --
> > 2.7.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-clk" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2018-06-28  0:53 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-03  1:44 [PATCH V2 1/2] clk: imx6ul: add GPIO clock gates Anson Huang
2018-06-03  1:44 ` [PATCH V2 2/2] ARM: dts: imx6ul: add GPIO clocks Anson Huang
2018-06-03  2:06   ` Fabio Estevam
2018-06-03 20:57   ` Fabio Estevam
2018-06-25  3:14   ` Anson Huang
2018-06-28  0:52     ` Shawn Guo [this message]
2018-06-29 18:39       ` Stephen Boyd
2018-07-01  2:19         ` Shawn Guo
2018-07-06 17:15           ` Stephen Boyd
2018-07-11  8:28             ` Shawn Guo
2018-06-03  2:06 ` [PATCH V2 1/2] clk: imx6ul: add GPIO clock gates Fabio Estevam
2018-06-05 21:10 ` Rob Herring
2018-06-29 18:42 ` Stephen Boyd

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=20180628005217.GC22683@dragon \
    --to=shawnguo@kernel.org \
    --cc=anson.huang@nxp.com \
    --cc=devicetree@vger.kernel.org \
    --cc=fabio.estevam@nxp.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=matteo.lisi@engicam.com \
    --cc=michael@amarulasolutions.com \
    --cc=mturquette@baylibre.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@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 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).