public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH-V3 0/8] Add support for i.MX25 SOC and KARO TX25 board
@ 2010-01-26  6:12 John Rigby
  2010-01-26  6:12 ` [U-Boot] [PATCH V3 1/8] mxc_serial replace platform specific clock John Rigby
  0 siblings, 1 reply; 18+ messages in thread
From: John Rigby @ 2010-01-26  6:12 UTC (permalink / raw)
  To: u-boot

This series has been updated to merge cleanly on top
of Scotts nand tree which had earlier mxc nand conflicts

The whole series is included for completeness even though
most patches have not changed.

Changes since v2:

 0001-mxc_serial-replace-platform-specific-clock.patch
    unchanged
 0002-arm926ejs-add-nand_spl-boot-support.patch
    unchanged
 0003-Add-MX25-support-to-nand_spl-fsl-nfc-driver.patch
    unchanged
 0004-Nand-mxc_nand-add-v1.1-controller-support.patch
    updated to apply cleanly to current nand tree
 0005-fec_mxc-cleanup-and-factor-out-imx27-dependencies.patch
    unchanged
 0006-Add-support-for-Freescale-MX25-SOC.patch
    unchanged
 0007-fec_mxc-add-imx25-support.patch
    small changes associated with the nand changes
 0008-Add-support-for-KARO-TX25-board.patch
    small changes associated with the nand changes
    (this was 0009 in previous series, the previous 0008
     has already been merged)

John Rigby (8):
  mxc_serial replace platform specific clock
  arm926ejs: add nand_spl boot support
  Add MX25 support to nand_spl fsl nfc driver
  Nand mxc_nand add v1.1 controller support
  fec_mxc: cleanup and factor out MX27 dependencies
  Add support for Freescale MX25 SOC
  fec_mxc: add MX25 support
  Add support for KARO TX25 board

 MAINTAINERS                              |    4 +
 Makefile                                 |    4 +
 board/karo/tx25/Makefile                 |   51 +++
 board/karo/tx25/config.mk                |    5 +
 board/karo/tx25/lowlevel_init.S          |  131 +++++++
 board/karo/tx25/tx25.c                   |  176 +++++++++
 cpu/arm926ejs/mx25/Makefile              |   46 +++
 cpu/arm926ejs/mx25/generic.c             |  263 +++++++++++++
 cpu/arm926ejs/mx25/reset.c               |   56 +++
 cpu/arm926ejs/mx25/timer.c               |  187 +++++++++
 cpu/arm926ejs/mx27/generic.c             |    5 +
 cpu/arm926ejs/start.S                    |   42 ++-
 drivers/mtd/nand/mxc_nand.c              |  617 ++++++++++++++++++++++++++----
 drivers/net/fec_mxc.c                    |   57 ++-
 drivers/net/fec_mxc.h                    |   32 ++-
 drivers/serial/serial_mxc.c              |   16 +-
 include/asm-arm/arch-mx25/clock.h        |   36 ++
 include/asm-arm/arch-mx25/imx-regs.h     |  316 +++++++++++++++
 include/asm-arm/arch-mx25/imx25-pinmux.h |  421 ++++++++++++++++++++
 include/asm-arm/arch-mx27/clock.h        |    3 +
 include/asm-arm/arch-mx31/mx31.h         |    1 +
 include/configs/mx31pdk.h                |    4 +
 include/configs/tx25.h                   |  179 +++++++++
 include/fsl_nfc.h                        |   78 ++++-
 nand_spl/board/karo/tx25/Makefile        |   78 ++++
 nand_spl/board/karo/tx25/config.mk       |    1 +
 nand_spl/board/karo/tx25/u-boot.lds      |   58 +++
 nand_spl/nand_boot_fsl_nfc.c             |   72 +++-
 28 files changed, 2812 insertions(+), 127 deletions(-)
 create mode 100644 board/karo/tx25/Makefile
 create mode 100644 board/karo/tx25/config.mk
 create mode 100644 board/karo/tx25/lowlevel_init.S
 create mode 100644 board/karo/tx25/tx25.c
 create mode 100644 cpu/arm926ejs/mx25/Makefile
 create mode 100644 cpu/arm926ejs/mx25/generic.c
 create mode 100644 cpu/arm926ejs/mx25/reset.c
 create mode 100644 cpu/arm926ejs/mx25/timer.c
 create mode 100644 include/asm-arm/arch-mx25/clock.h
 create mode 100644 include/asm-arm/arch-mx25/imx-regs.h
 create mode 100644 include/asm-arm/arch-mx25/imx25-pinmux.h
 create mode 100644 include/configs/tx25.h
 create mode 100644 nand_spl/board/karo/tx25/Makefile
 create mode 100644 nand_spl/board/karo/tx25/config.mk
 create mode 100644 nand_spl/board/karo/tx25/u-boot.lds

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

end of thread, other threads:[~2010-03-02 16:04 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-26  6:12 [U-Boot] [PATCH-V3 0/8] Add support for i.MX25 SOC and KARO TX25 board John Rigby
2010-01-26  6:12 ` [U-Boot] [PATCH V3 1/8] mxc_serial replace platform specific clock John Rigby
2010-01-26  6:12   ` [U-Boot] [PATCH V3 2/8] arm926ejs: add nand_spl boot support John Rigby
2010-01-26  6:12     ` [U-Boot] [PATCH V3 3/8] Add MX25 support to nand_spl fsl nfc driver John Rigby
2010-01-26  6:12       ` [U-Boot] [PATCH V3 4/8] Nand mxc_nand add v1.1 controller support John Rigby
2010-01-26  6:12         ` [U-Boot] [PATCH V3 5/8] fec_mxc: cleanup and factor out MX27 dependencies John Rigby
2010-01-26  6:12           ` [U-Boot] [PATCH V3 6/8] Add support for Freescale MX25 SOC John Rigby
2010-01-26  6:12             ` [U-Boot] [PATCH V3 7/8] fec_mxc: add MX25 support John Rigby
2010-01-26  6:12               ` [U-Boot] [PATCH V3 8/8] Add support for KARO TX25 board John Rigby
2010-01-27  9:03               ` [U-Boot] [PATCH V3 7/8] fec_mxc: add MX25 support Lv Terry-R65388
2010-01-27 15:50                 ` John Rigby
2010-02-01  6:18               ` Ben Warren
2010-03-02  8:05               ` Lv Terry-R65388
2010-03-02 16:04                 ` John Rigby
2010-02-01  6:15           ` [U-Boot] [PATCH V3 5/8] fec_mxc: cleanup and factor out MX27 dependencies Ben Warren
2010-01-26 20:02         ` [U-Boot] [PATCH V3 4/8] Nand mxc_nand add v1.1 controller support Scott Wood
2010-01-26 20:05       ` [U-Boot] [PATCH V3 3/8] Add MX25 support to nand_spl fsl nfc driver Scott Wood
2010-01-26 21:51         ` John Rigby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox