From patchwork Fri Dec 9 14:00:18 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Josh Boyer X-Patchwork-Id: 130383 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [IPv6:::1]) by ozlabs.org (Postfix) with ESMTP id A1191100A6F for ; Sat, 10 Dec 2011 01:00:32 +1100 (EST) Received: from mail-vx0-f179.google.com (mail-vx0-f179.google.com [209.85.220.179]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id 712861007D7 for ; Sat, 10 Dec 2011 01:00:21 +1100 (EST) Received: by vcbfl15 with SMTP id fl15so2341632vcb.38 for ; Fri, 09 Dec 2011 06:00:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=3xFpf2y83LKBqmqwboAK1G3Tpo8j++jR+EVE/3eEv1g=; b=OVo6spDwgy6EQepLMLYhTBcKmLi9W0XvRbYW7xAnN9KB1rXFxVS2D8jAAdRTCQbCvS mf6XYLz2fhsDhEQjqcoqfHX6ybagSPod5Y8e0z498abX8LedlIFCJNUxAZ5abMhX2KXE YDTI8+af0RhMCt/mX3ZOFyTlpQMHkWkbVKa8c= MIME-Version: 1.0 Received: by 10.52.94.97 with SMTP id db1mr4579076vdb.16.1323439218702; Fri, 09 Dec 2011 06:00:18 -0800 (PST) Received: by 10.220.177.4 with HTTP; Fri, 9 Dec 2011 06:00:18 -0800 (PST) Date: Fri, 9 Dec 2011 09:00:18 -0500 Message-ID: Subject: Please pull 'next' branch of new 4xx tree (updated) From: Josh Boyer To: Benjamin Herrenschmidt , Stephen Rothwell Cc: linuxppc-dev X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org On Wed, Nov 30, 2011 at 10:14 AM, Josh Boyer wrote: > Hi Ben, > > I have a new 4xx tree setup now.  Two small commits for the next > branch are queued up.  I'd like to get the patch series from Suzie and > Tony included soon as well, but thought I'd start with these to get > things rolling. I've updated my next branch to include the Currituck changes from Tony. Suzie's patches from today look good, but he has an error in one of them that is missing a file, so I'll have to send those on once that is fixed. Please pull this time ;) josh The following changes since commit fa8cbaaf5a68f62db3f9a8444ecbb940b47984cb: powerpc+sparc64/mm: Remove hack in mmap randomize layout (2011-11-28 11:42:09 +1100) are available in the git repository at: git://git.infradead.org/users/jwboyer/powerpc-4xx.git next Christoph Egger (1): powerpc/44x: Removing dead CONFIG_PPC47x Josh Boyer (1): MAINTAINERS: Update PowerPC 4xx git tree Tanmay Inamdar (1): powerpc/40x: Add APM8018X SOC support Tony Breeds (7): powerpc/44x: pci: Use PCI_BASE_ADDRESS_MEM_PREFETCH rather than magic value. powerpc/44x: pci: Add a want_sdr flag into ppc4xx_pciex_hwops powerpc/44x: pci: Setup the dma_window properties for each pci_controller powerpc/boot: Add extended precision shifts to the boot wrapper. powerpc/boot: Add mfdcrx powerpc/476fpe: Add 476fpe SoC code powerpc/47x: Add support for the new IBM currituck platform MAINTAINERS | 2 +- arch/powerpc/boot/Makefile | 5 +- arch/powerpc/boot/dcr.h | 6 + arch/powerpc/boot/div64.S | 52 ++++++ arch/powerpc/boot/dts/currituck.dts | 237 ++++++++++++++++++++++++++ arch/powerpc/boot/dts/klondike.dts | 227 ++++++++++++++++++++++++ arch/powerpc/boot/treeboot-currituck.c | 119 +++++++++++++ arch/powerpc/boot/wrapper | 3 + arch/powerpc/configs/40x/klondike_defconfig | 55 ++++++ arch/powerpc/configs/44x/currituck_defconfig | 110 ++++++++++++ arch/powerpc/include/asm/reg.h | 1 + arch/powerpc/kernel/cputable.c | 27 +++ arch/powerpc/kernel/head_44x.S | 2 + arch/powerpc/mm/44x_mmu.c | 4 - arch/powerpc/platforms/40x/Kconfig | 11 ++ arch/powerpc/platforms/40x/ppc40x_simple.c | 1 + arch/powerpc/platforms/44x/Kconfig | 14 ++ arch/powerpc/platforms/44x/Makefile | 1 + arch/powerpc/platforms/44x/currituck.c | 204 ++++++++++++++++++++++ arch/powerpc/sysdev/ppc4xx_pci.c | 85 +++++++++- arch/powerpc/sysdev/ppc4xx_pci.h | 7 + 21 files changed, 1159 insertions(+), 14 deletions(-) create mode 100644 arch/powerpc/boot/dts/currituck.dts create mode 100644 arch/powerpc/boot/dts/klondike.dts create mode 100644 arch/powerpc/boot/treeboot-currituck.c create mode 100644 arch/powerpc/configs/40x/klondike_defconfig create mode 100644 arch/powerpc/configs/44x/currituck_defconfig create mode 100644 arch/powerpc/platforms/44x/currituck.c