linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ARM i.MX SPI driver changes for i.MX53 support
@ 2011-01-11  9:21 yong.shen-KZfg59tc24xl57MIdRCFDg
       [not found] ` <1294737713-24015-1-git-send-email-yong.shen-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: yong.shen-KZfg59tc24xl57MIdRCFDg @ 2011-01-11  9:21 UTC (permalink / raw)
  To: yong.shen-QSEj5FYQhm4dnm+yROfE0A,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f


resend this to include spi-devel list.


------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 

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

* [PATCH] ARM i.MX SPI driver changes for i.MX53 support
       [not found] ` <1294737713-24015-1-git-send-email-yong.shen-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
@ 2011-01-11  9:21   ` yong.shen-KZfg59tc24xl57MIdRCFDg
  2011-01-13  3:01     ` Yong Shen
  0 siblings, 1 reply; 6+ messages in thread
From: yong.shen-KZfg59tc24xl57MIdRCFDg @ 2011-01-11  9:21 UTC (permalink / raw)
  To: yong.shen-QSEj5FYQhm4dnm+yROfE0A,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
  Cc: Yong Shen

From: Yong Shen <yong.shen-KZfg59tc24xl57MIdRCFDg@public.gmane.org>

1. Change the Kconfig to include i.MX53
2. add devtype entry for i.MX53

Signed-off-by: Yong Shen <yong.shen-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
Acked-by: Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
---
 drivers/spi/Kconfig   |    4 ++--
 drivers/spi/spi_imx.c |    6 ++++++
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
index 78f9fd0..04965e2 100644
--- a/drivers/spi/Kconfig
+++ b/drivers/spi/Kconfig
@@ -153,10 +153,10 @@ config SPI_IMX_VER_0_4
 	def_bool y if ARCH_MX31
 
 config SPI_IMX_VER_0_7
-	def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51
+	def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51 || ARCH_MX53
 
 config SPI_IMX_VER_2_3
-	def_bool y if ARCH_MX51
+	def_bool y if ARCH_MX51 || ARCH_MX53
 
 config SPI_IMX
 	tristate "Freescale i.MX SPI controllers"
diff --git a/drivers/spi/spi_imx.c b/drivers/spi/spi_imx.c
index 55a38e2..9b8a733 100644
--- a/drivers/spi/spi_imx.c
+++ b/drivers/spi/spi_imx.c
@@ -747,6 +747,12 @@ static struct platform_device_id spi_imx_devtype[] = {
 		.name = "imx51-ecspi",
 		.driver_data = SPI_IMX_VER_2_3,
 	}, {
+		.name = "imx53-cspi",
+		.driver_data = SPI_IMX_VER_0_7,
+	}, {
+		.name = "imx53-ecspi",
+		.driver_data = SPI_IMX_VER_2_3,
+	}, {
 		/* sentinel */
 	}
 };
-- 
1.7.1



------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 

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

* Re: [PATCH] ARM i.MX SPI driver changes for i.MX53 support
  2011-01-11  9:21   ` [PATCH] " yong.shen-KZfg59tc24xl57MIdRCFDg
@ 2011-01-13  3:01     ` Yong Shen
  2011-01-13  3:05       ` Grant Likely
  0 siblings, 1 reply; 6+ messages in thread
From: Yong Shen @ 2011-01-13  3:01 UTC (permalink / raw)
  To: yong.shen; +Cc: spi-devel-general, linux-arm-kernel

Seems no comments from spi-devel list. This patch is also:
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Who will take this patch into a tree?

Yong

On Tue, Jan 11, 2011 at 5:21 PM,  <yong.shen@freescale.com> wrote:
> From: Yong Shen <yong.shen@freescale.com>
>
> 1. Change the Kconfig to include i.MX53
> 2. add devtype entry for i.MX53
>
> Signed-off-by: Yong Shen <yong.shen@freescale.com>
> Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
>  drivers/spi/Kconfig   |    4 ++--
>  drivers/spi/spi_imx.c |    6 ++++++
>  2 files changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
> index 78f9fd0..04965e2 100644
> --- a/drivers/spi/Kconfig
> +++ b/drivers/spi/Kconfig
> @@ -153,10 +153,10 @@ config SPI_IMX_VER_0_4
>        def_bool y if ARCH_MX31
>
>  config SPI_IMX_VER_0_7
> -       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51
> +       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51 || ARCH_MX53
>
>  config SPI_IMX_VER_2_3
> -       def_bool y if ARCH_MX51
> +       def_bool y if ARCH_MX51 || ARCH_MX53
>
>  config SPI_IMX
>        tristate "Freescale i.MX SPI controllers"
> diff --git a/drivers/spi/spi_imx.c b/drivers/spi/spi_imx.c
> index 55a38e2..9b8a733 100644
> --- a/drivers/spi/spi_imx.c
> +++ b/drivers/spi/spi_imx.c
> @@ -747,6 +747,12 @@ static struct platform_device_id spi_imx_devtype[] = {
>                .name = "imx51-ecspi",
>                .driver_data = SPI_IMX_VER_2_3,
>        }, {
> +               .name = "imx53-cspi",
> +               .driver_data = SPI_IMX_VER_0_7,
> +       }, {
> +               .name = "imx53-ecspi",
> +               .driver_data = SPI_IMX_VER_2_3,
> +       }, {
>                /* sentinel */
>        }
>  };
> --
> 1.7.1
>
>
>

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

* Re: [PATCH] ARM i.MX SPI driver changes for i.MX53 support
  2011-01-13  3:01     ` Yong Shen
@ 2011-01-13  3:05       ` Grant Likely
  2011-01-13  3:12         ` Yong Shen
  0 siblings, 1 reply; 6+ messages in thread
From: Grant Likely @ 2011-01-13  3:05 UTC (permalink / raw)
  To: Yong Shen; +Cc: spi-devel-general, yong.shen, linux-arm-kernel

On Thu, Jan 13, 2011 at 11:01:44AM +0800, Yong Shen wrote:
> Seems no comments from spi-devel list. This patch is also:
> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> 
> Who will take this patch into a tree?

Patience Yong.  You only posted it two days ago.  It takes time for
people to notice and respond some times.

Normally, I wouldn't pick up a patch in the middle of the merge
window, but this is pretty trivial, so I'll bend the rules this time.

g.

> 
> Yong
> 
> On Tue, Jan 11, 2011 at 5:21 PM,  <yong.shen@freescale.com> wrote:
> > From: Yong Shen <yong.shen@freescale.com>
> >
> > 1. Change the Kconfig to include i.MX53
> > 2. add devtype entry for i.MX53
> >
> > Signed-off-by: Yong Shen <yong.shen@freescale.com>
> > Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
> > ---
> >  drivers/spi/Kconfig   |    4 ++--
> >  drivers/spi/spi_imx.c |    6 ++++++
> >  2 files changed, 8 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
> > index 78f9fd0..04965e2 100644
> > --- a/drivers/spi/Kconfig
> > +++ b/drivers/spi/Kconfig
> > @@ -153,10 +153,10 @@ config SPI_IMX_VER_0_4
> >        def_bool y if ARCH_MX31
> >
> >  config SPI_IMX_VER_0_7
> > -       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51
> > +       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51 || ARCH_MX53
> >
> >  config SPI_IMX_VER_2_3
> > -       def_bool y if ARCH_MX51
> > +       def_bool y if ARCH_MX51 || ARCH_MX53
> >
> >  config SPI_IMX
> >        tristate "Freescale i.MX SPI controllers"
> > diff --git a/drivers/spi/spi_imx.c b/drivers/spi/spi_imx.c
> > index 55a38e2..9b8a733 100644
> > --- a/drivers/spi/spi_imx.c
> > +++ b/drivers/spi/spi_imx.c
> > @@ -747,6 +747,12 @@ static struct platform_device_id spi_imx_devtype[] = {
> >                .name = "imx51-ecspi",
> >                .driver_data = SPI_IMX_VER_2_3,
> >        }, {
> > +               .name = "imx53-cspi",
> > +               .driver_data = SPI_IMX_VER_0_7,
> > +       }, {
> > +               .name = "imx53-ecspi",
> > +               .driver_data = SPI_IMX_VER_2_3,
> > +       }, {
> >                /* sentinel */
> >        }
> >  };
> > --
> > 1.7.1
> >
> >
> >
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] ARM i.MX SPI driver changes for i.MX53 support
  2011-01-13  3:05       ` Grant Likely
@ 2011-01-13  3:12         ` Yong Shen
  2011-01-13  3:16           ` Grant Likely
  0 siblings, 1 reply; 6+ messages in thread
From: Yong Shen @ 2011-01-13  3:12 UTC (permalink / raw)
  To: Grant Likely; +Cc: spi-devel-general, yong.shen, linux-arm-kernel

Thanks Grant. I am not asking somebody to merge it right now. I just
wonder who will take it, since maintainers change from time to time.

Yong

On Thu, Jan 13, 2011 at 11:05 AM, Grant Likely
<grant.likely@secretlab.ca> wrote:
> On Thu, Jan 13, 2011 at 11:01:44AM +0800, Yong Shen wrote:
>> Seems no comments from spi-devel list. This patch is also:
>> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
>>
>> Who will take this patch into a tree?
>
> Patience Yong.  You only posted it two days ago.  It takes time for
> people to notice and respond some times.
>
> Normally, I wouldn't pick up a patch in the middle of the merge
> window, but this is pretty trivial, so I'll bend the rules this time.
>
> g.
>
>>
>> Yong
>>
>> On Tue, Jan 11, 2011 at 5:21 PM,  <yong.shen@freescale.com> wrote:
>> > From: Yong Shen <yong.shen@freescale.com>
>> >
>> > 1. Change the Kconfig to include i.MX53
>> > 2. add devtype entry for i.MX53
>> >
>> > Signed-off-by: Yong Shen <yong.shen@freescale.com>
>> > Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
>> > ---
>> >  drivers/spi/Kconfig   |    4 ++--
>> >  drivers/spi/spi_imx.c |    6 ++++++
>> >  2 files changed, 8 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
>> > index 78f9fd0..04965e2 100644
>> > --- a/drivers/spi/Kconfig
>> > +++ b/drivers/spi/Kconfig
>> > @@ -153,10 +153,10 @@ config SPI_IMX_VER_0_4
>> >        def_bool y if ARCH_MX31
>> >
>> >  config SPI_IMX_VER_0_7
>> > -       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51
>> > +       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51 || ARCH_MX53
>> >
>> >  config SPI_IMX_VER_2_3
>> > -       def_bool y if ARCH_MX51
>> > +       def_bool y if ARCH_MX51 || ARCH_MX53
>> >
>> >  config SPI_IMX
>> >        tristate "Freescale i.MX SPI controllers"
>> > diff --git a/drivers/spi/spi_imx.c b/drivers/spi/spi_imx.c
>> > index 55a38e2..9b8a733 100644
>> > --- a/drivers/spi/spi_imx.c
>> > +++ b/drivers/spi/spi_imx.c
>> > @@ -747,6 +747,12 @@ static struct platform_device_id spi_imx_devtype[] = {
>> >                .name = "imx51-ecspi",
>> >                .driver_data = SPI_IMX_VER_2_3,
>> >        }, {
>> > +               .name = "imx53-cspi",
>> > +               .driver_data = SPI_IMX_VER_0_7,
>> > +       }, {
>> > +               .name = "imx53-ecspi",
>> > +               .driver_data = SPI_IMX_VER_2_3,
>> > +       }, {
>> >                /* sentinel */
>> >        }
>> >  };
>> > --
>> > 1.7.1
>> >
>> >
>> >
>>
>> _______________________________________________
>> linux-arm-kernel mailing list
>> linux-arm-kernel@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>

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

* Re: [PATCH] ARM i.MX SPI driver changes for i.MX53 support
  2011-01-13  3:12         ` Yong Shen
@ 2011-01-13  3:16           ` Grant Likely
  0 siblings, 0 replies; 6+ messages in thread
From: Grant Likely @ 2011-01-13  3:16 UTC (permalink / raw)
  To: Yong Shen; +Cc: spi-devel-general, yong.shen, linux-arm-kernel

On Thu, Jan 13, 2011 at 11:12:07AM +0800, Yong Shen wrote:
> Thanks Grant. I am not asking somebody to merge it right now. I just
> wonder who will take it, since maintainers change from time to time.

Okay.  :-)  For spi stuff, I usually apply it to my tree, unless it
has dependencies on stuff in someone else's tree.  At the very least
spi patches must have either my or David Gibson's ack.

g.

> 
> Yong
> 
> On Thu, Jan 13, 2011 at 11:05 AM, Grant Likely
> <grant.likely@secretlab.ca> wrote:
> > On Thu, Jan 13, 2011 at 11:01:44AM +0800, Yong Shen wrote:
> >> Seems no comments from spi-devel list. This patch is also:
> >> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> >>
> >> Who will take this patch into a tree?
> >
> > Patience Yong.  You only posted it two days ago.  It takes time for
> > people to notice and respond some times.
> >
> > Normally, I wouldn't pick up a patch in the middle of the merge
> > window, but this is pretty trivial, so I'll bend the rules this time.
> >
> > g.
> >
> >>
> >> Yong
> >>
> >> On Tue, Jan 11, 2011 at 5:21 PM,  <yong.shen@freescale.com> wrote:
> >> > From: Yong Shen <yong.shen@freescale.com>
> >> >
> >> > 1. Change the Kconfig to include i.MX53
> >> > 2. add devtype entry for i.MX53
> >> >
> >> > Signed-off-by: Yong Shen <yong.shen@freescale.com>
> >> > Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
> >> > ---
> >> >  drivers/spi/Kconfig   |    4 ++--
> >> >  drivers/spi/spi_imx.c |    6 ++++++
> >> >  2 files changed, 8 insertions(+), 2 deletions(-)
> >> >
> >> > diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
> >> > index 78f9fd0..04965e2 100644
> >> > --- a/drivers/spi/Kconfig
> >> > +++ b/drivers/spi/Kconfig
> >> > @@ -153,10 +153,10 @@ config SPI_IMX_VER_0_4
> >> >        def_bool y if ARCH_MX31
> >> >
> >> >  config SPI_IMX_VER_0_7
> >> > -       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51
> >> > +       def_bool y if ARCH_MX25 || ARCH_MX35 || ARCH_MX51 || ARCH_MX53
> >> >
> >> >  config SPI_IMX_VER_2_3
> >> > -       def_bool y if ARCH_MX51
> >> > +       def_bool y if ARCH_MX51 || ARCH_MX53
> >> >
> >> >  config SPI_IMX
> >> >        tristate "Freescale i.MX SPI controllers"
> >> > diff --git a/drivers/spi/spi_imx.c b/drivers/spi/spi_imx.c
> >> > index 55a38e2..9b8a733 100644
> >> > --- a/drivers/spi/spi_imx.c
> >> > +++ b/drivers/spi/spi_imx.c
> >> > @@ -747,6 +747,12 @@ static struct platform_device_id spi_imx_devtype[] = {
> >> >                .name = "imx51-ecspi",
> >> >                .driver_data = SPI_IMX_VER_2_3,
> >> >        }, {
> >> > +               .name = "imx53-cspi",
> >> > +               .driver_data = SPI_IMX_VER_0_7,
> >> > +       }, {
> >> > +               .name = "imx53-ecspi",
> >> > +               .driver_data = SPI_IMX_VER_2_3,
> >> > +       }, {
> >> >                /* sentinel */
> >> >        }
> >> >  };
> >> > --
> >> > 1.7.1
> >> >
> >> >
> >> >
> >>
> >> _______________________________________________
> >> linux-arm-kernel mailing list
> >> linux-arm-kernel@lists.infradead.org
> >> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> >

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

end of thread, other threads:[~2011-01-13  3:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-11  9:21 ARM i.MX SPI driver changes for i.MX53 support yong.shen-KZfg59tc24xl57MIdRCFDg
     [not found] ` <1294737713-24015-1-git-send-email-yong.shen-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2011-01-11  9:21   ` [PATCH] " yong.shen-KZfg59tc24xl57MIdRCFDg
2011-01-13  3:01     ` Yong Shen
2011-01-13  3:05       ` Grant Likely
2011-01-13  3:12         ` Yong Shen
2011-01-13  3:16           ` Grant Likely

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).