From patchwork Thu Jun 5 17:26:17 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Matthias Brugger X-Patchwork-Id: 356553 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id E41E114008D for ; Fri, 6 Jun 2014 03:27:54 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752983AbaFER1j (ORCPT ); Thu, 5 Jun 2014 13:27:39 -0400 Received: from mail-wg0-f42.google.com ([74.125.82.42]:52524 "EHLO mail-wg0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751761AbaFER0m (ORCPT ); Thu, 5 Jun 2014 13:26:42 -0400 Received: by mail-wg0-f42.google.com with SMTP id y10so1460466wgg.1 for ; Thu, 05 Jun 2014 10:26:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=Wv26Qs6UwVKtS7s5STQ086z91zGLSf9e6ZzKMxVdDGs=; b=UbZ3RAT5zo9DphqVOaxmcGOybJcGG20dTKTNNrzno5urcj3DfpJWf2Xtr0TOzLKXlx 1WKYdL3Jz0x6x6HUlECPX5mB92iyMT1oU3WTNv5DniFvMzfTyszqcb19WqipTNehhf9F Se2Qh/c7eOzrFlZ1tO4m7LMgFcZqHGiw7ASHlSonZuGFgZh2Bico8G7/pHxcofjE0GLs GPnsYSmyBwOXZHTZR8GqfOGlrFZ6tlupqmEPKFJ1obDUBh9QtHzZnUxi8q/NdzXY3KMB GKT6PI0/MBBSx37J5CYraOKSSUUp3jPJzJYX0J52gBTDAs/tIBn68pFf9VPZDdx48L4j iQTQ== X-Received: by 10.195.13.79 with SMTP id ew15mr9463143wjd.19.1401989201073; Thu, 05 Jun 2014 10:26:41 -0700 (PDT) Received: from startic-SATELLITE-L850-1RZ.lan (23.Red-213-98-62.staticIP.rima-tde.net. [213.98.62.23]) by mx.google.com with ESMTPSA id c2sm8855345wja.18.2014.06.05.10.26.36 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 05 Jun 2014 10:26:40 -0700 (PDT) From: Matthias Brugger To: linux-kernel@vger.kernel.org Cc: robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com, ijc+devicetree@hellion.org.uk, galak@codeaurora.org, rdunlap@infradead.org, linux@arm.linux.org.uk, daniel.lezcano@linaro.org, tglx@linutronix.de, matthias.bgg@gmail.com, thierry.reding@gmail.com, florian.vaussard@epfl.ch, jic23@kernel.org, jason@lakedaemon.net, andrew@lunn.ch, silvio.fricke@gmail.com, heiko.stuebner@bq.com, olof@lixom.net, sebastian.hesselbarth@gmail.com, sboyd@codeaurora.org, gregory.clement@free-electrons.com, arnd@arndb.de, robherring2@gmail.com, marc.zyngier@arm.com, maxime.ripard@free-electrons.com, soren.brinkmann@xilinx.com, devicetree@vger.kernel.org, linux-doc@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH v7 3/7] dt-bindings: add mtk-timer bindings Date: Thu, 5 Jun 2014 19:26:17 +0200 Message-Id: <1401989181-4712-4-git-send-email-matthias.bgg@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1401989181-4712-1-git-send-email-matthias.bgg@gmail.com> References: <1401989181-4712-1-git-send-email-matthias.bgg@gmail.com> MIME-Version: 1.0 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add binding documentation for the General Porpose Timer driver of the Mediatek SoCs. Signed-off-by: Matthias Brugger Acked-by: Sören Brinkmann Acked-by: Rob Herring --- .../bindings/timer/mediatek,mtk-timer.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Documentation/devicetree/bindings/timer/mediatek,mtk-timer.txt diff --git a/Documentation/devicetree/bindings/timer/mediatek,mtk-timer.txt b/Documentation/devicetree/bindings/timer/mediatek,mtk-timer.txt new file mode 100644 index 0000000..10b7e09 --- /dev/null +++ b/Documentation/devicetree/bindings/timer/mediatek,mtk-timer.txt @@ -0,0 +1,18 @@ +Mediatek MT6577, MT6572 and MT6589 Timers +--------------------------------------- + +Required properties: +- compatible: Should be "mediatek,mt6577-timer" +- reg: Should contain location and length for timers register. +- clocks: Clocks driving the timer hardware. This list should include two + clocks. The order is system clock and as second clock the RTC clock. + +Examples: + + timer@10008000 { + compatible = "mediatek,mt6577-timer"; + reg = <0x10008000 0x80>; + interrupts = ; + clocks = <&system_clk>, <&rtc_clk>; + clock-names = "system-clk", "rtc-clk"; + };