public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stefan Roese <sr@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git
Date: Mon, 8 Sep 2008 15:23:27 +0200	[thread overview]
Message-ID: <200809081523.27770.sr@denx.de> (raw)

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

are available in the git repository at:

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

Adam Graham (2):
      ppc4xx: IBM Memory Controller DDR autocalibration routines
      ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines

Matthias Fuchs (3):
      ppc4xx: Update CPCI405 variants handling
      ppc4xx: Cleanup CPCI405 linker script
      ppc4xx: Update CPCI405(AB) configuration

Ricardo Ribalda Delgado (1):
      ppc44x: Unification of virtex5 pp440 boards

Stefan Roese (4):
      ppc4xx: Fix compilation warning for canyonlands & glacier
      ppc4xx: Fix compilation warning for PIP405
      ppc4xx: Remove CONFIG_CS8952_PHY define
      ppc4xx: Move ppc4xx specific prototypes to ppc4xx header

Victor Gallardo (1):
      ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY

 CREDITS                                            |    3 +-
 MAINTAINERS                                        |    2 +
 MAKEALL                                            |    4 +
 Makefile                                           |   47 +-
 board/avnet/v5fx30teval/.gitignore                 |    1 +
 .../ml507/config.mk => avnet/v5fx30teval/Makefile} |   12 +-
 board/avnet/v5fx30teval/v5fx30teval.c              |   28 +
 board/avnet/v5fx30teval/xparameters.h              |   33 +
 board/esd/cpci405/config.mk                        |   16 +-
 board/esd/cpci405/u-boot.lds                       |   15 -
 board/xilinx/ml507/.gitignore                      |    1 +
 board/xilinx/ml507/Makefile                        |   41 +-
 board/xilinx/ml507/init.S                          |   53 -
 board/xilinx/ml507/ml507.c                         |   21 +-
 board/xilinx/ml507/xparameters.h                   |   17 +-
 board/xilinx/ppc440-generic/.gitignore             |    1 +
 board/xilinx/ppc440-generic/Makefile               |   62 +
 board/xilinx/ppc440-generic/init.S                 |   45 +
 .../{ml507 => ppc440-generic}/u-boot-ram.lds       |    0 
 .../{ml507 => ppc440-generic}/u-boot-rom.lds       |    0 
 .../xilinx/ppc440-generic/xilinx_ppc440_generic.c  |   52 +
 board/xilinx/ppc440-generic/xparameters.h          |   34 +
 cpu/ppc4xx/44x_spd_ddr2.c                          |  158 ++-
 cpu/ppc4xx/4xx_enet.c                              |  168 +++-
 cpu/ppc4xx/4xx_ibm_ddr2_autocalib.c                | 1212 ++++++++++++++++++++
 cpu/ppc4xx/Makefile                                |    3 +
 cpu/ppc4xx/miiphy.c                                |   37 +-
 include/asm-ppc/ppc4xx-sdram.h                     |    3 +-
 include/configs/CPCI4052.h                         |    6 +
 include/configs/CPCI405AB.h                        |    6 +
 include/configs/PIP405.h                           |    1 -
 include/configs/kilauea.h                          |   19 +
 include/configs/ml507.h                            |   91 +--
 include/configs/v5fx30teval.h                      |   49 +
 include/configs/xilinx-ppc440-generic.h            |   49 +
 include/configs/xilinx-ppc440.h                    |  106 ++
 include/ppc440.h                                   |   13 -
 include/ppc4xx.h                                   |   13 +
 include/ppc4xx_enet.h                              |    3 +
 41 files changed, 2112 insertions(+), 336 deletions(-)
 create mode 100644 board/avnet/v5fx30teval/.gitignore
 rename board/{xilinx/ml507/config.mk => avnet/v5fx30teval/Makefile} (76%)
 create mode 100644 board/avnet/v5fx30teval/v5fx30teval.c
 create mode 100644 board/avnet/v5fx30teval/xparameters.h
 create mode 100644 board/xilinx/ml507/.gitignore
 delete mode 100644 board/xilinx/ml507/init.S
 create mode 100644 board/xilinx/ppc440-generic/.gitignore
 create mode 100644 board/xilinx/ppc440-generic/Makefile
 create mode 100644 board/xilinx/ppc440-generic/init.S
 rename board/xilinx/{ml507 => ppc440-generic}/u-boot-ram.lds (100%)
 rename board/xilinx/{ml507 => ppc440-generic}/u-boot-rom.lds (100%)
 create mode 100644 board/xilinx/ppc440-generic/xilinx_ppc440_generic.c
 create mode 100644 board/xilinx/ppc440-generic/xparameters.h
 create mode 100644 cpu/ppc4xx/4xx_ibm_ddr2_autocalib.c
 create mode 100644 include/configs/v5fx30teval.h
 create mode 100644 include/configs/xilinx-ppc440-generic.h
 create mode 100644 include/configs/xilinx-ppc440.h

             reply	other threads:[~2008-09-08 13:23 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-09-08 13:23 Stefan Roese [this message]
2008-09-09  0:22 ` [U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Wolfgang Denk
2008-09-09  7:34 ` Wolfgang Denk
2008-09-09  7:50   ` [U-Boot] [PATCH] ppc4xx: Fix out-of-tree building of CPCI405 variants Matthias Fuchs
2008-09-09  7:56     ` Stefan Roese
2008-09-09  8:21     ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2009-02-18 15:01 [U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2009-02-18 23:52 ` Wolfgang Denk
2009-02-12  5:46 Stefan Roese
2009-02-12  7:39 ` Wolfgang Denk
2009-02-06 10:19 Stefan Roese
2009-02-07 21:40 ` Wolfgang Denk
2009-01-29 10:11 Stefan Roese
2009-02-01 20:21 ` Wolfgang Denk
2009-01-26  9:47 Stefan Roese
2009-01-27 19:54 ` Wolfgang Denk
2009-01-14 10:39 Stefan Roese
2009-01-16  8:22 ` Wolfgang Denk
2008-12-10 16:23 Stefan Roese
2008-12-12 23:37 ` Wolfgang Denk
2008-11-25  8:18 Stefan Roese
2008-11-25 10:59 ` Wolfgang Denk
2008-11-21 10:54 Stefan Roese
2008-10-31  9:51 Stefan Roese
2008-11-01 15:10 ` Wolfgang Denk
2008-10-24 15:36 Stefan Roese
2008-10-27 21:31 ` Wolfgang Denk
2008-10-21 15:40 Stefan Roese
2008-10-21 19:20 ` Wolfgang Denk
2008-10-13  9:18 Stefan Roese
2008-10-13 10:35 ` Wolfgang Denk
2008-09-16 18:19 Stefan Roese
2008-09-16 20:36 ` Wolfgang Denk
2008-09-17  4:00   ` Stefan Roese
2008-09-21 20:48     ` Wolfgang Denk
2008-09-22  9:09       ` Stefan Roese
2008-09-12  5:22 Stefan Roese
2008-09-12 13:24 ` Wolfgang Denk
2008-09-03 15:24 Stefan Roese
2008-09-03 20:59 ` Wolfgang Denk
2008-08-30  9:28 Stefan Roese
2008-08-31 22:05 ` Wolfgang Denk
2008-08-22 19:42 Stefan Roese
2008-08-22 22:16 ` Wolfgang Denk
2008-08-22  4:51 Stefan Roese
2008-08-22 22:15 ` Wolfgang Denk
2008-08-13  4:49 Stefan Roese
2008-08-13 21:01 ` Wolfgang Denk
2008-08-11  4:49 Stefan Roese
2008-08-11  6:46 ` 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=200809081523.27770.sr@denx.de \
    --to=sr@denx.de \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox