All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 084/232] powerpc/85xx: add eSDHC support for MPC8536DS boards
@ 2009-09-22 23:45 akpm
  2009-09-23  0:32 ` Anton Vorontsov
  0 siblings, 1 reply; 4+ messages in thread
From: akpm @ 2009-09-22 23:45 UTC (permalink / raw)
  To: torvalds
  Cc: akpm, avorontsov, ben, benh, david.vrabel, galak, linux-mmc,
	pierre, s.hauer

From: Anton Vorontsov <avorontsov@ru.mvista.com>

This patch simply adds sdhci node to the device tree.

We specify clock-frequency manually, so that eSDHC will work without
upgrading U-Boot.  Though, that'll only work for default setup (1500 MHz)
on new board revisions.  For non-default setups, it's recommended to
upgrade U-Boot, since it will fixup clock-frequency automatically.

Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Cc: Pierre Ossman <pierre@ossman.eu>
Cc: Kumar Gala <galak@kernel.crashing.org>
Cc: David Vrabel <david.vrabel@csr.com>
Cc: Ben Dooks <ben@fluff.org>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 arch/powerpc/boot/dts/mpc8536ds.dts |    8 ++++++++
 1 file changed, 8 insertions(+)

diff -puN arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards arch/powerpc/boot/dts/mpc8536ds.dts
--- a/arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards
+++ a/arch/powerpc/boot/dts/mpc8536ds.dts
@@ -258,6 +258,14 @@
 			clock-frequency = <250000000>;
 		};
 
+		sdhci@2e000 {
+			compatible = "fsl,mpc8536-esdhc", "fsl,esdhc";
+			reg = <0x2e000 0x1000>;
+			interrupts = <72 0x2>;
+			interrupt-parent = <&mpic>;
+			clock-frequency = <250000000>;
+		};
+
 		serial0: serial@4500 {
 			cell-index = <0>;
 			device_type = "serial";
_

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch 084/232] powerpc/85xx: add eSDHC support for MPC8536DS boards
  2009-09-22 23:45 [patch 084/232] powerpc/85xx: add eSDHC support for MPC8536DS boards akpm
@ 2009-09-23  0:32 ` Anton Vorontsov
  2009-09-23  0:56   ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Anton Vorontsov @ 2009-09-23  0:32 UTC (permalink / raw)
  To: akpm
  Cc: torvalds, avorontsov, ben, benh, david.vrabel, galak, linux-mmc,
	pierre, s.hauer

On Tue, Sep 22, 2009 at 04:45:17PM -0700, akpm@linux-foundation.org wrote:
> From: Anton Vorontsov <avorontsov@ru.mvista.com>
> 
> This patch simply adds sdhci node to the device tree.
> 
> We specify clock-frequency manually, so that eSDHC will work without
> upgrading U-Boot.  Though, that'll only work for default setup (1500 MHz)
> on new board revisions.  For non-default setups, it's recommended to
> upgrade U-Boot, since it will fixup clock-frequency automatically.
> 
> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
> Cc: Pierre Ossman <pierre@ossman.eu>
> Cc: Kumar Gala <galak@kernel.crashing.org>
> Cc: David Vrabel <david.vrabel@csr.com>
> Cc: Ben Dooks <ben@fluff.org>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Cc: <linux-mmc@vger.kernel.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
> 
>  arch/powerpc/boot/dts/mpc8536ds.dts |    8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff -puN arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards arch/powerpc/boot/dts/mpc8536ds.dts
> --- a/arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards
> +++ a/arch/powerpc/boot/dts/mpc8536ds.dts
> @@ -258,6 +258,14 @@
>  			clock-frequency = <250000000>;
>  		};

By "clock-frequency = <250000000>;" above and the one down below*
I can see that this patch is already applied (via powerpc tree).

Please don't merge this particular patch, it's already there.

> +		sdhci@2e000 {
> +			compatible = "fsl,mpc8536-esdhc", "fsl,esdhc";
> +			reg = <0x2e000 0x1000>;
> +			interrupts = <72 0x2>;
> +			interrupt-parent = <&mpic>;
> +			clock-frequency = <250000000>;

*

> +		};
> +
>  		serial0: serial@4500 {
>  			cell-index = <0>;
>  			device_type = "serial";
> _

Thanks,

-- 
Anton Vorontsov
email: cbouatmailru@gmail.com
irc://irc.freenode.net/bd2

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch 084/232] powerpc/85xx: add eSDHC support for MPC8536DS boards
  2009-09-23  0:32 ` Anton Vorontsov
@ 2009-09-23  0:56   ` Andrew Morton
  2009-09-23  1:16     ` Anton Vorontsov
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2009-09-23  0:56 UTC (permalink / raw)
  To: avorontsov
  Cc: Anton Vorontsov, torvalds, ben, benh, david.vrabel, galak,
	linux-mmc, pierre, s.hauer

On Wed, 23 Sep 2009 04:32:00 +0400 Anton Vorontsov <cbouatmailru@gmail.com> wrote:

> On Tue, Sep 22, 2009 at 04:45:17PM -0700, akpm@linux-foundation.org wrote:
> > From: Anton Vorontsov <avorontsov@ru.mvista.com>
> > 
> > This patch simply adds sdhci node to the device tree.
> > 
> > We specify clock-frequency manually, so that eSDHC will work without
> > upgrading U-Boot.  Though, that'll only work for default setup (1500 MHz)
> > on new board revisions.  For non-default setups, it's recommended to
> > upgrade U-Boot, since it will fixup clock-frequency automatically.
> > 
> > Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
> > Cc: Pierre Ossman <pierre@ossman.eu>
> > Cc: Kumar Gala <galak@kernel.crashing.org>
> > Cc: David Vrabel <david.vrabel@csr.com>
> > Cc: Ben Dooks <ben@fluff.org>
> > Cc: Sascha Hauer <s.hauer@pengutronix.de>
> > Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > Cc: <linux-mmc@vger.kernel.org>
> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> > ---
> > 
> >  arch/powerpc/boot/dts/mpc8536ds.dts |    8 ++++++++
> >  1 file changed, 8 insertions(+)
> > 
> > diff -puN arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards arch/powerpc/boot/dts/mpc8536ds.dts
> > --- a/arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards
> > +++ a/arch/powerpc/boot/dts/mpc8536ds.dts
> > @@ -258,6 +258,14 @@
> >  			clock-frequency = <250000000>;
> >  		};
> 
> By "clock-frequency = <250000000>;" above and the one down below*
> I can see that this patch is already applied (via powerpc tree).
> 
> Please don't merge this particular patch, it's already there.
> 
> > +		sdhci@2e000 {
> > +			compatible = "fsl,mpc8536-esdhc", "fsl,esdhc";
> > +			reg = <0x2e000 0x1000>;
> > +			interrupts = <72 0x2>;
> > +			interrupt-parent = <&mpic>;
> > +			clock-frequency = <250000000>;
> 
> *
> 
> > +		};
> > +
> >  		serial0: serial@4500 {
> >  			cell-index = <0>;
> >  			device_type = "serial";
> > _

So someone went and stole [patch 7/7] from your series and didn't tell me?

I wasn't expecting that.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch 084/232] powerpc/85xx: add eSDHC support for MPC8536DS boards
  2009-09-23  0:56   ` Andrew Morton
@ 2009-09-23  1:16     ` Anton Vorontsov
  0 siblings, 0 replies; 4+ messages in thread
From: Anton Vorontsov @ 2009-09-23  1:16 UTC (permalink / raw)
  To: Andrew Morton
  Cc: avorontsov, torvalds, ben, benh, david.vrabel, galak, linux-mmc,
	pierre, s.hauer

On Tue, Sep 22, 2009 at 05:56:57PM -0700, Andrew Morton wrote:
> On Wed, 23 Sep 2009 04:32:00 +0400 Anton Vorontsov <cbouatmailru@gmail.com> wrote:
> 
> > On Tue, Sep 22, 2009 at 04:45:17PM -0700, akpm@linux-foundation.org wrote:
> > > From: Anton Vorontsov <avorontsov@ru.mvista.com>
> > > 
> > > This patch simply adds sdhci node to the device tree.
> > > 
> > > We specify clock-frequency manually, so that eSDHC will work without
> > > upgrading U-Boot.  Though, that'll only work for default setup (1500 MHz)
> > > on new board revisions.  For non-default setups, it's recommended to
> > > upgrade U-Boot, since it will fixup clock-frequency automatically.
> > > 
> > > Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
> > > Cc: Pierre Ossman <pierre@ossman.eu>
> > > Cc: Kumar Gala <galak@kernel.crashing.org>
> > > Cc: David Vrabel <david.vrabel@csr.com>
> > > Cc: Ben Dooks <ben@fluff.org>
> > > Cc: Sascha Hauer <s.hauer@pengutronix.de>
> > > Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > > Cc: <linux-mmc@vger.kernel.org>
> > > Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> > > ---
> > > 
> > >  arch/powerpc/boot/dts/mpc8536ds.dts |    8 ++++++++
> > >  1 file changed, 8 insertions(+)
> > > 
> > > diff -puN arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards arch/powerpc/boot/dts/mpc8536ds.dts
> > > --- a/arch/powerpc/boot/dts/mpc8536ds.dts~powerpc-85xx-add-esdhc-support-for-mpc8536ds-boards
> > > +++ a/arch/powerpc/boot/dts/mpc8536ds.dts
> > > @@ -258,6 +258,14 @@
> > >  			clock-frequency = <250000000>;
> > >  		};
> > 
> > By "clock-frequency = <250000000>;" above and the one down below*
> > I can see that this patch is already applied (via powerpc tree).
> > 
> > Please don't merge this particular patch, it's already there.
> > 
> > > +		sdhci@2e000 {
> > > +			compatible = "fsl,mpc8536-esdhc", "fsl,esdhc";
> > > +			reg = <0x2e000 0x1000>;
> > > +			interrupts = <72 0x2>;
> > > +			interrupt-parent = <&mpic>;
> > > +			clock-frequency = <250000000>;
> > 
> > *
> > 
> > > +		};
> > > +
> > >  		serial0: serial@4500 {
> > >  			cell-index = <0>;
> > >  			device_type = "serial";
> > > _
> 
> So someone went and stole [patch 7/7] from your series and didn't tell me?

Kumar told that he applied it to his next tree, you were Cc'ed.

http://lkml.org/lkml/2009/8/25/235

Thanks,

-- 
Anton Vorontsov
email: cbouatmailru@gmail.com
irc://irc.freenode.net/bd2

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-09-23  1:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-22 23:45 [patch 084/232] powerpc/85xx: add eSDHC support for MPC8536DS boards akpm
2009-09-23  0:32 ` Anton Vorontsov
2009-09-23  0:56   ` Andrew Morton
2009-09-23  1:16     ` Anton Vorontsov

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.