mbox

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

Message ID 1354088346-26312-1-git-send-email-afleming@freescale.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

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

Message

Andy Fleming Nov. 28, 2012, 7:39 a.m. UTC
The following changes since commit 66dc452bfe13b0e276adddf3997b9c5abc00115d:

  Remove obsolete header file (2012-11-27 09:41:10 -0700)

are available in the git repository at:

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

for you to fetch changes up to afbfdf545090472b734367ac2c874bfbe8928790:

  powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE (2012-11-27 18:28:08 -0600)

----------------------------------------------------------------
Andy Fleming (1):
      8xxx: Change all 8*xx_DDR addresses to 8xxx

Kim Phillips (1):
      powerpc/mpc8xxx: take fdt_fixup_crypto_node() off the checkstack list

Timur Tabi (5):
      powerpc/85xx/p5040: add CONFIG_SYS_PPC64, del CONFIG_SYS_FSL_ELBC_MULTIBIT_ECC
      powerpc/85xx: add support for the Freescale P5040DS Superhydra reference board
      powerpc/85xx: implement check for erratum A-004849 work-around
      powerpc/85xx: implement check for erratum A-004580 work-around
      powerpc/85xx: update the work-around for P4080 erratum SERDES-9

York Sun (5):
      powerpc/qoriq: Move FMAN microcode location
      powerpc/corenet_ds: Update DDR timing for single-rank DIMMs
      powerpc/P2041RDB: Fix Flash address LAW address
      powerpc/mpc85xx: Temporary fix for spin table backward compatibility
      powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE

Yuanquan Chen (1):
      powerpc/p4080ds: fix PCI-e x8 link training down failure

Zang Roy-R61911 (1):
      powerpc/corenet_ds: move SATA config to board configuration

 arch/powerpc/cpu/mpc85xx/cmd_errata.c         |  114 ++++
 arch/powerpc/cpu/mpc85xx/cpu.c                |   14 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c           |   12 +
 arch/powerpc/cpu/mpc85xx/ddr-gen1.c           |    4 +-
 arch/powerpc/cpu/mpc85xx/ddr-gen2.c           |    9 +-
 arch/powerpc/cpu/mpc85xx/ddr-gen3.c           |   14 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |   20 +-
 arch/powerpc/cpu/mpc85xx/release.S            |   35 +-
 arch/powerpc/cpu/mpc86xx/ddr-8641.c           |    4 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c      |   10 +-
 arch/powerpc/cpu/mpc8xxx/ddr/util.c           |   14 +-
 arch/powerpc/cpu/mpc8xxx/fdt.c                |    6 +-
 arch/powerpc/include/asm/config_mpc85xx.h     |   20 +-
 arch/powerpc/include/asm/immap_83xx.h         |    6 +-
 arch/powerpc/include/asm/immap_85xx.h         |   27 +-
 arch/powerpc/include/asm/immap_86xx.h         |    8 +-
 board/exmeritus/hww1u1a/hww1u1a.c             |    2 +-
 board/freescale/common/Makefile               |    2 +
 board/freescale/common/ngpixis.h              |    2 +-
 board/freescale/corenet_ds/Makefile           |    2 +
 board/freescale/corenet_ds/corenet_ds.c       |   22 +-
 board/freescale/corenet_ds/ddr.c              |    4 +-
 board/freescale/corenet_ds/eth_superhydra.c   |  722 +++++++++++++++++++++++++
 board/freescale/corenet_ds/p5040ds_ddr.c      |   18 +
 board/freescale/mpc8540ads/mpc8540ads.c       |    2 +-
 board/freescale/mpc8560ads/mpc8560ads.c       |    2 +-
 board/freescale/mpc8569mds/mpc8569mds.c       |    2 +-
 board/freescale/p1023rds/p1023rds.c           |    2 +-
 board/freescale/p1_p2_rdb_pc/spl_minimal.c    |    2 +-
 board/freescale/p2020ds/p2020ds.c             |    2 +-
 board/sbc8548/ddr.c                           |    2 +-
 board/socrates/sdram.c                        |    2 +-
 boards.cfg                                    |    1 +
 drivers/net/fm/Makefile                       |    1 +
 drivers/net/fm/p5040.c                        |  113 ++++
 drivers/pci/fsl_pci_init.c                    |   22 +
 include/configs/P1010RDB.h                    |    1 +
 include/configs/P1022DS.h                     |    1 +
 include/configs/P1023RDS.h                    |    2 +-
 include/configs/P2041RDB.h                    |   20 +-
 include/configs/P3041DS.h                     |    1 +
 include/configs/P5020DS.h                     |    1 +
 include/configs/P5040DS.h                     |   40 ++
 include/configs/corenet_ds.h                  |    2 +-
 nand_spl/board/freescale/p1010rdb/nand_boot.c |    2 +-
 nand_spl/board/freescale/p1023rds/nand_boot.c |    2 +-
 46 files changed, 1207 insertions(+), 109 deletions(-)
 create mode 100644 board/freescale/corenet_ds/eth_superhydra.c
 create mode 100644 board/freescale/corenet_ds/p5040ds_ddr.c
 create mode 100644 drivers/net/fm/p5040.c
 create mode 100644 include/configs/P5040DS.h

Comments

Tom Rini Nov. 28, 2012, 1:04 p.m. UTC | #1
On Wed, Nov 28, 2012 at 01:39:06AM -0600, Andy Fleming wrote:

> The following changes since commit 66dc452bfe13b0e276adddf3997b9c5abc00115d:
> 
>   Remove obsolete header file (2012-11-27 09:41:10 -0700)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to afbfdf545090472b734367ac2c874bfbe8928790:
> 
>   powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE (2012-11-27 18:28:08 -0600)
> 
> ----------------------------------------------------------------
> Andy Fleming (1):
>       8xxx: Change all 8*xx_DDR addresses to 8xxx
> 
> Kim Phillips (1):
>       powerpc/mpc8xxx: take fdt_fixup_crypto_node() off the checkstack list
> 
> Timur Tabi (5):
>       powerpc/85xx/p5040: add CONFIG_SYS_PPC64, del CONFIG_SYS_FSL_ELBC_MULTIBIT_ECC
>       powerpc/85xx: add support for the Freescale P5040DS Superhydra reference board
>       powerpc/85xx: implement check for erratum A-004849 work-around
>       powerpc/85xx: implement check for erratum A-004580 work-around
>       powerpc/85xx: update the work-around for P4080 erratum SERDES-9
> 
> York Sun (5):
>       powerpc/qoriq: Move FMAN microcode location
>       powerpc/corenet_ds: Update DDR timing for single-rank DIMMs
>       powerpc/P2041RDB: Fix Flash address LAW address
>       powerpc/mpc85xx: Temporary fix for spin table backward compatibility
>       powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE
> 
> Yuanquan Chen (1):
>       powerpc/p4080ds: fix PCI-e x8 link training down failure
> 
> Zang Roy-R61911 (1):
>       powerpc/corenet_ds: move SATA config to board configuration
> 
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c         |  114 ++++
>  arch/powerpc/cpu/mpc85xx/cpu.c                |   14 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c           |   12 +
>  arch/powerpc/cpu/mpc85xx/ddr-gen1.c           |    4 +-
>  arch/powerpc/cpu/mpc85xx/ddr-gen2.c           |    9 +-
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c           |   14 +-
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |   20 +-
>  arch/powerpc/cpu/mpc85xx/release.S            |   35 +-
>  arch/powerpc/cpu/mpc86xx/ddr-8641.c           |    4 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c      |   10 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/util.c           |   14 +-
>  arch/powerpc/cpu/mpc8xxx/fdt.c                |    6 +-
>  arch/powerpc/include/asm/config_mpc85xx.h     |   20 +-
>  arch/powerpc/include/asm/immap_83xx.h         |    6 +-
>  arch/powerpc/include/asm/immap_85xx.h         |   27 +-
>  arch/powerpc/include/asm/immap_86xx.h         |    8 +-
>  board/exmeritus/hww1u1a/hww1u1a.c             |    2 +-
>  board/freescale/common/Makefile               |    2 +
>  board/freescale/common/ngpixis.h              |    2 +-
>  board/freescale/corenet_ds/Makefile           |    2 +
>  board/freescale/corenet_ds/corenet_ds.c       |   22 +-
>  board/freescale/corenet_ds/ddr.c              |    4 +-
>  board/freescale/corenet_ds/eth_superhydra.c   |  722 +++++++++++++++++++++++++
>  board/freescale/corenet_ds/p5040ds_ddr.c      |   18 +
>  board/freescale/mpc8540ads/mpc8540ads.c       |    2 +-
>  board/freescale/mpc8560ads/mpc8560ads.c       |    2 +-
>  board/freescale/mpc8569mds/mpc8569mds.c       |    2 +-
>  board/freescale/p1023rds/p1023rds.c           |    2 +-
>  board/freescale/p1_p2_rdb_pc/spl_minimal.c    |    2 +-
>  board/freescale/p2020ds/p2020ds.c             |    2 +-
>  board/sbc8548/ddr.c                           |    2 +-
>  board/socrates/sdram.c                        |    2 +-
>  boards.cfg                                    |    1 +
>  drivers/net/fm/Makefile                       |    1 +
>  drivers/net/fm/p5040.c                        |  113 ++++
>  drivers/pci/fsl_pci_init.c                    |   22 +
>  include/configs/P1010RDB.h                    |    1 +
>  include/configs/P1022DS.h                     |    1 +
>  include/configs/P1023RDS.h                    |    2 +-
>  include/configs/P2041RDB.h                    |   20 +-
>  include/configs/P3041DS.h                     |    1 +
>  include/configs/P5020DS.h                     |    1 +
>  include/configs/P5040DS.h                     |   40 ++
>  include/configs/corenet_ds.h                  |    2 +-
>  nand_spl/board/freescale/p1010rdb/nand_boot.c |    2 +-
>  nand_spl/board/freescale/p1023rds/nand_boot.c |    2 +-
>  46 files changed, 1207 insertions(+), 109 deletions(-)
>  create mode 100644 board/freescale/corenet_ds/eth_superhydra.c
>  create mode 100644 board/freescale/corenet_ds/p5040ds_ddr.c
>  create mode 100644 drivers/net/fm/p5040.c
>  create mode 100644 include/configs/P5040DS.h

Applied to u-boot/master, thanks!
Tom Rini Nov. 28, 2012, 1:47 p.m. UTC | #2
On Wed, Nov 28, 2012 at 08:04:48AM -0500, Tom Rini wrote:
> On Wed, Nov 28, 2012 at 01:39:06AM -0600, Andy Fleming wrote:
> 
> > The following changes since commit 66dc452bfe13b0e276adddf3997b9c5abc00115d:
> > 
> >   Remove obsolete header file (2012-11-27 09:41:10 -0700)
> > 
> > are available in the git repository at:
> > 
> >   git://www.denx.de/git/u-boot-mpc85xx.git master
> > 
> > for you to fetch changes up to afbfdf545090472b734367ac2c874bfbe8928790:
> > 
> >   powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE (2012-11-27 18:28:08 -0600)
> > 
> > ----------------------------------------------------------------
> > Andy Fleming (1):
> >       8xxx: Change all 8*xx_DDR addresses to 8xxx
> > 
> > Kim Phillips (1):
> >       powerpc/mpc8xxx: take fdt_fixup_crypto_node() off the checkstack list
> > 
> > Timur Tabi (5):
> >       powerpc/85xx/p5040: add CONFIG_SYS_PPC64, del CONFIG_SYS_FSL_ELBC_MULTIBIT_ECC
> >       powerpc/85xx: add support for the Freescale P5040DS Superhydra reference board
> >       powerpc/85xx: implement check for erratum A-004849 work-around
> >       powerpc/85xx: implement check for erratum A-004580 work-around
> >       powerpc/85xx: update the work-around for P4080 erratum SERDES-9
> > 
> > York Sun (5):
> >       powerpc/qoriq: Move FMAN microcode location
> >       powerpc/corenet_ds: Update DDR timing for single-rank DIMMs
> >       powerpc/P2041RDB: Fix Flash address LAW address
> >       powerpc/mpc85xx: Temporary fix for spin table backward compatibility
> >       powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE
> > 
> > Yuanquan Chen (1):
> >       powerpc/p4080ds: fix PCI-e x8 link training down failure
> > 
> > Zang Roy-R61911 (1):
> >       powerpc/corenet_ds: move SATA config to board configuration
> > 
> >  arch/powerpc/cpu/mpc85xx/cmd_errata.c         |  114 ++++
> >  arch/powerpc/cpu/mpc85xx/cpu.c                |   14 +-
> >  arch/powerpc/cpu/mpc85xx/cpu_init.c           |   12 +
> >  arch/powerpc/cpu/mpc85xx/ddr-gen1.c           |    4 +-
> >  arch/powerpc/cpu/mpc85xx/ddr-gen2.c           |    9 +-
> >  arch/powerpc/cpu/mpc85xx/ddr-gen3.c           |   14 +-
> >  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |   20 +-
> >  arch/powerpc/cpu/mpc85xx/release.S            |   35 +-
> >  arch/powerpc/cpu/mpc86xx/ddr-8641.c           |    4 +-
> >  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c      |   10 +-
> >  arch/powerpc/cpu/mpc8xxx/ddr/util.c           |   14 +-
> >  arch/powerpc/cpu/mpc8xxx/fdt.c                |    6 +-
> >  arch/powerpc/include/asm/config_mpc85xx.h     |   20 +-
> >  arch/powerpc/include/asm/immap_83xx.h         |    6 +-
> >  arch/powerpc/include/asm/immap_85xx.h         |   27 +-
> >  arch/powerpc/include/asm/immap_86xx.h         |    8 +-
> >  board/exmeritus/hww1u1a/hww1u1a.c             |    2 +-
> >  board/freescale/common/Makefile               |    2 +
> >  board/freescale/common/ngpixis.h              |    2 +-
> >  board/freescale/corenet_ds/Makefile           |    2 +
> >  board/freescale/corenet_ds/corenet_ds.c       |   22 +-
> >  board/freescale/corenet_ds/ddr.c              |    4 +-
> >  board/freescale/corenet_ds/eth_superhydra.c   |  722 +++++++++++++++++++++++++
> >  board/freescale/corenet_ds/p5040ds_ddr.c      |   18 +
> >  board/freescale/mpc8540ads/mpc8540ads.c       |    2 +-
> >  board/freescale/mpc8560ads/mpc8560ads.c       |    2 +-
> >  board/freescale/mpc8569mds/mpc8569mds.c       |    2 +-
> >  board/freescale/p1023rds/p1023rds.c           |    2 +-
> >  board/freescale/p1_p2_rdb_pc/spl_minimal.c    |    2 +-
> >  board/freescale/p2020ds/p2020ds.c             |    2 +-
> >  board/sbc8548/ddr.c                           |    2 +-
> >  board/socrates/sdram.c                        |    2 +-
> >  boards.cfg                                    |    1 +
> >  drivers/net/fm/Makefile                       |    1 +
> >  drivers/net/fm/p5040.c                        |  113 ++++
> >  drivers/pci/fsl_pci_init.c                    |   22 +
> >  include/configs/P1010RDB.h                    |    1 +
> >  include/configs/P1022DS.h                     |    1 +
> >  include/configs/P1023RDS.h                    |    2 +-
> >  include/configs/P2041RDB.h                    |   20 +-
> >  include/configs/P3041DS.h                     |    1 +
> >  include/configs/P5020DS.h                     |    1 +
> >  include/configs/P5040DS.h                     |   40 ++
> >  include/configs/corenet_ds.h                  |    2 +-
> >  nand_spl/board/freescale/p1010rdb/nand_boot.c |    2 +-
> >  nand_spl/board/freescale/p1023rds/nand_boot.c |    2 +-
> >  46 files changed, 1207 insertions(+), 109 deletions(-)
> >  create mode 100644 board/freescale/corenet_ds/eth_superhydra.c
> >  create mode 100644 board/freescale/corenet_ds/p5040ds_ddr.c
> >  create mode 100644 drivers/net/fm/p5040.c
> >  create mode 100644 include/configs/P5040DS.h
> 
> Applied to u-boot/master, thanks!

Whoops, wrong Pull Request.  This one has NOT yet been applied, sorry.
Tom Rini Nov. 29, 2012, 1:38 p.m. UTC | #3
On Wed, Nov 28, 2012 at 01:39:06AM -0600, Andy Fleming wrote:

> The following changes since commit 66dc452bfe13b0e276adddf3997b9c5abc00115d:
> 
>   Remove obsolete header file (2012-11-27 09:41:10 -0700)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to afbfdf545090472b734367ac2c874bfbe8928790:
> 
>   powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE (2012-11-27 18:28:08 -0600)
> 
> ----------------------------------------------------------------
> Andy Fleming (1):
>       8xxx: Change all 8*xx_DDR addresses to 8xxx
> 
> Kim Phillips (1):
>       powerpc/mpc8xxx: take fdt_fixup_crypto_node() off the checkstack list
> 
> Timur Tabi (5):
>       powerpc/85xx/p5040: add CONFIG_SYS_PPC64, del CONFIG_SYS_FSL_ELBC_MULTIBIT_ECC
>       powerpc/85xx: add support for the Freescale P5040DS Superhydra reference board
>       powerpc/85xx: implement check for erratum A-004849 work-around
>       powerpc/85xx: implement check for erratum A-004580 work-around
>       powerpc/85xx: update the work-around for P4080 erratum SERDES-9
> 
> York Sun (5):
>       powerpc/qoriq: Move FMAN microcode location
>       powerpc/corenet_ds: Update DDR timing for single-rank DIMMs
>       powerpc/P2041RDB: Fix Flash address LAW address
>       powerpc/mpc85xx: Temporary fix for spin table backward compatibility
>       powerpc/mpc85xx: Fix a bug introduced by CONFIG_PPC_SPINTABLE_COMPATIBLE
> 
> Yuanquan Chen (1):
>       powerpc/p4080ds: fix PCI-e x8 link training down failure
> 
> Zang Roy-R61911 (1):
>       powerpc/corenet_ds: move SATA config to board configuration
> 
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c         |  114 ++++
>  arch/powerpc/cpu/mpc85xx/cpu.c                |   14 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c           |   12 +
>  arch/powerpc/cpu/mpc85xx/ddr-gen1.c           |    4 +-
>  arch/powerpc/cpu/mpc85xx/ddr-gen2.c           |    9 +-
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c           |   14 +-
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |   20 +-
>  arch/powerpc/cpu/mpc85xx/release.S            |   35 +-
>  arch/powerpc/cpu/mpc86xx/ddr-8641.c           |    4 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c      |   10 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/util.c           |   14 +-
>  arch/powerpc/cpu/mpc8xxx/fdt.c                |    6 +-
>  arch/powerpc/include/asm/config_mpc85xx.h     |   20 +-
>  arch/powerpc/include/asm/immap_83xx.h         |    6 +-
>  arch/powerpc/include/asm/immap_85xx.h         |   27 +-
>  arch/powerpc/include/asm/immap_86xx.h         |    8 +-
>  board/exmeritus/hww1u1a/hww1u1a.c             |    2 +-
>  board/freescale/common/Makefile               |    2 +
>  board/freescale/common/ngpixis.h              |    2 +-
>  board/freescale/corenet_ds/Makefile           |    2 +
>  board/freescale/corenet_ds/corenet_ds.c       |   22 +-
>  board/freescale/corenet_ds/ddr.c              |    4 +-
>  board/freescale/corenet_ds/eth_superhydra.c   |  722 +++++++++++++++++++++++++
>  board/freescale/corenet_ds/p5040ds_ddr.c      |   18 +
>  board/freescale/mpc8540ads/mpc8540ads.c       |    2 +-
>  board/freescale/mpc8560ads/mpc8560ads.c       |    2 +-
>  board/freescale/mpc8569mds/mpc8569mds.c       |    2 +-
>  board/freescale/p1023rds/p1023rds.c           |    2 +-
>  board/freescale/p1_p2_rdb_pc/spl_minimal.c    |    2 +-
>  board/freescale/p2020ds/p2020ds.c             |    2 +-
>  board/sbc8548/ddr.c                           |    2 +-
>  board/socrates/sdram.c                        |    2 +-
>  boards.cfg                                    |    1 +
>  drivers/net/fm/Makefile                       |    1 +
>  drivers/net/fm/p5040.c                        |  113 ++++
>  drivers/pci/fsl_pci_init.c                    |   22 +
>  include/configs/P1010RDB.h                    |    1 +
>  include/configs/P1022DS.h                     |    1 +
>  include/configs/P1023RDS.h                    |    2 +-
>  include/configs/P2041RDB.h                    |   20 +-
>  include/configs/P3041DS.h                     |    1 +
>  include/configs/P5020DS.h                     |    1 +
>  include/configs/P5040DS.h                     |   40 ++
>  include/configs/corenet_ds.h                  |    2 +-
>  nand_spl/board/freescale/p1010rdb/nand_boot.c |    2 +-
>  nand_spl/board/freescale/p1023rds/nand_boot.c |    2 +-
>  46 files changed, 1207 insertions(+), 109 deletions(-)
>  create mode 100644 board/freescale/corenet_ds/eth_superhydra.c
>  create mode 100644 board/freescale/corenet_ds/p5040ds_ddr.c
>  create mode 100644 drivers/net/fm/p5040.c
>  create mode 100644 include/configs/P5040DS.h

Really, this has now been applied to u-boot/master, thanks!
Tabi Timur-B04825 Dec. 3, 2012, 7:33 p.m. UTC | #4
On Wed, Nov 28, 2012 at 1:39 AM, Andy Fleming <afleming@freescale.com> wrote:
>
> Timur Tabi (5):
>       powerpc/85xx/p5040: add CONFIG_SYS_PPC64, del CONFIG_SYS_FSL_ELBC_MULTIBIT_ECC
>       powerpc/85xx: add support for the Freescale P5040DS Superhydra reference board
>       powerpc/85xx: implement check for erratum A-004849 work-around
>       powerpc/85xx: implement check for erratum A-004580 work-around
>       powerpc/85xx: update the work-around for P4080 erratum SERDES-9

You forgot this patch again:

http://patchwork.ozlabs.org/patch/170753/