Ben, here's an updated pull request. Can you please pull and send them up to Linus?
I've added 4 more commits related to the 5200 GPT timer. These commits have also have linux-next exposure, I just had them in the wrong branch. One commit touches drivers/watchdog, but I got an ack from Wim to merge it. Cheers, g. The following changes since commit 22763c5cf3690a681551162c15d34d935308c8d7: Linus Torvalds (1): Linux 2.6.32 are available in the git repository at: git://git.secretlab.ca/git/linux-2.6 next Albrecht Dreß (5): powerpc: tiny memcpy_(to|from)io optimisation mpc5200/gpt: tiny fix for gpt period limitation mpc52xx/wdt: OF property to enable the WDT on boot mpc52xx/wdt: merge WDT code into the GPT driver mpc52xx/wdt: remove obsolete old WDT implementation Grant Likely (4): spi/mpc5200: Register SPI devices described in device tree powerpc/5200: Add mpc5200-spi (non-PSC) device driver powerpc/5200: add general purpose timer API for the MPC5200 mmc: fix missing module license declaration in of_mmc_spi.c John Bonesio (1): powerpc/5200: add LocalPlus bus FIFO device driver John Linn (1): Xilinx: SPI: Fix bits_per_word for transfers Wolfram Sang (2): spi/mpc52xx-psc-spi: check for valid PSC spi/mpc52xx: replace printk with dev_err Documentation/powerpc/dts-bindings/fsl/mpc5200.txt | 17 +- arch/powerpc/include/asm/mpc52xx.h | 47 ++ arch/powerpc/kernel/io.c | 4 +- arch/powerpc/platforms/52xx/Kconfig | 5 + arch/powerpc/platforms/52xx/Makefile | 1 + arch/powerpc/platforms/52xx/mpc52xx_gpt.c | 428 +++++++++++++++- arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c | 560 ++++++++++++++++++++ drivers/mmc/host/of_mmc_spi.c | 2 + drivers/spi/Kconfig | 8 + drivers/spi/Makefile | 1 + drivers/spi/mpc52xx_psc_spi.c | 25 +- drivers/spi/mpc52xx_spi.c | 520 ++++++++++++++++++ drivers/spi/xilinx_spi.c | 3 +- drivers/watchdog/Kconfig | 4 +- drivers/watchdog/Makefile | 1 - drivers/watchdog/mpc5200_wdt.c | 293 ---------- include/linux/spi/mpc52xx_spi.h | 10 + 17 files changed, 1609 insertions(+), 320 deletions(-) create mode 100644 arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c create mode 100644 drivers/spi/mpc52xx_spi.c delete mode 100644 drivers/watchdog/mpc5200_wdt.c create mode 100644 include/linux/spi/mpc52xx_spi.h On Tue, Dec 8, 2009 at 2:33 PM, Grant Likely <grant.lik...@secretlab.ca> wrote: > On Wed, Nov 4, 2009 at 11:10 PM, Grant Likely <grant.lik...@secretlab.ca> > wrote: >> Hi Ben, Stephen. >> >> I just prepared my next branch for 2.6.33: >> git://git.secretlab.ca/git/linux-2.6 next >> >> Steven, can you please add this tree to your linux-next pull list? >> This is the branch where I put stuff that gets fed up to Ben. This is >> separate from the branch that I'm using to collect OF related changes >> and that you are already pulling in. >> >> Ben, can you please pull this branch into your -next tree for 2.6.33? > > Ben: ping? > > Are you able to pull this tree, or should I ask Linus to pull it directly? > > It contains mpc5200 and xilinx stuff. Some of it is SPI related, but > I'm now the SPI co-maintainer, so I have no problem with it going in > via your tree. :-) Regardless, I want to get it out to Linus ASAP. > > This tree has also been in linux-next for a while now, so it should be > a safe pull. > > Thanks, > g. > >> Andrew & David, you'll notice that I've also got some SPI and MMC >> changes in this branch (PPC and OF related stuff) since there is no >> current MMC maintainer, and some of these SPI patches have been >> hanging around for a while now. Let me know if you object to me >> pushing these changes personally instead of going through another >> maintainer. >> >> Thanks, >> g. >> >> The following changes since commit b419148e567728f6af0c3b01965c1cc141e3e13a: >> Linus Torvalds (1): >> Linux 2.6.32-rc6 >> >> are available in the git repository at: >> >> git://git.secretlab.ca/git/linux-2.6 next >> >> Albrecht Dreß (1): >> powerpc: tiny memcpy_(to|from)io optimisation >> >> Grant Likely (4): >> spi/mpc5200: Register SPI devices described in device tree >> powerpc/5200: Add mpc5200-spi (non-PSC) device driver >> powerpc/5200: add general purpose timer API for the MPC5200 >> mmc: fix missing module license declaration in of_mmc_spi.c >> >> John Bonesio (1): >> powerpc/5200: add LocalPlus bus FIFO device driver >> >> John Linn (1): >> Xilinx: SPI: Fix bits_per_word for transfers >> >> Wolfram Sang (2): >> spi/mpc52xx-psc-spi: check for valid PSC >> spi/mpc52xx: replace printk with dev_err >> >> arch/powerpc/include/asm/mpc52xx.h | 46 ++ >> arch/powerpc/kernel/io.c | 4 +- >> arch/powerpc/platforms/52xx/Kconfig | 5 + >> arch/powerpc/platforms/52xx/Makefile | 1 + >> arch/powerpc/platforms/52xx/mpc52xx_gpt.c | 133 ++++++- >> arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c | 560 >> +++++++++++++++++++++++++ >> drivers/mmc/host/of_mmc_spi.c | 2 + >> drivers/spi/Kconfig | 8 + >> drivers/spi/Makefile | 1 + >> drivers/spi/mpc52xx_psc_spi.c | 25 +- >> drivers/spi/mpc52xx_spi.c | 520 +++++++++++++++++++++++ >> drivers/spi/xilinx_spi.c | 3 +- >> include/linux/spi/mpc52xx_spi.h | 10 + >> 13 files changed, 1297 insertions(+), 21 deletions(-) >> create mode 100644 arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c >> create mode 100644 drivers/spi/mpc52xx_spi.c >> create mode 100644 include/linux/spi/mpc52xx_spi.h >> >> >> -- >> Grant Likely, B.Sc., P.Eng. >> Secret Lab Technologies Ltd. >> > > > > -- > Grant Likely, B.Sc., P.Eng. > Secret Lab Technologies Ltd. > -- Grant Likely, B.Sc., P.Eng. Secret Lab Technologies Ltd. _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev