[U-Boot] [PATCH v4 0/3] TI: tnetv107x patch series

Cyril Chemparathy cyril at ti.com
Mon Apr 12 15:59:20 CEST 2010


TNETV107X is a Texas Instruments SoC based on an ARM1176 core, and with a
bunch on on-chip integrated peripherals.  This patch series generalizes current
ARM1176 code to allow for the addition of new ARM1176 SOCs.  The remaining
patches in this series add arch and board support.

The contents of this series are identical to the v2 patch series posted
earlier, with the exception of an added comment in tnetv107x_evm.h indicating
the reasoning behind reusing the davinci_nand MTDID.


Cyril Chemparathy (3):
  ARM1176: Coexist with other ARM1176 platforms
  ARM1176: TI: TNETV107X soc initial support
  TI: TNETV107X EVM initial support

 MAINTAINERS                                |    4 +
 MAKEALL                                    |    1 +
 Makefile                                   |    3 +
 board/ti/tnetv107xevm/Makefile             |   49 +++
 board/ti/tnetv107xevm/config.mk            |   20 +
 board/ti/tnetv107xevm/sdb_board.c          |   66 ++++
 cpu/arm1176/cpu.c                          |    3 -
 cpu/arm1176/start.S                        |   62 +++-
 cpu/arm1176/tnetv107x/Makefile             |   44 +++
 cpu/arm1176/tnetv107x/aemif.c              |  151 ++++++++
 cpu/arm1176/tnetv107x/clock.c              |  542 ++++++++++++++++++++++++++++
 cpu/arm1176/tnetv107x/init.c               |   41 ++
 cpu/arm1176/tnetv107x/lowlevel_init.S      |   25 ++
 cpu/arm1176/tnetv107x/mux.c                |  463 ++++++++++++++++++++++++
 cpu/arm1176/tnetv107x/timer.c              |  125 +++++++
 cpu/arm1176/tnetv107x/wdt.c                |  172 +++++++++
 include/asm-arm/arch-tnetv107x/clock.h     |   50 +++
 include/asm-arm/arch-tnetv107x/emif_defs.h |    1 +
 include/asm-arm/arch-tnetv107x/hardware.h  |  184 ++++++++++
 include/asm-arm/arch-tnetv107x/mux.h       |  307 ++++++++++++++++
 include/asm-arm/arch-tnetv107x/nand_defs.h |   38 ++
 include/configs/smdk6400.h                 |    6 +
 include/configs/tnetv107x_evm.h            |  214 +++++++++++
 23 files changed, 2557 insertions(+), 14 deletions(-)
 create mode 100644 board/ti/tnetv107xevm/Makefile
 create mode 100644 board/ti/tnetv107xevm/config.mk
 create mode 100644 board/ti/tnetv107xevm/sdb_board.c
 create mode 100644 cpu/arm1176/tnetv107x/Makefile
 create mode 100644 cpu/arm1176/tnetv107x/aemif.c
 create mode 100644 cpu/arm1176/tnetv107x/clock.c
 create mode 100644 cpu/arm1176/tnetv107x/init.c
 create mode 100644 cpu/arm1176/tnetv107x/lowlevel_init.S
 create mode 100644 cpu/arm1176/tnetv107x/mux.c
 create mode 100644 cpu/arm1176/tnetv107x/timer.c
 create mode 100644 cpu/arm1176/tnetv107x/wdt.c
 create mode 100644 include/asm-arm/arch-tnetv107x/clock.h
 create mode 100644 include/asm-arm/arch-tnetv107x/emif_defs.h
 create mode 100644 include/asm-arm/arch-tnetv107x/hardware.h
 create mode 100644 include/asm-arm/arch-tnetv107x/mux.h
 create mode 100644 include/asm-arm/arch-tnetv107x/nand_defs.h
 create mode 100644 include/configs/tnetv107x_evm.h



More information about the U-Boot mailing list