From: John Rigby <jrigby@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [U-boot-Users][GIT PULL] Please pull coldfire tree
Date: Wed, 09 Jan 2008 13:55:16 -0700 [thread overview]
Message-ID: <478534B4.9060003@freescale.com> (raw)
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(-)
next reply other threads:[~2008-01-09 20:55 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-09 20:55 John Rigby [this message]
2008-01-09 22:30 ` [U-Boot-Users] [U-boot-Users][GIT PULL] Please pull coldfire tree Wolfgang Denk
2008-01-09 23:54 ` John Rigby
2008-01-10 0:01 ` Liew Tsi Chung
2008-01-10 0:13 ` Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2008-06-05 19:26 John Rigby
2008-06-11 20:44 ` Wolfgang Denk
2008-06-11 21:04 ` Ben Warren
2008-02-20 20:49 John Rigby
2008-02-22 11:57 ` Wolfgang Denk
2008-01-17 21:41 John Rigby
2008-01-23 13:32 ` Wolfgang Denk
2007-10-26 21:29 Liew Tsi Chung-r5aahp
2007-11-01 21:59 ` Wolfgang Denk
2007-11-15 17:43 ` Liew Tsi Chung
2007-11-17 1:29 ` Wolfgang Denk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=478534B4.9060003@freescale.com \
--to=jrigby@freescale.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.