[U-Boot] Please pull u-boot-ppc4xx
Stefan Roese
sr at denx.de
Fri Jul 24 10:39:12 CEST 2009
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
More information about the U-Boot
mailing list