From patchwork Thu Sep 26 10:46:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philipp Zabel X-Patchwork-Id: 2947841 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id BBA5EBFF05 for ; Thu, 26 Sep 2013 10:47:08 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AD5F52030E for ; Thu, 26 Sep 2013 10:47:07 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id B3C0A20295 for ; Thu, 26 Sep 2013 10:47:02 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VP95t-0007ig-Rp; Thu, 26 Sep 2013 10:46:49 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1VP95n-0002cD-Dq; Thu, 26 Sep 2013 10:46:43 +0000 Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VP95l-0002b4-Me for linux-arm-kernel@lists.infradead.org; Thu, 26 Sep 2013 10:46:42 +0000 Received: from dude.hi.pengutronix.de ([10.1.0.7] helo=dude.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1VP95M-0001Il-2a; Thu, 26 Sep 2013 12:46:16 +0200 From: Philipp Zabel To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 1/2] Documentation: Add device tree bindings for i.MX TVE Date: Thu, 26 Sep 2013 12:46:13 +0200 Message-Id: <1380192374-9531-1-git-send-email-p.zabel@pengutronix.de> X-Mailer: git-send-email 1.8.4.rc3 X-SA-Exim-Connect-IP: 10.1.0.7 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-arm-kernel@lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130926_064641_898324_EFBAFE1B X-CRM114-Status: GOOD ( 10.80 ) X-Spam-Score: -4.3 (----) Cc: devicetree@vger.kernel.org, Shawn Guo , Philipp Zabel , kernel@pengutronix.de X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-6.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch adds device tree binding documentation for i.MX Television Encoder devices contained in i.MX51 and i.MX53 SoCs. Signed-off-by: Philipp Zabel --- .../devicetree/bindings/video/fsl,imx-tve.txt | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Documentation/devicetree/bindings/video/fsl,imx-tve.txt diff --git a/Documentation/devicetree/bindings/video/fsl,imx-tve.txt b/Documentation/devicetree/bindings/video/fsl,imx-tve.txt new file mode 100644 index 0000000..77f92d7 --- /dev/null +++ b/Documentation/devicetree/bindings/video/fsl,imx-tve.txt @@ -0,0 +1,23 @@ +Freescale i.MX Television Encoder (TVE, TVEv2) + +The TVE encoders are contained in i.MX51 and i.MX53 SoCs and can drive analog +output connectors such as VGA, Composite, or S-Video. + +Required properties: +- compatible : "fsl,-tve", soc should be imx51 or imx53 +- reg : Should contain 1 register ranges(address and length) +- interrupts : One interrupt of the fb dev +- clocks, clock-names : Phandles to clocks called "tve" and "di_sel" + as documented in Documentation/devicetree/bindings/clock/clock-bindings.txt. + di_sel is a display interface input clock multiplexer, which can + be parented to the tve_di output clock provided by this device. + +Example: + + tve: tve@63ff0000 { + compatible = "fsl,imx53-tve"; + reg = <0x63ff0000 0x1000>; + interrupts = <92>; + clocks = <&clks 69>, <&clks 116>; + clock-names = "tve", "di_sel"; + };