From patchwork Thu Dec 19 15:59:27 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thierry Reding X-Patchwork-Id: 3382841 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id D9D2C9F314 for ; Thu, 19 Dec 2013 16:03:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4F81520634 for ; Thu, 19 Dec 2013 16:03:38 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 0489020632 for ; Thu, 19 Dec 2013 16:03:37 +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 1Vtg3X-0003Ot-1k; Thu, 19 Dec 2013 16:02:37 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Vtg3D-00064W-GR; Thu, 19 Dec 2013 16:02:15 +0000 Received: from mail-bk0-x230.google.com ([2a00:1450:4008:c01::230]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Vtg2V-0005tL-Mc for linux-arm-kernel@lists.infradead.org; Thu, 19 Dec 2013 16:01:33 +0000 Received: by mail-bk0-f48.google.com with SMTP id r7so753905bkg.7 for ; Thu, 19 Dec 2013 08:01:09 -0800 (PST) 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=Do8cL0FT7vx5NMf/0nUXQhm9pgWy3JrWSHzQ27zNv88=; b=OO5SC90TmrIWwffffH2x8vTgqxoBvZL19MddHMEO6diZxVZZxKbpSZIu9PEgDofR24 eHZd2ay7DGQdP6ZFivAqdTbylIbbmuMXggJVQ88YjXsX/wMrb6eZe0na5ZU2Jvyf9TJk CI+yLIaYRr7dyQT9rR6SgWBMO1hKowDCTM1+4nWPpZYkYIFn2gVMZ/2EwWYmI4O/AATX NwI4QWcNqJZ/ZtkLw4oVgMXjfgSext6zcfMINzHyzdBt5DYSfo0rJFm8CZ8FrhnONhCJ DG1QVjfLZIzUq9A65yBXRajjIxtw/XQ+hx+mphi5DdFwTU5pTy1m7gtaaTRQX1SUYY7x EmWA== X-Received: by 10.205.104.4 with SMTP id dk4mr48715bkc.108.1387468869416; Thu, 19 Dec 2013 08:01:09 -0800 (PST) Received: from localhost (port-10467.pppoe.wtnet.de. [84.46.41.12]) by mx.google.com with ESMTPSA id dg4sm3928139bkc.10.2013.12.19.08.01.08 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 19 Dec 2013 08:01:08 -0800 (PST) From: Thierry Reding To: Stephen Warren Subject: [PATCH 03/10] ARM: tegra: Add MIPI calibration DT entries for Tegra114 Date: Thu, 19 Dec 2013 16:59:27 +0100 Message-Id: <1387468774-14216-4-git-send-email-treding@nvidia.com> X-Mailer: git-send-email 1.8.4.2 In-Reply-To: <1387468774-14216-1-git-send-email-treding@nvidia.com> References: <1387468774-14216-1-git-send-email-treding@nvidia.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20131219_110131_940056_C46263C1 X-CRM114-Status: GOOD ( 11.48 ) X-Spam-Score: -2.0 (--) Cc: linux-tegra@vger.kernel.org, linux-arm-kernel@lists.infradead.org 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=-4.6 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 Add a device node for the MIPI calibration block on Tegra114. There is no need to disable it by default because it only enables the clock while performing calibration and therefore shouldn't be consuming any power when unused. Signed-off-by: Thierry Reding --- Changes in v3: - update for revised bindings Changes in v2: - remove include/dt-bindings/gpu/host1x/tegra114-mipi.h arch/arm/boot/dts/tegra114.dtsi | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/tegra114.dtsi b/arch/arm/boot/dts/tegra114.dtsi index ae855ec60bbd..9a40a3fc37ec 100644 --- a/arch/arm/boot/dts/tegra114.dtsi +++ b/arch/arm/boot/dts/tegra114.dtsi @@ -480,6 +480,13 @@ }; }; + mipi: mipi { + compatible = "nvidia,tegra114-mipi"; + reg = <0x700e3000 0x100>; + clocks = <&tegra_car TEGRA114_CLK_MIPI_CAL>; + #nvidia,mipi-calibrate-cells = <1>; + }; + sdhci@78000000 { compatible = "nvidia,tegra114-sdhci", "nvidia,tegra30-sdhci"; reg = <0x78000000 0x200>;