mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Renaud Barbier <renaud.barbier@ge.com>
To: barebox@lists.infradead.org
Subject: [PATCH 0/6] ppc: add Freescale P1022DS board support
Date: Thu, 13 Mar 2014 18:09:57 +0000	[thread overview]
Message-ID: <1394734204-8181-1-git-send-email-renaud.barbier@ge.com> (raw)

Addition of Freescale P1022DS platform and DDR3 support.

Patches based on import of existing U-Boot code with modifications
limited to code cleanup, and making DDR2 and DDR3 support co-existent.

Renaud Barbier (6):
  ppc: add SoC support for Freescale P1022
  common: DDR3 SPD verification support
  ppc: mpc8xxx: add DDR3 support
  ppc: add Freescale P1022DS board support
  ppc: mpc85xx:gianfar: add stashing support
  ppc: P1022DS: update Kconfig and Makefile

 arch/ppc/Makefile                                  |   1 +
 arch/ppc/boards/freescale-p1022ds/Makefile         |   5 +
 arch/ppc/boards/freescale-p1022ds/config.h         |  55 +++
 arch/ppc/boards/freescale-p1022ds/ddr.c            | 126 ++++++
 arch/ppc/boards/freescale-p1022ds/env/bin/init     |   2 +
 arch/ppc/boards/freescale-p1022ds/env/config       |   2 +
 arch/ppc/boards/freescale-p1022ds/ics307_clk.c     |  46 +++
 arch/ppc/boards/freescale-p1022ds/law.c            |  27 ++
 arch/ppc/boards/freescale-p1022ds/p1022ds.c        | 181 +++++++++
 arch/ppc/boards/freescale-p1022ds/p1022ds.h        |  14 +
 arch/ppc/boards/freescale-p1022ds/tlb.c            |  59 +++
 arch/ppc/boards/freescale-p2020rdb/config.h        |   2 -
 arch/ppc/boards/geip-da923rc/config.h              |   1 -
 arch/ppc/configs/p1022ds_defconfig                 |  53 +++
 arch/ppc/cpu-85xx/start.S                          |   2 +-
 arch/ppc/ddr-8xxx/Makefile                         |   4 +-
 arch/ppc/ddr-8xxx/common_timing_params.h           |   2 +
 arch/ppc/ddr-8xxx/ctrl_regs.c                      | 429 +++++++++++++++++++--
 arch/ppc/ddr-8xxx/ddr.h                            |  15 +-
 arch/ppc/ddr-8xxx/ddr2_dimm_params.c               |   9 +-
 arch/ppc/ddr-8xxx/ddr3_dimm_params.c               | 193 +++++++++
 .../ppc/ddr-8xxx/{ddr2_setctrl.c => ddr_setctrl.c} |  44 ++-
 arch/ppc/ddr-8xxx/lc_common_dimm_params.c          | 103 +++--
 arch/ppc/ddr-8xxx/main.c                           |  12 +-
 arch/ppc/ddr-8xxx/options.c                        |  58 ++-
 arch/ppc/include/asm/fsl_ddr_dimm_params.h         |   9 +
 arch/ppc/include/asm/fsl_ddr_sdram.h               |  35 +-
 arch/ppc/include/asm/fsl_lbc.h                     |   3 +
 arch/ppc/include/asm/processor.h                   |   1 +
 arch/ppc/mach-mpc85xx/Kconfig                      |  36 +-
 arch/ppc/mach-mpc85xx/cpuid.c                      |   1 +
 arch/ppc/mach-mpc85xx/fdt.c                        |   8 +
 .../ppc/mach-mpc85xx/include/mach/config_mpc85xx.h |   9 +
 arch/ppc/mach-mpc85xx/include/mach/immap_85xx.h    |  34 +-
 common/ddr_spd.c                                   |  24 ++
 include/ddr_spd.h                                  | 116 ++++++
 36 files changed, 1606 insertions(+), 115 deletions(-)
 create mode 100644 arch/ppc/boards/freescale-p1022ds/Makefile
 create mode 100644 arch/ppc/boards/freescale-p1022ds/config.h
 create mode 100644 arch/ppc/boards/freescale-p1022ds/ddr.c
 create mode 100644 arch/ppc/boards/freescale-p1022ds/env/bin/init
 create mode 100644 arch/ppc/boards/freescale-p1022ds/env/config
 create mode 100644 arch/ppc/boards/freescale-p1022ds/ics307_clk.c
 create mode 100644 arch/ppc/boards/freescale-p1022ds/law.c
 create mode 100644 arch/ppc/boards/freescale-p1022ds/p1022ds.c
 create mode 100644 arch/ppc/boards/freescale-p1022ds/p1022ds.h
 create mode 100644 arch/ppc/boards/freescale-p1022ds/tlb.c
 create mode 100644 arch/ppc/configs/p1022ds_defconfig
 create mode 100644 arch/ppc/ddr-8xxx/ddr3_dimm_params.c
 rename arch/ppc/ddr-8xxx/{ddr2_setctrl.c => ddr_setctrl.c} (53%)

--
1.8.4.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2014-03-13 18:10 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-13 18:09 Renaud Barbier [this message]
2014-03-13 18:09 ` [PATCH 1/6] ppc: add SoC support for Freescale P1022 Renaud Barbier
2014-03-13 18:09 ` [PATCH 2/6] common: DDR3 SPD verification support Renaud Barbier
2014-03-13 18:10 ` [PATCH 3/6] ppc: mpc8xxx: add DDR3 support Renaud Barbier
2014-03-13 18:10 ` [PATCH 4/6] ppc: add Freescale P1022DS board support Renaud Barbier
2014-03-13 18:10 ` [PATCH 5/7] ppc: mpc85xx: add stashing support Renaud Barbier
2014-03-13 18:10 ` [PATCH 5/6] ppc: mpc85xx:gianfar: " Renaud Barbier
2014-03-13 18:10 ` [PATCH 6/6] ppc: P1022DS: update Kconfig and Makefile Renaud Barbier
2014-03-17  6:47 ` [PATCH 0/6] ppc: add Freescale P1022DS board support Sascha Hauer

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=1394734204-8181-1-git-send-email-renaud.barbier@ge.com \
    --to=renaud.barbier@ge.com \
    --cc=barebox@lists.infradead.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox