From patchwork Thu Dec 1 08:18:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Roese X-Patchwork-Id: 128663 X-Patchwork-Delegate: wd@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 738081007D6 for ; Thu, 1 Dec 2011 19:19:28 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C0F43280A0; Thu, 1 Dec 2011 09:19:25 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p+Z0u-nxV2uc; Thu, 1 Dec 2011 09:19:25 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A5FED28098; Thu, 1 Dec 2011 09:19:24 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 898ED28098 for ; Thu, 1 Dec 2011 09:19:22 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rHSxowF9Q9rT for ; Thu, 1 Dec 2011 09:19:22 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mo-p05-ob.rzone.de (mo-p05-ob.rzone.de [81.169.146.180]) by theia.denx.de (Postfix) with ESMTPS id 0A1BA28097 for ; Thu, 1 Dec 2011 09:19:20 +0100 (CET) X-RZG-AUTH: :IW0NeWC7b/q2i6W/qstXb1SBUuFnrGohdvpEkce+Ub4+ReKfHD+mCZCG5kE69A== X-RZG-CLASS-ID: mo05 Received: from kubuntu.localnet (p57B94278.dip.t-dialin.net [87.185.66.120]) by smtp.strato.de (cohen mo41) (RZmta 26.10 AUTH) with ESMTPA id i053aenB18INFY ; Thu, 1 Dec 2011 09:19:03 +0100 (MET) From: Stefan Roese To: "U-Boot-Users" Date: Thu, 1 Dec 2011 09:18:56 +0100 User-Agent: KMail/1.13.6 (Linux/2.6.38-12-generic; KDE/4.7.2; x86_64; ; ) MIME-Version: 1.0 Message-Id: <201112010918.56296.sr@denx.de> Subject: [U-Boot] Please pull u-boot-ppc4xx/master X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Hi Wolfgang, please pull these patches which have been pending for quite a while: The following changes since commit a63d9652757605ec5f7104addc5d38bf10ba8671: menu.c: use puts() instead of printf() where possible (2011-11-28 20:19:41 +0100) are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Dirk Eibach (1): ppc4xx: Add Io64 board support Matthias Fuchs (3): ppc4xx: use CONFIG_PCI_BOOTDELAY instead of private implementation ppc4xx: remove invalid access to PCI_BRDGOPT2 register ppc4xx: fix PMC440 painit command MAINTAINERS | 1 + board/esd/pmc440/cmd_pmc440.c | 17 +- board/esd/pmc440/pmc440.c | 17 -- board/gdsys/405ex/405ex.c | 250 +++++++++++++++++ board/gdsys/405ex/405ex.h | 10 + board/gdsys/405ex/Makefile | 53 ++++ board/gdsys/405ex/chip_config.c | 96 +++++++ board/gdsys/405ex/io64.c | 384 ++++++++++++++++++++++++++ board/gdsys/common/Makefile | 1 + board/gdsys/common/miiphybb.c | 58 ++++- boards.cfg | 1 + include/configs/PMC440.h | 2 + include/configs/io64.h | 566 +++++++++++++++++++++++++++++++++++++++ include/gdsys_fpga.h | 19 ++ 14 files changed, 1448 insertions(+), 27 deletions(-) create mode 100644 board/gdsys/405ex/405ex.c create mode 100644 board/gdsys/405ex/405ex.h create mode 100644 board/gdsys/405ex/Makefile create mode 100644 board/gdsys/405ex/chip_config.c create mode 100644 board/gdsys/405ex/io64.c create mode 100644 include/configs/io64.h