public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [GIT PULL] Please pull coldfire tree
@ 2008-07-11 17:03 John Rigby
  2008-07-13 12:44 ` Wolfgang Denk
  0 siblings, 1 reply; 4+ messages in thread
From: John Rigby @ 2008-07-11 17:03 UTC (permalink / raw)
  To: u-boot

Wolfgang,

The following changes since commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96:
   Wolfgang Denk (1):
         Fix some more print() format errors.

are available in the git repository at:

   git://git.denx.de/u-boot-coldfire.git master

TsiChung Liew (13):
       ColdFire: Fix UART baudrate formula
       ColdFire: Fix warning messages by passing correct data type in board.c
       ColdFire: Fix code flash configuration for M547x/M548x boards
       ColdFire: Add -got=single param for new linux v4e toolchains
       ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
       ColdFire: Fix timer issue for MCF5272
       ColdFire: Fix compiling error for MCF5275
       ColdFire: Fix power up issue for MCF5235
       Fix compile error caused by incorrect function return type
       Fix compile error caused by missing timer function
       ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
       ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
       ColdFire: Fix FB CS not setup properly for Mcf5282

  MAKEALL                             |    2 +-
  board/BuS/EB+MCF-EV123/mii.c        |    2 +-
  board/cobra5272/mii.c               |    2 +-
  board/freescale/m5235evb/m5235evb.c |    3 +++
  cpu/mcf5227x/cpu_init.c             |    2 +-
  cpu/mcf52x2/cpu_init.c              |   12 ++++--------
  cpu/mcf52x2/speed.c                 |    2 +-
  cpu/mcf5445x/config.mk              |    6 ++++++
  cpu/mcf5445x/cpu_init.c             |    2 +-
  cpu/mcf5445x/start.S                |    2 +-
  cpu/mcf547x_8x/config.mk            |    6 ++++++
  cpu/mcf547x_8x/start.S              |    2 +-
  drivers/serial/mcfuart.c            |    4 ++--
  include/asm-m68k/timer.h            |    2 +-
  include/configs/EB+MCF-EV123.h      |    2 ++
  include/configs/M5475EVB.h          |    4 ++--
  include/configs/M5485EVB.h          |    4 ++--
  lib_m68k/board.c                    |    6 +++---
  18 files changed, 39 insertions(+), 26 deletions(-)

Thanks
John

^ permalink raw reply	[flat|nested] 4+ messages in thread
* [U-Boot-Users] [GIT PULL] Please pull coldfire tree
@ 2008-03-31 21:18 John Rigby
  2008-04-07 22:11 ` Wolfgang Denk
  0 siblings, 1 reply; 4+ messages in thread
From: John Rigby @ 2008-03-31 21:18 UTC (permalink / raw)
  To: u-boot

Wolfgang,

The following changes since commit 74d1e66d22dac91388bc538b2fe19f735edc5b82:
  Bartlomiej Sieka (1):
        Fix host tool build breakage, take two

are available in the git repository at:

  git://www.denx.de/git/u-boot-coldfire.git master

Matthew Fettke (2):
      ColdFire: Added MCF5275 cpu support.
      ColdFire: Added M5275EVB support.

TsiChung Liew (6):
      ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
      ColdFire: Fix second memory Chipselect for M5475EVB
      ColdFire: Define bootdelay in configuration file for M52277EVB
      ColdFire: Remove R5200 board
      ColdFire: Add dspi and serial flash support for MCF5445x
      ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S

 CREDITS                                        |    1 +
 MAINTAINERS                                    |    4 -
 MAKEALL                                        |    2 +-
 Makefile                                       |    6 +-
 board/{r5200 => freescale/m5275evb}/Makefile   |   20 +-
 board/{r5200 => freescale/m5275evb}/config.mk  |    2 +-
 board/freescale/m5275evb/m5275evb.c            |  112 ++++++
 board/{r5200 => freescale/m5275evb}/mii.c      |   22 +-
 board/{r5200 => freescale/m5275evb}/u-boot.lds |   41 +--
 board/freescale/m54455evb/flash.c              |  449 
+++++++++++++++++++----
 board/freescale/m547xevb/m547xevb.c            |    3 +
 board/r5200/r5200.c                            |  124 -------
 cpu/mcf5227x/start.S                           |    1 +
 cpu/mcf523x/start.S                            |    1 +
 cpu/mcf52x2/config.mk                          |    4 +
 cpu/mcf52x2/cpu.c                              |   66 ++++
 cpu/mcf52x2/cpu_init.c                         |  111 ++++++
 cpu/mcf52x2/interrupts.c                       |    4 +-
 cpu/mcf52x2/speed.c                            |   12 +-
 cpu/mcf52x2/start.S                            |   65 ++--
 cpu/mcf532x/start.S                            |    1 +
 cpu/mcf5445x/Makefile                          |    2 +-
 cpu/mcf5445x/dspi.c                            |   73 ++++
 cpu/mcf5445x/start.S                           |    1 +
 cpu/mcf547x_8x/start.S                         |    1 +
 include/asm-m68k/coldfire/dspi.h               |   10 +
 include/asm-m68k/immap.h                       |   24 ++
 include/asm-m68k/immap_5275.h                  |  469 
++++++++++++++++++++++++
 include/asm-m68k/m5275.h                       |  241 ++++++++++++
 include/configs/M52277EVB.h                    |    1 +
 include/configs/{r5200.h => M5275EVB.h}        |  153 +++++----
 include/configs/M54455EVB.h                    |   28 ++-
 32 files changed, 1711 insertions(+), 343 deletions(-)
 rename board/{r5200 => freescale/m5275evb}/Makefile (75%)
 rename board/{r5200 => freescale/m5275evb}/config.mk (97%)
 create mode 100644 board/freescale/m5275evb/m5275evb.c
 rename board/{r5200 => freescale/m5275evb}/mii.c (92%)
 rename board/{r5200 => freescale/m5275evb}/u-boot.lds (81%)
 delete mode 100644 board/r5200/r5200.c
 create mode 100644 cpu/mcf5445x/dspi.c
 create mode 100644 include/asm-m68k/immap_5275.h
 create mode 100644 include/asm-m68k/m5275.h
 rename include/configs/{r5200.h => M5275EVB.h} (55%)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-07-13 12:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-11 17:03 [U-Boot-Users] [GIT PULL] Please pull coldfire tree John Rigby
2008-07-13 12:44 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2008-03-31 21:18 John Rigby
2008-04-07 22:11 ` Wolfgang Denk

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