mbox

[U-Boot,GIT,PULL] Pull request u-boot-85xx.git (updated)

Message ID alpine.LFD.2.00.1110091759260.22629@right.am.freescale.net
State Accepted
Headers show

Pull-request

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

Message

Kumar Gala Oct. 9, 2011, 10:59 p.m. UTC
[ fixed mpc8548cds config patch to pass checkpatch ]

The following changes since commit 0841ca90f22d73b0ea4642ef1ce33d879bb2f3ff:
  Wolfgang Denk (1):
        arm920t/s3c24x0/usb_ohci.c: fix warning: variable ... set but not used

are available in the git repository at:

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

Andy Fleming (1):
      phylib: Work around bug in Teranetics PHY

Becky Bruce (2):
      powerpc/mpc8641hpcn: fix SRIO BAT config
      powerpc/mpc86xx: Disable translation for BAT setup

Fanzc (1):
      powerpc/mpc8536ds: Add USB support for MPC8536DS

Tang Yuantian (1):
      fsl_sata: Fix compile error when CONFIG_LBA48 is not defined

Timur Tabi (2):
      powerpc/85xx: CONFIG_ENABLE_36BIT_PHYS does not depend on CONFIG_PHYS_64BIT
      powerpc/85xx: fix null pointer dereference when init the SGMII TBI PHY

Xie Xiaobo (3):
      powerpc/mpc8536ds: Add eSPI support for MPC8536DS
      powerpc/mpc8536ds: Invert SDHC_WP pin polarity
      powerpc/mpc8536ds: Save the env variables to SDcard and SPI flash

York Sun (2):
      powerpc/8xxx: Add support for interactive DDR programming interface
      powerpc/mpc8xxx: Merge entries in DDR speed table

chenhui zhao (1):
      powerpc/mpc8548cds: Update config file

 README                                     |    3 +
 arch/powerpc/cpu/mpc86xx/cpu_init.c        |   28 -
 arch/powerpc/cpu/mpc86xx/start.S           |   69 ++-
 arch/powerpc/cpu/mpc8xxx/ddr/Makefile      |    3 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h         |   40 +-
 arch/powerpc/cpu/mpc8xxx/ddr/interactive.c | 1691 ++++++++++++++++++++++++++++
 arch/powerpc/cpu/mpc8xxx/ddr/main.c        |    9 +-
 arch/powerpc/include/asm/fsl_fman.h        |    9 +-
 arch/powerpc/include/asm/immap_85xx.h      |    5 +
 board/freescale/corenet_ds/ddr.c           |  222 ++--
 board/freescale/mpc8349emds/ddr.c          |   80 +-
 board/freescale/mpc8536ds/mpc8536ds.c      |   12 +-
 board/freescale/mpc8572ds/ddr.c            |  203 ++--
 board/freescale/mpc8641hpcn/ddr.c          |  165 ++--
 board/freescale/p1022ds/ddr.c              |   79 +-
 board/freescale/p2020ds/ddr.c              |  105 +-
 board/freescale/p2041rdb/ddr.c             |   78 +-
 doc/README.fsl-ddr                         |  150 +++
 drivers/block/fsl_sata.c                   |   15 +-
 drivers/net/fm/dtsec.c                     |    2 +-
 drivers/net/fm/eth.c                       |    3 +-
 drivers/net/phy/teranetics.c               |   21 +-
 include/configs/MPC8536DS.h                |   51 +-
 include/configs/MPC8548CDS.h               |   44 +-
 include/configs/MPC8641HPCN.h              |  128 ++-
 include/configs/P1022DS.h                  |    3 +-
 include/configs/p1_p2_rdb_pc.h             |    5 +-
 include/mpc86xx.h                          |    1 +
 28 files changed, 2625 insertions(+), 599 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc8xxx/ddr/interactive.c

Comments

Wolfgang Denk Oct. 12, 2011, 8:41 p.m. UTC | #1
Dear Kumar Gala,

In message <alpine.LFD.2.00.1110091759260.22629@right.am.freescale.net> you wrote:
> [ fixed mpc8548cds config patch to pass checkpatch ]
> 
> The following changes since commit 0841ca90f22d73b0ea4642ef1ce33d879bb2f3ff:
>   Wolfgang Denk (1):
>         arm920t/s3c24x0/usb_ohci.c: fix warning: variable ... set but not used
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Andy Fleming (1):
>       phylib: Work around bug in Teranetics PHY
> 
> Becky Bruce (2):
>       powerpc/mpc8641hpcn: fix SRIO BAT config
>       powerpc/mpc86xx: Disable translation for BAT setup
> 
> Fanzc (1):
>       powerpc/mpc8536ds: Add USB support for MPC8536DS
> 
> Tang Yuantian (1):
>       fsl_sata: Fix compile error when CONFIG_LBA48 is not defined
> 
> Timur Tabi (2):
>       powerpc/85xx: CONFIG_ENABLE_36BIT_PHYS does not depend on CONFIG_PHYS_64BIT
>       powerpc/85xx: fix null pointer dereference when init the SGMII TBI PHY
> 
> Xie Xiaobo (3):
>       powerpc/mpc8536ds: Add eSPI support for MPC8536DS
>       powerpc/mpc8536ds: Invert SDHC_WP pin polarity
>       powerpc/mpc8536ds: Save the env variables to SDcard and SPI flash
> 
> York Sun (2):
>       powerpc/8xxx: Add support for interactive DDR programming interface
>       powerpc/mpc8xxx: Merge entries in DDR speed table
> 
> chenhui zhao (1):
>       powerpc/mpc8548cds: Update config file
> 
>  README                                     |    3 +
>  arch/powerpc/cpu/mpc86xx/cpu_init.c        |   28 -
>  arch/powerpc/cpu/mpc86xx/start.S           |   69 ++-
>  arch/powerpc/cpu/mpc8xxx/ddr/Makefile      |    3 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h         |   40 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/interactive.c | 1691 ++++++++++++++++++++++++++++
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c        |    9 +-
>  arch/powerpc/include/asm/fsl_fman.h        |    9 +-
>  arch/powerpc/include/asm/immap_85xx.h      |    5 +
>  board/freescale/corenet_ds/ddr.c           |  222 ++--
>  board/freescale/mpc8349emds/ddr.c          |   80 +-
>  board/freescale/mpc8536ds/mpc8536ds.c      |   12 +-
>  board/freescale/mpc8572ds/ddr.c            |  203 ++--
>  board/freescale/mpc8641hpcn/ddr.c          |  165 ++--
>  board/freescale/p1022ds/ddr.c              |   79 +-
>  board/freescale/p2020ds/ddr.c              |  105 +-
>  board/freescale/p2041rdb/ddr.c             |   78 +-
>  doc/README.fsl-ddr                         |  150 +++
>  drivers/block/fsl_sata.c                   |   15 +-
>  drivers/net/fm/dtsec.c                     |    2 +-
>  drivers/net/fm/eth.c                       |    3 +-
>  drivers/net/phy/teranetics.c               |   21 +-
>  include/configs/MPC8536DS.h                |   51 +-
>  include/configs/MPC8548CDS.h               |   44 +-
>  include/configs/MPC8641HPCN.h              |  128 ++-
>  include/configs/P1022DS.h                  |    3 +-
>  include/configs/p1_p2_rdb_pc.h             |    5 +-
>  include/mpc86xx.h                          |    1 +
>  28 files changed, 2625 insertions(+), 599 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc8xxx/ddr/interactive.c

Applied, thanks.

Best regards,

Wolfgang Denk