linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/11] Update support for MPC512x
@ 2010-02-05 13:42 Anatolij Gustschin
  2010-02-05 13:42 ` [PATCH v3 04/11] mtd: Add MPC5121 NAND Flash Controller driver Anatolij Gustschin
  2010-02-09  8:48 ` [PATCH v3 00/11] Update support for MPC512x Anatolij Gustschin
  0 siblings, 2 replies; 8+ messages in thread
From: Anatolij Gustschin @ 2010-02-05 13:42 UTC (permalink / raw)
  To: linuxppc-dev
  Cc: jcrigby, dzu, linux-usb, grant.likely, linux-mtd, rtc-linux,
	Dan Williams, Anatolij Gustschin

The patches are based on v2.6.33-rc6 and cover the following
items:

- platform, DTS
- DMA
- DIU
- UART (without h/w flow control)
- I2C
- NAND
- RTC

The code has been tested on the Freescale/STX "MPC5121ADS" board
(board rev. 4) with a MPC5121e Rev. 2. No attempt was made to provide
backward compatibility to older silicon revisions or older revisions
of the board.

Changes since v2:
 - New cleanup patch added to avoid usage of platform specific
   clock init on non-5121 platforms
 - Comments to v2 patches addressed, detailed changelog is added
   to related patches. As a result there are 11 patches now as
   NAND and USB patches were split.

Changes since v1:
 - MPC5121 FEC support patches are removed from this patch series
   as these were not accepted
 - I2C support path is also removed, the I2C support is addressed
   by another patch series from Wolfgang Grandegger:
       i2c-mpc: add support for the Freescale MPC512x and other fixes
   Appropriate fixes for MPC5121ADS DTS are addressed by DTS patch in
   this patch series
 - Detailed changelog is added to each patch of the series


Anatolij Gustschin (10):
  powerpc/mpc5121: avoid using arch_initcall for clock init
  powerpc/mpc5121: Add machine restart support
  rtc: Add MPC5121 Real time clock driver
  mtd: Add MPC5121 NAND Flash Controller driver
  powerpc/mpc5121: create and register NFC device
  powerpc/fsl_soc.c: prepare for addition of mpc5121 USB code
  powerpc/mpc5121: add USB host support
  powerpc/mpc5121: shared DIU framebuffer support
  powerpc/mpc5121: update mpc5121ads DTS
  powerpc/mpc5121: Add default config for MPC5121

Piotr Ziecik (1):
  dma: Add MPC512x DMA driver

 Documentation/powerpc/dts-bindings/fsl/usb.txt |   22 +
 arch/powerpc/boot/dts/mpc5121ads.dts           |   55 +-
 arch/powerpc/configs/mpc512x_defconfig         | 1694 ++++++++++++++++++++++++
 arch/powerpc/include/asm/mpc5xxx.h             |   14 +-
 arch/powerpc/platforms/512x/Kconfig            |    3 +
 arch/powerpc/platforms/512x/Makefile           |    2 +-
 arch/powerpc/platforms/512x/clock.c            |    5 +-
 arch/powerpc/platforms/512x/mpc5121_ads.c      |   10 +-
 arch/powerpc/platforms/512x/mpc5121_generic.c  |   15 +-
 arch/powerpc/platforms/512x/mpc5121_usb.c      |  138 ++
 arch/powerpc/platforms/512x/mpc512x.h          |    7 +
 arch/powerpc/platforms/512x/mpc512x_shared.c   |  331 +++++
 arch/powerpc/sysdev/fsl_soc.c                  |  230 ++--
 arch/powerpc/sysdev/fsl_soc.h                  |   10 +
 drivers/dma/Kconfig                            |    7 +
 drivers/dma/Makefile                           |    1 +
 drivers/dma/mpc512x_dma.c                      |  800 +++++++++++
 drivers/mtd/nand/Kconfig                       |    7 +
 drivers/mtd/nand/Makefile                      |    1 +
 drivers/mtd/nand/mpc5121_nfc.c                 |  916 +++++++++++++
 drivers/rtc/Kconfig                            |   10 +
 drivers/rtc/Makefile                           |    1 +
 drivers/rtc/rtc-mpc5121.c                      |  387 ++++++
 drivers/usb/host/ehci-fsl.c                    |  111 ++-
 drivers/usb/host/ehci-fsl.h                    |   19 +-
 drivers/usb/host/ehci-mem.c                    |    2 +-
 drivers/video/fsl-diu-fb.c                     |   40 +-
 {drivers/video => include/linux}/fsl-diu-fb.h  |    0
 include/linux/fsl_devices.h                    |   10 +
 29 files changed, 4661 insertions(+), 187 deletions(-)
 create mode 100644 arch/powerpc/configs/mpc512x_defconfig
 create mode 100644 arch/powerpc/platforms/512x/mpc5121_usb.c
 create mode 100644 drivers/dma/mpc512x_dma.c
 create mode 100644 drivers/mtd/nand/mpc5121_nfc.c
 create mode 100644 drivers/rtc/rtc-mpc5121.c
 rename {drivers/video => include/linux}/fsl-diu-fb.h (100%)

Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: John Rigby <jcrigby@gmail.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: <rtc-linux@googlegroups.com>
Cc: <linux-mtd@lists.infradead.org>
Cc: <linux-usb@vger.kernel.org>

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

end of thread, other threads:[~2010-03-30 13:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-05 13:42 [PATCH v3 00/11] Update support for MPC512x Anatolij Gustschin
2010-02-05 13:42 ` [PATCH v3 04/11] mtd: Add MPC5121 NAND Flash Controller driver Anatolij Gustschin
2010-02-10  2:42   ` Grant Likely
2010-03-30 13:15     ` Artem Bityutskiy
2010-02-15 17:35   ` [PATCH v4 " Anatolij Gustschin
2010-02-16  8:11     ` Artem Bityutskiy
2010-02-23 15:54       ` Kári Davíðsson
2010-02-09  8:48 ` [PATCH v3 00/11] Update support for MPC512x Anatolij Gustschin

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