[U-Boot] [GIT PULL] Please pull u-boot-mpc85xx.git

Wolfgang Denk wd at denx.de
Tue Jan 25 21:13:24 CET 2011


Dear Kumar Gala,

In message <Pine.LNX.4.64.1101192300530.993 at localhost.localdomain> you wrote:
> The following changes since commit e1ccf97c5d7651664d37c0c5aa243874b8851b2d:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-01-17 20:31:46 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Dipen Dudhat (1):
>       powerpc/85xx: Protect all LBC code with CONFIG_FSL_LBC
> 
> Haiying Wang (1):
>       8xxx/ddr: add support to only compute the ddr sdram size
> 
> Kumar Gala (6):
>       powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h
>       powerpc/p3041: Add various p3041 specific information
>       powerpc/p5020: Add various p5020 specific information
>       powerpc/p2040: Add various p2040 specific information
>       powerpc/8xxx: Add hwconfig APIs to address early parsing used by DDR init
>       powerpc/8xxx: Introduce 85xx, 86xx, QorIQ config headers
> 
> Poonam Aggrwal (2):
>       powerpc/85xx: Add Support for Freescale P1010 Processor
>       powerpc/85xx: Add Support for Freescale P1014 Processor
> 
> Prabhakar (1):
>       Fix wrong CONFIG_SYS_MPC85xx_SERDES1_ADDR
> 
> Prabhakar Kushwaha (1):
>       ppc/85xx: Fix compile err when PCI disabled on P1_P2_RDB
> 
> York Sun (8):
>       mpc8xxx: Display RDIMM if detected
>       mpc8xxx: Enable ECC on/off control in hwconfig
>       corenet_ds: Enable ECC for corenet_ds
>       mpc85xx: Adding more registers and options
>       mpc85xx: Enable unique mode registers and dynamic ODT for DDR3
>       mpc85xx: Implement workaround for erratum DDR-A003
>       corenet_ds: Extend board specific parameters
>       powerpc/p4080: Fix warning in serdes code from early use of hwconfig
> 
>  arch/powerpc/cpu/mpc85xx/Makefile                  |    6 +
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    3 +
>  arch/powerpc/cpu/mpc85xx/cpu.c                     |    9 +-
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   99 +++++-
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |   17 +-
>  arch/powerpc/cpu/mpc85xx/p2040_serdes.c            |   66 ++++
>  arch/powerpc/cpu/mpc85xx/p3041_ids.c               |  105 ++++++
>  arch/powerpc/cpu/mpc85xx/p3041_serdes.c            |  151 ++++++++
>  arch/powerpc/cpu/mpc85xx/p5020_ids.c               |  105 ++++++
>  arch/powerpc/cpu/mpc85xx/p5020_serdes.c            |  151 ++++++++
>  arch/powerpc/cpu/mpc85xx/speed.c                   |    6 +-
>  arch/powerpc/cpu/mpc85xx/u-boot.lds                |    8 +-
>  arch/powerpc/cpu/mpc8xxx/cpu.c                     |    8 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |  262 +++++++++++---
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h                 |    8 +-
>  .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   20 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   31 ++-
>  arch/powerpc/cpu/mpc8xxx/ddr/options.c             |  395 ++++++++++++++++++--
>  arch/powerpc/include/asm/config.h                  |   39 +--
>  arch/powerpc/include/asm/config_mpc85xx.h          |  188 ++++++++++
>  arch/powerpc/include/asm/config_mpc86xx.h          |   38 ++
>  arch/powerpc/include/asm/fsl_ddr_sdram.h           |   52 +++
>  arch/powerpc/include/asm/immap_85xx.h              |   23 +-
>  arch/powerpc/include/asm/processor.h               |    6 +
>  board/freescale/corenet_ds/config.mk               |   27 --
>  board/freescale/corenet_ds/ddr.c                   |  159 ++++----
>  board/freescale/mpc8536ds/config.mk                |   14 +-
>  board/freescale/mpc8572ds/config.mk                |    4 +-
>  board/freescale/p1022ds/config.mk                  |   10 -
>  board/freescale/p1_p2_rdb/config.mk                |   14 +-
>  board/freescale/p1_p2_rdb/p1_p2_rdb.c              |    4 +-
>  board/freescale/p1_p2_rdb/tlb.c                    |    4 +-
>  board/freescale/p2020ds/config.mk                  |   26 --
>  board/tqc/tqm85xx/sdram.c                          |    8 +-
>  common/hwconfig.c                                  |   86 +++--
>  doc/README.fsl-ddr                                 |   74 ++++-
>  drivers/misc/fsl_law.c                             |   23 +-
>  include/configs/MPC8536DS.h                        |    6 +
>  include/configs/MPC8572DS.h                        |    4 +
>  include/configs/P1022DS.h                          |    4 +
>  include/configs/P1_P2_RDB.h                        |   19 +-
>  include/configs/P2020DS.h                          |    4 +
>  include/configs/P4080DS.h                          |   16 -
>  include/configs/corenet_ds.h                       |    8 +-
>  include/hwconfig.h                                 |   68 +++-
>  45 files changed, 1940 insertions(+), 438 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p2040_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_ids.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_ids.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_serdes.c
>  create mode 100644 arch/powerpc/include/asm/config_mpc85xx.h
>  create mode 100644 arch/powerpc/include/asm/config_mpc86xx.h
>  delete mode 100644 board/freescale/corenet_ds/config.mk
>  delete mode 100644 board/freescale/p1022ds/config.mk
>  delete mode 100644 board/freescale/p2020ds/config.mk

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
It is dangerous to be right on a subject  on  which  the  established
authorities are wrong.                                    -- Voltaire


More information about the U-Boot mailing list