From: Stefan Roese <sr@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-ppc4xx
Date: Fri, 24 Jul 2009 10:39:12 +0200 [thread overview]
Message-ID: <200907241039.12784.sr@denx.de> (raw)
The following changes since commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d:
Wolfgang Denk (1):
Coding Style cleanup; update CHANGELOG.
are available in the git repository at:
git://www.denx.de/git/u-boot-ppc4xx.git master
Dirk Eibach (2):
ppc4xx: Fix missing freqOPB for 405EP
ppc4xx: Add DL-Vision 405EP board support
Matthias Fuchs (4):
ppc4xx: Cleanup PLU405 board code
ppc4xx: Replace 4xx lowercase SPR references
ppc4xx: Add struct for 4xx GPIO controller registers
ppc4xx: Add 405EP based PMC405DE board
Peter Tyser (14):
xpedite1k: Use standard CFI flash driver
xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
xpedite1k: Remove support for fixed SDRAM configuration
xpedite1k: Remove support for reading MACs from EEPROM
xpedite1k: Cleanup coding style
xpedite1k: Add support for optional flashes
xpedite1k: Add support for additional GPIO pins
xpedite1k: Store environment in flash
xpedite1k: Disable unused ethernet port 1
xpedite1k: Sync up commands and environment with other X-ES boards
xpedite1k: Sync organization of board config with other X-ES boards
xpedite1k: Sync up board config options with other X-ES boards
xpedite1k: Sync checkboard() with other X-ES boards
xpedite1k: Move to X-ES vendor directory
Stefan Roese (4):
ppc4xx: Fix TLB reset problem with recent 44x images
Add "chip_config" command for PPC4xx bootstrap configuration
ppc4xx: Fix EEPROM configuration on Kilauea
ppc4xx: Add chip_config command to AMCC Kilauea eval board
MAINTAINERS | 4 +-
MAKEALL | 4 +-
Makefile | 10 +-
board/amcc/canyonlands/Makefile | 5 +-
board/amcc/canyonlands/bootstrap.c | 195 -------
board/amcc/canyonlands/chip_config.c | 87 +++
board/amcc/kilauea/Makefile | 4 +-
board/amcc/kilauea/chip_config.c | 73 +++
board/amcc/kilauea/cmd_pll.c | 297 ----------
board/esd/plu405/plu405.c | 118 ++--
board/{xpedite1k => esd/pmc405de}/Makefile | 8 +-
board/esd/pmc405de/chip_config.c | 61 ++
board/{xpedite1k => esd/pmc405de}/config.mk | 23 +-
board/esd/pmc405de/pmc405de.c | 521 +++++++++++++++++
.../u-boot.lds.debug => esd/pmc405de/u-boot.lds} | 30 +-
board/esd/pmc440/pmc440.c | 2 +-
board/{xpedite1k => gdsys/dlvision}/Makefile | 10 +-
board/{xpedite1k => gdsys/dlvision}/config.mk | 22 +-
board/gdsys/dlvision/dlvision.c | 137 +++++
.../u-boot.lds.debug => gdsys/dlvision/u-boot.lds} | 35 +-
board/mpl/mip405/mip405.c | 2 +-
board/mpl/pip405/pip405.c | 2 +-
board/netstal/hcu5/hcu5.c | 8 +-
board/netstal/hcu5/sdram.c | 4 +-
board/netstal/mcu25/mcu25.c | 2 +-
board/{xpedite1k => xes/xpedite1000}/Makefile | 2 +-
board/{xpedite1k => xes/xpedite1000}/config.mk | 0
board/{xpedite1k => xes/xpedite1000}/init.S | 67 +--
board/{xpedite1k => xes/xpedite1000}/u-boot.lds | 5 +-
.../xpedite1000}/u-boot.lds.debug | 2 +-
board/xes/xpedite1000/xpedite1000.c | 244 ++++++++
board/xpedite1k/flash.c | 607 --------------------
board/xpedite1k/xpedite1k.c | 393 -------------
cpu/ppc4xx/Makefile | 3 +
cpu/ppc4xx/cmd_chip_config.c | 142 +++++
cpu/ppc4xx/cpu.c | 8 +-
cpu/ppc4xx/cpu_init.c | 2 +-
cpu/ppc4xx/interrupts.c | 18 +-
cpu/ppc4xx/speed.c | 5 +-
cpu/ppc4xx/start.S | 215 ++++----
include/asm-ppc/gpio.h | 24 +
include/asm-ppc/ppc4xx_config.h | 42 ++
include/asm-ppc/processor.h | 46 ++
include/configs/PMC405DE.h | 378 ++++++++++++
include/configs/XPEDITE1000.h | 356 ++++++++++++
include/configs/XPEDITE1K.h | 274 ---------
include/configs/canyonlands.h | 6 +
include/configs/dlvision.h | 225 ++++++++
include/configs/kilauea.h | 9 +-
include/ppc405.h | 55 --
include/ppc440.h | 93 ---
post/cpu/ppc4xx/fpu.c | 6 +-
52 files changed, 2649 insertions(+), 2242 deletions(-)
delete mode 100644 board/amcc/canyonlands/bootstrap.c
create mode 100644 board/amcc/canyonlands/chip_config.c
create mode 100644 board/amcc/kilauea/chip_config.c
delete mode 100644 board/amcc/kilauea/cmd_pll.c
copy board/{xpedite1k => esd/pmc405de}/Makefile (90%)
create mode 100644 board/esd/pmc405de/chip_config.c
copy board/{xpedite1k => esd/pmc405de}/config.mk (73%)
create mode 100644 board/esd/pmc405de/pmc405de.c
copy board/{xpedite1k/u-boot.lds.debug => esd/pmc405de/u-boot.lds} (83%)
copy board/{xpedite1k => gdsys/dlvision}/Makefile (89%)
copy board/{xpedite1k => gdsys/dlvision}/config.mk (73%)
create mode 100644 board/gdsys/dlvision/dlvision.c
copy board/{xpedite1k/u-boot.lds.debug => gdsys/dlvision/u-boot.lds} (81%)
rename board/{xpedite1k => xes/xpedite1000}/Makefile (98%)
rename board/{xpedite1k => xes/xpedite1000}/config.mk (100%)
rename board/{xpedite1k => xes/xpedite1000}/init.S (61%)
rename board/{xpedite1k => xes/xpedite1000}/u-boot.lds (97%)
rename board/{xpedite1k => xes/xpedite1000}/u-boot.lds.debug (98%)
create mode 100644 board/xes/xpedite1000/xpedite1000.c
delete mode 100644 board/xpedite1k/flash.c
delete mode 100644 board/xpedite1k/xpedite1k.c
create mode 100644 cpu/ppc4xx/cmd_chip_config.c
create mode 100644 include/asm-ppc/ppc4xx_config.h
create mode 100644 include/configs/PMC405DE.h
create mode 100644 include/configs/XPEDITE1000.h
delete mode 100644 include/configs/XPEDITE1K.h
create mode 100644 include/configs/dlvision.h
next reply other threads:[~2009-07-24 8:39 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-24 8:39 Stefan Roese [this message]
2009-07-26 20:54 ` [U-Boot] Please pull u-boot-ppc4xx Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2015-10-27 11:38 Stefan Roese
2015-10-28 20:55 ` Tom Rini
2013-07-26 5:50 Stefan Roese
2013-07-26 23:35 ` Tom Rini
2012-01-10 7:42 Stefan Roese
2012-01-13 19:12 ` Wolfgang Denk
2009-12-21 9:33 Stefan Roese
2009-12-21 20:06 ` Wolfgang Denk
2009-12-22 4:51 ` Stefan Roese
2009-09-23 14:05 Stefan Roese
2009-09-23 22:17 ` Wolfgang Denk
2009-09-17 12:11 Stefan Roese
2009-09-17 21:31 ` Wolfgang Denk
2009-09-11 8:47 Stefan Roese
2009-09-15 19:44 ` Wolfgang Denk
2009-09-08 9:09 Stefan Roese
2009-09-08 18:55 ` Wolfgang Denk
2009-09-09 6:23 ` Stefan Roese
2009-07-10 7:12 Stefan Roese
2009-07-13 21:34 ` Wolfgang Denk
2009-05-20 11:07 Stefan Roese
2009-05-20 20:42 ` Wolfgang Denk
2009-04-15 14:33 Stefan Roese
2009-04-16 14:25 ` Stefan Roese
2009-04-16 20:53 ` Wolfgang Denk
2009-04-16 20:53 ` Wolfgang Denk
2009-04-14 8:44 Stefan Roese
2009-04-16 20:53 ` Wolfgang Denk
2009-03-26 17:39 Stefan Roese
2009-03-26 21:34 ` Wolfgang Denk
2009-03-20 12:04 Stefan Roese
2009-03-20 20:56 ` Wolfgang Denk
2009-03-17 9:57 Stefan Roese
2009-03-17 23:38 ` 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=200907241039.12784.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