[U-Boot] Please pull u-boot-mpc85xx.git
Kumar Gala
galak at kernel.crashing.org
Mon Mar 30 20:36:31 CEST 2009
The following changes since commit 2344bb8de2354101a8264c2123303c9d8d2aed3c:
Detlev Zundel (1):
inka4x0: Use proper accessor macros for memory mapped registers.
are available in the git repository at:
git://www.denx.de/git/u-boot-mpc85xx.git master
Dave Liu (2):
fsl-ddr: Fix two bugs in the ddr infrastructure
fsl-ddr: add the DDR3 SPD infrastructure
Haiying Wang (3):
MPC85xx: Load and enable QE microcode patch in IRAM
MPC85xx: Add MPC8569 CPU support
MPC85xx: Add MPC8569MDS board support
Kumar Gala (4):
Add LSDMR (SDRAM Mode Register) definition on localbus
85xx: Use common LSDMR defines from asm/fsl_lbc.h
83xx: Use common LSDMR defines from asm/fsl_lbc.h
85xx: Add support for additional e500mc features
MAKEALL | 1 +
Makefile | 3 +
board/freescale/mpc8541cds/mpc8541cds.c | 14 +-
board/freescale/mpc8548cds/mpc8548cds.c | 10 +-
board/freescale/mpc8555cds/mpc8555cds.c | 14 +-
board/freescale/mpc8560ads/mpc8560ads.c | 1 +
board/freescale/mpc8568mds/mpc8568mds.c | 10 +-
board/freescale/mpc8569mds/Makefile | 55 ++++
board/freescale/mpc8569mds/bcsr.c | 49 ++++
board/freescale/mpc8569mds/bcsr.h | 82 ++++++
board/freescale/mpc8569mds/config.mk | 30 ++
board/freescale/mpc8569mds/ddr.c | 84 ++++++
board/freescale/mpc8569mds/law.c | 59 ++++
board/freescale/mpc8569mds/mpc8569mds.c | 329 ++++++++++++++++++++++
board/freescale/mpc8569mds/tlb.c | 103 +++++++
board/freescale/mpc8569mds/u-boot.lds | 143 ++++++++++
board/sbc8548/sbc8548.c | 10 +-
common/ddr_spd.c | 53 ++++
cpu/mpc85xx/Makefile | 1 +
cpu/mpc85xx/cpu.c | 2 +
cpu/mpc85xx/cpu_init.c | 13 +
cpu/mpc85xx/ddr-gen3.c | 6 +-
cpu/mpc85xx/fdt.c | 64 +++++-
cpu/mpc85xx/release.S | 16 +
cpu/mpc85xx/start.S | 51 ++++
cpu/mpc8xxx/ddr/Makefile | 4 +
cpu/mpc8xxx/ddr/ctrl_regs.c | 383 +++++++++++++++++++++++---
cpu/mpc8xxx/ddr/ddr3_dimm_params.c | 314 +++++++++++++++++++++
cpu/mpc8xxx/ddr/lc_common_dimm_params.c | 74 +++++-
cpu/mpc8xxx/ddr/options.c | 28 ++-
drivers/misc/fsl_law.c | 2 +-
drivers/qe/qe.c | 9 +
drivers/qe/qe.h | 1 +
include/asm-ppc/fsl_ddr_dimm_params.h | 7 +
include/asm-ppc/fsl_ddr_sdram.h | 31 ++-
include/asm-ppc/fsl_lbc.h | 27 ++
include/asm-ppc/immap_85xx.h | 13 +-
include/asm-ppc/immap_qe.h | 8 +-
include/asm-ppc/processor.h | 2 +
include/configs/MPC8323ERDB.h | 26 --
include/configs/MPC832XEMDS.h | 26 --
include/configs/MPC8349EMDS.h | 62 +----
include/configs/MPC8360EMDS.h | 27 +--
include/configs/MPC8540ADS.h | 59 +---
include/configs/MPC8541CDS.h | 37 +--
include/configs/MPC8548CDS.h | 37 +--
include/configs/MPC8555CDS.h | 37 +--
include/configs/MPC8560ADS.h | 59 +---
include/configs/MPC8568MDS.h | 37 +--
include/configs/MPC8569MDS.h | 454 +++++++++++++++++++++++++++++++
include/configs/sbc8349.h | 62 +----
include/configs/sbc8548.h | 37 +--
include/ddr_spd.h | 13 +-
53 files changed, 2580 insertions(+), 499 deletions(-)
create mode 100644 board/freescale/mpc8569mds/Makefile
create mode 100644 board/freescale/mpc8569mds/bcsr.c
create mode 100644 board/freescale/mpc8569mds/bcsr.h
create mode 100644 board/freescale/mpc8569mds/config.mk
create mode 100644 board/freescale/mpc8569mds/ddr.c
create mode 100644 board/freescale/mpc8569mds/law.c
create mode 100644 board/freescale/mpc8569mds/mpc8569mds.c
create mode 100644 board/freescale/mpc8569mds/tlb.c
create mode 100644 board/freescale/mpc8569mds/u-boot.lds
create mode 100644 cpu/mpc8xxx/ddr/ddr3_dimm_params.c
create mode 100644 include/configs/MPC8569MDS.h
More information about the U-Boot
mailing list