[U-Boot-Users] Please pull u-boot-mpc85xx
Andy Fleming
afleming at freescale.com
Thu Jan 10 00:05:22 CET 2008
The following changes since commit cc557950f742fe18003638963e267d52036159ce:
Wolfgang Denk (1):
Merge branch 'master' of git://www.denx.de/git/u-boot-usb
are found in the git repository at:
git://www.denx.de/git/u-boot-mpc85xx.git
Andy Fleming (1):
Remove cache config from ATUM8548 and sbc8548 configs
Anton Vorontsov (2):
MPC8568E-MDS: reset UCCs to use them reliably
MPC8568E-MDS: set up QE pario for UART1
Joe Hamman (2):
mpc85xx: Add support for SBC8548 (updated)
mpc85xx: Add support for SBC8548 (updated)
Kim Phillips (1):
Add QE brg freq and correct qe bus freq fdt update code
Kumar Gala (3):
Use FSL Book-E MMU macros from Linux Kernel
Reworked FSL Book-E TLB macros to be more readable
85xx: Remove cache config from configs.h
Timur Tabi (1):
85xx: add ability to upload QE firmware
robert lazarski (2):
mpc85xx: Add support for ATUM8548 (updated)
mpc85xx: Add support for ATUM8548 (updated)
MAINTAINERS | 5 +
MAKEALL | 2 +
Makefile | 6 +
board/atum8548/Makefile | 56 +++
board/atum8548/atum8548.c | 420 +++++++++++++++++++++++
board/atum8548/config.mk | 33 ++
board/atum8548/init.S | 235 +++++++++++++
board/atum8548/u-boot.lds | 147 ++++++++
board/freescale/mpc8540ads/init.S | 145 ++++-----
board/freescale/mpc8541cds/init.S | 124 +++----
board/freescale/mpc8544ds/init.S | 117 +++----
board/freescale/mpc8548cds/init.S | 109 +++----
board/freescale/mpc8555cds/init.S | 124 +++----
board/freescale/mpc8560ads/init.S | 144 ++++-----
board/freescale/mpc8568mds/bcsr.c | 21 ++
board/freescale/mpc8568mds/bcsr.h | 9 +
board/freescale/mpc8568mds/init.S | 104 +++---
board/freescale/mpc8568mds/mpc8568mds.c | 10 +
board/mpc8540eval/init.S | 132 ++++----
board/pm854/init.S | 124 +++----
board/pm856/init.S | 124 +++----
board/sbc8548/Makefile | 55 +++
board/sbc8548/config.mk | 32 ++
board/sbc8548/init.S | 241 +++++++++++++
board/sbc8548/sbc8548.c | 569 +++++++++++++++++++++++++++++++
board/sbc8548/u-boot.lds | 149 ++++++++
board/sbc8560/init.S | 94 +++---
board/stxgp3/init.S | 144 ++++-----
board/stxssa/init.S | 110 +++----
board/tqm85xx/init.S | 124 +++----
common/fdt_support.c | 48 +++
cpu/mpc85xx/fdt.c | 5 +-
cpu/mpc85xx/spd_sdram.c | 23 +-
cpu/mpc85xx/start.S | 9 +-
doc/README.atum8548 | 29 ++
doc/README.sbc8548 | 27 ++
drivers/qe/qe.c | 219 ++++++++++++
drivers/qe/qe.h | 56 +++
include/asm-ppc/cache.h | 10 +-
include/asm-ppc/immap_qe.h | 33 ++-
include/asm-ppc/mmu.h | 113 ++++---
include/asm-ppc/processor.h | 4 +
include/configs/ATUM8548.h | 458 +++++++++++++++++++++++++
include/configs/MPC8540ADS.h | 7 -
include/configs/MPC8540EVAL.h | 7 -
include/configs/MPC8541CDS.h | 7 -
include/configs/MPC8544DS.h | 7 -
include/configs/MPC8548CDS.h | 7 -
include/configs/MPC8555CDS.h | 7 -
include/configs/MPC8560ADS.h | 7 -
include/configs/MPC8568MDS.h | 7 -
include/configs/MPC8641HPCN.h | 7 -
include/configs/PM854.h | 7 -
include/configs/PM856.h | 7 -
include/configs/SBC8540.h | 7 -
include/configs/TQM85xx.h | 7 -
include/configs/sbc8548.h | 569 +++++++++++++++++++++++++++++++
include/configs/sbc8560.h | 7 -
include/configs/stxgp3.h | 7 -
include/configs/stxssa.h | 7 -
include/e500.h | 94 -----
include/fdt_support.h | 1 +
62 files changed, 4309 insertions(+), 1210 deletions(-)
create mode 100644 board/atum8548/Makefile
create mode 100644 board/atum8548/atum8548.c
create mode 100644 board/atum8548/config.mk
create mode 100644 board/atum8548/init.S
create mode 100644 board/atum8548/u-boot.lds
create mode 100644 board/sbc8548/Makefile
create mode 100644 board/sbc8548/config.mk
create mode 100644 board/sbc8548/init.S
create mode 100644 board/sbc8548/sbc8548.c
create mode 100644 board/sbc8548/u-boot.lds
create mode 100644 doc/README.atum8548
create mode 100644 doc/README.sbc8548
create mode 100644 include/configs/ATUM8548.h
create mode 100644 include/configs/sbc8548.h
More information about the U-Boot
mailing list