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: Wed, 13 Aug 2008 06:49:44 +0200	[thread overview]
Message-ID: <200808130649.44825.sr@denx.de> (raw)

The following changes since commit cd82919e6c8a73b363a26f34b734923844e52d1c:
  Wolfgang Denk (1):
        Coding style cleanup, update CHANGELOG, prepare release

are available in the git repository at:

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

Feng Kan (3):
      ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
      ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
      ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.

Grant Erickson (5):
      PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
      ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
      ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
      ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
      ppc4xx: Add MII mode support to the EMAC RGMII Bridge

Ricardo Ribalda Delgado (2):
      ppc4xx: CPU PPC440x5 on Virtex5 FX
      ppc4xx: ML507 Board Support

Stefan Roese (12):
      ppc4xx: Fix merge problems in 44x_spd_ddr2.c
      ppc4xx: Consolidate PPC4xx EBC defines
      ppc4xx: Consolidate PPC4xx UIC defines
      ppc4xx: Consolidate PPC4xx UIC defines
      ppc4xx: Rework 440GX UIC handling
      ppc4xx: Cleanup Katmai & Yucca PCIe register usage
      ppc4xx: Continue cleanup of ppc440.h
      ppc4xx: Add 460SX UIC defines
      ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
      ppc4xx: Fix small korat merge problem
      ppc4xx: Fix compile warning in 44x_spd_ddr2.c
      ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support

 CREDITS                             |    5 +
 MAINTAINERS                         |    7 +
 MAKEALL                             |    2 +
 Makefile                            |    6 +
 board/amcc/katmai/katmai.c          |   72 +---
 board/amcc/ocotea/ocotea.c          |   50 +-
 board/amcc/redwood/Makefile         |   50 ++
 board/amcc/redwood/config.mk        |   42 ++
 board/amcc/redwood/init.S           |   77 +++
 board/amcc/redwood/redwood.c        |  456 ++++++++++++++
 board/amcc/redwood/redwood.h        |   50 ++
 board/amcc/redwood/u-boot.lds       |  147 +++++
 board/amcc/sequoia/sequoia.c        |    5 +-
 board/amcc/taishan/taishan.c        |   50 +-
 board/amcc/yucca/yucca.c            |   62 +--
 board/korat/korat.c                 |    4 +-
 board/prodrive/alpr/alpr.c          |   50 +-
 board/sandburst/karef/karef.c       |   50 +-
 board/sandburst/metrobox/metrobox.c |   50 +-
 board/xilinx/ml507/Makefile         |   58 ++
 board/xilinx/ml507/config.mk        |   24 +
 board/xilinx/ml507/init.S           |   47 ++
 board/xilinx/ml507/ml507.c          |   46 ++
 board/xilinx/ml507/u-boot.lds       |  130 ++++
 board/xilinx/ml507/xparameters.h    |   34 ++
 board/xpedite1k/xpedite1k.c         |   50 +-
 common/cmd_reginfo.c                |    5 +-
 cpu/ppc4xx/44x_spd_ddr2.c           |  276 ++++------
 cpu/ppc4xx/4xx_enet.c               |  492 ++++++----------
 cpu/ppc4xx/4xx_uart.c               |    2 +-
 cpu/ppc4xx/Makefile                 |   13 +-
 cpu/ppc4xx/cpu.c                    |   41 ++
 cpu/ppc4xx/cpu_init.c               |   15 +-
 cpu/ppc4xx/interrupts.c             |  237 +-------
 cpu/ppc4xx/iop480_uart.c            |    1 -
 cpu/ppc4xx/speed.c                  |    9 +-
 cpu/ppc4xx/start.S                  |   19 +-
 cpu/ppc4xx/uic.c                    |  180 ++++++
 cpu/ppc4xx/usbdev.c                 |    4 +-
 cpu/ppc4xx/xilinx_irq.c             |  100 ++++
 include/asm-ppc/interrupt.h         |   36 ++
 include/asm-ppc/ppc4xx-ebc.h        |  156 +++++
 include/asm-ppc/ppc4xx-intvec.h     |  474 ---------------
 include/asm-ppc/ppc4xx-sdram.h      |  338 +++++++++--
 include/asm-ppc/ppc4xx-uic.h        |  316 ++++++++++
 include/asm-ppc/processor.h         |    6 +
 include/asm-ppc/xilinx_irq.h        |   36 ++
 include/configs/HH405.h             |    2 +-
 include/configs/katmai.h            |    1 -
 include/configs/kilauea.h           |  146 ++++-
 include/configs/makalu.h            |    1 +
 include/configs/ml507.h             |  116 ++++
 include/configs/redwood.h           |  186 ++++++
 include/ppc405.h                    |  397 ++------------
 include/ppc440.h                    | 1112 +----------------------------------
 include/ppc4xx.h                    |    7 +-
 include/ppc4xx_enet.h               |   16 +-
 57 files changed, 3399 insertions(+), 2965 deletions(-)
 create mode 100644 board/amcc/redwood/Makefile
 create mode 100644 board/amcc/redwood/config.mk
 create mode 100644 board/amcc/redwood/init.S
 create mode 100644 board/amcc/redwood/redwood.c
 create mode 100644 board/amcc/redwood/redwood.h
 create mode 100644 board/amcc/redwood/u-boot.lds
 create mode 100644 board/xilinx/ml507/Makefile
 create mode 100644 board/xilinx/ml507/config.mk
 create mode 100644 board/xilinx/ml507/init.S
 create mode 100644 board/xilinx/ml507/ml507.c
 create mode 100644 board/xilinx/ml507/u-boot.lds
 create mode 100644 board/xilinx/ml507/xparameters.h
 create mode 100644 cpu/ppc4xx/uic.c
 create mode 100644 cpu/ppc4xx/xilinx_irq.c
 create mode 100644 include/asm-ppc/interrupt.h
 create mode 100644 include/asm-ppc/ppc4xx-ebc.h
 delete mode 100644 include/asm-ppc/ppc4xx-intvec.h
 create mode 100644 include/asm-ppc/ppc4xx-uic.h
 create mode 100644 include/asm-ppc/xilinx_irq.h
 create mode 100644 include/configs/ml507.h
 create mode 100644 include/configs/redwood.h

             reply	other threads:[~2008-08-13  4:49 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-13  4:49 Stefan Roese [this message]
2008-08-13 21:01 ` [U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2009-02-18 15:01 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-08 13:23 Stefan Roese
2008-09-09  0:22 ` Wolfgang Denk
2008-09-09  7:34 ` 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-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=200808130649.44825.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