From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Roese Date: Tue, 21 Oct 2008 17:40:41 +0200 Subject: [U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Message-ID: <200810211740.41837.sr@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The following changes since commit f61f1e150c84f5b9347fca79a4bc5f2286c545d2: Stefan Roese (1): Merge branch 'master' of /home/stefan/git/u-boot/u-boot are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Adam Graham (3): ppc4xx: Add AMCC Arches board support (dual 460GT) ppc4xx: Add static support for 44x IBM SDRAM Controller ppc4xx: Add routine to retrieve CPU number Dirk Eibach (1): ppc4xx: Add GDSys neo 405EP board support Niklaus Giger (1): ppc4xx: Update configs for Netstal boards Stefan Roese (2): ppc4xx: Correctly setup ranges property in ebc node ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup MAINTAINERS | 4 + MAKEALL | 2 + Makefile | 6 +- board/amcc/canyonlands/bootstrap.c | 12 ++ board/amcc/canyonlands/canyonlands.c | 140 +++++++++++++++++++ board/amcc/canyonlands/init.S | 17 +++ board/gdsys/neo/Makefile | 51 +++++++ board/gdsys/neo/config.mk | 24 +++ board/gdsys/neo/neo.c | 101 +++++++++++++ board/gdsys/neo/u-boot.lds | 132 ++++++++++++++++++ cpu/ppc4xx/44x_spd_ddr2.c | 71 +++++++--- cpu/ppc4xx/cpu.c | 19 +++- cpu/ppc4xx/fdt.c | 45 ++++--- include/asm-ppc/ppc4xx-ebc.h | 31 ++++ include/configs/amcc-common.h | 17 ++- include/configs/canyonlands.h | 222 +++++++++++++++++++++++++++--- include/configs/hcu4.h | 100 ++------------ include/configs/hcu5.h | 118 ++-------------- include/configs/mcu25.h | 94 ++----------- include/configs/neo.h | 231 ++++++++++++++++++++++++++++++ include/configs/netstal-common.h | 255 ++++++++++++++++++++++++++++++++++ include/ppc440.h | 3 + include/ppc4xx.h | 3 + 23 files changed, 1368 insertions(+), 330 deletions(-) create mode 100644 board/gdsys/neo/Makefile create mode 100644 board/gdsys/neo/config.mk create mode 100644 board/gdsys/neo/neo.c create mode 100644 board/gdsys/neo/u-boot.lds create mode 100644 include/configs/neo.h create mode 100644 include/configs/netstal-common.h