public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH-V2 0/9] Add support for i.MX25 SOC and TX25 board
@ 2010-01-17  4:50 John Rigby
  2010-01-17  4:50 ` [U-Boot] [PATCH-V2 1/9] mxc_serial replace platform specific clock John Rigby
  2010-01-17 17:54 ` [U-Boot] [PATCH-V2 0/9] Add support for i.MX25 SOC and TX25 board Wolfgang Denk
  0 siblings, 2 replies; 20+ messages in thread
From: John Rigby @ 2010-01-17  4:50 UTC (permalink / raw)
  To: u-boot

Changes since first series:
 0001-mxc_serial-replace-platform-specific-clock.patch
 0002-arm926ejs-add-nand_spl-boot-support.patch
    no changes
 0003-Add-MX25-support-to-nand_spl-fsl-nfc-driver.patch
    changed commit message from Add-V1.1.. to Add-MX25...
    included Scott's suggested changes
    naming remains the same as before pending comments from
    someone in Freescale's i.mx group
 0004-Nand-mxc_nand-add-v1.1-controller-support.patch
    no changes, again final version naming pending
 0005-fec_mxc-cleanup-and-factor-out-imx27-dependencies.patch
    no changes
 0006-Add-support-for-Freescale-MX25-SOC.patch
    no changes
 0007-fec_mxc-add-imx25-support.patch
    no changes
 0008-env_nand.c-print-error-message-and-fail-gracefully.patch
    included Scott's suggested change
 0009-Add-support-for-KARO-TX25-board.patch
    included changes from Wolfgang and Fabio

Rest is the same as original series:

The i.MX25 has the same ARM core and shares some ip blocks
with i.MX27 but also borrows from i.MX31.

The TX25 is an i.MX25 based board.  It has only NAND flash
so this port includes nand_spl and mtd/nand changes for
the nand controller in the i.MX25.

Booting from nand also required adding nand_spl boot support
for arm926ejs.

Support is also included for serial and ethernet.

This port was made possible by a donation of hardware by
DENX Computer Systems GmbH www.denx-cs.de.

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

Wolfgang Denk (1):
  env_nand.c: print error message and fail gracefully

 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 +++++++++
 common/env_nand.c                        |    7 +
 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              |  604 ++++++++++++++++++++++++++----
 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     |  330 ++++++++++++++++
 include/asm-arm/arch-mx25/imx25-pinmux.h |  421 +++++++++++++++++++++
 include/asm-arm/arch-mx27/clock.h        |    3 +
 include/asm-arm/arch-mx27/imx-regs.h     |   13 +
 include/asm-arm/arch-mx31/mx31.h         |    1 +
 include/configs/imx27lite.h              |    1 +
 include/configs/mx31pdk.h                |    4 +
 include/configs/tx25.h                   |  178 +++++++++
 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 +++-
 31 files changed, 2833 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] 20+ messages in thread

end of thread, other threads:[~2010-01-25 23:48 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-17  4:50 [U-Boot] [PATCH-V2 0/9] Add support for i.MX25 SOC and TX25 board John Rigby
2010-01-17  4:50 ` [U-Boot] [PATCH-V2 1/9] mxc_serial replace platform specific clock John Rigby
2010-01-17  4:50   ` [U-Boot] [PATCH-V2 2/9] arm926ejs: add nand_spl boot support John Rigby
2010-01-17  4:50     ` [U-Boot] [PATCH-V2 3/9] Add MX25 support to nand_spl fsl nfc driver John Rigby
2010-01-17  4:50       ` [U-Boot] [PATCH-V2 4/9] Nand mxc_nand add v1.1 controller support John Rigby
2010-01-17  4:50         ` [U-Boot] [PATCH-V2 5/9] fec_mxc: cleanup and factor out MX27 dependencies John Rigby
2010-01-17  4:50           ` [U-Boot] [PATCH-V2 6/9] Add support for Freescale MX25 SOC John Rigby
2010-01-17  4:50             ` [U-Boot] [PATCH-V2 7/9] fec_mxc: add MX25 support John Rigby
2010-01-17  4:50               ` [U-Boot] [PATCH-V2 8/9] env_nand.c: print error message and fail gracefully John Rigby
2010-01-17  4:50                 ` [U-Boot] [PATCH-V2 9/9] Add support for KARO TX25 board John Rigby
2010-01-25 23:48                 ` [U-Boot] [PATCH-V2 8/9] env_nand.c: print error message and fail gracefully Scott Wood
2010-01-18 21:02         ` [U-Boot] [PATCH-V2 4/9] Nand mxc_nand add v1.1 controller support Scott Wood
2010-01-18 21:23           ` Magnus Lilja
2010-01-19  4:11             ` John Rigby
2010-01-19 16:03               ` Scott Wood
2010-01-19 21:02             ` Magnus Lilja
2010-01-19 21:51               ` John Rigby
2010-01-20 19:51           ` Magnus Lilja
2010-01-20 21:25             ` John Rigby
2010-01-17 17:54 ` [U-Boot] [PATCH-V2 0/9] Add support for i.MX25 SOC and TX25 board Wolfgang Denk

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