
The following changes since commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7: Wolfgang Denk (1): Coding Style cleanup; generate new CHANGELOG file.
are available in the git repository at:
git://www.denx.de/git/u-boot-ppc4xx.git master
BenoƮt Monin (1): fix gpio setting when using CFG_440_GPIO_TABLE
Grzegorz Bernacki (1): ppc4xx: Clean up 440 exceptions handling
Stefan Roese (8): [ppc4xx] Extend program_tlb() with virtual & physical addresses [ppc4xx] Extend 44x GPIO setup with default output state [ppc4xx] Add initial lwmon5 board support Merge with /home/stefan/git/u-boot/denx-440-exceptions [ppc4xx] Change lwmon5 port to work with recent 440 exception rework [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c [ppc4xx] Fix problem with NAND booting on AMCC Acadia ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
MAINTAINERS | 1 + MAKEALL | 18 +- Makefile | 3 + board/amcc/acadia/Makefile | 2 +- board/amcc/acadia/acadia.c | 2 + board/amcc/acadia/memory.c | 11 + board/amcc/acadia/{cpr.c => pll.c} | 0 board/amcc/sequoia/Makefile | 2 +- board/amcc/sequoia/cmd_sequoia.c | 111 ++++++ board/lwmon5/Makefile | 51 +++ board/lwmon5/config.mk | 39 +++ board/lwmon5/init.S | 90 +++++ board/lwmon5/lwmon5.c | 464 +++++++++++++++++++++++++ board/lwmon5/sdram.c | 598 +++++++++++++++++++++++++++++++++ board/lwmon5/sdram.h | 505 ++++++++++++++++++++++++++++ board/lwmon5/u-boot.lds | 145 ++++++++ cpu/ppc4xx/44x_spd_ddr.c | 4 +- cpu/ppc4xx/44x_spd_ddr2.c | 4 +- cpu/ppc4xx/config.mk | 10 +- cpu/ppc4xx/gpio.c | 42 +++- cpu/ppc4xx/start.S | 331 +++++++++--------- cpu/ppc4xx/tlb.c | 77 +++-- cpu/ppc4xx/traps.c | 107 ++++--- include/asm-ppc/gpio.h | 8 +- include/asm-ppc/processor.h | 15 +- include/configs/CPCI440.h | 1 + include/configs/KAREF.h | 1 + include/configs/METROBOX.h | 1 + include/configs/acadia.h | 4 +- include/configs/alpr.h | 1 + include/configs/bamboo.h | 1 + include/configs/ebony.h | 1 + include/configs/katmai.h | 2 +- include/configs/lwmon5.h | 438 ++++++++++++++++++++++++ include/configs/ocotea.h | 1 + include/configs/p3p440.h | 1 + include/configs/pcs440ep.h | 131 ++++---- include/configs/sequoia.h | 1 + include/configs/taishan.h | 1 + include/configs/yosemite.h | 1 + include/ppc405.h | 9 + include/ppc440.h | 10 +- include/ppc4xx.h | 1 + include/ppc_asm.tmpl | 96 +++---- nand_spl/board/amcc/acadia/Makefile | 14 +- nand_spl/board/amcc/acadia/config.mk | 4 +- nand_spl/board/amcc/acadia/u-boot.lds | 2 +- 47 files changed, 2968 insertions(+), 394 deletions(-) rename board/amcc/acadia/{cpr.c => pll.c} (100%) create mode 100644 board/amcc/sequoia/cmd_sequoia.c create mode 100644 board/lwmon5/Makefile create mode 100644 board/lwmon5/config.mk create mode 100644 board/lwmon5/init.S create mode 100644 board/lwmon5/lwmon5.c create mode 100644 board/lwmon5/sdram.c create mode 100644 board/lwmon5/sdram.h create mode 100644 board/lwmon5/u-boot.lds create mode 100644 include/configs/lwmon5.h