From patchwork Wed Nov 21 09:12:13 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 200613 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4300C2C007A for ; Wed, 21 Nov 2012 20:14:34 +1100 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Tb6MJ-0001IT-Ri; Wed, 21 Nov 2012 09:12:39 +0000 Received: from mail.free-electrons.com ([88.190.12.23]) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Tb6M8-0001Gt-5l for linux-arm-kernel@lists.infradead.org; Wed, 21 Nov 2012 09:12:36 +0000 Received: by mail.free-electrons.com (Postfix, from userid 106) id 3B869DE; Wed, 21 Nov 2012 10:12:16 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.free-electrons.com X-Spam-Level: X-Spam-Status: No, score=-3.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham version=3.3.1 Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id 8DA6E15E; Wed, 21 Nov 2012 10:12:04 +0100 (CET) From: Maxime Ripard To: Arnd Bergmann , Olof Johansson Subject: [GIT PULL] ARM: sunxi: support for sun4i (A10) SoCs Date: Wed, 21 Nov 2012 10:12:13 +0100 Message-Id: <1353489133-25814-1-git-send-email-maxime.ripard@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121121_041228_426515_E05C515E X-CRM114-Status: GOOD ( 11.63 ) X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.7 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org Arnd, Olof, Here is a pull request to add the support for Allwinner A10 SoCs. Thanks, Maxime The following changes since commit 1b106699647b56313bac707e12e7ad67180cb147: ARM: sunxi: Add entry to MAINTAINERS (2012-11-16 21:56:53 +0100) are available in the git repository at: git://github.com/mripard/linux.git tags/tags/sun4i-support-for-3.8 for you to fetch changes up to 67bea88dd842deb3ed8327ad101970dbd615ddcb: ARM: sunxi: Add sunxi restart function via onchip watchdog (2012-11-21 09:25:25 +0100) ---------------------------------------------------------------- Add support for sun4i (A10) SoCs and the cubieboard ---------------------------------------------------------------- Maxime Ripard (1): ARM: sunxi: Add sunxi restart function via onchip watchdog Stefan Roese (3): ARM: sunxi: Restructure sunxi dts/dtsi files ARM: sunxi: Add earlyprintk support for UART0 (sun4i) ARM: sunxi: Add sun4i and cubieboard support .../devicetree/bindings/watchdog/sunxi-wdt.txt | 13 ++++ arch/arm/Kconfig.debug | 9 ++- arch/arm/boot/dts/Makefile | 3 +- arch/arm/boot/dts/sun4i-cubieboard.dts | 38 ++++++++++ arch/arm/boot/dts/sun5i-olinuxino.dts | 6 +- arch/arm/boot/dts/sun5i.dtsi | 56 +------------- arch/arm/boot/dts/sunxi.dtsi | 80 ++++++++++++++++++++ arch/arm/include/debug/sunxi.S | 5 +- arch/arm/mach-sunxi/sunxi.c | 35 +++++++++ 9 files changed, 186 insertions(+), 59 deletions(-) create mode 100644 Documentation/devicetree/bindings/watchdog/sunxi-wdt.txt create mode 100644 arch/arm/boot/dts/sun4i-cubieboard.dts create mode 100644 arch/arm/boot/dts/sunxi.dtsi