From patchwork Fri May 30 16:56:00 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Brugger X-Patchwork-Id: 354278 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 6475E14007B for ; Sat, 31 May 2014 03:00:40 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933595AbaE3RAQ (ORCPT ); Fri, 30 May 2014 13:00:16 -0400 Received: from mail-we0-f171.google.com ([74.125.82.171]:42076 "EHLO mail-we0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933798AbaE3Q4S (ORCPT ); Fri, 30 May 2014 12:56:18 -0400 Received: by mail-we0-f171.google.com with SMTP id w62so2326206wes.30 for ; Fri, 30 May 2014 09:56:16 -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; bh=6rS+tU+8/M5f3aS7He/wFnUu7AJo7e9EBRW4O45ZQSM=; b=OTsFdYn6J5MPHqleb+sQ1C8g3dVXLw0RoLAnprrMpvuIpRFUkRVf64eIsXhilj8bzP PgLfpN0vvkBE9ol/k+0rNbyoTcMov6D8G1iZ/mgd6ckmNIdxlmUrzWHvv9/xARK3eOV+ apwJE+aevTwOlGVTW28xdC8Cbl5iE3MoQcnHAXHomv0I0Tcuk5/biiRRyvT0JRhWYoqp 5Ssqk04ZL9mjIdQgc1l/axoFxr8jDe/xDZsvITk1tUfS6kpO4LP1Z46XWbFsQb2jQj95 xF6+ByFYx8bc4pL5Xm0OXBUHtPkLEnD/HPpWmx1nRuJvbfqmtoKdMiDft+qljTingxil ecnw== X-Received: by 10.180.8.136 with SMTP id r8mr8430208wia.60.1401468976912; Fri, 30 May 2014 09:56:16 -0700 (PDT) Received: from localhost.localdomain (23.Red-213-98-62.staticIP.rima-tde.net. [213.98.62.23]) by mx.google.com with ESMTPSA id p18sm7404015wik.3.2014.05.30.09.56.14 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 30 May 2014 09:56:16 -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 v6 2/6] dt-bindings: add mtk-timer bindings Date: Fri, 30 May 2014 18:56:00 +0200 Message-Id: <1401468964-5307-3-git-send-email-matthias.bgg@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1401468964-5307-1-git-send-email-matthias.bgg@gmail.com> References: <1401468964-5307-1-git-send-email-matthias.bgg@gmail.com> 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 --- .../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..0558ddd0 --- /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 shoud 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"; + };