From patchwork Tue Jun 28 21:43:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Pedersen X-Patchwork-Id: 9204053 X-Patchwork-Delegate: agross@codeaurora.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 0A47C60757 for ; Tue, 28 Jun 2016 21:45:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id F38A728611 for ; Tue, 28 Jun 2016 21:45:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E83ED2861C; Tue, 28 Jun 2016 21:45:00 +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=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6A66D28611 for ; Tue, 28 Jun 2016 21:45:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752227AbcF1Vox (ORCPT ); Tue, 28 Jun 2016 17:44:53 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:36296 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752494AbcF1Voq (ORCPT ); Tue, 28 Jun 2016 17:44:46 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id CD01D612C1; Tue, 28 Jun 2016 21:43:18 +0000 (UTC) Received: from twp-linux.qualcomm.com (i-global254.qualcomm.com [199.106.103.254]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: twp@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id EDB76611E4; Tue, 28 Jun 2016 21:43:15 +0000 (UTC) From: Thomas Pedersen To: linux-arm-msm@vger.kernel.org Cc: linux@qca.qualcomm.com, Andy Gross , Thomas Pedersen , David Brown , Rob Herring , Mark Rutland , Russell King Subject: [RESEND PATCH 3/5] arm: qcom: dts: ipq8064: Add ADM device node Date: Tue, 28 Jun 2016 14:43:04 -0700 Message-Id: <1467150186-11427-4-git-send-email-twp@codeaurora.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1467150186-11427-1-git-send-email-twp@codeaurora.org> References: <1467150186-11427-1-git-send-email-twp@codeaurora.org> Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Andy Gross Signed-off-by: Andy Gross Signed-off-by: Thomas Pedersen --- arch/arm/boot/dts/qcom-ipq8064.dtsi | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq8064.dtsi b/arch/arm/boot/dts/qcom-ipq8064.dtsi index 2601a90..1a3549f 100644 --- a/arch/arm/boot/dts/qcom-ipq8064.dtsi +++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi @@ -1,9 +1,11 @@ /dts-v1/; #include "skeleton.dtsi" +#include #include #include #include +#include / { model = "Qualcomm IPQ8064"; @@ -341,5 +343,24 @@ #reset-cells = <1>; }; + adm_dma: dma@18300000 { + compatible = "qcom,adm"; + reg = <0x18300000 0x100000>; + interrupts = ; + #dma-cells = <1>; + + clocks = <&gcc ADM0_CLK>, <&gcc ADM0_PBUS_CLK>; + clock-names = "core", "iface"; + + resets = <&gcc ADM0_RESET>, + <&gcc ADM0_PBUS_RESET>, + <&gcc ADM0_C0_RESET>, + <&gcc ADM0_C1_RESET>, + <&gcc ADM0_C2_RESET>; + reset-names = "clk", "pbus", "c0", "c1", "c2"; + qcom,ee = <0>; + + status = "disabled"; + }; }; };