
Wolfgang,
The following changes since commit ce37422d0002e10490e268392e0c4e3028e52cec: Stefan Roese (1): cfi_flash: Fix bug in flash_isset() to use correct 32bit function
are available in the git repository at:
git://www.denx.de/git/u-boot-coldfire.git
TsiChungLiew (7): Coldfire: Update immap files for 5445x and 532x ColdFire: MCF5445x - PCI, cache and misc update ColdFire: MCF532x - Update FlexBus CS ColdFire: Add M5373EVB Platform support ColdFire: Fixed CFI low level Read/Write macro ColdFire: Add new coldfire cpu 5227x family and 52277evb platform ColdFire: Add mcf547x_8x cpu arch and two platforms - M5475EVB and M5485EVB
CREDITS | 2 +- MAINTAINERS | 4 + MAKEALL | 6 +- Makefile | 84 ++ README | 2 + board/freescale/m52277evb/Makefile | 44 + board/freescale/m52277evb/config.mk | 25 + board/freescale/m52277evb/m52277evb.c | 86 ++ board/freescale/m52277evb/u-boot.lds | 145 ++ board/freescale/m5329evb/nand.c | 4 +- board/freescale/m5373evb/Makefile | 44 + board/freescale/m5373evb/config.mk | 25 + board/freescale/m5373evb/m5373evb.c | 88 ++ board/freescale/m5373evb/mii.c | 306 +++++ board/freescale/m5373evb/nand.c | 114 ++ board/freescale/m5373evb/u-boot.lds | 144 ++ board/freescale/m547xevb/Makefile | 44 + board/freescale/m547xevb/config.mk | 25 + board/freescale/m547xevb/m547xevb.c | 115 ++ board/freescale/m547xevb/mii.c | 322 +++++ board/freescale/m547xevb/u-boot.lds | 143 ++ board/freescale/m548xevb/Makefile | 44 + board/freescale/m548xevb/config.mk | 25 + board/freescale/m548xevb/m548xevb.c | 115 ++ board/freescale/m548xevb/mii.c | 322 +++++ board/freescale/m548xevb/u-boot.lds | 143 ++ cpu/mcf5227x/Makefile | 48 + cpu/mcf5227x/config.mk | 31 + cpu/mcf5227x/cpu.c | 75 + cpu/mcf5227x/cpu_init.c | 146 ++ cpu/mcf5227x/interrupts.c | 52 + cpu/mcf5227x/lcd.c | 372 +++++ cpu/mcf5227x/speed.c | 120 ++ cpu/mcf5227x/start.S | 356 +++++ cpu/mcf532x/cpu.c | 20 +- cpu/mcf5445x/cpu_init.c | 1 - cpu/mcf5445x/pci.c | 69 +- cpu/mcf5445x/start.S | 27 +- cpu/mcf547x_8x/Makefile | 48 + cpu/mcf547x_8x/config.mk | 31 + cpu/mcf547x_8x/cpu.c | 143 ++ cpu/mcf547x_8x/cpu_init.c | 132 ++ cpu/mcf547x_8x/interrupts.c | 50 + cpu/mcf547x_8x/pci.c | 171 +++ cpu/mcf547x_8x/slicetimer.c | 132 ++ cpu/mcf547x_8x/speed.c | 43 + cpu/mcf547x_8x/start.S | 361 +++++ doc/README.m52277evb | 237 ++++ doc/README.m5373evb | 334 +++++ doc/README.m5475evb | 279 ++++ drivers/dma/MCD_dmaApi.c | 1023 ++++++++++++++ drivers/dma/MCD_tasks.c | 2427 +++++++++++++++++++++++++++++++++ drivers/dma/MCD_tasksInit.c | 240 ++++ drivers/dma/Makefile | 46 + drivers/net/Makefile | 1 + drivers/net/fsl_mcdmafec.c | 582 ++++++++ drivers/pci/pci_auto.c | 6 + drivers/usb/usb_ohci.c | 1 + include/MCD_dma.h | 386 ++++++ include/MCD_progCheck.h | 27 + include/MCD_tasksInit.h | 60 + include/asm-m68k/crossbar.h | 79 ++ include/asm-m68k/dspi.h | 156 +++ include/asm-m68k/edma.h | 177 +++ include/asm-m68k/fec.h | 7 +- include/asm-m68k/flexbus.h | 98 ++ include/asm-m68k/fsl_mcdmafec.h | 167 +++ include/asm-m68k/global_data.h | 47 +- include/asm-m68k/immap.h | 145 ++- include/asm-m68k/immap_5227x.h | 343 +++++ include/asm-m68k/immap_5329.h | 340 ++---- include/asm-m68k/immap_5445x.h | 901 ++++--------- include/asm-m68k/immap_547x_8x.h | 297 ++++ include/asm-m68k/io.h | 22 +- include/asm-m68k/lcd.h | 213 +++ include/asm-m68k/m5227x.h | 796 +++++++++++ include/asm-m68k/m5329.h | 286 +---- include/asm-m68k/m5445x.h | 316 +----- include/asm-m68k/m547x_8x.h | 503 +++++++ include/asm-m68k/ssi.h | 175 +++ include/configs/M52277EVB.h | 251 ++++ include/configs/M5329EVB.h | 12 +- include/configs/M5373EVB.h | 267 ++++ include/configs/M54455EVB.h | 11 +- include/configs/M5475EVB.h | 311 +++++ include/configs/M5485EVB.h | 296 ++++ lib_m68k/board.c | 10 + net/eth.c | 4 + 88 files changed, 15108 insertions(+), 1620 deletions(-)