
Wolfgang,
Please pull for next branch.
Regards, TsiChung
The following changes since commit 859500a2be94bfa77a845b9c8a4c499587035fd5: Wolfgang Denk (1): Merge remote branch 'origin/master' into next
are available in the git repository at:
git://git.denx.de/u-boot-coldfire.git next
Michael Durrant (1): Adding EP2500 MCF5282 board [PATCH]
Philippe De Muyter (1): fix cmd_bdinfo.c:354: warning: 'print_eth' defined but not used
TsiChung Liew (13): ColdFire: Correct bit definition ColdFire: Update processors' serial port configuration ColdFire: Update uart_port_conf in serial driver ColdFire: Relocate vector table - mcf5445x ColdFire: Update M5253DEMO configuration file ColdFire: M5271EVB DRAM Bring up issue ColdFire: Update Extra environment Data for M5275EVB ColdFire: Add CPU compile flag for mcf5301x and mcf532x ColdFire: Misc update for M53017 ColdFire: Fix SDRAM size on M5208evb rev E ColdFire: Cache update for all platforms ColdFire: Fix incorrect M5253DEMO default environment ColdFire: Fix m54455EVB save environment bug
Wolfgang Wegner (2): add ASTRO MCF5373L board add block write function to spartan3 slave serial load
CREDITS | 5 + MAINTAINERS | 4 + MAKEALL | 1 + Makefile | 7 + board/astro/mcf5373l/Makefile | 44 ++++ board/astro/mcf5373l/astro.h | 44 ++++ board/astro/mcf5373l/config.mk | 27 ++ board/astro/mcf5373l/fpga.c | 425 +++++++++++++++++++++++++++++++++ board/astro/mcf5373l/mcf5373l.c | 211 ++++++++++++++++ board/astro/mcf5373l/u-boot.lds | 142 +++++++++++ board/freescale/m5271evb/m5271evb.c | 12 +- board/freescale/m54455evb/m54455evb.c | 4 +- common/cmd_bdinfo.c | 4 +- cpu/mcf5227x/cpu_init.c | 16 +- cpu/mcf5227x/start.S | 100 +------- cpu/mcf523x/cpu_init.c | 26 ++- cpu/mcf523x/start.S | 75 +------ cpu/mcf52x2/cpu_init.c | 86 ++++--- cpu/mcf52x2/start.S | 176 +------------- cpu/mcf532x/config.mk | 12 + cpu/mcf532x/cpu_init.c | 39 ++- cpu/mcf532x/speed.c | 2 +- cpu/mcf532x/start.S | 72 +------ cpu/mcf5445x/cpu_init.c | 45 +++- cpu/mcf5445x/start.S | 123 +--------- cpu/mcf547x_8x/cpu_init.c | 4 +- cpu/mcf547x_8x/start.S | 83 +------- drivers/fpga/spartan3.c | 54 +++-- drivers/serial/mcfuart.c | 4 +- include/asm-m68k/cache.h | 210 ++++++++++++++++ include/asm-m68k/immap_5253.h | 1 + include/asm-m68k/m520x.h | 89 ++++---- include/asm-m68k/m5227x.h | 108 ++++----- include/asm-m68k/m5235.h | 4 +- include/asm-m68k/m5301x.h | 112 +++++----- include/asm-m68k/m5445x.h | 56 +++--- include/configs/EB+MCF-EV123.h | 12 + include/configs/M5208EVBE.h | 15 +- include/configs/M52277EVB.h | 13 + include/configs/M5235EVB.h | 12 + include/configs/M5249EVB.h | 15 ++ include/configs/M5253DEMO.h | 26 ++- include/configs/M5253EVBE.h | 15 ++ include/configs/M5271EVB.h | 14 + include/configs/M5272C3.h | 14 + include/configs/M5275EVB.h | 36 +++- include/configs/M5282EVB.h | 13 + include/configs/M53017EVB.h | 17 ++- include/configs/M5329EVB.h | 11 + include/configs/M5373EVB.h | 11 + include/configs/M54451EVB.h | 15 ++ include/configs/M54455EVB.h | 17 ++- include/configs/M5475EVB.h | 16 ++ include/configs/M5485EVB.h | 16 ++ include/configs/TASREG.h | 11 + include/configs/astro_mcf5373l.h | 400 +++++++++++++++++++++++++++++++ include/configs/cobra5272.h | 13 + include/configs/idmr.h | 13 + include/spartan3.h | 1 + include/xilinx.h | 1 + lib_m68k/cache.c | 123 ++++++++++- 61 files changed, 2371 insertions(+), 906 deletions(-) create mode 100644 board/astro/mcf5373l/Makefile create mode 100644 board/astro/mcf5373l/astro.h create mode 100644 board/astro/mcf5373l/config.mk create mode 100644 board/astro/mcf5373l/fpga.c create mode 100644 board/astro/mcf5373l/mcf5373l.c create mode 100644 board/astro/mcf5373l/u-boot.lds create mode 100644 include/asm-m68k/cache.h create mode 100644 include/configs/astro_mcf5373l.h