[U-Boot] [GIT PULL] Pull request u-boot-85xx.git

Wolfgang Denk wd at denx.de
Fri Dec 2 00:01:39 CET 2011


Dear Kumar Gala,

In message <alpine.LFD.2.00.1111290921110.25317 at right.am.freescale.net> you wrote:
> The following changes since commit a63d9652757605ec5f7104addc5d38bf10ba8671:
> 
>   menu.c: use puts() instead of printf() where possible (2011-11-28 20:19:41 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Ira W. Snyder (3):
>       mpc8xxx: update module_type values from JEDEC DDR3 SPD Specification
>       mpc85xx: support board-specific reset function
>       mpc85xx: support for Freescale COM Express P2020
> 
> Jia Hongtao (1):
>       powerpc/85xx: fixup flexcan device tree clock-frequency
> 
> Kumar Gala (2):
>       powerpc/85xx: Add workaround for erratum CPU-A003999
>       arch/powerpc/cpu/mpc8xxx/ddr/interactive.c: Fix GCC 4.6 build warning
> 
> Shengzhou Liu (1):
>       powerpc/p3060qds: Add board related support for P3060QDS platform
> 
> Timur Tabi (4):
>       powerpc/85xx: CONFIG_FSL_SATA_V2 should be defined in config_mpc85xx.h
>       powerpc/85xx: always implement the work-around for Erratum SATA_A001
>       powerpc/85xx: clean up and document the QE/FMAN microcode macros
>       powerpc/85xx: verify the localbus device tree address before booting the OS
> 
> York Sun (1):
>       powerpc/85xx: Add workaround for erratum A-003474
> 
>  MAINTAINERS                                     |    4 +
>  README                                          |   38 ++
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c           |    6 +
>  arch/powerpc/cpu/mpc85xx/cpu.c                  |   17 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c             |   49 ++-
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c             |    5 +
>  arch/powerpc/cpu/mpc85xx/fdt.c                  |   63 ++-
>  arch/powerpc/cpu/mpc85xx/release.S              |    6 +
>  arch/powerpc/cpu/mpc85xx/start.S                |    6 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c |    7 +
>  arch/powerpc/cpu/mpc8xxx/ddr/interactive.c      |    3 +-
>  arch/powerpc/include/asm/config_mpc85xx.h       |   19 +
>  arch/powerpc/include/asm/immap_85xx.h           |    1 +
>  board/freescale/common/Makefile                 |    3 +
>  board/freescale/common/ics307_clk.c             |   21 +-
>  board/freescale/common/qixis.c                  |  151 ++++++
>  board/freescale/common/qixis.h                  |  101 ++++
>  board/freescale/p2020come/Makefile              |   46 ++
>  board/freescale/p2020come/ddr.c                 |   45 ++
>  board/freescale/p2020come/law.c                 |   39 ++
>  board/freescale/p2020come/p2020come.c           |  287 +++++++++++
>  board/freescale/p2020come/tlb.c                 |   99 ++++
>  board/freescale/p3060qds/Makefile               |   54 +++
>  board/freescale/p3060qds/ddr.c                  |  248 ++++++++++
>  board/freescale/p3060qds/eth.c                  |  482 +++++++++++++++++++
>  board/freescale/p3060qds/fixed_ddr.c            |  214 +++++++++
>  board/freescale/p3060qds/p3060qds.c             |  341 ++++++++++++++
>  board/freescale/p3060qds/p3060qds.h             |   30 ++
>  board/freescale/p3060qds/p3060qds_qixis.h       |   74 +++
>  boards.cfg                                      |    5 +
>  doc/README.p3060qds                             |  111 +++++
>  drivers/block/fsl_sata.c                        |   21 -
>  drivers/block/fsl_sata.h                        |    1 +
>  drivers/net/fm/fm.c                             |   32 +-
>  drivers/qe/qe.c                                 |    4 +-
>  include/configs/MPC8569MDS.h                    |    3 +-
>  include/configs/P1022DS.h                       |    1 -
>  include/configs/P1023RDS.h                      |   10 +-
>  include/configs/P2020COME.h                     |  576 +++++++++++++++++++++++
>  include/configs/P2041RDB.h                      |   21 +-
>  include/configs/P3041DS.h                       |    1 -
>  include/configs/P3060QDS.h                      |   48 ++
>  include/configs/P5020DS.h                       |    1 -
>  include/configs/corenet_ds.h                    |   22 +-
>  include/configs/p1_p2_rdb_pc.h                  |    5 +-
>  include/ddr_spd.h                               |    7 +
>  46 files changed, 3231 insertions(+), 97 deletions(-)
>  create mode 100644 board/freescale/common/qixis.c
>  create mode 100644 board/freescale/common/qixis.h
>  create mode 100644 board/freescale/p2020come/Makefile
>  create mode 100644 board/freescale/p2020come/ddr.c
>  create mode 100644 board/freescale/p2020come/law.c
>  create mode 100644 board/freescale/p2020come/p2020come.c
>  create mode 100644 board/freescale/p2020come/tlb.c
>  create mode 100644 board/freescale/p3060qds/Makefile
>  create mode 100644 board/freescale/p3060qds/ddr.c
>  create mode 100644 board/freescale/p3060qds/eth.c
>  create mode 100644 board/freescale/p3060qds/fixed_ddr.c
>  create mode 100644 board/freescale/p3060qds/p3060qds.c
>  create mode 100644 board/freescale/p3060qds/p3060qds.h
>  create mode 100644 board/freescale/p3060qds/p3060qds_qixis.h
>  create mode 100644 doc/README.p3060qds
>  create mode 100644 include/configs/P2020COME.h
>  create mode 100644 include/configs/P3060QDS.h

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
Here is an Appalachian version of management's answer  to  those  who
are  concerned  with  the fate of the project: "Don't worry about the
mule. Just load the wagon."         - Mike Dennison's hillbilly uncle


More information about the U-Boot mailing list