All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kumar Gala <galak@kernel.crashing.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [GIT PULL] Please pull u-boot-mpc85xx.git
Date: Wed, 19 Jan 2011 23:01:38 -0600 (CST)	[thread overview]
Message-ID: <Pine.LNX.4.64.1101192300530.993@localhost.localdomain> (raw)

The following changes since commit e1ccf97c5d7651664d37c0c5aa243874b8851b2d:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-01-17 20:31:46 +0100)

are available in the git repository at:

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

Dipen Dudhat (1):
      powerpc/85xx: Protect all LBC code with CONFIG_FSL_LBC

Haiying Wang (1):
      8xxx/ddr: add support to only compute the ddr sdram size

Kumar Gala (6):
      powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h
      powerpc/p3041: Add various p3041 specific information
      powerpc/p5020: Add various p5020 specific information
      powerpc/p2040: Add various p2040 specific information
      powerpc/8xxx: Add hwconfig APIs to address early parsing used by DDR init
      powerpc/8xxx: Introduce 85xx, 86xx, QorIQ config headers

Poonam Aggrwal (2):
      powerpc/85xx: Add Support for Freescale P1010 Processor
      powerpc/85xx: Add Support for Freescale P1014 Processor

Prabhakar (1):
      Fix wrong CONFIG_SYS_MPC85xx_SERDES1_ADDR

Prabhakar Kushwaha (1):
      ppc/85xx: Fix compile err when PCI disabled on P1_P2_RDB

York Sun (8):
      mpc8xxx: Display RDIMM if detected
      mpc8xxx: Enable ECC on/off control in hwconfig
      corenet_ds: Enable ECC for corenet_ds
      mpc85xx: Adding more registers and options
      mpc85xx: Enable unique mode registers and dynamic ODT for DDR3
      mpc85xx: Implement workaround for erratum DDR-A003
      corenet_ds: Extend board specific parameters
      powerpc/p4080: Fix warning in serdes code from early use of hwconfig

 arch/powerpc/cpu/mpc85xx/Makefile                  |    6 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    3 +
 arch/powerpc/cpu/mpc85xx/cpu.c                     |    9 +-
 arch/powerpc/cpu/mpc85xx/ddr-gen3.c                |   99 +++++-
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c      |   17 +-
 arch/powerpc/cpu/mpc85xx/p2040_serdes.c            |   66 ++++
 arch/powerpc/cpu/mpc85xx/p3041_ids.c               |  105 ++++++
 arch/powerpc/cpu/mpc85xx/p3041_serdes.c            |  151 ++++++++
 arch/powerpc/cpu/mpc85xx/p5020_ids.c               |  105 ++++++
 arch/powerpc/cpu/mpc85xx/p5020_serdes.c            |  151 ++++++++
 arch/powerpc/cpu/mpc85xx/speed.c                   |    6 +-
 arch/powerpc/cpu/mpc85xx/u-boot.lds                |    8 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c                     |    8 +-
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c           |  262 +++++++++++---
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h                 |    8 +-
 .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c        |   20 +-
 arch/powerpc/cpu/mpc8xxx/ddr/main.c                |   31 ++-
 arch/powerpc/cpu/mpc8xxx/ddr/options.c             |  395 ++++++++++++++++++--
 arch/powerpc/include/asm/config.h                  |   39 +--
 arch/powerpc/include/asm/config_mpc85xx.h          |  188 ++++++++++
 arch/powerpc/include/asm/config_mpc86xx.h          |   38 ++
 arch/powerpc/include/asm/fsl_ddr_sdram.h           |   52 +++
 arch/powerpc/include/asm/immap_85xx.h              |   23 +-
 arch/powerpc/include/asm/processor.h               |    6 +
 board/freescale/corenet_ds/config.mk               |   27 --
 board/freescale/corenet_ds/ddr.c                   |  159 ++++----
 board/freescale/mpc8536ds/config.mk                |   14 +-
 board/freescale/mpc8572ds/config.mk                |    4 +-
 board/freescale/p1022ds/config.mk                  |   10 -
 board/freescale/p1_p2_rdb/config.mk                |   14 +-
 board/freescale/p1_p2_rdb/p1_p2_rdb.c              |    4 +-
 board/freescale/p1_p2_rdb/tlb.c                    |    4 +-
 board/freescale/p2020ds/config.mk                  |   26 --
 board/tqc/tqm85xx/sdram.c                          |    8 +-
 common/hwconfig.c                                  |   86 +++--
 doc/README.fsl-ddr                                 |   74 ++++-
 drivers/misc/fsl_law.c                             |   23 +-
 include/configs/MPC8536DS.h                        |    6 +
 include/configs/MPC8572DS.h                        |    4 +
 include/configs/P1022DS.h                          |    4 +
 include/configs/P1_P2_RDB.h                        |   19 +-
 include/configs/P2020DS.h                          |    4 +
 include/configs/P4080DS.h                          |   16 -
 include/configs/corenet_ds.h                       |    8 +-
 include/hwconfig.h                                 |   68 +++-
 45 files changed, 1940 insertions(+), 438 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/p2040_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_serdes.c
 create mode 100644 arch/powerpc/include/asm/config_mpc85xx.h
 create mode 100644 arch/powerpc/include/asm/config_mpc86xx.h
 delete mode 100644 board/freescale/corenet_ds/config.mk
 delete mode 100644 board/freescale/p1022ds/config.mk
 delete mode 100644 board/freescale/p2020ds/config.mk

             reply	other threads:[~2011-01-20  5:01 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-20  5:01 Kumar Gala [this message]
2011-01-20  8:00 ` [U-Boot] [GIT PULL] Please pull u-boot-mpc85xx.git Kumar Gala
2011-01-23 17:12   ` Kumar Gala
2011-01-25 20:13 ` Wolfgang Denk
2011-01-27  6:49 Kumar Gala
2011-01-31 22:20 ` Wolfgang Denk
2011-02-11  5:46 Kumar Gala
2011-02-11 20:24 ` Wolfgang Denk
2011-05-18 14:45 Kumar Gala
2011-05-18 21:17 ` Wolfgang Denk
2011-05-19  4:00   ` Kumar Gala
2011-05-19  5:19     ` Wolfgang Denk
2011-05-19  6:49       ` Kumar Gala
2011-05-19  7:18 Kumar Gala
2011-05-19 19:31 ` Wolfgang Denk
2011-05-19 19:48   ` Kumar Gala
2011-05-26 14:33 Kumar Gala
2011-06-01 20:01 ` Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.LNX.4.64.1101192300530.993@localhost.localdomain \
    --to=galak@kernel.crashing.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.