From patchwork Mon Nov 5 19:18:27 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Mack X-Patchwork-Id: 10669087 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 84F561709 for ; Mon, 5 Nov 2018 20:23:05 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 603E729EB3 for ; Mon, 5 Nov 2018 20:23:05 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 546EC29EEA; Mon, 5 Nov 2018 20:23:05 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.6 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id B2F8F29EB3 for ; Mon, 5 Nov 2018 20:23:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id:Message-Id:Date: Subject:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To: References:List-Owner; bh=M914JTY4ghhNUSE6BJMZcHicIKgOn5NJjuVLR5eiKOM=; b=Vuv CDEo9KXO3kH0BymtHO+kJjhideOGtDnQHs+lwgqOqRj6hUBo6/xg5UeOzel0RzHIpZJ3ikeNiiq0G B8q37ERg6n8OVQf2ov5kCYtd7sYXPdnJKwWyj+CmDxIGvYVBSdjO+Tr8UDuDRbqIGnolBbjemM6R7 ppLNPiescrsUGF5i/YqktuPEm9X/EiDAwqRDtox3uInaWzVWhwVjOtGIIQpKTDrekAAwFDHf3Sd9P invLMZAJeuRhq/6BgHhfidCXdVLDn0O7VUwrPGjTfn/aHIn5Nb1lv+AMbj0uSmD4Cx4WGsBzMAncD wiKW36ZL9ij6Eo+9vml0q8p1QCq0Evg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1gJlOl-0006fN-JB; Mon, 05 Nov 2018 20:22:59 +0000 Received: from mail.bugwerft.de ([2a03:6000:1011::59]) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1gJkra-0000Cb-SQ for linux-arm-kernel@lists.infradead.org; Mon, 05 Nov 2018 19:51:42 +0000 Received: from localhost.localdomain (pD95EFB44.dip0.t-ipconnect.de [217.94.251.68]) by mail.bugwerft.de (Postfix) with ESMTPSA id 93FE52A6CE6; Mon, 5 Nov 2018 19:16:17 +0000 (UTC) From: Daniel Mack To: robert.jarzmik@free.fr, haojian.zhuang@gmail.com Subject: [PATCH] ARM: dts: pxa3xx: add gcu node Date: Mon, 5 Nov 2018 20:18:27 +0100 Message-Id: <20181105191827.3860-1-daniel@zonque.org> X-Mailer: git-send-email 2.17.2 X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, robh+dt@kernel.org, Daniel Mack , linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP Add a device node for hardware graphic acceleration. Signed-off-by: Daniel Mack --- arch/arm/boot/dts/pxa3xx.dtsi | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch/arm/boot/dts/pxa3xx.dtsi b/arch/arm/boot/dts/pxa3xx.dtsi index 3a8f0edc3af9..264f681bebd9 100644 --- a/arch/arm/boot/dts/pxa3xx.dtsi +++ b/arch/arm/boot/dts/pxa3xx.dtsi @@ -300,4 +300,12 @@ clocks = <&clks CLK_OSTIMER>; status = "okay"; }; + + gcu: display-controller@54000000 { + compatible = "marvell,pxa300-gcu"; + reg = <0x54000000 0x1000>; + interrupts = <39>; + clocks = <&clks CLK_PXA300_GCU>; + status = "disabled"; + }; };