linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* Please pull mpc52xx-next
@ 2008-07-26  4:00 Grant Likely
  2008-07-27 21:48 ` Grant Likely
  0 siblings, 1 reply; 8+ messages in thread
From: Grant Likely @ 2008-07-26  4:00 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, linuxppc-dev, Paul Mackerras

Hey Ben, here are a few more patches for .27.  I would have had this
stuff in earlier, but they depended on another patch that I didn't
feel like I should push that was in Andrew's queue.

Thanks,
g.

The following changes since commit 1ff8419871ea757ae0298aa296bcff9b2ca48561:
  Linus Torvalds (1):
        Merge git://git.kernel.org/.../davem/net-2.6

are available in the git repository at:

  git://git.secretlab.ca/git/linux-2.6-mpc52xx.git next

Grant Likely (4):
      of: adapt of_find_i2c_driver() to be usable by SPI also
      spi: split up spi_new_device() to allow two stage registration.
      spi: Add OF binding support for SPI busses
      powerpc/mpc5200: Add mpc5200-spi (non-PSC) device driver

 drivers/of/Kconfig              |    6 +
 drivers/of/Makefile             |    1 +
 drivers/of/base.c               |   88 ++++++
 drivers/of/of_i2c.c             |   64 +----
 drivers/of/of_spi.c             |   93 ++++++
 drivers/spi/Kconfig             |    8 +
 drivers/spi/Makefile            |    1 +
 drivers/spi/mpc52xx_spi.c       |  602 +++++++++++++++++++++++++++++++++++++++
 drivers/spi/spi.c               |  139 ++++++---
 include/linux/of.h              |    1 +
 include/linux/of_spi.h          |   18 ++
 include/linux/spi/mpc52xx_spi.h |   10 +
 include/linux/spi/spi.h         |   12 +
 13 files changed, 938 insertions(+), 105 deletions(-)
 create mode 100644 drivers/of/of_spi.c
 create mode 100644 drivers/spi/mpc52xx_spi.c
 create mode 100644 include/linux/of_spi.h
 create mode 100644 include/linux/spi/mpc52xx_spi.h


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* Re: Please pull mpc52xx-next
  2008-07-26  4:00 Grant Likely
@ 2008-07-27 21:48 ` Grant Likely
  2008-07-28  4:24   ` Grant Likely
  0 siblings, 1 reply; 8+ messages in thread
From: Grant Likely @ 2008-07-27 21:48 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, linuxppc-dev, Paul Mackerras

On Fri, Jul 25, 2008 at 10:00 PM, Grant Likely
<grant.likely@secretlab.ca> wrote:
> Hey Ben, here are a few more patches for .27.  I would have had this
> stuff in earlier, but they depended on another patch that I didn't
> feel like I should push that was in Andrew's queue.
>
> Grant Likely (4):
>      of: adapt of_find_i2c_driver() to be usable by SPI also
>      spi: split up spi_new_device() to allow two stage registration.
>      spi: Add OF binding support for SPI busses
>      powerpc/mpc5200: Add mpc5200-spi (non-PSC) device driver

Oops, I shouldn't have merged this last one.  Please don't pull this
tree yet.  I'll fix it up this evening.

g.

-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* Re: Please pull mpc52xx-next
  2008-07-27 21:48 ` Grant Likely
@ 2008-07-28  4:24   ` Grant Likely
  0 siblings, 0 replies; 8+ messages in thread
From: Grant Likely @ 2008-07-28  4:24 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, linuxppc-dev, Paul Mackerras

On Sun, Jul 27, 2008 at 3:48 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
> On Fri, Jul 25, 2008 at 10:00 PM, Grant Likely
> <grant.likely@secretlab.ca> wrote:
>> Hey Ben, here are a few more patches for .27.  I would have had this
>> stuff in earlier, but they depended on another patch that I didn't
>> feel like I should push that was in Andrew's queue.
>>
>> Grant Likely (4):
>>      of: adapt of_find_i2c_driver() to be usable by SPI also
>>      spi: split up spi_new_device() to allow two stage registration.
>>      spi: Add OF binding support for SPI busses
>>      powerpc/mpc5200: Add mpc5200-spi (non-PSC) device driver
>
> Oops, I shouldn't have merged this last one.  Please don't pull this
> tree yet.  I'll fix it up this evening.

Okay, I've got it sorted out now.  Here is the new pull request:

The following changes since commit 024e8ac04453b3525448c31ef39848cf675ba6db:
  Roland McGrath (1):
        x86_64: fix ia32 AMD syscall audit fast-path

are available in the git repository at:

  git://git.secretlab.ca/git/linux-2.6-mpc52xx next

Grant Likely (3):
      of: adapt of_find_i2c_driver() to be usable by SPI also
      spi: split up spi_new_device() to allow two stage registration.
      spi: Add OF binding support for SPI busses

 drivers/of/Kconfig      |    6 ++
 drivers/of/Makefile     |    1 +
 drivers/of/base.c       |   88 ++++++++++++++++++++++++++++++
 drivers/of/of_i2c.c     |   64 +---------------------
 drivers/of/of_spi.c     |   93 +++++++++++++++++++++++++++++++
 drivers/spi/spi.c       |  139 ++++++++++++++++++++++++++++++++---------------
 include/linux/of.h      |    1 +
 include/linux/of_spi.h  |   18 ++++++
 include/linux/spi/spi.h |   12 ++++
 9 files changed, 317 insertions(+), 105 deletions(-)
 create mode 100644 drivers/of/of_spi.c
 create mode 100644 include/linux/of_spi.h

-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* Please pull mpc52xx-next
@ 2009-03-06 18:08 Grant Likely
  2009-03-09 23:46 ` Michael Neuling
  0 siblings, 1 reply; 8+ messages in thread
From: Grant Likely @ 2009-03-06 18:08 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, linuxppc-dev

Hey Ben,

Here are some more for -next.

The following changes since commit 652e8f8d579d61745094e36b4ff085026a332e73:
  Benjamin Herrenschmidt (1):
        Merge commit 'jwb/next' into next

are available in the git repository at:

  git://git.secretlab.ca/git/linux-2.6-mpc52xx next

Grant Likely (2):
      powerpc/5200: Add 'simple-bus' to the of_platform probe list.
      powerpc/4xx: update ml507 .dts file to release reference design

Grzegorz Bernacki (2):
      powerpc/5200: Add digsy-mtc support to mpc5200_defconfig
      powerpc/5200: On the digsy-mtc, configure PSC4 and PSC5 as UARTs

 arch/powerpc/boot/dts/digsy_mtc.dts          |   12 ++--
 arch/powerpc/boot/dts/virtex440-ml507.dts    |  124 +++++++++++++++++++++++---
 arch/powerpc/configs/mpc5200_defconfig       |   71 +++++++++++++--
 arch/powerpc/platforms/52xx/mpc52xx_common.c |    3 +-
 4 files changed, 184 insertions(+), 26 deletions(-)


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* Re: Please pull mpc52xx-next
  2009-03-06 18:08 Please pull mpc52xx-next Grant Likely
@ 2009-03-09 23:46 ` Michael Neuling
  2009-03-10  0:14   ` Grant Likely
  0 siblings, 1 reply; 8+ messages in thread
From: Michael Neuling @ 2009-03-09 23:46 UTC (permalink / raw)
  To: Grant Likely; +Cc: linuxppc-dev

> Hey Ben,
> 
> Here are some more for -next.
> 
> The following changes since commit 652e8f8d579d61745094e36b4ff085026a332e73:
>   Benjamin Herrenschmidt (1):
>         Merge commit 'jwb/next' into next
> 
> are available in the git repository at:
> 
>   git://git.secretlab.ca/git/linux-2.6-mpc52xx next

Grant, 

Can you grab this guy too?

http://patchwork.ozlabs.org/patch/24082/

Mikey

> 
> Grant Likely (2):
>       powerpc/5200: Add 'simple-bus' to the of_platform probe list.
>       powerpc/4xx: update ml507 .dts file to release reference design
> 
> Grzegorz Bernacki (2):
>       powerpc/5200: Add digsy-mtc support to mpc5200_defconfig
>       powerpc/5200: On the digsy-mtc, configure PSC4 and PSC5 as UARTs
> 
>  arch/powerpc/boot/dts/digsy_mtc.dts          |   12 ++--
>  arch/powerpc/boot/dts/virtex440-ml507.dts    |  124 +++++++++++++++++++++++-
--
>  arch/powerpc/configs/mpc5200_defconfig       |   71 +++++++++++++--
>  arch/powerpc/platforms/52xx/mpc52xx_common.c |    3 +-
>  4 files changed, 184 insertions(+), 26 deletions(-)
> 
> 
> -- 
> Grant Likely, B.Sc., P.Eng.
> Secret Lab Technologies Ltd.
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
> 

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

* Re: Please pull mpc52xx-next
  2009-03-09 23:46 ` Michael Neuling
@ 2009-03-10  0:14   ` Grant Likely
  2009-03-10  0:16     ` Michael Neuling
  0 siblings, 1 reply; 8+ messages in thread
From: Grant Likely @ 2009-03-10  0:14 UTC (permalink / raw)
  To: Michael Neuling; +Cc: linuxppc-dev

Hey Mikey,

On Mon, Mar 9, 2009 at 5:46 PM, Michael Neuling <mikey@neuling.org> wrote:
> Grant,
>
> Can you grab this guy too?
>
> http://patchwork.ozlabs.org/patch/24082/

Oops, forgot to email you about this one.  I actually wrote another
patch the eliminates the sysfs attributes entirely which also
eliminates the problem.  It will be in my next pull request to Ben
(any day now; just waiting for an ack on another patch).

g.


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* Re: Please pull mpc52xx-next
  2009-03-10  0:14   ` Grant Likely
@ 2009-03-10  0:16     ` Michael Neuling
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Neuling @ 2009-03-10  0:16 UTC (permalink / raw)
  To: Grant Likely; +Cc: linuxppc-dev

> > Grant,
> >
> > Can you grab this guy too?
> >
> > http://patchwork.ozlabs.org/patch/24082/
> 
> Oops, forgot to email you about this one.  I actually wrote another
> patch the eliminates the sysfs attributes entirely which also
> eliminates the problem.  It will be in my next pull request to Ben
> (any day now; just waiting for an ack on another patch).

OK, sounds good.

Mikey

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

* Please pull mpc52xx-next
@ 2009-03-11 16:12 Grant Likely
  0 siblings, 0 replies; 8+ messages in thread
From: Grant Likely @ 2009-03-11 16:12 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, linuxppc-dev

Hey Ben, here's another -next pull request.  I think this exhausts
everything in my queue.  I'm sure someone will tell me if I've missed
anything.  I'll update patchwork later today.

One commit is outside of arch/powerpc, but it is a xilinx-only change
to an SPI driver, and David has acked it.

Cheers,
g.

The following changes since commit e7eec2fc27d7dbefd5852c36b3fe6229e6302c99:
  roel kluin (1):
        powerpc/ps3: Make ps3av_set_video_mode mode ID signed

are available in the git repository at:

  git://git.secretlab.ca/git/linux-2.6-mpc52xx next

Grant Likely (2):
      powerpc/5200: remove sysfs debug file from GPT driver
      powerpc/bootwrapper: add fixed-head.o to simpleimage wrappers

John Linn (1):
      powerpc/virtex/spi: Xilinx SPI driver not releasing memory

Wolfgang Grandegger (1):
      powerpc/5200: add function to return external clock frequency

Wolfram Sang (1):
      powerpc/5200: add Phytec phyCORE-MPC5200B-IO board (pcm032)

 arch/powerpc/boot/dts/pcm032.dts             |  392 ++++++++++++++++++++++++++
 arch/powerpc/boot/wrapper                    |    4 +-
 arch/powerpc/include/asm/mpc52xx.h           |    1 +
 arch/powerpc/platforms/52xx/Kconfig          |    1 +
 arch/powerpc/platforms/52xx/mpc5200_simple.c |    3 +-
 arch/powerpc/platforms/52xx/mpc52xx_common.c |   37 +++
 arch/powerpc/platforms/52xx/mpc52xx_gpt.c    |   39 ---
 drivers/spi/xilinx_spi.c                     |    9 +-
 8 files changed, 442 insertions(+), 44 deletions(-)
 create mode 100644 arch/powerpc/boot/dts/pcm032.dts


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

end of thread, other threads:[~2009-03-11 16:12 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-06 18:08 Please pull mpc52xx-next Grant Likely
2009-03-09 23:46 ` Michael Neuling
2009-03-10  0:14   ` Grant Likely
2009-03-10  0:16     ` Michael Neuling
  -- strict thread matches above, loose matches on Subject: below --
2009-03-11 16:12 Grant Likely
2008-07-26  4:00 Grant Likely
2008-07-27 21:48 ` Grant Likely
2008-07-28  4:24   ` 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).