From patchwork Wed May 21 16:26:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Brugger X-Patchwork-Id: 351239 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 603581400A0 for ; Thu, 22 May 2014 02:28:05 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752392AbaEUQ1t (ORCPT ); Wed, 21 May 2014 12:27:49 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:52313 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751781AbaEUQ0l (ORCPT ); Wed, 21 May 2014 12:26:41 -0400 Received: by mail-wi0-f178.google.com with SMTP id cc10so3016411wib.5 for ; Wed, 21 May 2014 09:26:39 -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=rbQgkcV9VMEC5kYM6vzS7y9mtNLnaHdrpco79uliXxc=; b=cFx08HdHxv/CqBHonJaisPCBLUtN7UnPnDSCSjCVa07GhB5n5SOKm7+ZvmKov+GoXJ 3ZMikwnwkcP3av8j/2b1YBlQEfpE5IeXZ/4yI70yOmabmlfe69tasNTXORt3pqHZL9vJ tMXcl/e7o0rqLIfHk5EINQ/XYbrsUmzjozXdEKgeVU7UcUVQ+8zFM8RPVSZ6iyDq91y2 FHmYNVCQndjxaY5uuN3tMBFz19KQ0lrc9toQYDFZKBDDK8U9wkCXs9+9ICftxYAlsm6k 2B/s+Oj3OOGr9VVinvx45Ex7jWhnX7FPF+UCKv6IxPfxY1M/JQEarEzw2cv3WOTpcGs7 KxrA== X-Received: by 10.194.58.161 with SMTP id s1mr44507353wjq.43.1400689599832; Wed, 21 May 2014 09:26:39 -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 f7sm23155018wjy.24.2014.05.21.09.26.37 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 21 May 2014 09:26:38 -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 v5 2/6] dt-bindings: add mtk-timer bindings Date: Wed, 21 May 2014 18:26:19 +0200 Message-Id: <1400689583-21119-3-git-send-email-matthias.bgg@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1400689583-21119-1-git-send-email-matthias.bgg@gmail.com> References: <1400689583-21119-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 --- .../devicetree/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..7d909f7 --- /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,mtk6577-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 { + compatible = "mediatek,mtk6577-timer"; + reg = <0x10008000 0x80>; + interrupts = ; + clocks = <&system_clk>, <&rtc_clk>; + clock-names = "system-clk", "rtc-clk"; + };