All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-04-01 20:15 Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2009-04-01 20:15 UTC (permalink / raw)
  To: u-boot

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

Becky Bruce (1):
      mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves

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 (7):
      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
      86xx: Cleanup MP support
      85xx: Introduce determine_mp_bootpg() helper.
      85xx/86xx: Ensure MP boot page is not used

 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/freescale/mpc8641hpcn/mpc8641hpcn.c |    9 +
 board/sbc8548/sbc8548.c                   |   10 +-
 board/sbc8641d/sbc8641d.c                 |    9 +
 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                         |   73 ++++-
 cpu/mpc85xx/mp.c                          |   26 +-
 cpu/mpc85xx/mp.h                          |    4 +-
 cpu/mpc85xx/release.S                     |   16 +
 cpu/mpc85xx/start.S                       |   51 ++++
 cpu/mpc86xx/Makefile                      |   25 +-
 cpu/mpc86xx/cpu_init.c                    |    2 +-
 cpu/mpc86xx/fdt.c                         |   14 +-
 cpu/mpc86xx/mp.c                          |   51 ++--
 cpu/mpc86xx/mp.h                          |    7 -
 cpu/mpc86xx/release.S                     |    2 -
 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/MPC8641HPCN.h             |    1 +
 include/configs/sbc8349.h                 |   62 +---
 include/configs/sbc8548.h                 |   37 +--
 include/configs/sbc8641d.h                |    1 +
 include/ddr_spd.h                         |   13 +-
 lib_ppc/board.c                           |   15 +
 66 files changed, 2680 insertions(+), 574 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
 delete mode 100644 cpu/mpc86xx/mp.h
 create mode 100644 cpu/mpc8xxx/ddr/ddr3_dimm_params.c
 create mode 100644 include/configs/MPC8569MDS.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-07-16 23:30 Andy Fleming
  2013-07-17 14:38 ` Tom Rini
@ 2013-07-17 14:39 ` Tom Rini
  1 sibling, 0 replies; 172+ messages in thread
From: Tom Rini @ 2013-07-17 14:39 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 16, 2013 at 06:30:20PM -0500, Andy Fleming wrote:

>   arm:samsung:trats:fix: Restore proper orientation of TRATS's LCD panel (2013-07-16 09:20:16 -0400)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 2a6936059a1f393d828274bf5d33dd54c0a3c882:
> 
>   powerpc/mpc85xx:Disable Debug TLB entry for non-minimal SPL (2013-07-16 17:44:30 -0500)
> 
> ----------------------------------------------------------------
> Dirk Eibach (3):
>       Add Atmel I2C tpm
>       Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM
>       mpc85xx: Add gdsys ControlCenter Digital board
> 
> Prabhakar Kushwaha (1):
>       powerpc/mpc85xx:Disable Debug TLB entry for non-minimal SPL
> 
> Reinhard Pfau (2):
>       tpm: add AUTH1 cmds for LoadKey2 and GetPubKey
>       i2c: fsl_i2c: i2c_read(): dont try to write address w/ alen=0
> 
>  MAINTAINERS                               |    3 +-
>  README                                    |   17 +
>  arch/arm/lib/Makefile                     |    2 +-
>  arch/avr32/lib/Makefile                   |    2 +-
>  arch/m68k/lib/Makefile                    |    2 +-
>  arch/microblaze/lib/Makefile              |    2 +-
>  arch/mips/lib/Makefile                    |    4 +-
>  arch/nds32/lib/Makefile                   |    3 +-
>  arch/nios2/lib/Makefile                   |    2 +-
>  arch/openrisc/lib/Makefile                |    2 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init_early.c |    4 +-
>  arch/powerpc/lib/Makefile                 |    2 +-
>  arch/sh/lib/Makefile                      |    2 +-
>  arch/sparc/lib/Makefile                   |    3 +-
>  arch/x86/lib/Makefile                     |    2 +-
>  board/gdsys/common/Makefile               |    1 +
>  board/gdsys/common/dp501.c                |  107 +++
>  board/gdsys/common/dp501.h                |   30 +
>  board/gdsys/p1022/Makefile                |   37 +
>  board/gdsys/p1022/controlcenterd-id.c     | 1224 +++++++++++++++++++++++++++++
>  board/gdsys/p1022/controlcenterd-id.h     |   29 +
>  board/gdsys/p1022/controlcenterd.c        |  425 ++++++++++
>  board/gdsys/p1022/ddr.c                   |   71 ++
>  board/gdsys/p1022/diu.c                   |   87 ++
>  board/gdsys/p1022/law.c                   |   20 +
>  board/gdsys/p1022/sdhc_boot.c             |   63 ++
>  board/gdsys/p1022/tlb.c                   |   77 ++
>  boards.cfg                                |    4 +
>  common/cmd_tpm.c                          |  100 +++
>  drivers/i2c/fsl_i2c.c                     |    9 +-
>  drivers/tpm/Makefile                      |    1 +
>  drivers/tpm/tpm_atmel_twi.c               |  121 +++
>  include/configs/controlcenterd.h          |  522 ++++++++++++
>  include/tpm.h                             |  174 ++++
>  lib/tpm.c                                 |  351 ++++++++-
>  35 files changed, 3486 insertions(+), 19 deletions(-)
>  create mode 100644 board/gdsys/common/dp501.c
>  create mode 100644 board/gdsys/common/dp501.h
>  create mode 100644 board/gdsys/p1022/Makefile
>  create mode 100644 board/gdsys/p1022/controlcenterd-id.c
>  create mode 100644 board/gdsys/p1022/controlcenterd-id.h
>  create mode 100644 board/gdsys/p1022/controlcenterd.c
>  create mode 100644 board/gdsys/p1022/ddr.c
>  create mode 100644 board/gdsys/p1022/diu.c
>  create mode 100644 board/gdsys/p1022/law.c
>  create mode 100644 board/gdsys/p1022/sdhc_boot.c
>  create mode 100644 board/gdsys/p1022/tlb.c
>  create mode 100644 drivers/tpm/tpm_atmel_twi.c
>  create mode 100644 include/configs/controlcenterd.h

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130717/3262111a/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-07-16 23:30 Andy Fleming
@ 2013-07-17 14:38 ` Tom Rini
  2013-07-17 14:39 ` Tom Rini
  1 sibling, 0 replies; 172+ messages in thread
From: Tom Rini @ 2013-07-17 14:38 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 16, 2013 at 06:30:20PM -0500, Andy Fleming wrote:

>   arm:samsung:trats:fix: Restore proper orientation of TRATS's LCD panel (2013-07-16 09:20:16 -0400)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 2a6936059a1f393d828274bf5d33dd54c0a3c882:
> 
>   powerpc/mpc85xx:Disable Debug TLB entry for non-minimal SPL (2013-07-16 17:44:30 -0500)
> 
> ----------------------------------------------------------------
> Dirk Eibach (3):
>       Add Atmel I2C tpm
>       Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM
>       mpc85xx: Add gdsys ControlCenter Digital board
> 
> Prabhakar Kushwaha (1):
>       powerpc/mpc85xx:Disable Debug TLB entry for non-minimal SPL
> 
> Reinhard Pfau (2):
>       tpm: add AUTH1 cmds for LoadKey2 and GetPubKey
>       i2c: fsl_i2c: i2c_read(): dont try to write address w/ alen=0
> 
>  MAINTAINERS                               |    3 +-
>  README                                    |   17 +
>  arch/arm/lib/Makefile                     |    2 +-
>  arch/avr32/lib/Makefile                   |    2 +-
>  arch/m68k/lib/Makefile                    |    2 +-
>  arch/microblaze/lib/Makefile              |    2 +-
>  arch/mips/lib/Makefile                    |    4 +-
>  arch/nds32/lib/Makefile                   |    3 +-
>  arch/nios2/lib/Makefile                   |    2 +-
>  arch/openrisc/lib/Makefile                |    2 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init_early.c |    4 +-
>  arch/powerpc/lib/Makefile                 |    2 +-
>  arch/sh/lib/Makefile                      |    2 +-
>  arch/sparc/lib/Makefile                   |    3 +-
>  arch/x86/lib/Makefile                     |    2 +-
>  board/gdsys/common/Makefile               |    1 +
>  board/gdsys/common/dp501.c                |  107 +++
>  board/gdsys/common/dp501.h                |   30 +
>  board/gdsys/p1022/Makefile                |   37 +
>  board/gdsys/p1022/controlcenterd-id.c     | 1224 +++++++++++++++++++++++++++++
>  board/gdsys/p1022/controlcenterd-id.h     |   29 +
>  board/gdsys/p1022/controlcenterd.c        |  425 ++++++++++
>  board/gdsys/p1022/ddr.c                   |   71 ++
>  board/gdsys/p1022/diu.c                   |   87 ++
>  board/gdsys/p1022/law.c                   |   20 +
>  board/gdsys/p1022/sdhc_boot.c             |   63 ++
>  board/gdsys/p1022/tlb.c                   |   77 ++
>  boards.cfg                                |    4 +
>  common/cmd_tpm.c                          |  100 +++
>  drivers/i2c/fsl_i2c.c                     |    9 +-
>  drivers/tpm/Makefile                      |    1 +
>  drivers/tpm/tpm_atmel_twi.c               |  121 +++
>  include/configs/controlcenterd.h          |  522 ++++++++++++
>  include/tpm.h                             |  174 ++++
>  lib/tpm.c                                 |  351 ++++++++-
>  35 files changed, 3486 insertions(+), 19 deletions(-)
>  create mode 100644 board/gdsys/common/dp501.c
>  create mode 100644 board/gdsys/common/dp501.h
>  create mode 100644 board/gdsys/p1022/Makefile
>  create mode 100644 board/gdsys/p1022/controlcenterd-id.c
>  create mode 100644 board/gdsys/p1022/controlcenterd-id.h
>  create mode 100644 board/gdsys/p1022/controlcenterd.c
>  create mode 100644 board/gdsys/p1022/ddr.c
>  create mode 100644 board/gdsys/p1022/diu.c
>  create mode 100644 board/gdsys/p1022/law.c
>  create mode 100644 board/gdsys/p1022/sdhc_boot.c
>  create mode 100644 board/gdsys/p1022/tlb.c
>  create mode 100644 drivers/tpm/tpm_atmel_twi.c
>  create mode 100644 include/configs/controlcenterd.h

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130717/7dacc99c/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2013-07-16 23:30 Andy Fleming
  2013-07-17 14:38 ` Tom Rini
  2013-07-17 14:39 ` Tom Rini
  0 siblings, 2 replies; 172+ messages in thread
From: Andy Fleming @ 2013-07-16 23:30 UTC (permalink / raw)
  To: u-boot

  arm:samsung:trats:fix: Restore proper orientation of TRATS's LCD panel (2013-07-16 09:20:16 -0400)

are available in the git repository at:

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

for you to fetch changes up to 2a6936059a1f393d828274bf5d33dd54c0a3c882:

  powerpc/mpc85xx:Disable Debug TLB entry for non-minimal SPL (2013-07-16 17:44:30 -0500)

----------------------------------------------------------------
Dirk Eibach (3):
      Add Atmel I2C tpm
      Build arch/$ARCH/lib/bootm.o depending on CONFIG_CMD_BOOTM
      mpc85xx: Add gdsys ControlCenter Digital board

Prabhakar Kushwaha (1):
      powerpc/mpc85xx:Disable Debug TLB entry for non-minimal SPL

Reinhard Pfau (2):
      tpm: add AUTH1 cmds for LoadKey2 and GetPubKey
      i2c: fsl_i2c: i2c_read(): dont try to write address w/ alen=0

 MAINTAINERS                               |    3 +-
 README                                    |   17 +
 arch/arm/lib/Makefile                     |    2 +-
 arch/avr32/lib/Makefile                   |    2 +-
 arch/m68k/lib/Makefile                    |    2 +-
 arch/microblaze/lib/Makefile              |    2 +-
 arch/mips/lib/Makefile                    |    4 +-
 arch/nds32/lib/Makefile                   |    3 +-
 arch/nios2/lib/Makefile                   |    2 +-
 arch/openrisc/lib/Makefile                |    2 +-
 arch/powerpc/cpu/mpc85xx/cpu_init_early.c |    4 +-
 arch/powerpc/lib/Makefile                 |    2 +-
 arch/sh/lib/Makefile                      |    2 +-
 arch/sparc/lib/Makefile                   |    3 +-
 arch/x86/lib/Makefile                     |    2 +-
 board/gdsys/common/Makefile               |    1 +
 board/gdsys/common/dp501.c                |  107 +++
 board/gdsys/common/dp501.h                |   30 +
 board/gdsys/p1022/Makefile                |   37 +
 board/gdsys/p1022/controlcenterd-id.c     | 1224 +++++++++++++++++++++++++++++
 board/gdsys/p1022/controlcenterd-id.h     |   29 +
 board/gdsys/p1022/controlcenterd.c        |  425 ++++++++++
 board/gdsys/p1022/ddr.c                   |   71 ++
 board/gdsys/p1022/diu.c                   |   87 ++
 board/gdsys/p1022/law.c                   |   20 +
 board/gdsys/p1022/sdhc_boot.c             |   63 ++
 board/gdsys/p1022/tlb.c                   |   77 ++
 boards.cfg                                |    4 +
 common/cmd_tpm.c                          |  100 +++
 drivers/i2c/fsl_i2c.c                     |    9 +-
 drivers/tpm/Makefile                      |    1 +
 drivers/tpm/tpm_atmel_twi.c               |  121 +++
 include/configs/controlcenterd.h          |  522 ++++++++++++
 include/tpm.h                             |  174 ++++
 lib/tpm.c                                 |  351 ++++++++-
 35 files changed, 3486 insertions(+), 19 deletions(-)
 create mode 100644 board/gdsys/common/dp501.c
 create mode 100644 board/gdsys/common/dp501.h
 create mode 100644 board/gdsys/p1022/Makefile
 create mode 100644 board/gdsys/p1022/controlcenterd-id.c
 create mode 100644 board/gdsys/p1022/controlcenterd-id.h
 create mode 100644 board/gdsys/p1022/controlcenterd.c
 create mode 100644 board/gdsys/p1022/ddr.c
 create mode 100644 board/gdsys/p1022/diu.c
 create mode 100644 board/gdsys/p1022/law.c
 create mode 100644 board/gdsys/p1022/sdhc_boot.c
 create mode 100644 board/gdsys/p1022/tlb.c
 create mode 100644 drivers/tpm/tpm_atmel_twi.c
 create mode 100644 include/configs/controlcenterd.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-06-21 20:51 Andy Fleming
  2013-06-24 20:17 ` Tom Rini
@ 2013-06-25 14:56 ` Tom Rini
  1 sibling, 0 replies; 172+ messages in thread
From: Tom Rini @ 2013-06-25 14:56 UTC (permalink / raw)
  To: u-boot

On Fri, Jun 21, 2013 at 03:51:37PM -0500, Andy Fleming wrote:

> The following changes since commit 7315cfd9e1922ee1c3c5f016e5a3b16199122172:
> 
>   NET: Fix system hanging if NET device is not installed (2013-06-19 08:32:44 -0400)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 5707233880090f785c33df32c04549ea1aeef61e:
> 
>   powerpc/85xx: Add P1023RDB board support (2013-06-20 17:08:53 -0500)
> 
> ----------------------------------------------------------------
> Andy Fleming (2):
>       85xx: Change clock-frequency compatible to 2.0
>       85xx: Change case of MPC85XX_PORBMSR_ROMLOC_SHIFT
> 
> Axel Lin (1):
>       powerpc: mpc85xx/mpc86xx: Fix off-by-one boundary checking with ARRAY_SIZE
> 
> Chris Packham (1):
>       powerpc/CoreNet: Allow pbl images to take u-boot images != 512K
> 
> Chunhe Lan (1):
>       powerpc/85xx: Add P1023RDB board support
> 
> Fabio Estevam (1):
>       powerpc: Use lower case for the core names
> 
> Liu Gang (6):
>       powerpc/doc: Update the README.srio-pcie-boot-corenet
>       powerpc/boot: Change the macro of Boot from SRIO and PCIE master module
>       powerpc/b4860qds: Enable master module for boot from SRIO and PCIE
>       powerpc/b4860qds: Slave module for boot from SRIO and PCIE
>       powerpc/t4qds: Enable master module for Boot from SRIO and PCIE
>       powerpc/t4qds: Slave module for boot from SRIO and PCIE
> 
> Mingkai Hu (2):
>       powerpc/mpc85xx: explicit cast the SDRAM size to type phys_size_t
>       fsl_ifc: add support for different IFC bank count
> 
> Prabhakar Kushwaha (9):
>       powerpc/mpc85xx:No NOR boot, do not compile IFC errata A003399
>       powerpc/mpc85xx: new SPL support for IFC NAND
>       board/p1010rdb:Add NAND boot support using new SPL format
>       board/bsc9131rdb:Add NAND boot support using new SPL format
>       board/bsc9132qds:Add NAND boot support using new SPL format
>       powerpc/mpc85xx:Fix "boot page TLB" entry size for NAND SPL
>       board/b4860qds: Relax NOR flash teadc timing parameter
>       board/p1010rdb: Fix PCIe TLB creation on CONFIG_PCI define
>       powerpc/mpc85xx:Disable Debug TLB entry before init_tlbs
> 
> Priyanka Jain (3):
>       board/bsc9131rdb: Add targets for Sysclk 100MHz
>       board/bsc9131rdb: Add DSP side tlb and laws
>       board/bsc9131rdb: Update default boot environment settings
> 
> Scott Wood (1):
>       powerpc/mpc85xx: work around erratum A-006593
> 
> Ying Zhang (4):
>       powerpc/mpc85xx: support application without resetvec segment in the linker script
>       powerpc/mpc85xx: modify the functionality clear_bss and aligning the end address of the BSS
>       common/Makefile: Add new symbol CONFIG_SPL_ENV_SUPPORT for environment in SPL
>       Makefile: move the common makefile line to public area
> 
> York Sun (2):
>       powerpc/BSC9132: Add IFC bank count
>       powerpc/pixis: Fix pixis help message
> 
>  README                                             |   27 ++
>  arch/powerpc/cpu/mpc85xx/Makefile                  |    1 +
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    3 +
>  arch/powerpc/cpu/mpc85xx/cpu.c                     |   10 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c                |    5 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init_early.c          |   10 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c                     |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/p1010_serdes.c            |    4 +-
>  arch/powerpc/cpu/mpc85xx/p1021_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p1022_serdes.c            |    4 +-
>  arch/powerpc/cpu/mpc85xx/p1023_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p2020_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p2041_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p3041_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p4080_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p5020_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p5040_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/start.S                   |    2 +-
>  arch/powerpc/cpu/mpc85xx/t1040_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/u-boot-spl.lds            |   18 +-
>  arch/powerpc/cpu/mpc85xx/u-boot.lds                |    8 +
>  arch/powerpc/cpu/mpc86xx/cpu.c                     |    2 +-
>  arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc8xxx/fsl_ifc.c                 |   60 ++-
>  arch/powerpc/cpu/mpc8xxx/srio.c                    |    4 +-
>  arch/powerpc/include/asm/config_mpc85xx.h          |   13 +-
>  arch/powerpc/include/asm/fsl_ifc.h                 |   95 +++--
>  arch/powerpc/include/asm/fsl_law.h                 |    5 +
>  arch/powerpc/include/asm/immap_85xx.h              |    4 +-
>  board/freescale/b4860qds/tlb.c                     |   19 +
>  board/freescale/bsc9131rdb/Makefile                |   16 +
>  board/freescale/bsc9131rdb/README                  |   18 +-
>  board/freescale/bsc9131rdb/law.c                   |    4 +
>  board/freescale/bsc9131rdb/spl_minimal.c           |  118 ++++++
>  board/freescale/bsc9131rdb/tlb.c                   |   17 +-
>  board/freescale/bsc9132qds/Makefile                |   17 +
>  board/freescale/bsc9132qds/bsc9132qds.c            |    4 +-
>  board/freescale/bsc9132qds/law.c                   |    6 +-
>  board/freescale/bsc9132qds/spl_minimal.c           |  130 +++++++
>  board/freescale/bsc9132qds/tlb.c                   |   27 +-
>  board/freescale/common/Makefile                    |   10 +
>  board/freescale/common/pixis.c                     |    2 +
>  board/freescale/p1010rdb/Makefile                  |   16 +
>  .../freescale/p1010rdb/spl_minimal.c               |   20 +-
>  board/freescale/p1010rdb/tlb.c                     |   13 +-
>  board/freescale/p1023rdb/Makefile                  |   33 ++
>  board/freescale/p1023rdb/ddr.c                     |  105 +++++
>  board/freescale/p1023rdb/law.c                     |   34 ++
>  board/freescale/p1023rdb/p1023rdb.c                |  161 ++++++++
>  board/freescale/p1023rdb/tlb.c                     |  115 ++++++
>  board/freescale/t4qds/tlb.c                        |   19 +
>  boards.cfg                                         |    8 +
>  common/Makefile                                    |   44 ++-
>  doc/README.srio-pcie-boot-corenet                  |   34 +-
>  drivers/mtd/nand/Makefile                          |    1 +
>  .../mtd/nand/fsl_ifc_spl.c                         |   37 +-
>  drivers/pci/fsl_pci_init.c                         |    6 +-
>  include/configs/B4860QDS.h                         |   35 +-
>  include/configs/BSC9131RDB.h                       |   62 ++-
>  include/configs/BSC9132QDS.h                       |   63 ++-
>  include/configs/P1010RDB.h                         |   77 ++--
>  include/configs/P1023RDB.h                         |  401 ++++++++++++++++++++
>  include/configs/P2041RDB.h                         |    1 +
>  include/configs/P3041DS.h                          |    2 +-
>  include/configs/P4080DS.h                          |    2 +-
>  include/configs/P5020DS.h                          |    2 +-
>  include/configs/a3m071.h                           |    1 +
>  include/configs/am335x_evm.h                       |    1 +
>  include/configs/pcm051.h                           |    1 +
>  include/configs/t4qds.h                            |   35 +-
>  lib/Makefile                                       |   14 +-
>  nand_spl/board/freescale/p1010rdb/Makefile         |  142 -------
>  tools/pblimage.c                                   |   32 +-
>  80 files changed, 1831 insertions(+), 393 deletions(-)
>  create mode 100644 board/freescale/bsc9131rdb/spl_minimal.c
>  create mode 100644 board/freescale/bsc9132qds/spl_minimal.c
>  rename nand_spl/board/freescale/p1010rdb/nand_boot.c => board/freescale/p1010rdb/spl_minimal.c (95%)
>  create mode 100644 board/freescale/p1023rdb/Makefile
>  create mode 100644 board/freescale/p1023rdb/ddr.c
>  create mode 100644 board/freescale/p1023rdb/law.c
>  create mode 100644 board/freescale/p1023rdb/p1023rdb.c
>  create mode 100644 board/freescale/p1023rdb/tlb.c
>  rename nand_spl/nand_boot_fsl_ifc.c => drivers/mtd/nand/fsl_ifc_spl.c (88%)
>  create mode 100644 include/configs/P1023RDB.h
>  delete mode 100644 nand_spl/board/freescale/p1010rdb/Makefile

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130625/22009f90/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-06-21 20:51 Andy Fleming
@ 2013-06-24 20:17 ` Tom Rini
  2013-06-25 14:56 ` Tom Rini
  1 sibling, 0 replies; 172+ messages in thread
From: Tom Rini @ 2013-06-24 20:17 UTC (permalink / raw)
  To: u-boot

On Fri, Jun 21, 2013 at 03:51:37PM -0500, Andy Fleming wrote:

> The following changes since commit 7315cfd9e1922ee1c3c5f016e5a3b16199122172:
> 
>   NET: Fix system hanging if NET device is not installed (2013-06-19 08:32:44 -0400)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 5707233880090f785c33df32c04549ea1aeef61e:
> 
>   powerpc/85xx: Add P1023RDB board support (2013-06-20 17:08:53 -0500)
> 
> ----------------------------------------------------------------
> Andy Fleming (2):
>       85xx: Change clock-frequency compatible to 2.0
>       85xx: Change case of MPC85XX_PORBMSR_ROMLOC_SHIFT
> 
> Axel Lin (1):
>       powerpc: mpc85xx/mpc86xx: Fix off-by-one boundary checking with ARRAY_SIZE
> 
> Chris Packham (1):
>       powerpc/CoreNet: Allow pbl images to take u-boot images != 512K
> 
> Chunhe Lan (1):
>       powerpc/85xx: Add P1023RDB board support
> 
> Fabio Estevam (1):
>       powerpc: Use lower case for the core names
> 
> Liu Gang (6):
>       powerpc/doc: Update the README.srio-pcie-boot-corenet
>       powerpc/boot: Change the macro of Boot from SRIO and PCIE master module
>       powerpc/b4860qds: Enable master module for boot from SRIO and PCIE
>       powerpc/b4860qds: Slave module for boot from SRIO and PCIE
>       powerpc/t4qds: Enable master module for Boot from SRIO and PCIE
>       powerpc/t4qds: Slave module for boot from SRIO and PCIE
> 
> Mingkai Hu (2):
>       powerpc/mpc85xx: explicit cast the SDRAM size to type phys_size_t
>       fsl_ifc: add support for different IFC bank count
> 
> Prabhakar Kushwaha (9):
>       powerpc/mpc85xx:No NOR boot, do not compile IFC errata A003399
>       powerpc/mpc85xx: new SPL support for IFC NAND
>       board/p1010rdb:Add NAND boot support using new SPL format
>       board/bsc9131rdb:Add NAND boot support using new SPL format
>       board/bsc9132qds:Add NAND boot support using new SPL format
>       powerpc/mpc85xx:Fix "boot page TLB" entry size for NAND SPL
>       board/b4860qds: Relax NOR flash teadc timing parameter
>       board/p1010rdb: Fix PCIe TLB creation on CONFIG_PCI define
>       powerpc/mpc85xx:Disable Debug TLB entry before init_tlbs
> 
> Priyanka Jain (3):
>       board/bsc9131rdb: Add targets for Sysclk 100MHz
>       board/bsc9131rdb: Add DSP side tlb and laws
>       board/bsc9131rdb: Update default boot environment settings
> 
> Scott Wood (1):
>       powerpc/mpc85xx: work around erratum A-006593
> 
> Ying Zhang (4):
>       powerpc/mpc85xx: support application without resetvec segment in the linker script
>       powerpc/mpc85xx: modify the functionality clear_bss and aligning the end address of the BSS
>       common/Makefile: Add new symbol CONFIG_SPL_ENV_SUPPORT for environment in SPL
>       Makefile: move the common makefile line to public area
> 
> York Sun (2):
>       powerpc/BSC9132: Add IFC bank count
>       powerpc/pixis: Fix pixis help message
> 
>  README                                             |   27 ++
>  arch/powerpc/cpu/mpc85xx/Makefile                  |    1 +
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    3 +
>  arch/powerpc/cpu/mpc85xx/cpu.c                     |   10 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c                |    5 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init_early.c          |   10 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c                     |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c          |    2 +-
>  arch/powerpc/cpu/mpc85xx/p1010_serdes.c            |    4 +-
>  arch/powerpc/cpu/mpc85xx/p1021_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p1022_serdes.c            |    4 +-
>  arch/powerpc/cpu/mpc85xx/p1023_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p2020_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p2041_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p3041_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p4080_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p5020_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/p5040_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/start.S                   |    2 +-
>  arch/powerpc/cpu/mpc85xx/t1040_serdes.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/u-boot-spl.lds            |   18 +-
>  arch/powerpc/cpu/mpc85xx/u-boot.lds                |    8 +
>  arch/powerpc/cpu/mpc86xx/cpu.c                     |    2 +-
>  arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c          |    4 +-
>  arch/powerpc/cpu/mpc8xxx/fsl_ifc.c                 |   60 ++-
>  arch/powerpc/cpu/mpc8xxx/srio.c                    |    4 +-
>  arch/powerpc/include/asm/config_mpc85xx.h          |   13 +-
>  arch/powerpc/include/asm/fsl_ifc.h                 |   95 +++--
>  arch/powerpc/include/asm/fsl_law.h                 |    5 +
>  arch/powerpc/include/asm/immap_85xx.h              |    4 +-
>  board/freescale/b4860qds/tlb.c                     |   19 +
>  board/freescale/bsc9131rdb/Makefile                |   16 +
>  board/freescale/bsc9131rdb/README                  |   18 +-
>  board/freescale/bsc9131rdb/law.c                   |    4 +
>  board/freescale/bsc9131rdb/spl_minimal.c           |  118 ++++++
>  board/freescale/bsc9131rdb/tlb.c                   |   17 +-
>  board/freescale/bsc9132qds/Makefile                |   17 +
>  board/freescale/bsc9132qds/bsc9132qds.c            |    4 +-
>  board/freescale/bsc9132qds/law.c                   |    6 +-
>  board/freescale/bsc9132qds/spl_minimal.c           |  130 +++++++
>  board/freescale/bsc9132qds/tlb.c                   |   27 +-
>  board/freescale/common/Makefile                    |   10 +
>  board/freescale/common/pixis.c                     |    2 +
>  board/freescale/p1010rdb/Makefile                  |   16 +
>  .../freescale/p1010rdb/spl_minimal.c               |   20 +-
>  board/freescale/p1010rdb/tlb.c                     |   13 +-
>  board/freescale/p1023rdb/Makefile                  |   33 ++
>  board/freescale/p1023rdb/ddr.c                     |  105 +++++
>  board/freescale/p1023rdb/law.c                     |   34 ++
>  board/freescale/p1023rdb/p1023rdb.c                |  161 ++++++++
>  board/freescale/p1023rdb/tlb.c                     |  115 ++++++
>  board/freescale/t4qds/tlb.c                        |   19 +
>  boards.cfg                                         |    8 +
>  common/Makefile                                    |   44 ++-
>  doc/README.srio-pcie-boot-corenet                  |   34 +-
>  drivers/mtd/nand/Makefile                          |    1 +
>  .../mtd/nand/fsl_ifc_spl.c                         |   37 +-
>  drivers/pci/fsl_pci_init.c                         |    6 +-
>  include/configs/B4860QDS.h                         |   35 +-
>  include/configs/BSC9131RDB.h                       |   62 ++-
>  include/configs/BSC9132QDS.h                       |   63 ++-
>  include/configs/P1010RDB.h                         |   77 ++--
>  include/configs/P1023RDB.h                         |  401 ++++++++++++++++++++
>  include/configs/P2041RDB.h                         |    1 +
>  include/configs/P3041DS.h                          |    2 +-
>  include/configs/P4080DS.h                          |    2 +-
>  include/configs/P5020DS.h                          |    2 +-
>  include/configs/a3m071.h                           |    1 +
>  include/configs/am335x_evm.h                       |    1 +
>  include/configs/pcm051.h                           |    1 +
>  include/configs/t4qds.h                            |   35 +-
>  lib/Makefile                                       |   14 +-
>  nand_spl/board/freescale/p1010rdb/Makefile         |  142 -------
>  tools/pblimage.c                                   |   32 +-
>  80 files changed, 1831 insertions(+), 393 deletions(-)
>  create mode 100644 board/freescale/bsc9131rdb/spl_minimal.c
>  create mode 100644 board/freescale/bsc9132qds/spl_minimal.c
>  rename nand_spl/board/freescale/p1010rdb/nand_boot.c => board/freescale/p1010rdb/spl_minimal.c (95%)
>  create mode 100644 board/freescale/p1023rdb/Makefile
>  create mode 100644 board/freescale/p1023rdb/ddr.c
>  create mode 100644 board/freescale/p1023rdb/law.c
>  create mode 100644 board/freescale/p1023rdb/p1023rdb.c
>  create mode 100644 board/freescale/p1023rdb/tlb.c
>  rename nand_spl/nand_boot_fsl_ifc.c => drivers/mtd/nand/fsl_ifc_spl.c (88%)
>  create mode 100644 include/configs/P1023RDB.h
>  delete mode 100644 nand_spl/board/freescale/p1010rdb/Makefile

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130624/2938a639/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2013-06-21 20:51 Andy Fleming
  2013-06-24 20:17 ` Tom Rini
  2013-06-25 14:56 ` Tom Rini
  0 siblings, 2 replies; 172+ messages in thread
From: Andy Fleming @ 2013-06-21 20:51 UTC (permalink / raw)
  To: u-boot

The following changes since commit 7315cfd9e1922ee1c3c5f016e5a3b16199122172:

  NET: Fix system hanging if NET device is not installed (2013-06-19 08:32:44 -0400)

are available in the git repository at:

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

for you to fetch changes up to 5707233880090f785c33df32c04549ea1aeef61e:

  powerpc/85xx: Add P1023RDB board support (2013-06-20 17:08:53 -0500)

----------------------------------------------------------------
Andy Fleming (2):
      85xx: Change clock-frequency compatible to 2.0
      85xx: Change case of MPC85XX_PORBMSR_ROMLOC_SHIFT

Axel Lin (1):
      powerpc: mpc85xx/mpc86xx: Fix off-by-one boundary checking with ARRAY_SIZE

Chris Packham (1):
      powerpc/CoreNet: Allow pbl images to take u-boot images != 512K

Chunhe Lan (1):
      powerpc/85xx: Add P1023RDB board support

Fabio Estevam (1):
      powerpc: Use lower case for the core names

Liu Gang (6):
      powerpc/doc: Update the README.srio-pcie-boot-corenet
      powerpc/boot: Change the macro of Boot from SRIO and PCIE master module
      powerpc/b4860qds: Enable master module for boot from SRIO and PCIE
      powerpc/b4860qds: Slave module for boot from SRIO and PCIE
      powerpc/t4qds: Enable master module for Boot from SRIO and PCIE
      powerpc/t4qds: Slave module for boot from SRIO and PCIE

Mingkai Hu (2):
      powerpc/mpc85xx: explicit cast the SDRAM size to type phys_size_t
      fsl_ifc: add support for different IFC bank count

Prabhakar Kushwaha (9):
      powerpc/mpc85xx:No NOR boot, do not compile IFC errata A003399
      powerpc/mpc85xx: new SPL support for IFC NAND
      board/p1010rdb:Add NAND boot support using new SPL format
      board/bsc9131rdb:Add NAND boot support using new SPL format
      board/bsc9132qds:Add NAND boot support using new SPL format
      powerpc/mpc85xx:Fix "boot page TLB" entry size for NAND SPL
      board/b4860qds: Relax NOR flash teadc timing parameter
      board/p1010rdb: Fix PCIe TLB creation on CONFIG_PCI define
      powerpc/mpc85xx:Disable Debug TLB entry before init_tlbs

Priyanka Jain (3):
      board/bsc9131rdb: Add targets for Sysclk 100MHz
      board/bsc9131rdb: Add DSP side tlb and laws
      board/bsc9131rdb: Update default boot environment settings

Scott Wood (1):
      powerpc/mpc85xx: work around erratum A-006593

Ying Zhang (4):
      powerpc/mpc85xx: support application without resetvec segment in the linker script
      powerpc/mpc85xx: modify the functionality clear_bss and aligning the end address of the BSS
      common/Makefile: Add new symbol CONFIG_SPL_ENV_SUPPORT for environment in SPL
      Makefile: move the common makefile line to public area

York Sun (2):
      powerpc/BSC9132: Add IFC bank count
      powerpc/pixis: Fix pixis help message

 README                                             |   27 ++
 arch/powerpc/cpu/mpc85xx/Makefile                  |    1 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    3 +
 arch/powerpc/cpu/mpc85xx/cpu.c                     |   10 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |    5 +-
 arch/powerpc/cpu/mpc85xx/cpu_init_early.c          |   10 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                     |    2 +-
 arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c          |    4 +-
 arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c          |    4 +-
 arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c          |    2 +-
 arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c          |    2 +-
 arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c          |    2 +-
 arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c          |    2 +-
 arch/powerpc/cpu/mpc85xx/p1010_serdes.c            |    4 +-
 arch/powerpc/cpu/mpc85xx/p1021_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/p1022_serdes.c            |    4 +-
 arch/powerpc/cpu/mpc85xx/p1023_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/p2020_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/p2041_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/p3041_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/p4080_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/p5020_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/p5040_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/start.S                   |    2 +-
 arch/powerpc/cpu/mpc85xx/t1040_serdes.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/u-boot-spl.lds            |   18 +-
 arch/powerpc/cpu/mpc85xx/u-boot.lds                |    8 +
 arch/powerpc/cpu/mpc86xx/cpu.c                     |    2 +-
 arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c          |    4 +-
 arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c          |    4 +-
 arch/powerpc/cpu/mpc8xxx/fsl_ifc.c                 |   60 ++-
 arch/powerpc/cpu/mpc8xxx/srio.c                    |    4 +-
 arch/powerpc/include/asm/config_mpc85xx.h          |   13 +-
 arch/powerpc/include/asm/fsl_ifc.h                 |   95 +++--
 arch/powerpc/include/asm/fsl_law.h                 |    5 +
 arch/powerpc/include/asm/immap_85xx.h              |    4 +-
 board/freescale/b4860qds/tlb.c                     |   19 +
 board/freescale/bsc9131rdb/Makefile                |   16 +
 board/freescale/bsc9131rdb/README                  |   18 +-
 board/freescale/bsc9131rdb/law.c                   |    4 +
 board/freescale/bsc9131rdb/spl_minimal.c           |  118 ++++++
 board/freescale/bsc9131rdb/tlb.c                   |   17 +-
 board/freescale/bsc9132qds/Makefile                |   17 +
 board/freescale/bsc9132qds/bsc9132qds.c            |    4 +-
 board/freescale/bsc9132qds/law.c                   |    6 +-
 board/freescale/bsc9132qds/spl_minimal.c           |  130 +++++++
 board/freescale/bsc9132qds/tlb.c                   |   27 +-
 board/freescale/common/Makefile                    |   10 +
 board/freescale/common/pixis.c                     |    2 +
 board/freescale/p1010rdb/Makefile                  |   16 +
 .../freescale/p1010rdb/spl_minimal.c               |   20 +-
 board/freescale/p1010rdb/tlb.c                     |   13 +-
 board/freescale/p1023rdb/Makefile                  |   33 ++
 board/freescale/p1023rdb/ddr.c                     |  105 +++++
 board/freescale/p1023rdb/law.c                     |   34 ++
 board/freescale/p1023rdb/p1023rdb.c                |  161 ++++++++
 board/freescale/p1023rdb/tlb.c                     |  115 ++++++
 board/freescale/t4qds/tlb.c                        |   19 +
 boards.cfg                                         |    8 +
 common/Makefile                                    |   44 ++-
 doc/README.srio-pcie-boot-corenet                  |   34 +-
 drivers/mtd/nand/Makefile                          |    1 +
 .../mtd/nand/fsl_ifc_spl.c                         |   37 +-
 drivers/pci/fsl_pci_init.c                         |    6 +-
 include/configs/B4860QDS.h                         |   35 +-
 include/configs/BSC9131RDB.h                       |   62 ++-
 include/configs/BSC9132QDS.h                       |   63 ++-
 include/configs/P1010RDB.h                         |   77 ++--
 include/configs/P1023RDB.h                         |  401 ++++++++++++++++++++
 include/configs/P2041RDB.h                         |    1 +
 include/configs/P3041DS.h                          |    2 +-
 include/configs/P4080DS.h                          |    2 +-
 include/configs/P5020DS.h                          |    2 +-
 include/configs/a3m071.h                           |    1 +
 include/configs/am335x_evm.h                       |    1 +
 include/configs/pcm051.h                           |    1 +
 include/configs/t4qds.h                            |   35 +-
 lib/Makefile                                       |   14 +-
 nand_spl/board/freescale/p1010rdb/Makefile         |  142 -------
 tools/pblimage.c                                   |   32 +-
 80 files changed, 1831 insertions(+), 393 deletions(-)
 create mode 100644 board/freescale/bsc9131rdb/spl_minimal.c
 create mode 100644 board/freescale/bsc9132qds/spl_minimal.c
 rename nand_spl/board/freescale/p1010rdb/nand_boot.c => board/freescale/p1010rdb/spl_minimal.c (95%)
 create mode 100644 board/freescale/p1023rdb/Makefile
 create mode 100644 board/freescale/p1023rdb/ddr.c
 create mode 100644 board/freescale/p1023rdb/law.c
 create mode 100644 board/freescale/p1023rdb/p1023rdb.c
 create mode 100644 board/freescale/p1023rdb/tlb.c
 rename nand_spl/nand_boot_fsl_ifc.c => drivers/mtd/nand/fsl_ifc_spl.c (88%)
 create mode 100644 include/configs/P1023RDB.h
 delete mode 100644 nand_spl/board/freescale/p1010rdb/Makefile

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-05-24 22:17 Andy Fleming
@ 2013-05-25 18:40 ` Tom Rini
  0 siblings, 0 replies; 172+ messages in thread
From: Tom Rini @ 2013-05-25 18:40 UTC (permalink / raw)
  To: u-boot

On Fri, May 24, 2013 at 05:17:48PM -0500, Andy Fleming wrote:

> The following changes since commit 53237afe5b64abe7b17fbfed958f3dc83f503ffa:
> 
>   cmd_mem: fix cp command (2013-05-24 10:38:08 -0400)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to a71d45d706a5b51c348160163b6c159632273fed:
> 
>   powerpc/mpc85xx: Clear L1 D-cache lock (2013-05-24 16:54:14 -0500)
> 
> ----------------------------------------------------------------
> Ed Swarthout (2):
>       powerpc/qixis: add clock measurement registers
>       powerpc/t4qds: use clock measurement for sysclk and ddr clock
> 
> James Yang (2):
>       Enable L2 cache parity/ECC error checking
>       Add e6500 L2 replacement policy selection
> 
> Poonam Aggrwal (1):
>       powerpc/B4: Merge B4420 and B4860 in config_mpc85xx.h
> 
> Ruchika Gupta (1):
>       SECURE BOOT - Removed deletion of TLB entries code
> 
> Shaohui Xie (6):
>       net/phy: fix select line for TN80xx
>       T4240/ramboot: enable PBL tool for T4240
>       powerpc/p5040: enable NAND, SD, SPI boot support
>       powerpc/p5040: enable PBL tool support
>       powerpc/p2041: fix serdes reference clock frequency display for PC board
>       powerpc/p5040: fix mdio mux for 10G port
> 
> Shaveta Leekha (2):
>       powerpc/b4860: fix for Serdes connectivity to SFP's
>       powerpc/b4860qds: Add LAW Target ID and Create LAW entry for Maple
> 
> Shengzhou Liu (1):
>       powerpc/t4240qds: fix PHY reset timeout issue
> 
> Stephen George (1):
>       board/t4240qds, b4860qds: LAW/TLB for DCSR set to size 32M
> 
> Suresh Gupta (1):
>       Enable XAUI interface for B4860QDS
> 
> Xie Xiaobo (1):
>       sf: spansion: Add support for S25FL128S
> 
> York Sun (10):
>       common: Update cmd_bdinfo for PPC
>       powerpc/t4240qds: Add board detail for bdinfo command
>       powerpc/mpc85xx: check if core is disabled for showing status
>       powerpc/t4240qds: Add VDD override
>       powerpc/T4160: Merge T4160 and T4240 in config_mpc85xx.h
>       powerpc/mpc8xxx: Add T1040 and variant SoCs
>       powerpc/chassis2: Change core numbering scheme
>       powerpc/mpc8xxx: Allow DDR overclock
>       powerpc/t4qds: Add SW7[4] in the DIP switch display
>       powerpc/mpc85xx: Clear L1 D-cache lock
> 
>  arch/powerpc/cpu/mpc85xx/Makefile                  |    3 +
>  arch/powerpc/cpu/mpc85xx/cpu_init.c                |    2 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init_early.c          |    7 -
>  arch/powerpc/cpu/mpc85xx/mp.c                      |    2 +
>  arch/powerpc/cpu/mpc85xx/release.S                 |   41 +++--
>  arch/powerpc/cpu/mpc85xx/speed.c                   |   20 +--
>  arch/powerpc/cpu/mpc85xx/start.S                   |    4 +-
>  arch/powerpc/cpu/mpc85xx/t1040_ids.c               |  135 +++++++++++++++
>  arch/powerpc/cpu/mpc85xx/t1040_serdes.c            |   93 +++++++++++
>  arch/powerpc/cpu/mpc8xxx/cpu.c                     |   59 ++++++-
>  .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |    2 -
>  arch/powerpc/include/asm/config_mpc85xx.h          |   98 +++++------
>  arch/powerpc/include/asm/fsl_law.h                 |    2 +
>  arch/powerpc/include/asm/fsl_secure_boot.h         |   10 --
>  arch/powerpc/include/asm/fsl_serdes.h              |    8 +
>  arch/powerpc/include/asm/immap_85xx.h              |   29 ++--
>  arch/powerpc/include/asm/processor.h               |   17 ++
>  board/freescale/b4860qds/b4860qds.c                |    6 +-
>  board/freescale/b4860qds/b4860qds_crossbar_con.h   |   31 ++--
>  board/freescale/b4860qds/eth_b4860qds.c            |   35 ++++
>  board/freescale/b4860qds/law.c                     |    6 +-
>  board/freescale/b4860qds/tlb.c                     |    2 +-
>  board/freescale/common/qixis.h                     |    6 +-
>  board/freescale/corenet_ds/eth_superhydra.c        |    8 +-
>  board/freescale/corenet_ds/rcw_p5040ds.cfg         |   11 ++
>  board/freescale/p2041rdb/p2041rdb.c                |   11 ++
>  board/freescale/t4qds/eth.c                        |   19 ++-
>  board/freescale/t4qds/law.c                        |    3 +-
>  board/freescale/t4qds/t4_pbi.cfg                   |   36 ++++
>  board/freescale/t4qds/t4_rcw.cfg                   |    7 +
>  board/freescale/t4qds/t4qds.c                      |  172 +++++++++++++++++++-
>  board/freescale/t4qds/tlb.c                        |    2 +-
>  boards.cfg                                         |    3 +
>  common/cmd_bdinfo.c                                |    5 +
>  doc/README.b4860qds                                |    4 +-
>  doc/README.t4240qds                                |   26 ++-
>  drivers/mtd/spi/spansion.c                         |    2 +-
>  drivers/net/fm/b4860.c                             |    6 +-
>  drivers/net/phy/teranetics.c                       |   16 +-
>  include/configs/B4860QDS.h                         |   16 +-
>  include/configs/corenet_ds.h                       |    2 +
>  include/configs/t4qds.h                            |    3 +-
>  42 files changed, 805 insertions(+), 165 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/t1040_ids.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/t1040_serdes.c
>  create mode 100644 board/freescale/corenet_ds/rcw_p5040ds.cfg
>  create mode 100644 board/freescale/t4qds/t4_pbi.cfg
>  create mode 100644 board/freescale/t4qds/t4_rcw.cfg

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130525/910abc36/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2013-05-24 22:17 Andy Fleming
  2013-05-25 18:40 ` Tom Rini
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2013-05-24 22:17 UTC (permalink / raw)
  To: u-boot

The following changes since commit 53237afe5b64abe7b17fbfed958f3dc83f503ffa:

  cmd_mem: fix cp command (2013-05-24 10:38:08 -0400)

are available in the git repository at:

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

for you to fetch changes up to a71d45d706a5b51c348160163b6c159632273fed:

  powerpc/mpc85xx: Clear L1 D-cache lock (2013-05-24 16:54:14 -0500)

----------------------------------------------------------------
Ed Swarthout (2):
      powerpc/qixis: add clock measurement registers
      powerpc/t4qds: use clock measurement for sysclk and ddr clock

James Yang (2):
      Enable L2 cache parity/ECC error checking
      Add e6500 L2 replacement policy selection

Poonam Aggrwal (1):
      powerpc/B4: Merge B4420 and B4860 in config_mpc85xx.h

Ruchika Gupta (1):
      SECURE BOOT - Removed deletion of TLB entries code

Shaohui Xie (6):
      net/phy: fix select line for TN80xx
      T4240/ramboot: enable PBL tool for T4240
      powerpc/p5040: enable NAND, SD, SPI boot support
      powerpc/p5040: enable PBL tool support
      powerpc/p2041: fix serdes reference clock frequency display for PC board
      powerpc/p5040: fix mdio mux for 10G port

Shaveta Leekha (2):
      powerpc/b4860: fix for Serdes connectivity to SFP's
      powerpc/b4860qds: Add LAW Target ID and Create LAW entry for Maple

Shengzhou Liu (1):
      powerpc/t4240qds: fix PHY reset timeout issue

Stephen George (1):
      board/t4240qds, b4860qds: LAW/TLB for DCSR set to size 32M

Suresh Gupta (1):
      Enable XAUI interface for B4860QDS

Xie Xiaobo (1):
      sf: spansion: Add support for S25FL128S

York Sun (10):
      common: Update cmd_bdinfo for PPC
      powerpc/t4240qds: Add board detail for bdinfo command
      powerpc/mpc85xx: check if core is disabled for showing status
      powerpc/t4240qds: Add VDD override
      powerpc/T4160: Merge T4160 and T4240 in config_mpc85xx.h
      powerpc/mpc8xxx: Add T1040 and variant SoCs
      powerpc/chassis2: Change core numbering scheme
      powerpc/mpc8xxx: Allow DDR overclock
      powerpc/t4qds: Add SW7[4] in the DIP switch display
      powerpc/mpc85xx: Clear L1 D-cache lock

 arch/powerpc/cpu/mpc85xx/Makefile                  |    3 +
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |    2 +-
 arch/powerpc/cpu/mpc85xx/cpu_init_early.c          |    7 -
 arch/powerpc/cpu/mpc85xx/mp.c                      |    2 +
 arch/powerpc/cpu/mpc85xx/release.S                 |   41 +++--
 arch/powerpc/cpu/mpc85xx/speed.c                   |   20 +--
 arch/powerpc/cpu/mpc85xx/start.S                   |    4 +-
 arch/powerpc/cpu/mpc85xx/t1040_ids.c               |  135 +++++++++++++++
 arch/powerpc/cpu/mpc85xx/t1040_serdes.c            |   93 +++++++++++
 arch/powerpc/cpu/mpc8xxx/cpu.c                     |   59 ++++++-
 .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |    2 -
 arch/powerpc/include/asm/config_mpc85xx.h          |   98 +++++------
 arch/powerpc/include/asm/fsl_law.h                 |    2 +
 arch/powerpc/include/asm/fsl_secure_boot.h         |   10 --
 arch/powerpc/include/asm/fsl_serdes.h              |    8 +
 arch/powerpc/include/asm/immap_85xx.h              |   29 ++--
 arch/powerpc/include/asm/processor.h               |   17 ++
 board/freescale/b4860qds/b4860qds.c                |    6 +-
 board/freescale/b4860qds/b4860qds_crossbar_con.h   |   31 ++--
 board/freescale/b4860qds/eth_b4860qds.c            |   35 ++++
 board/freescale/b4860qds/law.c                     |    6 +-
 board/freescale/b4860qds/tlb.c                     |    2 +-
 board/freescale/common/qixis.h                     |    6 +-
 board/freescale/corenet_ds/eth_superhydra.c        |    8 +-
 board/freescale/corenet_ds/rcw_p5040ds.cfg         |   11 ++
 board/freescale/p2041rdb/p2041rdb.c                |   11 ++
 board/freescale/t4qds/eth.c                        |   19 ++-
 board/freescale/t4qds/law.c                        |    3 +-
 board/freescale/t4qds/t4_pbi.cfg                   |   36 ++++
 board/freescale/t4qds/t4_rcw.cfg                   |    7 +
 board/freescale/t4qds/t4qds.c                      |  172 +++++++++++++++++++-
 board/freescale/t4qds/tlb.c                        |    2 +-
 boards.cfg                                         |    3 +
 common/cmd_bdinfo.c                                |    5 +
 doc/README.b4860qds                                |    4 +-
 doc/README.t4240qds                                |   26 ++-
 drivers/mtd/spi/spansion.c                         |    2 +-
 drivers/net/fm/b4860.c                             |    6 +-
 drivers/net/phy/teranetics.c                       |   16 +-
 include/configs/B4860QDS.h                         |   16 +-
 include/configs/corenet_ds.h                       |    2 +
 include/configs/t4qds.h                            |    3 +-
 42 files changed, 805 insertions(+), 165 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/t1040_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/t1040_serdes.c
 create mode 100644 board/freescale/corenet_ds/rcw_p5040ds.cfg
 create mode 100644 board/freescale/t4qds/t4_pbi.cfg
 create mode 100644 board/freescale/t4qds/t4_rcw.cfg

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-05-10 15:23 ` Tom Rini
@ 2013-05-10 16:13   ` Fleming Andy-AFLEMING
  0 siblings, 0 replies; 172+ messages in thread
From: Fleming Andy-AFLEMING @ 2013-05-10 16:13 UTC (permalink / raw)
  To: u-boot


On May 10, 2013, at 10:23 AM, Tom Rini wrote:

> On Thu, May 09, 2013 at 05:20:32PM -0500, Andy Fleming wrote:
> 
>> The following changes since commit 4e779ad2e54e39d5343c8c83b4fc686a7bb16859:
>> 
>>  gpio: Add support for microblaze xilinx GPIO (2013-05-09 11:20:08 +0200)
>> 
>> are available in the git repository at:
>> 
>>  git://www.denx.de/git/u-boot-mpc85xx.git master
>> 
>> for you to fetch changes up to a9c81eaa54f6ef0976cf15065cd3efc9430fdca8:
>> 
>>  powerpc: Add T4160QDS (2013-05-09 17:07:39 -0500)
> [snip]
>> Roy ZANG (1):
>>      powerpc/pcie: add PCIe version 3.x support
> 
> This change breaks a handful of platforms thusly:
> Configuring for MPC8315ERDB_NAND - Board: MPC8315ERDB, Options:
> NAND_U_BOOT
> pcie.c:315:34: error: 'PCI_LTSSM' undeclared (first use in this
> function)
> pcie.c:316:15: error: 'PCI_LTSSM_L0' undeclared (first use in this
> function)
> 
> And from MAKEALL:
> Boards compiled: 637
> Boards with errors: 7 ( mpc8308_p1m MPC8315ERDB_NAND MPC8315ERDB
> MPC837XERDB MPC837XEMDS_HOST MERGERBOX MPC8308RDB )
> 
> Please fix, thanks!


Ugh, sorry. I even looked very skeptically at that, and decided to trust the change despite my misgivings. I will fix.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-05-09 22:20 Andy Fleming
@ 2013-05-10 15:23 ` Tom Rini
  2013-05-10 16:13   ` Fleming Andy-AFLEMING
  0 siblings, 1 reply; 172+ messages in thread
From: Tom Rini @ 2013-05-10 15:23 UTC (permalink / raw)
  To: u-boot

On Thu, May 09, 2013 at 05:20:32PM -0500, Andy Fleming wrote:

> The following changes since commit 4e779ad2e54e39d5343c8c83b4fc686a7bb16859:
> 
>   gpio: Add support for microblaze xilinx GPIO (2013-05-09 11:20:08 +0200)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to a9c81eaa54f6ef0976cf15065cd3efc9430fdca8:
> 
>   powerpc: Add T4160QDS (2013-05-09 17:07:39 -0500)
[snip]
> Roy ZANG (1):
>       powerpc/pcie: add PCIe version 3.x support

This change breaks a handful of platforms thusly:
Configuring for MPC8315ERDB_NAND - Board: MPC8315ERDB, Options:
NAND_U_BOOT
pcie.c:315:34: error: 'PCI_LTSSM' undeclared (first use in this
function)
pcie.c:316:15: error: 'PCI_LTSSM_L0' undeclared (first use in this
function)

And from MAKEALL:
Boards compiled: 637
Boards with errors: 7 ( mpc8308_p1m MPC8315ERDB_NAND MPC8315ERDB
MPC837XERDB MPC837XEMDS_HOST MERGERBOX MPC8308RDB )

Please fix, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130510/0761da94/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2013-05-09 22:20 Andy Fleming
  2013-05-10 15:23 ` Tom Rini
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2013-05-09 22:20 UTC (permalink / raw)
  To: u-boot

The following changes since commit 4e779ad2e54e39d5343c8c83b4fc686a7bb16859:

  gpio: Add support for microblaze xilinx GPIO (2013-05-09 11:20:08 +0200)

are available in the git repository at:

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

for you to fetch changes up to a9c81eaa54f6ef0976cf15065cd3efc9430fdca8:

  powerpc: Add T4160QDS (2013-05-09 17:07:39 -0500)

----------------------------------------------------------------
Andy Fleming (2):
      powerpc/mpc85xx: Add definitions for HDBCR registers
      e6500: Move L1 enablement after L2 enablement

Roy ZANG (1):
      powerpc/pcie: add PCIe version 3.x support

Roy Zang (3):
      T4/serdes: fix the serdes clock frequency
      T4/SerDes: correct the SATA index
      T4/USB: Add USB 2.0 UTMI dual phy support

Sandeep Singh (1):
      powerpc/B4860: Corrected FMAN1 operating frequency print at u-boot

Shaohui Xie (3):
      powerpc/t4240qds: Fix SPI flash type
      powerpc/t4240qds: fix XAUI card PHY address
      Fman/t4240: some fix for 10G XAUI

York Sun (11):
      powerpc/mpc85xx: Update corenet global utility block registers
      powerpc/t4240qds: Update DDR timing table
      powerpc/mpc8xxx: Fix DDR 3-way interleaving
      powerpc/mpc85xx: Fix portal setup
      powerpc/t4240qds: Add voltage ID support
      powerpc/corenet2: Print SerDes protocol in decimal
      powerpc/mpc85xx: Fix PIR parsing for chassis2
      powerpc/t4240: Fix SerDes protocol arrays with const prefix
      powerpc/mpc85xx: Add T4160 SoC
      powerpc/t4240qds: Move SoC define into boards.cfg
      powerpc: Add T4160QDS

 arch/powerpc/cpu/mpc85xx/Makefile              |    3 +
 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c |    2 +-
 arch/powerpc/cpu/mpc85xx/portals.c             |   36 ++--
 arch/powerpc/cpu/mpc85xx/release.S             |   14 +-
 arch/powerpc/cpu/mpc85xx/speed.c               |    8 +
 arch/powerpc/cpu/mpc85xx/start.S               |  102 +++++------
 arch/powerpc/cpu/mpc85xx/t4240_serdes.c        |  150 ++++++++++++++-
 arch/powerpc/cpu/mpc8xxx/cpu.c                 |    1 +
 arch/powerpc/cpu/mpc8xxx/ddr/main.c            |   19 +-
 arch/powerpc/include/asm/config_mpc85xx.h      |   37 +++-
 arch/powerpc/include/asm/fsl_pci.h             |   35 +++-
 arch/powerpc/include/asm/immap_85xx.h          |   66 +++++--
 arch/powerpc/include/asm/processor.h           |   11 ++
 board/freescale/t4qds/ddr.c                    |   56 +++---
 board/freescale/t4qds/t4qds.c                  |  233 +++++++++++++++++++++++-
 boards.cfg                                     |    9 +-
 drivers/net/fm/Makefile                        |    1 +
 drivers/net/fm/eth.c                           |    2 +
 drivers/net/fm/init.c                          |    6 +
 drivers/net/fm/t4240.c                         |   14 +-
 drivers/pci/fsl_pci_init.c                     |   20 +-
 drivers/usb/host/ehci-fsl.c                    |   21 +++
 include/configs/T4240QDS.h                     |    1 -
 include/configs/t4qds.h                        |   37 +++-
 include/fm_eth.h                               |    4 +-
 include/pci.h                                  |    7 -
 26 files changed, 733 insertions(+), 162 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-05-03 13:32 ` Tom Rini
@ 2013-05-03 23:05   ` Fleming Andy-AFLEMING
  0 siblings, 0 replies; 172+ messages in thread
From: Fleming Andy-AFLEMING @ 2013-05-03 23:05 UTC (permalink / raw)
  To: u-boot

>> include/configs/P1022DS.h                     |  132 ++++++++++++++--
>> include/configs/corenet_ds.h                  |    1 +
>> 28 files changed, 833 insertions(+), 72 deletions(-)
>> create mode 100644 board/freescale/p1022ds/spl_minimal.c
>> create mode 100644 doc/README.p1010rdb
>> create mode 100644 doc/README.ramboot-ppc85xx
> 
> With the patch I just sent to fix P1022DS as well, applied to
> u-boot/master, thanks!

Ah, nice catch, thanks!

Andy

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-05-02 23:15 Andy Fleming
@ 2013-05-03 13:32 ` Tom Rini
  2013-05-03 23:05   ` Fleming Andy-AFLEMING
  0 siblings, 1 reply; 172+ messages in thread
From: Tom Rini @ 2013-05-03 13:32 UTC (permalink / raw)
  To: u-boot

On Thu, May 02, 2013 at 06:15:46PM -0500, Andy Fleming wrote:

> The following changes since commit 63216de13488e8bc81afb53d0f5177142ee34ceb:
> 
>   omap5_uevm: Enable redundant MMC environment (2013-05-01 16:41:10 -0400)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 9e186857c7f99600808b8ecb2fc0fa2adeddebaa:
> 
>   powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards (2013-05-02 16:57:34 -0500)
> 
> Apologies for the long absense. I got buried in large amounts of work.
> This is not all of the outstanding 85xx patches, but I intend to now switch
> and apply a bunch of my MMC backlog.
> 
> ----------------------------------------------------------------
> Cristian Sovaiala (1):
>       powerpc/mpc85xx: Changed LIODN offset values
> 
> Dongsheng.wang at freescale.com (1):
>       powerpc/mpc85xx: add setting of clock-frequency for mpic node
> 
> Horst Kronstorfer (1):
>       mpc85xx: Fix a compiler warning when CONFIG_WATCHDOG is turned on
> 
> Jeffrey Ladouceur (1):
>       powerpc/mpc85xx: Add revision properties in portal device tree node 'pme'
> 
> Jiang Bin (1):
>       board/freescale/common/cds_pci_ft.c: Fix rotate wrong cells in interrupt-map property
> 
> Liu Gang (2):
>       powerpc/b4: Fix the wrong register offset of B4 PCIE module
>       powerpc/b4860qds: Add the tlb entries for SRIO interfaces
> 
> Matthew McClintock (1):
>       powerpc/p1022ds: Add support for NAND and NAND boot using SPL
> 
> Poonam Aggrwal (1):
>       doc/ramboot.mpc85xx: Documented the RAMBOOT for MPC85xx
> 
> Prabhakar Kushwaha (1):
>       powerpc/mpc85xx:IFC Errata A003399 is not valid for BSC913x
> 
> Shaohui Xie (1):
>       powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards
> 
> Shengzhou Liu (3):
>       powerpc/b4860: Adding workaround errata A-005871
>       powerpc/p1010rdb: Change flexcan compatible string
>       powerpc/p1010rdb: add readme document for p1010rdb
> 
> Tang Yuantian (1):
>       powerpc/mpc85xx: set clock-frequency for T4/B4 clockgen node
> 
> Timur Tabi (1):
>       powerpc/85xx: add SerDes bank 4 lanes
> 
> Xu Jiucheng (1):
>       powerpc/p1_p2_rdb_pc: Add a pin to reset the DDR chip for P1021RDB-PC
> 
> Xulei (1):
>       powerpc/85xx: Add workaround for errata USB-14 (enable on P204x/P3041/P50x0)
> 
> York Sun (1):
>       powerpc/mpc85xx: Extend workaround for erratum DDR_A003 to other SoCs
> 
> Zang Roy-R61911 (1):
>       fman/mEMAC: set SETSP bit in IF_MODE regisgter for RGMII speed
> 
> Zhicheng Fan (1):
>       qoriq/p1_p2_rdb_pc: USB device-tree fixups for P1020
> 
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c         |    3 +
>  arch/powerpc/cpu/mpc85xx/cpu.c                |   18 ++-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c           |   14 ++
>  arch/powerpc/cpu/mpc85xx/fdt.c                |    7 +
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |    4 +
>  arch/powerpc/cpu/mpc85xx/p2041_ids.c          |   20 +--
>  arch/powerpc/cpu/mpc85xx/p3041_ids.c          |   20 +--
>  arch/powerpc/cpu/mpc85xx/p5020_ids.c          |   20 +--
>  arch/powerpc/cpu/mpc85xx/portals.c            |   20 ++-
>  arch/powerpc/include/asm/config_mpc85xx.h     |   12 +-
>  arch/powerpc/include/asm/fsl_memac.h          |    4 +
>  arch/powerpc/include/asm/immap_85xx.h         |   12 +-
>  board/freescale/b4860qds/tlb.c                |   19 ++-
>  board/freescale/common/Makefile               |    6 +
>  board/freescale/common/cds_pci_ft.c           |   26 +++-
>  board/freescale/p1010rdb/p1010rdb.c           |    2 +-
>  board/freescale/p1022ds/Makefile              |   14 ++
>  board/freescale/p1022ds/law.c                 |    1 +
>  board/freescale/p1022ds/spl_minimal.c         |  129 ++++++++++++++++
>  board/freescale/p1022ds/tlb.c                 |   20 ++-
>  board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c   |   66 +++++++-
>  board/freescale/p1_p2_rdb_pc/spl_minimal.c    |   15 ++
>  boards.cfg                                    |    2 +
>  doc/README.p1010rdb                           |  199 +++++++++++++++++++++++++
>  doc/README.ramboot-ppc85xx                    |  102 +++++++++++++
>  drivers/net/fm/memac.c                        |   17 +++
>  include/configs/P1022DS.h                     |  132 ++++++++++++++--
>  include/configs/corenet_ds.h                  |    1 +
>  28 files changed, 833 insertions(+), 72 deletions(-)
>  create mode 100644 board/freescale/p1022ds/spl_minimal.c
>  create mode 100644 doc/README.p1010rdb
>  create mode 100644 doc/README.ramboot-ppc85xx

With the patch I just sent to fix P1022DS as well, applied to
u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130503/0cfceab3/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2013-05-02 23:15 Andy Fleming
  2013-05-03 13:32 ` Tom Rini
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2013-05-02 23:15 UTC (permalink / raw)
  To: u-boot

The following changes since commit 63216de13488e8bc81afb53d0f5177142ee34ceb:

  omap5_uevm: Enable redundant MMC environment (2013-05-01 16:41:10 -0400)

are available in the git repository at:

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

for you to fetch changes up to 9e186857c7f99600808b8ecb2fc0fa2adeddebaa:

  powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards (2013-05-02 16:57:34 -0500)

Apologies for the long absense. I got buried in large amounts of work.
This is not all of the outstanding 85xx patches, but I intend to now switch
and apply a bunch of my MMC backlog.

----------------------------------------------------------------
Cristian Sovaiala (1):
      powerpc/mpc85xx: Changed LIODN offset values

Dongsheng.wang at freescale.com (1):
      powerpc/mpc85xx: add setting of clock-frequency for mpic node

Horst Kronstorfer (1):
      mpc85xx: Fix a compiler warning when CONFIG_WATCHDOG is turned on

Jeffrey Ladouceur (1):
      powerpc/mpc85xx: Add revision properties in portal device tree node 'pme'

Jiang Bin (1):
      board/freescale/common/cds_pci_ft.c: Fix rotate wrong cells in interrupt-map property

Liu Gang (2):
      powerpc/b4: Fix the wrong register offset of B4 PCIE module
      powerpc/b4860qds: Add the tlb entries for SRIO interfaces

Matthew McClintock (1):
      powerpc/p1022ds: Add support for NAND and NAND boot using SPL

Poonam Aggrwal (1):
      doc/ramboot.mpc85xx: Documented the RAMBOOT for MPC85xx

Prabhakar Kushwaha (1):
      powerpc/mpc85xx:IFC Errata A003399 is not valid for BSC913x

Shaohui Xie (1):
      powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards

Shengzhou Liu (3):
      powerpc/b4860: Adding workaround errata A-005871
      powerpc/p1010rdb: Change flexcan compatible string
      powerpc/p1010rdb: add readme document for p1010rdb

Tang Yuantian (1):
      powerpc/mpc85xx: set clock-frequency for T4/B4 clockgen node

Timur Tabi (1):
      powerpc/85xx: add SerDes bank 4 lanes

Xu Jiucheng (1):
      powerpc/p1_p2_rdb_pc: Add a pin to reset the DDR chip for P1021RDB-PC

Xulei (1):
      powerpc/85xx: Add workaround for errata USB-14 (enable on P204x/P3041/P50x0)

York Sun (1):
      powerpc/mpc85xx: Extend workaround for erratum DDR_A003 to other SoCs

Zang Roy-R61911 (1):
      fman/mEMAC: set SETSP bit in IF_MODE regisgter for RGMII speed

Zhicheng Fan (1):
      qoriq/p1_p2_rdb_pc: USB device-tree fixups for P1020

 arch/powerpc/cpu/mpc85xx/cmd_errata.c         |    3 +
 arch/powerpc/cpu/mpc85xx/cpu.c                |   18 ++-
 arch/powerpc/cpu/mpc85xx/cpu_init.c           |   14 ++
 arch/powerpc/cpu/mpc85xx/fdt.c                |    7 +
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |    4 +
 arch/powerpc/cpu/mpc85xx/p2041_ids.c          |   20 +--
 arch/powerpc/cpu/mpc85xx/p3041_ids.c          |   20 +--
 arch/powerpc/cpu/mpc85xx/p5020_ids.c          |   20 +--
 arch/powerpc/cpu/mpc85xx/portals.c            |   20 ++-
 arch/powerpc/include/asm/config_mpc85xx.h     |   12 +-
 arch/powerpc/include/asm/fsl_memac.h          |    4 +
 arch/powerpc/include/asm/immap_85xx.h         |   12 +-
 board/freescale/b4860qds/tlb.c                |   19 ++-
 board/freescale/common/Makefile               |    6 +
 board/freescale/common/cds_pci_ft.c           |   26 +++-
 board/freescale/p1010rdb/p1010rdb.c           |    2 +-
 board/freescale/p1022ds/Makefile              |   14 ++
 board/freescale/p1022ds/law.c                 |    1 +
 board/freescale/p1022ds/spl_minimal.c         |  129 ++++++++++++++++
 board/freescale/p1022ds/tlb.c                 |   20 ++-
 board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c   |   66 +++++++-
 board/freescale/p1_p2_rdb_pc/spl_minimal.c    |   15 ++
 boards.cfg                                    |    2 +
 doc/README.p1010rdb                           |  199 +++++++++++++++++++++++++
 doc/README.ramboot-ppc85xx                    |  102 +++++++++++++
 drivers/net/fm/memac.c                        |   17 +++
 include/configs/P1022DS.h                     |  132 ++++++++++++++--
 include/configs/corenet_ds.h                  |    1 +
 28 files changed, 833 insertions(+), 72 deletions(-)
 create mode 100644 board/freescale/p1022ds/spl_minimal.c
 create mode 100644 doc/README.p1010rdb
 create mode 100644 doc/README.ramboot-ppc85xx

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-01-30 23:17 ` Tom Rini
@ 2013-01-30 23:23   ` Andy Fleming
  0 siblings, 0 replies; 172+ messages in thread
From: Andy Fleming @ 2013-01-30 23:23 UTC (permalink / raw)
  To: u-boot

Yes. I have some internal review stuff to finish, but I will get to MMC
next.


On Wed, Jan 30, 2013 at 5:17 PM, Tom Rini <trini@ti.com> wrote:

> On Wed, Jan 30, 2013 at 11:34:47AM -0600, Andy Fleming wrote:
>
> >   Merge branch 'master' of git://git.denx.de/u-boot-i2c (2013-01-29
> 15:36:27 -0500)
> >
> > are available in the git repository at:
> >
> >
> >   git://www.denx.de/git/u-boot-mpc85xx.git master
> >
> > for you to fetch changes up to d4ed6542788169b789c7eed142efc0a6fa5ca698:
> >
> >   corenet: Disable video on P2020DS (2013-01-30 11:25:16 -0600)
> >
> > ----------------------------------------------------------------
> > Anatolij Gustschin (1):
> >       mpc8xxx: fix DDR init value to use CONFIG_MEM_INIT_VALUE
> >
> > Andy Fleming (1):
> >       corenet: Disable video on P2020DS
> >
> > Hongtao Jia (2):
> >       powerpc/mpc8572ds: Enable bank interleaving to cs0+cs1 for
> dual-rank DIMMs
> >       powerpc/mpc8544ds: Add USB controller support for MPC8544DS
> >
> > James Yang (5):
> >       Move DDR command parsing to separate function
> >       Fix data stage name matching issue
> >       Add copy command to FSL DDR interactive
> >       README.fsl-ddr typos and update to reflect hotkey
> >       powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands
> >
> > Poonam Aggrwal (2):
> >       powerpc/mpc85xx: Few updates for B4860 cpu changes
> >       powerpc/mpc85xx:Add support of B4420 SoC
> >
> > Prabhakar Kushwaha (8):
> >       board/T4240qds:Fix TLB and LAW size of NAND flash
> >       boards/T4240qds:Fix IFC AMASK init as per FPGA register space
> >       board/freescale/common:Add support of QTAG register
> >       powerpc/mpc85xx:Fix Core cluster configuration loop
> >       powerpc/t4240qds: Print FPGA detail version
> >       powerpc/mpc85xx: Add BSC9132/BSC9232 processor support
> >       powerpc/85xx: Add BSC9132QDS support
> >       board/common: Add support for QIXIS read/write using i2c
> >
> > Scott Wood (1):
> >       powerpc/mpc85xx: add support for MMUv2 page sizes
> >
> > Shaohui Xie (1):
> >       powerpc/p2041: move Lanes mux to board early init
> >
> > Shaveta Leekha (3):
> >       powerpc/qixis: enable qixis dump command and add switch dumping
> command
> >       powerpc/b4860qds: Add support to dump switch settings on b4860qds
> board
> >       powerpc/t4240qds: Add support to dump switch settings on t4240qds
> board
> >
> > Shengzhou Liu (1):
> >       powerpc/t4240: Adding workaround errata A-005871
> >
> > Timur Tabi (1):
> >       powerpc/t4qds: move VSC3316 config data from t4qds.h to t4qds.c
> >
> > Vakul Garg (1):
> >       powerpc/mpc85xx: Add property 'fsl, sec-era' in device tree node
> 'crypto'
> >
> > Valentin Longchamp (2):
> >       powerpc/p2041: add RCW file for P2041RDB
> >       powerpc/p2041: set RCW and PBI files for .pbl build or P2041RDB
> >
> > York Sun (4):
> >       powerpc/mpc85xx: Reserve default boot page
> >       powerpc/t4240qds: Update IFC timing for NOR flash
> >       powerpc/b4860qds: Added Support for B4860QDS
> >       powerpc/mpc8xxx: Enable entering DDR debugging by key press
> >
> >  MAINTAINERS                                      |    4 +
> >  arch/powerpc/cpu/mpc85xx/Makefile                |    5 +
> >  arch/powerpc/cpu/mpc85xx/b4860_ids.c             |    6 +
> >  arch/powerpc/cpu/mpc85xx/b4860_serdes.c          |   60 ++
> >  arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c        |   96 +++
> >  arch/powerpc/cpu/mpc85xx/cmd_errata.c            |    4 +
> >  arch/powerpc/cpu/mpc85xx/cpu_init.c              |   44 +-
> >  arch/powerpc/cpu/mpc85xx/fdt.c                   |   24 +
> >  arch/powerpc/cpu/mpc85xx/start.S                 |    2 +-
> >  arch/powerpc/cpu/mpc85xx/tlb.c                   |   19 +-
> >  arch/powerpc/cpu/mpc8xxx/cpu.c                   |    2 +
> >  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c         |    4 +
> >  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h               |    3 +-
> >  arch/powerpc/cpu/mpc8xxx/ddr/interactive.c       |  324 ++++++---
> >  arch/powerpc/cpu/mpc8xxx/ddr/main.c              |    8 +-
> >  arch/powerpc/cpu/mpc8xxx/fdt.c                   |   78 +-
> >  arch/powerpc/include/asm/config_mpc85xx.h        |   39 +-
> >  arch/powerpc/include/asm/immap_85xx.h            |   34 +-
> >  arch/powerpc/include/asm/mmu.h                   |   52 +-
> >  arch/powerpc/include/asm/processor.h             |    2 +
> >  board/freescale/b4860qds/Makefile                |   54 ++
> >  board/freescale/b4860qds/b4860qds.c              |  505 +++++++++++++
> >  board/freescale/b4860qds/b4860qds.h              |   26 +
> >  board/freescale/b4860qds/b4860qds_crossbar_con.h |   67 ++
> >  board/freescale/b4860qds/b4860qds_qixis.h        |   37 +
> >  board/freescale/b4860qds/ddr.c                   |  190 +++++
> >  board/freescale/b4860qds/eth_b4860qds.c          |  338 +++++++++
> >  board/freescale/b4860qds/law.c                   |   44 ++
> >  board/freescale/b4860qds/pci.c                   |   39 +
> >  board/freescale/b4860qds/tlb.c                   |  127 ++++
> >  board/freescale/bsc9132qds/Makefile              |   52 ++
> >  board/freescale/bsc9132qds/README                |  150 ++++
> >  board/freescale/bsc9132qds/bsc9132qds.c          |  403 +++++++++++
> >  board/freescale/bsc9132qds/ddr.c                 |  209 ++++++
> >  board/freescale/bsc9132qds/law.c                 |   35 +
> >  board/freescale/bsc9132qds/tlb.c                 |   92 +++
> >  board/freescale/common/qixis.c                   |  107 ++-
> >  board/freescale/common/qixis.h                   |   13 +
> >  board/freescale/corenet_ds/rcw_p2041rdb.cfg      |   11 +
> >  board/freescale/p2041rdb/eth.c                   |   39 -
> >  board/freescale/p2041rdb/p2041rdb.c              |   44 ++
> >  board/freescale/t4qds/law.c                      |    2 +-
> >  board/freescale/t4qds/t4qds.c                    |   83 ++-
> >  board/freescale/t4qds/t4qds.h                    |   11 -
> >  board/freescale/t4qds/tlb.c                      |    2 +-
> >  boards.cfg                                       |   12 +
> >  doc/README.b4860qds                              |  330 +++++++++
> >  doc/README.fsl-ddr                               |   33 +-
> >  drivers/net/fm/Makefile                          |    1 +
> >  drivers/net/fm/b4860.c                           |   79 +++
> >  include/configs/B4860QDS.h                       |  820
> ++++++++++++++++++++++
> >  include/configs/BSC9132QDS.h                     |  667
> ++++++++++++++++++
> >  include/configs/MPC8544DS.h                      |   12 +
> >  include/configs/MPC8572DS.h                      |    2 +-
> >  include/configs/P2020DS.h                        |    2 +-
> >  include/configs/P2041RDB.h                       |    2 +
> >  include/configs/t4qds.h                          |   12 +-
> >  57 files changed, 5257 insertions(+), 205 deletions(-)
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c
> >  create mode 100644 board/freescale/b4860qds/Makefile
> >  create mode 100644 board/freescale/b4860qds/b4860qds.c
> >  create mode 100644 board/freescale/b4860qds/b4860qds.h
> >  create mode 100644 board/freescale/b4860qds/b4860qds_crossbar_con.h
> >  create mode 100644 board/freescale/b4860qds/b4860qds_qixis.h
> >  create mode 100644 board/freescale/b4860qds/ddr.c
> >  create mode 100644 board/freescale/b4860qds/eth_b4860qds.c
> >  create mode 100644 board/freescale/b4860qds/law.c
> >  create mode 100644 board/freescale/b4860qds/pci.c
> >  create mode 100644 board/freescale/b4860qds/tlb.c
> >  create mode 100644 board/freescale/bsc9132qds/Makefile
> >  create mode 100644 board/freescale/bsc9132qds/README
> >  create mode 100644 board/freescale/bsc9132qds/bsc9132qds.c
> >  create mode 100644 board/freescale/bsc9132qds/ddr.c
> >  create mode 100644 board/freescale/bsc9132qds/law.c
> >  create mode 100644 board/freescale/bsc9132qds/tlb.c
> >  create mode 100644 board/freescale/corenet_ds/rcw_p2041rdb.cfg
> >  create mode 100644 doc/README.b4860qds
> >  create mode 100644 drivers/net/fm/b4860.c
> >  create mode 100644 include/configs/B4860QDS.h
> >  create mode 100644 include/configs/BSC9132QDS.h
>
> Applied to u-boot/master, thanks!
>
> As an aside, will you be doing an MMC review / pull request soon?
> There's been a few patches going of late I'd like to see a ack/nak on,
> thanks!
>
> --
> Tom
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-01-30 17:34 Andy Fleming
@ 2013-01-30 23:17 ` Tom Rini
  2013-01-30 23:23   ` Andy Fleming
  0 siblings, 1 reply; 172+ messages in thread
From: Tom Rini @ 2013-01-30 23:17 UTC (permalink / raw)
  To: u-boot

On Wed, Jan 30, 2013 at 11:34:47AM -0600, Andy Fleming wrote:

>   Merge branch 'master' of git://git.denx.de/u-boot-i2c (2013-01-29 15:36:27 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to d4ed6542788169b789c7eed142efc0a6fa5ca698:
> 
>   corenet: Disable video on P2020DS (2013-01-30 11:25:16 -0600)
> 
> ----------------------------------------------------------------
> Anatolij Gustschin (1):
>       mpc8xxx: fix DDR init value to use CONFIG_MEM_INIT_VALUE
> 
> Andy Fleming (1):
>       corenet: Disable video on P2020DS
> 
> Hongtao Jia (2):
>       powerpc/mpc8572ds: Enable bank interleaving to cs0+cs1 for dual-rank DIMMs
>       powerpc/mpc8544ds: Add USB controller support for MPC8544DS
> 
> James Yang (5):
>       Move DDR command parsing to separate function
>       Fix data stage name matching issue
>       Add copy command to FSL DDR interactive
>       README.fsl-ddr typos and update to reflect hotkey
>       powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands
> 
> Poonam Aggrwal (2):
>       powerpc/mpc85xx: Few updates for B4860 cpu changes
>       powerpc/mpc85xx:Add support of B4420 SoC
> 
> Prabhakar Kushwaha (8):
>       board/T4240qds:Fix TLB and LAW size of NAND flash
>       boards/T4240qds:Fix IFC AMASK init as per FPGA register space
>       board/freescale/common:Add support of QTAG register
>       powerpc/mpc85xx:Fix Core cluster configuration loop
>       powerpc/t4240qds: Print FPGA detail version
>       powerpc/mpc85xx: Add BSC9132/BSC9232 processor support
>       powerpc/85xx: Add BSC9132QDS support
>       board/common: Add support for QIXIS read/write using i2c
> 
> Scott Wood (1):
>       powerpc/mpc85xx: add support for MMUv2 page sizes
> 
> Shaohui Xie (1):
>       powerpc/p2041: move Lanes mux to board early init
> 
> Shaveta Leekha (3):
>       powerpc/qixis: enable qixis dump command and add switch dumping command
>       powerpc/b4860qds: Add support to dump switch settings on b4860qds board
>       powerpc/t4240qds: Add support to dump switch settings on t4240qds board
> 
> Shengzhou Liu (1):
>       powerpc/t4240: Adding workaround errata A-005871
> 
> Timur Tabi (1):
>       powerpc/t4qds: move VSC3316 config data from t4qds.h to t4qds.c
> 
> Vakul Garg (1):
>       powerpc/mpc85xx: Add property 'fsl, sec-era' in device tree node 'crypto'
> 
> Valentin Longchamp (2):
>       powerpc/p2041: add RCW file for P2041RDB
>       powerpc/p2041: set RCW and PBI files for .pbl build or P2041RDB
> 
> York Sun (4):
>       powerpc/mpc85xx: Reserve default boot page
>       powerpc/t4240qds: Update IFC timing for NOR flash
>       powerpc/b4860qds: Added Support for B4860QDS
>       powerpc/mpc8xxx: Enable entering DDR debugging by key press
> 
>  MAINTAINERS                                      |    4 +
>  arch/powerpc/cpu/mpc85xx/Makefile                |    5 +
>  arch/powerpc/cpu/mpc85xx/b4860_ids.c             |    6 +
>  arch/powerpc/cpu/mpc85xx/b4860_serdes.c          |   60 ++
>  arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c        |   96 +++
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c            |    4 +
>  arch/powerpc/cpu/mpc85xx/cpu_init.c              |   44 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c                   |   24 +
>  arch/powerpc/cpu/mpc85xx/start.S                 |    2 +-
>  arch/powerpc/cpu/mpc85xx/tlb.c                   |   19 +-
>  arch/powerpc/cpu/mpc8xxx/cpu.c                   |    2 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c         |    4 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h               |    3 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/interactive.c       |  324 ++++++---
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c              |    8 +-
>  arch/powerpc/cpu/mpc8xxx/fdt.c                   |   78 +-
>  arch/powerpc/include/asm/config_mpc85xx.h        |   39 +-
>  arch/powerpc/include/asm/immap_85xx.h            |   34 +-
>  arch/powerpc/include/asm/mmu.h                   |   52 +-
>  arch/powerpc/include/asm/processor.h             |    2 +
>  board/freescale/b4860qds/Makefile                |   54 ++
>  board/freescale/b4860qds/b4860qds.c              |  505 +++++++++++++
>  board/freescale/b4860qds/b4860qds.h              |   26 +
>  board/freescale/b4860qds/b4860qds_crossbar_con.h |   67 ++
>  board/freescale/b4860qds/b4860qds_qixis.h        |   37 +
>  board/freescale/b4860qds/ddr.c                   |  190 +++++
>  board/freescale/b4860qds/eth_b4860qds.c          |  338 +++++++++
>  board/freescale/b4860qds/law.c                   |   44 ++
>  board/freescale/b4860qds/pci.c                   |   39 +
>  board/freescale/b4860qds/tlb.c                   |  127 ++++
>  board/freescale/bsc9132qds/Makefile              |   52 ++
>  board/freescale/bsc9132qds/README                |  150 ++++
>  board/freescale/bsc9132qds/bsc9132qds.c          |  403 +++++++++++
>  board/freescale/bsc9132qds/ddr.c                 |  209 ++++++
>  board/freescale/bsc9132qds/law.c                 |   35 +
>  board/freescale/bsc9132qds/tlb.c                 |   92 +++
>  board/freescale/common/qixis.c                   |  107 ++-
>  board/freescale/common/qixis.h                   |   13 +
>  board/freescale/corenet_ds/rcw_p2041rdb.cfg      |   11 +
>  board/freescale/p2041rdb/eth.c                   |   39 -
>  board/freescale/p2041rdb/p2041rdb.c              |   44 ++
>  board/freescale/t4qds/law.c                      |    2 +-
>  board/freescale/t4qds/t4qds.c                    |   83 ++-
>  board/freescale/t4qds/t4qds.h                    |   11 -
>  board/freescale/t4qds/tlb.c                      |    2 +-
>  boards.cfg                                       |   12 +
>  doc/README.b4860qds                              |  330 +++++++++
>  doc/README.fsl-ddr                               |   33 +-
>  drivers/net/fm/Makefile                          |    1 +
>  drivers/net/fm/b4860.c                           |   79 +++
>  include/configs/B4860QDS.h                       |  820 ++++++++++++++++++++++
>  include/configs/BSC9132QDS.h                     |  667 ++++++++++++++++++
>  include/configs/MPC8544DS.h                      |   12 +
>  include/configs/MPC8572DS.h                      |    2 +-
>  include/configs/P2020DS.h                        |    2 +-
>  include/configs/P2041RDB.h                       |    2 +
>  include/configs/t4qds.h                          |   12 +-
>  57 files changed, 5257 insertions(+), 205 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c
>  create mode 100644 board/freescale/b4860qds/Makefile
>  create mode 100644 board/freescale/b4860qds/b4860qds.c
>  create mode 100644 board/freescale/b4860qds/b4860qds.h
>  create mode 100644 board/freescale/b4860qds/b4860qds_crossbar_con.h
>  create mode 100644 board/freescale/b4860qds/b4860qds_qixis.h
>  create mode 100644 board/freescale/b4860qds/ddr.c
>  create mode 100644 board/freescale/b4860qds/eth_b4860qds.c
>  create mode 100644 board/freescale/b4860qds/law.c
>  create mode 100644 board/freescale/b4860qds/pci.c
>  create mode 100644 board/freescale/b4860qds/tlb.c
>  create mode 100644 board/freescale/bsc9132qds/Makefile
>  create mode 100644 board/freescale/bsc9132qds/README
>  create mode 100644 board/freescale/bsc9132qds/bsc9132qds.c
>  create mode 100644 board/freescale/bsc9132qds/ddr.c
>  create mode 100644 board/freescale/bsc9132qds/law.c
>  create mode 100644 board/freescale/bsc9132qds/tlb.c
>  create mode 100644 board/freescale/corenet_ds/rcw_p2041rdb.cfg
>  create mode 100644 doc/README.b4860qds
>  create mode 100644 drivers/net/fm/b4860.c
>  create mode 100644 include/configs/B4860QDS.h
>  create mode 100644 include/configs/BSC9132QDS.h

Applied to u-boot/master, thanks!

As an aside, will you be doing an MMC review / pull request soon?
There's been a few patches going of late I'd like to see a ack/nak on,
thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130130/a6f4231f/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2013-01-30 17:34 Andy Fleming
  2013-01-30 23:17 ` Tom Rini
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2013-01-30 17:34 UTC (permalink / raw)
  To: u-boot

  Merge branch 'master' of git://git.denx.de/u-boot-i2c (2013-01-29 15:36:27 -0500)

are available in the git repository at:


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

for you to fetch changes up to d4ed6542788169b789c7eed142efc0a6fa5ca698:

  corenet: Disable video on P2020DS (2013-01-30 11:25:16 -0600)

----------------------------------------------------------------
Anatolij Gustschin (1):
      mpc8xxx: fix DDR init value to use CONFIG_MEM_INIT_VALUE

Andy Fleming (1):
      corenet: Disable video on P2020DS

Hongtao Jia (2):
      powerpc/mpc8572ds: Enable bank interleaving to cs0+cs1 for dual-rank DIMMs
      powerpc/mpc8544ds: Add USB controller support for MPC8544DS

James Yang (5):
      Move DDR command parsing to separate function
      Fix data stage name matching issue
      Add copy command to FSL DDR interactive
      README.fsl-ddr typos and update to reflect hotkey
      powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands

Poonam Aggrwal (2):
      powerpc/mpc85xx: Few updates for B4860 cpu changes
      powerpc/mpc85xx:Add support of B4420 SoC

Prabhakar Kushwaha (8):
      board/T4240qds:Fix TLB and LAW size of NAND flash
      boards/T4240qds:Fix IFC AMASK init as per FPGA register space
      board/freescale/common:Add support of QTAG register
      powerpc/mpc85xx:Fix Core cluster configuration loop
      powerpc/t4240qds: Print FPGA detail version
      powerpc/mpc85xx: Add BSC9132/BSC9232 processor support
      powerpc/85xx: Add BSC9132QDS support
      board/common: Add support for QIXIS read/write using i2c

Scott Wood (1):
      powerpc/mpc85xx: add support for MMUv2 page sizes

Shaohui Xie (1):
      powerpc/p2041: move Lanes mux to board early init

Shaveta Leekha (3):
      powerpc/qixis: enable qixis dump command and add switch dumping command
      powerpc/b4860qds: Add support to dump switch settings on b4860qds board
      powerpc/t4240qds: Add support to dump switch settings on t4240qds board

Shengzhou Liu (1):
      powerpc/t4240: Adding workaround errata A-005871

Timur Tabi (1):
      powerpc/t4qds: move VSC3316 config data from t4qds.h to t4qds.c

Vakul Garg (1):
      powerpc/mpc85xx: Add property 'fsl, sec-era' in device tree node 'crypto'

Valentin Longchamp (2):
      powerpc/p2041: add RCW file for P2041RDB
      powerpc/p2041: set RCW and PBI files for .pbl build or P2041RDB

York Sun (4):
      powerpc/mpc85xx: Reserve default boot page
      powerpc/t4240qds: Update IFC timing for NOR flash
      powerpc/b4860qds: Added Support for B4860QDS
      powerpc/mpc8xxx: Enable entering DDR debugging by key press

 MAINTAINERS                                      |    4 +
 arch/powerpc/cpu/mpc85xx/Makefile                |    5 +
 arch/powerpc/cpu/mpc85xx/b4860_ids.c             |    6 +
 arch/powerpc/cpu/mpc85xx/b4860_serdes.c          |   60 ++
 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c        |   96 +++
 arch/powerpc/cpu/mpc85xx/cmd_errata.c            |    4 +
 arch/powerpc/cpu/mpc85xx/cpu_init.c              |   44 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                   |   24 +
 arch/powerpc/cpu/mpc85xx/start.S                 |    2 +-
 arch/powerpc/cpu/mpc85xx/tlb.c                   |   19 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c                   |    2 +
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c         |    4 +
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h               |    3 +-
 arch/powerpc/cpu/mpc8xxx/ddr/interactive.c       |  324 ++++++---
 arch/powerpc/cpu/mpc8xxx/ddr/main.c              |    8 +-
 arch/powerpc/cpu/mpc8xxx/fdt.c                   |   78 +-
 arch/powerpc/include/asm/config_mpc85xx.h        |   39 +-
 arch/powerpc/include/asm/immap_85xx.h            |   34 +-
 arch/powerpc/include/asm/mmu.h                   |   52 +-
 arch/powerpc/include/asm/processor.h             |    2 +
 board/freescale/b4860qds/Makefile                |   54 ++
 board/freescale/b4860qds/b4860qds.c              |  505 +++++++++++++
 board/freescale/b4860qds/b4860qds.h              |   26 +
 board/freescale/b4860qds/b4860qds_crossbar_con.h |   67 ++
 board/freescale/b4860qds/b4860qds_qixis.h        |   37 +
 board/freescale/b4860qds/ddr.c                   |  190 +++++
 board/freescale/b4860qds/eth_b4860qds.c          |  338 +++++++++
 board/freescale/b4860qds/law.c                   |   44 ++
 board/freescale/b4860qds/pci.c                   |   39 +
 board/freescale/b4860qds/tlb.c                   |  127 ++++
 board/freescale/bsc9132qds/Makefile              |   52 ++
 board/freescale/bsc9132qds/README                |  150 ++++
 board/freescale/bsc9132qds/bsc9132qds.c          |  403 +++++++++++
 board/freescale/bsc9132qds/ddr.c                 |  209 ++++++
 board/freescale/bsc9132qds/law.c                 |   35 +
 board/freescale/bsc9132qds/tlb.c                 |   92 +++
 board/freescale/common/qixis.c                   |  107 ++-
 board/freescale/common/qixis.h                   |   13 +
 board/freescale/corenet_ds/rcw_p2041rdb.cfg      |   11 +
 board/freescale/p2041rdb/eth.c                   |   39 -
 board/freescale/p2041rdb/p2041rdb.c              |   44 ++
 board/freescale/t4qds/law.c                      |    2 +-
 board/freescale/t4qds/t4qds.c                    |   83 ++-
 board/freescale/t4qds/t4qds.h                    |   11 -
 board/freescale/t4qds/tlb.c                      |    2 +-
 boards.cfg                                       |   12 +
 doc/README.b4860qds                              |  330 +++++++++
 doc/README.fsl-ddr                               |   33 +-
 drivers/net/fm/Makefile                          |    1 +
 drivers/net/fm/b4860.c                           |   79 +++
 include/configs/B4860QDS.h                       |  820 ++++++++++++++++++++++
 include/configs/BSC9132QDS.h                     |  667 ++++++++++++++++++
 include/configs/MPC8544DS.h                      |   12 +
 include/configs/MPC8572DS.h                      |    2 +-
 include/configs/P2020DS.h                        |    2 +-
 include/configs/P2041RDB.h                       |    2 +
 include/configs/t4qds.h                          |   12 +-
 57 files changed, 5257 insertions(+), 205 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c
 create mode 100644 board/freescale/b4860qds/Makefile
 create mode 100644 board/freescale/b4860qds/b4860qds.c
 create mode 100644 board/freescale/b4860qds/b4860qds.h
 create mode 100644 board/freescale/b4860qds/b4860qds_crossbar_con.h
 create mode 100644 board/freescale/b4860qds/b4860qds_qixis.h
 create mode 100644 board/freescale/b4860qds/ddr.c
 create mode 100644 board/freescale/b4860qds/eth_b4860qds.c
 create mode 100644 board/freescale/b4860qds/law.c
 create mode 100644 board/freescale/b4860qds/pci.c
 create mode 100644 board/freescale/b4860qds/tlb.c
 create mode 100644 board/freescale/bsc9132qds/Makefile
 create mode 100644 board/freescale/bsc9132qds/README
 create mode 100644 board/freescale/bsc9132qds/bsc9132qds.c
 create mode 100644 board/freescale/bsc9132qds/ddr.c
 create mode 100644 board/freescale/bsc9132qds/law.c
 create mode 100644 board/freescale/bsc9132qds/tlb.c
 create mode 100644 board/freescale/corenet_ds/rcw_p2041rdb.cfg
 create mode 100644 doc/README.b4860qds
 create mode 100644 drivers/net/fm/b4860.c
 create mode 100644 include/configs/B4860QDS.h
 create mode 100644 include/configs/BSC9132QDS.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-01-25 22:15   ` Fleming Andy-AFLEMING
@ 2013-01-25 22:42     ` Tom Rini
  0 siblings, 0 replies; 172+ messages in thread
From: Tom Rini @ 2013-01-25 22:42 UTC (permalink / raw)
  To: u-boot

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 01/25/2013 05:15 PM, Fleming Andy-AFLEMING wrote:
> 
>>> 
>>> 
>>> create mode 100644 drivers/net/fm/b4860.c create mode 100644
>>> include/configs/B4860QDS.h create mode 100644
>>> include/configs/BSC9132QDS.h
>> 
>> So, I see: bsc9132qds.c: In function 'ft_board_setup': 
>> bsc9132qds.c:349:19: warning: variable 'cpu' set but not used 
>> [-Wunused-but-set-variable]
>> 
>> On the various BSC boards.  Do you want me to take it now, or
>> after you've fixed it up?
> 
> 
> Argh. That apparently wasn't seen by my compiler setup. I'll fix
> it. What compiler are you using?

ELDK 5.2.1

- -- 
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJRAwpnAAoJENk4IS6UOR1WRY4P/RCj9uAOWayQUJKe0GV4wHWy
k8JyVqy51XR/VzkdrtU2546FQxIJ/hz0z7rwo/o0p7euY6qrMOWRLKiV+nH7TBb4
O26DAuoWHXr6vQc6+GO3DLRHY7KdKfbhiWgCnM678N5I7FX5uIcGGycJlRpn6T6k
IACJwVMBi2q+vEsTSfyTGtTCq5PaUafYG7EA1sckQsZ4jssxd9NakGPhznorHIBM
6QhKZzJbWuLXfT8thMSz3nMKvmFCkl2/LNZvMU2Q8HrkBmDb0tduNi3Fu2jBUY6n
f89A37mf2Q5aM0xQpoD3PfSwp8/nhGNoI0WCTGxYgjkXUkLfB5SzIw1Jro2UFSz/
SSegHVocKlmD0gQLjtJgW7NYFWu6+c3m+RCRyODyJiksG4vU1Ns6UtiUBPMoeOtd
ONXMiEOXcJ+lv8L9fSTzPoB9k9scjHw5KA5zeiedV8ZBkv7Y/NWllf1xQ7oceuqp
86d+pw0QdagdSf3HnCl4Qc2X1n4X5X/jSbI57j7KPnvHV+49gCU8/VcoqKiVFcMn
dl4kefSD3GgMddSdyk/3RJ0/XWr6gAfISUC4ZPSTxepbZluAiOZ6/gFe7Z2/leV/
my2iVlXqDRFSPT0qeHx2vldQJwTGN63nwzCLl6G9UZLzgGrBb8on7fy8e9cFiI5E
nH4c8mQ2lr/EReXt/HqW
=ioCy
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-01-25 22:09 ` Tom Rini
@ 2013-01-25 22:15   ` Fleming Andy-AFLEMING
  2013-01-25 22:42     ` Tom Rini
  0 siblings, 1 reply; 172+ messages in thread
From: Fleming Andy-AFLEMING @ 2013-01-25 22:15 UTC (permalink / raw)
  To: u-boot


>> 
>> 
>> create mode 100644 drivers/net/fm/b4860.c
>> create mode 100644 include/configs/B4860QDS.h
>> create mode 100644 include/configs/BSC9132QDS.h
> 
> So, I see:
> bsc9132qds.c: In function 'ft_board_setup':
> bsc9132qds.c:349:19: warning: variable 'cpu' set but not used
> [-Wunused-but-set-variable]
> 
> On the various BSC boards.  Do you want me to take it now, or after
> you've fixed it up?


Argh. That apparently wasn't seen by my compiler setup. I'll fix it. What compiler are you using?


Andy

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2013-01-25 16:45 Andy Fleming
@ 2013-01-25 22:09 ` Tom Rini
  2013-01-25 22:15   ` Fleming Andy-AFLEMING
  0 siblings, 1 reply; 172+ messages in thread
From: Tom Rini @ 2013-01-25 22:09 UTC (permalink / raw)
  To: u-boot

On Fri, Jan 25, 2013 at 10:45:19AM -0600, Andy Fleming wrote:

>   README.mips: update known issues and TODOs (2013-01-16 10:52:08 +0100)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 1342f7dd2c864889ce3ef6a78fe74155fd1f9a8f:
> 
>   corenet: Disable video on P2020DS (2013-01-25 10:32:22 -0600)
> 
> ----------------------------------------------------------------
> Anatolij Gustschin (1):
>       mpc8xxx: fix DDR init value to use CONFIG_MEM_INIT_VALUE
> 
> Andy Fleming (1):
>       corenet: Disable video on P2020DS
> 
> Hongtao Jia (2):
>       powerpc/mpc8572ds: Enable bank interleaving to cs0+cs1 for dual-rank DIMMs
>       powerpc/mpc8544ds: Add USB controller support for MPC8544DS
> 
> James Yang (5):
>       Move DDR command parsing to separate function
>       Fix data stage name matching issue
>       Add copy command to FSL DDR interactive
>       README.fsl-ddr typos and update to reflect hotkey
>       powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands
> 
> Poonam Aggrwal (2):
>       powerpc/mpc85xx: Few updates for B4860 cpu changes
>       powerpc/mpc85xx:Add support of B4420 SoC
> 
> Prabhakar Kushwaha (8):
>       board/T4240qds:Fix TLB and LAW size of NAND flash
>       boards/T4240qds:Fix IFC AMASK init as per FPGA register space
>       board/freescale/common:Add support of QTAG register
>       powerpc/mpc85xx:Fix Core cluster configuration loop
>       powerpc/t4240qds: Print FPGA detail version
>       powerpc/mpc85xx: Add BSC9132/BSC9232 processor support
>       powerpc/85xx: Add BSC9132QDS support
>       board/common: Add support for QIXIS read/write using i2c
> 
> Scott Wood (1):
>       powerpc/mpc85xx: add support for MMUv2 page sizes
> 
> Shaohui Xie (1):
>       powerpc/p2041: move Lanes mux to board early init
> 
> Shaveta Leekha (3):
>       powerpc/qixis: enable qixis dump command and add switch dumping command
>       powerpc/b4860qds: Add support to dump switch settings on b4860qds board
>       powerpc/t4240qds: Add support to dump switch settings on t4240qds board
> 
> Shengzhou Liu (1):
>       powerpc/t4240: Adding workaround errata A-005871
> 
> Timur Tabi (1):
>       powerpc/t4qds: move VSC3316 config data from t4qds.h to t4qds.c
> 
> Vakul Garg (1):
>       powerpc/mpc85xx: Add property 'fsl, sec-era' in device tree node 'crypto'
> 
> Valentin Longchamp (2):
>       powerpc/p2041: add RCW file for P2041RDB
>       powerpc/p2041: set RCW and PBI files for .pbl build or P2041RDB
> 
> York Sun (4):
>       powerpc/mpc85xx: Reserve default boot page
>       powerpc/t4240qds: Update IFC timing for NOR flash
>       powerpc/b4860qds: Added Support for B4860QDS
>       powerpc/mpc8xxx: Enable entering DDR debugging by key press
> 
>  MAINTAINERS                                      |    4 +
>  arch/powerpc/cpu/mpc85xx/Makefile                |    5 +
>  arch/powerpc/cpu/mpc85xx/b4860_ids.c             |    6 +
>  arch/powerpc/cpu/mpc85xx/b4860_serdes.c          |   60 ++
>  arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c        |   96 +++
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c            |    4 +
>  arch/powerpc/cpu/mpc85xx/cpu_init.c              |   44 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c                   |   24 +
>  arch/powerpc/cpu/mpc85xx/start.S                 |    2 +-
>  arch/powerpc/cpu/mpc85xx/tlb.c                   |   19 +-
>  arch/powerpc/cpu/mpc8xxx/cpu.c                   |    2 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c         |    4 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h               |    3 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/interactive.c       |  324 ++++++---
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c              |    8 +-
>  arch/powerpc/cpu/mpc8xxx/fdt.c                   |   78 +-
>  arch/powerpc/include/asm/config_mpc85xx.h        |   39 +-
>  arch/powerpc/include/asm/immap_85xx.h            |   34 +-
>  arch/powerpc/include/asm/mmu.h                   |   52 +-
>  arch/powerpc/include/asm/processor.h             |    2 +
>  board/freescale/b4860qds/Makefile                |   54 ++
>  board/freescale/b4860qds/b4860qds.c              |  505 +++++++++++++
>  board/freescale/b4860qds/b4860qds.h              |   26 +
>  board/freescale/b4860qds/b4860qds_crossbar_con.h |   67 ++
>  board/freescale/b4860qds/b4860qds_qixis.h        |   37 +
>  board/freescale/b4860qds/ddr.c                   |  190 +++++
>  board/freescale/b4860qds/eth_b4860qds.c          |  338 +++++++++
>  board/freescale/b4860qds/law.c                   |   44 ++
>  board/freescale/b4860qds/pci.c                   |   39 +
>  board/freescale/b4860qds/tlb.c                   |  127 ++++
>  board/freescale/bsc9132qds/Makefile              |   52 ++
>  board/freescale/bsc9132qds/README                |  150 ++++
>  board/freescale/bsc9132qds/bsc9132qds.c          |  406 +++++++++++
>  board/freescale/bsc9132qds/ddr.c                 |  209 ++++++
>  board/freescale/bsc9132qds/law.c                 |   35 +
>  board/freescale/bsc9132qds/tlb.c                 |   92 +++
>  board/freescale/common/qixis.c                   |  107 ++-
>  board/freescale/common/qixis.h                   |   13 +
>  board/freescale/corenet_ds/rcw_p2041rdb.cfg      |   11 +
>  board/freescale/p2041rdb/eth.c                   |   39 -
>  board/freescale/p2041rdb/p2041rdb.c              |   44 ++
>  board/freescale/t4qds/law.c                      |    2 +-
>  board/freescale/t4qds/t4qds.c                    |   83 ++-
>  board/freescale/t4qds/t4qds.h                    |   11 -
>  board/freescale/t4qds/tlb.c                      |    2 +-
>  boards.cfg                                       |   12 +
>  doc/README.b4860qds                              |  330 +++++++++
>  doc/README.fsl-ddr                               |   33 +-
>  drivers/net/fm/Makefile                          |    1 +
>  drivers/net/fm/b4860.c                           |   79 +++
>  include/configs/B4860QDS.h                       |  820 ++++++++++++++++++++++
>  include/configs/BSC9132QDS.h                     |  667 ++++++++++++++++++
>  include/configs/MPC8544DS.h                      |   12 +
>  include/configs/MPC8572DS.h                      |    2 +-
>  include/configs/P2020DS.h                        |    2 +-
>  include/configs/P2041RDB.h                       |    2 +
>  include/configs/t4qds.h                          |   12 +-
>  57 files changed, 5260 insertions(+), 205 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c
>  create mode 100644 board/freescale/b4860qds/Makefile
>  create mode 100644 board/freescale/b4860qds/b4860qds.c
>  create mode 100644 board/freescale/b4860qds/b4860qds.h
>  create mode 100644 board/freescale/b4860qds/b4860qds_crossbar_con.h
>  create mode 100644 board/freescale/b4860qds/b4860qds_qixis.h
>  create mode 100644 board/freescale/b4860qds/ddr.c
>  create mode 100644 board/freescale/b4860qds/eth_b4860qds.c
>  create mode 100644 board/freescale/b4860qds/law.c
>  create mode 100644 board/freescale/b4860qds/pci.c
>  create mode 100644 board/freescale/b4860qds/tlb.c
>  create mode 100644 board/freescale/bsc9132qds/Makefile
>  create mode 100644 board/freescale/bsc9132qds/README
>  create mode 100644 board/freescale/bsc9132qds/bsc9132qds.c
>  create mode 100644 board/freescale/bsc9132qds/ddr.c
>  create mode 100644 board/freescale/bsc9132qds/law.c
>  create mode 100644 board/freescale/bsc9132qds/tlb.c
>  create mode 100644 board/freescale/corenet_ds/rcw_p2041rdb.cfg
>  create mode 100644 doc/README.b4860qds
>  create mode 100644 drivers/net/fm/b4860.c
>  create mode 100644 include/configs/B4860QDS.h
>  create mode 100644 include/configs/BSC9132QDS.h

So, I see:
bsc9132qds.c: In function 'ft_board_setup':
bsc9132qds.c:349:19: warning: variable 'cpu' set but not used
[-Wunused-but-set-variable]

On the various BSC boards.  Do you want me to take it now, or after
you've fixed it up?

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130125/7197deed/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2013-01-25 16:45 Andy Fleming
  2013-01-25 22:09 ` Tom Rini
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2013-01-25 16:45 UTC (permalink / raw)
  To: u-boot

  README.mips: update known issues and TODOs (2013-01-16 10:52:08 +0100)

are available in the git repository at:

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

for you to fetch changes up to 1342f7dd2c864889ce3ef6a78fe74155fd1f9a8f:

  corenet: Disable video on P2020DS (2013-01-25 10:32:22 -0600)

----------------------------------------------------------------
Anatolij Gustschin (1):
      mpc8xxx: fix DDR init value to use CONFIG_MEM_INIT_VALUE

Andy Fleming (1):
      corenet: Disable video on P2020DS

Hongtao Jia (2):
      powerpc/mpc8572ds: Enable bank interleaving to cs0+cs1 for dual-rank DIMMs
      powerpc/mpc8544ds: Add USB controller support for MPC8544DS

James Yang (5):
      Move DDR command parsing to separate function
      Fix data stage name matching issue
      Add copy command to FSL DDR interactive
      README.fsl-ddr typos and update to reflect hotkey
      powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands

Poonam Aggrwal (2):
      powerpc/mpc85xx: Few updates for B4860 cpu changes
      powerpc/mpc85xx:Add support of B4420 SoC

Prabhakar Kushwaha (8):
      board/T4240qds:Fix TLB and LAW size of NAND flash
      boards/T4240qds:Fix IFC AMASK init as per FPGA register space
      board/freescale/common:Add support of QTAG register
      powerpc/mpc85xx:Fix Core cluster configuration loop
      powerpc/t4240qds: Print FPGA detail version
      powerpc/mpc85xx: Add BSC9132/BSC9232 processor support
      powerpc/85xx: Add BSC9132QDS support
      board/common: Add support for QIXIS read/write using i2c

Scott Wood (1):
      powerpc/mpc85xx: add support for MMUv2 page sizes

Shaohui Xie (1):
      powerpc/p2041: move Lanes mux to board early init

Shaveta Leekha (3):
      powerpc/qixis: enable qixis dump command and add switch dumping command
      powerpc/b4860qds: Add support to dump switch settings on b4860qds board
      powerpc/t4240qds: Add support to dump switch settings on t4240qds board

Shengzhou Liu (1):
      powerpc/t4240: Adding workaround errata A-005871

Timur Tabi (1):
      powerpc/t4qds: move VSC3316 config data from t4qds.h to t4qds.c

Vakul Garg (1):
      powerpc/mpc85xx: Add property 'fsl, sec-era' in device tree node 'crypto'

Valentin Longchamp (2):
      powerpc/p2041: add RCW file for P2041RDB
      powerpc/p2041: set RCW and PBI files for .pbl build or P2041RDB

York Sun (4):
      powerpc/mpc85xx: Reserve default boot page
      powerpc/t4240qds: Update IFC timing for NOR flash
      powerpc/b4860qds: Added Support for B4860QDS
      powerpc/mpc8xxx: Enable entering DDR debugging by key press

 MAINTAINERS                                      |    4 +
 arch/powerpc/cpu/mpc85xx/Makefile                |    5 +
 arch/powerpc/cpu/mpc85xx/b4860_ids.c             |    6 +
 arch/powerpc/cpu/mpc85xx/b4860_serdes.c          |   60 ++
 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c        |   96 +++
 arch/powerpc/cpu/mpc85xx/cmd_errata.c            |    4 +
 arch/powerpc/cpu/mpc85xx/cpu_init.c              |   44 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                   |   24 +
 arch/powerpc/cpu/mpc85xx/start.S                 |    2 +-
 arch/powerpc/cpu/mpc85xx/tlb.c                   |   19 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c                   |    2 +
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c         |    4 +
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h               |    3 +-
 arch/powerpc/cpu/mpc8xxx/ddr/interactive.c       |  324 ++++++---
 arch/powerpc/cpu/mpc8xxx/ddr/main.c              |    8 +-
 arch/powerpc/cpu/mpc8xxx/fdt.c                   |   78 +-
 arch/powerpc/include/asm/config_mpc85xx.h        |   39 +-
 arch/powerpc/include/asm/immap_85xx.h            |   34 +-
 arch/powerpc/include/asm/mmu.h                   |   52 +-
 arch/powerpc/include/asm/processor.h             |    2 +
 board/freescale/b4860qds/Makefile                |   54 ++
 board/freescale/b4860qds/b4860qds.c              |  505 +++++++++++++
 board/freescale/b4860qds/b4860qds.h              |   26 +
 board/freescale/b4860qds/b4860qds_crossbar_con.h |   67 ++
 board/freescale/b4860qds/b4860qds_qixis.h        |   37 +
 board/freescale/b4860qds/ddr.c                   |  190 +++++
 board/freescale/b4860qds/eth_b4860qds.c          |  338 +++++++++
 board/freescale/b4860qds/law.c                   |   44 ++
 board/freescale/b4860qds/pci.c                   |   39 +
 board/freescale/b4860qds/tlb.c                   |  127 ++++
 board/freescale/bsc9132qds/Makefile              |   52 ++
 board/freescale/bsc9132qds/README                |  150 ++++
 board/freescale/bsc9132qds/bsc9132qds.c          |  406 +++++++++++
 board/freescale/bsc9132qds/ddr.c                 |  209 ++++++
 board/freescale/bsc9132qds/law.c                 |   35 +
 board/freescale/bsc9132qds/tlb.c                 |   92 +++
 board/freescale/common/qixis.c                   |  107 ++-
 board/freescale/common/qixis.h                   |   13 +
 board/freescale/corenet_ds/rcw_p2041rdb.cfg      |   11 +
 board/freescale/p2041rdb/eth.c                   |   39 -
 board/freescale/p2041rdb/p2041rdb.c              |   44 ++
 board/freescale/t4qds/law.c                      |    2 +-
 board/freescale/t4qds/t4qds.c                    |   83 ++-
 board/freescale/t4qds/t4qds.h                    |   11 -
 board/freescale/t4qds/tlb.c                      |    2 +-
 boards.cfg                                       |   12 +
 doc/README.b4860qds                              |  330 +++++++++
 doc/README.fsl-ddr                               |   33 +-
 drivers/net/fm/Makefile                          |    1 +
 drivers/net/fm/b4860.c                           |   79 +++
 include/configs/B4860QDS.h                       |  820 ++++++++++++++++++++++
 include/configs/BSC9132QDS.h                     |  667 ++++++++++++++++++
 include/configs/MPC8544DS.h                      |   12 +
 include/configs/MPC8572DS.h                      |    2 +-
 include/configs/P2020DS.h                        |    2 +-
 include/configs/P2041RDB.h                       |    2 +
 include/configs/t4qds.h                          |   12 +-
 57 files changed, 5260 insertions(+), 205 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c
 create mode 100644 board/freescale/b4860qds/Makefile
 create mode 100644 board/freescale/b4860qds/b4860qds.c
 create mode 100644 board/freescale/b4860qds/b4860qds.h
 create mode 100644 board/freescale/b4860qds/b4860qds_crossbar_con.h
 create mode 100644 board/freescale/b4860qds/b4860qds_qixis.h
 create mode 100644 board/freescale/b4860qds/ddr.c
 create mode 100644 board/freescale/b4860qds/eth_b4860qds.c
 create mode 100644 board/freescale/b4860qds/law.c
 create mode 100644 board/freescale/b4860qds/pci.c
 create mode 100644 board/freescale/b4860qds/tlb.c
 create mode 100644 board/freescale/bsc9132qds/Makefile
 create mode 100644 board/freescale/bsc9132qds/README
 create mode 100644 board/freescale/bsc9132qds/bsc9132qds.c
 create mode 100644 board/freescale/bsc9132qds/ddr.c
 create mode 100644 board/freescale/bsc9132qds/law.c
 create mode 100644 board/freescale/bsc9132qds/tlb.c
 create mode 100644 board/freescale/corenet_ds/rcw_p2041rdb.cfg
 create mode 100644 doc/README.b4860qds
 create mode 100644 drivers/net/fm/b4860.c
 create mode 100644 include/configs/B4860QDS.h
 create mode 100644 include/configs/BSC9132QDS.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-11-28  7:39 Andy Fleming
  2012-11-28 13:04 ` Tom Rini
  2012-11-29 13:38 ` Tom Rini
@ 2012-12-03 19:33 ` Tabi Timur-B04825
  2 siblings, 0 replies; 172+ messages in thread
From: Tabi Timur-B04825 @ 2012-12-03 19:33 UTC (permalink / raw)
  To: u-boot

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/

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-11-28  7:39 Andy Fleming
  2012-11-28 13:04 ` Tom Rini
@ 2012-11-29 13:38 ` Tom Rini
  2012-12-03 19:33 ` Tabi Timur-B04825
  2 siblings, 0 replies; 172+ messages in thread
From: Tom Rini @ 2012-11-29 13:38 UTC (permalink / raw)
  To: u-boot

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!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121129/eba0f67d/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-11-28 13:04 ` Tom Rini
@ 2012-11-28 13:47   ` Tom Rini
  0 siblings, 0 replies; 172+ messages in thread
From: Tom Rini @ 2012-11-28 13:47 UTC (permalink / raw)
  To: u-boot

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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121128/a3462ee7/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-11-28  7:39 Andy Fleming
@ 2012-11-28 13:04 ` Tom Rini
  2012-11-28 13:47   ` Tom Rini
  2012-11-29 13:38 ` Tom Rini
  2012-12-03 19:33 ` Tabi Timur-B04825
  2 siblings, 1 reply; 172+ messages in thread
From: Tom Rini @ 2012-11-28 13:04 UTC (permalink / raw)
  To: u-boot

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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121128/3eef6047/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2012-11-28  7:39 Andy Fleming
  2012-11-28 13:04 ` Tom Rini
                   ` (2 more replies)
  0 siblings, 3 replies; 172+ messages in thread
From: Andy Fleming @ 2012-11-28  7:39 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-10-23 23:04   ` Tom Rini
@ 2012-10-23 23:08     ` Andy Fleming
  0 siblings, 0 replies; 172+ messages in thread
From: Andy Fleming @ 2012-10-23 23:08 UTC (permalink / raw)
  To: u-boot

On Tue, Oct 23, 2012 at 6:04 PM, Tom Rini <trini@ti.com> wrote:
> On Mon, Oct 22, 2012 at 07:53:05PM -0700, Tom Rini wrote:
>> On Mon, Oct 22, 2012 at 05:36:15PM -0500, Andy Fleming wrote:
>>
>> >   Merge branch 'master' of git://git.denx.de/u-boot-arm (2012-10-19 18:23:38 -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 23028d69e950023a3cb605751dbcb1e314be8b36:
>> >
>> >   85xx: Protect timeout_save variable with ifdefs (2012-10-22 17:28:18 -0500)
>> >
>> > ----------------------------------------------------------------
> But I missed that this introduced:
> --------------------- SUMMARY ----------------------------
> Boards compiled: 626
> Boards with errors: 3 ( MPC8641HPCN_36BIT MPC8641HPCN xpedite517x )
> ----------------------------------------------------------
> Which is:
> util.c: In function 'board_add_ram_info':
> util.c:155:25: error: 'CONFIG_SYS_MPC85xx_DDR2_ADDR' undeclared (first
> use in this function)
> util.c:155:25: note: each undeclared identifier is reported only once
> for each function it appears in


Shoot, I'll fix this now. I neglected to test our oft-neglected 86xx boards.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-10-23  2:53 ` Tom Rini
@ 2012-10-23 23:04   ` Tom Rini
  2012-10-23 23:08     ` Andy Fleming
  0 siblings, 1 reply; 172+ messages in thread
From: Tom Rini @ 2012-10-23 23:04 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 22, 2012 at 07:53:05PM -0700, Tom Rini wrote:
> On Mon, Oct 22, 2012 at 05:36:15PM -0500, Andy Fleming wrote:
> 
> >   Merge branch 'master' of git://git.denx.de/u-boot-arm (2012-10-19 18:23:38 -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 23028d69e950023a3cb605751dbcb1e314be8b36:
> > 
> >   85xx: Protect timeout_save variable with ifdefs (2012-10-22 17:28:18 -0500)
> > 
> > ----------------------------------------------------------------
> > Andy Fleming (2):
> >       powerpc/mpc85xx: Add T4 device definitions
> >       85xx: Protect timeout_save variable with ifdefs
> > 
> > Chris Packham (1):
> >       mpc85xx: make gpio_direction_output respect value
> > 
> > Haiying Wang (2):
> >       mpc85xx/portals: Add qman and bman ip_cfg field into portal info
> >       poweprc/85xx: add QMan frequency info and fdt fixup.
> > 
> > Kumar Gala (1):
> >       powerpc/85xx: Add determining and report IFC frequency
> > 
> > Laurentiu Tudor (2):
> >       powerpc/85xx: introduce SET_PCI_LIODN_BASE, for setting PCI LIODNs
> >       powerpc/p5040ds: add per pci endpoint liodn offset list
> > 
> > Liu Gang (2):
> >       powerpc/srio: Workaround for srio erratrm a004034
> >       powerpc/boot: Change the compile macro for SRIO & PCIE boot master module
> > 
> > Mark Marshall (1):
> >       powerpc mpc85xx: Only clear TSR:WIS in watchdog_reset.
> > 
> > Minghuan Lian (1):
> >       fsl_pci: use 'Header Type' field to judge PCIE mode
> > 
> > Mingkai Hu (1):
> >       phylib: Enable SMSC LAN87xx PHY support
> > 
> > Prabhakar Kushwaha (1):
> >       board/freescale/common:QIXIS:Fix magic number usage
> > 
> > Roy Zang (1):
> >       fm/mEMAC: add mEMAC frame work
> > 
> > Shaohui Xie (1):
> >       powerpc/espi: remove write command length check
> > 
> > Shaveta Leekha (1):
> >       board/freescale/common: VSC3316/VSC3308 initialization code
> > 
> > Shengzhou Liu (1):
> >       powerpc/board: add present2 register definition for QIXIS
> > 
> > Timur Tabi (4):
> >       powerpc/mpc85xx: fix Unicode characters in release.S
> >       powerpc/85xx: define SRIO LIODN functions only if SRIO is defined
> >       powerpc/85xx: move SRIO configuration out of corenet_ds.h
> >       powerpc/85xx: Add P5040 processor support
> > 
> > York Sun (25):
> >       driver/pci: Fix compiling error
> >       powerpc/DPAA: Fix compiling error
> >       powerpc/mpc85xx: Introduce new macros to add and delete TLB entries
> >       powerpc/mpc85xx: Enable L2 at the beginning of U-boot for E6500
> >       powerpc/mpc85xx: change RCW MEM_PLL_PLAT for Chassis generation 2
> >       powerpc/mpc85xx: check number of cores
> >       powerpc/mpc85xx: Fix core cluster PLL calculation for Chassis generation 2
> >       powerpc/mpc85xx: expand SERDES reference clock select bit
> >       powerpc/e6500: Move QCSP registers for QMan v3
> >       powerpc/mpc85xx: Add RCW bits and registers for SerDes for corenet2
> >       powerpc/corenet2: Add SerDes for corenet2
> >       powerpc/corenet2: fix mismatch DDR sync bit from RCW
> >       powerpc/mpc85xx: Add T4240 SoC
> >       powerpc/mpc85xx: Add B4860 and variant SoCs
> >       powerpc/mpc8xxx: Update DDR registers
> >       powerpc/mpc8xxx: Fix DDR driver handling quad-rank DIMMs and address calculation
> >       powerpc/mpc8xxx: Fix DDR initialization waiting for D_INIT
> >       powerpc/mpc85xx: software workaround for DDR erratum A-004468
> >       powerpc/mpc85xx: Add workaround for DDR erratum A004934
> >       powerpc/mpc8xxx: Add auto select bank interleaving mode
> >       powerpc/mpc8xxx: Fix DDR SPD failed message
> >       powerpc/mpc85xx: Remove R6 from spin table
> >       powerpc/mpc85xx: Rewrite spin table to comply with ePAPR v1.1
> >       powerpc/mpc85xx: Add CONFIG_DDR_CLK_FREQ for corenet platform
> >       powerpc/t4qds: Add T4QDS board
> > 
> > Zang Roy-R61911 (1):
> >       P4080/esdhc: make the P4080 ESDHC13 errata workaround conditional
> > 
> > ramneek mehresh (1):
> >       powerpc/mpc8xxx: Fix USB device-tree fixup
> > 
> > shaohui xie (1):
> >       powerpc/fm: fix TBI PHY address settings
> > 
> >  README                                             |    6 +
> >  arch/powerpc/cpu/mpc85xx/Makefile                  |   12 +-
> >  arch/powerpc/cpu/mpc85xx/b4860_ids.c               |  141 ++++
> >  arch/powerpc/cpu/mpc85xx/b4860_serdes.c            |  162 ++++
> >  arch/powerpc/cpu/mpc85xx/cmd_errata.c              |   14 +-
> >  arch/powerpc/cpu/mpc85xx/cpu.c                     |   42 +-
> >  arch/powerpc/cpu/mpc85xx/cpu_init.c                |   62 +-
> >  arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   91 +-
> >  arch/powerpc/cpu/mpc85xx/fdt.c                     |   34 +-
> >  arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c     |  203 +++++
> >  arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h     |   26 +
> >  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |   70 ++
> >  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h      |    3 -
> >  arch/powerpc/cpu/mpc85xx/liodn.c                   |   60 ++
> >  arch/powerpc/cpu/mpc85xx/mp.c                      |  155 +++-
> >  arch/powerpc/cpu/mpc85xx/mp.h                      |    5 +-
> >  arch/powerpc/cpu/mpc85xx/p5040_ids.c               |  127 +++
> >  arch/powerpc/cpu/mpc85xx/p5040_serdes.c            |  117 +++
> >  arch/powerpc/cpu/mpc85xx/portals.c                 |   13 +-
> >  arch/powerpc/cpu/mpc85xx/release.S                 |  219 ++---
> >  arch/powerpc/cpu/mpc85xx/speed.c                   |  163 +++-
> >  arch/powerpc/cpu/mpc85xx/start.S                   |  346 ++++----
> >  arch/powerpc/cpu/mpc85xx/t4240_ids.c               |  203 +++++
> >  arch/powerpc/cpu/mpc85xx/t4240_serdes.c            |  237 ++++++
> >  arch/powerpc/cpu/mpc85xx/tlb.c                     |    2 +-
> >  arch/powerpc/cpu/mpc86xx/fdt.c                     |    2 +-
> >  arch/powerpc/cpu/mpc86xx/mp.c                      |    9 +-
> >  arch/powerpc/cpu/mpc8xxx/cpu.c                     |   11 +
> >  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |   84 +-
> >  arch/powerpc/cpu/mpc8xxx/ddr/interactive.c         |   12 +-
> >  .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   16 +-
> >  arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   26 +-
> >  arch/powerpc/cpu/mpc8xxx/ddr/options.c             |   45 +-
> >  arch/powerpc/cpu/mpc8xxx/ddr/util.c                |   22 +
> >  arch/powerpc/cpu/mpc8xxx/fdt.c                     |   50 +-
> >  arch/powerpc/cpu/mpc8xxx/srio.c                    |  216 ++++-
> >  arch/powerpc/include/asm/config_mpc85xx.h          |  103 ++-
> >  arch/powerpc/include/asm/fsl_ddr_sdram.h           |   34 +
> >  arch/powerpc/include/asm/fsl_fman.h                |   17 +
> >  arch/powerpc/include/asm/fsl_liodn.h               |   15 +-
> >  arch/powerpc/include/asm/fsl_memac.h               |  271 ++++++
> >  arch/powerpc/include/asm/fsl_portals.h             |    5 +-
> >  arch/powerpc/include/asm/fsl_serdes.h              |   42 +
> >  arch/powerpc/include/asm/immap_85xx.h              |  367 +++++++-
> >  arch/powerpc/include/asm/mp.h                      |    2 +-
> >  arch/powerpc/include/asm/mpc85xx_gpio.h            |    5 +-
> >  arch/powerpc/include/asm/processor.h               |   11 +
> >  arch/powerpc/lib/board.c                           |    4 +-
> >  board/freescale/common/Makefile                    |    1 +
> >  board/freescale/common/qixis.c                     |   15 +-
> >  board/freescale/common/qixis.h                     |    8 +-
> >  board/freescale/common/vsc3316_3308.c              |  184 ++++
> >  board/freescale/common/vsc3316_3308.h              |   34 +
> >  board/freescale/t4qds/Makefile                     |   54 ++
> >  board/freescale/t4qds/ddr.c                        |  186 +++++
> >  board/freescale/t4qds/eth.c                        |  495 +++++++++++
> >  board/freescale/t4qds/law.c                        |   47 ++
> >  board/freescale/t4qds/pci.c                        |   39 +
> >  board/freescale/t4qds/t4240qds_qixis.h             |   56 ++
> >  board/freescale/t4qds/t4qds.c                      |  395 +++++++++
> >  board/freescale/t4qds/t4qds.h                      |   37 +
> >  board/freescale/t4qds/tlb.c                        |  136 +++
> >  boards.cfg                                         |    3 +
> >  doc/README.VSC3316-3308                            |   43 +
> >  doc/README.fsl-ddr                                 |    5 +
> >  doc/README.mpc85xx-spin-table                      |   26 +
> >  doc/README.t4240qds                                |   98 +++
> >  drivers/net/fm/Makefile                            |    6 +
> >  drivers/net/fm/eth.c                               |   39 +-
> >  drivers/net/fm/init.c                              |   18 +
> >  drivers/net/fm/memac.c                             |  132 +++
> >  drivers/net/fm/memac_phy.c                         |  150 ++++
> >  drivers/net/fm/t4240.c                             |  128 +++
> >  drivers/pci/fsl_pci_init.c                         |   65 +-
> >  drivers/spi/fsl_espi.c                             |    6 +-
> >  include/config_phylib_all_drivers.h                |    1 +
> >  include/configs/P3041DS.h                          |    4 +
> >  include/configs/P4080DS.h                          |    4 +
> >  include/configs/P5020DS.h                          |    4 +
> >  include/configs/T4240QDS.h                         |   35 +
> >  include/configs/corenet_ds.h                       |    4 -
> >  include/configs/t4qds.h                            |  875 ++++++++++++++++++++
> >  include/e500.h                                     |    3 +
> >  include/fm_eth.h                                   |   53 +-
> >  include/fsl_mdio.h                                 |    6 +-
> >  85 files changed, 6764 insertions(+), 513 deletions(-)
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/b4860_ids.c
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/b4860_serdes.c
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/p5040_ids.c
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/p5040_serdes.c
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/t4240_ids.c
> >  create mode 100644 arch/powerpc/cpu/mpc85xx/t4240_serdes.c
> >  create mode 100644 arch/powerpc/include/asm/fsl_memac.h
> >  create mode 100644 board/freescale/common/vsc3316_3308.c
> >  create mode 100644 board/freescale/common/vsc3316_3308.h
> >  create mode 100644 board/freescale/t4qds/Makefile
> >  create mode 100644 board/freescale/t4qds/ddr.c
> >  create mode 100644 board/freescale/t4qds/eth.c
> >  create mode 100644 board/freescale/t4qds/law.c
> >  create mode 100644 board/freescale/t4qds/pci.c
> >  create mode 100644 board/freescale/t4qds/t4240qds_qixis.h
> >  create mode 100644 board/freescale/t4qds/t4qds.c
> >  create mode 100644 board/freescale/t4qds/t4qds.h
> >  create mode 100644 board/freescale/t4qds/tlb.c
> >  create mode 100644 doc/README.VSC3316-3308
> >  create mode 100644 doc/README.mpc85xx-spin-table
> >  create mode 100644 doc/README.t4240qds
> >  create mode 100644 drivers/net/fm/memac.c
> >  create mode 100644 drivers/net/fm/memac_phy.c
> >  create mode 100644 drivers/net/fm/t4240.c
> >  create mode 100644 include/configs/T4240QDS.h
> >  create mode 100644 include/configs/t4qds.h
> 
> Applied to u-boot/master, thanks!

But I missed that this introduced:
--------------------- SUMMARY ----------------------------
Boards compiled: 626
Boards with errors: 3 ( MPC8641HPCN_36BIT MPC8641HPCN xpedite517x )
----------------------------------------------------------
Which is:
util.c: In function 'board_add_ram_info':
util.c:155:25: error: 'CONFIG_SYS_MPC85xx_DDR2_ADDR' undeclared (first
use in this function)
util.c:155:25: note: each undeclared identifier is reported only once
for each function it appears in

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121023/f3b871fb/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-10-23  2:46   ` Fleming Andy-AFLEMING
@ 2012-10-23 16:20     ` Timur Tabi
  0 siblings, 0 replies; 172+ messages in thread
From: Timur Tabi @ 2012-10-23 16:20 UTC (permalink / raw)
  To: u-boot

Fleming Andy-AFLEMING wrote:

> Ah, I knew there was one more I needed to send a mail about. The 5040
> patch wouldn't apply anymore. Could you rebase? I was unable to
> determine how to fix it. 

Rebase again?  Ugh.

> The CRC patch met with fierce opposition, so I
> haven't applied it.

The only opposition was from Wolfgang, and he was opposed to our EEPROM
format as a whole, not to our patch.  He doesn't like the idea that the
only way to know the location of the CRC is to first read the ID field.
Scott and I explained to him that we don't control this format, we just
implement it.

So I don't think there is any reasonable objection to my patch.  Please
apply it.  Without it, we have a broken implementation of the EEPROM
parser, and *that* is not acceptable.

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-10-22 22:36 Andy Fleming
  2012-10-23  1:23 ` Tabi Timur-B04825
@ 2012-10-23  2:53 ` Tom Rini
  2012-10-23 23:04   ` Tom Rini
  1 sibling, 1 reply; 172+ messages in thread
From: Tom Rini @ 2012-10-23  2:53 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 22, 2012 at 05:36:15PM -0500, Andy Fleming wrote:

>   Merge branch 'master' of git://git.denx.de/u-boot-arm (2012-10-19 18:23:38 -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 23028d69e950023a3cb605751dbcb1e314be8b36:
> 
>   85xx: Protect timeout_save variable with ifdefs (2012-10-22 17:28:18 -0500)
> 
> ----------------------------------------------------------------
> Andy Fleming (2):
>       powerpc/mpc85xx: Add T4 device definitions
>       85xx: Protect timeout_save variable with ifdefs
> 
> Chris Packham (1):
>       mpc85xx: make gpio_direction_output respect value
> 
> Haiying Wang (2):
>       mpc85xx/portals: Add qman and bman ip_cfg field into portal info
>       poweprc/85xx: add QMan frequency info and fdt fixup.
> 
> Kumar Gala (1):
>       powerpc/85xx: Add determining and report IFC frequency
> 
> Laurentiu Tudor (2):
>       powerpc/85xx: introduce SET_PCI_LIODN_BASE, for setting PCI LIODNs
>       powerpc/p5040ds: add per pci endpoint liodn offset list
> 
> Liu Gang (2):
>       powerpc/srio: Workaround for srio erratrm a004034
>       powerpc/boot: Change the compile macro for SRIO & PCIE boot master module
> 
> Mark Marshall (1):
>       powerpc mpc85xx: Only clear TSR:WIS in watchdog_reset.
> 
> Minghuan Lian (1):
>       fsl_pci: use 'Header Type' field to judge PCIE mode
> 
> Mingkai Hu (1):
>       phylib: Enable SMSC LAN87xx PHY support
> 
> Prabhakar Kushwaha (1):
>       board/freescale/common:QIXIS:Fix magic number usage
> 
> Roy Zang (1):
>       fm/mEMAC: add mEMAC frame work
> 
> Shaohui Xie (1):
>       powerpc/espi: remove write command length check
> 
> Shaveta Leekha (1):
>       board/freescale/common: VSC3316/VSC3308 initialization code
> 
> Shengzhou Liu (1):
>       powerpc/board: add present2 register definition for QIXIS
> 
> Timur Tabi (4):
>       powerpc/mpc85xx: fix Unicode characters in release.S
>       powerpc/85xx: define SRIO LIODN functions only if SRIO is defined
>       powerpc/85xx: move SRIO configuration out of corenet_ds.h
>       powerpc/85xx: Add P5040 processor support
> 
> York Sun (25):
>       driver/pci: Fix compiling error
>       powerpc/DPAA: Fix compiling error
>       powerpc/mpc85xx: Introduce new macros to add and delete TLB entries
>       powerpc/mpc85xx: Enable L2 at the beginning of U-boot for E6500
>       powerpc/mpc85xx: change RCW MEM_PLL_PLAT for Chassis generation 2
>       powerpc/mpc85xx: check number of cores
>       powerpc/mpc85xx: Fix core cluster PLL calculation for Chassis generation 2
>       powerpc/mpc85xx: expand SERDES reference clock select bit
>       powerpc/e6500: Move QCSP registers for QMan v3
>       powerpc/mpc85xx: Add RCW bits and registers for SerDes for corenet2
>       powerpc/corenet2: Add SerDes for corenet2
>       powerpc/corenet2: fix mismatch DDR sync bit from RCW
>       powerpc/mpc85xx: Add T4240 SoC
>       powerpc/mpc85xx: Add B4860 and variant SoCs
>       powerpc/mpc8xxx: Update DDR registers
>       powerpc/mpc8xxx: Fix DDR driver handling quad-rank DIMMs and address calculation
>       powerpc/mpc8xxx: Fix DDR initialization waiting for D_INIT
>       powerpc/mpc85xx: software workaround for DDR erratum A-004468
>       powerpc/mpc85xx: Add workaround for DDR erratum A004934
>       powerpc/mpc8xxx: Add auto select bank interleaving mode
>       powerpc/mpc8xxx: Fix DDR SPD failed message
>       powerpc/mpc85xx: Remove R6 from spin table
>       powerpc/mpc85xx: Rewrite spin table to comply with ePAPR v1.1
>       powerpc/mpc85xx: Add CONFIG_DDR_CLK_FREQ for corenet platform
>       powerpc/t4qds: Add T4QDS board
> 
> Zang Roy-R61911 (1):
>       P4080/esdhc: make the P4080 ESDHC13 errata workaround conditional
> 
> ramneek mehresh (1):
>       powerpc/mpc8xxx: Fix USB device-tree fixup
> 
> shaohui xie (1):
>       powerpc/fm: fix TBI PHY address settings
> 
>  README                                             |    6 +
>  arch/powerpc/cpu/mpc85xx/Makefile                  |   12 +-
>  arch/powerpc/cpu/mpc85xx/b4860_ids.c               |  141 ++++
>  arch/powerpc/cpu/mpc85xx/b4860_serdes.c            |  162 ++++
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c              |   14 +-
>  arch/powerpc/cpu/mpc85xx/cpu.c                     |   42 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c                |   62 +-
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   91 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c                     |   34 +-
>  arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c     |  203 +++++
>  arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h     |   26 +
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |   70 ++
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h      |    3 -
>  arch/powerpc/cpu/mpc85xx/liodn.c                   |   60 ++
>  arch/powerpc/cpu/mpc85xx/mp.c                      |  155 +++-
>  arch/powerpc/cpu/mpc85xx/mp.h                      |    5 +-
>  arch/powerpc/cpu/mpc85xx/p5040_ids.c               |  127 +++
>  arch/powerpc/cpu/mpc85xx/p5040_serdes.c            |  117 +++
>  arch/powerpc/cpu/mpc85xx/portals.c                 |   13 +-
>  arch/powerpc/cpu/mpc85xx/release.S                 |  219 ++---
>  arch/powerpc/cpu/mpc85xx/speed.c                   |  163 +++-
>  arch/powerpc/cpu/mpc85xx/start.S                   |  346 ++++----
>  arch/powerpc/cpu/mpc85xx/t4240_ids.c               |  203 +++++
>  arch/powerpc/cpu/mpc85xx/t4240_serdes.c            |  237 ++++++
>  arch/powerpc/cpu/mpc85xx/tlb.c                     |    2 +-
>  arch/powerpc/cpu/mpc86xx/fdt.c                     |    2 +-
>  arch/powerpc/cpu/mpc86xx/mp.c                      |    9 +-
>  arch/powerpc/cpu/mpc8xxx/cpu.c                     |   11 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |   84 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/interactive.c         |   12 +-
>  .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   16 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   26 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/options.c             |   45 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/util.c                |   22 +
>  arch/powerpc/cpu/mpc8xxx/fdt.c                     |   50 +-
>  arch/powerpc/cpu/mpc8xxx/srio.c                    |  216 ++++-
>  arch/powerpc/include/asm/config_mpc85xx.h          |  103 ++-
>  arch/powerpc/include/asm/fsl_ddr_sdram.h           |   34 +
>  arch/powerpc/include/asm/fsl_fman.h                |   17 +
>  arch/powerpc/include/asm/fsl_liodn.h               |   15 +-
>  arch/powerpc/include/asm/fsl_memac.h               |  271 ++++++
>  arch/powerpc/include/asm/fsl_portals.h             |    5 +-
>  arch/powerpc/include/asm/fsl_serdes.h              |   42 +
>  arch/powerpc/include/asm/immap_85xx.h              |  367 +++++++-
>  arch/powerpc/include/asm/mp.h                      |    2 +-
>  arch/powerpc/include/asm/mpc85xx_gpio.h            |    5 +-
>  arch/powerpc/include/asm/processor.h               |   11 +
>  arch/powerpc/lib/board.c                           |    4 +-
>  board/freescale/common/Makefile                    |    1 +
>  board/freescale/common/qixis.c                     |   15 +-
>  board/freescale/common/qixis.h                     |    8 +-
>  board/freescale/common/vsc3316_3308.c              |  184 ++++
>  board/freescale/common/vsc3316_3308.h              |   34 +
>  board/freescale/t4qds/Makefile                     |   54 ++
>  board/freescale/t4qds/ddr.c                        |  186 +++++
>  board/freescale/t4qds/eth.c                        |  495 +++++++++++
>  board/freescale/t4qds/law.c                        |   47 ++
>  board/freescale/t4qds/pci.c                        |   39 +
>  board/freescale/t4qds/t4240qds_qixis.h             |   56 ++
>  board/freescale/t4qds/t4qds.c                      |  395 +++++++++
>  board/freescale/t4qds/t4qds.h                      |   37 +
>  board/freescale/t4qds/tlb.c                        |  136 +++
>  boards.cfg                                         |    3 +
>  doc/README.VSC3316-3308                            |   43 +
>  doc/README.fsl-ddr                                 |    5 +
>  doc/README.mpc85xx-spin-table                      |   26 +
>  doc/README.t4240qds                                |   98 +++
>  drivers/net/fm/Makefile                            |    6 +
>  drivers/net/fm/eth.c                               |   39 +-
>  drivers/net/fm/init.c                              |   18 +
>  drivers/net/fm/memac.c                             |  132 +++
>  drivers/net/fm/memac_phy.c                         |  150 ++++
>  drivers/net/fm/t4240.c                             |  128 +++
>  drivers/pci/fsl_pci_init.c                         |   65 +-
>  drivers/spi/fsl_espi.c                             |    6 +-
>  include/config_phylib_all_drivers.h                |    1 +
>  include/configs/P3041DS.h                          |    4 +
>  include/configs/P4080DS.h                          |    4 +
>  include/configs/P5020DS.h                          |    4 +
>  include/configs/T4240QDS.h                         |   35 +
>  include/configs/corenet_ds.h                       |    4 -
>  include/configs/t4qds.h                            |  875 ++++++++++++++++++++
>  include/e500.h                                     |    3 +
>  include/fm_eth.h                                   |   53 +-
>  include/fsl_mdio.h                                 |    6 +-
>  85 files changed, 6764 insertions(+), 513 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/b4860_ids.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/b4860_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p5040_ids.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p5040_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/t4240_ids.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/t4240_serdes.c
>  create mode 100644 arch/powerpc/include/asm/fsl_memac.h
>  create mode 100644 board/freescale/common/vsc3316_3308.c
>  create mode 100644 board/freescale/common/vsc3316_3308.h
>  create mode 100644 board/freescale/t4qds/Makefile
>  create mode 100644 board/freescale/t4qds/ddr.c
>  create mode 100644 board/freescale/t4qds/eth.c
>  create mode 100644 board/freescale/t4qds/law.c
>  create mode 100644 board/freescale/t4qds/pci.c
>  create mode 100644 board/freescale/t4qds/t4240qds_qixis.h
>  create mode 100644 board/freescale/t4qds/t4qds.c
>  create mode 100644 board/freescale/t4qds/t4qds.h
>  create mode 100644 board/freescale/t4qds/tlb.c
>  create mode 100644 doc/README.VSC3316-3308
>  create mode 100644 doc/README.mpc85xx-spin-table
>  create mode 100644 doc/README.t4240qds
>  create mode 100644 drivers/net/fm/memac.c
>  create mode 100644 drivers/net/fm/memac_phy.c
>  create mode 100644 drivers/net/fm/t4240.c
>  create mode 100644 include/configs/T4240QDS.h
>  create mode 100644 include/configs/t4qds.h

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121022/f7954a1b/attachment.pgp>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-10-23  1:23 ` Tabi Timur-B04825
@ 2012-10-23  2:46   ` Fleming Andy-AFLEMING
  2012-10-23 16:20     ` Timur Tabi
  0 siblings, 1 reply; 172+ messages in thread
From: Fleming Andy-AFLEMING @ 2012-10-23  2:46 UTC (permalink / raw)
  To: u-boot

Ah, I knew there was one more I needed to send a mail about. The 5040 patch wouldn't apply anymore. Could you rebase? I was unable to determine how to fix it. The CRC patch met with fierce opposition, so I haven't applied it.

On Oct 22, 2012, at 20:23, "Tabi Timur-B04825" <B04825@freescale.com> wrote:

> On Mon, Oct 22, 2012 at 5:36 PM, Andy Fleming <afleming@freescale.com> wrote:
> 
>> Timur Tabi (4):
>>      powerpc/mpc85xx: fix Unicode characters in release.S
>>      powerpc/85xx: define SRIO LIODN functions only if SRIO is defined
>>      powerpc/85xx: move SRIO configuration out of corenet_ds.h
>>      powerpc/85xx: Add P5040 processor support
> 
> There are two other patches in Patchwork from me that are delegated to
> you.  What about those?
> 
> http://patchwork.ozlabs.org/patch/189587/
> http://patchwork.ozlabs.org/patch/170753/
> 
> -- 
> Timur Tabi
> Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-10-22 22:36 Andy Fleming
@ 2012-10-23  1:23 ` Tabi Timur-B04825
  2012-10-23  2:46   ` Fleming Andy-AFLEMING
  2012-10-23  2:53 ` Tom Rini
  1 sibling, 1 reply; 172+ messages in thread
From: Tabi Timur-B04825 @ 2012-10-23  1:23 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 22, 2012 at 5:36 PM, Andy Fleming <afleming@freescale.com> wrote:

> Timur Tabi (4):
>       powerpc/mpc85xx: fix Unicode characters in release.S
>       powerpc/85xx: define SRIO LIODN functions only if SRIO is defined
>       powerpc/85xx: move SRIO configuration out of corenet_ds.h
>       powerpc/85xx: Add P5040 processor support

There are two other patches in Patchwork from me that are delegated to
you.  What about those?

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

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2012-10-22 22:36 Andy Fleming
  2012-10-23  1:23 ` Tabi Timur-B04825
  2012-10-23  2:53 ` Tom Rini
  0 siblings, 2 replies; 172+ messages in thread
From: Andy Fleming @ 2012-10-22 22:36 UTC (permalink / raw)
  To: u-boot

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2012-10-19 18:23:38 -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 23028d69e950023a3cb605751dbcb1e314be8b36:

  85xx: Protect timeout_save variable with ifdefs (2012-10-22 17:28:18 -0500)

----------------------------------------------------------------
Andy Fleming (2):
      powerpc/mpc85xx: Add T4 device definitions
      85xx: Protect timeout_save variable with ifdefs

Chris Packham (1):
      mpc85xx: make gpio_direction_output respect value

Haiying Wang (2):
      mpc85xx/portals: Add qman and bman ip_cfg field into portal info
      poweprc/85xx: add QMan frequency info and fdt fixup.

Kumar Gala (1):
      powerpc/85xx: Add determining and report IFC frequency

Laurentiu Tudor (2):
      powerpc/85xx: introduce SET_PCI_LIODN_BASE, for setting PCI LIODNs
      powerpc/p5040ds: add per pci endpoint liodn offset list

Liu Gang (2):
      powerpc/srio: Workaround for srio erratrm a004034
      powerpc/boot: Change the compile macro for SRIO & PCIE boot master module

Mark Marshall (1):
      powerpc mpc85xx: Only clear TSR:WIS in watchdog_reset.

Minghuan Lian (1):
      fsl_pci: use 'Header Type' field to judge PCIE mode

Mingkai Hu (1):
      phylib: Enable SMSC LAN87xx PHY support

Prabhakar Kushwaha (1):
      board/freescale/common:QIXIS:Fix magic number usage

Roy Zang (1):
      fm/mEMAC: add mEMAC frame work

Shaohui Xie (1):
      powerpc/espi: remove write command length check

Shaveta Leekha (1):
      board/freescale/common: VSC3316/VSC3308 initialization code

Shengzhou Liu (1):
      powerpc/board: add present2 register definition for QIXIS

Timur Tabi (4):
      powerpc/mpc85xx: fix Unicode characters in release.S
      powerpc/85xx: define SRIO LIODN functions only if SRIO is defined
      powerpc/85xx: move SRIO configuration out of corenet_ds.h
      powerpc/85xx: Add P5040 processor support

York Sun (25):
      driver/pci: Fix compiling error
      powerpc/DPAA: Fix compiling error
      powerpc/mpc85xx: Introduce new macros to add and delete TLB entries
      powerpc/mpc85xx: Enable L2 at the beginning of U-boot for E6500
      powerpc/mpc85xx: change RCW MEM_PLL_PLAT for Chassis generation 2
      powerpc/mpc85xx: check number of cores
      powerpc/mpc85xx: Fix core cluster PLL calculation for Chassis generation 2
      powerpc/mpc85xx: expand SERDES reference clock select bit
      powerpc/e6500: Move QCSP registers for QMan v3
      powerpc/mpc85xx: Add RCW bits and registers for SerDes for corenet2
      powerpc/corenet2: Add SerDes for corenet2
      powerpc/corenet2: fix mismatch DDR sync bit from RCW
      powerpc/mpc85xx: Add T4240 SoC
      powerpc/mpc85xx: Add B4860 and variant SoCs
      powerpc/mpc8xxx: Update DDR registers
      powerpc/mpc8xxx: Fix DDR driver handling quad-rank DIMMs and address calculation
      powerpc/mpc8xxx: Fix DDR initialization waiting for D_INIT
      powerpc/mpc85xx: software workaround for DDR erratum A-004468
      powerpc/mpc85xx: Add workaround for DDR erratum A004934
      powerpc/mpc8xxx: Add auto select bank interleaving mode
      powerpc/mpc8xxx: Fix DDR SPD failed message
      powerpc/mpc85xx: Remove R6 from spin table
      powerpc/mpc85xx: Rewrite spin table to comply with ePAPR v1.1
      powerpc/mpc85xx: Add CONFIG_DDR_CLK_FREQ for corenet platform
      powerpc/t4qds: Add T4QDS board

Zang Roy-R61911 (1):
      P4080/esdhc: make the P4080 ESDHC13 errata workaround conditional

ramneek mehresh (1):
      powerpc/mpc8xxx: Fix USB device-tree fixup

shaohui xie (1):
      powerpc/fm: fix TBI PHY address settings

 README                                             |    6 +
 arch/powerpc/cpu/mpc85xx/Makefile                  |   12 +-
 arch/powerpc/cpu/mpc85xx/b4860_ids.c               |  141 ++++
 arch/powerpc/cpu/mpc85xx/b4860_serdes.c            |  162 ++++
 arch/powerpc/cpu/mpc85xx/cmd_errata.c              |   14 +-
 arch/powerpc/cpu/mpc85xx/cpu.c                     |   42 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |   62 +-
 arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   91 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                     |   34 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c     |  203 +++++
 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h     |   26 +
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |   70 ++
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h      |    3 -
 arch/powerpc/cpu/mpc85xx/liodn.c                   |   60 ++
 arch/powerpc/cpu/mpc85xx/mp.c                      |  155 +++-
 arch/powerpc/cpu/mpc85xx/mp.h                      |    5 +-
 arch/powerpc/cpu/mpc85xx/p5040_ids.c               |  127 +++
 arch/powerpc/cpu/mpc85xx/p5040_serdes.c            |  117 +++
 arch/powerpc/cpu/mpc85xx/portals.c                 |   13 +-
 arch/powerpc/cpu/mpc85xx/release.S                 |  219 ++---
 arch/powerpc/cpu/mpc85xx/speed.c                   |  163 +++-
 arch/powerpc/cpu/mpc85xx/start.S                   |  346 ++++----
 arch/powerpc/cpu/mpc85xx/t4240_ids.c               |  203 +++++
 arch/powerpc/cpu/mpc85xx/t4240_serdes.c            |  237 ++++++
 arch/powerpc/cpu/mpc85xx/tlb.c                     |    2 +-
 arch/powerpc/cpu/mpc86xx/fdt.c                     |    2 +-
 arch/powerpc/cpu/mpc86xx/mp.c                      |    9 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c                     |   11 +
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |   84 +-
 arch/powerpc/cpu/mpc8xxx/ddr/interactive.c         |   12 +-
 .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   16 +-
 arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   26 +-
 arch/powerpc/cpu/mpc8xxx/ddr/options.c             |   45 +-
 arch/powerpc/cpu/mpc8xxx/ddr/util.c                |   22 +
 arch/powerpc/cpu/mpc8xxx/fdt.c                     |   50 +-
 arch/powerpc/cpu/mpc8xxx/srio.c                    |  216 ++++-
 arch/powerpc/include/asm/config_mpc85xx.h          |  103 ++-
 arch/powerpc/include/asm/fsl_ddr_sdram.h           |   34 +
 arch/powerpc/include/asm/fsl_fman.h                |   17 +
 arch/powerpc/include/asm/fsl_liodn.h               |   15 +-
 arch/powerpc/include/asm/fsl_memac.h               |  271 ++++++
 arch/powerpc/include/asm/fsl_portals.h             |    5 +-
 arch/powerpc/include/asm/fsl_serdes.h              |   42 +
 arch/powerpc/include/asm/immap_85xx.h              |  367 +++++++-
 arch/powerpc/include/asm/mp.h                      |    2 +-
 arch/powerpc/include/asm/mpc85xx_gpio.h            |    5 +-
 arch/powerpc/include/asm/processor.h               |   11 +
 arch/powerpc/lib/board.c                           |    4 +-
 board/freescale/common/Makefile                    |    1 +
 board/freescale/common/qixis.c                     |   15 +-
 board/freescale/common/qixis.h                     |    8 +-
 board/freescale/common/vsc3316_3308.c              |  184 ++++
 board/freescale/common/vsc3316_3308.h              |   34 +
 board/freescale/t4qds/Makefile                     |   54 ++
 board/freescale/t4qds/ddr.c                        |  186 +++++
 board/freescale/t4qds/eth.c                        |  495 +++++++++++
 board/freescale/t4qds/law.c                        |   47 ++
 board/freescale/t4qds/pci.c                        |   39 +
 board/freescale/t4qds/t4240qds_qixis.h             |   56 ++
 board/freescale/t4qds/t4qds.c                      |  395 +++++++++
 board/freescale/t4qds/t4qds.h                      |   37 +
 board/freescale/t4qds/tlb.c                        |  136 +++
 boards.cfg                                         |    3 +
 doc/README.VSC3316-3308                            |   43 +
 doc/README.fsl-ddr                                 |    5 +
 doc/README.mpc85xx-spin-table                      |   26 +
 doc/README.t4240qds                                |   98 +++
 drivers/net/fm/Makefile                            |    6 +
 drivers/net/fm/eth.c                               |   39 +-
 drivers/net/fm/init.c                              |   18 +
 drivers/net/fm/memac.c                             |  132 +++
 drivers/net/fm/memac_phy.c                         |  150 ++++
 drivers/net/fm/t4240.c                             |  128 +++
 drivers/pci/fsl_pci_init.c                         |   65 +-
 drivers/spi/fsl_espi.c                             |    6 +-
 include/config_phylib_all_drivers.h                |    1 +
 include/configs/P3041DS.h                          |    4 +
 include/configs/P4080DS.h                          |    4 +
 include/configs/P5020DS.h                          |    4 +
 include/configs/T4240QDS.h                         |   35 +
 include/configs/corenet_ds.h                       |    4 -
 include/configs/t4qds.h                            |  875 ++++++++++++++++++++
 include/e500.h                                     |    3 +
 include/fm_eth.h                                   |   53 +-
 include/fsl_mdio.h                                 |    6 +-
 85 files changed, 6764 insertions(+), 513 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/b4860_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/b4860_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h
 create mode 100644 arch/powerpc/cpu/mpc85xx/p5040_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p5040_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/t4240_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/t4240_serdes.c
 create mode 100644 arch/powerpc/include/asm/fsl_memac.h
 create mode 100644 board/freescale/common/vsc3316_3308.c
 create mode 100644 board/freescale/common/vsc3316_3308.h
 create mode 100644 board/freescale/t4qds/Makefile
 create mode 100644 board/freescale/t4qds/ddr.c
 create mode 100644 board/freescale/t4qds/eth.c
 create mode 100644 board/freescale/t4qds/law.c
 create mode 100644 board/freescale/t4qds/pci.c
 create mode 100644 board/freescale/t4qds/t4240qds_qixis.h
 create mode 100644 board/freescale/t4qds/t4qds.c
 create mode 100644 board/freescale/t4qds/t4qds.h
 create mode 100644 board/freescale/t4qds/tlb.c
 create mode 100644 doc/README.VSC3316-3308
 create mode 100644 doc/README.mpc85xx-spin-table
 create mode 100644 doc/README.t4240qds
 create mode 100644 drivers/net/fm/memac.c
 create mode 100644 drivers/net/fm/memac_phy.c
 create mode 100644 drivers/net/fm/t4240.c
 create mode 100644 include/configs/T4240QDS.h
 create mode 100644 include/configs/t4qds.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-08-09  0:22 Andy Fleming
@ 2012-08-09 19:07 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2012-08-09 19:07 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1344471771-17485-1-git-send-email-afleming@freescale.com> you wrote:
>   powerpc/82xx: adapt SDRAM settings for mgcoge3ne (2012-07-31 22:36:38 +0200)
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 5c5befda58e4a3f198a033e8a9952b2b309acc86:
> 
>   powerpc/85xx: use CONFIG_SYS_FSL_PCIE_COMPAT macro when setting the PCI LIODNs (2012-08-08 18:32:16 -0500)
> 
> ----------------------------------------------------------------
> Hongtao Jia (1):
>       powerpc/sgmii: To support PHY link state auto detect in SGMII mode
> 
> Matthew McClintock (1):
>       powerpc/p1022ds: add support for SPI and SD boot
> 
> Shaohui Xie (3):
>       powerpc/corenet: fix compile error when CONFIG_SYS_NO_FLASH is defined
>       powerpc/ddr: fix fsl_ddr_get_dimm_params compile error
>       powerpc/p2041: configure the CPLD lane_mux according to RCW
> 
> Timur Tabi (3):
>       powerpc/p1022ds: fix DIU/LBC switching with NAND enabled
>       powerpc/85xx: improve definition of BR_PHYS_ADDR macro
>       powerpc/85xx: use CONFIG_SYS_FSL_PCIE_COMPAT macro when setting the PCI LIODNs
> 
> York Sun (2):
>       powerpc/mpc8xxx: fix workaround for errata DDR111 and DDR134 for DDR over 4GB
>       powerpc/mpc85xx: Ignore E bit for BSC9130/1
> 
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c  |   13 +++++-
>  arch/powerpc/cpu/mpc85xx/p2041_ids.c |    6 +--
>  arch/powerpc/cpu/mpc85xx/p3041_ids.c |    8 ++--
>  arch/powerpc/cpu/mpc85xx/p4080_ids.c |    6 +--
>  arch/powerpc/cpu/mpc85xx/p5020_ids.c |    8 ++--
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c  |    2 +-
>  arch/powerpc/include/asm/fsl_lbc.h   |    6 +--
>  arch/powerpc/include/asm/processor.h |    2 -
>  board/freescale/common/sgmii_riser.c |   57 +++++++++++++++++++----
>  board/freescale/p1022ds/diu.c        |   82 ++++++++++++++++++++++++++++++----
>  board/freescale/p1022ds/p1022ds.c    |    4 ++
>  board/freescale/p1022ds/tlb.c        |   14 ++++++
>  board/freescale/p2041rdb/eth.c       |   39 ++++++++++++++++
>  boards.cfg                           |    4 ++
>  include/configs/MPC8536DS.h          |    9 ++--
>  include/configs/MPC8548CDS.h         |    3 +-
>  include/configs/MPC8572DS.h          |    9 ++--
>  include/configs/P1022DS.h            |   53 ++++++++++++++++++++--
>  include/configs/P2020DS.h            |    9 ++--
>  include/configs/P2041RDB.h           |    5 +++
>  include/configs/corenet_ds.h         |    4 +-
>  include/configs/p1_p2_rdb_pc.h       |    4 +-
>  22 files changed, 285 insertions(+), 62 deletions(-)

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
A mouse is an elephant built by the Japanese.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2012-08-09  0:22 Andy Fleming
  2012-08-09 19:07 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2012-08-09  0:22 UTC (permalink / raw)
  To: u-boot

  powerpc/82xx: adapt SDRAM settings for mgcoge3ne (2012-07-31 22:36:38 +0200)

are available in the git repository at:

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

for you to fetch changes up to 5c5befda58e4a3f198a033e8a9952b2b309acc86:

  powerpc/85xx: use CONFIG_SYS_FSL_PCIE_COMPAT macro when setting the PCI LIODNs (2012-08-08 18:32:16 -0500)

----------------------------------------------------------------
Hongtao Jia (1):
      powerpc/sgmii: To support PHY link state auto detect in SGMII mode

Matthew McClintock (1):
      powerpc/p1022ds: add support for SPI and SD boot

Shaohui Xie (3):
      powerpc/corenet: fix compile error when CONFIG_SYS_NO_FLASH is defined
      powerpc/ddr: fix fsl_ddr_get_dimm_params compile error
      powerpc/p2041: configure the CPLD lane_mux according to RCW

Timur Tabi (3):
      powerpc/p1022ds: fix DIU/LBC switching with NAND enabled
      powerpc/85xx: improve definition of BR_PHYS_ADDR macro
      powerpc/85xx: use CONFIG_SYS_FSL_PCIE_COMPAT macro when setting the PCI LIODNs

York Sun (2):
      powerpc/mpc8xxx: fix workaround for errata DDR111 and DDR134 for DDR over 4GB
      powerpc/mpc85xx: Ignore E bit for BSC9130/1

 arch/powerpc/cpu/mpc85xx/ddr-gen3.c  |   13 +++++-
 arch/powerpc/cpu/mpc85xx/p2041_ids.c |    6 +--
 arch/powerpc/cpu/mpc85xx/p3041_ids.c |    8 ++--
 arch/powerpc/cpu/mpc85xx/p4080_ids.c |    6 +--
 arch/powerpc/cpu/mpc85xx/p5020_ids.c |    8 ++--
 arch/powerpc/cpu/mpc8xxx/ddr/main.c  |    2 +-
 arch/powerpc/include/asm/fsl_lbc.h   |    6 +--
 arch/powerpc/include/asm/processor.h |    2 -
 board/freescale/common/sgmii_riser.c |   57 +++++++++++++++++++----
 board/freescale/p1022ds/diu.c        |   82 ++++++++++++++++++++++++++++++----
 board/freescale/p1022ds/p1022ds.c    |    4 ++
 board/freescale/p1022ds/tlb.c        |   14 ++++++
 board/freescale/p2041rdb/eth.c       |   39 ++++++++++++++++
 boards.cfg                           |    4 ++
 include/configs/MPC8536DS.h          |    9 ++--
 include/configs/MPC8548CDS.h         |    3 +-
 include/configs/MPC8572DS.h          |    9 ++--
 include/configs/P1022DS.h            |   53 ++++++++++++++++++++--
 include/configs/P2020DS.h            |    9 ++--
 include/configs/P2041RDB.h           |    5 +++
 include/configs/corenet_ds.h         |    4 +-
 include/configs/p1_p2_rdb_pc.h       |    4 +-
 22 files changed, 285 insertions(+), 62 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2012-07-06 22:32 Andy Fleming
@ 2012-07-08 17:25 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2012-07-08 17:25 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1341613933-22669-1-git-send-email-afleming@freescale.com> you wrote:
>   tools/mkenvimage.c: fix basename(3) usage (2012-07-02 20:21:49 +0200)
> 
> are available in the git repository at:
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Prabhakar Kushwaha (8):
>       powerpc/mpc85xx:Add BSC9131/BSC9130/BSC9231 Processor Support
>       powerpc/mpc85xx:Add BSC9131 RDB Support
>       PATCH 1/4][v4] doc:Add documentation for e500 external debugger support
>       powerpc/85xx:Fix MSR[DE] bit in MSR to support debugger
>       powerpc/85xx:Make debug exception vector accessible
>       powerpc/85xx:Fix NAND code base to support debugger
>       powerpc/mpc85xx:Add debugger support for e500v2 SoC
>       powerpc/mpc85xx:NAND_SPL:Avoid IFC/eLBC Base address setting
> 
> Shengzhou Liu (2):
>       powerpc/p1010rdb: update mux config of p1010rdb board
>       powerpc/p1010rdb: add readme document for p1010rdb
> 
> Timur Tabi (4):
>       powerpc/85xx: minor clean-ups to the P2020DS board header file
>       powerpc/85xx: fdt_set_phy_handle() should return an error code
>       powerpc/85xx: clean up P1022DS board configuration header file
>       lib/powerpc: addrmap_phys_to_virt() should return a pointer
> 
> York Sun (4):
>       powerpc/P4080: Check SVR for CPU22 workaround
>       powerpc/mpc85xx: Ignore E bit for SVR_SOC_VER()
>       powerpc/mpc85xx: Workaround for erratum CPU_A011
>       powerpc/mpc85xx: Fix Handling the lack of L2 cache on P2040/P2040E
> 
> ramneek mehresh (1):
>       powerpc/85xx: Add USB device-tree fixup for various platforms
> 
>  MAINTAINERS                               |    2 +
>  README                                    |    9 +
>  arch/powerpc/cpu/mpc85xx/Makefile         |    1 +
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c     |   13 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c       |   31 ++-
>  arch/powerpc/cpu/mpc85xx/cpu_init_early.c |   32 ++-
>  arch/powerpc/cpu/mpc85xx/cpu_init_nand.c  |   26 --
>  arch/powerpc/cpu/mpc85xx/fdt.c            |   11 +-
>  arch/powerpc/cpu/mpc85xx/p2041_serdes.c   |    4 +-
>  arch/powerpc/cpu/mpc85xx/release.S        |   39 ++-
>  arch/powerpc/cpu/mpc85xx/start.S          |   90 ++++++-
>  arch/powerpc/cpu/mpc8xxx/cpu.c            |   43 +---
>  arch/powerpc/include/asm/config_mpc85xx.h |   31 ++-
>  arch/powerpc/include/asm/immap_85xx.h     |  119 ++++++++-
>  arch/powerpc/include/asm/io.h             |    2 +-
>  arch/powerpc/include/asm/processor.h      |   46 +---
>  board/freescale/bsc9131rdb/Makefile       |   53 ++++
>  board/freescale/bsc9131rdb/README         |  137 +++++++++
>  board/freescale/bsc9131rdb/bsc9131rdb.c   |   83 ++++++
>  board/freescale/bsc9131rdb/ddr.c          |  187 +++++++++++++
>  board/freescale/bsc9131rdb/law.c          |   31 ++
>  board/freescale/bsc9131rdb/tlb.c          |   67 +++++
>  board/freescale/common/fman.c             |   36 ++--
>  board/freescale/common/fman.h             |    2 +-
>  board/freescale/mpc8536ds/mpc8536ds.c     |    7 +-
>  board/freescale/p1010rdb/README           |  212 ++++++++++++++
>  board/freescale/p1010rdb/ddr.c            |    6 +-
>  board/freescale/p1010rdb/p1010rdb.c       |   60 +++-
>  board/freescale/p1022ds/p1022ds.c         |    6 +-
>  board/freescale/p1023rds/p1023rds.c       |    5 +-
>  board/freescale/p1_p2_rdb/ddr.c           |    6 +-
>  board/freescale/p2020come/p2020come.c     |    4 +-
>  board/freescale/p2020ds/p2020ds.c         |    6 +-
>  board/freescale/p2041rdb/p2041rdb.c       |    6 +-
>  board/freescale/p3060qds/p3060qds.c       |    6 +-
>  boards.cfg                                |    1 +
>  doc/README.mpc85xx                        |  166 +++++++++++
>  include/addr_map.h                        |    2 +-
>  include/configs/BSC9131RDB.h              |  428 +++++++++++++++++++++++++++++
>  include/configs/MPC8536DS.h               |    5 +-
>  include/configs/P1022DS.h                 |   48 ++--
>  include/configs/P1023RDS.h                |    5 +-
>  include/configs/P2020COME.h               |    6 +-
>  include/configs/P2020DS.h                 |   27 +--
>  include/configs/P2041RDB.h                |    8 +-
>  include/configs/corenet_ds.h              |    8 +-
>  lib/addr_map.c                            |   19 +-
>  47 files changed, 1881 insertions(+), 261 deletions(-)
>  create mode 100644 board/freescale/bsc9131rdb/Makefile
>  create mode 100644 board/freescale/bsc9131rdb/README
>  create mode 100644 board/freescale/bsc9131rdb/bsc9131rdb.c
>  create mode 100644 board/freescale/bsc9131rdb/ddr.c
>  create mode 100644 board/freescale/bsc9131rdb/law.c
>  create mode 100644 board/freescale/bsc9131rdb/tlb.c
>  create mode 100644 board/freescale/p1010rdb/README
>  create mode 100644 doc/README.mpc85xx
>  create mode 100644 include/configs/BSC9131RDB.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
				 EARTH
			     smog  |   bricks
			 AIR  --  mud  --  FIRE
			soda water |   tequila
				 WATER

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2012-07-06 22:32 Andy Fleming
  2012-07-08 17:25 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2012-07-06 22:32 UTC (permalink / raw)
  To: u-boot

  tools/mkenvimage.c: fix basename(3) usage (2012-07-02 20:21:49 +0200)

are available in the git repository at:
  git://www.denx.de/git/u-boot-mpc85xx.git master

Prabhakar Kushwaha (8):
      powerpc/mpc85xx:Add BSC9131/BSC9130/BSC9231 Processor Support
      powerpc/mpc85xx:Add BSC9131 RDB Support
      PATCH 1/4][v4] doc:Add documentation for e500 external debugger support
      powerpc/85xx:Fix MSR[DE] bit in MSR to support debugger
      powerpc/85xx:Make debug exception vector accessible
      powerpc/85xx:Fix NAND code base to support debugger
      powerpc/mpc85xx:Add debugger support for e500v2 SoC
      powerpc/mpc85xx:NAND_SPL:Avoid IFC/eLBC Base address setting

Shengzhou Liu (2):
      powerpc/p1010rdb: update mux config of p1010rdb board
      powerpc/p1010rdb: add readme document for p1010rdb

Timur Tabi (4):
      powerpc/85xx: minor clean-ups to the P2020DS board header file
      powerpc/85xx: fdt_set_phy_handle() should return an error code
      powerpc/85xx: clean up P1022DS board configuration header file
      lib/powerpc: addrmap_phys_to_virt() should return a pointer

York Sun (4):
      powerpc/P4080: Check SVR for CPU22 workaround
      powerpc/mpc85xx: Ignore E bit for SVR_SOC_VER()
      powerpc/mpc85xx: Workaround for erratum CPU_A011
      powerpc/mpc85xx: Fix Handling the lack of L2 cache on P2040/P2040E

ramneek mehresh (1):
      powerpc/85xx: Add USB device-tree fixup for various platforms

 MAINTAINERS                               |    2 +
 README                                    |    9 +
 arch/powerpc/cpu/mpc85xx/Makefile         |    1 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c     |   13 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c       |   31 ++-
 arch/powerpc/cpu/mpc85xx/cpu_init_early.c |   32 ++-
 arch/powerpc/cpu/mpc85xx/cpu_init_nand.c  |   26 --
 arch/powerpc/cpu/mpc85xx/fdt.c            |   11 +-
 arch/powerpc/cpu/mpc85xx/p2041_serdes.c   |    4 +-
 arch/powerpc/cpu/mpc85xx/release.S        |   39 ++-
 arch/powerpc/cpu/mpc85xx/start.S          |   90 ++++++-
 arch/powerpc/cpu/mpc8xxx/cpu.c            |   43 +---
 arch/powerpc/include/asm/config_mpc85xx.h |   31 ++-
 arch/powerpc/include/asm/immap_85xx.h     |  119 ++++++++-
 arch/powerpc/include/asm/io.h             |    2 +-
 arch/powerpc/include/asm/processor.h      |   46 +---
 board/freescale/bsc9131rdb/Makefile       |   53 ++++
 board/freescale/bsc9131rdb/README         |  137 +++++++++
 board/freescale/bsc9131rdb/bsc9131rdb.c   |   83 ++++++
 board/freescale/bsc9131rdb/ddr.c          |  187 +++++++++++++
 board/freescale/bsc9131rdb/law.c          |   31 ++
 board/freescale/bsc9131rdb/tlb.c          |   67 +++++
 board/freescale/common/fman.c             |   36 ++--
 board/freescale/common/fman.h             |    2 +-
 board/freescale/mpc8536ds/mpc8536ds.c     |    7 +-
 board/freescale/p1010rdb/README           |  212 ++++++++++++++
 board/freescale/p1010rdb/ddr.c            |    6 +-
 board/freescale/p1010rdb/p1010rdb.c       |   60 +++-
 board/freescale/p1022ds/p1022ds.c         |    6 +-
 board/freescale/p1023rds/p1023rds.c       |    5 +-
 board/freescale/p1_p2_rdb/ddr.c           |    6 +-
 board/freescale/p2020come/p2020come.c     |    4 +-
 board/freescale/p2020ds/p2020ds.c         |    6 +-
 board/freescale/p2041rdb/p2041rdb.c       |    6 +-
 board/freescale/p3060qds/p3060qds.c       |    6 +-
 boards.cfg                                |    1 +
 doc/README.mpc85xx                        |  166 +++++++++++
 include/addr_map.h                        |    2 +-
 include/configs/BSC9131RDB.h              |  428 +++++++++++++++++++++++++++++
 include/configs/MPC8536DS.h               |    5 +-
 include/configs/P1022DS.h                 |   48 ++--
 include/configs/P1023RDS.h                |    5 +-
 include/configs/P2020COME.h               |    6 +-
 include/configs/P2020DS.h                 |   27 +--
 include/configs/P2041RDB.h                |    8 +-
 include/configs/corenet_ds.h              |    8 +-
 lib/addr_map.c                            |   19 +-
 47 files changed, 1881 insertions(+), 261 deletions(-)
 create mode 100644 board/freescale/bsc9131rdb/Makefile
 create mode 100644 board/freescale/bsc9131rdb/README
 create mode 100644 board/freescale/bsc9131rdb/bsc9131rdb.c
 create mode 100644 board/freescale/bsc9131rdb/ddr.c
 create mode 100644 board/freescale/bsc9131rdb/law.c
 create mode 100644 board/freescale/bsc9131rdb/tlb.c
 create mode 100644 board/freescale/p1010rdb/README
 create mode 100644 doc/README.mpc85xx
 create mode 100644 include/configs/BSC9131RDB.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
       [not found] <1329349202-22464-1-git-send-email-afleming@freescale.com>
@ 2012-02-17 22:54 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2012-02-17 22:54 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1329349202-22464-1-git-send-email-afleming@freescale.com> you wrote:
> The following changes since commit 9a3aae22edf1eda6326cc51c28631ca5c23b7706:
> 
>   arm, davinci: Add support for the Calimain board from OMICRON electronics (2012-02-12 10:11:33 +0100)
> 
> are available in the git repository at:
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> ramneek mehresh (2):
>       powerpc/8xxx: Cleanup USB device-tree fixup
>       powerpc/8xxx:Add MPH controller support in USB device-tree fixup
> 
>  arch/powerpc/cpu/mpc8xxx/fdt.c |   47 ++++++++++++++++++++++++++-------------
>  include/fdt_support.h          |    4 +-
>  2 files changed, 33 insertions(+), 18 deletions(-)

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 ain't so much the things we don't know that get  us  in  trouble.
It's  the  things  we know that ain't so." - Artemus Ward aka Charles
Farrar Brown

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-10 16:20 Kumar Gala
@ 2011-04-10 19:31 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2011-04-10 19:31 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1104101120030.23888@right.am.freescale.net> you wrote:
> The following changes since commit 4db2fa7f9446d0f2fe8db3d62184b1212fe22707:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-04-05 12:24:20 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Haiying Wang (1):
>       powerpc/85xx: Add P1021 specific QE and UEC support
> 
> Jiang Yutang (3):
>       powerpc/85xx: Enable support for ATI graphics cards on P1022DS
>       powerpc/85xx: Add support usb2/etsec and tdm/audio pin multiplex on P1022DS
>       powerpc/85xx: Update default hwconfig on P1022DS
> 
> Kumar Gala (1):
>       powerpc/85xx: Drop CONFIG_VIDEO support on corenet_ds boards
> 
> Matthew McClintock (1):
>       powerpc/85xx: rename NAND prefixes to CONFIG_SYS
> 
> Priyanka Jain (1):
>       fsl_esdhc: Deal with watermark level register related changes
> 
> Shaohui Xie (1):
>       powerpc/85xx: Add PBL boot from SPI flash support on P4080DS
> 
> Timur Tabi (2):
>       p4080ds: add README.p4080ds which documents the "serdes" hwconfig option
>       p4080ds: remove rev1-specific code for the SERDES8 erratum
> 
> Zhao Chenhui (2):
>       powerpc/85xx: don't init SDRAM when CONFIG_SYS_RAMBOOT
>       powerpc/85xx: Add some defines & registers in immap_85xx.h
> 
>  arch/powerpc/cpu/mpc85xx/cpu.c                |   11 +++
>  arch/powerpc/cpu/mpc85xx/cpu_init.c           |   19 +++++
>  arch/powerpc/cpu/mpc85xx/cpu_init_nand.c      |    8 +-
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |  106 +++++++++++--------------
>  arch/powerpc/cpu/mpc85xx/speed.c              |    8 ++-
>  arch/powerpc/include/asm/config_mpc85xx.h     |   14 +++
>  arch/powerpc/include/asm/fsl_ddr_sdram.h      |    1 +
>  arch/powerpc/include/asm/immap_85xx.h         |   53 ++++++++++--
>  board/freescale/corenet_ds/tlb.c              |   12 +++-
>  board/freescale/p1022ds/p1022ds.c             |   56 +++++++++++---
>  boards.cfg                                    |    1 +
>  doc/README.p1022ds                            |   24 ++++++
>  doc/README.p4080ds                            |   32 ++++++++
>  drivers/mmc/fsl_esdhc.c                       |    8 +-
>  drivers/qe/uec.c                              |   37 +++++++++-
>  include/configs/MPC8536DS.h                   |   18 ++--
>  include/configs/MPC8569MDS.h                  |   12 ++--
>  include/configs/MPC8572DS.h                   |   18 ++--
>  include/configs/P1022DS.h                     |   17 ++++
>  include/configs/P1_P2_RDB.h                   |   12 ++--
>  include/configs/P2020DS.h                     |   14 ++--
>  include/configs/corenet_ds.h                  |   50 ++++++------
>  include/fsl_esdhc.h                           |   15 +++-
>  23 files changed, 394 insertions(+), 152 deletions(-)
>  create mode 100644 doc/README.p1022ds
>  create mode 100644 doc/README.p4080ds

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
"Faith: not *wanting* to know what is true."    - Friedrich Nietzsche

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2011-04-10 16:20 Kumar Gala
  2011-04-10 19:31 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2011-04-10 16:20 UTC (permalink / raw)
  To: u-boot

The following changes since commit 4db2fa7f9446d0f2fe8db3d62184b1212fe22707:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-04-05 12:24:20 +0200)

are available in the git repository at:

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

Haiying Wang (1):
      powerpc/85xx: Add P1021 specific QE and UEC support

Jiang Yutang (3):
      powerpc/85xx: Enable support for ATI graphics cards on P1022DS
      powerpc/85xx: Add support usb2/etsec and tdm/audio pin multiplex on P1022DS
      powerpc/85xx: Update default hwconfig on P1022DS

Kumar Gala (1):
      powerpc/85xx: Drop CONFIG_VIDEO support on corenet_ds boards

Matthew McClintock (1):
      powerpc/85xx: rename NAND prefixes to CONFIG_SYS

Priyanka Jain (1):
      fsl_esdhc: Deal with watermark level register related changes

Shaohui Xie (1):
      powerpc/85xx: Add PBL boot from SPI flash support on P4080DS

Timur Tabi (2):
      p4080ds: add README.p4080ds which documents the "serdes" hwconfig option
      p4080ds: remove rev1-specific code for the SERDES8 erratum

Zhao Chenhui (2):
      powerpc/85xx: don't init SDRAM when CONFIG_SYS_RAMBOOT
      powerpc/85xx: Add some defines & registers in immap_85xx.h

 arch/powerpc/cpu/mpc85xx/cpu.c                |   11 +++
 arch/powerpc/cpu/mpc85xx/cpu_init.c           |   19 +++++
 arch/powerpc/cpu/mpc85xx/cpu_init_nand.c      |    8 +-
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |  106 +++++++++++--------------
 arch/powerpc/cpu/mpc85xx/speed.c              |    8 ++-
 arch/powerpc/include/asm/config_mpc85xx.h     |   14 +++
 arch/powerpc/include/asm/fsl_ddr_sdram.h      |    1 +
 arch/powerpc/include/asm/immap_85xx.h         |   53 ++++++++++--
 board/freescale/corenet_ds/tlb.c              |   12 +++-
 board/freescale/p1022ds/p1022ds.c             |   56 +++++++++++---
 boards.cfg                                    |    1 +
 doc/README.p1022ds                            |   24 ++++++
 doc/README.p4080ds                            |   32 ++++++++
 drivers/mmc/fsl_esdhc.c                       |    8 +-
 drivers/qe/uec.c                              |   37 +++++++++-
 include/configs/MPC8536DS.h                   |   18 ++--
 include/configs/MPC8569MDS.h                  |   12 ++--
 include/configs/MPC8572DS.h                   |   18 ++--
 include/configs/P1022DS.h                     |   17 ++++
 include/configs/P1_P2_RDB.h                   |   12 ++--
 include/configs/P2020DS.h                     |   14 ++--
 include/configs/corenet_ds.h                  |   50 ++++++------
 include/fsl_esdhc.h                           |   15 +++-
 23 files changed, 394 insertions(+), 152 deletions(-)
 create mode 100644 doc/README.p1022ds
 create mode 100644 doc/README.p4080ds

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 19:42     ` Wolfgang Denk
                         ` (2 preceding siblings ...)
  2011-04-05  3:21       ` Kumar Gala
@ 2011-04-05 14:24       ` Jerry Van Baren
  3 siblings, 0 replies; 172+ messages in thread
From: Jerry Van Baren @ 2011-04-05 14:24 UTC (permalink / raw)
  To: u-boot

On 04/04/2011 03:42 PM, Wolfgang Denk wrote:
> Dear Kumar Gala,
>
> In message<16CF6CAD-477C-4E04-93E0-1DADCF05C724@kernel.crashing.org>  you wrote:

[snip]

> Timur: does this fix any real problem?
>
>>> powerpc/85xx: introduce 'fdt verify' command
>>
>> I'm wondering if its better to just set the dtb props instead of verifying.
>
> Unfortunately Timur's posting broke the mail thread because he failed
> to add keep reference headers in his patch postings.  I'm not happy
> with this implementation either.
>
> In any case this needs the ACK from the responsible custodian (FDT =>
> gvb).

I don't see any problem with the patch other than a minor typo  On the 
last line, s/patch/match./

>> +/*
>> + * Verify the addresses for all of the PCI controllers
>> + *
>> + * PCI is complicated because there is no correlation between the numbering
>> + * of the controllers by U-Boot and the numbering the device tree.  So we need
>> + * to search all of the aliases until we find a patch
>> + */

It appears to provide a valuable service.

Acked-by: Gerald Van Baren <vanbaren@cideas.com>

> Best regards,
>
> Wolfgang Denk
>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 14:14 Kumar Gala
  2011-04-04 17:48 ` Timur Tabi
@ 2011-04-05 10:26 ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2011-04-05 10:26 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1104040913320.20731@right.am.freescale.net> you wrote:
> The following changes since commit 19b54a701811220221fc4d5089a2bb18892018ca:
> 
>   Prepare v2011.03 (2011-03-31 23:45:36 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master


Pulling fails with a merge conflict in drivers/usb/host/ehci-pci.c;
please check.


> Dipen Dudhat (1):
>       powerpc/85xx: Add support for Integrated Flash Controller (IFC)
> 
> Haiying Wang (2):
>       powerpc/85xx: Refactor Qman/Portal support to be shared between SoCs
>       powerpc/85xx: load ucode from nand flash before qe_init
> 
> Jerry Huang (1):
>       powerpc/85xx: Add eSDHC support on P2020DS
> 
> Jiang Yutang (1):
>       powerpc/85xx: Add 36-bit address map support to P1022DS
> 
> Kumar Gala (16):
>       powerpc/85xx: Remove DATARATE_*_MHZ defines in static ddr init
>       powerpc/85xx: Declare fsl_ddr_set_memctl_regs in <asm/fsl_ddr_sdram.h>
>       powerpc/85xx: Add some defines for P2040, P3041, P5010, P5020
>       powerpc: Move cpu specific lmb reserve to arch_lmb_reserve
>       powerpc/85xx: Remove config.mk for nand linker script
>       powerpc/8xxx: Replace fsl_ddr_get_mem_data_rate with get_ddr_freq()
>       powerpc/8xxx: Refactor fsl_ddr_get_spd into common code from board
>       powerpc/85xx: Cleanup some QE related defines
>       powerpc: Add cpu_secondary_init_r to allow for initialization post env setup
>       powerpc/85xx: Don't build read_tlbcam_entry for CONFIG_NAND_SPL
>       powerpc/8xxx: Fix LAW init to respect pre-initialized entries
>       powerpc/85xx: Support for Freescale P1024/P1025 processor
>       powerpc/85xx: Specify CONFIG_SYS_FM_MURAM_SIZE
>       powerpc/85xx: Fixup determining PME, FMan freq
>       powerpc/85xx: Fix determining Fman freq on P1023
>       powerpc/8xxx: Fix typo for address hashing message
> 
> Kyle Moffett (2):
>       fsl_ddr: Don't use full 64-bit divides on 32-bit PowerPC
>       mpc8xxx: DDR2/DDR3: Clean up DIMM-type switch statements
> 
> Laurentiu TUDOR (1):
>       powerpc/85xx: Fix setting of LIODN prop in PCIe nodes on P3041/P5020
> 
> Li Yang (2):
>       powerpc/85xx: Update P2020DS default env settings
>       tsec: add AR8021 PHY support
> 
> Pankaj Chauhan (1):
>       powerpc/85xx: Extend ethernet device tree stashing parameters for "fsl,etsec2"
> 
> Poonam Aggrwal (6):
>       powerpc/85xx: Use BR_PHYS_ADDR macro to setup BRs on P1_P2_RDB
>       fsl_ddr: Adds 16 bit DDR Data width option
>       powerpc/85xx: Adds some P1010/P1014 SoC configuration defines
>       powerpc/85xx: Removed P1/P2 RDB RevB support
>       powerpc/85xx: Optimized DDR settings for 800MT/s on P1/P2 RDB
>       powerpc/85xx: Add 36-bit physical addressing support for P1_P2_RDB
> 
> Prabhakar Kushwaha (2):
>       powerpc/85xx: Add SERDES support for P1010/P1014
>       fsl_pci: Add support for FSL PCIe controllers v2.x
> 
> Priyanka Jain (3):
>       powerpc/85xx: Corrected sdhc clock value for P1010
>       powerpc/85xx: Use DDR for RAMBOOT instead of L2 SRAM on p1_p2_rdb
>       powerpc/85xx: Read board switch settings on p1_p2_rdb
> 
> Roy Zang (1):
>       powerpc/85xx: Add support for Freescale P1023/P1017 Processors
> 
> Timur Tabi (2):
>       p1022ds: allow for board-specific ngPIXIS functions
>       fsl: obsolete NXID v0 EEPROMs, automatically upgrade them to NXID v1
> 
> York Sun (2):
>       powerpc/85xx: Update fixed DDR3 timing table for P4080DS
>       powerpc/8xxx: Display DIMM model
> 
> Zhao Chenhui (4):
>       echi: add ULI1575 PCI ID
>       powerpc/85xx: Replace memctl_intlv_ctl with hwconfig on MPC8572DS
>       powerpc/85xx: Disable ECC in considering performance on MPC8572DS
>       powerpc/85xx: Add support for ULI1575 PCI EHCI module on MPC8572DS
> 
> bhaskar upadhaya (1):
>       powerpc/85xx: Update timer-frequency prop in ptp_timer node of device tree
> 
>  arch/powerpc/cpu/mpc85xx/Makefile                  |   14 +-
>  arch/powerpc/cpu/mpc85xx/cpu.c                     |    7 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c                |   32 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c                     |   12 +
>  arch/powerpc/cpu/mpc85xx/p1010_serdes.c            |   75 ++
>  arch/powerpc/cpu/mpc85xx/p1023_serdes.c            |   53 ++
>  arch/powerpc/cpu/mpc85xx/p3041_ids.c               |   10 +-
>  arch/powerpc/cpu/mpc85xx/p4080_ids.c               |    8 +-
>  arch/powerpc/cpu/mpc85xx/p5020_ids.c               |   10 +-
>  arch/powerpc/cpu/mpc85xx/portals.c                 |   32 +-
>  arch/powerpc/cpu/mpc85xx/speed.c                   |   48 +-
>  arch/powerpc/cpu/mpc85xx/tlb.c                     |    4 +-
>  arch/powerpc/cpu/mpc8xxx/Makefile                  |    1 +
>  arch/powerpc/cpu/mpc8xxx/cpu.c                     |   14 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |    4 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h                 |    1 -
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr2_dimm_params.c    |   23 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c    |   43 +-
>  .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   11 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   63 ++-
>  arch/powerpc/cpu/mpc8xxx/ddr/util.c                |   60 +-
>  arch/powerpc/cpu/mpc8xxx/fsl_ifc.c                 |   84 ++
>  arch/powerpc/include/asm/config.h                  |    2 +
>  arch/powerpc/include/asm/config_mpc85xx.h          |  117 +++
>  arch/powerpc/include/asm/fsl_ddr_sdram.h           |    3 +
>  arch/powerpc/include/asm/fsl_ifc.h                 |  957 ++++++++++++++++++++
>  arch/powerpc/include/asm/fsl_law.h                 |    4 +-
>  arch/powerpc/include/asm/fsl_liodn.h               |   14 +-
>  arch/powerpc/include/asm/fsl_pci.h                 |   20 +-
>  arch/powerpc/include/asm/immap_85xx.h              |   35 +-
>  arch/powerpc/include/asm/immap_qe.h                |   98 +--
>  arch/powerpc/include/asm/processor.h               |   12 +
>  arch/powerpc/lib/board.c                           |   14 +
>  arch/powerpc/lib/bootm.c                           |    5 +
>  board/freescale/common/ngpixis.c                   |   56 +-
>  board/freescale/common/ngpixis.h                   |    8 +-
>  board/freescale/common/sys_eeprom.c                |   50 +-
>  board/freescale/corenet_ds/corenet_ds.c            |   11 +-
>  board/freescale/corenet_ds/ddr.c                   |   49 +-
>  board/freescale/corenet_ds/p4080ds_ddr.c           |   24 +-
>  board/freescale/mpc8536ds/config.mk                |   30 -
>  board/freescale/mpc8536ds/ddr.c                    |   26 -
>  board/freescale/mpc8540ads/ddr.c                   |   30 -
>  board/freescale/mpc8541cds/ddr.c                   |   26 -
>  board/freescale/mpc8544ds/ddr.c                    |   27 -
>  board/freescale/mpc8548cds/ddr.c                   |   27 -
>  board/freescale/mpc8555cds/ddr.c                   |   26 -
>  board/freescale/mpc8560ads/ddr.c                   |   30 -
>  board/freescale/mpc8568mds/ddr.c                   |   28 -
>  board/freescale/mpc8569mds/config.mk               |   30 -
>  board/freescale/mpc8569mds/ddr.c                   |   28 -
>  board/freescale/mpc8572ds/config.mk                |   30 -
>  board/freescale/mpc8572ds/ddr.c                    |   28 -
>  board/freescale/mpc8572ds/mpc8572ds.c              |   11 +-
>  board/freescale/mpc8610hpcd/ddr.c                  |   26 -
>  board/freescale/mpc8641hpcn/ddr.c                  |   37 +-
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c          |   11 +-
>  board/freescale/p1022ds/ddr.c                      |   23 -
>  board/freescale/p1022ds/diu.c                      |   66 ++-
>  board/freescale/p1022ds/p1022ds.c                  |   13 +-
>  board/freescale/p1_p2_rdb/config.mk                |   31 -
>  board/freescale/p1_p2_rdb/ddr.c                    |   47 +-
>  board/freescale/p1_p2_rdb/p1_p2_rdb.c              |   66 +-
>  board/freescale/p1_p2_rdb/tlb.c                    |   22 +-
>  board/freescale/p2020ds/ddr.c                      |   24 -
>  board/freescale/p2020ds/p2020ds.c                  |   23 +-
>  board/sbc8548/ddr.c                                |   27 -
>  board/sbc8560/ddr.c                                |   30 -
>  board/sbc8641d/ddr.c                               |   35 -
>  board/sbc8641d/sbc8641d.c                          |    9 -
>  board/socrates/ddr.c                               |   27 -
>  board/stx/stxgp3/ddr.c                             |   30 -
>  board/stx/stxssa/ddr.c                             |   29 -
>  board/xes/xpedite517x/ddr.c                        |   32 +-
>  board/xes/xpedite517x/xpedite517x.c                |    9 -
>  board/xes/xpedite520x/ddr.c                        |   22 +-
>  board/xes/xpedite537x/ddr.c                        |   22 +-
>  board/xes/xpedite537x/xpedite537x.c                |    9 -
>  board/xes/xpedite550x/ddr.c                        |   20 +-
>  board/xes/xpedite550x/xpedite550x.c                |    9 -
>  boards.cfg                                         |   13 +
>  common/ddr_spd.c                                   |    2 +-
>  drivers/misc/fsl_law.c                             |   20 +
>  drivers/net/tsec.c                                 |   23 +
>  drivers/pci/fsl_pci_init.c                         |   12 +-
>  drivers/usb/host/ehci-pci.c                        |    1 +
>  include/common.h                                   |    4 +
>  include/configs/MPC8536DS.h                        |    1 +
>  include/configs/MPC8569MDS.h                       |    4 +-
>  include/configs/MPC8572DS.h                        |   17 +-
>  include/configs/MPC8610HPCD.h                      |    2 +-
>  include/configs/P1022DS.h                          |   48 +-
>  include/configs/P1_P2_RDB.h                        |   83 ++-
>  include/configs/P2020DS.h                          |   49 +-
>  include/configs/corenet_ds.h                       |    1 +
>  include/configs/xpedite550x.h                      |    2 +-
>  include/ddr_spd.h                                  |   28 +-
>  97 files changed, 2233 insertions(+), 1241 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p1010_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p1023_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc8xxx/fsl_ifc.c
>  create mode 100644 arch/powerpc/include/asm/fsl_ifc.h
>  delete mode 100644 board/freescale/mpc8536ds/config.mk
>  delete mode 100644 board/freescale/mpc8569mds/config.mk
>  delete mode 100644 board/freescale/mpc8572ds/config.mk
>  delete mode 100644 board/freescale/p1_p2_rdb/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
"There are things that are so serious that you can  only  joke  about
them"                                                    - Heisenberg

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
       [not found] <alpine.LFD.2.00.1104040913320.20731@right.am.freescale.net >
@ 2011-04-05  6:59 ` Fabian Cenedese
  0 siblings, 0 replies; 172+ messages in thread
From: Fabian Cenedese @ 2011-04-05  6:59 UTC (permalink / raw)
  To: u-boot

At 09:14 04.04.2011 -0500, you wrote:
>The following changes since commit 19b54a701811220221fc4d5089a2bb18892018ca:
>
>  Prepare v2011.03 (2011-03-31 23:45:36 +0200)
>
>are available in the git repository at:
>  git://git.denx.de/u-boot-mpc85xx.git master

May I also ask about this patch?

Removed clearing of L2 cache as SRAM as it is not necessary without ECC.
This also speeds up the booting process.

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

Thanks

bye  Fabi

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 19:42     ` Wolfgang Denk
  2011-04-04 19:54       ` Timur Tabi
  2011-04-04 19:55       ` Scott Wood
@ 2011-04-05  3:21       ` Kumar Gala
  2011-04-05 14:24       ` Jerry Van Baren
  3 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2011-04-05  3:21 UTC (permalink / raw)
  To: u-boot


On Apr 4, 2011, at 2:42 PM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <16CF6CAD-477C-4E04-93E0-1DADCF05C724@kernel.crashing.org> you wrote:
>> 
>>> powerpc: fix implementation of out_8 to match the other out_XX functions
>> 
>> Will pull in.
> 
> Why you?  This is in no way 85xx specific.

Only because it was assigned to me on patchworks.  (I might have done that but assumed you did).  I'm happy to leave this to you as a generic PPC issue.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 19:55       ` Scott Wood
@ 2011-04-04 20:58         ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2011-04-04 20:58 UTC (permalink / raw)
  To: u-boot

Dear Scott Wood,

In message <20110404145528.1bd34cea@schlenkerla.am.freescale.net> you wrote:
>
> > Why does this come up only now?  Why has it not been mentioned in the
> > v2010.12 and v2011.03 relese cycles?
> > 
> > Timur: does this fix any real problem?
> 
> It came up here:
> http://www.mail-archive.com/u-boot at lists.denx.de/msg43557.html
> 
> I don't know of a visible symptom of this as the codebase currently stands,
> but it's a bug waiting to happen.  The semantics are different from every
> other accessor, and different from Linux (with which U-Boot shares a fair
> amount of driver code).

Agreed.  Timur, can you please add this information to the commit
message?

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
You can observe a lot just by watchin'.                  - Yogi Berra

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 19:42     ` Wolfgang Denk
  2011-04-04 19:54       ` Timur Tabi
@ 2011-04-04 19:55       ` Scott Wood
  2011-04-04 20:58         ` Wolfgang Denk
  2011-04-05  3:21       ` Kumar Gala
  2011-04-05 14:24       ` Jerry Van Baren
  3 siblings, 1 reply; 172+ messages in thread
From: Scott Wood @ 2011-04-04 19:55 UTC (permalink / raw)
  To: u-boot

On Mon, 4 Apr 2011 21:42:27 +0200
Wolfgang Denk <wd@denx.de> wrote:

> Dear Kumar Gala,
> 
> In message <16CF6CAD-477C-4E04-93E0-1DADCF05C724@kernel.crashing.org> you wrote:
> > 
> > > powerpc: fix implementation of out_8 to match the other out_XX functions
> >
> > Will pull in.
> 
> Why you?  This is in no way 85xx specific.
> 
> Why does this come up only now?  Why has it not been mentioned in the
> v2010.12 and v2011.03 relese cycles?
> 
> Timur: does this fix any real problem?

It came up here:
http://www.mail-archive.com/u-boot at lists.denx.de/msg43557.html

I don't know of a visible symptom of this as the codebase currently stands,
but it's a bug waiting to happen.  The semantics are different from every
other accessor, and different from Linux (with which U-Boot shares a fair
amount of driver code).

-Scott

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 19:42     ` Wolfgang Denk
@ 2011-04-04 19:54       ` Timur Tabi
  2011-04-04 19:55       ` Scott Wood
                         ` (2 subsequent siblings)
  3 siblings, 0 replies; 172+ messages in thread
From: Timur Tabi @ 2011-04-04 19:54 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk wrote:
>>> powerpc: fix implementation of out_8 to match the other out_XX functions
>> >
>> > Will pull in.

> Why you?  This is in no way 85xx specific.
> 
> Why does this come up only now?  Why has it not been mentioned in the
> v2010.12 and v2011.03 relese cycles?

I posted the patch four months ago.  Did I miss something?

> Timur: does this fix any real problem?

Not to my knowledge, but I suspect that people want out_8 to have the same
synchronization behavior as the other out_xx functions.

>>> > > powerpc/85xx: introduce 'fdt verify' command
>> >
>> > I'm wondering if its better to just set the dtb props instead of verifying.

> Unfortunately Timur's posting broke the mail thread because he failed
> to add keep reference headers in his patch postings.

I'm not doing anything special when I send email, so I don't know what you're
talking about.

>  I'm not happy
> with this implementation either.

Can you be more specific?  I posted this patch almost five months ago.  I
addressed all of your posted concerns from v2 of this patch.  Other than a few
additional fdt helper functions, the code is isolated to 85xx.

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 18:20   ` Kumar Gala
  2011-04-04 18:26     ` Scott Wood
  2011-04-04 18:27     ` Timur Tabi
@ 2011-04-04 19:42     ` Wolfgang Denk
  2011-04-04 19:54       ` Timur Tabi
                         ` (3 more replies)
  2 siblings, 4 replies; 172+ messages in thread
From: Wolfgang Denk @ 2011-04-04 19:42 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <16CF6CAD-477C-4E04-93E0-1DADCF05C724@kernel.crashing.org> you wrote:
> 
> > powerpc: fix implementation of out_8 to match the other out_XX functions
>
> Will pull in.

Why you?  This is in no way 85xx specific.

Why does this come up only now?  Why has it not been mentioned in the
v2010.12 and v2011.03 relese cycles?

Timur: does this fix any real problem?

> > powerpc/85xx: introduce 'fdt verify' command
>
> I'm wondering if its better to just set the dtb props instead of verifying.

Unfortunately Timur's posting broke the mail thread because he failed
to add keep reference headers in his patch postings.  I'm not happy
with this implementation either.

In any case this needs the ACK from the responsible custodian (FDT =>
gvb).

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
Q: Why do PCs have a reset button on the front?
A: Because they are expected to run Microsoft operating systems.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 18:20   ` Kumar Gala
  2011-04-04 18:26     ` Scott Wood
@ 2011-04-04 18:27     ` Timur Tabi
  2011-04-04 19:42     ` Wolfgang Denk
  2 siblings, 0 replies; 172+ messages in thread
From: Timur Tabi @ 2011-04-04 18:27 UTC (permalink / raw)
  To: u-boot

Kumar Gala wrote:
>> > powerpc/85xx: introduce 'fdt verify' command

> I'm wondering if its better to just set the dtb props instead of verifying.

In the long run, I agree. But this code is available now and it could help.

The verify command is easier to implement because it doesn't require that a
particular PCI address match a particular PCI node.  That is, I search all PCI
nodes and all addresses within a node to find a match.

Setting the dtb props would require hard-coded matches between the U-Boot macros
and the PCI nodes.  It would be a significant amount of work, and each board
would need to be updated, I think.

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 18:20   ` Kumar Gala
@ 2011-04-04 18:26     ` Scott Wood
  2011-04-04 18:27     ` Timur Tabi
  2011-04-04 19:42     ` Wolfgang Denk
  2 siblings, 0 replies; 172+ messages in thread
From: Scott Wood @ 2011-04-04 18:26 UTC (permalink / raw)
  To: u-boot

On Mon, 4 Apr 2011 13:20:57 -0500
Kumar Gala <galak@kernel.crashing.org> wrote:

> On Apr 4, 2011, at 12:48 PM, Timur Tabi wrote:
> 
> > powerpc/85xx: introduce 'fdt verify' command
> 
> I'm wondering if its better to just set the dtb props instead of verifying.

It's not realistic to patch everything (if we do that, might as well just
generate the tree from scratch), and likewise fdt verify doesn't check
everything.  It checks some important bits to detect common errors such as
mixing 32/36 bit.  Patching a tree with such an error would not result in a
working tree.

-Scott

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 17:48 ` Timur Tabi
@ 2011-04-04 18:20   ` Kumar Gala
  2011-04-04 18:26     ` Scott Wood
                       ` (2 more replies)
  0 siblings, 3 replies; 172+ messages in thread
From: Kumar Gala @ 2011-04-04 18:20 UTC (permalink / raw)
  To: u-boot


On Apr 4, 2011, at 12:48 PM, Timur Tabi wrote:

> On Mon, Apr 4, 2011 at 9:14 AM, Kumar Gala <galak@kernel.crashing.org> wrote:
> 
>> Timur Tabi (2):
>>      p1022ds: allow for board-specific ngPIXIS functions
>>      fsl: obsolete NXID v0 EEPROMs, automatically upgrade them to NXID v1
> 
> What about:
> 
> powerpc: clean up DIU macro definitions for Freescale reference boards

need WD's ack.

> powerpc: fix implementation of out_8 to match the other out_XX functions

Will pull in.

> powerpc/85xx: introduce 'fdt verify' command

I'm wondering if its better to just set the dtb props instead of verifying.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-04-04 14:14 Kumar Gala
@ 2011-04-04 17:48 ` Timur Tabi
  2011-04-04 18:20   ` Kumar Gala
  2011-04-05 10:26 ` Wolfgang Denk
  1 sibling, 1 reply; 172+ messages in thread
From: Timur Tabi @ 2011-04-04 17:48 UTC (permalink / raw)
  To: u-boot

On Mon, Apr 4, 2011 at 9:14 AM, Kumar Gala <galak@kernel.crashing.org> wrote:

> Timur Tabi (2):
> ? ? ?p1022ds: allow for board-specific ngPIXIS functions
> ? ? ?fsl: obsolete NXID v0 EEPROMs, automatically upgrade them to NXID v1

What about:

powerpc: clean up DIU macro definitions for Freescale reference boards
powerpc: fix implementation of out_8 to match the other out_XX functions
powerpc/85xx: introduce 'fdt verify' command

You can find them at

http://patchwork.ozlabs.org/project/uboot/list/?submitter=timur

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2011-04-04 14:14 Kumar Gala
  2011-04-04 17:48 ` Timur Tabi
  2011-04-05 10:26 ` Wolfgang Denk
  0 siblings, 2 replies; 172+ messages in thread
From: Kumar Gala @ 2011-04-04 14:14 UTC (permalink / raw)
  To: u-boot

The following changes since commit 19b54a701811220221fc4d5089a2bb18892018ca:

  Prepare v2011.03 (2011-03-31 23:45:36 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx.git master

Dipen Dudhat (1):
      powerpc/85xx: Add support for Integrated Flash Controller (IFC)

Haiying Wang (2):
      powerpc/85xx: Refactor Qman/Portal support to be shared between SoCs
      powerpc/85xx: load ucode from nand flash before qe_init

Jerry Huang (1):
      powerpc/85xx: Add eSDHC support on P2020DS

Jiang Yutang (1):
      powerpc/85xx: Add 36-bit address map support to P1022DS

Kumar Gala (16):
      powerpc/85xx: Remove DATARATE_*_MHZ defines in static ddr init
      powerpc/85xx: Declare fsl_ddr_set_memctl_regs in <asm/fsl_ddr_sdram.h>
      powerpc/85xx: Add some defines for P2040, P3041, P5010, P5020
      powerpc: Move cpu specific lmb reserve to arch_lmb_reserve
      powerpc/85xx: Remove config.mk for nand linker script
      powerpc/8xxx: Replace fsl_ddr_get_mem_data_rate with get_ddr_freq()
      powerpc/8xxx: Refactor fsl_ddr_get_spd into common code from board
      powerpc/85xx: Cleanup some QE related defines
      powerpc: Add cpu_secondary_init_r to allow for initialization post env setup
      powerpc/85xx: Don't build read_tlbcam_entry for CONFIG_NAND_SPL
      powerpc/8xxx: Fix LAW init to respect pre-initialized entries
      powerpc/85xx: Support for Freescale P1024/P1025 processor
      powerpc/85xx: Specify CONFIG_SYS_FM_MURAM_SIZE
      powerpc/85xx: Fixup determining PME, FMan freq
      powerpc/85xx: Fix determining Fman freq on P1023
      powerpc/8xxx: Fix typo for address hashing message

Kyle Moffett (2):
      fsl_ddr: Don't use full 64-bit divides on 32-bit PowerPC
      mpc8xxx: DDR2/DDR3: Clean up DIMM-type switch statements

Laurentiu TUDOR (1):
      powerpc/85xx: Fix setting of LIODN prop in PCIe nodes on P3041/P5020

Li Yang (2):
      powerpc/85xx: Update P2020DS default env settings
      tsec: add AR8021 PHY support

Pankaj Chauhan (1):
      powerpc/85xx: Extend ethernet device tree stashing parameters for "fsl,etsec2"

Poonam Aggrwal (6):
      powerpc/85xx: Use BR_PHYS_ADDR macro to setup BRs on P1_P2_RDB
      fsl_ddr: Adds 16 bit DDR Data width option
      powerpc/85xx: Adds some P1010/P1014 SoC configuration defines
      powerpc/85xx: Removed P1/P2 RDB RevB support
      powerpc/85xx: Optimized DDR settings for 800MT/s on P1/P2 RDB
      powerpc/85xx: Add 36-bit physical addressing support for P1_P2_RDB

Prabhakar Kushwaha (2):
      powerpc/85xx: Add SERDES support for P1010/P1014
      fsl_pci: Add support for FSL PCIe controllers v2.x

Priyanka Jain (3):
      powerpc/85xx: Corrected sdhc clock value for P1010
      powerpc/85xx: Use DDR for RAMBOOT instead of L2 SRAM on p1_p2_rdb
      powerpc/85xx: Read board switch settings on p1_p2_rdb

Roy Zang (1):
      powerpc/85xx: Add support for Freescale P1023/P1017 Processors

Timur Tabi (2):
      p1022ds: allow for board-specific ngPIXIS functions
      fsl: obsolete NXID v0 EEPROMs, automatically upgrade them to NXID v1

York Sun (2):
      powerpc/85xx: Update fixed DDR3 timing table for P4080DS
      powerpc/8xxx: Display DIMM model

Zhao Chenhui (4):
      echi: add ULI1575 PCI ID
      powerpc/85xx: Replace memctl_intlv_ctl with hwconfig on MPC8572DS
      powerpc/85xx: Disable ECC in considering performance on MPC8572DS
      powerpc/85xx: Add support for ULI1575 PCI EHCI module on MPC8572DS

bhaskar upadhaya (1):
      powerpc/85xx: Update timer-frequency prop in ptp_timer node of device tree

 arch/powerpc/cpu/mpc85xx/Makefile                  |   14 +-
 arch/powerpc/cpu/mpc85xx/cpu.c                     |    7 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |   32 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                     |   12 +
 arch/powerpc/cpu/mpc85xx/p1010_serdes.c            |   75 ++
 arch/powerpc/cpu/mpc85xx/p1023_serdes.c            |   53 ++
 arch/powerpc/cpu/mpc85xx/p3041_ids.c               |   10 +-
 arch/powerpc/cpu/mpc85xx/p4080_ids.c               |    8 +-
 arch/powerpc/cpu/mpc85xx/p5020_ids.c               |   10 +-
 arch/powerpc/cpu/mpc85xx/portals.c                 |   32 +-
 arch/powerpc/cpu/mpc85xx/speed.c                   |   48 +-
 arch/powerpc/cpu/mpc85xx/tlb.c                     |    4 +-
 arch/powerpc/cpu/mpc8xxx/Makefile                  |    1 +
 arch/powerpc/cpu/mpc8xxx/cpu.c                     |   14 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |    4 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h                 |    1 -
 arch/powerpc/cpu/mpc8xxx/ddr/ddr2_dimm_params.c    |   23 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c    |   43 +-
 .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   11 +-
 arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   63 ++-
 arch/powerpc/cpu/mpc8xxx/ddr/util.c                |   60 +-
 arch/powerpc/cpu/mpc8xxx/fsl_ifc.c                 |   84 ++
 arch/powerpc/include/asm/config.h                  |    2 +
 arch/powerpc/include/asm/config_mpc85xx.h          |  117 +++
 arch/powerpc/include/asm/fsl_ddr_sdram.h           |    3 +
 arch/powerpc/include/asm/fsl_ifc.h                 |  957 ++++++++++++++++++++
 arch/powerpc/include/asm/fsl_law.h                 |    4 +-
 arch/powerpc/include/asm/fsl_liodn.h               |   14 +-
 arch/powerpc/include/asm/fsl_pci.h                 |   20 +-
 arch/powerpc/include/asm/immap_85xx.h              |   35 +-
 arch/powerpc/include/asm/immap_qe.h                |   98 +--
 arch/powerpc/include/asm/processor.h               |   12 +
 arch/powerpc/lib/board.c                           |   14 +
 arch/powerpc/lib/bootm.c                           |    5 +
 board/freescale/common/ngpixis.c                   |   56 +-
 board/freescale/common/ngpixis.h                   |    8 +-
 board/freescale/common/sys_eeprom.c                |   50 +-
 board/freescale/corenet_ds/corenet_ds.c            |   11 +-
 board/freescale/corenet_ds/ddr.c                   |   49 +-
 board/freescale/corenet_ds/p4080ds_ddr.c           |   24 +-
 board/freescale/mpc8536ds/config.mk                |   30 -
 board/freescale/mpc8536ds/ddr.c                    |   26 -
 board/freescale/mpc8540ads/ddr.c                   |   30 -
 board/freescale/mpc8541cds/ddr.c                   |   26 -
 board/freescale/mpc8544ds/ddr.c                    |   27 -
 board/freescale/mpc8548cds/ddr.c                   |   27 -
 board/freescale/mpc8555cds/ddr.c                   |   26 -
 board/freescale/mpc8560ads/ddr.c                   |   30 -
 board/freescale/mpc8568mds/ddr.c                   |   28 -
 board/freescale/mpc8569mds/config.mk               |   30 -
 board/freescale/mpc8569mds/ddr.c                   |   28 -
 board/freescale/mpc8572ds/config.mk                |   30 -
 board/freescale/mpc8572ds/ddr.c                    |   28 -
 board/freescale/mpc8572ds/mpc8572ds.c              |   11 +-
 board/freescale/mpc8610hpcd/ddr.c                  |   26 -
 board/freescale/mpc8641hpcn/ddr.c                  |   37 +-
 board/freescale/mpc8641hpcn/mpc8641hpcn.c          |   11 +-
 board/freescale/p1022ds/ddr.c                      |   23 -
 board/freescale/p1022ds/diu.c                      |   66 ++-
 board/freescale/p1022ds/p1022ds.c                  |   13 +-
 board/freescale/p1_p2_rdb/config.mk                |   31 -
 board/freescale/p1_p2_rdb/ddr.c                    |   47 +-
 board/freescale/p1_p2_rdb/p1_p2_rdb.c              |   66 +-
 board/freescale/p1_p2_rdb/tlb.c                    |   22 +-
 board/freescale/p2020ds/ddr.c                      |   24 -
 board/freescale/p2020ds/p2020ds.c                  |   23 +-
 board/sbc8548/ddr.c                                |   27 -
 board/sbc8560/ddr.c                                |   30 -
 board/sbc8641d/ddr.c                               |   35 -
 board/sbc8641d/sbc8641d.c                          |    9 -
 board/socrates/ddr.c                               |   27 -
 board/stx/stxgp3/ddr.c                             |   30 -
 board/stx/stxssa/ddr.c                             |   29 -
 board/xes/xpedite517x/ddr.c                        |   32 +-
 board/xes/xpedite517x/xpedite517x.c                |    9 -
 board/xes/xpedite520x/ddr.c                        |   22 +-
 board/xes/xpedite537x/ddr.c                        |   22 +-
 board/xes/xpedite537x/xpedite537x.c                |    9 -
 board/xes/xpedite550x/ddr.c                        |   20 +-
 board/xes/xpedite550x/xpedite550x.c                |    9 -
 boards.cfg                                         |   13 +
 common/ddr_spd.c                                   |    2 +-
 drivers/misc/fsl_law.c                             |   20 +
 drivers/net/tsec.c                                 |   23 +
 drivers/pci/fsl_pci_init.c                         |   12 +-
 drivers/usb/host/ehci-pci.c                        |    1 +
 include/common.h                                   |    4 +
 include/configs/MPC8536DS.h                        |    1 +
 include/configs/MPC8569MDS.h                       |    4 +-
 include/configs/MPC8572DS.h                        |   17 +-
 include/configs/MPC8610HPCD.h                      |    2 +-
 include/configs/P1022DS.h                          |   48 +-
 include/configs/P1_P2_RDB.h                        |   83 ++-
 include/configs/P2020DS.h                          |   49 +-
 include/configs/corenet_ds.h                       |    1 +
 include/configs/xpedite550x.h                      |    2 +-
 include/ddr_spd.h                                  |   28 +-
 97 files changed, 2233 insertions(+), 1241 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/p1010_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p1023_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc8xxx/fsl_ifc.c
 create mode 100644 arch/powerpc/include/asm/fsl_ifc.h
 delete mode 100644 board/freescale/mpc8536ds/config.mk
 delete mode 100644 board/freescale/mpc8569mds/config.mk
 delete mode 100644 board/freescale/mpc8572ds/config.mk
 delete mode 100644 board/freescale/p1_p2_rdb/config.mk

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2011-03-28 14:06 Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2011-03-28 14:06 UTC (permalink / raw)
  To: u-boot

[ a minor fix patch for v2011.03 ]

The following changes since commit cb815e5ff979e36d68df130a810d34de4bf93289:

  Prepare v (2011-03-27 21:50:07 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx.git master

Jiang Yutang (1):
      powerpc/85xx: Enable various errata on P1022/P1013 SoCs

 arch/powerpc/include/asm/config_mpc85xx.h |    6 ++++++
 include/configs/P1022DS.h                 |    1 +
 2 files changed, 7 insertions(+), 0 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-03-24 20:18 ` Wolfgang Denk
@ 2011-03-24 21:03   ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2011-03-24 21:03 UTC (permalink / raw)
  To: u-boot


On Mar 24, 2011, at 3:18 PM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <alpine.LFD.2.00.1103230021430.1851@right.am.freescale.net> you wrote:
>> [ a few fixes for v2011.03 related to DDR settings on MPC8572DS ]
>> 
>> The following changes since commit 62043ed02a2acffa801e3574e249de07d30336a2:
>>  Wolfgang Denk (1):
>>        Merge branch 'master' of git://git.denx.de/u-boot-ubi
>> 
>> are available in the git repository at:
>> 
>>  git://git.denx.de/u-boot-mpc85xx.git master
>> 
>> York Sun (4):
>>      powerpc/mpc8xxx: fix recognition of DIMMs with ECC and Address Parity
>>      powerpc/mpc8572ds: revise board specific timing for dual-rank DIMMs
>>      powerpc/mpc8xxx: disable rcw_en bit for non-DDR3
>>      powerpc/mpc8xxx: fix workaround for errata DDR111 and DDR134
>> 
>> arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   41 +++++++
>> arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |    2 +
>> .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |    3 +-
>> arch/powerpc/include/asm/fsl_ddr_dimm_params.h     |    4 +
>> board/freescale/mpc8572ds/ddr.c                    |  110 ++++++++++++++------
>> 5 files changed, 127 insertions(+), 33 deletions(-)
> 
> Um... this additionally gets me 
> 
> 	powerpc/85xx: Fix PCI memory map setup on P1_P2_RDB
> 
> but ok...
> 
> Applied, thanks.

Thanks, hadn't sent an updated pull w/that.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-03-23  5:22 Kumar Gala
@ 2011-03-24 20:18 ` Wolfgang Denk
  2011-03-24 21:03   ` Kumar Gala
  0 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2011-03-24 20:18 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1103230021430.1851@right.am.freescale.net> you wrote:
> [ a few fixes for v2011.03 related to DDR settings on MPC8572DS ]
> 
> The following changes since commit 62043ed02a2acffa801e3574e249de07d30336a2:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-ubi
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> York Sun (4):
>       powerpc/mpc8xxx: fix recognition of DIMMs with ECC and Address Parity
>       powerpc/mpc8572ds: revise board specific timing for dual-rank DIMMs
>       powerpc/mpc8xxx: disable rcw_en bit for non-DDR3
>       powerpc/mpc8xxx: fix workaround for errata DDR111 and DDR134
> 
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   41 +++++++
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |    2 +
>  .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |    3 +-
>  arch/powerpc/include/asm/fsl_ddr_dimm_params.h     |    4 +
>  board/freescale/mpc8572ds/ddr.c                    |  110 ++++++++++++++------
>  5 files changed, 127 insertions(+), 33 deletions(-)

Um... this additionally gets me 

	powerpc/85xx: Fix PCI memory map setup on P1_P2_RDB

but ok...

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
Our universe is a fragile house of atoms, held together by the mortar
of cause-and-effect. One magician would be two too many.
                        - Terry Pratchett, _The Dark Side of the Sun_

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2011-03-23  5:22 Kumar Gala
  2011-03-24 20:18 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2011-03-23  5:22 UTC (permalink / raw)
  To: u-boot

[ a few fixes for v2011.03 related to DDR settings on MPC8572DS ]

The following changes since commit 62043ed02a2acffa801e3574e249de07d30336a2:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-ubi

are available in the git repository at:

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

York Sun (4):
      powerpc/mpc8xxx: fix recognition of DIMMs with ECC and Address Parity
      powerpc/mpc8572ds: revise board specific timing for dual-rank DIMMs
      powerpc/mpc8xxx: disable rcw_en bit for non-DDR3
      powerpc/mpc8xxx: fix workaround for errata DDR111 and DDR134

 arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   41 +++++++
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |    2 +
 .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |    3 +-
 arch/powerpc/include/asm/fsl_ddr_dimm_params.h     |    4 +
 board/freescale/mpc8572ds/ddr.c                    |  110 ++++++++++++++------
 5 files changed, 127 insertions(+), 33 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-03-15  6:37 Kumar Gala
@ 2011-03-21 20:34 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2011-03-21 20:34 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1103150130040.17580@right.am.freescale.net> you wrote:
> The following changes since commit cc1dd33f273f8c96cbd7539b4a2d1d7aa12773cd:
> 
>   mpc8[5/6]xx: Ensure POST word does not get reset (2011-03-13 11:24:44 -0500)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kumar Gala (1):
>       powerpc/85xx: Fix synchronization of timebase on MP boot
> 
>  arch/powerpc/cpu/mpc85xx/mp.c |    9 +++++++++
>  1 files changed, 9 insertions(+), 0 deletions(-)

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
Killing is wrong.
	-- Losira, "That Which Survives", stardate unknown

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2011-03-15  6:37 Kumar Gala
  2011-03-21 20:34 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2011-03-15  6:37 UTC (permalink / raw)
  To: u-boot

The following changes since commit cc1dd33f273f8c96cbd7539b4a2d1d7aa12773cd:

  mpc8[5/6]xx: Ensure POST word does not get reset (2011-03-13 11:24:44 -0500)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx.git master

Kumar Gala (1):
      powerpc/85xx: Fix synchronization of timebase on MP boot

 arch/powerpc/cpu/mpc85xx/mp.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-03-14  5:37 Kumar Gala
@ 2011-03-14 19:29 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2011-03-14 19:29 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1103140036490.3551@right.am.freescale.net> you wrote:
> A few fixes for v2011.03 release.
> 
> The following changes since commit c7977858dcf1f656cbe91ea0dc3cb9139c6a8cc8:
> 
>   ARM: Update mach-types (2011-02-21 08:30:55 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Ed Swarthout (1):
>       powerpc/85xx: Fix plat_mp_up() disabling of BPTR for CoreNet Platforms
> 
> John Schmoller (1):
>       mpc8[5/6]xx: Ensure POST word does not get reset
> 
> Kumar Gala (1):
>       fsl_law: Fix LAW printing function
> 
> Matthew McClintock (1):
>       powerpc/85xx: Fix pixis_reset altbank mask on MPC8536DS
> 
> Priyanka Jain (1):
>       fsl_esdhc: Correcting esdhc timeout counter calculation
> 
> York Sun (3):
>       powerpc/mpc8xxx: Fix DDR3 timing_cfg_1 and sdram_mode registers
>       corenet_ds: pick the middle value for all tested timing parameters
>       powerpc/corenet_ds: revise platform dependent parameters
> 
>  arch/powerpc/cpu/mpc85xx/interrupts.c    |   16 ++++++++
>  arch/powerpc/cpu/mpc85xx/mp.c            |    4 +-
>  arch/powerpc/cpu/mpc86xx/interrupts.c    |   16 ++++++++
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |   20 +++++++---
>  board/freescale/corenet_ds/ddr.c         |   58 +++++++++--------------------
>  drivers/misc/fsl_law.c                   |    2 +-
>  drivers/mmc/fsl_esdhc.c                  |   16 ++++++++-
>  include/configs/MPC8536DS.h              |    2 +-
>  8 files changed, 83 insertions(+), 51 deletions(-)

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 takes all sorts of in & out-door schooling to get adapted  to  my
kind of fooling"                                           - R. Frost

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2011-03-14  5:37 Kumar Gala
  2011-03-14 19:29 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2011-03-14  5:37 UTC (permalink / raw)
  To: u-boot

A few fixes for v2011.03 release.

The following changes since commit c7977858dcf1f656cbe91ea0dc3cb9139c6a8cc8:

  ARM: Update mach-types (2011-02-21 08:30:55 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx.git master

Ed Swarthout (1):
      powerpc/85xx: Fix plat_mp_up() disabling of BPTR for CoreNet Platforms

John Schmoller (1):
      mpc8[5/6]xx: Ensure POST word does not get reset

Kumar Gala (1):
      fsl_law: Fix LAW printing function

Matthew McClintock (1):
      powerpc/85xx: Fix pixis_reset altbank mask on MPC8536DS

Priyanka Jain (1):
      fsl_esdhc: Correcting esdhc timeout counter calculation

York Sun (3):
      powerpc/mpc8xxx: Fix DDR3 timing_cfg_1 and sdram_mode registers
      corenet_ds: pick the middle value for all tested timing parameters
      powerpc/corenet_ds: revise platform dependent parameters

 arch/powerpc/cpu/mpc85xx/interrupts.c    |   16 ++++++++
 arch/powerpc/cpu/mpc85xx/mp.c            |    4 +-
 arch/powerpc/cpu/mpc86xx/interrupts.c    |   16 ++++++++
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |   20 +++++++---
 board/freescale/corenet_ds/ddr.c         |   58 +++++++++--------------------
 drivers/misc/fsl_law.c                   |    2 +-
 drivers/mmc/fsl_esdhc.c                  |   16 ++++++++-
 include/configs/MPC8536DS.h              |    2 +-
 8 files changed, 83 insertions(+), 51 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-01-18  4:45 [U-Boot] (no subject) Kumar Gala
@ 2011-01-18  9:39 ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2011-01-18  9:39 UTC (permalink / raw)
  To: u-boot

(forgot the subject ;)

- k

On Jan 17, 2011, at 10:45 PM, Kumar Gala 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
> 
> Haiying Wang (1):
>      8xxx/ddr: add support to only compute the ddr sdram size
> 
> Kumar Gala (4):
>      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
> 
> 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
> 
> arch/powerpc/cpu/mpc85xx/Makefile        |    6 +
> 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/u-boot.lds      |    8 +-
> arch/powerpc/cpu/mpc8xxx/cpu.c           |    6 +
> arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |   10 ++-
> arch/powerpc/cpu/mpc8xxx/ddr/ddr.h       |    8 +-
> arch/powerpc/cpu/mpc8xxx/ddr/main.c      |   31 +++++-
> arch/powerpc/include/asm/config.h        |   10 ++-
> arch/powerpc/include/asm/immap_85xx.h    |    2 +-
> arch/powerpc/include/asm/processor.h     |    6 +
> board/freescale/corenet_ds/config.mk     |   27 ------
> board/freescale/mpc8536ds/config.mk      |   14 +---
> board/freescale/mpc8572ds/config.mk      |    2 -
> board/freescale/p1022ds/config.mk        |   10 --
> board/freescale/p1_p2_rdb/config.mk      |   12 ---
> board/freescale/p2020ds/config.mk        |   26 -----
> drivers/misc/fsl_law.c                   |    7 +-
> include/configs/MPC8536DS.h              |    6 +
> include/configs/MPC8572DS.h              |    4 +
> include/configs/P1022DS.h                |    4 +
> include/configs/P1_P2_RDB.h              |    6 +
> include/configs/P2020DS.h                |    4 +
> include/configs/corenet_ds.h             |    4 +
> 27 files changed, 683 insertions(+), 108 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
> 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
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2011-01-14  7:51 Kumar Gala
@ 2011-01-17 19:32 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2011-01-17 19:32 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1101140150260.8040@localhost.localdomain> you wrote:
> The following changes since commit c6b734f5aea2ba75caaa1929f7e649ecda8d2f31:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-sh (2011-01-12 23:59:53 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Becky Bruce (9):
>       socrates: rename sdram_setup fixed_sdram()
>       mpc8569mds: Remove unnecessary CONFIG_SYS_LBC_SDRAM_BASE definition
>       MPC8568/MPC8569: Remove CONFIG_DDR_DLL define
>       tqm85xx: create fixed_sdram() to do sdram setup
>       mpc85xx/tlb.c: Allow platforms to specify wimge bits
>       mpc85xx boards: initdram() cleanup/bugfix
>       mpc85xx: rename sdram_init() lbc_sdram_init()
>       85xx boards: Rename CONFIG_DDR_DLL to CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN
>       MPC8xxx DDR: align informational prints
> 
> Chenhui Zhao (1):
>       fsl_esdhc: Fix esdhc disabled problem on some platforms
> 
> Jerry Huang (1):
>       fsl_esdhc: Add the workaround for erratum ESDHC111 (enable on P4080)
> 
> Kumar Gala (46):
>       powerpc/85xx: Removed support for ATUM8548 board
>       powerpc/85xx: Removed support for MPC8540EVAL board
>       powerpc/85xx: Remove support for PM854/PM856 boards
>       powerpc/85xx: Add support for booting from NAND on MPC8572DS
>       powerpc/85xx: Replace CONFIG_SYS_HAS_SERDES with a weak function
>       powerpc/85xx: Create a SERDES section in Makefile
>       powerpc/86xx: Add SERDES support on MPC8641 & MPC8610
>       powerpc/85xx: Add is_serdes_configured() support for P2020 SERDES
>       powerpc/85xx: Add is_serdes_configured() support for MPC8572 SERDES
>       powerpc/85xx: Add is_serdes_configured() support for MPC8548 SERDES
>       powerpc/85xx: Add is_serdes_configured() support for MPC8568 SERDES
>       powerpc/85xx: Add is_serdes_configured() support for MPC8569 SERDES
>       powerpc/85xx: Add is_serdes_configured() support for MPC8544 SERDES
>       powerpc/85xx: Add is_serdes_configured() support for P1021 SERDES
>       powerpc/8xxx: Replace is_fsl_pci_cfg with is_serdes_configured
>       powerpc/85xx: Cleanup SGMII detection and reporting
>       powerpc/85xx: Fix bug in dcache_disable
>       powerpc/fsl-pci: Determine pci_controller based on cfg addr for dts fixup
>       powerpc/fsl-pci: Add generic code to setup PCIe controllers
>       powerpc/85xx: Rework MPC8572DS pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework P2020DS pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework MPC8544DS pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework MPC8536DS pci_init_board to use common FSL PCIe code
>       powerpc/86xx: Rework MPC8641HPCN pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework MPC8548CDS pci_init_board to use common FSL PCIe code
>       powerpc/8xxx: Rework XES boards pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework TQM boards pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework MPC8568MDS pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework MPC8569MDS pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework P1_P2_RDB pci_init_board to use common FSL PCIe code
>       powerpc/86xx: Rework MPC8610HPCD pci_init_board to use common FSL PCIe code
>       powerpc/86xx: Rework SBC8641 pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework SBC8548 pci_init_board to use common FSL PCIe code
>       powerpc/85xx: Rework corenet_ds pci_init_board to use common FSL PCIe code
>       powerpc/8xxx: Refactor SRIO initialization into common code
>       powerpc/85xx: Convert MPC8548CDS to use common SRIO init code
>       powerpc/85xx: Convert MPC8568MDS to use common SRIO init code
>       powerpc/85xx: Convert MPC8569MDS to use common SRIO init code
>       powerpc/86xx: Enable common SRIO init code
>       powerpc/86xx: Convert MPC8641HPCN to use common SRIO init code
>       powerpc/86xx: Convert SBC8641 to use common SRIO init code
>       powerpc/8xxx: Move fsl_is_spd() into generic 8xxx ddr code
>       powerpc/85xx: Bump up the CONFIG_SYS_BOOTM_LEN to 16M on FSL 85xx boards
>       powerpc/85xx: Add the workaround for erratum CPC-A002 (enable on P4080)
>       powerpc/85xx: Add the workaround for erratum CPC-A003 (enable on P4080)
>       powerpc/85xx: Add the workaround for erratum ELBC-A001 (enable on P4080)
> 
> Li Yang (1):
>       powerpc/85xx: Add SRIO support to P2020DS
> 
> Paul Gortmaker (1):
>       MPC8xxx: Update maintainer entry for Wind River sbc8xxx boards
> 
> Peter Tyser (1):
>       fsl_pci: Update PCIe boot ouput
> 
> Piergiorgio Beruto (1):
>       powerpc/85xx: Fix wrong SVR value for MPC8567 and MPC8567E processors
> 
> Roy Zang (2):
>       fsl_esdhc: Add the workaround for erratum ESDHC135 (enable on P4080)
>       fsl_esdhc: Add the workaround for erratum ESDHC136 (enable on P4080)
> 
>  MAINTAINERS                                    |   17 +-
>  README                                         |   18 +
>  arch/powerpc/cpu/mpc85xx/Makefile              |   18 +-
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c          |   24 +-
>  arch/powerpc/cpu/mpc85xx/cpu.c                 |   52 ++
>  arch/powerpc/cpu/mpc85xx/cpu_init.c            |   29 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c                 |    7 +-
>  arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c      |   95 +++
>  arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c      |   65 ++
>  arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c      |   65 ++
>  arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c      |   74 ++
>  arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c      |   81 +++
>  arch/powerpc/cpu/mpc85xx/p1021_serdes.c        |   64 ++
>  arch/powerpc/cpu/mpc85xx/p2020_serdes.c        |   73 ++
>  arch/powerpc/cpu/mpc85xx/start.S               |    4 +-
>  arch/powerpc/cpu/mpc85xx/tlb.c                 |    6 +-
>  arch/powerpc/cpu/mpc86xx/Makefile              |    2 +
>  arch/powerpc/cpu/mpc86xx/cpu_init.c            |   11 +-
>  arch/powerpc/cpu/mpc86xx/fdt.c                 |    7 +-
>  arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c      |   85 +++
>  arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c      |   94 +++
>  arch/powerpc/cpu/mpc8xxx/Makefile              |    2 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c            |    5 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/options.c         |   22 +-
>  arch/powerpc/cpu/mpc8xxx/fdt.c                 |   23 +-
>  arch/powerpc/cpu/mpc8xxx/fsl_lbc.c             |   17 +-
>  arch/powerpc/cpu/mpc8xxx/pci_cfg.c             |  204 ------
>  arch/powerpc/cpu/mpc8xxx/srio.c                |   86 +++
>  arch/powerpc/include/asm/fsl_ddr_sdram.h       |   16 +-
>  arch/powerpc/include/asm/fsl_law.h             |    1 +
>  arch/powerpc/include/asm/fsl_lbc.h             |    8 +-
>  arch/powerpc/include/asm/fsl_pci.h             |   57 +--
>  arch/powerpc/include/asm/immap_85xx.h          |    4 +-
>  arch/powerpc/include/asm/immap_86xx.h          |    4 +-
>  arch/powerpc/include/asm/processor.h           |    4 +-
>  board/atum8548/Makefile                        |   57 --
>  board/atum8548/atum8548.c                      |  297 --------
>  board/atum8548/ddr.c                           |   83 ---
>  board/atum8548/law.c                           |   61 --
>  board/atum8548/tlb.c                           |   90 ---
>  board/freescale/corenet_ds/corenet_ds.c        |   44 --
>  board/freescale/corenet_ds/ddr.c               |   18 +-
>  board/freescale/corenet_ds/pci.c               |  118 +---
>  board/freescale/mpc8536ds/mpc8536ds.c          |  160 +----
>  board/freescale/mpc8540ads/mpc8540ads.c        |   61 +--
>  board/freescale/mpc8540ads/tlb.c               |   19 -
>  board/freescale/mpc8541cds/mpc8541cds.c        |   52 +--
>  board/freescale/mpc8544ds/law.c                |   10 +-
>  board/freescale/mpc8544ds/mpc8544ds.c          |  139 +---
>  board/freescale/mpc8548cds/law.c               |   13 +-
>  board/freescale/mpc8548cds/mpc8548cds.c        |   91 +--
>  board/freescale/mpc8548cds/tlb.c               |    9 +-
>  board/freescale/mpc8555cds/mpc8555cds.c        |   54 +--
>  board/freescale/mpc8560ads/mpc8560ads.c        |   61 +--
>  board/freescale/mpc8560ads/tlb.c               |   19 -
>  board/freescale/mpc8568mds/law.c               |    7 +-
>  board/freescale/mpc8568mds/mpc8568mds.c        |   95 +--
>  board/freescale/mpc8569mds/law.c               |    5 +-
>  board/freescale/mpc8569mds/mpc8569mds.c        |   76 +--
>  board/freescale/mpc8572ds/config.mk            |    8 +-
>  board/freescale/mpc8572ds/law.c                |    8 +-
>  board/freescale/mpc8572ds/mpc8572ds.c          |  143 +----
>  board/freescale/mpc8572ds/tlb.c                |   14 +-
>  board/freescale/mpc8610hpcd/law.c              |    8 +-
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c      |   79 +--
>  board/freescale/mpc8641hpcn/law.c              |   10 +-
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c      |   51 +--
>  board/freescale/p1022ds/p1022ds.c              |   80 +--
>  board/freescale/p1_p2_rdb/ddr.c                |   15 +-
>  board/freescale/p1_p2_rdb/law.c                |    6 +-
>  board/freescale/p1_p2_rdb/p1_p2_rdb.c          |    8 +-
>  board/freescale/p1_p2_rdb/pci.c                |   65 +--
>  board/freescale/p2020ds/law.c                  |    8 +-
>  board/freescale/p2020ds/p2020ds.c              |  154 +----
>  board/mpc8540eval/Makefile                     |   54 --
>  board/mpc8540eval/ddr.c                        |   73 --
>  board/mpc8540eval/flash.c                      |  894 ------------------------
>  board/mpc8540eval/law.c                        |   54 --
>  board/mpc8540eval/mpc8540eval.c                |  230 ------
>  board/mpc8540eval/tlb.c                        |   78 --
>  board/pm854/Makefile                           |   53 --
>  board/pm854/ddr.c                              |   73 --
>  board/pm854/law.c                              |   58 --
>  board/pm854/pm854.c                            |  298 --------
>  board/pm854/tlb.c                              |  117 ---
>  board/pm856/Makefile                           |   53 --
>  board/pm856/ddr.c                              |   73 --
>  board/pm856/law.c                              |   58 --
>  board/pm856/pm856.c                            |  453 ------------
>  board/pm856/tlb.c                              |  117 ---
>  board/sbc8548/law.c                            |    8 -
>  board/sbc8548/sbc8548.c                        |   99 +---
>  board/sbc8548/tlb.c                            |   34 +-
>  board/sbc8560/sbc8560.c                        |   93 +---
>  board/sbc8641d/law.c                           |    5 -
>  board/sbc8641d/sbc8641d.c                      |   66 +--
>  board/socrates/sdram.c                         |   15 +-
>  board/stx/stxgp3/stxgp3.c                      |   32 -
>  board/stx/stxssa/stxssa.c                      |   33 -
>  board/tqc/tqm85xx/law.c                        |    9 +-
>  board/tqc/tqm85xx/sdram.c                      |   70 +--
>  board/tqc/tqm85xx/tlb.c                        |   47 --
>  board/tqc/tqm85xx/tqm85xx.c                    |   44 +-
>  board/xes/common/Makefile                      |    2 -
>  board/xes/common/fsl_8xxx_ddr.c                |   46 --
>  board/xes/common/fsl_8xxx_pci.c                |  113 +---
>  board/xes/xpedite517x/law.c                    |    8 -
>  board/xes/xpedite517x/xpedite517x.c            |   13 +
>  board/xes/xpedite520x/law.c                    |    8 -
>  board/xes/xpedite537x/law.c                    |   12 -
>  board/xes/xpedite550x/law.c                    |   12 -
>  boards.cfg                                     |    9 +-
>  doc/README.atum8548                            |   29 -
>  doc/README.mpc85xxads                          |    4 +-
>  drivers/mmc/fsl_esdhc.c                        |   29 +-
>  drivers/pci/fsl_pci_init.c                     |  183 +++++-
>  drivers/pci/pci.c                              |   12 +
>  include/configs/ATUM8548.h                     |  443 ------------
>  include/configs/MPC837XEMDS.h                  |    1 +
>  include/configs/MPC837XERDB.h                  |    1 +
>  include/configs/MPC8536DS.h                    |    8 +-
>  include/configs/MPC8540ADS.h                   |    3 +-
>  include/configs/MPC8540EVAL.h                  |  362 ----------
>  include/configs/MPC8541CDS.h                   |    3 +-
>  include/configs/MPC8544DS.h                    |    6 +-
>  include/configs/MPC8548CDS.h                   |   19 +-
>  include/configs/MPC8555CDS.h                   |    3 +-
>  include/configs/MPC8560ADS.h                   |    3 +-
>  include/configs/MPC8568MDS.h                   |   15 +-
>  include/configs/MPC8569MDS.h                   |   25 +-
>  include/configs/MPC8572DS.h                    |  122 +++-
>  include/configs/MPC8610HPCD.h                  |    4 +-
>  include/configs/MPC8641HPCN.h                  |   31 +-
>  include/configs/P1022DS.h                      |    4 +-
>  include/configs/P1_P2_RDB.h                    |    6 +-
>  include/configs/P2020DS.h                      |   28 +-
>  include/configs/P4080DS.h                      |    9 +-
>  include/configs/PM854.h                        |  426 -----------
>  include/configs/PM856.h                        |  429 ------------
>  include/configs/SBC8540.h                      |    2 +-
>  include/configs/TQM85xx.h                      |    6 +-
>  include/configs/corenet_ds.h                   |   21 +-
>  include/configs/sbc8560.h                      |    2 +-
>  include/configs/sbc8641d.h                     |   15 +-
>  include/configs/stxgp3.h                       |    2 +-
>  include/configs/stxssa.h                       |    1 -
>  include/pci.h                                  |    1 +
>  nand_spl/board/freescale/mpc8572ds/Makefile    |  133 ++++
>  nand_spl/board/freescale/mpc8572ds/nand_boot.c |   82 +++
>  149 files changed, 2041 insertions(+), 7586 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p1021_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p2020_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c
>  delete mode 100644 arch/powerpc/cpu/mpc8xxx/pci_cfg.c
>  create mode 100644 arch/powerpc/cpu/mpc8xxx/srio.c
>  delete mode 100644 board/atum8548/Makefile
>  delete mode 100644 board/atum8548/atum8548.c
>  delete mode 100644 board/atum8548/ddr.c
>  delete mode 100644 board/atum8548/law.c
>  delete mode 100644 board/atum8548/tlb.c
>  delete mode 100644 board/mpc8540eval/Makefile
>  delete mode 100644 board/mpc8540eval/ddr.c
>  delete mode 100644 board/mpc8540eval/flash.c
>  delete mode 100644 board/mpc8540eval/law.c
>  delete mode 100644 board/mpc8540eval/mpc8540eval.c
>  delete mode 100644 board/mpc8540eval/tlb.c
>  delete mode 100644 board/pm854/Makefile
>  delete mode 100644 board/pm854/ddr.c
>  delete mode 100644 board/pm854/law.c
>  delete mode 100644 board/pm854/pm854.c
>  delete mode 100644 board/pm854/tlb.c
>  delete mode 100644 board/pm856/Makefile
>  delete mode 100644 board/pm856/ddr.c
>  delete mode 100644 board/pm856/law.c
>  delete mode 100644 board/pm856/pm856.c
>  delete mode 100644 board/pm856/tlb.c
>  delete mode 100644 board/xes/common/fsl_8xxx_ddr.c
>  delete mode 100644 doc/README.atum8548
>  delete mode 100644 include/configs/ATUM8548.h
>  delete mode 100644 include/configs/MPC8540EVAL.h
>  delete mode 100644 include/configs/PM854.h
>  delete mode 100644 include/configs/PM856.h
>  create mode 100644 nand_spl/board/freescale/mpc8572ds/Makefile
>  create mode 100644 nand_spl/board/freescale/mpc8572ds/nand_boot.c

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
Shakespeare's Law of Prototyping: (Hamlet III, iv, 156-160)
        O, throw away the worser part of it,
        And live the purer with the other half.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot]  Please pull u-boot-mpc85xx.git
@ 2011-01-14  7:51 Kumar Gala
  2011-01-17 19:32 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2011-01-14  7:51 UTC (permalink / raw)
  To: u-boot

The following changes since commit c6b734f5aea2ba75caaa1929f7e649ecda8d2f31:

  Merge branch 'master' of git://git.denx.de/u-boot-sh (2011-01-12 23:59:53 +0100)

are available in the git repository at:

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

Becky Bruce (9):
      socrates: rename sdram_setup fixed_sdram()
      mpc8569mds: Remove unnecessary CONFIG_SYS_LBC_SDRAM_BASE definition
      MPC8568/MPC8569: Remove CONFIG_DDR_DLL define
      tqm85xx: create fixed_sdram() to do sdram setup
      mpc85xx/tlb.c: Allow platforms to specify wimge bits
      mpc85xx boards: initdram() cleanup/bugfix
      mpc85xx: rename sdram_init() lbc_sdram_init()
      85xx boards: Rename CONFIG_DDR_DLL to CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN
      MPC8xxx DDR: align informational prints

Chenhui Zhao (1):
      fsl_esdhc: Fix esdhc disabled problem on some platforms

Jerry Huang (1):
      fsl_esdhc: Add the workaround for erratum ESDHC111 (enable on P4080)

Kumar Gala (46):
      powerpc/85xx: Removed support for ATUM8548 board
      powerpc/85xx: Removed support for MPC8540EVAL board
      powerpc/85xx: Remove support for PM854/PM856 boards
      powerpc/85xx: Add support for booting from NAND on MPC8572DS
      powerpc/85xx: Replace CONFIG_SYS_HAS_SERDES with a weak function
      powerpc/85xx: Create a SERDES section in Makefile
      powerpc/86xx: Add SERDES support on MPC8641 & MPC8610
      powerpc/85xx: Add is_serdes_configured() support for P2020 SERDES
      powerpc/85xx: Add is_serdes_configured() support for MPC8572 SERDES
      powerpc/85xx: Add is_serdes_configured() support for MPC8548 SERDES
      powerpc/85xx: Add is_serdes_configured() support for MPC8568 SERDES
      powerpc/85xx: Add is_serdes_configured() support for MPC8569 SERDES
      powerpc/85xx: Add is_serdes_configured() support for MPC8544 SERDES
      powerpc/85xx: Add is_serdes_configured() support for P1021 SERDES
      powerpc/8xxx: Replace is_fsl_pci_cfg with is_serdes_configured
      powerpc/85xx: Cleanup SGMII detection and reporting
      powerpc/85xx: Fix bug in dcache_disable
      powerpc/fsl-pci: Determine pci_controller based on cfg addr for dts fixup
      powerpc/fsl-pci: Add generic code to setup PCIe controllers
      powerpc/85xx: Rework MPC8572DS pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework P2020DS pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework MPC8544DS pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework MPC8536DS pci_init_board to use common FSL PCIe code
      powerpc/86xx: Rework MPC8641HPCN pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework MPC8548CDS pci_init_board to use common FSL PCIe code
      powerpc/8xxx: Rework XES boards pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework TQM boards pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework MPC8568MDS pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework MPC8569MDS pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework P1_P2_RDB pci_init_board to use common FSL PCIe code
      powerpc/86xx: Rework MPC8610HPCD pci_init_board to use common FSL PCIe code
      powerpc/86xx: Rework SBC8641 pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework SBC8548 pci_init_board to use common FSL PCIe code
      powerpc/85xx: Rework corenet_ds pci_init_board to use common FSL PCIe code
      powerpc/8xxx: Refactor SRIO initialization into common code
      powerpc/85xx: Convert MPC8548CDS to use common SRIO init code
      powerpc/85xx: Convert MPC8568MDS to use common SRIO init code
      powerpc/85xx: Convert MPC8569MDS to use common SRIO init code
      powerpc/86xx: Enable common SRIO init code
      powerpc/86xx: Convert MPC8641HPCN to use common SRIO init code
      powerpc/86xx: Convert SBC8641 to use common SRIO init code
      powerpc/8xxx: Move fsl_is_spd() into generic 8xxx ddr code
      powerpc/85xx: Bump up the CONFIG_SYS_BOOTM_LEN to 16M on FSL 85xx boards
      powerpc/85xx: Add the workaround for erratum CPC-A002 (enable on P4080)
      powerpc/85xx: Add the workaround for erratum CPC-A003 (enable on P4080)
      powerpc/85xx: Add the workaround for erratum ELBC-A001 (enable on P4080)

Li Yang (1):
      powerpc/85xx: Add SRIO support to P2020DS

Paul Gortmaker (1):
      MPC8xxx: Update maintainer entry for Wind River sbc8xxx boards

Peter Tyser (1):
      fsl_pci: Update PCIe boot ouput

Piergiorgio Beruto (1):
      powerpc/85xx: Fix wrong SVR value for MPC8567 and MPC8567E processors

Roy Zang (2):
      fsl_esdhc: Add the workaround for erratum ESDHC135 (enable on P4080)
      fsl_esdhc: Add the workaround for erratum ESDHC136 (enable on P4080)

 MAINTAINERS                                    |   17 +-
 README                                         |   18 +
 arch/powerpc/cpu/mpc85xx/Makefile              |   18 +-
 arch/powerpc/cpu/mpc85xx/cmd_errata.c          |   24 +-
 arch/powerpc/cpu/mpc85xx/cpu.c                 |   52 ++
 arch/powerpc/cpu/mpc85xx/cpu_init.c            |   29 +-
 arch/powerpc/cpu/mpc85xx/fdt.c                 |    7 +-
 arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c      |   95 +++
 arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c      |   65 ++
 arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c      |   65 ++
 arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c      |   74 ++
 arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c      |   81 +++
 arch/powerpc/cpu/mpc85xx/p1021_serdes.c        |   64 ++
 arch/powerpc/cpu/mpc85xx/p2020_serdes.c        |   73 ++
 arch/powerpc/cpu/mpc85xx/start.S               |    4 +-
 arch/powerpc/cpu/mpc85xx/tlb.c                 |    6 +-
 arch/powerpc/cpu/mpc86xx/Makefile              |    2 +
 arch/powerpc/cpu/mpc86xx/cpu_init.c            |   11 +-
 arch/powerpc/cpu/mpc86xx/fdt.c                 |    7 +-
 arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c      |   85 +++
 arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c      |   94 +++
 arch/powerpc/cpu/mpc8xxx/Makefile              |    2 +-
 arch/powerpc/cpu/mpc8xxx/ddr/main.c            |    5 +-
 arch/powerpc/cpu/mpc8xxx/ddr/options.c         |   22 +-
 arch/powerpc/cpu/mpc8xxx/fdt.c                 |   23 +-
 arch/powerpc/cpu/mpc8xxx/fsl_lbc.c             |   17 +-
 arch/powerpc/cpu/mpc8xxx/pci_cfg.c             |  204 ------
 arch/powerpc/cpu/mpc8xxx/srio.c                |   86 +++
 arch/powerpc/include/asm/fsl_ddr_sdram.h       |   16 +-
 arch/powerpc/include/asm/fsl_law.h             |    1 +
 arch/powerpc/include/asm/fsl_lbc.h             |    8 +-
 arch/powerpc/include/asm/fsl_pci.h             |   57 +--
 arch/powerpc/include/asm/immap_85xx.h          |    4 +-
 arch/powerpc/include/asm/immap_86xx.h          |    4 +-
 arch/powerpc/include/asm/processor.h           |    4 +-
 board/atum8548/Makefile                        |   57 --
 board/atum8548/atum8548.c                      |  297 --------
 board/atum8548/ddr.c                           |   83 ---
 board/atum8548/law.c                           |   61 --
 board/atum8548/tlb.c                           |   90 ---
 board/freescale/corenet_ds/corenet_ds.c        |   44 --
 board/freescale/corenet_ds/ddr.c               |   18 +-
 board/freescale/corenet_ds/pci.c               |  118 +---
 board/freescale/mpc8536ds/mpc8536ds.c          |  160 +----
 board/freescale/mpc8540ads/mpc8540ads.c        |   61 +--
 board/freescale/mpc8540ads/tlb.c               |   19 -
 board/freescale/mpc8541cds/mpc8541cds.c        |   52 +--
 board/freescale/mpc8544ds/law.c                |   10 +-
 board/freescale/mpc8544ds/mpc8544ds.c          |  139 +---
 board/freescale/mpc8548cds/law.c               |   13 +-
 board/freescale/mpc8548cds/mpc8548cds.c        |   91 +--
 board/freescale/mpc8548cds/tlb.c               |    9 +-
 board/freescale/mpc8555cds/mpc8555cds.c        |   54 +--
 board/freescale/mpc8560ads/mpc8560ads.c        |   61 +--
 board/freescale/mpc8560ads/tlb.c               |   19 -
 board/freescale/mpc8568mds/law.c               |    7 +-
 board/freescale/mpc8568mds/mpc8568mds.c        |   95 +--
 board/freescale/mpc8569mds/law.c               |    5 +-
 board/freescale/mpc8569mds/mpc8569mds.c        |   76 +--
 board/freescale/mpc8572ds/config.mk            |    8 +-
 board/freescale/mpc8572ds/law.c                |    8 +-
 board/freescale/mpc8572ds/mpc8572ds.c          |  143 +----
 board/freescale/mpc8572ds/tlb.c                |   14 +-
 board/freescale/mpc8610hpcd/law.c              |    8 +-
 board/freescale/mpc8610hpcd/mpc8610hpcd.c      |   79 +--
 board/freescale/mpc8641hpcn/law.c              |   10 +-
 board/freescale/mpc8641hpcn/mpc8641hpcn.c      |   51 +--
 board/freescale/p1022ds/p1022ds.c              |   80 +--
 board/freescale/p1_p2_rdb/ddr.c                |   15 +-
 board/freescale/p1_p2_rdb/law.c                |    6 +-
 board/freescale/p1_p2_rdb/p1_p2_rdb.c          |    8 +-
 board/freescale/p1_p2_rdb/pci.c                |   65 +--
 board/freescale/p2020ds/law.c                  |    8 +-
 board/freescale/p2020ds/p2020ds.c              |  154 +----
 board/mpc8540eval/Makefile                     |   54 --
 board/mpc8540eval/ddr.c                        |   73 --
 board/mpc8540eval/flash.c                      |  894 ------------------------
 board/mpc8540eval/law.c                        |   54 --
 board/mpc8540eval/mpc8540eval.c                |  230 ------
 board/mpc8540eval/tlb.c                        |   78 --
 board/pm854/Makefile                           |   53 --
 board/pm854/ddr.c                              |   73 --
 board/pm854/law.c                              |   58 --
 board/pm854/pm854.c                            |  298 --------
 board/pm854/tlb.c                              |  117 ---
 board/pm856/Makefile                           |   53 --
 board/pm856/ddr.c                              |   73 --
 board/pm856/law.c                              |   58 --
 board/pm856/pm856.c                            |  453 ------------
 board/pm856/tlb.c                              |  117 ---
 board/sbc8548/law.c                            |    8 -
 board/sbc8548/sbc8548.c                        |   99 +---
 board/sbc8548/tlb.c                            |   34 +-
 board/sbc8560/sbc8560.c                        |   93 +---
 board/sbc8641d/law.c                           |    5 -
 board/sbc8641d/sbc8641d.c                      |   66 +--
 board/socrates/sdram.c                         |   15 +-
 board/stx/stxgp3/stxgp3.c                      |   32 -
 board/stx/stxssa/stxssa.c                      |   33 -
 board/tqc/tqm85xx/law.c                        |    9 +-
 board/tqc/tqm85xx/sdram.c                      |   70 +--
 board/tqc/tqm85xx/tlb.c                        |   47 --
 board/tqc/tqm85xx/tqm85xx.c                    |   44 +-
 board/xes/common/Makefile                      |    2 -
 board/xes/common/fsl_8xxx_ddr.c                |   46 --
 board/xes/common/fsl_8xxx_pci.c                |  113 +---
 board/xes/xpedite517x/law.c                    |    8 -
 board/xes/xpedite517x/xpedite517x.c            |   13 +
 board/xes/xpedite520x/law.c                    |    8 -
 board/xes/xpedite537x/law.c                    |   12 -
 board/xes/xpedite550x/law.c                    |   12 -
 boards.cfg                                     |    9 +-
 doc/README.atum8548                            |   29 -
 doc/README.mpc85xxads                          |    4 +-
 drivers/mmc/fsl_esdhc.c                        |   29 +-
 drivers/pci/fsl_pci_init.c                     |  183 +++++-
 drivers/pci/pci.c                              |   12 +
 include/configs/ATUM8548.h                     |  443 ------------
 include/configs/MPC837XEMDS.h                  |    1 +
 include/configs/MPC837XERDB.h                  |    1 +
 include/configs/MPC8536DS.h                    |    8 +-
 include/configs/MPC8540ADS.h                   |    3 +-
 include/configs/MPC8540EVAL.h                  |  362 ----------
 include/configs/MPC8541CDS.h                   |    3 +-
 include/configs/MPC8544DS.h                    |    6 +-
 include/configs/MPC8548CDS.h                   |   19 +-
 include/configs/MPC8555CDS.h                   |    3 +-
 include/configs/MPC8560ADS.h                   |    3 +-
 include/configs/MPC8568MDS.h                   |   15 +-
 include/configs/MPC8569MDS.h                   |   25 +-
 include/configs/MPC8572DS.h                    |  122 +++-
 include/configs/MPC8610HPCD.h                  |    4 +-
 include/configs/MPC8641HPCN.h                  |   31 +-
 include/configs/P1022DS.h                      |    4 +-
 include/configs/P1_P2_RDB.h                    |    6 +-
 include/configs/P2020DS.h                      |   28 +-
 include/configs/P4080DS.h                      |    9 +-
 include/configs/PM854.h                        |  426 -----------
 include/configs/PM856.h                        |  429 ------------
 include/configs/SBC8540.h                      |    2 +-
 include/configs/TQM85xx.h                      |    6 +-
 include/configs/corenet_ds.h                   |   21 +-
 include/configs/sbc8560.h                      |    2 +-
 include/configs/sbc8641d.h                     |   15 +-
 include/configs/stxgp3.h                       |    2 +-
 include/configs/stxssa.h                       |    1 -
 include/pci.h                                  |    1 +
 nand_spl/board/freescale/mpc8572ds/Makefile    |  133 ++++
 nand_spl/board/freescale/mpc8572ds/nand_boot.c |   82 +++
 149 files changed, 2041 insertions(+), 7586 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8544_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8548_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8568_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8569_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/mpc8572_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p1021_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p2020_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc86xx/mpc8610_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc86xx/mpc8641_serdes.c
 delete mode 100644 arch/powerpc/cpu/mpc8xxx/pci_cfg.c
 create mode 100644 arch/powerpc/cpu/mpc8xxx/srio.c
 delete mode 100644 board/atum8548/Makefile
 delete mode 100644 board/atum8548/atum8548.c
 delete mode 100644 board/atum8548/ddr.c
 delete mode 100644 board/atum8548/law.c
 delete mode 100644 board/atum8548/tlb.c
 delete mode 100644 board/mpc8540eval/Makefile
 delete mode 100644 board/mpc8540eval/ddr.c
 delete mode 100644 board/mpc8540eval/flash.c
 delete mode 100644 board/mpc8540eval/law.c
 delete mode 100644 board/mpc8540eval/mpc8540eval.c
 delete mode 100644 board/mpc8540eval/tlb.c
 delete mode 100644 board/pm854/Makefile
 delete mode 100644 board/pm854/ddr.c
 delete mode 100644 board/pm854/law.c
 delete mode 100644 board/pm854/pm854.c
 delete mode 100644 board/pm854/tlb.c
 delete mode 100644 board/pm856/Makefile
 delete mode 100644 board/pm856/ddr.c
 delete mode 100644 board/pm856/law.c
 delete mode 100644 board/pm856/pm856.c
 delete mode 100644 board/pm856/tlb.c
 delete mode 100644 board/xes/common/fsl_8xxx_ddr.c
 delete mode 100644 doc/README.atum8548
 delete mode 100644 include/configs/ATUM8548.h
 delete mode 100644 include/configs/MPC8540EVAL.h
 delete mode 100644 include/configs/PM854.h
 delete mode 100644 include/configs/PM856.h
 create mode 100644 nand_spl/board/freescale/mpc8572ds/Makefile
 create mode 100644 nand_spl/board/freescale/mpc8572ds/nand_boot.c

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-12-18 21:27 ` Wolfgang Denk
@ 2010-12-21 17:50   ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-12-21 17:50 UTC (permalink / raw)
  To: u-boot


On Dec 18, 2010, at 3:27 PM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <Pine.LNX.4.64.1012171817180.10546@localhost.localdomain> you wrote:
>> [ a few minor bug fixes for v2010.12 ]
>> 
>> The following changes since commit 3ac45988ab1605baaf83bd3acb80a197c9a208c2:
>> 
>>  Prepare v2010.12-rc3 (2010-12-17 10:15:38 +0100)
>> 
>> are available in the git repository at:
>>  git://git.denx.de/u-boot-mpc85xx master
>> 
>> Jerry Huang (2):
>>      fsl_esdhc: Use mmc_set_clock to set initial speed
>>      fsl_esdhc: Fix max clock frequency
>> 
>> Li Yang (1):
>>      fsl_esdhc: Fix the voltage validation process
> 
> 
> Applied, thanks.
> 
>> Matthew McClintock (1):
>>      p1022ds: enable reginfo command
> 
> No bug fix. Pulled into "next".
> 

Ok, thanks

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-12-18  0:18 Kumar Gala
  2010-12-18 13:15 ` Wolfgang Denk
@ 2010-12-18 21:27 ` Wolfgang Denk
  2010-12-21 17:50   ` Kumar Gala
  1 sibling, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2010-12-18 21:27 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1012171817180.10546@localhost.localdomain> you wrote:
> [ a few minor bug fixes for v2010.12 ]
> 
> The following changes since commit 3ac45988ab1605baaf83bd3acb80a197c9a208c2:
> 
>   Prepare v2010.12-rc3 (2010-12-17 10:15:38 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Jerry Huang (2):
>       fsl_esdhc: Use mmc_set_clock to set initial speed
>       fsl_esdhc: Fix max clock frequency
> 
> Li Yang (1):
>       fsl_esdhc: Fix the voltage validation process


Applied, thanks.

> Matthew McClintock (1):
>       p1022ds: enable reginfo command

No bug fix. Pulled into "next".



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
"Morality is one thing.  Ratings are everything."
- A Network 23 executive on "Max Headroom"

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-12-18 13:15 ` Wolfgang Denk
@ 2010-12-18 15:26   ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-12-18 15:26 UTC (permalink / raw)
  To: u-boot


On Dec 18, 2010, at 7:15 AM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <Pine.LNX.4.64.1012171817180.10546@localhost.localdomain> you wrote:
>> [ a few minor bug fixes for v2010.12 ]
>> 
>> The following changes since commit 3ac45988ab1605baaf83bd3acb80a197c9a208c2:
>> 
>>  Prepare v2010.12-rc3 (2010-12-17 10:15:38 +0100)
>> 
>> are available in the git repository at:
>>  git://git.denx.de/u-boot-mpc85xx master
>> 
>> Jerry Huang (2):
>>      fsl_esdhc: Use mmc_set_clock to set initial speed
>>      fsl_esdhc: Fix max clock frequency
>> 
>> Li Yang (1):
>>      fsl_esdhc: Fix the voltage validation process
>> 
>> Matthew McClintock (1):
>>      p1022ds: enable reginfo command
> 
> Is this supposed to go into master, now?
> 
> The first 3 commits appear to be fixes, but "enable reginfo command"
> should rather go into "next", right?

yeah, the last isn't a fix, but seemed so trivial that I figured it was ok for v2010.12

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-12-18  0:18 Kumar Gala
@ 2010-12-18 13:15 ` Wolfgang Denk
  2010-12-18 15:26   ` Kumar Gala
  2010-12-18 21:27 ` Wolfgang Denk
  1 sibling, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2010-12-18 13:15 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1012171817180.10546@localhost.localdomain> you wrote:
> [ a few minor bug fixes for v2010.12 ]
> 
> The following changes since commit 3ac45988ab1605baaf83bd3acb80a197c9a208c2:
> 
>   Prepare v2010.12-rc3 (2010-12-17 10:15:38 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Jerry Huang (2):
>       fsl_esdhc: Use mmc_set_clock to set initial speed
>       fsl_esdhc: Fix max clock frequency
> 
> Li Yang (1):
>       fsl_esdhc: Fix the voltage validation process
> 
> Matthew McClintock (1):
>       p1022ds: enable reginfo command

Is this supposed to go into master, now?

The first 3 commits appear to be fixes, but "enable reginfo command"
should rather go into "next", right?

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
I'm what passes for a Unix guru in my office. This is  a  frightening
concept. - Lee Ann Goldstein, in <3k55ba$c43@butch.lmsc.lockheed.com>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-12-18  0:18 Kumar Gala
  2010-12-18 13:15 ` Wolfgang Denk
  2010-12-18 21:27 ` Wolfgang Denk
  0 siblings, 2 replies; 172+ messages in thread
From: Kumar Gala @ 2010-12-18  0:18 UTC (permalink / raw)
  To: u-boot

[ a few minor bug fixes for v2010.12 ]

The following changes since commit 3ac45988ab1605baaf83bd3acb80a197c9a208c2:

  Prepare v2010.12-rc3 (2010-12-17 10:15:38 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx master

Jerry Huang (2):
      fsl_esdhc: Use mmc_set_clock to set initial speed
      fsl_esdhc: Fix max clock frequency

Li Yang (1):
      fsl_esdhc: Fix the voltage validation process

Matthew McClintock (1):
      p1022ds: enable reginfo command

 drivers/mmc/fsl_esdhc.c   |   24 +++++++++++++++++-------
 include/configs/P1022DS.h |    1 +
 include/mmc.h             |    3 ++-
 3 files changed, 20 insertions(+), 8 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-12-13 15:44 Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-12-13 15:44 UTC (permalink / raw)
  To: u-boot

The following changes since commit ac8983bcba75576c50307b5e8dc8fb848740ee61:

  Merge branch 'master' of git://git.denx.de/u-boot-imx (2010-12-09 20:52:44 +0100)

are available in the git repository at:

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

John Schmoller (1):
      fsl_upm: Add MxMR/MDR synchronization

Kumar Gala (1):
      tsec: Revert to setting TBICR_ANEG_ENABLE by default for SGMII

P.V.Suresh (1):
      fsl_esdhc: Set the eSHDC DMACTL[SNOOP] bit after resetting the controller

 drivers/mmc/fsl_esdhc.c       |    8 ++++----
 drivers/mtd/nand/fsl_upm.c    |    2 ++
 drivers/net/tsec.c            |    9 ++++-----
 include/configs/P1_P2_RDB.h   |    8 --------
 include/configs/xpedite537x.h |   10 ++++++++++
 include/configs/xpedite550x.h |   10 ++++++++++
 6 files changed, 30 insertions(+), 17 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-12-01 19:01 Kumar Gala
@ 2010-12-06 22:41 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-12-06 22:41 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1012011300240.2697@localhost.localdomain> you wrote:
> [for v2010.12]
> 
> The following changes since commit 49733aa0b9d29803384ad4bce74985f4bbe7e9aa:
> 
>   Merge branch 'master' of /home/wd/git/u-boot/custodians (2010-11-30 22:13:32 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Haiying Wang (1):
>       powerpc/85xx: do not reloc l2srbar if CONFIG_FLASH_BASE is not defined
> 
> Kumar Gala (2):
>       powerpc/8xxx: Fix _POST_WORD_ADDR on 85xx & 86xx systems
>       powerpc/85xx: Enable HWCONFIG on MPC8572DS
> 
>  arch/powerpc/cpu/mpc85xx/cpu_init.c |    2 +-
>  include/configs/MPC8572DS.h         |    1 +
>  include/post.h                      |    6 ++++--
>  3 files changed, 6 insertions(+), 3 deletions(-)

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
Be kind to unkind people - they need it the most.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-12-01 19:01 Kumar Gala
  2010-12-06 22:41 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-12-01 19:01 UTC (permalink / raw)
  To: u-boot

[for v2010.12]

The following changes since commit 49733aa0b9d29803384ad4bce74985f4bbe7e9aa:

  Merge branch 'master' of /home/wd/git/u-boot/custodians (2010-11-30 22:13:32 +0100)

are available in the git repository at:

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

Haiying Wang (1):
      powerpc/85xx: do not reloc l2srbar if CONFIG_FLASH_BASE is not defined

Kumar Gala (2):
      powerpc/8xxx: Fix _POST_WORD_ADDR on 85xx & 86xx systems
      powerpc/85xx: Enable HWCONFIG on MPC8572DS

 arch/powerpc/cpu/mpc85xx/cpu_init.c |    2 +-
 include/configs/MPC8572DS.h         |    1 +
 include/post.h                      |    6 ++++--
 3 files changed, 6 insertions(+), 3 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-11-11  7:06 Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-11-11  7:06 UTC (permalink / raw)
  To: u-boot

The following changes since commit 0c0892be0d93a5a892b93739c5eb3bf692fed4ff:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-marvell

are available in the git repository at:

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

Haiying Wang (3):
      powerpc/85xx: Fix lds for nand build
      powerpc/85xx: rename CONFIG_SYS_TEXT_BASE to CONFIG_SYS_MONITOR_BASE
      powerpc/85xx: add CONFIG_SYS_TEXT_BASE_SPL for 85xx nand spl build

Kumar Gala (2):
      powerpc/8xxx: Fix merge issue with P2020DS DDR2 build config
      powerpc/8xxx: Enable e1000 driver on some FSL boards

Priyanka Jain (1):
      p1_p2_rdb: to set SQW/INT pin of RTC as INT line

 arch/powerpc/cpu/mpc85xx/start.S             |   18 +++++-----
 arch/powerpc/cpu/mpc85xx/u-boot-nand.lds     |   49 +++++---------------------
 arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds |   12 +++---
 board/freescale/p1_p2_rdb/p1_p2_rdb.c        |    1 +
 boards.cfg                                   |    2 +-
 include/configs/MPC8536DS.h                  |    8 +++-
 include/configs/MPC8569MDS.h                 |    9 ++++-
 include/configs/MPC8572DS.h                  |    1 +
 include/configs/P1022DS.h                    |    1 +
 include/configs/P1_P2_RDB.h                  |   11 ++++--
 nand_spl/board/freescale/mpc8536ds/Makefile  |    4 +-
 nand_spl/board/freescale/mpc8569mds/Makefile |    4 +-
 nand_spl/board/freescale/p1_p2_rdb/Makefile  |    4 +-
 13 files changed, 55 insertions(+), 69 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-10-22  8:11 Kumar Gala
@ 2010-10-23 20:05 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-10-23 20:05 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1010220311110.20811@localhost.localdomain> you wrote:
> The following changes since commit
> fff6ec382c139eb242bd85356e66a0bc43becb63:
> 
>   Fix building for 83xx boards with USB support (2010-10-21 20:00:41 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx master
> 
> John Schmoller (4):
>       pci: Add ability to re-enumerate PCI buses
>       xes: Consolidate checkboard()
>       xes: Add board_flash_wp_on()
>       XPedite5500 board support
> 
> Kumar Gala (1):
>       corenet_ds: Update CONFIG_SYS_GBL_DATA_SIZE to deal with growth in gd_t
> 
> Peter Tyser (9):
>       xes: Use common PCI initialization code
>       xes: Make X-ES board names more generic
>       post/i2c: General clean up
>       post/i2c: Clean up detection logic
>       post/i2c: Don't probe address 0
>       post/i2c: Rename I2C_ADDR_LIST to CONFIG_SYS_POST_I2C_ADDRS
>       post/i2c: Add ability to ignore I2C devices
>       mpc86xx: Add generic POST word read/write support
>       xes: Add POST support for 8xxx boards
> 
>  MAINTAINERS                                        |    9 +-
>  board/xes/common/Makefile                          |    4 +
>  board/xes/common/board.c                           |   64 ++++
>  board/xes/common/fsl_8xxx_clk.c                    |   11 +
>  board/xes/common/fsl_8xxx_misc.c                   |   62 ++++
>  board/xes/common/fsl_8xxx_misc.h                   |   28 ++
>  board/xes/common/fsl_8xxx_pci.c                    |  328 +++-----------------
>  board/xes/{xpedite5170 => xpedite517x}/Makefile    |    0
>  board/xes/{xpedite5170 => xpedite517x}/ddr.c       |    0
>  board/xes/{xpedite5170 => xpedite517x}/law.c       |    0
>  .../xpedite5170.c => xpedite517x/xpedite517x.c}    |   20 +--
>  board/xes/{xpedite5200 => xpedite520x}/Makefile    |    0
>  board/xes/{xpedite5200 => xpedite520x}/ddr.c       |    0
>  board/xes/{xpedite5200 => xpedite520x}/law.c       |    0
>  board/xes/{xpedite5200 => xpedite520x}/tlb.c       |    0
>  .../xpedite5200.c => xpedite520x/xpedite520x.c}    |   27 --
>  board/xes/{xpedite5370 => xpedite537x}/Makefile    |    0
>  board/xes/{xpedite5370 => xpedite537x}/ddr.c       |    0
>  board/xes/{xpedite5370 => xpedite537x}/law.c       |    0
>  board/xes/{xpedite5370 => xpedite537x}/tlb.c       |    0
>  .../xpedite5370.c => xpedite537x/xpedite537x.c}    |   20 --
>  board/xes/{xpedite5370 => xpedite550x}/Makefile    |    8 +-
>  board/xes/xpedite550x/ddr.c                        |  165 ++++++++++
>  board/xes/{xpedite5370 => xpedite550x}/law.c       |    2 +-
>  board/xes/{xpedite5370 => xpedite550x}/tlb.c       |    1 -
>  .../xpedite5370.c => xpedite550x/xpedite550x.c}    |   22 +--
>  boards.cfg                                         |    9 +-
>  common/cmd_pci.c                                   |   13 +
>  doc/README.POST                                    |   19 +-
>  drivers/pci/fsl_pci_init.c                         |    3 +
>  drivers/pci/pci.c                                  |    4 +-
>  include/configs/KUP4K.h                            |    6 +-
>  include/configs/KUP4X.h                            |    6 +-
>  include/configs/TB5200.h                           |    8 +-
>  include/configs/TQM5200.h                          |    8 +-
>  include/configs/cm5200.h                           |    4 +-
>  include/configs/corenet_ds.h                       |    2 +-
>  include/configs/lwmon.h                            |   50 ++--
>  include/configs/lwmon5.h                           |   15 +-
>  include/configs/spieval.h                          |    8 +-
>  include/configs/{XPEDITE1000.h => xpedite1000.h}   |    5 +-
>  include/configs/{XPEDITE5170.h => xpedite517x.h}   |   37 ++-
>  include/configs/{XPEDITE5200.h => xpedite520x.h}   |   26 ++-
>  include/configs/{XPEDITE5370.h => xpedite537x.h}   |   35 ++-
>  include/configs/{XPEDITE5370.h => xpedite550x.h}   |  170 ++++++-----
>  include/post.h                                     |    4 +
>  post/drivers/i2c.c                                 |   99 ++++---
>  47 files changed, 711 insertions(+), 591 deletions(-)
>  create mode 100644 board/xes/common/board.c
>  create mode 100644 board/xes/common/fsl_8xxx_misc.c
>  create mode 100644 board/xes/common/fsl_8xxx_misc.h
>  rename board/xes/{xpedite5170 => xpedite517x}/Makefile (100%)
>  rename board/xes/{xpedite5170 => xpedite517x}/ddr.c (100%)
>  rename board/xes/{xpedite5170 => xpedite517x}/law.c (100%)
>  rename board/xes/{xpedite5170/xpedite5170.c => xpedite517x/xpedite517x.c} (88%)
>  rename board/xes/{xpedite5200 => xpedite520x}/Makefile (100%)
>  rename board/xes/{xpedite5200 => xpedite520x}/ddr.c (100%)
>  rename board/xes/{xpedite5200 => xpedite520x}/law.c (100%)
>  rename board/xes/{xpedite5200 => xpedite520x}/tlb.c (100%)
>  rename board/xes/{xpedite5200/xpedite5200.c => xpedite520x/xpedite520x.c} (79%)
>  copy board/xes/{xpedite5370 => xpedite537x}/Makefile (100%)
>  rename board/xes/{xpedite5370 => xpedite537x}/ddr.c (100%)
>  copy board/xes/{xpedite5370 => xpedite537x}/law.c (100%)
>  copy board/xes/{xpedite5370 => xpedite537x}/tlb.c (100%)
>  copy board/xes/{xpedite5370/xpedite5370.c => xpedite537x/xpedite537x.c} (89%)
>  rename board/xes/{xpedite5370 => xpedite550x}/Makefile (77%)
>  create mode 100644 board/xes/xpedite550x/ddr.c
>  rename board/xes/{xpedite5370 => xpedite550x}/law.c (97%)
>  rename board/xes/{xpedite5370 => xpedite550x}/tlb.c (99%)
>  rename board/xes/{xpedite5370/xpedite5370.c => xpedite550x/xpedite550x.c} (88%)
>  rename include/configs/{XPEDITE1000.h => xpedite1000.h} (99%)
>  rename include/configs/{XPEDITE5170.h => xpedite517x.h} (95%)
>  rename include/configs/{XPEDITE5200.h => xpedite520x.h} (95%)
>  copy include/configs/{XPEDITE5370.h => xpedite537x.h} (94%)
>  rename include/configs/{XPEDITE5370.h => xpedite550x.h} (81%)

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
No more blah, blah, blah!
	-- Kirk, "Miri", stardate 2713.6

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-10-22  8:11 Kumar Gala
  2010-10-23 20:05 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-10-22  8:11 UTC (permalink / raw)
  To: u-boot

The following changes since commit
fff6ec382c139eb242bd85356e66a0bc43becb63:

  Fix building for 83xx boards with USB support (2010-10-21 20:00:41 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx master

John Schmoller (4):
      pci: Add ability to re-enumerate PCI buses
      xes: Consolidate checkboard()
      xes: Add board_flash_wp_on()
      XPedite5500 board support

Kumar Gala (1):
      corenet_ds: Update CONFIG_SYS_GBL_DATA_SIZE to deal with growth in gd_t

Peter Tyser (9):
      xes: Use common PCI initialization code
      xes: Make X-ES board names more generic
      post/i2c: General clean up
      post/i2c: Clean up detection logic
      post/i2c: Don't probe address 0
      post/i2c: Rename I2C_ADDR_LIST to CONFIG_SYS_POST_I2C_ADDRS
      post/i2c: Add ability to ignore I2C devices
      mpc86xx: Add generic POST word read/write support
      xes: Add POST support for 8xxx boards

 MAINTAINERS                                        |    9 +-
 board/xes/common/Makefile                          |    4 +
 board/xes/common/board.c                           |   64 ++++
 board/xes/common/fsl_8xxx_clk.c                    |   11 +
 board/xes/common/fsl_8xxx_misc.c                   |   62 ++++
 board/xes/common/fsl_8xxx_misc.h                   |   28 ++
 board/xes/common/fsl_8xxx_pci.c                    |  328 +++-----------------
 board/xes/{xpedite5170 => xpedite517x}/Makefile    |    0
 board/xes/{xpedite5170 => xpedite517x}/ddr.c       |    0
 board/xes/{xpedite5170 => xpedite517x}/law.c       |    0
 .../xpedite5170.c => xpedite517x/xpedite517x.c}    |   20 +--
 board/xes/{xpedite5200 => xpedite520x}/Makefile    |    0
 board/xes/{xpedite5200 => xpedite520x}/ddr.c       |    0
 board/xes/{xpedite5200 => xpedite520x}/law.c       |    0
 board/xes/{xpedite5200 => xpedite520x}/tlb.c       |    0
 .../xpedite5200.c => xpedite520x/xpedite520x.c}    |   27 --
 board/xes/{xpedite5370 => xpedite537x}/Makefile    |    0
 board/xes/{xpedite5370 => xpedite537x}/ddr.c       |    0
 board/xes/{xpedite5370 => xpedite537x}/law.c       |    0
 board/xes/{xpedite5370 => xpedite537x}/tlb.c       |    0
 .../xpedite5370.c => xpedite537x/xpedite537x.c}    |   20 --
 board/xes/{xpedite5370 => xpedite550x}/Makefile    |    8 +-
 board/xes/xpedite550x/ddr.c                        |  165 ++++++++++
 board/xes/{xpedite5370 => xpedite550x}/law.c       |    2 +-
 board/xes/{xpedite5370 => xpedite550x}/tlb.c       |    1 -
 .../xpedite5370.c => xpedite550x/xpedite550x.c}    |   22 +--
 boards.cfg                                         |    9 +-
 common/cmd_pci.c                                   |   13 +
 doc/README.POST                                    |   19 +-
 drivers/pci/fsl_pci_init.c                         |    3 +
 drivers/pci/pci.c                                  |    4 +-
 include/configs/KUP4K.h                            |    6 +-
 include/configs/KUP4X.h                            |    6 +-
 include/configs/TB5200.h                           |    8 +-
 include/configs/TQM5200.h                          |    8 +-
 include/configs/cm5200.h                           |    4 +-
 include/configs/corenet_ds.h                       |    2 +-
 include/configs/lwmon.h                            |   50 ++--
 include/configs/lwmon5.h                           |   15 +-
 include/configs/spieval.h                          |    8 +-
 include/configs/{XPEDITE1000.h => xpedite1000.h}   |    5 +-
 include/configs/{XPEDITE5170.h => xpedite517x.h}   |   37 ++-
 include/configs/{XPEDITE5200.h => xpedite520x.h}   |   26 ++-
 include/configs/{XPEDITE5370.h => xpedite537x.h}   |   35 ++-
 include/configs/{XPEDITE5370.h => xpedite550x.h}   |  170 ++++++-----
 include/post.h                                     |    4 +
 post/drivers/i2c.c                                 |   99 ++++---
 47 files changed, 711 insertions(+), 591 deletions(-)
 create mode 100644 board/xes/common/board.c
 create mode 100644 board/xes/common/fsl_8xxx_misc.c
 create mode 100644 board/xes/common/fsl_8xxx_misc.h
 rename board/xes/{xpedite5170 => xpedite517x}/Makefile (100%)
 rename board/xes/{xpedite5170 => xpedite517x}/ddr.c (100%)
 rename board/xes/{xpedite5170 => xpedite517x}/law.c (100%)
 rename board/xes/{xpedite5170/xpedite5170.c => xpedite517x/xpedite517x.c} (88%)
 rename board/xes/{xpedite5200 => xpedite520x}/Makefile (100%)
 rename board/xes/{xpedite5200 => xpedite520x}/ddr.c (100%)
 rename board/xes/{xpedite5200 => xpedite520x}/law.c (100%)
 rename board/xes/{xpedite5200 => xpedite520x}/tlb.c (100%)
 rename board/xes/{xpedite5200/xpedite5200.c => xpedite520x/xpedite520x.c} (79%)
 copy board/xes/{xpedite5370 => xpedite537x}/Makefile (100%)
 rename board/xes/{xpedite5370 => xpedite537x}/ddr.c (100%)
 copy board/xes/{xpedite5370 => xpedite537x}/law.c (100%)
 copy board/xes/{xpedite5370 => xpedite537x}/tlb.c (100%)
 copy board/xes/{xpedite5370/xpedite5370.c => xpedite537x/xpedite537x.c} (89%)
 rename board/xes/{xpedite5370 => xpedite550x}/Makefile (77%)
 create mode 100644 board/xes/xpedite550x/ddr.c
 rename board/xes/{xpedite5370 => xpedite550x}/law.c (97%)
 rename board/xes/{xpedite5370 => xpedite550x}/tlb.c (99%)
 rename board/xes/{xpedite5370/xpedite5370.c => xpedite550x/xpedite550x.c} (88%)
 rename include/configs/{XPEDITE1000.h => xpedite1000.h} (99%)
 rename include/configs/{XPEDITE5170.h => xpedite517x.h} (95%)
 rename include/configs/{XPEDITE5200.h => xpedite520x.h} (95%)
 copy include/configs/{XPEDITE5370.h => xpedite537x.h} (94%)
 rename include/configs/{XPEDITE5370.h => xpedite550x.h} (81%)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-10-20  7:43 Kumar Gala
@ 2010-10-20 19:17 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-10-20 19:17 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1010200242020.15755@localhost.localdomain> you wrote:
> The following changes since commit 11c8dd36edcc82564a19dbd0103302df66d66db0:
> 
>   FAT: buffer overflow with FAT12/16 (2010-10-20 09:14:38 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Aaron Sierra (1):
>       85xx: Add support for not releasing secondary cores via 'mp_holdoff'
> 
> Kumar Gala (4):
>       powerpc/fsl: Introduce common enum for PHY types
>       powerpc/8xxx: Add fdt_fixup_phy_connection helper
>       86xx: Create common linker script
>       Fix compile warning in uli526x driver
> 
> Peter Tyser (6):
>       mpc8641hpcn: Update PCI code
>       sbc8641d: Update PCI code
>       tqm85xx: Update PCI code
>       mpc8640: Update the io_sel fields for PCI Express
>       86xx: Use gc-sections to reduce image size
>       85xx: Use gc-sections to reduce image size
> 
> Timur Tabi (1):
>       always relocate fdt into an lmb-allocated memory block
> 
> York Sun (7):
>       Adding more control to physical address mapping
>       Add memory test feature for mpc85xx POST.
>       Setup POST word for generic mpc85xx
>       Enable POST memory test for corenet_ds
>       Enable POST memory test for P2020DS
>       Adding fixed sdram setting for cornet_ds board
>       Disable unused chip-select for DDR controller interleaving
> 
>  arch/powerpc/cpu/mpc85xx/config.mk                 |    4 +
>  arch/powerpc/cpu/mpc85xx/cpu.c                     |  219 ++++++++++++
>  arch/powerpc/cpu/mpc85xx/fdt.c                     |   22 +-
>  arch/powerpc/cpu/mpc85xx/mp.c                      |   31 ++
>  arch/powerpc/cpu/mpc85xx/mp.h                      |    1 +
>  arch/powerpc/cpu/mpc85xx/tlb.c                     |   16 +-
>  arch/powerpc/cpu/mpc85xx/u-boot.lds                |   52 +---
>  arch/powerpc/cpu/mpc86xx/config.mk                 |    7 +
>  .../powerpc/cpu/mpc86xx}/u-boot.lds                |   26 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |   17 +-
>  arch/powerpc/cpu/mpc8xxx/fdt.c                     |   24 ++
>  arch/powerpc/cpu/mpc8xxx/pci_cfg.c                 |    5 +-
>  arch/powerpc/include/asm/fsl_ddr_sdram.h           |    6 +
>  arch/powerpc/include/asm/fsl_enet.h                |   33 ++
>  board/freescale/corenet_ds/Makefile                |    3 +-
>  board/freescale/corenet_ds/corenet_ds.c            |   15 -
>  board/freescale/corenet_ds/ddr.c                   |  131 +++++++-
>  board/freescale/corenet_ds/p4080ds_ddr.c           |  356 ++++++++++++++++++++
>  board/freescale/mpc8360emds/mpc8360emds.c          |   15 +-
>  board/freescale/mpc837xemds/mpc837xemds.c          |    8 +-
>  board/freescale/mpc8569mds/mpc8569mds.c            |    4 +-
>  board/freescale/mpc8610hpcd/u-boot.lds             |  132 --------
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c          |   97 ++----
>  board/freescale/mpc8641hpcn/u-boot.lds             |  133 --------
>  board/sbc8641d/sbc8641d.c                          |  103 ++-----
>  board/tqc/tqm85xx/law.c                            |    4 +-
>  board/tqc/tqm85xx/tlb.c                            |   10 +-
>  board/tqc/tqm85xx/tqm85xx.c                        |  151 +++------
>  board/xes/xpedite5170/u-boot.lds                   |  132 --------
>  common/image.c                                     |   83 ++---
>  doc/README.fsl-ddr                                 |   14 +
>  drivers/net/uli526x.c                              |    5 +-
>  drivers/qe/uec.c                                   |   10 +-
>  drivers/qe/uec.h                                   |   20 +-
>  drivers/qe/uec_phy.c                               |    8 +-
>  include/configs/P2020DS.h                          |    5 +-
>  include/configs/TQM85xx.h                          |   20 +-
>  include/configs/corenet_ds.h                       |   61 +----
>  include/post.h                                     |    4 +-
>  39 files changed, 1059 insertions(+), 928 deletions(-)
>  rename {board/sbc8641d => arch/powerpc/cpu/mpc86xx}/u-boot.lds (90%)
>  create mode 100644 arch/powerpc/include/asm/fsl_enet.h
>  create mode 100644 board/freescale/corenet_ds/p4080ds_ddr.c
>  delete mode 100644 board/freescale/mpc8610hpcd/u-boot.lds
>  delete mode 100644 board/freescale/mpc8641hpcn/u-boot.lds
>  delete mode 100644 board/xes/xpedite5170/u-boot.lds

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
NEW GRAND UNIFIED THEORY DISCLAIMER: The Manufacturer May Technically
Be Entitled to Claim That This Product Is  Ten-Dimensional.  However,
the  Consumer Is Reminded That This Confers No Legal Rights Above and
Beyond Those Applicable to Three-Dimensional Objects, Since the Seven
New Dimensions Are "Rolled Up" into Such a  Small  "Area"  That  They
Cannot Be Detected.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-10-20  7:43 Kumar Gala
  2010-10-20 19:17 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-10-20  7:43 UTC (permalink / raw)
  To: u-boot

The following changes since commit 11c8dd36edcc82564a19dbd0103302df66d66db0:

  FAT: buffer overflow with FAT12/16 (2010-10-20 09:14:38 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx master

Aaron Sierra (1):
      85xx: Add support for not releasing secondary cores via 'mp_holdoff'

Kumar Gala (4):
      powerpc/fsl: Introduce common enum for PHY types
      powerpc/8xxx: Add fdt_fixup_phy_connection helper
      86xx: Create common linker script
      Fix compile warning in uli526x driver

Peter Tyser (6):
      mpc8641hpcn: Update PCI code
      sbc8641d: Update PCI code
      tqm85xx: Update PCI code
      mpc8640: Update the io_sel fields for PCI Express
      86xx: Use gc-sections to reduce image size
      85xx: Use gc-sections to reduce image size

Timur Tabi (1):
      always relocate fdt into an lmb-allocated memory block

York Sun (7):
      Adding more control to physical address mapping
      Add memory test feature for mpc85xx POST.
      Setup POST word for generic mpc85xx
      Enable POST memory test for corenet_ds
      Enable POST memory test for P2020DS
      Adding fixed sdram setting for cornet_ds board
      Disable unused chip-select for DDR controller interleaving

 arch/powerpc/cpu/mpc85xx/config.mk                 |    4 +
 arch/powerpc/cpu/mpc85xx/cpu.c                     |  219 ++++++++++++
 arch/powerpc/cpu/mpc85xx/fdt.c                     |   22 +-
 arch/powerpc/cpu/mpc85xx/mp.c                      |   31 ++
 arch/powerpc/cpu/mpc85xx/mp.h                      |    1 +
 arch/powerpc/cpu/mpc85xx/tlb.c                     |   16 +-
 arch/powerpc/cpu/mpc85xx/u-boot.lds                |   52 +---
 arch/powerpc/cpu/mpc86xx/config.mk                 |    7 +
 .../powerpc/cpu/mpc86xx}/u-boot.lds                |   26 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |   17 +-
 arch/powerpc/cpu/mpc8xxx/fdt.c                     |   24 ++
 arch/powerpc/cpu/mpc8xxx/pci_cfg.c                 |    5 +-
 arch/powerpc/include/asm/fsl_ddr_sdram.h           |    6 +
 arch/powerpc/include/asm/fsl_enet.h                |   33 ++
 board/freescale/corenet_ds/Makefile                |    3 +-
 board/freescale/corenet_ds/corenet_ds.c            |   15 -
 board/freescale/corenet_ds/ddr.c                   |  131 +++++++-
 board/freescale/corenet_ds/p4080ds_ddr.c           |  356 ++++++++++++++++++++
 board/freescale/mpc8360emds/mpc8360emds.c          |   15 +-
 board/freescale/mpc837xemds/mpc837xemds.c          |    8 +-
 board/freescale/mpc8569mds/mpc8569mds.c            |    4 +-
 board/freescale/mpc8610hpcd/u-boot.lds             |  132 --------
 board/freescale/mpc8641hpcn/mpc8641hpcn.c          |   97 ++----
 board/freescale/mpc8641hpcn/u-boot.lds             |  133 --------
 board/sbc8641d/sbc8641d.c                          |  103 ++-----
 board/tqc/tqm85xx/law.c                            |    4 +-
 board/tqc/tqm85xx/tlb.c                            |   10 +-
 board/tqc/tqm85xx/tqm85xx.c                        |  151 +++------
 board/xes/xpedite5170/u-boot.lds                   |  132 --------
 common/image.c                                     |   83 ++---
 doc/README.fsl-ddr                                 |   14 +
 drivers/net/uli526x.c                              |    5 +-
 drivers/qe/uec.c                                   |   10 +-
 drivers/qe/uec.h                                   |   20 +-
 drivers/qe/uec_phy.c                               |    8 +-
 include/configs/P2020DS.h                          |    5 +-
 include/configs/TQM85xx.h                          |   20 +-
 include/configs/corenet_ds.h                       |   61 +----
 include/post.h                                     |    4 +-
 39 files changed, 1059 insertions(+), 928 deletions(-)
 rename {board/sbc8641d => arch/powerpc/cpu/mpc86xx}/u-boot.lds (90%)
 create mode 100644 arch/powerpc/include/asm/fsl_enet.h
 create mode 100644 board/freescale/corenet_ds/p4080ds_ddr.c
 delete mode 100644 board/freescale/mpc8610hpcd/u-boot.lds
 delete mode 100644 board/freescale/mpc8641hpcn/u-boot.lds
 delete mode 100644 board/xes/xpedite5170/u-boot.lds

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-10-07 16:17 Kumar Gala
@ 2010-10-11  7:59 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-10-11  7:59 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1010071117130.21223@localhost.localdomain> you wrote:
> The following changes since commit d6288664743cdd4824cb877ca424619c827c1256:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-blackfin (2010-10-05 14:42:32 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Emil Medve (1):
>       powerpc/corenet_ds: Various updates to initial env cfg
> 
> Haiying Wang (3):
>       mpc8569mds: fix CONFIG_ENV_SIZE
>       mpc8569mds: fix consuming long time while relocating code.
>       mpc8569mds: fix some ddr settings
> 
> Kim Phillips (1):
>       powerpc/85xx: fix rev.2 job queue LIODN error storm
> 
> Kumar Gala (2):
>       powerpc/85xx: Add support for 4th PCI controller on corenet_ds
>       powerpc/p4080: Add new CPC register - HDBCR0
> 
> Timur Tabi (3):
>       p1022ds: add audclk hwconfig setting to enable codec reference clock
>       fsl: verify writes to the MAC address EEPROM
>       fsl: add support for NXID v1 EEPROM format
> 
>  arch/powerpc/cpu/mpc85xx/p4080_ids.c    |   14 +++++--
>  arch/powerpc/include/asm/immap_85xx.h   |    5 ++-
>  board/freescale/common/sys_eeprom.c     |   44 ++++++++++++++++-----
>  board/freescale/corenet_ds/pci.c        |   28 ++++++++++++-
>  board/freescale/mpc8569mds/ddr.c        |   16 ++++++-
>  board/freescale/mpc8569mds/mpc8569mds.c |   26 ++++++++++++
>  board/freescale/mpc8569mds/tlb.c        |   15 +++++--
>  board/freescale/p1022ds/p1022ds.c       |   67 ++++++++++++++++++++++++++----
>  doc/README.fsl-hwconfig                 |   21 ++++++++++
>  include/configs/MPC8569MDS.h            |    7 ++-
>  include/configs/P1022DS.h               |    1 +
>  include/configs/corenet_ds.h            |   23 ++++++++---
>  12 files changed, 225 insertions(+), 42 deletions(-)
>  create mode 100644 doc/README.fsl-hwconfig

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
Without freedom of choice there is no creativity.
	-- Kirk, "The return of the Archons", stardate 3157.4

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-10-07 16:17 Kumar Gala
  2010-10-11  7:59 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-10-07 16:17 UTC (permalink / raw)
  To: u-boot

The following changes since commit d6288664743cdd4824cb877ca424619c827c1256:

  Merge branch 'master' of git://git.denx.de/u-boot-blackfin (2010-10-05 14:42:32 +0200)

are available in the git repository at:

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

Emil Medve (1):
      powerpc/corenet_ds: Various updates to initial env cfg

Haiying Wang (3):
      mpc8569mds: fix CONFIG_ENV_SIZE
      mpc8569mds: fix consuming long time while relocating code.
      mpc8569mds: fix some ddr settings

Kim Phillips (1):
      powerpc/85xx: fix rev.2 job queue LIODN error storm

Kumar Gala (2):
      powerpc/85xx: Add support for 4th PCI controller on corenet_ds
      powerpc/p4080: Add new CPC register - HDBCR0

Timur Tabi (3):
      p1022ds: add audclk hwconfig setting to enable codec reference clock
      fsl: verify writes to the MAC address EEPROM
      fsl: add support for NXID v1 EEPROM format

 arch/powerpc/cpu/mpc85xx/p4080_ids.c    |   14 +++++--
 arch/powerpc/include/asm/immap_85xx.h   |    5 ++-
 board/freescale/common/sys_eeprom.c     |   44 ++++++++++++++++-----
 board/freescale/corenet_ds/pci.c        |   28 ++++++++++++-
 board/freescale/mpc8569mds/ddr.c        |   16 ++++++-
 board/freescale/mpc8569mds/mpc8569mds.c |   26 ++++++++++++
 board/freescale/mpc8569mds/tlb.c        |   15 +++++--
 board/freescale/p1022ds/p1022ds.c       |   67 ++++++++++++++++++++++++++----
 doc/README.fsl-hwconfig                 |   21 ++++++++++
 include/configs/MPC8569MDS.h            |    7 ++-
 include/configs/P1022DS.h               |    1 +
 include/configs/corenet_ds.h            |   23 ++++++++---
 12 files changed, 225 insertions(+), 42 deletions(-)
 create mode 100644 doc/README.fsl-hwconfig

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-31 16:26 Kumar Gala
@ 2010-09-07 19:18 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-09-07 19:18 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1008311126200.28313@localhost.localdomain> you wrote:
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
>   Wolfgang Denk (1):
>         Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Kim Phillips (1):
>       powerpc/8xxx: share PIC defines among 85xx and 86xx
> 
> Kumar Gala (2):
>       powerpc/85xx: Rename Security Engine Job Queue to Job Ring to match docs
>       powerpc/83xx: Fix build issue with ve8313 board due to lbus changes
> 
> Lian Minghuan (1):
>       powerpc/85xx: Fix SRIO LAW setup on corenet_ds boards
> 
> Matthew McClintock (1):
>       mpx85xx/fdt: Add cpu-release-addr for all cores
> 
> Scott Wood (1):
>       fdt: call fdt_parent_offset fewer times while translating addresses
> 
> York Sun (2):
>       Fix parameters to support RDIMM for P2020DS
>       powerpc/8xxx: Fix dma for 36bit addressing
> 
> york (1):
>       powerpc/8xxx: Fix quad-rank DIMMs support on corenet_ds board.
> 
>  arch/powerpc/cpu/mpc85xx/cpu.c           |    2 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c      |    2 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c           |   15 ++++----
>  arch/powerpc/cpu/mpc85xx/interrupts.c    |    2 +-
>  arch/powerpc/cpu/mpc85xx/mp.c            |    6 ++--
>  arch/powerpc/cpu/mpc85xx/p4080_ids.c     |    8 ++--
>  arch/powerpc/cpu/mpc85xx/traps.c         |    2 +-
>  arch/powerpc/cpu/mpc8xxx/cpu.c           |    8 +++--
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |    1 +
>  arch/powerpc/include/asm/fsl_liodn.h     |    8 ++--
>  arch/powerpc/include/asm/immap_85xx.h    |   10 ++---
>  arch/powerpc/include/asm/immap_86xx.h    |    9 +++--
>  board/freescale/corenet_ds/corenet_ds.c  |   47 +++++++++++++-----------
>  board/freescale/corenet_ds/ddr.c         |   18 +++++++++-
>  board/freescale/p2020ds/ddr.c            |    4 +-
>  board/ve8313/ve8313.c                    |    2 +-
>  common/fdt_support.c                     |   58 +++++++++++-------------------
>  drivers/dma/fsl_dma.c                    |    8 +++-
>  include/configs/corenet_ds.h             |    2 +-
>  include/configs/ve8313.h                 |    1 +
>  20 files changed, 113 insertions(+), 100 deletions(-)

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
Am I your nanny? The kernel is there to support  user  programs,  but
it's a _resource_ handler, not a baby feeder.     - Linus Torvalds in
      <Pine.LNX.3.91.960425074845.22041C-100000@linux.cs.Helsinki.FI>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-08-31 16:26 Kumar Gala
  2010-09-07 19:18 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-08-31 16:26 UTC (permalink / raw)
  To: u-boot

The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
  Wolfgang Denk (1):
        Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master

are available in the git repository at:

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

Kim Phillips (1):
      powerpc/8xxx: share PIC defines among 85xx and 86xx

Kumar Gala (2):
      powerpc/85xx: Rename Security Engine Job Queue to Job Ring to match docs
      powerpc/83xx: Fix build issue with ve8313 board due to lbus changes

Lian Minghuan (1):
      powerpc/85xx: Fix SRIO LAW setup on corenet_ds boards

Matthew McClintock (1):
      mpx85xx/fdt: Add cpu-release-addr for all cores

Scott Wood (1):
      fdt: call fdt_parent_offset fewer times while translating addresses

York Sun (2):
      Fix parameters to support RDIMM for P2020DS
      powerpc/8xxx: Fix dma for 36bit addressing

york (1):
      powerpc/8xxx: Fix quad-rank DIMMs support on corenet_ds board.

 arch/powerpc/cpu/mpc85xx/cpu.c           |    2 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c      |    2 +-
 arch/powerpc/cpu/mpc85xx/fdt.c           |   15 ++++----
 arch/powerpc/cpu/mpc85xx/interrupts.c    |    2 +-
 arch/powerpc/cpu/mpc85xx/mp.c            |    6 ++--
 arch/powerpc/cpu/mpc85xx/p4080_ids.c     |    8 ++--
 arch/powerpc/cpu/mpc85xx/traps.c         |    2 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c           |    8 +++--
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |    1 +
 arch/powerpc/include/asm/fsl_liodn.h     |    8 ++--
 arch/powerpc/include/asm/immap_85xx.h    |   10 ++---
 arch/powerpc/include/asm/immap_86xx.h    |    9 +++--
 board/freescale/corenet_ds/corenet_ds.c  |   47 +++++++++++++-----------
 board/freescale/corenet_ds/ddr.c         |   18 +++++++++-
 board/freescale/p2020ds/ddr.c            |    4 +-
 board/ve8313/ve8313.c                    |    2 +-
 common/fdt_support.c                     |   58 +++++++++++-------------------
 drivers/dma/fsl_dma.c                    |    8 +++-
 include/configs/corenet_ds.h             |    2 +-
 include/configs/ve8313.h                 |    1 +
 20 files changed, 113 insertions(+), 100 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-08-19  7:10 Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-08-19  7:10 UTC (permalink / raw)
  To: u-boot

The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
  Wolfgang Denk (1):
        Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master

are available in the git repository at:

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

Kim Phillips (1):
      powerpc/8xxx: share PIC defines among 85xx and 86xx

Kumar Gala (2):
      powerpc/85xx: Rename Security Engine Job Queue to Job Ring to match docs
      powerpc/83xx: Fix build issue with ve8313 board due to lbus changes

Lian Minghuan (1):
      powerpc/85xx: Fix SRIO LAW setup on corenet_ds boards

york (1):
      powerpc/8xxx: Fix quad-rank DIMMs support on corenet_ds board.

 arch/powerpc/cpu/mpc85xx/cpu.c          |    2 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c     |    2 +-
 arch/powerpc/cpu/mpc85xx/interrupts.c   |    2 +-
 arch/powerpc/cpu/mpc85xx/mp.c           |    6 ++--
 arch/powerpc/cpu/mpc85xx/p4080_ids.c    |    8 ++--
 arch/powerpc/cpu/mpc85xx/traps.c        |    2 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c          |    8 +++--
 arch/powerpc/include/asm/fsl_liodn.h    |    8 ++--
 arch/powerpc/include/asm/immap_85xx.h   |   10 ++----
 arch/powerpc/include/asm/immap_86xx.h   |    9 ++++--
 board/freescale/corenet_ds/corenet_ds.c |   47 ++++++++++++++++--------------
 board/freescale/corenet_ds/ddr.c        |   18 +++++++++++-
 board/ve8313/ve8313.c                   |    2 +-
 drivers/mtd/nand/fsl_elbc_nand.c        |    4 ++-
 include/configs/corenet_ds.h            |    2 +-
 include/configs/ve8313.h                |    1 +
 16 files changed, 78 insertions(+), 53 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-01 15:51 Kumar Gala
  2010-08-02 13:20 ` Timur Tabi
@ 2010-08-03 22:31 ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-08-03 22:31 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1008011051050.28689@localhost.localdomain> you wrote:
> The following changes since commit 7385c28e9b5f7d47e6a8f1ad9800e6e70af714e2:
>   Wolfgang Denk (1):
>         fs/fat: Big code cleanup.
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Kim Phillips (2):
>       powerpc/85xx: configure autocompletion support
>       powerpc/8xxx: query feature reporting register for num cores on unknown cpus
> 
> Kumar Gala (10):
>       powerpc/85xx: Add additional p4080 platform related defines/structs
>       powerpc/fsl_fman: Add initial fman immap structures
>       powerpc/p4080: Add support for CPC(Corenet platform cache) on CoreNet platforms
>       fdt: Add function to alloc phandle values
>       powerpc/85xx: Add support to initialize LIODN registers and portals
>       powerpc/p4080: Add support for initializing SERDES
>       powerpc/p4080: Add workaround for errata SERDES8
>       powerpc/p4080: Add workaround for erratum CPU22
>       powerpc/8xxx: Enabled hwconfig for memory interleaving
>       powerpc/p4080: Add support for the P4080DS board
> 
> york (8):
>       powerpc/85xx: Move INIT_RAM_ADDR physical address to 36-bit space
>       powerpc/p2020: Move INIT_RAM_ADDR physical address higher for 36-bit for P2020DS
>       powerpc/8xxx: Fix bug in memctrl interleaving & bank interleaving on cs0~cs4
>       powerpc/8xxx: Enable quad-rank DIMMs.
>       powerpc/8xxx: Enabled address hashing for 85xx
>       powerpc/8xxx: Enable DDR3 RDIMM support
>       powerpc/8xxx: Improvement to DDR parameters
>       powerpc/p2020ds: Integrated with P2020DS DDR change and enabled hwconfig
> 
>  MAKEALL                                            |    1 +
>  Makefile                                           |    1 +
>  arch/powerpc/cpu/mpc85xx/Makefile                  |    8 +
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    6 +
>  arch/powerpc/cpu/mpc85xx/cpu_init.c                |   52 ++-
>  arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |    2 +
>  arch/powerpc/cpu/mpc85xx/fdt.c                     |   39 ++
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |  495 ++++++++++++++
>  arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h      |   44 ++
>  arch/powerpc/cpu/mpc85xx/liodn.c                   |  187 ++++++
>  arch/powerpc/cpu/mpc85xx/p4080_ids.c               |  115 ++++
>  arch/powerpc/cpu/mpc85xx/p4080_serdes.c            |   98 +++
>  arch/powerpc/cpu/mpc85xx/portals.c                 |  238 +++++++
>  arch/powerpc/cpu/mpc85xx/release.S                 |    6 +
>  arch/powerpc/cpu/mpc85xx/start.S                   |   10 +
>  arch/powerpc/cpu/mpc8xxx/cpu.c                     |   10 +-
>  .../powerpc/cpu/mpc8xxx/ddr/common_timing_params.h |    3 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |  264 +++++---
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr.h                 |    1 +
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c    |    6 +-
>  .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   30 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   40 +-
>  arch/powerpc/cpu/mpc8xxx/ddr/options.c             |  154 ++++-
>  arch/powerpc/include/asm/fsl_ddr_dimm_params.h     |    3 +
>  arch/powerpc/include/asm/fsl_ddr_sdram.h           |    3 +
>  arch/powerpc/include/asm/fsl_fman.h                |  212 ++++++
>  arch/powerpc/include/asm/fsl_law.h                 |    3 +-
>  arch/powerpc/include/asm/fsl_liodn.h               |  142 ++++
>  arch/powerpc/include/asm/fsl_portals.h             |   59 ++
>  arch/powerpc/include/asm/fsl_serdes.h              |   11 +-
>  arch/powerpc/include/asm/immap_85xx.h              |  219 ++++++-
>  arch/powerpc/include/asm/processor.h               |    1 +
>  board/freescale/common/Makefile                    |    1 +
>  board/freescale/corenet_ds/Makefile                |   55 ++
>  board/freescale/corenet_ds/config.mk               |   30 +
>  board/freescale/corenet_ds/corenet_ds.c            |  259 ++++++++
>  board/freescale/corenet_ds/ddr.c                   |  176 +++++
>  board/freescale/corenet_ds/law.c                   |   40 ++
>  board/freescale/corenet_ds/pci.c                   |  127 ++++
>  board/freescale/corenet_ds/tlb.c                   |  112 ++++
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c          |    2 +
>  board/freescale/p2020ds/ddr.c                      |   56 +-
>  board/freescale/p2020ds/p2020ds.c                  |    7 +-
>  board/freescale/p2020ds/tlb.c                      |    8 +-
>  boards.cfg                                         |    1 +
>  common/fdt_support.c                               |   18 +
>  doc/README.fsl-ddr                                 |   39 +-
>  include/configs/MPC8536DS.h                        |    1 +
>  include/configs/MPC8540ADS.h                       |    3 +-
>  include/configs/MPC8541CDS.h                       |    3 +-
>  include/configs/MPC8544DS.h                        |    3 +-
>  include/configs/MPC8548CDS.h                       |    3 +-
>  include/configs/MPC8555CDS.h                       |    3 +-
>  include/configs/MPC8560ADS.h                       |    3 +-
>  include/configs/MPC8568MDS.h                       |    3 +-
>  include/configs/MPC8569MDS.h                       |    5 +-
>  include/configs/MPC8572DS.h                        |    3 +-
>  include/configs/MPC8641HPCN.h                      |    2 +
>  include/configs/P1022DS.h                          |    1 +
>  include/configs/P1_P2_RDB.h                        |    1 +
>  include/configs/P2020DS.h                          |   21 +-
>  include/configs/P4080DS.h                          |   35 +
>  include/configs/TQM85xx.h                          |    1 +
>  include/configs/XPEDITE5200.h                      |    1 +
>  include/configs/XPEDITE5370.h                      |    1 +
>  include/configs/corenet_ds.h                       |  673 ++++++++++++++++++++
>  include/configs/sbc8548.h                          |    1 +
>  include/configs/socrates.h                         |    1 +
>  include/configs/stxssa.h                           |    1 +
>  include/ddr_spd.h                                  |   14 +
>  include/fdt_support.h                              |    1 +
>  71 files changed, 3933 insertions(+), 245 deletions(-)
>  create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h
>  create mode 100644 arch/powerpc/cpu/mpc85xx/liodn.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_ids.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_serdes.c
>  create mode 100644 arch/powerpc/cpu/mpc85xx/portals.c
>  create mode 100644 arch/powerpc/include/asm/fsl_fman.h
>  create mode 100644 arch/powerpc/include/asm/fsl_liodn.h
>  create mode 100644 arch/powerpc/include/asm/fsl_portals.h
>  create mode 100644 board/freescale/corenet_ds/Makefile
>  create mode 100644 board/freescale/corenet_ds/config.mk
>  create mode 100644 board/freescale/corenet_ds/corenet_ds.c
>  create mode 100644 board/freescale/corenet_ds/ddr.c
>  create mode 100644 board/freescale/corenet_ds/law.c
>  create mode 100644 board/freescale/corenet_ds/pci.c
>  create mode 100644 board/freescale/corenet_ds/tlb.c
>  create mode 100644 include/configs/P4080DS.h
>  create mode 100644 include/configs/corenet_ds.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
A man either lives life as it happens to him, meets  it  head-on  and
licks it, or he turns his back on it and starts to wither away.
	-- Dr. Boyce, "The Menagerie" ("The Cage"), stardate unknown

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 21:06           ` Wolfgang Denk
@ 2010-08-02 21:11             ` Timur Tabi
  0 siblings, 0 replies; 172+ messages in thread
From: Timur Tabi @ 2010-08-02 21:11 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk wrote:

>> Without this patch, audio support on the P1022DS is completely broken.
> 
> We don't have audio support in U-Boot, do we?

But we do have P1022DS board support, and my understanding is that part of
the function of U-Boot is to prepare the board so that it can be used by
Linux, or whatever OS it boots.

Besides, there's tons of hardware that is not supported by U-Boot but must
be initialized by U-Boot anyway.

> Once there was a good old tradition that a driver in an OS makes sure
> to initialize the hardware as it needs it for reliable operation. I
> think I remember to have seen this requested for Linux drivers not so
> long ago.

Well, now we're talking about a very old issue that always raises
disagreement -- exactly what should U-Boot be doing vs. Linux.  And this is
something that changes over time.  For example, QE pin muxing used to be
done in U-Boot, but now it's done in Linux.  Well, except for the QE
features that U-Boot uses.  In that case, it's done in U-Boot *and* Linux.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 21:08       ` Wolfgang Denk
@ 2010-08-02 21:10         ` Ben Warren
  0 siblings, 0 replies; 172+ messages in thread
From: Ben Warren @ 2010-08-02 21:10 UTC (permalink / raw)
  To: u-boot

  Hi Wolfgang,

On 8/2/2010 2:08 PM, Wolfgang Denk wrote:
> Dear Ben Warren,
>
> In message<4C570EEE.8060403@gmail.com>  you wrote:
>>> And the merge window is closed.
>>>
>> What day should we consider the window to have closed?  You website says
>> July 17, but that seems an awfully long time ago and I think a lot of
>> code has been accepted since then, right?
> Oops. I was so busy in the last few weeks that I missed to formally
> announce the new status. Sorry for that.
>
That's OK, it just snuck up on me.  I have a few things I was hoping to 
get it, but they can wait until the next window I guess.
> Will update ASAP.
>
> Best regards,
>
> Wolfgang Denk
>
regards,
Ben

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 18:31     ` Ben Warren
  2010-08-02 19:32       ` Kumar Gala
@ 2010-08-02 21:08       ` Wolfgang Denk
  2010-08-02 21:10         ` Ben Warren
  1 sibling, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2010-08-02 21:08 UTC (permalink / raw)
  To: u-boot

Dear Ben Warren,

In message <4C570EEE.8060403@gmail.com> you wrote:
> 
> > And the merge window is closed.
> >
> What day should we consider the window to have closed?  You website says 
> July 17, but that seems an awfully long time ago and I think a lot of 
> code has been accepted since then, right?

Oops. I was so busy in the last few weeks that I missed to formally
announce the new status. Sorry for that.

Will update ASAP.

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
Far back in the mists of ancient time, in the great and glorious days
of the former Galactic Empire, life was wild, rich  and  largely  tax
free.         - Douglas Adams, _The Hitchhiker's Guide to the Galaxy_

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 20:58         ` Timur Tabi
@ 2010-08-02 21:06           ` Wolfgang Denk
  2010-08-02 21:11             ` Timur Tabi
  0 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2010-08-02 21:06 UTC (permalink / raw)
  To: u-boot

Dear Timur Tabi,

In message <4C57316B.7010706@freescale.com> you wrote:
> 
> >> Audio is broken in Linux without this patch.  It's something I neglected to
> >> incorporate when in my initial P1022DS patch.
> > 
> > Well, this is U-Boot, not Linux.
> 
> I supposed it depends on your definition of a "bug".  If it's not doing
> something that it's supposed to be doing, and something else is broken
> because of it, is that a bug?
> 
> Without this patch, audio support on the P1022DS is completely broken.

We don't have audio support in U-Boot, do we?

> >> Perhaps "enable" is the wrong word, since the Linux audio driver doesn't
> >> detect the problem and just fails if U-Boot hasn't set up the signal routing
> >> correctly.
> > 
> > Sounds as if this should be fixed in Linux (too) ?
> 
> This has to do with enabling clock signals and pin muxing, something which
> is (IMHO) handled better in U-Boot than in Linux.

Once there was a good old tradition that a driver in an OS makes sure
to initialize the hardware as it needs it for reliable operation. I
think I remember to have seen this requested for Linux drivers not so
long ago.

To me it makes NO sense to enable clock signals for features that may
not be used at all - it will just increase the power dissipation of
the device without need nor benefit.  Only if the audio driver in
Linux actually gets initialized it should enable the required clock
signals (and disable them upon unloading).

But that's actually off topic here.

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
I have often regretted my speech, never my silence.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 20:54       ` Wolfgang Denk
@ 2010-08-02 20:58         ` Timur Tabi
  2010-08-02 21:06           ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Timur Tabi @ 2010-08-02 20:58 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk wrote:

>> Audio is broken in Linux without this patch.  It's something I neglected to
>> incorporate when in my initial P1022DS patch.
> 
> Well, this is U-Boot, not Linux.

I supposed it depends on your definition of a "bug".  If it's not doing
something that it's supposed to be doing, and something else is broken
because of it, is that a bug?

Without this patch, audio support on the P1022DS is completely broken.

>> Perhaps "enable" is the wrong word, since the Linux audio driver doesn't
>> detect the problem and just fails if U-Boot hasn't set up the signal routing
>> correctly.
> 
> Sounds as if this should be fixed in Linux (too) ?

This has to do with enabling clock signals and pin muxing, something which
is (IMHO) handled better in U-Boot than in Linux.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 15:25     ` Timur Tabi
@ 2010-08-02 20:54       ` Wolfgang Denk
  2010-08-02 20:58         ` Timur Tabi
  0 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2010-08-02 20:54 UTC (permalink / raw)
  To: u-boot

Dear Timur Tabi,

In message <4C56E35A.6040302@freescale.com> you wrote:
>
> >> I have a patch that enables audio on the 1022, can you pick up that one too ?
> > 
> > This is not exactly a bug fix, right?
> 
> Audio is broken in Linux without this patch.  It's something I neglected to
> incorporate when in my initial P1022DS patch.

Well, this is U-Boot, not Linux.

> Perhaps "enable" is the wrong word, since the Linux audio driver doesn't
> detect the problem and just fails if U-Boot hasn't set up the signal routing
> correctly.

Sounds as if this should be fixed in Linux (too) ?


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
If there are self-made purgatories, then we all have to live in them.
	-- Spock, "This Side of Paradise", stardate 3417.7

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 18:31     ` Ben Warren
@ 2010-08-02 19:32       ` Kumar Gala
  2010-08-02 21:08       ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-08-02 19:32 UTC (permalink / raw)
  To: u-boot


On Aug 2, 2010, at 1:31 PM, Ben Warren wrote:

>  Hi Wolfgang,
> 
> On 8/2/2010 7:57 AM, Wolfgang Denk wrote:
>> Dear Timur Tabi,
>> 
>> In message<AANLkTinO-aY_v0homZ6VGp-vYYfEHPSD3iRvJdSf1=8k@mail.gmail.com>  you wrote:
>>> I have a patch that enables audio on the 1022, can you pick up that one too ?
>> This is not exactly a bug fix, right?
>> 
>> And the merge window is closed.
>> 
> What day should we consider the window to have closed?  You website says 
> July 17, but that seems an awfully long time ago and I think a lot of 
> code has been accepted since then, right?

I've always assumed some fuzz in that things posted before the July 17th date are reasonable to go in, even if they have some feedback post that date and need some minor reworks.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 14:57   ` Wolfgang Denk
  2010-08-02 15:25     ` Timur Tabi
@ 2010-08-02 18:31     ` Ben Warren
  2010-08-02 19:32       ` Kumar Gala
  2010-08-02 21:08       ` Wolfgang Denk
  1 sibling, 2 replies; 172+ messages in thread
From: Ben Warren @ 2010-08-02 18:31 UTC (permalink / raw)
  To: u-boot

  Hi Wolfgang,

On 8/2/2010 7:57 AM, Wolfgang Denk wrote:
> Dear Timur Tabi,
>
> In message<AANLkTinO-aY_v0homZ6VGp-vYYfEHPSD3iRvJdSf1=8k@mail.gmail.com>  you wrote:
>> I have a patch that enables audio on the 1022, can you pick up that one too ?
> This is not exactly a bug fix, right?
>
> And the merge window is closed.
>
What day should we consider the window to have closed?  You website says 
July 17, but that seems an awfully long time ago and I think a lot of 
code has been accepted since then, right?
> Best regards,
>
> Wolfgang Denk
regards,
Ben

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 14:57   ` Wolfgang Denk
@ 2010-08-02 15:25     ` Timur Tabi
  2010-08-02 20:54       ` Wolfgang Denk
  2010-08-02 18:31     ` Ben Warren
  1 sibling, 1 reply; 172+ messages in thread
From: Timur Tabi @ 2010-08-02 15:25 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk wrote:
> Dear Timur Tabi,
> 
> In message <AANLkTinO-aY_v0homZ6VGp-vYYfEHPSD3iRvJdSf1=8k@mail.gmail.com> you wrote:
>> I have a patch that enables audio on the 1022, can you pick up that one too ?
> 
> This is not exactly a bug fix, right?

Audio is broken in Linux without this patch.  It's something I neglected to
incorporate when in my initial P1022DS patch.

Perhaps "enable" is the wrong word, since the Linux audio driver doesn't
detect the problem and just fails if U-Boot hasn't set up the signal routing
correctly.

> And the merge window is closed.
> 
> 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
> "Life is a garment we continuously alter, but which  never  seems  to
> fit."                                                  - David McCord
> 

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-02 13:20 ` Timur Tabi
@ 2010-08-02 14:57   ` Wolfgang Denk
  2010-08-02 15:25     ` Timur Tabi
  2010-08-02 18:31     ` Ben Warren
  0 siblings, 2 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-08-02 14:57 UTC (permalink / raw)
  To: u-boot

Dear Timur Tabi,

In message <AANLkTinO-aY_v0homZ6VGp-vYYfEHPSD3iRvJdSf1=8k@mail.gmail.com> you wrote:
> I have a patch that enables audio on the 1022, can you pick up that one too ?

This is not exactly a bug fix, right?

And the merge window is closed.

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
"Life is a garment we continuously alter, but which  never  seems  to
fit."                                                  - David McCord

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-08-01 15:51 Kumar Gala
@ 2010-08-02 13:20 ` Timur Tabi
  2010-08-02 14:57   ` Wolfgang Denk
  2010-08-03 22:31 ` Wolfgang Denk
  1 sibling, 1 reply; 172+ messages in thread
From: Timur Tabi @ 2010-08-02 13:20 UTC (permalink / raw)
  To: u-boot

I have a patch that enables audio on the 1022, can you pick up that one too?

On Sunday, August 1, 2010, Kumar Gala <galak@kernel.crashing.org> wrote:
> The following changes since commit 7385c28e9b5f7d47e6a8f1ad9800e6e70af714e2:
>  ?Wolfgang Denk (1):
>  ? ? ? ?fs/fat: Big code cleanup.
>
> are available in the git repository at:
>
>  ?git://git.denx.de/u-boot-mpc85xx master
>
> Kim Phillips (2):
>  ? ? ?powerpc/85xx: configure autocompletion support
>  ? ? ?powerpc/8xxx: query feature reporting register for num cores on unknown cpus
>
> Kumar Gala (10):
>  ? ? ?powerpc/85xx: Add additional p4080 platform related defines/structs
>  ? ? ?powerpc/fsl_fman: Add initial fman immap structures
>  ? ? ?powerpc/p4080: Add support for CPC(Corenet platform cache) on CoreNet platforms
>  ? ? ?fdt: Add function to alloc phandle values
>  ? ? ?powerpc/85xx: Add support to initialize LIODN registers and portals
>  ? ? ?powerpc/p4080: Add support for initializing SERDES
>  ? ? ?powerpc/p4080: Add workaround for errata SERDES8
>  ? ? ?powerpc/p4080: Add workaround for erratum CPU22
>  ? ? ?powerpc/8xxx: Enabled hwconfig for memory interleaving
>  ? ? ?powerpc/p4080: Add support for the P4080DS board
>
> york (8):
>  ? ? ?powerpc/85xx: Move INIT_RAM_ADDR physical address to 36-bit space
>  ? ? ?powerpc/p2020: Move INIT_RAM_ADDR physical address higher for 36-bit for P2020DS
>  ? ? ?powerpc/8xxx: Fix bug in memctrl interleaving & bank interleaving on cs0~cs4
>  ? ? ?powerpc/8xxx: Enable quad-rank DIMMs.
>  ? ? ?powerpc/8xxx: Enabled address hashing for 85xx
>  ? ? ?powerpc/8xxx: Enable DDR3 RDIMM support
>  ? ? ?powerpc/8xxx: Improvement to DDR parameters
>  ? ? ?powerpc/p2020ds: Integrated with P2020DS DDR change and enabled hwconfig
>
> ?MAKEALL ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?Makefile ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ? ?1 +
> ?arch/powerpc/cpu/mpc85xx/Makefile ? ? ? ? ? ? ? ? ?| ? ?8 +
> ?arch/powerpc/cpu/mpc85xx/cmd_errata.c ? ? ? ? ? ? ?| ? ?6 +
> ?arch/powerpc/cpu/mpc85xx/cpu_init.c ? ? ? ? ? ? ? ?| ? 52 ++-
> ?arch/powerpc/cpu/mpc85xx/ddr-gen3.c ? ? ? ? ? ? ? ?| ? ?2 +
> ?arch/powerpc/cpu/mpc85xx/fdt.c ? ? ? ? ? ? ? ? ? ? | ? 39 ++
> ?arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c ? ? ?| ?495 ++++++++++++++
> ?arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h ? ? ?| ? 44 ++
> ?arch/powerpc/cpu/mpc85xx/liodn.c ? ? ? ? ? ? ? ? ? | ?187 ++++++
> ?arch/powerpc/cpu/mpc85xx/p4080_ids.c ? ? ? ? ? ? ? | ?115 ++++
> ?arch/powerpc/cpu/mpc85xx/p4080_serdes.c ? ? ? ? ? ?| ? 98 +++
> ?arch/powerpc/cpu/mpc85xx/portals.c ? ? ? ? ? ? ? ? | ?238 +++++++
> ?arch/powerpc/cpu/mpc85xx/release.S ? ? ? ? ? ? ? ? | ? ?6 +
> ?arch/powerpc/cpu/mpc85xx/start.S ? ? ? ? ? ? ? ? ? | ? 10 +
> ?arch/powerpc/cpu/mpc8xxx/cpu.c ? ? ? ? ? ? ? ? ? ? | ? 10 +-
> ?.../powerpc/cpu/mpc8xxx/ddr/common_timing_params.h | ? ?3 +
> ?arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c ? ? ? ? ? | ?264 +++++---
> ?arch/powerpc/cpu/mpc8xxx/ddr/ddr.h ? ? ? ? ? ? ? ? | ? ?1 +
> ?arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c ? ?| ? ?6 +-
> ?.../cpu/mpc8xxx/ddr/lc_common_dimm_params.c ? ? ? ?| ? 30 +-
> ?arch/powerpc/cpu/mpc8xxx/ddr/main.c ? ? ? ? ? ? ? ?| ? 40 +-
> ?arch/powerpc/cpu/mpc8xxx/ddr/options.c ? ? ? ? ? ? | ?154 ++++-
> ?arch/powerpc/include/asm/fsl_ddr_dimm_params.h ? ? | ? ?3 +
> ?arch/powerpc/include/asm/fsl_ddr_sdram.h ? ? ? ? ? | ? ?3 +
> ?arch/powerpc/include/asm/fsl_fman.h ? ? ? ? ? ? ? ?| ?212 ++++++
> ?arch/powerpc/include/asm/fsl_law.h ? ? ? ? ? ? ? ? | ? ?3 +-
> ?arch/powerpc/include/asm/fsl_liodn.h ? ? ? ? ? ? ? | ?142 ++++
> ?arch/powerpc/include/asm/fsl_portals.h ? ? ? ? ? ? | ? 59 ++
> ?arch/powerpc/include/asm/fsl_serdes.h ? ? ? ? ? ? ?| ? 11 +-
> ?arch/powerpc/include/asm/immap_85xx.h ? ? ? ? ? ? ?| ?219 ++++++-
> ?arch/powerpc/include/asm/processor.h ? ? ? ? ? ? ? | ? ?1 +
> ?board/freescale/common/Makefile ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?board/freescale/corenet_ds/Makefile ? ? ? ? ? ? ? ?| ? 55 ++
> ?board/freescale/corenet_ds/config.mk ? ? ? ? ? ? ? | ? 30 +
> ?board/freescale/corenet_ds/corenet_ds.c ? ? ? ? ? ?| ?259 ++++++++
> ?board/freescale/corenet_ds/ddr.c ? ? ? ? ? ? ? ? ? | ?176 +++++
> ?board/freescale/corenet_ds/law.c ? ? ? ? ? ? ? ? ? | ? 40 ++
> ?board/freescale/corenet_ds/pci.c ? ? ? ? ? ? ? ? ? | ?127 ++++
> ?board/freescale/corenet_ds/tlb.c ? ? ? ? ? ? ? ? ? | ?112 ++++
> ?board/freescale/mpc8641hpcn/mpc8641hpcn.c ? ? ? ? ?| ? ?2 +
> ?board/freescale/p2020ds/ddr.c ? ? ? ? ? ? ? ? ? ? ?| ? 56 +-
> ?board/freescale/p2020ds/p2020ds.c ? ? ? ? ? ? ? ? ?| ? ?7 +-
> ?board/freescale/p2020ds/tlb.c ? ? ? ? ? ? ? ? ? ? ?| ? ?8 +-
> ?boards.cfg ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ? ?1 +
> ?common/fdt_support.c ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ? 18 +
> ?doc/README.fsl-ddr ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | ? 39 +-
> ?include/configs/MPC8536DS.h ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?include/configs/MPC8540ADS.h ? ? ? ? ? ? ? ? ? ? ? | ? ?3 +-
> ?include/configs/MPC8541CDS.h ? ? ? ? ? ? ? ? ? ? ? | ? ?3 +-
> ?include/configs/MPC8544DS.h ? ? ? ? ? ? ? ? ? ? ? ?| ? ?3 +-
> ?include/configs/MPC8548CDS.h ? ? ? ? ? ? ? ? ? ? ? | ? ?3 +-
> ?include/configs/MPC8555CDS.h ? ? ? ? ? ? ? ? ? ? ? | ? ?3 +-
> ?include/configs/MPC8560ADS.h ? ? ? ? ? ? ? ? ? ? ? | ? ?3 +-
> ?include/configs/MPC8568MDS.h ? ? ? ? ? ? ? ? ? ? ? | ? ?3 +-
> ?include/configs/MPC8569MDS.h ? ? ? ? ? ? ? ? ? ? ? | ? ?5 +-
> ?include/configs/MPC8572DS.h ? ? ? ? ? ? ? ? ? ? ? ?| ? ?3 +-
> ?include/configs/MPC8641HPCN.h ? ? ? ? ? ? ? ? ? ? ?| ? ?2 +
> ?include/configs/P1022DS.h ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?include/configs/P1_P2_RDB.h ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?include/configs/P2020DS.h ? ? ? ? ? ? ? ? ? ? ? ? ?| ? 21 +-
> ?include/configs/P4080DS.h ? ? ? ? ? ? ? ? ? ? ? ? ?| ? 35 +
> ?include/configs/TQM85xx.h ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?include/configs/XPEDITE5200.h ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?include/configs/XPEDITE5370.h ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?include/configs/corenet_ds.h ? ? ? ? ? ? ? ? ? ? ? | ?673 ++++++++++++++++++++
> ?include/configs/sbc8548.h ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?include/configs/socrates.h ? ? ? ? ? ? ? ? ? ? ? ? | ? ?1 +
> ?include/configs/stxssa.h ? ? ? ? ? ? ? ? ? ? ? ? ? | ? ?1 +
> ?include/ddr_spd.h ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? 14 +
> ?include/fdt_support.h ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?1 +
> ?71 files changed, 3933 insertions(+), 245 deletions(-)
> ?create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
> ?create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h
> ?create mode 100644 arch/powerpc/cpu/mpc85xx/liodn.c
> ?create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_ids.c
> ?create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_serdes.c
> ?create mode 100644 arch/powerpc/cpu/mpc85xx/portals.c
> ?create mode 100644 arch/powerpc/include/asm/fsl_fman.h
> ?create mode 100644 arch/powerpc/include/asm/fsl_liodn.h
> ?create mode 100644 arch/powerpc/include/asm/fsl_portals.h
> ?create mode 100644 board/freescale/corenet_ds/Makefile
> ?create mode 100644 board/freescale/corenet_ds/config.mk
> ?create mode 100644 board/freescale/corenet_ds/corenet_ds.c
> ?create mode 100644 board/freescale/corenet_ds/ddr.c
> ?create mode 100644 board/freescale/corenet_ds/law.c
> ?create mode 100644 board/freescale/corenet_ds/pci.c
> ?create mode 100644 board/freescale/corenet_ds/tlb.c
> ?create mode 100644 include/configs/P4080DS.h
> ?create mode 100644 include/configs/corenet_ds.h
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-08-01 15:51 Kumar Gala
  2010-08-02 13:20 ` Timur Tabi
  2010-08-03 22:31 ` Wolfgang Denk
  0 siblings, 2 replies; 172+ messages in thread
From: Kumar Gala @ 2010-08-01 15:51 UTC (permalink / raw)
  To: u-boot

The following changes since commit 7385c28e9b5f7d47e6a8f1ad9800e6e70af714e2:
  Wolfgang Denk (1):
        fs/fat: Big code cleanup.

are available in the git repository at:

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

Kim Phillips (2):
      powerpc/85xx: configure autocompletion support
      powerpc/8xxx: query feature reporting register for num cores on unknown cpus

Kumar Gala (10):
      powerpc/85xx: Add additional p4080 platform related defines/structs
      powerpc/fsl_fman: Add initial fman immap structures
      powerpc/p4080: Add support for CPC(Corenet platform cache) on CoreNet platforms
      fdt: Add function to alloc phandle values
      powerpc/85xx: Add support to initialize LIODN registers and portals
      powerpc/p4080: Add support for initializing SERDES
      powerpc/p4080: Add workaround for errata SERDES8
      powerpc/p4080: Add workaround for erratum CPU22
      powerpc/8xxx: Enabled hwconfig for memory interleaving
      powerpc/p4080: Add support for the P4080DS board

york (8):
      powerpc/85xx: Move INIT_RAM_ADDR physical address to 36-bit space
      powerpc/p2020: Move INIT_RAM_ADDR physical address higher for 36-bit for P2020DS
      powerpc/8xxx: Fix bug in memctrl interleaving & bank interleaving on cs0~cs4
      powerpc/8xxx: Enable quad-rank DIMMs.
      powerpc/8xxx: Enabled address hashing for 85xx
      powerpc/8xxx: Enable DDR3 RDIMM support
      powerpc/8xxx: Improvement to DDR parameters
      powerpc/p2020ds: Integrated with P2020DS DDR change and enabled hwconfig

 MAKEALL                                            |    1 +
 Makefile                                           |    1 +
 arch/powerpc/cpu/mpc85xx/Makefile                  |    8 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    6 +
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |   52 ++-
 arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |    2 +
 arch/powerpc/cpu/mpc85xx/fdt.c                     |   39 ++
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |  495 ++++++++++++++
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h      |   44 ++
 arch/powerpc/cpu/mpc85xx/liodn.c                   |  187 ++++++
 arch/powerpc/cpu/mpc85xx/p4080_ids.c               |  115 ++++
 arch/powerpc/cpu/mpc85xx/p4080_serdes.c            |   98 +++
 arch/powerpc/cpu/mpc85xx/portals.c                 |  238 +++++++
 arch/powerpc/cpu/mpc85xx/release.S                 |    6 +
 arch/powerpc/cpu/mpc85xx/start.S                   |   10 +
 arch/powerpc/cpu/mpc8xxx/cpu.c                     |   10 +-
 .../powerpc/cpu/mpc8xxx/ddr/common_timing_params.h |    3 +
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |  264 +++++---
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h                 |    1 +
 arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c    |    6 +-
 .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   30 +-
 arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   40 +-
 arch/powerpc/cpu/mpc8xxx/ddr/options.c             |  154 ++++-
 arch/powerpc/include/asm/fsl_ddr_dimm_params.h     |    3 +
 arch/powerpc/include/asm/fsl_ddr_sdram.h           |    3 +
 arch/powerpc/include/asm/fsl_fman.h                |  212 ++++++
 arch/powerpc/include/asm/fsl_law.h                 |    3 +-
 arch/powerpc/include/asm/fsl_liodn.h               |  142 ++++
 arch/powerpc/include/asm/fsl_portals.h             |   59 ++
 arch/powerpc/include/asm/fsl_serdes.h              |   11 +-
 arch/powerpc/include/asm/immap_85xx.h              |  219 ++++++-
 arch/powerpc/include/asm/processor.h               |    1 +
 board/freescale/common/Makefile                    |    1 +
 board/freescale/corenet_ds/Makefile                |   55 ++
 board/freescale/corenet_ds/config.mk               |   30 +
 board/freescale/corenet_ds/corenet_ds.c            |  259 ++++++++
 board/freescale/corenet_ds/ddr.c                   |  176 +++++
 board/freescale/corenet_ds/law.c                   |   40 ++
 board/freescale/corenet_ds/pci.c                   |  127 ++++
 board/freescale/corenet_ds/tlb.c                   |  112 ++++
 board/freescale/mpc8641hpcn/mpc8641hpcn.c          |    2 +
 board/freescale/p2020ds/ddr.c                      |   56 +-
 board/freescale/p2020ds/p2020ds.c                  |    7 +-
 board/freescale/p2020ds/tlb.c                      |    8 +-
 boards.cfg                                         |    1 +
 common/fdt_support.c                               |   18 +
 doc/README.fsl-ddr                                 |   39 +-
 include/configs/MPC8536DS.h                        |    1 +
 include/configs/MPC8540ADS.h                       |    3 +-
 include/configs/MPC8541CDS.h                       |    3 +-
 include/configs/MPC8544DS.h                        |    3 +-
 include/configs/MPC8548CDS.h                       |    3 +-
 include/configs/MPC8555CDS.h                       |    3 +-
 include/configs/MPC8560ADS.h                       |    3 +-
 include/configs/MPC8568MDS.h                       |    3 +-
 include/configs/MPC8569MDS.h                       |    5 +-
 include/configs/MPC8572DS.h                        |    3 +-
 include/configs/MPC8641HPCN.h                      |    2 +
 include/configs/P1022DS.h                          |    1 +
 include/configs/P1_P2_RDB.h                        |    1 +
 include/configs/P2020DS.h                          |   21 +-
 include/configs/P4080DS.h                          |   35 +
 include/configs/TQM85xx.h                          |    1 +
 include/configs/XPEDITE5200.h                      |    1 +
 include/configs/XPEDITE5370.h                      |    1 +
 include/configs/corenet_ds.h                       |  673 ++++++++++++++++++++
 include/configs/sbc8548.h                          |    1 +
 include/configs/socrates.h                         |    1 +
 include/configs/stxssa.h                           |    1 +
 include/ddr_spd.h                                  |   14 +
 include/fdt_support.h                              |    1 +
 71 files changed, 3933 insertions(+), 245 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h
 create mode 100644 arch/powerpc/cpu/mpc85xx/liodn.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/portals.c
 create mode 100644 arch/powerpc/include/asm/fsl_fman.h
 create mode 100644 arch/powerpc/include/asm/fsl_liodn.h
 create mode 100644 arch/powerpc/include/asm/fsl_portals.h
 create mode 100644 board/freescale/corenet_ds/Makefile
 create mode 100644 board/freescale/corenet_ds/config.mk
 create mode 100644 board/freescale/corenet_ds/corenet_ds.c
 create mode 100644 board/freescale/corenet_ds/ddr.c
 create mode 100644 board/freescale/corenet_ds/law.c
 create mode 100644 board/freescale/corenet_ds/pci.c
 create mode 100644 board/freescale/corenet_ds/tlb.c
 create mode 100644 include/configs/P4080DS.h
 create mode 100644 include/configs/corenet_ds.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-07-21  5:45 Kumar Gala
  2010-07-21 16:26 ` Kim Phillips
@ 2010-07-24 18:33 ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-07-24 18:33 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1007210044340.19102@localhost.localdomain> you wrote:
> The following changes since commit 1f82ff4777f360e92aa37bbbed647f7b9d9d2044:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-video
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Emil Medve (1):
>       powerpc/mpc85xx: Report FMAN # to match user manual
> 
> Kumar Gala (12):
>       powerpc/85xx: Move PCI/PCIe address defines into common immap_85xx.h
>       powerpc/86xx: Move PCI/PCIe address defines into common immap_86xx.h
>       powerpc/86xx: Rename PCI1/2 to PCIE1/2 on MPC8641HPCN & SBC8641
>       fdt: Add fdt_translate_address to convert reg node to cpu phys addr
>       fdt: Add fdt_node_offset_by_compat_reg helper
>       powerpc/85xx & 86xx: Rework ft_fsl_pci_setup to not require aliases
>       powerpc/85xx: Use fdt_node_offset_by_compat_reg for clock-frequency updates
>       powerpc/p4080: Add setting of clock-frequency for clockgen node
>       powerpc/p5020: Add various p5020 related defines (and p5010)
>       powerpc/p3041: Add various p3041 related defines
>       powerpc/85xx: Rework MPC8536 SERDES is_serdes_configured support
>       powerpc/85xx: Rework P1022 SERDES is_serdes_configured support
> 
>  arch/powerpc/cpu/mpc85xx/Makefile         |    2 +
>  arch/powerpc/cpu/mpc85xx/cpu.c            |    2 +-
>  arch/powerpc/cpu/mpc85xx/cpu_init.c       |   12 +-
>  arch/powerpc/cpu/mpc85xx/fdt.c            |   24 ++-
>  arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c |   66 ++++----
>  arch/powerpc/cpu/mpc85xx/p1022_serdes.c   |   38 +++-
>  arch/powerpc/cpu/mpc8xxx/cpu.c            |    6 +
>  arch/powerpc/include/asm/config.h         |    4 +
>  arch/powerpc/include/asm/fsl_pci.h        |   84 ++++++++-
>  arch/powerpc/include/asm/fsl_serdes.h     |    1 +
>  arch/powerpc/include/asm/immap_85xx.h     |   20 ++
>  arch/powerpc/include/asm/immap_86xx.h     |   17 ++
>  arch/powerpc/include/asm/processor.h      |    6 +
>  board/atum8548/atum8548.c                 |   10 +-
>  board/freescale/mpc8536ds/mpc8536ds.c     |   22 +--
>  board/freescale/mpc8544ds/mpc8544ds.c     |   15 +--
>  board/freescale/mpc8548cds/mpc8548cds.c   |    9 +-
>  board/freescale/mpc8568mds/mpc8568mds.c   |    9 +-
>  board/freescale/mpc8569mds/mpc8569mds.c   |    7 +-
>  board/freescale/mpc8572ds/mpc8572ds.c     |   11 +-
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c |   12 +-
>  board/freescale/mpc8641hpcn/law.c         |   18 +-
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c |   61 +++----
>  board/freescale/p1022ds/p1022ds.c         |   18 +--
>  board/freescale/p1_p2_rdb/pci.c           |   15 +--
>  board/freescale/p2020ds/p2020ds.c         |   13 +-
>  board/sbc8548/sbc8548.c                   |    8 +-
>  board/sbc8641d/law.c                      |   16 +-
>  board/sbc8641d/sbc8641d.c                 |   55 +++---
>  board/tqc/tqm85xx/tqm85xx.c               |    7 +-
>  board/xes/common/fsl_8xxx_pci.c           |   14 +--
>  common/fdt_support.c                      |  291 +++++++++++++++++++++++++++++
>  drivers/misc/fsl_law.c                    |    3 +-
>  drivers/pci/fsl_pci_init.c                |   15 +-
>  include/configs/ATUM8548.h                |    3 -
>  include/configs/MPC8536DS.h               |    6 +-
>  include/configs/MPC8544DS.h               |    5 -
>  include/configs/MPC8548CDS.h              |    4 -
>  include/configs/MPC8568MDS.h              |    3 -
>  include/configs/MPC8569MDS.h              |    3 -
>  include/configs/MPC8572DS.h               |    4 -
>  include/configs/MPC8610HPCD.h             |    4 -
>  include/configs/MPC8641HPCN.h             |   83 ++++-----
>  include/configs/P1022DS.h                 |    5 +-
>  include/configs/P1_P2_RDB.h               |    3 -
>  include/configs/P2020DS.h                 |    4 -
>  include/configs/TQM85xx.h                 |    4 -
>  include/configs/XPEDITE5170.h             |    2 -
>  include/configs/XPEDITE5200.h             |    1 -
>  include/configs/XPEDITE5370.h             |    2 -
>  include/configs/sbc8548.h                 |    4 -
>  include/configs/sbc8641d.h                |   53 +++---
>  include/fdt_support.h                     |    3 +
>  53 files changed, 689 insertions(+), 418 deletions(-)

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
Be wiser than other people if you can, but do not tell them so.
                                       -- Philip Earl of Chesterfield

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-07-21 16:26 ` Kim Phillips
@ 2010-07-21 20:14   ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-07-21 20:14 UTC (permalink / raw)
  To: u-boot


On Jul 21, 2010, at 11:26 AM, Kim Phillips wrote:

> On Wed, 21 Jul 2010 00:45:30 -0500
> Kumar Gala <galak@kernel.crashing.org> wrote:
> 
>> The following changes since commit 1f82ff4777f360e92aa37bbbed647f7b9d9d2044:
>>  Wolfgang Denk (1):
>>        Merge branch 'master' of git://git.denx.de/u-boot-video
>> 
>> are available in the git repository at:
>> 
>>  git://git.denx.de/u-boot-mpc85xx master
>> 
>> Emil Medve (1):
>>      powerpc/mpc85xx: Report FMAN # to match user manual
>> 
>> Kumar Gala (12):
>>      powerpc/85xx: Move PCI/PCIe address defines into common immap_85xx.h
>>      powerpc/86xx: Move PCI/PCIe address defines into common immap_86xx.h
>>      powerpc/86xx: Rename PCI1/2 to PCIE1/2 on MPC8641HPCN & SBC8641
>>      fdt: Add fdt_translate_address to convert reg node to cpu phys addr
>>      fdt: Add fdt_node_offset_by_compat_reg helper
>>      powerpc/85xx & 86xx: Rework ft_fsl_pci_setup to not require aliases
>>      powerpc/85xx: Use fdt_node_offset_by_compat_reg for clock-frequency updates
>>      powerpc/p4080: Add setting of clock-frequency for clockgen node
>>      powerpc/p5020: Add various p5020 related defines (and p5010)
>>      powerpc/p3041: Add various p3041 related defines
>>      powerpc/85xx: Rework MPC8536 SERDES is_serdes_configured support
>>      powerpc/85xx: Rework P1022 SERDES is_serdes_configured support
> 
> Kumar, can you apply and push these too, please?:
> 
> http://lists.denx.de/pipermail/u-boot/2010-July/074001.html
> 
> http://lists.denx.de/pipermail/u-boot/2010-July/074002.html

Let them sit for a few days to allow anyone that wants to review to provide feedback.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-07-21  5:45 Kumar Gala
@ 2010-07-21 16:26 ` Kim Phillips
  2010-07-21 20:14   ` Kumar Gala
  2010-07-24 18:33 ` Wolfgang Denk
  1 sibling, 1 reply; 172+ messages in thread
From: Kim Phillips @ 2010-07-21 16:26 UTC (permalink / raw)
  To: u-boot

On Wed, 21 Jul 2010 00:45:30 -0500
Kumar Gala <galak@kernel.crashing.org> wrote:

> The following changes since commit 1f82ff4777f360e92aa37bbbed647f7b9d9d2044:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-video
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Emil Medve (1):
>       powerpc/mpc85xx: Report FMAN # to match user manual
> 
> Kumar Gala (12):
>       powerpc/85xx: Move PCI/PCIe address defines into common immap_85xx.h
>       powerpc/86xx: Move PCI/PCIe address defines into common immap_86xx.h
>       powerpc/86xx: Rename PCI1/2 to PCIE1/2 on MPC8641HPCN & SBC8641
>       fdt: Add fdt_translate_address to convert reg node to cpu phys addr
>       fdt: Add fdt_node_offset_by_compat_reg helper
>       powerpc/85xx & 86xx: Rework ft_fsl_pci_setup to not require aliases
>       powerpc/85xx: Use fdt_node_offset_by_compat_reg for clock-frequency updates
>       powerpc/p4080: Add setting of clock-frequency for clockgen node
>       powerpc/p5020: Add various p5020 related defines (and p5010)
>       powerpc/p3041: Add various p3041 related defines
>       powerpc/85xx: Rework MPC8536 SERDES is_serdes_configured support
>       powerpc/85xx: Rework P1022 SERDES is_serdes_configured support

Kumar, can you apply and push these too, please?:

http://lists.denx.de/pipermail/u-boot/2010-July/074001.html

http://lists.denx.de/pipermail/u-boot/2010-July/074002.html

Thanks,

Kim

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-07-21  5:45 Kumar Gala
  2010-07-21 16:26 ` Kim Phillips
  2010-07-24 18:33 ` Wolfgang Denk
  0 siblings, 2 replies; 172+ messages in thread
From: Kumar Gala @ 2010-07-21  5:45 UTC (permalink / raw)
  To: u-boot

The following changes since commit 1f82ff4777f360e92aa37bbbed647f7b9d9d2044:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-video

are available in the git repository at:

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

Emil Medve (1):
      powerpc/mpc85xx: Report FMAN # to match user manual

Kumar Gala (12):
      powerpc/85xx: Move PCI/PCIe address defines into common immap_85xx.h
      powerpc/86xx: Move PCI/PCIe address defines into common immap_86xx.h
      powerpc/86xx: Rename PCI1/2 to PCIE1/2 on MPC8641HPCN & SBC8641
      fdt: Add fdt_translate_address to convert reg node to cpu phys addr
      fdt: Add fdt_node_offset_by_compat_reg helper
      powerpc/85xx & 86xx: Rework ft_fsl_pci_setup to not require aliases
      powerpc/85xx: Use fdt_node_offset_by_compat_reg for clock-frequency updates
      powerpc/p4080: Add setting of clock-frequency for clockgen node
      powerpc/p5020: Add various p5020 related defines (and p5010)
      powerpc/p3041: Add various p3041 related defines
      powerpc/85xx: Rework MPC8536 SERDES is_serdes_configured support
      powerpc/85xx: Rework P1022 SERDES is_serdes_configured support

 arch/powerpc/cpu/mpc85xx/Makefile         |    2 +
 arch/powerpc/cpu/mpc85xx/cpu.c            |    2 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c       |   12 +-
 arch/powerpc/cpu/mpc85xx/fdt.c            |   24 ++-
 arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c |   66 ++++----
 arch/powerpc/cpu/mpc85xx/p1022_serdes.c   |   38 +++-
 arch/powerpc/cpu/mpc8xxx/cpu.c            |    6 +
 arch/powerpc/include/asm/config.h         |    4 +
 arch/powerpc/include/asm/fsl_pci.h        |   84 ++++++++-
 arch/powerpc/include/asm/fsl_serdes.h     |    1 +
 arch/powerpc/include/asm/immap_85xx.h     |   20 ++
 arch/powerpc/include/asm/immap_86xx.h     |   17 ++
 arch/powerpc/include/asm/processor.h      |    6 +
 board/atum8548/atum8548.c                 |   10 +-
 board/freescale/mpc8536ds/mpc8536ds.c     |   22 +--
 board/freescale/mpc8544ds/mpc8544ds.c     |   15 +--
 board/freescale/mpc8548cds/mpc8548cds.c   |    9 +-
 board/freescale/mpc8568mds/mpc8568mds.c   |    9 +-
 board/freescale/mpc8569mds/mpc8569mds.c   |    7 +-
 board/freescale/mpc8572ds/mpc8572ds.c     |   11 +-
 board/freescale/mpc8610hpcd/mpc8610hpcd.c |   12 +-
 board/freescale/mpc8641hpcn/law.c         |   18 +-
 board/freescale/mpc8641hpcn/mpc8641hpcn.c |   61 +++----
 board/freescale/p1022ds/p1022ds.c         |   18 +--
 board/freescale/p1_p2_rdb/pci.c           |   15 +--
 board/freescale/p2020ds/p2020ds.c         |   13 +-
 board/sbc8548/sbc8548.c                   |    8 +-
 board/sbc8641d/law.c                      |   16 +-
 board/sbc8641d/sbc8641d.c                 |   55 +++---
 board/tqc/tqm85xx/tqm85xx.c               |    7 +-
 board/xes/common/fsl_8xxx_pci.c           |   14 +--
 common/fdt_support.c                      |  291 +++++++++++++++++++++++++++++
 drivers/misc/fsl_law.c                    |    3 +-
 drivers/pci/fsl_pci_init.c                |   15 +-
 include/configs/ATUM8548.h                |    3 -
 include/configs/MPC8536DS.h               |    6 +-
 include/configs/MPC8544DS.h               |    5 -
 include/configs/MPC8548CDS.h              |    4 -
 include/configs/MPC8568MDS.h              |    3 -
 include/configs/MPC8569MDS.h              |    3 -
 include/configs/MPC8572DS.h               |    4 -
 include/configs/MPC8610HPCD.h             |    4 -
 include/configs/MPC8641HPCN.h             |   83 ++++-----
 include/configs/P1022DS.h                 |    5 +-
 include/configs/P1_P2_RDB.h               |    3 -
 include/configs/P2020DS.h                 |    4 -
 include/configs/TQM85xx.h                 |    4 -
 include/configs/XPEDITE5170.h             |    2 -
 include/configs/XPEDITE5200.h             |    1 -
 include/configs/XPEDITE5370.h             |    2 -
 include/configs/sbc8548.h                 |    4 -
 include/configs/sbc8641d.h                |   53 +++---
 include/fdt_support.h                     |    3 +
 53 files changed, 689 insertions(+), 418 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-06-01 18:38     ` Kim Phillips
@ 2010-06-01 19:22       ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2010-06-01 19:22 UTC (permalink / raw)
  To: u-boot


On Jun 1, 2010, at 1:38 PM, Kim Phillips wrote:

> On Mon, 31 May 2010 12:33:29 -0500
> Kumar Gala <galak@kernel.crashing.org> wrote:
> 
>> On May 30, 2010, at 2:45 PM, Wolfgang Denk wrote:
>> 
>>> In message <Pine.LNX.4.64.1005301116050.4607@localhost.localdomain> you wrote:
>>>> The following changes since commit bd7bb6f8a3278caff0ac6eeaf08b188b9bb05dfc:
>>>> Wolfgang Denk (1):
>>>>       Merge branch 'next' of git://git.denx.de/u-boot-nios
>>>> 
>>>> are available in the git repository at:
>>>> 
>>>> git://git.denx.de/u-boot-mpc85xx.git master
>>>> 
>>>> Kim Phillips (1):
>>>>     fdt_support: add entry for sec3.1 and fix sec3.3
>>>> 
>>>> Timur Tabi (2):
>>>>     fsl/85xx: add clkdvdr and pmuxcr2 to global utilities structure definition
>>>>     fsl: rename 'dma' to 'brdcfg1' in the ngPIXIS structure
>>>> 
>>>> arch/powerpc/include/asm/immap_85xx.h |    9 ++++++---
>>>> board/freescale/common/ngpixis.h      |    2 +-
>>>> common/fdt_support.c                  |    3 ++-
>>>> 3 files changed, 9 insertions(+), 5 deletions(-)
>>> 
>>> Applied, thanks.
>>> 
>>> Hm... are these indeed bug fixes?
>> 
>> The header ones really arent and could have waited but where minor and
>> in the tree already.  The fdt one was posted some time ago and just
>> missed.
> 
> so was this:
> 
> http://lists.denx.de/pipermail/u-boot/2010-April/070742.html
> 
> Jerry?
> 
> Kim

I was going to pick it up for the next release.  It didn't seem critical for v2010.06

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-05-31 17:33   ` Kumar Gala
@ 2010-06-01 18:38     ` Kim Phillips
  2010-06-01 19:22       ` Kumar Gala
  0 siblings, 1 reply; 172+ messages in thread
From: Kim Phillips @ 2010-06-01 18:38 UTC (permalink / raw)
  To: u-boot

On Mon, 31 May 2010 12:33:29 -0500
Kumar Gala <galak@kernel.crashing.org> wrote:

> On May 30, 2010, at 2:45 PM, Wolfgang Denk wrote:
> 
> > In message <Pine.LNX.4.64.1005301116050.4607@localhost.localdomain> you wrote:
> >> The following changes since commit bd7bb6f8a3278caff0ac6eeaf08b188b9bb05dfc:
> >>  Wolfgang Denk (1):
> >>        Merge branch 'next' of git://git.denx.de/u-boot-nios
> >> 
> >> are available in the git repository at:
> >> 
> >>  git://git.denx.de/u-boot-mpc85xx.git master
> >> 
> >> Kim Phillips (1):
> >>      fdt_support: add entry for sec3.1 and fix sec3.3
> >> 
> >> Timur Tabi (2):
> >>      fsl/85xx: add clkdvdr and pmuxcr2 to global utilities structure definition
> >>      fsl: rename 'dma' to 'brdcfg1' in the ngPIXIS structure
> >> 
> >> arch/powerpc/include/asm/immap_85xx.h |    9 ++++++---
> >> board/freescale/common/ngpixis.h      |    2 +-
> >> common/fdt_support.c                  |    3 ++-
> >> 3 files changed, 9 insertions(+), 5 deletions(-)
> > 
> > Applied, thanks.
> > 
> > Hm... are these indeed bug fixes?
> 
> The header ones really arent and could have waited but where minor and
> in the tree already.  The fdt one was posted some time ago and just
> missed.

so was this:

http://lists.denx.de/pipermail/u-boot/2010-April/070742.html

Jerry?

Kim

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-05-30 19:45 ` Wolfgang Denk
@ 2010-05-31 17:33   ` Kumar Gala
  2010-06-01 18:38     ` Kim Phillips
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-05-31 17:33 UTC (permalink / raw)
  To: u-boot


On May 30, 2010, at 2:45 PM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <Pine.LNX.4.64.1005301116050.4607@localhost.localdomain> you wrote:
>> The following changes since commit bd7bb6f8a3278caff0ac6eeaf08b188b9bb05dfc:
>>  Wolfgang Denk (1):
>>        Merge branch 'next' of git://git.denx.de/u-boot-nios
>> 
>> are available in the git repository at:
>> 
>>  git://git.denx.de/u-boot-mpc85xx.git master
>> 
>> Kim Phillips (1):
>>      fdt_support: add entry for sec3.1 and fix sec3.3
>> 
>> Timur Tabi (2):
>>      fsl/85xx: add clkdvdr and pmuxcr2 to global utilities structure definition
>>      fsl: rename 'dma' to 'brdcfg1' in the ngPIXIS structure
>> 
>> arch/powerpc/include/asm/immap_85xx.h |    9 ++++++---
>> board/freescale/common/ngpixis.h      |    2 +-
>> common/fdt_support.c                  |    3 ++-
>> 3 files changed, 9 insertions(+), 5 deletions(-)
> 
> Applied, thanks.
> 
> Hm... are these indeed bug fixes?

The header ones really arent and could have waited but where minor and in the tree already.  The fdt one was posted some time ago and just missed.

thanks

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-05-30 16:16 Kumar Gala
@ 2010-05-30 19:45 ` Wolfgang Denk
  2010-05-31 17:33   ` Kumar Gala
  0 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2010-05-30 19:45 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1005301116050.4607@localhost.localdomain> you wrote:
> The following changes since commit bd7bb6f8a3278caff0ac6eeaf08b188b9bb05dfc:
>   Wolfgang Denk (1):
>         Merge branch 'next' of git://git.denx.de/u-boot-nios
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kim Phillips (1):
>       fdt_support: add entry for sec3.1 and fix sec3.3
> 
> Timur Tabi (2):
>       fsl/85xx: add clkdvdr and pmuxcr2 to global utilities structure definition
>       fsl: rename 'dma' to 'brdcfg1' in the ngPIXIS structure
> 
>  arch/powerpc/include/asm/immap_85xx.h |    9 ++++++---
>  board/freescale/common/ngpixis.h      |    2 +-
>  common/fdt_support.c                  |    3 ++-
>  3 files changed, 9 insertions(+), 5 deletions(-)

Applied, thanks.

Hm... are these indeed bug fixes?


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
When a man sits with a pretty girl for  an  hour,  it  seems  like  a
minute.  But let him sit on a hot stove for a minute -- and it's lon-
ger than any hour. That's relativity.              -- Albert Einstein

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-05-30 16:16 Kumar Gala
  2010-05-30 19:45 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-05-30 16:16 UTC (permalink / raw)
  To: u-boot

The following changes since commit bd7bb6f8a3278caff0ac6eeaf08b188b9bb05dfc:
  Wolfgang Denk (1):
        Merge branch 'next' of git://git.denx.de/u-boot-nios

are available in the git repository at:

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

Kim Phillips (1):
      fdt_support: add entry for sec3.1 and fix sec3.3

Timur Tabi (2):
      fsl/85xx: add clkdvdr and pmuxcr2 to global utilities structure definition
      fsl: rename 'dma' to 'brdcfg1' in the ngPIXIS structure

 arch/powerpc/include/asm/immap_85xx.h |    9 ++++++---
 board/freescale/common/ngpixis.h      |    2 +-
 common/fdt_support.c                  |    3 ++-
 3 files changed, 9 insertions(+), 5 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2010-05-12  9:58 Kumar Gala
@ 2010-05-17 21:14 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2010-05-17 21:14 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.1005120458230.12309@localhost.localdomain> you wrote:
> The following changes since commit ab92d0fd9abd0d4726878a80c6baf3a0f94770b8:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Jerry Huang (1):
>       fsl-diu: Using I/O accessor to CCSR space
> 
> Kumar Gala (3):
>       85xx: Add is_serdes_configured() support to MPC8536 SERDES
>       85xx/mpc8536ds: Use is_serdes_configured() to determine of PCIe enabled
>       85xx/fsl-sata: Use is_serdes_configured() to determine if SATA is enabled
> 
> York Sun (1):
>       Enabled support for Rev 1.3 SPD for DDR2 DIMMs
> 
>  arch/powerpc/cpu/mpc85xx/cpu_init.c             |   14 ++++-
>  arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c       |   79 +++++++++++++++++++++--
>  arch/powerpc/cpu/mpc8xxx/ddr/ddr2_dimm_params.c |    4 +-
>  arch/powerpc/cpu/mpc8xxx/pci_cfg.c              |   12 ----
>  arch/powerpc/include/asm/fsl_serdes.h           |   53 ++++++++++++----
>  board/freescale/common/fsl_diu_fb.c             |   55 ++++++++--------
>  board/freescale/mpc8536ds/law.c                 |    8 --
>  board/freescale/mpc8536ds/mpc8536ds.c           |   44 ++++++++----
>  common/ddr_spd.c                                |    6 ++-
>  drivers/block/fsl_sata.c                        |   14 ++++-
>  10 files changed, 204 insertions(+), 85 deletions(-)

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
I can't understand it. I can't even understand  the  people  who  can
understand it.                    - Queen Juliana of the Netherlands.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2010-05-12  9:58 Kumar Gala
  2010-05-17 21:14 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2010-05-12  9:58 UTC (permalink / raw)
  To: u-boot

The following changes since commit ab92d0fd9abd0d4726878a80c6baf3a0f94770b8:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx

are available in the git repository at:

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

Jerry Huang (1):
      fsl-diu: Using I/O accessor to CCSR space

Kumar Gala (3):
      85xx: Add is_serdes_configured() support to MPC8536 SERDES
      85xx/mpc8536ds: Use is_serdes_configured() to determine of PCIe enabled
      85xx/fsl-sata: Use is_serdes_configured() to determine if SATA is enabled

York Sun (1):
      Enabled support for Rev 1.3 SPD for DDR2 DIMMs

 arch/powerpc/cpu/mpc85xx/cpu_init.c             |   14 ++++-
 arch/powerpc/cpu/mpc85xx/mpc8536_serdes.c       |   79 +++++++++++++++++++++--
 arch/powerpc/cpu/mpc8xxx/ddr/ddr2_dimm_params.c |    4 +-
 arch/powerpc/cpu/mpc8xxx/pci_cfg.c              |   12 ----
 arch/powerpc/include/asm/fsl_serdes.h           |   53 ++++++++++++----
 board/freescale/common/fsl_diu_fb.c             |   55 ++++++++--------
 board/freescale/mpc8536ds/law.c                 |    8 --
 board/freescale/mpc8536ds/mpc8536ds.c           |   44 ++++++++----
 common/ddr_spd.c                                |    6 ++-
 drivers/block/fsl_sata.c                        |   14 ++++-
 10 files changed, 204 insertions(+), 85 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-09-30 13:45 Kumar Gala
@ 2009-09-30 21:40 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-09-30 21:40 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0909300832120.10098@localhost.localdomain> you wrote:
> The following changes since commit 984f10baac8ef6032df52f135943d6b0bc96f724:
>   Wolfgang Denk (1):
>         mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[]
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> Kumar Gala (2):
>       ppc/85xx: Clean up immap_85xx.h
>       ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL
> 
> Mingkai Hu (4):
>       mpc8536: fix board config file line length
>       NAND boot: MPC8536DS support
>       On-chip ROM boot: MPC8536DS support
>       Add README.mpc8536ds
> 
> Paul Gortmaker (1):
>       sbc8548: reclaim wasted sector in boot flash
> 
>  MAKEALL                                        |    3 +
>  Makefile                                       |    3 +
>  board/freescale/mpc8536ds/config.mk            |   19 +
>  board/freescale/mpc8536ds/tlb.c                |   11 +
>  board/sbc8548/config.mk                        |    2 +-
>  doc/README.mpc8536ds                           |  127 +
>  doc/README.sbc8548                             |   24 +
>  drivers/misc/fsl_law.c                         |    4 +
>  include/asm-ppc/immap_85xx.h                   | 3175 ++++++++++++------------
>  include/configs/MPC8536DS.h                    |  255 ++-
>  include/configs/sbc8548.h                      |   20 +-
>  nand_spl/board/freescale/mpc8536ds/Makefile    |  127 +
>  nand_spl/board/freescale/mpc8536ds/nand_boot.c |   83 +
>  13 files changed, 2175 insertions(+), 1678 deletions(-)
>  create mode 100644 doc/README.mpc8536ds
>  create mode 100644 nand_spl/board/freescale/mpc8536ds/Makefile
>  create mode 100644 nand_spl/board/freescale/mpc8536ds/nand_boot.c

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
The joys of love made her human and the  agonies  of  love  destroyed
her.
	-- Spock, "Requiem for Methuselah", stardate 5842.8

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-09-30 13:45 Kumar Gala
  2009-09-30 21:40 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2009-09-30 13:45 UTC (permalink / raw)
  To: u-boot

The following changes since commit 984f10baac8ef6032df52f135943d6b0bc96f724:
  Wolfgang Denk (1):
        mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[]

are available in the git repository at:

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

Kumar Gala (2):
      ppc/85xx: Clean up immap_85xx.h
      ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL

Mingkai Hu (4):
      mpc8536: fix board config file line length
      NAND boot: MPC8536DS support
      On-chip ROM boot: MPC8536DS support
      Add README.mpc8536ds

Paul Gortmaker (1):
      sbc8548: reclaim wasted sector in boot flash

 MAKEALL                                        |    3 +
 Makefile                                       |    3 +
 board/freescale/mpc8536ds/config.mk            |   19 +
 board/freescale/mpc8536ds/tlb.c                |   11 +
 board/sbc8548/config.mk                        |    2 +-
 doc/README.mpc8536ds                           |  127 +
 doc/README.sbc8548                             |   24 +
 drivers/misc/fsl_law.c                         |    4 +
 include/asm-ppc/immap_85xx.h                   | 3175 ++++++++++++------------
 include/configs/MPC8536DS.h                    |  255 ++-
 include/configs/sbc8548.h                      |   20 +-
 nand_spl/board/freescale/mpc8536ds/Makefile    |  127 +
 nand_spl/board/freescale/mpc8536ds/nand_boot.c |   83 +
 13 files changed, 2175 insertions(+), 1678 deletions(-)
 create mode 100644 doc/README.mpc8536ds
 create mode 100644 nand_spl/board/freescale/mpc8536ds/Makefile
 create mode 100644 nand_spl/board/freescale/mpc8536ds/nand_boot.c

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-07-06 15:13 Kumar Gala
@ 2009-07-07 18:54 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-07-07 18:54 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0907061013140.29717@localhost.localdomain> you wrote:
> The following changes since commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0:
>   Mike Frysinger (1):
>         Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Kumar Gala (3):
>       86xx: Add CPU_TYPE_ENTRY support
>       8xxx: Fix PCI bus address setup for 36-bit configs
>       fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
> 
> Peter Tyser (13):
>       8xxx: Break out DMA code to a common file
>       fsl_dma: Add bitfield definitions for common registers
>       fsl_dma: Use proper I/O access functions
>       fsl_dma: Add support for arbitrarily large transfers
>       fsl_dma: Fix Channel Start bug in dma_check()
>       8xxx: Rename dma_xfer() to dmacpy()
>       fsl_dma: Move dma function prototypes to common header file
>       8xxx: Move dma_init() call to common code
>       fsl_dma: Break out common memory initialization function
>       fsl_dma: Make DMA transactions snoopable
>       86xx: XPedite5170 board support
>       83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
>       83xx: Add support for fsl_dma driver
> 
> Poonam Aggrwal (2):
>       85xx: Adds GPIO registers to MPC85xx Memory Map.
>       8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
> 
> Roy Zang (1):
>       85xx: Add pci e1000 Ethernet support for P2020 board
> 
> Timur Tabi (1):
>       fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
> 
>  MAINTAINERS                               |    1 +
>  MAKEALL                                   |    1 +
>  Makefile                                  |    3 +
>  board/freescale/common/sys_eeprom.c       |    6 +-
>  board/freescale/mpc8360emds/mpc8360emds.c |    4 +-
>  board/freescale/mpc8360erdk/mpc8360erdk.c |    4 +-
>  board/freescale/mpc837xemds/mpc837xemds.c |    4 +-
>  board/freescale/mpc837xerdb/mpc837xerdb.c |    4 +-
>  board/freescale/p2020ds/p2020ds.c         |    3 +-
>  board/keymile/kmeter1/kmeter1.c           |    4 +-
>  board/mpc8540eval/mpc8540eval.c           |   35 +--
>  board/sbc8560/sbc8560.c                   |   33 +--
>  board/xes/xpedite5170/Makefile            |   52 ++
>  board/xes/xpedite5170/config.mk           |   32 ++
>  board/xes/xpedite5170/ddr.c               |  168 +++++++
>  board/xes/xpedite5170/law.c               |   52 ++
>  board/xes/xpedite5170/u-boot.lds          |  132 +++++
>  board/xes/xpedite5170/xpedite5170.c       |  111 +++++
>  common/serial.c                           |    3 +-
>  cpu/mpc83xx/cpu.c                         |   85 ----
>  cpu/mpc83xx/spd_sdram.c                   |   43 +--
>  cpu/mpc85xx/cpu.c                         |   47 --
>  cpu/mpc85xx/cpu_init.c                    |    4 +-
>  cpu/mpc85xx/ddr-gen1.c                    |   33 +--
>  cpu/mpc86xx/cpu.c                         |   88 +---
>  cpu/mpc86xx/cpu_init.c                    |    3 +
>  cpu/mpc8xxx/ddr/ddr3_dimm_params.c        |    2 +-
>  drivers/dma/Makefile                      |    1 +
>  drivers/dma/fsl_dma.c                     |  178 +++++++
>  include/asm-ppc/config.h                  |    8 +
>  include/asm-ppc/fsl_dma.h                 |   90 ++++
>  include/asm-ppc/immap_83xx.h              |   49 +--
>  include/asm-ppc/immap_85xx.h              |   11 +
>  include/asm-ppc/processor.h               |    2 +-
>  include/configs/MPC8572DS.h               |    6 +-
>  include/configs/MPC8641HPCN.h             |    2 +-
>  include/configs/P2020DS.h                 |    7 +-
>  include/configs/PM854.h                   |    1 +
>  include/configs/PM856.h                   |    1 +
>  include/configs/XPEDITE5170.h             |  756 +++++++++++++++++++++++++++++
>  include/mpc83xx.h                         |   16 -
>  include/serial.h                          |    3 +-
>  42 files changed, 1668 insertions(+), 420 deletions(-)
>  create mode 100644 board/xes/xpedite5170/Makefile
>  create mode 100644 board/xes/xpedite5170/config.mk
>  create mode 100644 board/xes/xpedite5170/ddr.c
>  create mode 100644 board/xes/xpedite5170/law.c
>  create mode 100644 board/xes/xpedite5170/u-boot.lds
>  create mode 100644 board/xes/xpedite5170/xpedite5170.c
>  create mode 100644 drivers/dma/fsl_dma.c
>  create mode 100644 include/configs/XPEDITE5170.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
"If God had wanted us to use the metric system, Jesus would have  had
10 apostles."

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-07-06 15:13 Kumar Gala
  2009-07-07 18:54 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2009-07-06 15:13 UTC (permalink / raw)
  To: u-boot

The following changes since commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0:
  Mike Frysinger (1):
        Blackfin: move ALL += u-boot.ldr to blackfin_config.mk

are available in the git repository at:

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

Kumar Gala (3):
      86xx: Add CPU_TYPE_ENTRY support
      8xxx: Fix PCI bus address setup for 36-bit configs
      fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code

Peter Tyser (13):
      8xxx: Break out DMA code to a common file
      fsl_dma: Add bitfield definitions for common registers
      fsl_dma: Use proper I/O access functions
      fsl_dma: Add support for arbitrarily large transfers
      fsl_dma: Fix Channel Start bug in dma_check()
      8xxx: Rename dma_xfer() to dmacpy()
      fsl_dma: Move dma function prototypes to common header file
      8xxx: Move dma_init() call to common code
      fsl_dma: Break out common memory initialization function
      fsl_dma: Make DMA transactions snoopable
      86xx: XPedite5170 board support
      83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
      83xx: Add support for fsl_dma driver

Poonam Aggrwal (2):
      85xx: Adds GPIO registers to MPC85xx Memory Map.
      8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors

Roy Zang (1):
      85xx: Add pci e1000 Ethernet support for P2020 board

Timur Tabi (1):
      fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more

 MAINTAINERS                               |    1 +
 MAKEALL                                   |    1 +
 Makefile                                  |    3 +
 board/freescale/common/sys_eeprom.c       |    6 +-
 board/freescale/mpc8360emds/mpc8360emds.c |    4 +-
 board/freescale/mpc8360erdk/mpc8360erdk.c |    4 +-
 board/freescale/mpc837xemds/mpc837xemds.c |    4 +-
 board/freescale/mpc837xerdb/mpc837xerdb.c |    4 +-
 board/freescale/p2020ds/p2020ds.c         |    3 +-
 board/keymile/kmeter1/kmeter1.c           |    4 +-
 board/mpc8540eval/mpc8540eval.c           |   35 +--
 board/sbc8560/sbc8560.c                   |   33 +--
 board/xes/xpedite5170/Makefile            |   52 ++
 board/xes/xpedite5170/config.mk           |   32 ++
 board/xes/xpedite5170/ddr.c               |  168 +++++++
 board/xes/xpedite5170/law.c               |   52 ++
 board/xes/xpedite5170/u-boot.lds          |  132 +++++
 board/xes/xpedite5170/xpedite5170.c       |  111 +++++
 common/serial.c                           |    3 +-
 cpu/mpc83xx/cpu.c                         |   85 ----
 cpu/mpc83xx/spd_sdram.c                   |   43 +--
 cpu/mpc85xx/cpu.c                         |   47 --
 cpu/mpc85xx/cpu_init.c                    |    4 +-
 cpu/mpc85xx/ddr-gen1.c                    |   33 +--
 cpu/mpc86xx/cpu.c                         |   88 +---
 cpu/mpc86xx/cpu_init.c                    |    3 +
 cpu/mpc8xxx/ddr/ddr3_dimm_params.c        |    2 +-
 drivers/dma/Makefile                      |    1 +
 drivers/dma/fsl_dma.c                     |  178 +++++++
 include/asm-ppc/config.h                  |    8 +
 include/asm-ppc/fsl_dma.h                 |   90 ++++
 include/asm-ppc/immap_83xx.h              |   49 +--
 include/asm-ppc/immap_85xx.h              |   11 +
 include/asm-ppc/processor.h               |    2 +-
 include/configs/MPC8572DS.h               |    6 +-
 include/configs/MPC8641HPCN.h             |    2 +-
 include/configs/P2020DS.h                 |    7 +-
 include/configs/PM854.h                   |    1 +
 include/configs/PM856.h                   |    1 +
 include/configs/XPEDITE5170.h             |  756 +++++++++++++++++++++++++++++
 include/mpc83xx.h                         |   16 -
 include/serial.h                          |    3 +-
 42 files changed, 1668 insertions(+), 420 deletions(-)
 create mode 100644 board/xes/xpedite5170/Makefile
 create mode 100644 board/xes/xpedite5170/config.mk
 create mode 100644 board/xes/xpedite5170/ddr.c
 create mode 100644 board/xes/xpedite5170/law.c
 create mode 100644 board/xes/xpedite5170/u-boot.lds
 create mode 100644 board/xes/xpedite5170/xpedite5170.c
 create mode 100644 drivers/dma/fsl_dma.c
 create mode 100644 include/configs/XPEDITE5170.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-06-04  4:54 Andy Fleming
  2009-06-04  8:53 ` Wolfgang Denk
@ 2009-06-09 20:59 ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-06-09 20:59 UTC (permalink / raw)
  To: u-boot

Dear Andy,

In message <1244091241-22766-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Dave Liu (3):
>       85xx: Fix the clock adjust of mpc8569mds board
>       85xx: Fix the wrong BCSR address of 8569MDS
>       85xx: Fix the wrong SYS_CLK_IN for 8569MDS
> 
> Fredrik Arnerup (1):
>       85xx: bugfix for reading maximum TLB size on mpc85xx
> 
> Srikanth Srinivasan (1):
>       85xx: Add P2020DS support
> 
>  MAKEALL                            |    2 +
>  Makefile                           |    9 +
>  board/freescale/mpc8569mds/bcsr.c  |    2 +-
>  board/freescale/mpc8569mds/ddr.c   |    2 +-
>  board/freescale/p2020ds/Makefile   |   54 +++
>  board/freescale/p2020ds/config.mk  |   32 ++
>  board/freescale/p2020ds/ddr.c      |  130 +++++++
>  board/freescale/p2020ds/law.c      |   42 ++
>  board/freescale/p2020ds/p2020ds.c  |  634 ++++++++++++++++++++++++++++++
>  board/freescale/p2020ds/tlb.c      |   95 +++++
>  board/freescale/p2020ds/u-boot.lds |  143 +++++++
>  cpu/mpc85xx/tlb.c                  |    2 +-
>  include/configs/MPC8569MDS.h       |    4 +-
>  include/configs/P2020DS.h          |  741 ++++++++++++++++++++++++++++++++++++
>  14 files changed, 1887 insertions(+), 5 deletions(-)
>  create mode 100644 board/freescale/p2020ds/Makefile
>  create mode 100644 board/freescale/p2020ds/config.mk
>  create mode 100644 board/freescale/p2020ds/ddr.c
>  create mode 100644 board/freescale/p2020ds/law.c
>  create mode 100644 board/freescale/p2020ds/p2020ds.c
>  create mode 100644 board/freescale/p2020ds/tlb.c
>  create mode 100644 board/freescale/p2020ds/u-boot.lds
>  create mode 100644 include/configs/P2020DS.h

Seems you got stuck in work. To make some progress, I went ahead and
cherry-picked the commits that were ok, i. e. everything above except
the new stuff ("85xx: Add P2020DS support").

I will also apply some other 8xxx related patches directly, if they
seem either clear fixes or otherwise obvious to me. Hope this is OK
with you.

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
I will also, for an appropriate fee, certify that  your  keyboard  is
object-oriented,  and  that  the bits on your hard disk are template-
compatible.            - Jeffrey S. Haemer in <411akr$3ga@cygnus.com>

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-06-04  4:54 Andy Fleming
@ 2009-06-04  8:53 ` Wolfgang Denk
  2009-06-09 20:59 ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-06-04  8:53 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1244091241-22766-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Dave Liu (3):
>       85xx: Fix the clock adjust of mpc8569mds board
>       85xx: Fix the wrong BCSR address of 8569MDS
>       85xx: Fix the wrong SYS_CLK_IN for 8569MDS
> 
> Fredrik Arnerup (1):
>       85xx: bugfix for reading maximum TLB size on mpc85xx
> 
> Srikanth Srinivasan (1):
>       85xx: Add P2020DS support

Sorry, but this doesn't work. We're  only  accepting  bug  fixes  for
master  right  now,  but the P2020DS commit obviously adds new code -
this commit must not go into master, but into next.

Please clean up and re-send pull request.

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
Extended Epstein-Heisenberg Principle: In an R & D orbit, only  2  of
the  existing 3 parameters can be defined simultaneously. The parame-
ters are: task, time and resources ($).

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-06-04  4:54 Andy Fleming
  2009-06-04  8:53 ` Wolfgang Denk
  2009-06-09 20:59 ` Wolfgang Denk
  0 siblings, 2 replies; 172+ messages in thread
From: Andy Fleming @ 2009-06-04  4:54 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Dave Liu (3):
      85xx: Fix the clock adjust of mpc8569mds board
      85xx: Fix the wrong BCSR address of 8569MDS
      85xx: Fix the wrong SYS_CLK_IN for 8569MDS

Fredrik Arnerup (1):
      85xx: bugfix for reading maximum TLB size on mpc85xx

Srikanth Srinivasan (1):
      85xx: Add P2020DS support

 MAKEALL                            |    2 +
 Makefile                           |    9 +
 board/freescale/mpc8569mds/bcsr.c  |    2 +-
 board/freescale/mpc8569mds/ddr.c   |    2 +-
 board/freescale/p2020ds/Makefile   |   54 +++
 board/freescale/p2020ds/config.mk  |   32 ++
 board/freescale/p2020ds/ddr.c      |  130 +++++++
 board/freescale/p2020ds/law.c      |   42 ++
 board/freescale/p2020ds/p2020ds.c  |  634 ++++++++++++++++++++++++++++++
 board/freescale/p2020ds/tlb.c      |   95 +++++
 board/freescale/p2020ds/u-boot.lds |  143 +++++++
 cpu/mpc85xx/tlb.c                  |    2 +-
 include/configs/MPC8569MDS.h       |    4 +-
 include/configs/P2020DS.h          |  741 ++++++++++++++++++++++++++++++++++++
 14 files changed, 1887 insertions(+), 5 deletions(-)
 create mode 100644 board/freescale/p2020ds/Makefile
 create mode 100644 board/freescale/p2020ds/config.mk
 create mode 100644 board/freescale/p2020ds/ddr.c
 create mode 100644 board/freescale/p2020ds/law.c
 create mode 100644 board/freescale/p2020ds/p2020ds.c
 create mode 100644 board/freescale/p2020ds/tlb.c
 create mode 100644 board/freescale/p2020ds/u-boot.lds
 create mode 100644 include/configs/P2020DS.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-04-04 15:33 Kumar Gala
@ 2009-04-04 18:05 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-04-04 18:05 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <Pine.LNX.4.64.0904041032120.11661@blarg.am.freescale.net> you wrote:
> There are some other outstanding 85xx patches but I figured I'd let Andy
> cover those and let them sit on the list a big longer for any comments
> people might have.
> 
> - k
> 
> The following changes since commit 453c0d7558215cbc8636d94af172886d84e0dbba:
>   Detlev Zundel (1):
>         include/ns16550.h: Unify structure declaration for registers
> 
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Kumar Gala (3):
>       fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
>       fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
>       fsl_law: Fix bug in calculation of LAW sizing
> 
>  board/atum8548/atum8548.c                      |    9 +--------
>  board/freescale/mpc8536ds/mpc8536ds.c          |    8 +-------
>  board/freescale/mpc8544ds/mpc8544ds.c          |    8 +-------
>  board/freescale/mpc8548cds/mpc8548cds.c        |    8 +-------
>  board/freescale/mpc8568mds/mpc8568mds.c        |    8 +-------
>  board/freescale/mpc8569mds/mpc8569mds.c        |    8 +-------
>  board/freescale/mpc8572ds/mpc8572ds.c          |    8 +-------
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c      |    8 +-------
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c      |    8 +-------
>  board/sbc8548/sbc8548.c                        |    8 +-------
>  board/sbc8641d/sbc8641d.c                      |    8 +-------
>  board/tqc/tqm85xx/tqm85xx.c                    |    8 +-------
>  board/xes/common/fsl_85xx_pci.c                |    9 +--------
>  board/xes/xpedite5200/xpedite5200.c            |    2 +-
>  board/xes/xpedite5370/xpedite5370.c            |    2 +-
>  drivers/misc/fsl_law.c                         |    3 +++
>  drivers/pci/fsl_pci_init.c                     |    2 +-
>  include/asm-ppc/{immap_fsl_pci.h => fsl_pci.h} |   12 +++++++++---
>  18 files changed, 28 insertions(+), 99 deletions(-)
>  rename include/asm-ppc/{immap_fsl_pci.h => fsl_pci.h} (95%)

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
Brain: an apparatus with which we think we think.    - Ambrose Bierce

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-04-04 15:33 Kumar Gala
  2009-04-04 18:05 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2009-04-04 15:33 UTC (permalink / raw)
  To: u-boot

There are some other outstanding 85xx patches but I figured I'd let Andy
cover those and let them sit on the list a big longer for any comments
people might have.

- k

The following changes since commit 453c0d7558215cbc8636d94af172886d84e0dbba:
  Detlev Zundel (1):
        include/ns16550.h: Unify structure declaration for registers

are available in the git repository at:

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

Kumar Gala (3):
      fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
      fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
      fsl_law: Fix bug in calculation of LAW sizing

 board/atum8548/atum8548.c                      |    9 +--------
 board/freescale/mpc8536ds/mpc8536ds.c          |    8 +-------
 board/freescale/mpc8544ds/mpc8544ds.c          |    8 +-------
 board/freescale/mpc8548cds/mpc8548cds.c        |    8 +-------
 board/freescale/mpc8568mds/mpc8568mds.c        |    8 +-------
 board/freescale/mpc8569mds/mpc8569mds.c        |    8 +-------
 board/freescale/mpc8572ds/mpc8572ds.c          |    8 +-------
 board/freescale/mpc8610hpcd/mpc8610hpcd.c      |    8 +-------
 board/freescale/mpc8641hpcn/mpc8641hpcn.c      |    8 +-------
 board/sbc8548/sbc8548.c                        |    8 +-------
 board/sbc8641d/sbc8641d.c                      |    8 +-------
 board/tqc/tqm85xx/tqm85xx.c                    |    8 +-------
 board/xes/common/fsl_85xx_pci.c                |    9 +--------
 board/xes/xpedite5200/xpedite5200.c            |    2 +-
 board/xes/xpedite5370/xpedite5370.c            |    2 +-
 drivers/misc/fsl_law.c                         |    3 +++
 drivers/pci/fsl_pci_init.c                     |    2 +-
 include/asm-ppc/{immap_fsl_pci.h => fsl_pci.h} |   12 +++++++++---
 18 files changed, 28 insertions(+), 99 deletions(-)
 rename include/asm-ppc/{immap_fsl_pci.h => fsl_pci.h} (95%)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-03-30 18:36 Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2009-03-30 18:36 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-03-26 22:53 Andy Fleming
@ 2009-03-27 19:21 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-03-27 19:21 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1238108026-16107-1-git-send-email-afleming@freescale.com> you wrote:
> 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 MPC8569MDS board support
>       MPC85xx: Add MPC8569 CPU 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        |   86 ++++++
>  board/freescale/mpc8569mds/law.c        |   59 ++++
>  board/freescale/mpc8569mds/mpc8569mds.c |  325 ++++++++++++++++++++++
>  board/freescale/mpc8569mds/tlb.c        |  100 +++++++
>  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                     |   49 ++++
>  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            |    9 +-
>  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            |  455 +++++++++++++++++++++++++++++++
>  include/configs/sbc8349.h               |   62 +----
>  include/configs/sbc8548.h               |   37 +--
>  include/ddr_spd.h                       |   13 +-
>  53 files changed, 2570 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

Sorry, but NAK. I have some review comments to some of the patches
that should be solved first.

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
Artificial Intelligence is no match for natural stupidity.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-03-26 22:53 Andy Fleming
  2009-03-27 19:21 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2009-03-26 22:53 UTC (permalink / raw)
  To: u-boot

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 MPC8569MDS board support
      MPC85xx: Add MPC8569 CPU 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        |   86 ++++++
 board/freescale/mpc8569mds/law.c        |   59 ++++
 board/freescale/mpc8569mds/mpc8569mds.c |  325 ++++++++++++++++++++++
 board/freescale/mpc8569mds/tlb.c        |  100 +++++++
 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                     |   49 ++++
 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            |    9 +-
 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            |  455 +++++++++++++++++++++++++++++++
 include/configs/sbc8349.h               |   62 +----
 include/configs/sbc8548.h               |   37 +--
 include/ddr_spd.h                       |   13 +-
 53 files changed, 2570 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

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-03-10 19:12 Andy Fleming
@ 2009-03-10 21:09 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-03-10 21:09 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1236712374-8074-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
> 
> Andy Fleming (1):
>       fsl: Remove unnecessary debug printfs
> 
> Ed Swarthout (1):
>       Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
> 
> Paul Gortmaker (1):
>       tsec: report when there is no vendor specific PHY support
> 
> ksi at koi8.net (1):
>       Add eTSEC 1/2 IO override control (corrected)
> 
>  board/freescale/common/sgmii_riser.c |    3 ---
>  cpu/mpc85xx/ddr-gen3.c               |    4 ++--
>  drivers/net/tsec.c                   |    7 +++----
>  include/asm-ppc/immap_85xx.h         |    2 +-
>  4 files changed, 6 insertions(+), 10 deletions(-)

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
The first 90% of a project takes 90% of the time, the last 10%  takes
the other 90% of the time.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-03-10 19:12 Andy Fleming
  2009-03-10 21:09 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2009-03-10 19:12 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

  git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next

Andy Fleming (1):
      fsl: Remove unnecessary debug printfs

Ed Swarthout (1):
      Fix mpc85xx ddr-gen3 ddr_sdram_cfg.

Paul Gortmaker (1):
      tsec: report when there is no vendor specific PHY support

ksi at koi8.net (1):
      Add eTSEC 1/2 IO override control (corrected)

 board/freescale/common/sgmii_riser.c |    3 ---
 cpu/mpc85xx/ddr-gen3.c               |    4 ++--
 drivers/net/tsec.c                   |    7 +++----
 include/asm-ppc/immap_85xx.h         |    2 +-
 4 files changed, 6 insertions(+), 10 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-02-17  0:13 Andy Fleming
@ 2009-02-17  0:22 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-02-17  0:22 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1234829597-29618-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Andy Fleming (4):
>       Add eth_get_dev_by_index
>       Make some minor whitespace changes to eliminate line-wrapping
>       Fixup SGMII PHY ids in the device tree
>       TQM85xx: Fix a couple warnings in TQM8548 build
> 
> Kumar Gala (7):
>       85xx: Format cpu freq printing to handle 8 cores
>       fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
>       85xx: Fix how we map DDR memory
>       85xx: Fix address map for 36-bit config of MPC8572DS
>       85xx: Fix bug in device tree setup in 36-bit physical confg
>       85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
>       fsl-ddr: Allow system to boot if we have more than 4G of memory
> 
> Peter Tyser (3):
>       86xx: Reset update
>       86xx: Update Global Utilities structure
>       86xx: Update CPU info output on bootup
> 
> Poonam_Aggrwal-b10812 (1):
>       32bit BUg fix for DDR2 on 8572
> 
> Srikanth Srinivasan (1):
>       mpc85xx: Add support for the P2020
> 
> Wolfgang Grandegger (8):
>       MPC85xx: TQM85xx: fix flash protection for boot loader
>       MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
>       MPC85xx: TQM8548: add support for the TQM8548_BE module
>       MPC85xx: TQM8548: add support for the TQM8548_AG module
>       MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
>       MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
>       MPC85xx: TQM8548: use cache for AG and BE variants
>       MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
> 
>  MAKEALL                                   |    2 +
>  Makefile                                  |   12 ++-
>  board/freescale/common/sgmii_riser.c      |   65 ++++++++++++
>  board/freescale/common/sgmii_riser.h      |    1 +
>  board/freescale/mpc8536ds/mpc8536ds.c     |    5 +
>  board/freescale/mpc8544ds/mpc8544ds.c     |    3 +
>  board/freescale/mpc8572ds/mpc8572ds.c     |   22 +++-
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c |    8 ++
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c |    8 ++
>  board/sbc8641d/sbc8641d.c                 |   29 +++++
>  board/tqc/tqm85xx/config.mk               |    6 +-
>  board/tqc/tqm85xx/law.c                   |    2 +-
>  board/tqc/tqm85xx/nand.c                  |    6 +-
>  board/tqc/tqm85xx/sdram.c                 |  141 ++++++++++++++++++++++---
>  board/tqc/tqm85xx/tlb.c                   |   19 +++-
>  board/tqc/tqm85xx/tqm85xx.c               |   15 ++--
>  cpu/mpc85xx/Makefile                      |    1 +
>  cpu/mpc85xx/cpu.c                         |   10 ++-
>  cpu/mpc85xx/ddr-gen3.c                    |    9 ++-
>  cpu/mpc85xx/tlb.c                         |   74 +++++---------
>  cpu/mpc86xx/cpu.c                         |  162 +++++++++++------------------
>  cpu/mpc8xxx/ddr/main.c                    |    2 +-
>  cpu/mpc8xxx/ddr/options.c                 |    4 +
>  drivers/misc/fsl_law.c                    |    3 +-
>  include/asm-ppc/config.h                  |    2 +-
>  include/asm-ppc/fsl_ddr_sdram.h           |   17 +++
>  include/asm-ppc/fsl_law.h                 |    4 +-
>  include/asm-ppc/immap_85xx.h              |   25 ++++-
>  include/asm-ppc/immap_86xx.h              |   29 ++++--
>  include/asm-ppc/processor.h               |   12 ++-
>  include/configs/MPC8572DS.h               |   10 ++-
>  include/configs/MPC8610HPCD.h             |    2 -
>  include/configs/MPC8641HPCN.h             |    2 -
>  include/configs/TQM85xx.h                 |   28 ++++-
>  include/net.h                             |   31 +++---
>  net/eth.c                                 |   22 ++++
>  36 files changed, 556 insertions(+), 237 deletions(-)

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
Death, when unnecessary, is a tragic thing.
	-- Flint, "Requiem for Methuselah", stardate 5843.7

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-02-17  0:13 Andy Fleming
  2009-02-17  0:22 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2009-02-17  0:13 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Andy Fleming (4):
      Add eth_get_dev_by_index
      Make some minor whitespace changes to eliminate line-wrapping
      Fixup SGMII PHY ids in the device tree
      TQM85xx: Fix a couple warnings in TQM8548 build

Kumar Gala (7):
      85xx: Format cpu freq printing to handle 8 cores
      fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
      85xx: Fix how we map DDR memory
      85xx: Fix address map for 36-bit config of MPC8572DS
      85xx: Fix bug in device tree setup in 36-bit physical confg
      85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
      fsl-ddr: Allow system to boot if we have more than 4G of memory

Peter Tyser (3):
      86xx: Reset update
      86xx: Update Global Utilities structure
      86xx: Update CPU info output on bootup

Poonam_Aggrwal-b10812 (1):
      32bit BUg fix for DDR2 on 8572

Srikanth Srinivasan (1):
      mpc85xx: Add support for the P2020

Wolfgang Grandegger (8):
      MPC85xx: TQM85xx: fix flash protection for boot loader
      MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
      MPC85xx: TQM8548: add support for the TQM8548_BE module
      MPC85xx: TQM8548: add support for the TQM8548_AG module
      MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
      MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
      MPC85xx: TQM8548: use cache for AG and BE variants
      MPC85xx: TQM8548: workaround for erratum DDR 19 and 20

 MAKEALL                                   |    2 +
 Makefile                                  |   12 ++-
 board/freescale/common/sgmii_riser.c      |   65 ++++++++++++
 board/freescale/common/sgmii_riser.h      |    1 +
 board/freescale/mpc8536ds/mpc8536ds.c     |    5 +
 board/freescale/mpc8544ds/mpc8544ds.c     |    3 +
 board/freescale/mpc8572ds/mpc8572ds.c     |   22 +++-
 board/freescale/mpc8610hpcd/mpc8610hpcd.c |    8 ++
 board/freescale/mpc8641hpcn/mpc8641hpcn.c |    8 ++
 board/sbc8641d/sbc8641d.c                 |   29 +++++
 board/tqc/tqm85xx/config.mk               |    6 +-
 board/tqc/tqm85xx/law.c                   |    2 +-
 board/tqc/tqm85xx/nand.c                  |    6 +-
 board/tqc/tqm85xx/sdram.c                 |  141 ++++++++++++++++++++++---
 board/tqc/tqm85xx/tlb.c                   |   19 +++-
 board/tqc/tqm85xx/tqm85xx.c               |   15 ++--
 cpu/mpc85xx/Makefile                      |    1 +
 cpu/mpc85xx/cpu.c                         |   10 ++-
 cpu/mpc85xx/ddr-gen3.c                    |    9 ++-
 cpu/mpc85xx/tlb.c                         |   74 +++++---------
 cpu/mpc86xx/cpu.c                         |  162 +++++++++++------------------
 cpu/mpc8xxx/ddr/main.c                    |    2 +-
 cpu/mpc8xxx/ddr/options.c                 |    4 +
 drivers/misc/fsl_law.c                    |    3 +-
 include/asm-ppc/config.h                  |    2 +-
 include/asm-ppc/fsl_ddr_sdram.h           |   17 +++
 include/asm-ppc/fsl_law.h                 |    4 +-
 include/asm-ppc/immap_85xx.h              |   25 ++++-
 include/asm-ppc/immap_86xx.h              |   29 ++++--
 include/asm-ppc/processor.h               |   12 ++-
 include/configs/MPC8572DS.h               |   10 ++-
 include/configs/MPC8610HPCD.h             |    2 -
 include/configs/MPC8641HPCN.h             |    2 -
 include/configs/TQM85xx.h                 |   28 ++++-
 include/net.h                             |   31 +++---
 net/eth.c                                 |   22 ++++
 36 files changed, 556 insertions(+), 237 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-28 14:36   ` Haiying Wang
@ 2009-01-28 14:38     ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2009-01-28 14:38 UTC (permalink / raw)
  To: u-boot


On Jan 28, 2009, at 8:36 AM, Haiying Wang wrote:

> On Wed, 2009-01-28 at 09:33 +0100, Wolfgang Denk wrote:
>> Dear Andy & Haiying,
>>
>> in message <1232753424-2863-1-git-send-email- 
>> afleming at freescale.com> you wrote:
>>> are available in the git repository at:
>> ...
>>> Haiying Wang (2):
>>>      Add README file for MPC8572DS board
>>>      Add secondary CPUs processor frequency for e500 core
>>        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>>
>> This patch (commit 2fc7eb0cfc608c9) breaks the MPC8540EVAL board:
>>
>> Configuring for MPC8540EVAL board...
>> mpc8540eval.c: In function 'checkboard':
>> mpc8540eval.c:53: error: invalid operands to binary /
>> make[1]: *** [mpc8540eval.o] Error 1
>>
>>
>> Please fix.
>>
> Thanks for catching this. Patch will be sent out soon.
>
> Haiying

just sent one.  Please review and ack :)

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-28  8:33 ` Wolfgang Denk
@ 2009-01-28 14:36   ` Haiying Wang
  2009-01-28 14:38     ` Kumar Gala
  0 siblings, 1 reply; 172+ messages in thread
From: Haiying Wang @ 2009-01-28 14:36 UTC (permalink / raw)
  To: u-boot

On Wed, 2009-01-28 at 09:33 +0100, Wolfgang Denk wrote:
> Dear Andy & Haiying,
> 
> in message <1232753424-2863-1-git-send-email-afleming@freescale.com> you wrote:
> > are available in the git repository at:
> ...
> > Haiying Wang (2):
> >       Add README file for MPC8572DS board
> >       Add secondary CPUs processor frequency for e500 core
>         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> 
> This patch (commit 2fc7eb0cfc608c9) breaks the MPC8540EVAL board:
> 
> Configuring for MPC8540EVAL board...
> mpc8540eval.c: In function 'checkboard':
> mpc8540eval.c:53: error: invalid operands to binary /
> make[1]: *** [mpc8540eval.o] Error 1
> 
> 
> Please fix.
> 
Thanks for catching this. Patch will be sent out soon.

Haiying

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-28  8:55 ` Wolfgang Denk
  2009-01-28  9:07   ` Stefan Roese
@ 2009-01-28 14:27   ` Kumar Gala
  1 sibling, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2009-01-28 14:27 UTC (permalink / raw)
  To: u-boot


On Jan 28, 2009, at 2:55 AM, Wolfgang Denk wrote:

> Dear Andy & Kumar,
>
> In message <1232753424-2863-1-git-send-email-afleming@freescale.com>  
> you wrote:
>> are available in the git repository at:
> ...
>> Kumar Gala (10):
> ...
>>      85xx: Add a 36-bit physical configuration for MPC8572DS
>
> This patch (commit 18af1c5f0f74) raises a couple of warnings, for
> example:
>
> -> ./MAKEALL MPC8572DS_36BIT
> ... enabling 36-bit physical addressing.
> Configuring for MPC8572DS board...
> cfi_flash.c: In function 'flash_init':
> cfi_flash.c:1995: warning: large integer implicitly truncated to  
> unsigned type
> cfi_flash.c:1995: warning: large integer implicitly truncated to  
> unsigned type
> cfi_flash.c:1996: warning: large integer implicitly truncated to  
> unsigned type
> cfi_flash.c:1996: warning: large integer implicitly truncated to  
> unsigned type
>
> Also:
>
> hcu4:
> jedec_flash.c:219: warning: large integer implicitly truncated to  
> unsigned type
>
> hcu5:
> jedec_flash.c:219: warning: large integer implicitly truncated to  
> unsigned type
>
> mcu25:
> jedec_flash.c:219: warning: large integer implicitly truncated to  
> unsigned type
>
>
> These look fishy to me. Please fix.

Some of these are expecting Becky's CFI flash patch to deal w/ 
PHYS_64BIT.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-28 11:12     ` Wolfgang Denk
@ 2009-01-28 12:02       ` Stefan Roese
  0 siblings, 0 replies; 172+ messages in thread
From: Stefan Roese @ 2009-01-28 12:02 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

On Wednesday 28 January 2009, Wolfgang Denk wrote:
> > This problem has nothing to do with the patch mentioned above. I
> > addressed
>
> Git bisect says so...

Strange. Are you sure? The code in question (line 219 in jedec_flash.c) was 
added with patch 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3 [Added legacy flash 
ST Micro M29W040B]

> > this warning with my patch "jedec_flash: Fix compilation warning in
> > jedec_flash.c" which is still under discussion.
>
> It's not only jedec_flash, it seems.

I still think these are two separate issues.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-28  9:07   ` Stefan Roese
@ 2009-01-28 11:12     ` Wolfgang Denk
  2009-01-28 12:02       ` Stefan Roese
  0 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2009-01-28 11:12 UTC (permalink / raw)
  To: u-boot

Dear Stefan Roese,

In message <200901281007.47146.sr@denx.de> you wrote:
>
> This problem has nothing to do with the patch mentioned above. I addressed 

Git bisect says so...

> this warning with my patch "jedec_flash: Fix compilation warning in 
> jedec_flash.c" which is still under discussion.

It's not only jedec_flash, it seems.

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
Anything free is worth what you pay for it.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-28  8:55 ` Wolfgang Denk
@ 2009-01-28  9:07   ` Stefan Roese
  2009-01-28 11:12     ` Wolfgang Denk
  2009-01-28 14:27   ` Kumar Gala
  1 sibling, 1 reply; 172+ messages in thread
From: Stefan Roese @ 2009-01-28  9:07 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang,

On Wednesday 28 January 2009, Wolfgang Denk wrote:
> This patch (commit 18af1c5f0f74) raises a couple of warnings, for
> example:
>
> -> ./MAKEALL MPC8572DS_36BIT
> ... enabling 36-bit physical addressing.
> Configuring for MPC8572DS board...
> cfi_flash.c: In function 'flash_init':
> cfi_flash.c:1995: warning: large integer implicitly truncated to unsigned
> type cfi_flash.c:1995: warning: large integer implicitly truncated to
> unsigned type cfi_flash.c:1996: warning: large integer implicitly truncated
> to unsigned type cfi_flash.c:1996: warning: large integer implicitly
> truncated to unsigned type
>
> Also:
>
> hcu4:
> jedec_flash.c:219: warning: large integer implicitly truncated to unsigned
> type

This problem has nothing to do with the patch mentioned above. I addressed 
this warning with my patch "jedec_flash: Fix compilation warning in 
jedec_flash.c" which is still under discussion.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-23 23:30 Andy Fleming
  2009-01-24  1:20 ` Wolfgang Denk
  2009-01-28  8:33 ` Wolfgang Denk
@ 2009-01-28  8:55 ` Wolfgang Denk
  2009-01-28  9:07   ` Stefan Roese
  2009-01-28 14:27   ` Kumar Gala
  2 siblings, 2 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-01-28  8:55 UTC (permalink / raw)
  To: u-boot

Dear Andy & Kumar,

In message <1232753424-2863-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
...
> Kumar Gala (10):
...
>       85xx: Add a 36-bit physical configuration for MPC8572DS

This patch (commit 18af1c5f0f74) raises a couple of warnings, for
example:

-> ./MAKEALL MPC8572DS_36BIT
... enabling 36-bit physical addressing.
Configuring for MPC8572DS board...
cfi_flash.c: In function 'flash_init':
cfi_flash.c:1995: warning: large integer implicitly truncated to unsigned type
cfi_flash.c:1995: warning: large integer implicitly truncated to unsigned type
cfi_flash.c:1996: warning: large integer implicitly truncated to unsigned type
cfi_flash.c:1996: warning: large integer implicitly truncated to unsigned type

Also:

hcu4:
jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type

hcu5:
jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type

mcu25:
jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type


These look fishy to me. Please fix.

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
Nothing ever becomes real until it is experienced.       - John Keats

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-23 23:30 Andy Fleming
  2009-01-24  1:20 ` Wolfgang Denk
@ 2009-01-28  8:33 ` Wolfgang Denk
  2009-01-28 14:36   ` Haiying Wang
  2009-01-28  8:55 ` Wolfgang Denk
  2 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2009-01-28  8:33 UTC (permalink / raw)
  To: u-boot

Dear Andy & Haiying,

in message <1232753424-2863-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
...
> Haiying Wang (2):
>       Add README file for MPC8572DS board
>       Add secondary CPUs processor frequency for e500 core
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This patch (commit 2fc7eb0cfc608c9) breaks the MPC8540EVAL board:

Configuring for MPC8540EVAL board...
mpc8540eval.c: In function 'checkboard':
mpc8540eval.c:53: error: invalid operands to binary /
make[1]: *** [mpc8540eval.o] Error 1


Please fix.

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
I came home the other night and tried to open the door  with  my  car
keys...and  the  building started up. So I took it out for a drive. A
cop pulled me over for speeding. He asked me where I  live...  "Right
here".                                                - Steven Wright

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-23 23:30 Andy Fleming
@ 2009-01-24  1:20 ` Wolfgang Denk
  2009-01-28  8:33 ` Wolfgang Denk
  2009-01-28  8:55 ` Wolfgang Denk
  2 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-01-24  1:20 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1232753424-2863-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Dave Liu (5):
>       fsl-ddr: update the bit mask for DDR3 controller
>       fsl-ddr: clean up the ddr code for DDR3 controller
>       fsl-ddr: make the self refresh idle threshold configurable
>       fsl-ddr: use the 1T timing as default configuration
>       85xx: enable the auto self refresh for wake up ARP
> 
> Haiying Wang (2):
>       Add README file for MPC8572DS board
>       Add secondary CPUs processor frequency for e500 core
> 
> Kumar Gala (10):
>       85xx: separate PIXIS virtual from physical address
>       85xx: separate FLASH BASE virtual from physical address
>       85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
>       85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
>       85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
>       85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
>       85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
>       85xx: Use BR_ADDR macro for NAND chipselects
>       85xx: Handle eLBC difference w/36-bit physical
>       85xx: Add a 36-bit physical configuration for MPC8572DS
> 
>  MAKEALL                                 |    1 +
>  Makefile                                |    8 ++-
>  board/freescale/mpc8536ds/ddr.c         |    6 +
>  board/freescale/mpc8536ds/law.c         |    4 +-
>  board/freescale/mpc8536ds/mpc8536ds.c   |   30 +++---
>  board/freescale/mpc8536ds/tlb.c         |    8 +-
>  board/freescale/mpc8540ads/ddr.c        |    3 +
>  board/freescale/mpc8540ads/law.c        |    2 +-
>  board/freescale/mpc8540ads/tlb.c        |    8 +-
>  board/freescale/mpc8541cds/tlb.c        |    8 +-
>  board/freescale/mpc8544ds/ddr.c         |    3 +
>  board/freescale/mpc8544ds/mpc8544ds.c   |   34 +++---
>  board/freescale/mpc8544ds/tlb.c         |    6 +-
>  board/freescale/mpc8548cds/mpc8548cds.c |    8 +-
>  board/freescale/mpc8548cds/tlb.c        |    6 +-
>  board/freescale/mpc8555cds/tlb.c        |    8 +-
>  board/freescale/mpc8560ads/ddr.c        |    3 +
>  board/freescale/mpc8560ads/law.c        |    2 +-
>  board/freescale/mpc8560ads/tlb.c        |    8 +-
>  board/freescale/mpc8568mds/law.c        |    2 +-
>  board/freescale/mpc8568mds/mpc8568mds.c |    8 +-
>  board/freescale/mpc8568mds/tlb.c        |    2 +-
>  board/freescale/mpc8572ds/law.c         |    4 +-
>  board/freescale/mpc8572ds/mpc8572ds.c   |   16 ++--
>  board/freescale/mpc8572ds/tlb.c         |   12 +-
>  board/freescale/mpc8610hpcd/ddr.c       |    3 +
>  board/freescale/mpc8641hpcn/ddr.c       |    2 +
>  board/stxgp3/ddr.c                      |    3 +
>  board/stxssa/ddr.c                      |    3 +
>  cpu/mpc85xx/cpu.c                       |    7 +-
>  cpu/mpc85xx/fdt.c                       |   15 +++-
>  cpu/mpc85xx/pci.c                       |   32 +++++--
>  cpu/mpc85xx/speed.c                     |   10 +-
>  cpu/mpc8xxx/ddr/ctrl_regs.c             |   48 ++++++----
>  cpu/mpc8xxx/ddr/options.c               |    2 +-
>  doc/README.mpc8572ds                    |  167 +++++++++++++++++++++++++++++++
>  include/asm-ppc/fsl_ddr_sdram.h         |    7 ++
>  include/asm-ppc/fsl_lbc.h               |    8 ++-
>  include/configs/MPC8536DS.h             |   63 +++++++-----
>  include/configs/MPC8540ADS.h            |   13 ++-
>  include/configs/MPC8541CDS.h            |   16 ++-
>  include/configs/MPC8544DS.h             |   47 ++++++----
>  include/configs/MPC8548CDS.h            |   28 ++++--
>  include/configs/MPC8555CDS.h            |   16 ++-
>  include/configs/MPC8560ADS.h            |   13 ++-
>  include/configs/MPC8568MDS.h            |   20 +++--
>  include/configs/MPC8572DS.h             |   98 ++++++++++++++----
>  include/e500.h                          |    6 +-
>  48 files changed, 595 insertions(+), 232 deletions(-)
>  create mode 100644 doc/README.mpc8572ds

Done, 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
No more blah, blah, blah!
	-- Kirk, "Miri", stardate 2713.6

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-01-23 23:30 Andy Fleming
  2009-01-24  1:20 ` Wolfgang Denk
                   ` (2 more replies)
  0 siblings, 3 replies; 172+ messages in thread
From: Andy Fleming @ 2009-01-23 23:30 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Dave Liu (5):
      fsl-ddr: update the bit mask for DDR3 controller
      fsl-ddr: clean up the ddr code for DDR3 controller
      fsl-ddr: make the self refresh idle threshold configurable
      fsl-ddr: use the 1T timing as default configuration
      85xx: enable the auto self refresh for wake up ARP

Haiying Wang (2):
      Add README file for MPC8572DS board
      Add secondary CPUs processor frequency for e500 core

Kumar Gala (10):
      85xx: separate PIXIS virtual from physical address
      85xx: separate FLASH BASE virtual from physical address
      85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
      85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
      85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
      85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
      85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
      85xx: Use BR_ADDR macro for NAND chipselects
      85xx: Handle eLBC difference w/36-bit physical
      85xx: Add a 36-bit physical configuration for MPC8572DS

 MAKEALL                                 |    1 +
 Makefile                                |    8 ++-
 board/freescale/mpc8536ds/ddr.c         |    6 +
 board/freescale/mpc8536ds/law.c         |    4 +-
 board/freescale/mpc8536ds/mpc8536ds.c   |   30 +++---
 board/freescale/mpc8536ds/tlb.c         |    8 +-
 board/freescale/mpc8540ads/ddr.c        |    3 +
 board/freescale/mpc8540ads/law.c        |    2 +-
 board/freescale/mpc8540ads/tlb.c        |    8 +-
 board/freescale/mpc8541cds/tlb.c        |    8 +-
 board/freescale/mpc8544ds/ddr.c         |    3 +
 board/freescale/mpc8544ds/mpc8544ds.c   |   34 +++---
 board/freescale/mpc8544ds/tlb.c         |    6 +-
 board/freescale/mpc8548cds/mpc8548cds.c |    8 +-
 board/freescale/mpc8548cds/tlb.c        |    6 +-
 board/freescale/mpc8555cds/tlb.c        |    8 +-
 board/freescale/mpc8560ads/ddr.c        |    3 +
 board/freescale/mpc8560ads/law.c        |    2 +-
 board/freescale/mpc8560ads/tlb.c        |    8 +-
 board/freescale/mpc8568mds/law.c        |    2 +-
 board/freescale/mpc8568mds/mpc8568mds.c |    8 +-
 board/freescale/mpc8568mds/tlb.c        |    2 +-
 board/freescale/mpc8572ds/law.c         |    4 +-
 board/freescale/mpc8572ds/mpc8572ds.c   |   16 ++--
 board/freescale/mpc8572ds/tlb.c         |   12 +-
 board/freescale/mpc8610hpcd/ddr.c       |    3 +
 board/freescale/mpc8641hpcn/ddr.c       |    2 +
 board/stxgp3/ddr.c                      |    3 +
 board/stxssa/ddr.c                      |    3 +
 cpu/mpc85xx/cpu.c                       |    7 +-
 cpu/mpc85xx/fdt.c                       |   15 +++-
 cpu/mpc85xx/pci.c                       |   32 +++++--
 cpu/mpc85xx/speed.c                     |   10 +-
 cpu/mpc8xxx/ddr/ctrl_regs.c             |   48 ++++++----
 cpu/mpc8xxx/ddr/options.c               |    2 +-
 doc/README.mpc8572ds                    |  167 +++++++++++++++++++++++++++++++
 include/asm-ppc/fsl_ddr_sdram.h         |    7 ++
 include/asm-ppc/fsl_lbc.h               |    8 ++-
 include/configs/MPC8536DS.h             |   63 +++++++-----
 include/configs/MPC8540ADS.h            |   13 ++-
 include/configs/MPC8541CDS.h            |   16 ++-
 include/configs/MPC8544DS.h             |   47 ++++++----
 include/configs/MPC8548CDS.h            |   28 ++++--
 include/configs/MPC8555CDS.h            |   16 ++-
 include/configs/MPC8560ADS.h            |   13 ++-
 include/configs/MPC8568MDS.h            |   20 +++--
 include/configs/MPC8572DS.h             |   98 ++++++++++++++----
 include/e500.h                          |    6 +-
 48 files changed, 595 insertions(+), 232 deletions(-)
 create mode 100644 doc/README.mpc8572ds

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2009-01-13 23:01 Andy Fleming
@ 2009-01-13 23:36 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2009-01-13 23:36 UTC (permalink / raw)
  To: u-boot

Dear Andy,

In message <12318877093123-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Haiying Wang (2):
>       Change DDR tlb start entry to CONFIG param for 85xx
>       Some changes of TLB entry setting for MPC8572DS
> 
> Roy Zang (3):
>       Fix IO port selection issue on MPC8544DS and MPC8572DS boards
>       PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
>       Change PCIE1&2 deciide logic on MPC8544DS board more readable
> 
>  board/freescale/mpc8544ds/mpc8544ds.c |    6 +++---
>  board/freescale/mpc8572ds/mpc8572ds.c |   12 +++++++-----
>  board/freescale/mpc8572ds/tlb.c       |    7 +++----
>  cpu/mpc85xx/tlb.c                     |    6 +++++-
>  include/configs/MPC8572DS.h           |    1 +
>  5 files changed, 19 insertions(+), 13 deletions(-)

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
The only person who always got his work done by Friday
                                                 was Robinson Crusoe.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2009-01-13 23:01 Andy Fleming
  2009-01-13 23:36 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2009-01-13 23:01 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Haiying Wang (2):
      Change DDR tlb start entry to CONFIG param for 85xx
      Some changes of TLB entry setting for MPC8572DS

Roy Zang (3):
      Fix IO port selection issue on MPC8544DS and MPC8572DS boards
      PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
      Change PCIE1&2 deciide logic on MPC8544DS board more readable

 board/freescale/mpc8544ds/mpc8544ds.c |    6 +++---
 board/freescale/mpc8572ds/mpc8572ds.c |   12 +++++++-----
 board/freescale/mpc8572ds/tlb.c       |    7 +++----
 cpu/mpc85xx/tlb.c                     |    6 +++++-
 include/configs/MPC8572DS.h           |    1 +
 5 files changed, 19 insertions(+), 13 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-12-22 19:36 Andy Fleming
  2008-12-23  0:08 ` Peter Tyser
@ 2008-12-30 22:36 ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-12-30 22:36 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1229974568-3773-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Dave Liu (1):
>       85xx: Fix the boot window issue
> 
> Haiying Wang (1):
>       Set IVPR to kenrel entry point in second core boot page
> 
> Kumar Gala (3):
>       85xx: Add support to populate addr map based on TLB settings
>       ppc: Use addrmap in virt_to_phys and map_physmem.
>       NAND FSL elbc: Use virt_to_phys to determine which bank is in use
> 
> Paul Gortmaker (3):
>       sbc8548: don't enable the 3rd and 4th eTSEC
>       sbc8548: enable command line editing by default.
>       sbc8548: use proper PHY address
> 
> Peter Tyser (5):
>       pci/fsl_pci_init: Enable inbound PCI config cycles
>       Add support for PCA953x I2C gpio devices
>       XPedite5370 board support
>       85xx: Enable inbound PCI config cycles for X-ES boards
>       XPedite5200 board support
> 
> Trent Piepho (5):
>       mpc8[56]xx: Put localbus clock in device tree
>       mpc8xxx: LCRR[CLKDIV] is sometimes five bits
>       mpc8568: Double local bus clock divider
>       mpc86xx: Double local bus clock divider
>       mpc8[56]xx: Put localbus clock in sysinfo and gd
> 
>  MAINTAINERS                             |    4 +
>  MAKEALL                                 |    2 +
>  Makefile                                |    8 +
>  README                                  |    9 +
>  board/freescale/mpc8540ads/mpc8540ads.c |    2 +-
>  board/freescale/mpc8541cds/mpc8541cds.c |    2 +-
>  board/freescale/mpc8548cds/mpc8548cds.c |    2 +-
>  board/freescale/mpc8555cds/mpc8555cds.c |    2 +-
>  board/freescale/mpc8560ads/mpc8560ads.c |    2 +-
>  board/freescale/mpc8568mds/mpc8568mds.c |    2 +-
>  board/mpc8540eval/mpc8540eval.c         |    2 +-
>  board/pm854/pm854.c                     |    2 +-
>  board/pm856/pm856.c                     |    2 +-
>  board/sbc8548/sbc8548.c                 |    2 +-
>  board/socrates/socrates.c               |    2 +-
>  board/tqc/tqm85xx/tqm85xx.c             |    2 +-
>  board/xes/common/Makefile               |   57 +++
>  board/xes/common/fsl_8572_clk.c         |   51 +++
>  board/xes/common/fsl_85xx_ddr.c         |   93 +++++
>  board/xes/common/fsl_85xx_pci.c         |  375 ++++++++++++++++++++
>  board/xes/xpedite5370/Makefile          |   45 +++
>  board/xes/xpedite5370/config.mk         |   35 ++
>  board/xes/xpedite5370/ddr.c             |  270 ++++++++++++++
>  board/xes/xpedite5370/law.c             |   54 +++
>  board/xes/xpedite5370/tlb.c             |   94 +++++
>  board/xes/xpedite5370/u-boot.lds        |  145 ++++++++
>  board/xes/xpedite5370/xpedite5370.c     |  128 +++++++
>  cpu/mpc85xx/cpu.c                       |   31 +--
>  cpu/mpc85xx/fdt.c                       |    8 +-
>  cpu/mpc85xx/release.S                   |    1 +
>  cpu/mpc85xx/speed.c                     |   27 ++
>  cpu/mpc85xx/start.S                     |   16 +-
>  cpu/mpc85xx/tlb.c                       |   34 ++
>  cpu/mpc86xx/cpu.c                       |   21 +-
>  cpu/mpc86xx/fdt.c                       |    9 +
>  cpu/mpc86xx/speed.c                     |   19 +
>  drivers/gpio/Makefile                   |   47 +++
>  drivers/gpio/pca953x.c                  |  227 ++++++++++++
>  drivers/mtd/nand/fsl_elbc_nand.c        |    6 +-
>  drivers/pci/fsl_pci_init.c              |   29 ++
>  include/asm-ppc/fsl_lbc.h               |    5 +-
>  include/asm-ppc/global_data.h           |    3 +
>  include/asm-ppc/io.h                    |   12 +
>  include/asm-ppc/mmu.h                   |    3 +
>  include/configs/XPEDITE5370.h           |  589 +++++++++++++++++++++++++++++++
>  include/configs/sbc8548.h               |   20 +-
>  include/e500.h                          |    1 +
>  include/mpc86xx.h                       |    1 +
>  include/pca953x.h                       |   39 ++
>  lib_ppc/board.c                         |    8 +
>  50 files changed, 2467 insertions(+), 83 deletions(-)
>  create mode 100644 board/xes/common/Makefile
>  create mode 100644 board/xes/common/fsl_8572_clk.c
>  create mode 100644 board/xes/common/fsl_85xx_ddr.c
>  create mode 100644 board/xes/common/fsl_85xx_pci.c
>  create mode 100644 board/xes/xpedite5370/Makefile
>  create mode 100644 board/xes/xpedite5370/config.mk
>  create mode 100644 board/xes/xpedite5370/ddr.c
>  create mode 100644 board/xes/xpedite5370/law.c
>  create mode 100644 board/xes/xpedite5370/tlb.c
>  create mode 100644 board/xes/xpedite5370/u-boot.lds
>  create mode 100644 board/xes/xpedite5370/xpedite5370.c
>  create mode 100644 drivers/gpio/Makefile
>  create mode 100644 drivers/gpio/pca953x.c
>  create mode 100644 include/configs/XPEDITE5370.h
>  create mode 100644 include/pca953x.h

Done, 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
Madness has no purpose.  Or reason.  But it may have a goal.
	-- Spock, "The Alternative Factor", stardate 3088.7

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-12-29 18:58 Andy Fleming
  0 siblings, 0 replies; 172+ messages in thread
From: Andy Fleming @ 2008-12-29 18:58 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

This pull request supercedes the previous one, and contains the fixup patches
from Peter Tyser for 5200 board support


Dave Liu (1):
      85xx: Fix the boot window issue

Haiying Wang (1):
      Set IVPR to kenrel entry point in second core boot page

Kumar Gala (3):
      85xx: Add support to populate addr map based on TLB settings
      ppc: Use addrmap in virt_to_phys and map_physmem.
      NAND FSL elbc: Use virt_to_phys to determine which bank is in use

Paul Gortmaker (3):
      sbc8548: don't enable the 3rd and 4th eTSEC
      sbc8548: enable command line editing by default.
      sbc8548: use proper PHY address

Peter Tyser (7):
      pci/fsl_pci_init: Enable inbound PCI config cycles
      Add support for PCA953x I2C gpio devices
      XPedite5370 board support
      85xx: Enable inbound PCI config cycles for X-ES boards
      XPedite5200 board support
      XPedite5200 board support cleanup
      85xx: Enable inbound PCI config cycles for X-ES boards cleanup

Trent Piepho (5):
      mpc8[56]xx: Put localbus clock in device tree
      mpc8xxx: LCRR[CLKDIV] is sometimes five bits
      mpc8568: Double local bus clock divider
      mpc86xx: Double local bus clock divider
      mpc8[56]xx: Put localbus clock in sysinfo and gd

 MAINTAINERS                             |    4 +
 MAKEALL                                 |    2 +
 Makefile                                |    8 +
 README                                  |    9 +
 board/freescale/mpc8540ads/mpc8540ads.c |    2 +-
 board/freescale/mpc8541cds/mpc8541cds.c |    2 +-
 board/freescale/mpc8548cds/mpc8548cds.c |    2 +-
 board/freescale/mpc8555cds/mpc8555cds.c |    2 +-
 board/freescale/mpc8560ads/mpc8560ads.c |    2 +-
 board/freescale/mpc8568mds/mpc8568mds.c |    2 +-
 board/mpc8540eval/mpc8540eval.c         |    2 +-
 board/pm854/pm854.c                     |    2 +-
 board/pm856/pm856.c                     |    2 +-
 board/sbc8548/sbc8548.c                 |    2 +-
 board/socrates/socrates.c               |    2 +-
 board/tqc/tqm85xx/tqm85xx.c             |    2 +-
 board/xes/common/Makefile               |   57 +++
 board/xes/common/actl_nand.c            |   65 ++++
 board/xes/common/fsl_8572_clk.c         |   51 +++
 board/xes/common/fsl_85xx_ddr.c         |   93 +++++
 board/xes/common/fsl_85xx_pci.c         |  379 ++++++++++++++++++++
 board/xes/xpedite5200/Makefile          |   55 +++
 board/xes/xpedite5200/config.mk         |   34 ++
 board/xes/xpedite5200/ddr.c             |   91 +++++
 board/xes/xpedite5200/law.c             |   51 +++
 board/xes/xpedite5200/tlb.c             |   85 +++++
 board/xes/xpedite5200/u-boot.lds        |  145 ++++++++
 board/xes/xpedite5200/xpedite5200.c     |  125 +++++++
 board/xes/xpedite5370/Makefile          |   45 +++
 board/xes/xpedite5370/config.mk         |   35 ++
 board/xes/xpedite5370/ddr.c             |  270 ++++++++++++++
 board/xes/xpedite5370/law.c             |   54 +++
 board/xes/xpedite5370/tlb.c             |   94 +++++
 board/xes/xpedite5370/u-boot.lds        |  145 ++++++++
 board/xes/xpedite5370/xpedite5370.c     |  128 +++++++
 cpu/mpc85xx/cpu.c                       |   31 +--
 cpu/mpc85xx/fdt.c                       |    8 +-
 cpu/mpc85xx/release.S                   |    1 +
 cpu/mpc85xx/speed.c                     |   27 ++
 cpu/mpc85xx/start.S                     |   16 +-
 cpu/mpc85xx/tlb.c                       |   34 ++
 cpu/mpc86xx/cpu.c                       |   21 +-
 cpu/mpc86xx/fdt.c                       |    9 +
 cpu/mpc86xx/speed.c                     |   19 +
 drivers/gpio/Makefile                   |   47 +++
 drivers/gpio/pca953x.c                  |  227 ++++++++++++
 drivers/mtd/nand/fsl_elbc_nand.c        |    6 +-
 drivers/pci/fsl_pci_init.c              |   29 ++
 include/asm-ppc/fsl_lbc.h               |    5 +-
 include/asm-ppc/global_data.h           |    3 +
 include/asm-ppc/io.h                    |   12 +
 include/asm-ppc/mmu.h                   |    3 +
 include/configs/XPEDITE5200.h           |  546 ++++++++++++++++++++++++++++
 include/configs/XPEDITE5370.h           |  589 +++++++++++++++++++++++++++++++
 include/configs/sbc8548.h               |   20 +-
 include/e500.h                          |    1 +
 include/mpc86xx.h                       |    1 +
 include/pca953x.h                       |   39 ++
 lib_ppc/board.c                         |    8 +
 59 files changed, 3668 insertions(+), 83 deletions(-)
 create mode 100644 board/xes/common/Makefile
 create mode 100644 board/xes/common/actl_nand.c
 create mode 100644 board/xes/common/fsl_8572_clk.c
 create mode 100644 board/xes/common/fsl_85xx_ddr.c
 create mode 100644 board/xes/common/fsl_85xx_pci.c
 create mode 100644 board/xes/xpedite5200/Makefile
 create mode 100644 board/xes/xpedite5200/config.mk
 create mode 100644 board/xes/xpedite5200/ddr.c
 create mode 100644 board/xes/xpedite5200/law.c
 create mode 100644 board/xes/xpedite5200/tlb.c
 create mode 100644 board/xes/xpedite5200/u-boot.lds
 create mode 100644 board/xes/xpedite5200/xpedite5200.c
 create mode 100644 board/xes/xpedite5370/Makefile
 create mode 100644 board/xes/xpedite5370/config.mk
 create mode 100644 board/xes/xpedite5370/ddr.c
 create mode 100644 board/xes/xpedite5370/law.c
 create mode 100644 board/xes/xpedite5370/tlb.c
 create mode 100644 board/xes/xpedite5370/u-boot.lds
 create mode 100644 board/xes/xpedite5370/xpedite5370.c
 create mode 100644 drivers/gpio/Makefile
 create mode 100644 drivers/gpio/pca953x.c
 create mode 100644 include/configs/XPEDITE5200.h
 create mode 100644 include/configs/XPEDITE5370.h
 create mode 100644 include/pca953x.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-12-23  0:31   ` Andy Fleming
@ 2008-12-23 16:16     ` Peter Tyser
  0 siblings, 0 replies; 172+ messages in thread
From: Peter Tyser @ 2008-12-23 16:16 UTC (permalink / raw)
  To: u-boot

> >
> > Let me know if I should take any action.
> 
> Ugh, yeah, if you could submit patches which fix this, I'd appreciate
> it.  I had some difficulty getting the patches to apply in the right
> order (mailbox issues), and must have lost some things in the merge.

I'll submit 2 patches to fix the issues later today.

Best,
Peter

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-12-23  0:08 ` Peter Tyser
@ 2008-12-23  0:31   ` Andy Fleming
  2008-12-23 16:16     ` Peter Tyser
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-12-23  0:31 UTC (permalink / raw)
  To: u-boot

On Mon, Dec 22, 2008 at 6:08 PM, Peter Tyser <ptyser@xes-inc.com> wrote:
> Hi Andy,
>
> On Mon, 2008-12-22 at 13:36 -0600, Andy Fleming wrote:
>> are available in the git repository at:
>>
>>   git://www.denx.de/git/u-boot-mpc85xx.git master
>
> <snip>
>
>> Peter Tyser (5):
>>       pci/fsl_pci_init: Enable inbound PCI config cycles
>>       Add support for PCA953x I2C gpio devices
>>       XPedite5370 board support
>>       85xx: Enable inbound PCI config cycles for X-ES boards
>>       XPedite5200 board support
>
> Thanks for picking up these patches.  It looks like something got a bit
> messed up in the process however.
>
> 1. The order of application of "85xx: Enable inbound PCI config cycles
> for X-ES boards" and "XPedite5200 board support" should be swapped - the
> "85xx: Enable inbound PCI config cycles for X-ES boards" patch modifies
> some code that "XPedite5200 board support" added.  I'm fine with
> submitting another patch to resolve any issues if that's easier for you.
>
> 2. The "XPedite5200 board support" patch in the 85xx branch only appears
> to change files which exist, it doesn't add a number of necessary, new
> files.  eg diff stat from the patch:
>  MAINTAINERS                         |    1 +
>  MAKEALL                             |    1 +
>  Makefile                            |    3 +
>  board/xes/common/Makefile           |    3 +-
>  board/xes/common/actl_nand.c        |   65 ++++
>  board/xes/common/fsl_85xx_pci.c     |  103 +++++++-
>  board/xes/xpedite5200/Makefile      |   55 ++++
>  board/xes/xpedite5200/config.mk     |   34 +++
>  board/xes/xpedite5200/ddr.c         |   91 ++++++
>  board/xes/xpedite5200/law.c         |   51 ++++
>  board/xes/xpedite5200/tlb.c         |   85 ++++++
>  board/xes/xpedite5200/u-boot.lds    |  145 +++++++++
>  board/xes/xpedite5200/xpedite5200.c |  125 ++++++++
>  include/configs/XPEDITE5200.h       |  546
> +++++++++++++++++++++++++++++++++++
>  14 files changed, 1303 insertions(+), 5 deletions(-)
>  create mode 100644 board/xes/common/actl_nand.c
>  create mode 100644 board/xes/xpedite5200/Makefile
>  create mode 100644 board/xes/xpedite5200/config.mk
>  create mode 100644 board/xes/xpedite5200/ddr.c
>  create mode 100644 board/xes/xpedite5200/law.c
>  create mode 100644 board/xes/xpedite5200/tlb.c
>  create mode 100644 board/xes/xpedite5200/u-boot.lds
>  create mode 100644 board/xes/xpedite5200/xpedite5200.c
>
> vs modified files from what's in 85xx branch:
> MAINTAINERS
> MAKEALL
> Makefile
> board/xes/common/Makefile
> board/xes/common/fsl_85xx_pci.c
>
> Let me know if I should take any action.

Ugh, yeah, if you could submit patches which fix this, I'd appreciate
it.  I had some difficulty getting the patches to apply in the right
order (mailbox issues), and must have lost some things in the merge.

Andy

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-12-22 19:36 Andy Fleming
@ 2008-12-23  0:08 ` Peter Tyser
  2008-12-23  0:31   ` Andy Fleming
  2008-12-30 22:36 ` Wolfgang Denk
  1 sibling, 1 reply; 172+ messages in thread
From: Peter Tyser @ 2008-12-23  0:08 UTC (permalink / raw)
  To: u-boot

Hi Andy,

On Mon, 2008-12-22 at 13:36 -0600, Andy Fleming wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master

<snip>

> Peter Tyser (5):
>       pci/fsl_pci_init: Enable inbound PCI config cycles
>       Add support for PCA953x I2C gpio devices
>       XPedite5370 board support
>       85xx: Enable inbound PCI config cycles for X-ES boards
>       XPedite5200 board support

Thanks for picking up these patches.  It looks like something got a bit
messed up in the process however.

1. The order of application of "85xx: Enable inbound PCI config cycles
for X-ES boards" and "XPedite5200 board support" should be swapped - the
"85xx: Enable inbound PCI config cycles for X-ES boards" patch modifies
some code that "XPedite5200 board support" added.  I'm fine with
submitting another patch to resolve any issues if that's easier for you.

2. The "XPedite5200 board support" patch in the 85xx branch only appears
to change files which exist, it doesn't add a number of necessary, new
files.  eg diff stat from the patch:
 MAINTAINERS                         |    1 +
 MAKEALL                             |    1 +
 Makefile                            |    3 +
 board/xes/common/Makefile           |    3 +-
 board/xes/common/actl_nand.c        |   65 ++++
 board/xes/common/fsl_85xx_pci.c     |  103 +++++++-
 board/xes/xpedite5200/Makefile      |   55 ++++
 board/xes/xpedite5200/config.mk     |   34 +++
 board/xes/xpedite5200/ddr.c         |   91 ++++++
 board/xes/xpedite5200/law.c         |   51 ++++
 board/xes/xpedite5200/tlb.c         |   85 ++++++
 board/xes/xpedite5200/u-boot.lds    |  145 +++++++++
 board/xes/xpedite5200/xpedite5200.c |  125 ++++++++
 include/configs/XPEDITE5200.h       |  546
+++++++++++++++++++++++++++++++++++
 14 files changed, 1303 insertions(+), 5 deletions(-)
 create mode 100644 board/xes/common/actl_nand.c
 create mode 100644 board/xes/xpedite5200/Makefile
 create mode 100644 board/xes/xpedite5200/config.mk
 create mode 100644 board/xes/xpedite5200/ddr.c
 create mode 100644 board/xes/xpedite5200/law.c
 create mode 100644 board/xes/xpedite5200/tlb.c
 create mode 100644 board/xes/xpedite5200/u-boot.lds
 create mode 100644 board/xes/xpedite5200/xpedite5200.c

vs modified files from what's in 85xx branch:
MAINTAINERS
MAKEALL
Makefile
board/xes/common/Makefile
board/xes/common/fsl_85xx_pci.c

Let me know if I should take any action.

Best,
Peter

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-12-22 19:36 Andy Fleming
  2008-12-23  0:08 ` Peter Tyser
  2008-12-30 22:36 ` Wolfgang Denk
  0 siblings, 2 replies; 172+ messages in thread
From: Andy Fleming @ 2008-12-22 19:36 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Dave Liu (1):
      85xx: Fix the boot window issue

Haiying Wang (1):
      Set IVPR to kenrel entry point in second core boot page

Kumar Gala (3):
      85xx: Add support to populate addr map based on TLB settings
      ppc: Use addrmap in virt_to_phys and map_physmem.
      NAND FSL elbc: Use virt_to_phys to determine which bank is in use

Paul Gortmaker (3):
      sbc8548: don't enable the 3rd and 4th eTSEC
      sbc8548: enable command line editing by default.
      sbc8548: use proper PHY address

Peter Tyser (5):
      pci/fsl_pci_init: Enable inbound PCI config cycles
      Add support for PCA953x I2C gpio devices
      XPedite5370 board support
      85xx: Enable inbound PCI config cycles for X-ES boards
      XPedite5200 board support

Trent Piepho (5):
      mpc8[56]xx: Put localbus clock in device tree
      mpc8xxx: LCRR[CLKDIV] is sometimes five bits
      mpc8568: Double local bus clock divider
      mpc86xx: Double local bus clock divider
      mpc8[56]xx: Put localbus clock in sysinfo and gd

 MAINTAINERS                             |    4 +
 MAKEALL                                 |    2 +
 Makefile                                |    8 +
 README                                  |    9 +
 board/freescale/mpc8540ads/mpc8540ads.c |    2 +-
 board/freescale/mpc8541cds/mpc8541cds.c |    2 +-
 board/freescale/mpc8548cds/mpc8548cds.c |    2 +-
 board/freescale/mpc8555cds/mpc8555cds.c |    2 +-
 board/freescale/mpc8560ads/mpc8560ads.c |    2 +-
 board/freescale/mpc8568mds/mpc8568mds.c |    2 +-
 board/mpc8540eval/mpc8540eval.c         |    2 +-
 board/pm854/pm854.c                     |    2 +-
 board/pm856/pm856.c                     |    2 +-
 board/sbc8548/sbc8548.c                 |    2 +-
 board/socrates/socrates.c               |    2 +-
 board/tqc/tqm85xx/tqm85xx.c             |    2 +-
 board/xes/common/Makefile               |   57 +++
 board/xes/common/fsl_8572_clk.c         |   51 +++
 board/xes/common/fsl_85xx_ddr.c         |   93 +++++
 board/xes/common/fsl_85xx_pci.c         |  375 ++++++++++++++++++++
 board/xes/xpedite5370/Makefile          |   45 +++
 board/xes/xpedite5370/config.mk         |   35 ++
 board/xes/xpedite5370/ddr.c             |  270 ++++++++++++++
 board/xes/xpedite5370/law.c             |   54 +++
 board/xes/xpedite5370/tlb.c             |   94 +++++
 board/xes/xpedite5370/u-boot.lds        |  145 ++++++++
 board/xes/xpedite5370/xpedite5370.c     |  128 +++++++
 cpu/mpc85xx/cpu.c                       |   31 +--
 cpu/mpc85xx/fdt.c                       |    8 +-
 cpu/mpc85xx/release.S                   |    1 +
 cpu/mpc85xx/speed.c                     |   27 ++
 cpu/mpc85xx/start.S                     |   16 +-
 cpu/mpc85xx/tlb.c                       |   34 ++
 cpu/mpc86xx/cpu.c                       |   21 +-
 cpu/mpc86xx/fdt.c                       |    9 +
 cpu/mpc86xx/speed.c                     |   19 +
 drivers/gpio/Makefile                   |   47 +++
 drivers/gpio/pca953x.c                  |  227 ++++++++++++
 drivers/mtd/nand/fsl_elbc_nand.c        |    6 +-
 drivers/pci/fsl_pci_init.c              |   29 ++
 include/asm-ppc/fsl_lbc.h               |    5 +-
 include/asm-ppc/global_data.h           |    3 +
 include/asm-ppc/io.h                    |   12 +
 include/asm-ppc/mmu.h                   |    3 +
 include/configs/XPEDITE5370.h           |  589 +++++++++++++++++++++++++++++++
 include/configs/sbc8548.h               |   20 +-
 include/e500.h                          |    1 +
 include/mpc86xx.h                       |    1 +
 include/pca953x.h                       |   39 ++
 lib_ppc/board.c                         |    8 +
 50 files changed, 2467 insertions(+), 83 deletions(-)
 create mode 100644 board/xes/common/Makefile
 create mode 100644 board/xes/common/fsl_8572_clk.c
 create mode 100644 board/xes/common/fsl_85xx_ddr.c
 create mode 100644 board/xes/common/fsl_85xx_pci.c
 create mode 100644 board/xes/xpedite5370/Makefile
 create mode 100644 board/xes/xpedite5370/config.mk
 create mode 100644 board/xes/xpedite5370/ddr.c
 create mode 100644 board/xes/xpedite5370/law.c
 create mode 100644 board/xes/xpedite5370/tlb.c
 create mode 100644 board/xes/xpedite5370/u-boot.lds
 create mode 100644 board/xes/xpedite5370/xpedite5370.c
 create mode 100644 drivers/gpio/Makefile
 create mode 100644 drivers/gpio/pca953x.c
 create mode 100644 include/configs/XPEDITE5370.h
 create mode 100644 include/pca953x.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-12-04 19:08 Andy Fleming
@ 2008-12-04 23:21 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-12-04 23:21 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1228417691-17755-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Anatolij Gustschin (1):
>       85xx: socrates: fix DDR SDRAM tlb entry configuration
> 
> Becky Bruce (1):
>       drivers/fsl_pci_init: Fix inbound window mapping bug
> 
> Dave Liu (3):
>       85xx: remove the unused ddr_enable_ecc in the board file
>       85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
>       85xx: fix the wrong DDR settings for MPC8572DS
> 
> Ed Swarthout (1):
>       fsl ddr skip interleaving if not supported.
> 
> Jon Loeliger (1):
>       Removed unused CONFIG_L1_INIT_RAM symbol.
> 
> Kumar Gala (3):
>       FSL: Moved BR_PHYS_ADDR for localbus to common header
>       85xx: Fix relocation of CCSRBAR
>       85xx: init gd as early as possible
> 
> Peter Tyser (2):
>       85xx: Add CPU 2 errata workaround to all 8548 boards
>       85xx: Add PORDEVSR_PCI1 define
> 
>  board/atum8548/atum8548.c               |   10 ---------
>  board/freescale/mpc8536ds/mpc8536ds.c   |   16 +------------
>  board/freescale/mpc8544ds/mpc8544ds.c   |   10 ---------
>  board/freescale/mpc8548cds/mpc8548cds.c |   25 +---------------------
>  board/freescale/mpc8568mds/mpc8568mds.c |   12 -----------
>  board/freescale/mpc8572ds/mpc8572ds.c   |   16 +------------
>  board/sbc8548/sbc8548.c                 |   19 +----------------
>  board/socrates/tlb.c                    |    2 +
>  board/tqc/tqm85xx/tqm85xx.c             |    2 +-
>  cpu/mpc85xx/cpu_init.c                  |   34 +++++++++++++++++++++---------
>  cpu/mpc85xx/pci.c                       |    2 +-
>  cpu/mpc8xxx/ddr/main.c                  |    9 ++++++-
>  cpu/mpc8xxx/ddr/options.c               |   20 +++++++++---------
>  drivers/pci/fsl_pci_init.c              |    2 +-
>  include/asm-ppc/fsl_lbc.h               |    8 +++++++
>  include/asm-ppc/immap_85xx.h            |    3 +-
>  include/configs/MPC8349EMDS.h           |    1 -
>  include/configs/MPC8349ITX.h            |    1 -
>  include/configs/MPC8536DS.h             |    4 +--
>  include/configs/MPC8540ADS.h            |    1 -
>  include/configs/MPC8540EVAL.h           |    1 -
>  include/configs/MPC8541CDS.h            |    1 -
>  include/configs/MPC8544DS.h             |    4 +--
>  include/configs/MPC8548CDS.h            |    3 +-
>  include/configs/MPC8555CDS.h            |    1 -
>  include/configs/MPC8560ADS.h            |    1 -
>  include/configs/MPC8568MDS.h            |    3 +-
>  include/configs/MPC8572DS.h             |   29 ++++++++++++-------------
>  include/configs/MPC8610HPCD.h           |    1 -
>  include/configs/MPC8641HPCN.h           |   10 ---------
>  include/configs/MVBLM7.h                |    1 -
>  include/configs/PM854.h                 |    1 -
>  include/configs/PM856.h                 |    1 -
>  include/configs/SBC8540.h               |    1 -
>  include/configs/TQM834x.h               |    1 -
>  include/configs/TQM85xx.h               |    1 -
>  include/configs/sbc8349.h               |    1 -
>  include/configs/sbc8548.h               |    1 -
>  include/configs/sbc8560.h               |    1 -
>  include/configs/sbc8641d.h              |    1 -
>  include/configs/socrates.h              |    1 -
>  include/configs/stxgp3.h                |    1 -
>  include/configs/stxssa.h                |    1 -
>  43 files changed, 79 insertions(+), 185 deletions(-)

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
Human beings were created by water to transport it uphill.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-12-04 19:08 Andy Fleming
  2008-12-04 23:21 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-12-04 19:08 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Anatolij Gustschin (1):
      85xx: socrates: fix DDR SDRAM tlb entry configuration

Becky Bruce (1):
      drivers/fsl_pci_init: Fix inbound window mapping bug

Dave Liu (3):
      85xx: remove the unused ddr_enable_ecc in the board file
      85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
      85xx: fix the wrong DDR settings for MPC8572DS

Ed Swarthout (1):
      fsl ddr skip interleaving if not supported.

Jon Loeliger (1):
      Removed unused CONFIG_L1_INIT_RAM symbol.

Kumar Gala (3):
      FSL: Moved BR_PHYS_ADDR for localbus to common header
      85xx: Fix relocation of CCSRBAR
      85xx: init gd as early as possible

Peter Tyser (2):
      85xx: Add CPU 2 errata workaround to all 8548 boards
      85xx: Add PORDEVSR_PCI1 define

 board/atum8548/atum8548.c               |   10 ---------
 board/freescale/mpc8536ds/mpc8536ds.c   |   16 +------------
 board/freescale/mpc8544ds/mpc8544ds.c   |   10 ---------
 board/freescale/mpc8548cds/mpc8548cds.c |   25 +---------------------
 board/freescale/mpc8568mds/mpc8568mds.c |   12 -----------
 board/freescale/mpc8572ds/mpc8572ds.c   |   16 +------------
 board/sbc8548/sbc8548.c                 |   19 +----------------
 board/socrates/tlb.c                    |    2 +
 board/tqc/tqm85xx/tqm85xx.c             |    2 +-
 cpu/mpc85xx/cpu_init.c                  |   34 +++++++++++++++++++++---------
 cpu/mpc85xx/pci.c                       |    2 +-
 cpu/mpc8xxx/ddr/main.c                  |    9 ++++++-
 cpu/mpc8xxx/ddr/options.c               |   20 +++++++++---------
 drivers/pci/fsl_pci_init.c              |    2 +-
 include/asm-ppc/fsl_lbc.h               |    8 +++++++
 include/asm-ppc/immap_85xx.h            |    3 +-
 include/configs/MPC8349EMDS.h           |    1 -
 include/configs/MPC8349ITX.h            |    1 -
 include/configs/MPC8536DS.h             |    4 +--
 include/configs/MPC8540ADS.h            |    1 -
 include/configs/MPC8540EVAL.h           |    1 -
 include/configs/MPC8541CDS.h            |    1 -
 include/configs/MPC8544DS.h             |    4 +--
 include/configs/MPC8548CDS.h            |    3 +-
 include/configs/MPC8555CDS.h            |    1 -
 include/configs/MPC8560ADS.h            |    1 -
 include/configs/MPC8568MDS.h            |    3 +-
 include/configs/MPC8572DS.h             |   29 ++++++++++++-------------
 include/configs/MPC8610HPCD.h           |    1 -
 include/configs/MPC8641HPCN.h           |   10 ---------
 include/configs/MVBLM7.h                |    1 -
 include/configs/PM854.h                 |    1 -
 include/configs/PM856.h                 |    1 -
 include/configs/SBC8540.h               |    1 -
 include/configs/TQM834x.h               |    1 -
 include/configs/TQM85xx.h               |    1 -
 include/configs/sbc8349.h               |    1 -
 include/configs/sbc8548.h               |    1 -
 include/configs/sbc8560.h               |    1 -
 include/configs/sbc8641d.h              |    1 -
 include/configs/socrates.h              |    1 -
 include/configs/stxgp3.h                |    1 -
 include/configs/stxssa.h                |    1 -
 43 files changed, 79 insertions(+), 185 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-27 22:32 Andy Fleming
@ 2008-10-27 22:51 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-27 22:51 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1225146770-28111-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Andy Fleming (1):
>       Merge branch 'denx'
> 
> Becky Bruce (1):
>       powerpc: fix pci window initialization to work with > 4GB DRAM
> 
> Kumar Gala (1):
>       pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
> 
> Peter Tyser (1):
>       85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
> 
>  drivers/pci/fsl_pci_init.c   |   24 ++++++++++++++----------
>  include/asm-ppc/immap_85xx.h |    2 +-
>  2 files changed, 15 insertions(+), 11 deletions(-)

Done, 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
"I say we take off; nuke the site from orbit. It's the only way to be
sure."                                  - Corporal Hicks, in "Aliens"

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-10-27 22:32 Andy Fleming
  2008-10-27 22:51 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-10-27 22:32 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Andy Fleming (1):
      Merge branch 'denx'

Becky Bruce (1):
      powerpc: fix pci window initialization to work with > 4GB DRAM

Kumar Gala (1):
      pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.

Peter Tyser (1):
      85xx: Update MPC85xx_PORDEVSR_IO_SEL mask

 drivers/pci/fsl_pci_init.c   |   24 ++++++++++++++----------
 include/asm-ppc/immap_85xx.h |    2 +-
 2 files changed, 15 insertions(+), 11 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-24 22:47 Andy Fleming
@ 2008-10-27 21:32 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-27 21:32 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1224888459-7670-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Dave Liu (2):
>       85xx: remove unused config definition
>       85xx: Fix the incorrect register used for DDR erratum1
> 
> Kumar Gala (12):
>       85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
>       85xx: Add basic e500mc core support
>       pci: Allow for PCI addresses to be 64-bit
>       85xx: Enable 64-bit PCI resources on all Freescale boards
>       86xx: Enable 64-bit PCI resources on all Freescale boards
>       fdt: Add fdt_getprop_u32_default helpers
>       fdt: Added helper to set PCI dma-ranges property
>       pci/fsl_pci_init: Enable larger address and setting inbound windows properly
>       pci/fsl_pci_init: Add a common PCI inbound setup function
>       pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
>       85xx: Convert all fsl_pci_init users to new APIs
>       86xx: Convert all fsl_pci_init users to new APIs
> 
>  board/atum8548/atum8548.c                 |   77 +++++-----------
>  board/freescale/mpc8536ds/mpc8536ds.c     |  110 ++++++++---------------
>  board/freescale/mpc8544ds/mpc8544ds.c     |  109 ++++++++---------------
>  board/freescale/mpc8548cds/mpc8548cds.c   |   57 ++++--------
>  board/freescale/mpc8568mds/mpc8568mds.c   |   56 ++++--------
>  board/freescale/mpc8572ds/mpc8572ds.c     |   72 +++++----------
>  board/freescale/mpc8610hpcd/mpc8610hpcd.c |   78 +++++-----------
>  board/freescale/mpc8641hpcn/mpc8641hpcn.c |   53 ++++--------
>  board/sbc8548/sbc8548.c                   |   66 ++++----------
>  board/sbc8641d/sbc8641d.c                 |   55 ++++--------
>  board/tqc/tqm85xx/tqm85xx.c               |   58 ++++--------
>  common/fdt_support.c                      |   96 ++++++++++++++++++++
>  cpu/mpc85xx/cpu.c                         |    4 +
>  cpu/mpc85xx/ddr-gen3.c                    |    9 ++-
>  cpu/mpc85xx/release.S                     |    8 ++
>  cpu/mpc85xx/start.S                       |    6 +-
>  drivers/pci/fsl_pci_init.c                |  139 ++++++++++++++++++++++++++---
>  drivers/pci/pci.c                         |   37 ++++++---
>  drivers/pci/pci_auto.c                    |   88 +++++++++++--------
>  include/asm-ppc/cache.h                   |    2 +
>  include/configs/ATUM8548.h                |    5 -
>  include/configs/MPC8536DS.h               |   14 +---
>  include/configs/MPC8540ADS.h              |    1 +
>  include/configs/MPC8541CDS.h              |    1 +
>  include/configs/MPC8544DS.h               |    6 +-
>  include/configs/MPC8548CDS.h              |    6 +-
>  include/configs/MPC8555CDS.h              |    1 +
>  include/configs/MPC8560ADS.h              |    1 +
>  include/configs/MPC8568MDS.h              |    6 +-
>  include/configs/MPC8572DS.h               |   16 +---
>  include/configs/MPC8610HPCD.h             |    6 +-
>  include/configs/MPC8641HPCN.h             |    6 +-
>  include/configs/TQM85xx.h                 |    5 -
>  include/configs/sbc8548.h                 |    5 -
>  include/configs/sbc8641d.h                |    5 -
>  include/fdt_support.h                     |    7 ++
>  include/pci.h                             |   40 +++++----
>  37 files changed, 624 insertions(+), 687 deletions(-)

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
Power is danger.
	-- The Centurion, "Balance of Terror", stardate 1709.2

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-10-24 22:47 Andy Fleming
  2008-10-27 21:32 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-10-24 22:47 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Dave Liu (2):
      85xx: remove unused config definition
      85xx: Fix the incorrect register used for DDR erratum1

Kumar Gala (12):
      85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
      85xx: Add basic e500mc core support
      pci: Allow for PCI addresses to be 64-bit
      85xx: Enable 64-bit PCI resources on all Freescale boards
      86xx: Enable 64-bit PCI resources on all Freescale boards
      fdt: Add fdt_getprop_u32_default helpers
      fdt: Added helper to set PCI dma-ranges property
      pci/fsl_pci_init: Enable larger address and setting inbound windows properly
      pci/fsl_pci_init: Add a common PCI inbound setup function
      pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
      85xx: Convert all fsl_pci_init users to new APIs
      86xx: Convert all fsl_pci_init users to new APIs

 board/atum8548/atum8548.c                 |   77 +++++-----------
 board/freescale/mpc8536ds/mpc8536ds.c     |  110 ++++++++---------------
 board/freescale/mpc8544ds/mpc8544ds.c     |  109 ++++++++---------------
 board/freescale/mpc8548cds/mpc8548cds.c   |   57 ++++--------
 board/freescale/mpc8568mds/mpc8568mds.c   |   56 ++++--------
 board/freescale/mpc8572ds/mpc8572ds.c     |   72 +++++----------
 board/freescale/mpc8610hpcd/mpc8610hpcd.c |   78 +++++-----------
 board/freescale/mpc8641hpcn/mpc8641hpcn.c |   53 ++++--------
 board/sbc8548/sbc8548.c                   |   66 ++++----------
 board/sbc8641d/sbc8641d.c                 |   55 ++++--------
 board/tqc/tqm85xx/tqm85xx.c               |   58 ++++--------
 common/fdt_support.c                      |   96 ++++++++++++++++++++
 cpu/mpc85xx/cpu.c                         |    4 +
 cpu/mpc85xx/ddr-gen3.c                    |    9 ++-
 cpu/mpc85xx/release.S                     |    8 ++
 cpu/mpc85xx/start.S                       |    6 +-
 drivers/pci/fsl_pci_init.c                |  139 ++++++++++++++++++++++++++---
 drivers/pci/pci.c                         |   37 ++++++---
 drivers/pci/pci_auto.c                    |   88 +++++++++++--------
 include/asm-ppc/cache.h                   |    2 +
 include/configs/ATUM8548.h                |    5 -
 include/configs/MPC8536DS.h               |   14 +---
 include/configs/MPC8540ADS.h              |    1 +
 include/configs/MPC8541CDS.h              |    1 +
 include/configs/MPC8544DS.h               |    6 +-
 include/configs/MPC8548CDS.h              |    6 +-
 include/configs/MPC8555CDS.h              |    1 +
 include/configs/MPC8560ADS.h              |    1 +
 include/configs/MPC8568MDS.h              |    6 +-
 include/configs/MPC8572DS.h               |   16 +---
 include/configs/MPC8610HPCD.h             |    6 +-
 include/configs/MPC8641HPCN.h             |    6 +-
 include/configs/TQM85xx.h                 |    5 -
 include/configs/sbc8548.h                 |    5 -
 include/configs/sbc8641d.h                |    5 -
 include/fdt_support.h                     |    7 ++
 include/pci.h                             |   40 +++++----
 37 files changed, 624 insertions(+), 687 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-17 20:01 Andy Fleming
  2008-10-17 20:14 ` Wolfgang Denk
@ 2008-10-17 20:54 ` Wolfgang Denk
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-17 20:54 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1224273694-4579-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
> 
> My apologies for the previous mail (which will hopefully never make it through
> moderator approval).  I mistyped the branch name, and it found many commits
> which are (obviously) not part of my domain.  Here is the correct request:
> 
> Andy Fleming (1):
>       Have u-boot pass stashing parameters into device tree
> 
> Ed Swarthout (5):
>       pixis do not print long help if not configured
>       85xx if NUM_CPUS>1, print cpu number
>       mpc8572 additional end-point mode
>       fsl_law clear enable before changing.
>       Add cpu/8xxx to TAGS_SUBDIRS
> 
> Haiying Wang (6):
>       Make DDR interleaving mode work correctly
>       Pass dimm parameters to populate populate controller options
>       Check DDR interleaving mode
>       Add debug information for DDR controller registers
>       Add ddr interleaving suppport for MPC8572DS board
>       Add DDR options setting on MPC8641HPCN board
> 
> Jason Jin (1):
>       Enabled the Freescale SGMII riser card on 8536DS
> 
> Kumar Gala (3):
>       85xx: Export invalidate_{i,d}cache and add flush_dcache
>       85xx: Improve flash remapping on MPC8572DS & MPC8536DS
>       85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
> 
> Liu Yu (2):
>       Make pixis_set_sgmii more general to support MPC85xx boards.
>       Enabled the Freescale SGMII riser card on 8572DS
> 
>  Makefile                                           |    2 +
>  board/atum8548/ddr.c                               |    5 +-
>  board/freescale/common/pixis.c                     |   26 +++-
>  board/freescale/mpc8536ds/ddr.c                    |    5 +-
>  board/freescale/mpc8536ds/mpc8536ds.c              |   52 ++++++-
>  board/freescale/mpc8536ds/tlb.c                    |    2 +-
>  board/freescale/mpc8540ads/ddr.c                   |    5 +-
>  board/freescale/mpc8541cds/ddr.c                   |    5 +-
>  board/freescale/mpc8544ds/ddr.c                    |    5 +-
>  board/freescale/mpc8548cds/ddr.c                   |    5 +-
>  board/freescale/mpc8555cds/ddr.c                   |    5 +-
>  board/freescale/mpc8560ads/ddr.c                   |    5 +-
>  board/freescale/mpc8568mds/ddr.c                   |    5 +-
>  board/freescale/mpc8572ds/ddr.c                    |  127 +++++++++++++----
>  board/freescale/mpc8572ds/mpc8572ds.c              |   62 +++++++-
>  board/freescale/mpc8572ds/tlb.c                    |    2 +-
>  board/freescale/mpc8610hpcd/ddr.c                  |    5 +-
>  board/freescale/mpc8641hpcn/ddr.c                  |  147 +++++++++++++++-----
>  board/mpc8540eval/ddr.c                            |    5 +-
>  board/pm854/ddr.c                                  |    5 +-
>  board/pm856/ddr.c                                  |    5 +-
>  board/sbc8548/ddr.c                                |    5 +-
>  board/sbc8560/ddr.c                                |    5 +-
>  board/sbc8641d/ddr.c                               |    5 +-
>  board/socrates/ddr.c                               |    5 +-
>  board/stxgp3/ddr.c                                 |    5 +-
>  board/stxssa/ddr.c                                 |    5 +-
>  cpu/mpc85xx/cpu.c                                  |    5 +
>  cpu/mpc85xx/fdt.c                                  |   11 ++
>  cpu/mpc85xx/start.S                                |   49 +++++++
>  cpu/mpc8xxx/ddr/ctrl_regs.c                        |   74 ++++++++--
>  cpu/mpc8xxx/ddr/ddr.h                              |    3 +-
>  cpu/mpc8xxx/ddr/main.c                             |   45 ++++++-
>  cpu/mpc8xxx/ddr/options.c                          |   84 +++++++++++-
>  doc/README.fsl-ddr                                 |   69 +++++++++
>  drivers/misc/fsl_law.c                             |    1 +
>  include/asm-ppc/cache.h                            |    1 +
>  .../asm-ppc/fsl_ddr_dimm_params.h                  |    0 
>  include/asm-ppc/fsl_ddr_sdram.h                    |   12 ++
>  include/configs/MPC8536DS.h                        |    5 +
>  include/configs/MPC8540ADS.h                       |    2 +
>  include/configs/MPC8541CDS.h                       |    2 +
>  include/configs/MPC8544DS.h                        |    5 +
>  include/configs/MPC8548CDS.h                       |    2 +
>  include/configs/MPC8555CDS.h                       |    2 +
>  include/configs/MPC8560ADS.h                       |    2 +
>  include/configs/MPC8568MDS.h                       |    2 +
>  include/configs/MPC8572DS.h                        |   29 ++++-
>  48 files changed, 797 insertions(+), 123 deletions(-)
>  create mode 100644 doc/README.fsl-ddr
>  rename cpu/mpc8xxx/ddr/ddr1_2_dimm_params.h => include/asm-ppc/fsl_ddr_dimm_params.h (100%)

Pulled into "next" branch.

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
The game of life is a game of boomerangs.  Our  thoughts,  deeds  and
words return to us sooner or later with astounding accuracy.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-17 20:36   ` Kumar Gala
@ 2008-10-17 20:42     ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-17 20:42 UTC (permalink / raw)
  To: u-boot

Dear Kumar,

In message <4442BA47-6578-4C1F-9013-21B8589D6FF0@kernel.crashing.org> you wrote:
> 
> > In message <1224273694-4579-1-git-send-email-afleming@freescale.com>  
> > you wrote:
> >> are available in the git repository at:
> >>
> >>  git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
...
> It should be for next.

Thant's what I think, too.

Andy, can you confirm, please?

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
"Buy land. They've stopped making it."                   - Mark Twain

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-17 20:14 ` Wolfgang Denk
@ 2008-10-17 20:36   ` Kumar Gala
  2008-10-17 20:42     ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2008-10-17 20:36 UTC (permalink / raw)
  To: u-boot


On Oct 17, 2008, at 3:14 PM, Wolfgang Denk wrote:

> Dear Andy Fleming,
>
> In message <1224273694-4579-1-git-send-email-afleming@freescale.com>  
> you wrote:
>> are available in the git repository at:
>>
>>  git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
>>
>> My apologies for the previous mail (which will hopefully never make  
>> it through
>> moderator approval).  I mistyped the branch name, and it found many  
>> commits
>> which are (obviously) not part of my domain.  Here is the correct  
>> request:
>
> Sorry, I still don't get it. Is this pull intended  to  go  into  the
> "master"  branch  (i.  e. in the upcoming release - there seems to be
> some new stuff, i. e. not only fixes  in  it?)  or  into  the  "next"
> branch?

It should be for next.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-17 20:01 Andy Fleming
@ 2008-10-17 20:14 ` Wolfgang Denk
  2008-10-17 20:36   ` Kumar Gala
  2008-10-17 20:54 ` Wolfgang Denk
  1 sibling, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-17 20:14 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1224273694-4579-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
> 
> My apologies for the previous mail (which will hopefully never make it through
> moderator approval).  I mistyped the branch name, and it found many commits
> which are (obviously) not part of my domain.  Here is the correct request:

Sorry, I still don't get it. Is this pull intended  to  go  into  the
"master"  branch  (i.  e. in the upcoming release - there seems to be
some new stuff, i. e. not only fixes  in  it?)  or  into  the  "next"
branch?

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
"One day," said a dull voice from down below, "I'm going to  be  back
in  form again and you're going to be very sorry you said that. For a
very long time. I might even go so far as to make even more Time just
for you to be sorry in."              - Terry Pratchett, _Small Gods_

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
       [not found] <1224273000-4303-1-git-send-email-afleming@freescale.com>
@ 2008-10-17 20:02 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-17 20:02 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1224273000-4303-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
> 
> Adam Graham (1):
>       ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
> 
> Andre Schwarz (1):
>       enable 10/100M at VSC8601 at tsec driver
> 
> Andy Fleming (1):
>       Have u-boot pass stashing parameters into device tree
> 
> Anton Vorontsov (1):
>       mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
> 
> Bartlomiej Sieka (5):
>       net: express the first argument to NetSetTimeout() in milliseconds
>       net: Make TFTP server timeout configurable
>       flash: factor out adjusting of Flash address to the end of sector
>       Automatic software update from TFTP server
>       FIT: output image load address for type 'firmware', fix message while there
> 
> David Gibson (2):
>       libfdt: Fix bugs in fdt_get_path()
>       libfdt: Add function to explicitly expand aliases
> 
> Dirk Eibach (1):
>       hwmon: Add LM63 support
...

I'm not sure what I'm supposed to do with this monster pull request?
It looks as if you prepared a pull request for the "next" branch
against the "master" branch ?

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
Hiring experienced unix people is  like  a  built-in  filter  against
idiots. Hiring experienced NT people provides no such guarantee.
            -- Miguel Cruz in WgL96.349$CC.122704 at typhoon2.ba-dsg.net

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-10-17 20:01 Andy Fleming
  2008-10-17 20:14 ` Wolfgang Denk
  2008-10-17 20:54 ` Wolfgang Denk
  0 siblings, 2 replies; 172+ messages in thread
From: Andy Fleming @ 2008-10-17 20:01 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

  git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next

My apologies for the previous mail (which will hopefully never make it through
moderator approval).  I mistyped the branch name, and it found many commits
which are (obviously) not part of my domain.  Here is the correct request:

Andy Fleming (1):
      Have u-boot pass stashing parameters into device tree

Ed Swarthout (5):
      pixis do not print long help if not configured
      85xx if NUM_CPUS>1, print cpu number
      mpc8572 additional end-point mode
      fsl_law clear enable before changing.
      Add cpu/8xxx to TAGS_SUBDIRS

Haiying Wang (6):
      Make DDR interleaving mode work correctly
      Pass dimm parameters to populate populate controller options
      Check DDR interleaving mode
      Add debug information for DDR controller registers
      Add ddr interleaving suppport for MPC8572DS board
      Add DDR options setting on MPC8641HPCN board

Jason Jin (1):
      Enabled the Freescale SGMII riser card on 8536DS

Kumar Gala (3):
      85xx: Export invalidate_{i,d}cache and add flush_dcache
      85xx: Improve flash remapping on MPC8572DS & MPC8536DS
      85xx: Enable interrupt and setexpr commands on Freescale 85xx boards

Liu Yu (2):
      Make pixis_set_sgmii more general to support MPC85xx boards.
      Enabled the Freescale SGMII riser card on 8572DS

 Makefile                                           |    2 +
 board/atum8548/ddr.c                               |    5 +-
 board/freescale/common/pixis.c                     |   26 +++-
 board/freescale/mpc8536ds/ddr.c                    |    5 +-
 board/freescale/mpc8536ds/mpc8536ds.c              |   52 ++++++-
 board/freescale/mpc8536ds/tlb.c                    |    2 +-
 board/freescale/mpc8540ads/ddr.c                   |    5 +-
 board/freescale/mpc8541cds/ddr.c                   |    5 +-
 board/freescale/mpc8544ds/ddr.c                    |    5 +-
 board/freescale/mpc8548cds/ddr.c                   |    5 +-
 board/freescale/mpc8555cds/ddr.c                   |    5 +-
 board/freescale/mpc8560ads/ddr.c                   |    5 +-
 board/freescale/mpc8568mds/ddr.c                   |    5 +-
 board/freescale/mpc8572ds/ddr.c                    |  127 +++++++++++++----
 board/freescale/mpc8572ds/mpc8572ds.c              |   62 +++++++-
 board/freescale/mpc8572ds/tlb.c                    |    2 +-
 board/freescale/mpc8610hpcd/ddr.c                  |    5 +-
 board/freescale/mpc8641hpcn/ddr.c                  |  147 +++++++++++++++-----
 board/mpc8540eval/ddr.c                            |    5 +-
 board/pm854/ddr.c                                  |    5 +-
 board/pm856/ddr.c                                  |    5 +-
 board/sbc8548/ddr.c                                |    5 +-
 board/sbc8560/ddr.c                                |    5 +-
 board/sbc8641d/ddr.c                               |    5 +-
 board/socrates/ddr.c                               |    5 +-
 board/stxgp3/ddr.c                                 |    5 +-
 board/stxssa/ddr.c                                 |    5 +-
 cpu/mpc85xx/cpu.c                                  |    5 +
 cpu/mpc85xx/fdt.c                                  |   11 ++
 cpu/mpc85xx/start.S                                |   49 +++++++
 cpu/mpc8xxx/ddr/ctrl_regs.c                        |   74 ++++++++--
 cpu/mpc8xxx/ddr/ddr.h                              |    3 +-
 cpu/mpc8xxx/ddr/main.c                             |   45 ++++++-
 cpu/mpc8xxx/ddr/options.c                          |   84 +++++++++++-
 doc/README.fsl-ddr                                 |   69 +++++++++
 drivers/misc/fsl_law.c                             |    1 +
 include/asm-ppc/cache.h                            |    1 +
 .../asm-ppc/fsl_ddr_dimm_params.h                  |    0 
 include/asm-ppc/fsl_ddr_sdram.h                    |   12 ++
 include/configs/MPC8536DS.h                        |    5 +
 include/configs/MPC8540ADS.h                       |    2 +
 include/configs/MPC8541CDS.h                       |    2 +
 include/configs/MPC8544DS.h                        |    5 +
 include/configs/MPC8548CDS.h                       |    2 +
 include/configs/MPC8555CDS.h                       |    2 +
 include/configs/MPC8560ADS.h                       |    2 +
 include/configs/MPC8568MDS.h                       |    2 +
 include/configs/MPC8572DS.h                        |   29 ++++-
 48 files changed, 797 insertions(+), 123 deletions(-)
 create mode 100644 doc/README.fsl-ddr
 rename cpu/mpc8xxx/ddr/ddr1_2_dimm_params.h => include/asm-ppc/fsl_ddr_dimm_params.h (100%)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-15  9:31 ` Wolfgang Denk
@ 2008-10-15 14:09   ` Kumar Gala
  0 siblings, 0 replies; 172+ messages in thread
From: Kumar Gala @ 2008-10-15 14:09 UTC (permalink / raw)
  To: u-boot


On Oct 15, 2008, at 4:31 AM, Wolfgang Denk wrote:

> Dear Andy Fleming,
>
> In message <1224024223-8867-1-git-send-email-afleming@freescale.com>  
> you wrote:
>> are available in the git repository at:
>>
>>  git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
>>
>> Andy Fleming (1):
>>      Have u-boot pass stashing parameters into device tree
>>
>> Ed Swarthout (5):
>>      pixis do not print long help if not configured
>>      85xx if NUM_CPUS>1, print cpu number
>>      mpc8572 additional end-point mode
>>      fsl_law clear enable before changing.
>>      Add cpu/8xxx to TAGS_SUBDIRS
>>
>> Haiying Wang (6):
>>      Make DDR interleaving mode work correctly
>>      Pass dimm parameters to populate populate controller options
>>      Check DDR interleaving mode
>>      Add debug information for DDR controller registers
>>      Add ddr interleaving suppport for MPC8572DS board
>>      Add DDR options setting on MPC8641HPCN board
>>
>> Jason Jin (1):
>>      Enabled the Freescale SGMII riser card on 8536DS
>>
>> Kumar Gala (3):
>>      85xx: Export invalidate_{i,d}cache and add flush_dcache
>>      85xx: Improve flash remapping on MPC8572DS & MPC8536DS
>>      85xx: Enable interrupt and setexpr commands on Freescale 85xx  
>> boards
>>
>> Liu Yu (2):
>>      Make pixis_set_sgmii more general to support MPC85xx boards.
>>      Enabled the Freescale SGMII riser card on 8572DS
>
> Sorry, I get a merge conflict with the SATA code in
> board/freescale/mpc8536ds/mpc8536ds.c - can you please rebase your
> repo against the current "next" branch? Thanks.

Andy, when you do this, fix:

Applying Have u-boot pass stashing parameters into device tree
.dotest/patch:32: space before tab in indent.
     	fdt_add_enet_stashing(blob);
warning: 1 line adds whitespace errors.

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-14 22:43 Andy Fleming
@ 2008-10-15  9:31 ` Wolfgang Denk
  2008-10-15 14:09   ` Kumar Gala
  0 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-15  9:31 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1224024223-8867-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next
> 
> Andy Fleming (1):
>       Have u-boot pass stashing parameters into device tree
> 
> Ed Swarthout (5):
>       pixis do not print long help if not configured
>       85xx if NUM_CPUS>1, print cpu number
>       mpc8572 additional end-point mode
>       fsl_law clear enable before changing.
>       Add cpu/8xxx to TAGS_SUBDIRS
> 
> Haiying Wang (6):
>       Make DDR interleaving mode work correctly
>       Pass dimm parameters to populate populate controller options
>       Check DDR interleaving mode
>       Add debug information for DDR controller registers
>       Add ddr interleaving suppport for MPC8572DS board
>       Add DDR options setting on MPC8641HPCN board
> 
> Jason Jin (1):
>       Enabled the Freescale SGMII riser card on 8536DS
> 
> Kumar Gala (3):
>       85xx: Export invalidate_{i,d}cache and add flush_dcache
>       85xx: Improve flash remapping on MPC8572DS & MPC8536DS
>       85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
> 
> Liu Yu (2):
>       Make pixis_set_sgmii more general to support MPC85xx boards.
>       Enabled the Freescale SGMII riser card on 8572DS

Sorry, I get a merge conflict with the SATA code in
board/freescale/mpc8536ds/mpc8536ds.c - can you please rebase your
repo against the current "next" branch? 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
The project was large enough and management communication poor enough
to prompt many members of the team to see themselves  as  contestants
making  brownie  points,  rather  than as builders making programming
products. Each suboptimized  his  piece  to  meet  his  targets;  few
stopped to think about the total effect on the customer.
                              - Fred Brooks, "The Mythical Man Month"

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-10-14 22:43 Andy Fleming
  2008-10-15  9:31 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-10-14 22:43 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

  git://www.denx.de/git/u-boot-mpc85xx.git 85xx-next

Andy Fleming (1):
      Have u-boot pass stashing parameters into device tree

Ed Swarthout (5):
      pixis do not print long help if not configured
      85xx if NUM_CPUS>1, print cpu number
      mpc8572 additional end-point mode
      fsl_law clear enable before changing.
      Add cpu/8xxx to TAGS_SUBDIRS

Haiying Wang (6):
      Make DDR interleaving mode work correctly
      Pass dimm parameters to populate populate controller options
      Check DDR interleaving mode
      Add debug information for DDR controller registers
      Add ddr interleaving suppport for MPC8572DS board
      Add DDR options setting on MPC8641HPCN board

Jason Jin (1):
      Enabled the Freescale SGMII riser card on 8536DS

Kumar Gala (3):
      85xx: Export invalidate_{i,d}cache and add flush_dcache
      85xx: Improve flash remapping on MPC8572DS & MPC8536DS
      85xx: Enable interrupt and setexpr commands on Freescale 85xx boards

Liu Yu (2):
      Make pixis_set_sgmii more general to support MPC85xx boards.
      Enabled the Freescale SGMII riser card on 8572DS

 Makefile                                           |    2 +
 board/atum8548/ddr.c                               |    5 +-
 board/freescale/common/pixis.c                     |   26 +++-
 board/freescale/mpc8536ds/ddr.c                    |    5 +-
 board/freescale/mpc8536ds/mpc8536ds.c              |   53 ++++++-
 board/freescale/mpc8536ds/tlb.c                    |    2 +-
 board/freescale/mpc8540ads/ddr.c                   |    5 +-
 board/freescale/mpc8541cds/ddr.c                   |    5 +-
 board/freescale/mpc8544ds/ddr.c                    |    5 +-
 board/freescale/mpc8548cds/ddr.c                   |    5 +-
 board/freescale/mpc8555cds/ddr.c                   |    5 +-
 board/freescale/mpc8560ads/ddr.c                   |    5 +-
 board/freescale/mpc8568mds/ddr.c                   |    5 +-
 board/freescale/mpc8572ds/ddr.c                    |  127 +++++++++++++----
 board/freescale/mpc8572ds/mpc8572ds.c              |   62 +++++++-
 board/freescale/mpc8572ds/tlb.c                    |    2 +-
 board/freescale/mpc8610hpcd/ddr.c                  |    5 +-
 board/freescale/mpc8641hpcn/ddr.c                  |  147 +++++++++++++++-----
 board/mpc8540eval/ddr.c                            |    5 +-
 board/pm854/ddr.c                                  |    5 +-
 board/pm856/ddr.c                                  |    5 +-
 board/sbc8548/ddr.c                                |    5 +-
 board/sbc8560/ddr.c                                |    5 +-
 board/sbc8641d/ddr.c                               |    5 +-
 board/socrates/ddr.c                               |    5 +-
 board/stxgp3/ddr.c                                 |    5 +-
 board/stxssa/ddr.c                                 |    5 +-
 cpu/mpc85xx/cpu.c                                  |    5 +
 cpu/mpc85xx/fdt.c                                  |   13 ++
 cpu/mpc85xx/start.S                                |   49 +++++++
 cpu/mpc8xxx/ddr/ctrl_regs.c                        |   74 ++++++++--
 cpu/mpc8xxx/ddr/ddr.h                              |    3 +-
 cpu/mpc8xxx/ddr/main.c                             |   45 ++++++-
 cpu/mpc8xxx/ddr/options.c                          |   84 +++++++++++-
 doc/README.fsl-ddr                                 |   69 +++++++++
 drivers/misc/fsl_law.c                             |    1 +
 include/asm-ppc/cache.h                            |    1 +
 .../asm-ppc/fsl_ddr_dimm_params.h                  |    0 
 include/asm-ppc/fsl_ddr_sdram.h                    |   12 ++
 include/configs/MPC8536DS.h                        |    5 +
 include/configs/MPC8540ADS.h                       |    2 +
 include/configs/MPC8541CDS.h                       |    2 +
 include/configs/MPC8544DS.h                        |    5 +
 include/configs/MPC8548CDS.h                       |    2 +
 include/configs/MPC8555CDS.h                       |    2 +
 include/configs/MPC8560ADS.h                       |    2 +
 include/configs/MPC8568MDS.h                       |    2 +
 include/configs/MPC8572DS.h                        |   29 ++++-
 48 files changed, 800 insertions(+), 123 deletions(-)
 create mode 100644 doc/README.fsl-ddr
 rename cpu/mpc8xxx/ddr/ddr1_2_dimm_params.h => include/asm-ppc/fsl_ddr_dimm_params.h (100%)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-09 18:26 Andy Fleming
@ 2008-10-12 21:14 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-12 21:14 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1223576796-14910-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> This supercedes the previous pull request.  This includes Wolfgang's and Kumar's
> patches.
> 
> Haiying Wang (3):
>       Minor fixes for I2C address on MPC8572DS
>       Add ID EEPROM support for MPC8572DS
>       Remove redundant #define for MPC8536DS
> 
> Jason Jin (1):
>       Fix the incorrect DDR clk freq reporting on 8536DS
> 
> Kumar Gala (2):
>       85xx: Remove setting of *cache-line-size in device trees
>       MPC8572DS: Fix compile warnings
> 
> Rafal Czubak (1):
>       FSL: Fix get_cpu_board_revision() return value.
> 
> Wolfgang Grandegger (1):
>       85xx: Using proper I2C source clock divider for MPC8544
> 
>  board/freescale/common/sys_eeprom.c |    2 +-
>  cpu/mpc85xx/cpu.c                   |    3 ++-
>  cpu/mpc85xx/fdt.c                   |    3 ---
>  cpu/mpc85xx/speed.c                 |    7 ++++---
>  include/asm-ppc/immap_85xx.h        |    7 +++++++
>  include/configs/MPC8536DS.h         |    3 +--
>  include/configs/MPC8572DS.h         |   19 +++++++++++++++++--
>  7 files changed, 32 insertions(+), 12 deletions(-)

Done, thanks. And sorry it took so long.

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
The human race is faced with a cruel choice: work  or  daytime  tele-
vision.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-10-08 19:23 Andy Fleming
@ 2008-10-12 21:12 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-10-12 21:12 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1223493800-28770-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Haiying Wang (3):
>       Minor fixes for I2C address on MPC8572DS
>       Add ID EEPROM support for MPC8572DS
>       Remove redundant #define for MPC8536DS
> 
> Jason Jin (1):
>       Fix the incorrect DDR clk freq reporting on 8536DS
> 
> Kumar Gala (1):
>       85xx: Remove setting of *cache-line-size in device trees
> 
> Rafal Czubak (1):
>       FSL: Fix get_cpu_board_revision() return value.
> 
> Wolfgang Grandegger (1):
>       85xx: Using proper I2C source clock divider for MPC8544
> 
>  board/freescale/common/sys_eeprom.c |    2 +-
>  cpu/mpc85xx/cpu.c                   |    3 ++-
>  cpu/mpc85xx/fdt.c                   |    3 ---
>  cpu/mpc85xx/speed.c                 |    7 ++++---
>  include/asm-ppc/immap_85xx.h        |    7 +++++++
>  include/configs/MPC8536DS.h         |    3 +--
>  include/configs/MPC8572DS.h         |   19 +++++++++++++++++--
>  7 files changed, 32 insertions(+), 12 deletions(-)

Done, thanks. And sorry it took so long.

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
The human race is faced with a cruel choice: work  or  daytime  tele-
vision.

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-10-09 18:26 Andy Fleming
  2008-10-12 21:14 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-10-09 18:26 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

This supercedes the previous pull request.  This includes Wolfgang's and Kumar's
patches.

Haiying Wang (3):
      Minor fixes for I2C address on MPC8572DS
      Add ID EEPROM support for MPC8572DS
      Remove redundant #define for MPC8536DS

Jason Jin (1):
      Fix the incorrect DDR clk freq reporting on 8536DS

Kumar Gala (2):
      85xx: Remove setting of *cache-line-size in device trees
      MPC8572DS: Fix compile warnings

Rafal Czubak (1):
      FSL: Fix get_cpu_board_revision() return value.

Wolfgang Grandegger (1):
      85xx: Using proper I2C source clock divider for MPC8544

 board/freescale/common/sys_eeprom.c |    2 +-
 cpu/mpc85xx/cpu.c                   |    3 ++-
 cpu/mpc85xx/fdt.c                   |    3 ---
 cpu/mpc85xx/speed.c                 |    7 ++++---
 include/asm-ppc/immap_85xx.h        |    7 +++++++
 include/configs/MPC8536DS.h         |    3 +--
 include/configs/MPC8572DS.h         |   19 +++++++++++++++++--
 7 files changed, 32 insertions(+), 12 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-10-08 19:23 Andy Fleming
  2008-10-12 21:12 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-10-08 19:23 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Haiying Wang (3):
      Minor fixes for I2C address on MPC8572DS
      Add ID EEPROM support for MPC8572DS
      Remove redundant #define for MPC8536DS

Jason Jin (1):
      Fix the incorrect DDR clk freq reporting on 8536DS

Kumar Gala (1):
      85xx: Remove setting of *cache-line-size in device trees

Rafal Czubak (1):
      FSL: Fix get_cpu_board_revision() return value.

Wolfgang Grandegger (1):
      85xx: Using proper I2C source clock divider for MPC8544

 board/freescale/common/sys_eeprom.c |    2 +-
 cpu/mpc85xx/cpu.c                   |    3 ++-
 cpu/mpc85xx/fdt.c                   |    3 ---
 cpu/mpc85xx/speed.c                 |    7 ++++---
 include/asm-ppc/immap_85xx.h        |    7 +++++++
 include/configs/MPC8536DS.h         |    3 +--
 include/configs/MPC8572DS.h         |   19 +++++++++++++++++--
 7 files changed, 32 insertions(+), 12 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-09-16 16:35 Andy Fleming
@ 2008-09-21 20:36 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-09-21 20:36 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1221582942-734-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Peter Tyser (1):
>       Support for multiple SGMII/TBI interfaces for TSEC ethernet
> 
>  drivers/net/tsec.c |    8 +++++---
>  1 files changed, 5 insertions(+), 3 deletions(-)

Done, 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
All this doesn't alter anything, you know. The world is still full of
stupid people. They don't use their brains. They don't seem  to  want
to think straight.                    - Terry Pratchett, _Soul Music_

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-09-16 16:35 Andy Fleming
  2008-09-21 20:36 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-09-16 16:35 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Peter Tyser (1):
      Support for multiple SGMII/TBI interfaces for TSEC ethernet

 drivers/net/tsec.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-09-09 22:27 Andy Fleming
@ 2008-09-10  9:08 ` Wolfgang Denk
  0 siblings, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-09-10  9:08 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1220999262-5011-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Andrew Klossner (1):
>       Fix printf errors under -DDEBUG
> 
> Kumar Gala (1):
>       85xx: Ensure timebase is zero on secondary cores
> 
> The rest is stuff you cherry-picked, and a merge
> 
> Anatolij Gustschin (1):
>       85xx: socrates: Enable Lime support.
> 
> Andy Fleming (1):
>       Merge branch 'denx'
> 
> Detlev Zundel (1):
>       85xx: Socrates: Major code update.
> 
> Sergei Poselenov (1):
>       Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
> 
> Timur Tabi (1):
>       Update Freescale 85xx boards to sys_eeprom.c
> 
>  common/image.c           |    2 +-
>  cpu/mpc85xx/interrupts.c |   14 +++++++-------
>  cpu/mpc85xx/release.S    |    5 +++++
>  drivers/mtd/cfi_flash.c  |    2 +-
>  4 files changed, 14 insertions(+), 9 deletions(-)

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
As far as we know, our computer has never had an undetected error.
		                                           -- Weisert

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-09-09 22:27 Andy Fleming
  2008-09-10  9:08 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-09-09 22:27 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Andrew Klossner (1):
      Fix printf errors under -DDEBUG

Kumar Gala (1):
      85xx: Ensure timebase is zero on secondary cores

The rest is stuff you cherry-picked, and a merge

Anatolij Gustschin (1):
      85xx: socrates: Enable Lime support.

Andy Fleming (1):
      Merge branch 'denx'

Detlev Zundel (1):
      85xx: Socrates: Major code update.

Sergei Poselenov (1):
      Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.

Timur Tabi (1):
      Update Freescale 85xx boards to sys_eeprom.c

 common/image.c           |    2 +-
 cpu/mpc85xx/interrupts.c |   14 +++++++-------
 cpu/mpc85xx/release.S    |    5 +++++
 drivers/mtd/cfi_flash.c  |    2 +-
 4 files changed, 14 insertions(+), 9 deletions(-)

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-09-09 20:15   ` Kumar Gala
@ 2008-09-09 20:58     ` Andy Fleming
  0 siblings, 0 replies; 172+ messages in thread
From: Andy Fleming @ 2008-09-09 20:58 UTC (permalink / raw)
  To: u-boot

On Tue, Sep 9, 2008 at 3:15 PM, Kumar Gala <galak@kernel.crashing.org> wrote:

>> I NAK the CONFIG_SHOW_ACTIVITY patch. Please remove this from your
>> repo. Please see my "[PATCH 3/3] lib_ppc/interrupts.c: make
>> board_show_activity() a weak function" posting instead.
>>
>> I cherry-picked the other commits, though.

Ok, I'll revert the patch from my tree.

> What about '[PATCH v2] 85xx: Ensure timebase is zero on secondary
> cores'?

Heh.  It wasn't in the patch tracker, so it got missed.  I will comb
through the list for some forgotten patches.

Andy

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-09-09  8:17 ` Wolfgang Denk
@ 2008-09-09 20:15   ` Kumar Gala
  2008-09-09 20:58     ` Andy Fleming
  0 siblings, 1 reply; 172+ messages in thread
From: Kumar Gala @ 2008-09-09 20:15 UTC (permalink / raw)
  To: u-boot


On Sep 9, 2008, at 3:17 AM, Wolfgang Denk wrote:

> Dear Andy Fleming,
>
> In message <1220925123-3984-1-git-send-email-afleming@freescale.com>  
> you wrote:
>> are available in the git repository at:
>>
>>  git://www.denx.de/git/u-boot-mpc85xx.git master
>>
>> Anatolij Gustschin (1):
>>      85xx: socrates: Enable Lime support.
>>
>> Andy Fleming (1):
>>      Remove CONFIG_SHOW_ACTIVITY from stx boards which don't  
>> support it
>>
>> Detlev Zundel (1):
>>      85xx: Socrates: Major code update.
>>
>> Sergei Poselenov (1):
>>      Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
>>
>> Timur Tabi (1):
>>      Update Freescale 85xx boards to sys_eeprom.c
>
> Sorry, I will not pull that.
>
> I NAK the CONFIG_SHOW_ACTIVITY patch. Please remove this from your
> repo. Please see my "[PATCH 3/3] lib_ppc/interrupts.c: make
> board_show_activity() a weak function" posting instead.
>
> I cherry-picked the other commits, though.

Andy,

What about '[PATCH v2] 85xx: Ensure timebase is zero on secondary  
cores'?

- k

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-09-09  1:52 Andy Fleming
@ 2008-09-09  8:17 ` Wolfgang Denk
  2008-09-09 20:15   ` Kumar Gala
  0 siblings, 1 reply; 172+ messages in thread
From: Wolfgang Denk @ 2008-09-09  8:17 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1220925123-3984-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Anatolij Gustschin (1):
>       85xx: socrates: Enable Lime support.
> 
> Andy Fleming (1):
>       Remove CONFIG_SHOW_ACTIVITY from stx boards which don't support it
> 
> Detlev Zundel (1):
>       85xx: Socrates: Major code update.
> 
> Sergei Poselenov (1):
>       Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
> 
> Timur Tabi (1):
>       Update Freescale 85xx boards to sys_eeprom.c

Sorry, I will not pull that.

I NAK the CONFIG_SHOW_ACTIVITY patch. Please remove this from your
repo. Please see my "[PATCH 3/3] lib_ppc/interrupts.c: make
board_show_activity() a weak function" posting instead.

I cherry-picked the other commits, though.


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
Little known fact about Middle Earth:   The Hobbits had a very sophi-
sticated computer network!   It was a Tolkien Ring...

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-09-09  1:52 Andy Fleming
  2008-09-09  8:17 ` Wolfgang Denk
  0 siblings, 1 reply; 172+ messages in thread
From: Andy Fleming @ 2008-09-09  1:52 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Anatolij Gustschin (1):
      85xx: socrates: Enable Lime support.

Andy Fleming (1):
      Remove CONFIG_SHOW_ACTIVITY from stx boards which don't support it

Detlev Zundel (1):
      85xx: Socrates: Major code update.

Sergei Poselenov (1):
      Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.

Timur Tabi (1):
      Update Freescale 85xx boards to sys_eeprom.c

 board/freescale/common/Makefile     |    1 -
 board/freescale/common/cds_eeprom.c |   60 --------
 board/socrates/law.c                |    4 +-
 board/socrates/socrates.c           |  280 ++++++++++++++++++++++++++++++----
 board/socrates/tlb.c                |   13 ++-
 board/socrates/upm_table.h          |   52 +++++--
 cpu/mpc85xx/cpu.c                   |   15 +-
 drivers/video/mb862xx.c             |    3 +-
 include/configs/MPC8541CDS.h        |    9 +-
 include/configs/MPC8548CDS.h        |    9 +-
 include/configs/MPC8555CDS.h        |   10 +-
 include/configs/socrates.h          |  134 +++++++++++------
 include/configs/stxgp3.h            |    4 -
 include/configs/stxssa.h            |    4 -
 14 files changed, 420 insertions(+), 178 deletions(-)
 delete mode 100644 board/freescale/common/cds_eeprom.c

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-09-01 13:57 ` Detlev Zundel
@ 2008-09-08 21:31   ` Andy Fleming
  0 siblings, 0 replies; 172+ messages in thread
From: Andy Fleming @ 2008-09-08 21:31 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 1, 2008 at 8:57 AM, Detlev Zundel <dzu@denx.de> wrote:

> That's really nice that we get the socrates board converted to the new
> style DDR, but I wonder why the other patches for socrates([1]-[3]) are
> becoming neglected pets of myself instead of moving on.  Can you please
> comment on them?
>

They're on my list, I'm just very behind.  They will be applied today
(barring any problems with the patches, themselves).

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-08-27 16:55 Andy Fleming
  2008-08-27 22:35 ` Wolfgang Denk
@ 2008-09-01 13:57 ` Detlev Zundel
  2008-09-08 21:31   ` Andy Fleming
  1 sibling, 1 reply; 172+ messages in thread
From: Detlev Zundel @ 2008-09-01 13:57 UTC (permalink / raw)
  To: u-boot

Hi Andy,

> are available in the git repository at:
>
>   git://www.denx.de/git/u-boot-mpc85xx.git master
>

[...]

> Kumar Gala (18):

[...]

>       FSL DDR: Convert socrates to new DDR code.

[...]

That's really nice that we get the socrates board converted to the new
style DDR, but I wonder why the other patches for socrates([1]-[3]) are
becoming neglected pets of myself instead of moving on.  Can you please
comment on them?

I just checked and they still apply on TOT.

Thanks
  Detlev

[1] http://bugs.denx.de/databases/u-boot/prs/22
[2] http://bugs.denx.de/databases/u-boot/prs/26
[3] http://bugs.denx.de/databases/u-boot/prs/27

-- 
Paul Simon sang "Fifty Ways to Lose Your Lover", because quite
frankly, "A Million Ways to Tell a Developer He Is a D*ckhead"
doesn't scan nearly as well.  But I'm sure he thought about it.
                            -- linux/Documentation/ManagementStyle
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
  2008-08-27 16:55 Andy Fleming
@ 2008-08-27 22:35 ` Wolfgang Denk
  2008-09-01 13:57 ` Detlev Zundel
  1 sibling, 0 replies; 172+ messages in thread
From: Wolfgang Denk @ 2008-08-27 22:35 UTC (permalink / raw)
  To: u-boot

Dear Andy Fleming,

In message <1219856103-8137-1-git-send-email-afleming@freescale.com> you wrote:
> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-mpc85xx.git master
> 
> Jon Loeliger (5):
>       FSL DDR: Convert MPC8560ADS to new DDR code.
>       FSL DDR: Convert MPC8555ADS to new DDR code.
>       FSL DDR: Convert MPC8541CDS to new DDR code.
>       FSL DDR: Convert MPC8548CDS to new DDR code.
>       FSL DDR: Convert MPC8568MDS to new DDR code.
> 
> Kumar Gala (18):
>       FSL DDR: Add e500 TLB helper for DDR code
>       FSL DDR: Add 85xx specific register setting
>       FSL DDR: Convert MPC8540ADS to new DDR code.
>       FSL DDR: Convert MPC8544DS to new DDR code.
>       FSL DDR: Convert socrates to new DDR code.
>       FSL DDR: Convert atum8548 to new DDR code.
>       FSL DDR: Convert sbc8548 to new DDR code.
>       FSL DDR: Convert PM854 to new DDR code.
>       FSL DDR: Convert PM856 to new DDR code.
>       FSL DDR: Convert MPC8540EVAL to new DDR code.
>       FSL DDR: Convert SBC8560 to new DDR code.
>       FSL DDR: Convert STXGP3 to new DDR code.
>       FSL DDR: Convert STXSSA to new DDR code.
>       FSL DDR: Remove old SPD support from cpu/mpc85xx
>       mpc85xx: Add support for the MPC8572DS reference board
>       mpc85xx: Add support for the MPC8536
>       mpc85xx: Add support for the MPC8536DS reference board
>       mpc85xx: remove redudant code with lib_ppc/interrupts.c

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
Weekends were made for programming.                 - Karl Lehenbauer

^ permalink raw reply	[flat|nested] 172+ messages in thread

* [U-Boot] Please pull u-boot-mpc85xx.git
@ 2008-08-27 16:55 Andy Fleming
  2008-08-27 22:35 ` Wolfgang Denk
  2008-09-01 13:57 ` Detlev Zundel
  0 siblings, 2 replies; 172+ messages in thread
From: Andy Fleming @ 2008-08-27 16:55 UTC (permalink / raw)
  To: u-boot

are available in the git repository at:

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

Jon Loeliger (5):
      FSL DDR: Convert MPC8560ADS to new DDR code.
      FSL DDR: Convert MPC8555ADS to new DDR code.
      FSL DDR: Convert MPC8541CDS to new DDR code.
      FSL DDR: Convert MPC8548CDS to new DDR code.
      FSL DDR: Convert MPC8568MDS to new DDR code.

Kumar Gala (18):
      FSL DDR: Add e500 TLB helper for DDR code
      FSL DDR: Add 85xx specific register setting
      FSL DDR: Convert MPC8540ADS to new DDR code.
      FSL DDR: Convert MPC8544DS to new DDR code.
      FSL DDR: Convert socrates to new DDR code.
      FSL DDR: Convert atum8548 to new DDR code.
      FSL DDR: Convert sbc8548 to new DDR code.
      FSL DDR: Convert PM854 to new DDR code.
      FSL DDR: Convert PM856 to new DDR code.
      FSL DDR: Convert MPC8540EVAL to new DDR code.
      FSL DDR: Convert SBC8560 to new DDR code.
      FSL DDR: Convert STXGP3 to new DDR code.
      FSL DDR: Convert STXSSA to new DDR code.
      FSL DDR: Remove old SPD support from cpu/mpc85xx
      mpc85xx: Add support for the MPC8572DS reference board
      mpc85xx: Add support for the MPC8536
      mpc85xx: Add support for the MPC8536DS reference board
      mpc85xx: remove redudant code with lib_ppc/interrupts.c

 MAKEALL                                 |    2 +
 Makefile                                |    6 +
 board/atum8548/Makefile                 |    9 +-
 board/atum8548/atum8548.c               |    8 +-
 board/atum8548/ddr.c                    |   80 +++
 board/freescale/mpc8536ds/Makefile      |   54 ++
 board/freescale/mpc8536ds/config.mk     |   32 +
 board/freescale/mpc8536ds/ddr.c         |   79 +++
 board/freescale/mpc8536ds/law.c         |   43 ++
 board/freescale/mpc8536ds/mpc8536ds.c   |  653 +++++++++++++++++
 board/freescale/mpc8536ds/tlb.c         |   71 ++
 board/freescale/mpc8536ds/u-boot.lds    |  145 ++++
 board/freescale/mpc8540ads/Makefile     |   13 +-
 board/freescale/mpc8540ads/ddr.c        |   70 ++
 board/freescale/mpc8540ads/mpc8540ads.c |   14 +-
 board/freescale/mpc8541cds/Makefile     |    1 +
 board/freescale/mpc8541cds/ddr.c        |   79 +++
 board/freescale/mpc8541cds/mpc8541cds.c |    6 +-
 board/freescale/mpc8544ds/Makefile      |    9 +-
 board/freescale/mpc8544ds/ddr.c         |   80 +++
 board/freescale/mpc8544ds/mpc8544ds.c   |   11 +-
 board/freescale/mpc8548cds/Makefile     |    1 +
 board/freescale/mpc8548cds/ddr.c        |   80 +++
 board/freescale/mpc8548cds/mpc8548cds.c |    8 +-
 board/freescale/mpc8555cds/Makefile     |    1 +
 board/freescale/mpc8555cds/ddr.c        |   79 +++
 board/freescale/mpc8555cds/mpc8555cds.c |    8 +-
 board/freescale/mpc8560ads/Makefile     |   13 +-
 board/freescale/mpc8560ads/ddr.c        |   70 ++
 board/freescale/mpc8560ads/mpc8560ads.c |   11 +-
 board/freescale/mpc8568mds/Makefile     |   14 +-
 board/freescale/mpc8568mds/ddr.c        |   81 +++
 board/freescale/mpc8568mds/mpc8568mds.c |    8 +-
 board/freescale/mpc8572ds/Makefile      |   54 ++
 board/freescale/mpc8572ds/config.mk     |   32 +
 board/freescale/mpc8572ds/ddr.c         |   81 +++
 board/freescale/mpc8572ds/law.c         |   41 ++
 board/freescale/mpc8572ds/mpc8572ds.c   |  573 +++++++++++++++
 board/freescale/mpc8572ds/tlb.c         |   85 +++
 board/freescale/mpc8572ds/u-boot.lds    |  145 ++++
 board/mpc8540eval/Makefile              |   12 +-
 board/mpc8540eval/ddr.c                 |   70 ++
 board/mpc8540eval/mpc8540eval.c         |    6 +-
 board/pm854/Makefile                    |    9 +-
 board/pm854/ddr.c                       |   70 ++
 board/pm854/pm854.c                     |    6 +-
 board/pm856/Makefile                    |    9 +-
 board/pm856/ddr.c                       |   70 ++
 board/pm856/pm856.c                     |    6 +-
 board/sbc8548/Makefile                  |    9 +-
 board/sbc8548/ddr.c                     |   80 +++
 board/sbc8548/sbc8548.c                 |    5 +-
 board/sbc8560/Makefile                  |    9 +-
 board/sbc8560/ddr.c                     |   70 ++
 board/sbc8560/sbc8560.c                 |    6 +-
 board/sbc8560/u-boot.lds                |    1 -
 board/socrates/Makefile                 |   13 +-
 board/socrates/ddr.c                    |   80 +++
 board/socrates/sdram.c                  |    5 +-
 board/stxgp3/Makefile                   |   12 +-
 board/stxgp3/ddr.c                      |   70 ++
 board/stxgp3/stxgp3.c                   |    6 +-
 board/stxgp3/u-boot.lds                 |    1 -
 board/stxssa/Makefile                   |    9 +-
 board/stxssa/ddr.c                      |   70 ++
 board/stxssa/stxssa.c                   |    6 +-
 board/stxssa/u-boot.lds                 |    1 -
 cpu/mpc85xx/Makefile                    |   22 +-
 cpu/mpc85xx/cpu.c                       |    8 +-
 cpu/mpc85xx/cpu_init.c                  |    7 +
 cpu/mpc85xx/ddr-gen1.c                  |  120 ++++
 cpu/mpc85xx/ddr-gen2.c                  |   74 ++
 cpu/mpc85xx/ddr-gen3.c                  |  105 +++
 cpu/mpc85xx/interrupts.c                |  109 +---
 cpu/mpc85xx/mpc8536_serdes.c            |  180 +++++
 cpu/mpc85xx/pci.c                       |    2 +-
 cpu/mpc85xx/spd_sdram.c                 | 1154 -------------------------------
 cpu/mpc85xx/speed.c                     |    4 +
 cpu/mpc85xx/tlb.c                       |   64 ++
 drivers/misc/fsl_law.c                  |    2 +-
 include/asm-ppc/global_data.h           |    6 +-
 include/asm-ppc/immap_85xx.h            |   11 +
 include/asm-ppc/mmu.h                   |    1 +
 include/asm-ppc/processor.h             |    2 +
 include/configs/ATUM8548.h              |   64 +-
 include/configs/MPC8536DS.h             |  594 ++++++++++++++++
 include/configs/MPC8540ADS.h            |   53 +-
 include/configs/MPC8540EVAL.h           |   26 +-
 include/configs/MPC8541CDS.h            |   30 +-
 include/configs/MPC8544DS.h             |   38 +-
 include/configs/MPC8548CDS.h            |   37 +-
 include/configs/MPC8555CDS.h            |   35 +-
 include/configs/MPC8560ADS.h            |   52 +-
 include/configs/MPC8568MDS.h            |   38 +-
 include/configs/MPC8572DS.h             |  576 +++++++++++++++
 include/configs/PM854.h                 |   58 +-
 include/configs/PM856.h                 |   58 +-
 include/configs/SBC8540.h               |   22 +-
 include/configs/TQM85xx.h               |    4 +
 include/configs/sbc8548.h               |   31 +-
 include/configs/sbc8560.h               |   28 +-
 include/configs/socrates.h              |   29 +-
 include/configs/stxgp3.h                |   30 +-
 include/configs/stxssa.h                |   30 +-
 include/pci_ids.h                       |    2 +
 105 files changed, 5626 insertions(+), 1641 deletions(-)
 create mode 100644 board/atum8548/ddr.c
 create mode 100644 board/freescale/mpc8536ds/Makefile
 create mode 100644 board/freescale/mpc8536ds/config.mk
 create mode 100644 board/freescale/mpc8536ds/ddr.c
 create mode 100644 board/freescale/mpc8536ds/law.c
 create mode 100644 board/freescale/mpc8536ds/mpc8536ds.c
 create mode 100644 board/freescale/mpc8536ds/tlb.c
 create mode 100644 board/freescale/mpc8536ds/u-boot.lds
 create mode 100644 board/freescale/mpc8540ads/ddr.c
 create mode 100644 board/freescale/mpc8541cds/ddr.c
 create mode 100644 board/freescale/mpc8544ds/ddr.c
 create mode 100644 board/freescale/mpc8548cds/ddr.c
 create mode 100644 board/freescale/mpc8555cds/ddr.c
 create mode 100644 board/freescale/mpc8560ads/ddr.c
 create mode 100644 board/freescale/mpc8568mds/ddr.c
 create mode 100644 board/freescale/mpc8572ds/Makefile
 create mode 100644 board/freescale/mpc8572ds/config.mk
 create mode 100644 board/freescale/mpc8572ds/ddr.c
 create mode 100644 board/freescale/mpc8572ds/law.c
 create mode 100644 board/freescale/mpc8572ds/mpc8572ds.c
 create mode 100644 board/freescale/mpc8572ds/tlb.c
 create mode 100644 board/freescale/mpc8572ds/u-boot.lds
 create mode 100644 board/mpc8540eval/ddr.c
 create mode 100644 board/pm854/ddr.c
 create mode 100644 board/pm856/ddr.c
 create mode 100644 board/sbc8548/ddr.c
 create mode 100644 board/sbc8560/ddr.c
 create mode 100644 board/socrates/ddr.c
 create mode 100644 board/stxgp3/ddr.c
 create mode 100644 board/stxssa/ddr.c
 create mode 100644 cpu/mpc85xx/ddr-gen1.c
 create mode 100644 cpu/mpc85xx/ddr-gen2.c
 create mode 100644 cpu/mpc85xx/ddr-gen3.c
 create mode 100644 cpu/mpc85xx/mpc8536_serdes.c
 delete mode 100644 cpu/mpc85xx/spd_sdram.c
 create mode 100644 include/configs/MPC8536DS.h
 create mode 100644 include/configs/MPC8572DS.h

^ permalink raw reply	[flat|nested] 172+ messages in thread

end of thread, other threads:[~2013-07-17 14:39 UTC | newest]

Thread overview: 172+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-01 20:15 [U-Boot] Please pull u-boot-mpc85xx.git Kumar Gala
  -- strict thread matches above, loose matches on Subject: below --
2013-07-16 23:30 Andy Fleming
2013-07-17 14:38 ` Tom Rini
2013-07-17 14:39 ` Tom Rini
2013-06-21 20:51 Andy Fleming
2013-06-24 20:17 ` Tom Rini
2013-06-25 14:56 ` Tom Rini
2013-05-24 22:17 Andy Fleming
2013-05-25 18:40 ` Tom Rini
2013-05-09 22:20 Andy Fleming
2013-05-10 15:23 ` Tom Rini
2013-05-10 16:13   ` Fleming Andy-AFLEMING
2013-05-02 23:15 Andy Fleming
2013-05-03 13:32 ` Tom Rini
2013-05-03 23:05   ` Fleming Andy-AFLEMING
2013-01-30 17:34 Andy Fleming
2013-01-30 23:17 ` Tom Rini
2013-01-30 23:23   ` Andy Fleming
2013-01-25 16:45 Andy Fleming
2013-01-25 22:09 ` Tom Rini
2013-01-25 22:15   ` Fleming Andy-AFLEMING
2013-01-25 22:42     ` Tom Rini
2012-11-28  7:39 Andy Fleming
2012-11-28 13:04 ` Tom Rini
2012-11-28 13:47   ` Tom Rini
2012-11-29 13:38 ` Tom Rini
2012-12-03 19:33 ` Tabi Timur-B04825
2012-10-22 22:36 Andy Fleming
2012-10-23  1:23 ` Tabi Timur-B04825
2012-10-23  2:46   ` Fleming Andy-AFLEMING
2012-10-23 16:20     ` Timur Tabi
2012-10-23  2:53 ` Tom Rini
2012-10-23 23:04   ` Tom Rini
2012-10-23 23:08     ` Andy Fleming
2012-08-09  0:22 Andy Fleming
2012-08-09 19:07 ` Wolfgang Denk
2012-07-06 22:32 Andy Fleming
2012-07-08 17:25 ` Wolfgang Denk
     [not found] <1329349202-22464-1-git-send-email-afleming@freescale.com>
2012-02-17 22:54 ` Wolfgang Denk
2011-04-10 16:20 Kumar Gala
2011-04-10 19:31 ` Wolfgang Denk
     [not found] <alpine.LFD.2.00.1104040913320.20731@right.am.freescale.net >
2011-04-05  6:59 ` Fabian Cenedese
2011-04-04 14:14 Kumar Gala
2011-04-04 17:48 ` Timur Tabi
2011-04-04 18:20   ` Kumar Gala
2011-04-04 18:26     ` Scott Wood
2011-04-04 18:27     ` Timur Tabi
2011-04-04 19:42     ` Wolfgang Denk
2011-04-04 19:54       ` Timur Tabi
2011-04-04 19:55       ` Scott Wood
2011-04-04 20:58         ` Wolfgang Denk
2011-04-05  3:21       ` Kumar Gala
2011-04-05 14:24       ` Jerry Van Baren
2011-04-05 10:26 ` Wolfgang Denk
2011-03-28 14:06 Kumar Gala
2011-03-23  5:22 Kumar Gala
2011-03-24 20:18 ` Wolfgang Denk
2011-03-24 21:03   ` Kumar Gala
2011-03-15  6:37 Kumar Gala
2011-03-21 20:34 ` Wolfgang Denk
2011-03-14  5:37 Kumar Gala
2011-03-14 19:29 ` Wolfgang Denk
2011-01-18  4:45 [U-Boot] (no subject) Kumar Gala
2011-01-18  9:39 ` [U-Boot] Please pull u-boot-mpc85xx.git Kumar Gala
2011-01-14  7:51 Kumar Gala
2011-01-17 19:32 ` Wolfgang Denk
2010-12-18  0:18 Kumar Gala
2010-12-18 13:15 ` Wolfgang Denk
2010-12-18 15:26   ` Kumar Gala
2010-12-18 21:27 ` Wolfgang Denk
2010-12-21 17:50   ` Kumar Gala
2010-12-13 15:44 Kumar Gala
2010-12-01 19:01 Kumar Gala
2010-12-06 22:41 ` Wolfgang Denk
2010-11-11  7:06 Kumar Gala
2010-10-22  8:11 Kumar Gala
2010-10-23 20:05 ` Wolfgang Denk
2010-10-20  7:43 Kumar Gala
2010-10-20 19:17 ` Wolfgang Denk
2010-10-07 16:17 Kumar Gala
2010-10-11  7:59 ` Wolfgang Denk
2010-08-31 16:26 Kumar Gala
2010-09-07 19:18 ` Wolfgang Denk
2010-08-19  7:10 Kumar Gala
2010-08-01 15:51 Kumar Gala
2010-08-02 13:20 ` Timur Tabi
2010-08-02 14:57   ` Wolfgang Denk
2010-08-02 15:25     ` Timur Tabi
2010-08-02 20:54       ` Wolfgang Denk
2010-08-02 20:58         ` Timur Tabi
2010-08-02 21:06           ` Wolfgang Denk
2010-08-02 21:11             ` Timur Tabi
2010-08-02 18:31     ` Ben Warren
2010-08-02 19:32       ` Kumar Gala
2010-08-02 21:08       ` Wolfgang Denk
2010-08-02 21:10         ` Ben Warren
2010-08-03 22:31 ` Wolfgang Denk
2010-07-21  5:45 Kumar Gala
2010-07-21 16:26 ` Kim Phillips
2010-07-21 20:14   ` Kumar Gala
2010-07-24 18:33 ` Wolfgang Denk
2010-05-30 16:16 Kumar Gala
2010-05-30 19:45 ` Wolfgang Denk
2010-05-31 17:33   ` Kumar Gala
2010-06-01 18:38     ` Kim Phillips
2010-06-01 19:22       ` Kumar Gala
2010-05-12  9:58 Kumar Gala
2010-05-17 21:14 ` Wolfgang Denk
2009-09-30 13:45 Kumar Gala
2009-09-30 21:40 ` Wolfgang Denk
2009-07-06 15:13 Kumar Gala
2009-07-07 18:54 ` Wolfgang Denk
2009-06-04  4:54 Andy Fleming
2009-06-04  8:53 ` Wolfgang Denk
2009-06-09 20:59 ` Wolfgang Denk
2009-04-04 15:33 Kumar Gala
2009-04-04 18:05 ` Wolfgang Denk
2009-03-30 18:36 Kumar Gala
2009-03-26 22:53 Andy Fleming
2009-03-27 19:21 ` Wolfgang Denk
2009-03-10 19:12 Andy Fleming
2009-03-10 21:09 ` Wolfgang Denk
2009-02-17  0:13 Andy Fleming
2009-02-17  0:22 ` Wolfgang Denk
2009-01-23 23:30 Andy Fleming
2009-01-24  1:20 ` Wolfgang Denk
2009-01-28  8:33 ` Wolfgang Denk
2009-01-28 14:36   ` Haiying Wang
2009-01-28 14:38     ` Kumar Gala
2009-01-28  8:55 ` Wolfgang Denk
2009-01-28  9:07   ` Stefan Roese
2009-01-28 11:12     ` Wolfgang Denk
2009-01-28 12:02       ` Stefan Roese
2009-01-28 14:27   ` Kumar Gala
2009-01-13 23:01 Andy Fleming
2009-01-13 23:36 ` Wolfgang Denk
2008-12-29 18:58 Andy Fleming
2008-12-22 19:36 Andy Fleming
2008-12-23  0:08 ` Peter Tyser
2008-12-23  0:31   ` Andy Fleming
2008-12-23 16:16     ` Peter Tyser
2008-12-30 22:36 ` Wolfgang Denk
2008-12-04 19:08 Andy Fleming
2008-12-04 23:21 ` Wolfgang Denk
2008-10-27 22:32 Andy Fleming
2008-10-27 22:51 ` Wolfgang Denk
2008-10-24 22:47 Andy Fleming
2008-10-27 21:32 ` Wolfgang Denk
     [not found] <1224273000-4303-1-git-send-email-afleming@freescale.com>
2008-10-17 20:02 ` Wolfgang Denk
2008-10-17 20:01 Andy Fleming
2008-10-17 20:14 ` Wolfgang Denk
2008-10-17 20:36   ` Kumar Gala
2008-10-17 20:42     ` Wolfgang Denk
2008-10-17 20:54 ` Wolfgang Denk
2008-10-14 22:43 Andy Fleming
2008-10-15  9:31 ` Wolfgang Denk
2008-10-15 14:09   ` Kumar Gala
2008-10-09 18:26 Andy Fleming
2008-10-12 21:14 ` Wolfgang Denk
2008-10-08 19:23 Andy Fleming
2008-10-12 21:12 ` Wolfgang Denk
2008-09-16 16:35 Andy Fleming
2008-09-21 20:36 ` Wolfgang Denk
2008-09-09 22:27 Andy Fleming
2008-09-10  9:08 ` Wolfgang Denk
2008-09-09  1:52 Andy Fleming
2008-09-09  8:17 ` Wolfgang Denk
2008-09-09 20:15   ` Kumar Gala
2008-09-09 20:58     ` Andy Fleming
2008-08-27 16:55 Andy Fleming
2008-08-27 22:35 ` Wolfgang Denk
2008-09-01 13:57 ` Detlev Zundel
2008-09-08 21:31   ` Andy Fleming

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.