From patchwork Tue Jan 6 10:37:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomeu Vizoso X-Patchwork-Id: 5572491 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.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 1D4E7BF6C3 for ; Tue, 6 Jan 2015 10:40:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4DFFE201DD for ; Tue, 6 Jan 2015 10:40:52 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (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 8BCB9201BC for ; Tue, 6 Jan 2015 10:40:51 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Y8RX9-00078H-Ul; Tue, 06 Jan 2015 10:38:43 +0000 Received: from mail-we0-x233.google.com ([2a00:1450:400c:c03::233]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Y8RWv-0006wl-Cs for linux-arm-kernel@lists.infradead.org; Tue, 06 Jan 2015 10:38:30 +0000 Received: by mail-we0-f179.google.com with SMTP id q59so9403273wes.10 for ; Tue, 06 Jan 2015 02:38:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=Etf1R9VViKPWrOChZSdGc5SYwHunhFXsUIi2vxIuVbk=; b=oEyej1BzZy5YSNE241RRnfiTLRm6PsimVwdUBXgLI8EhD/mp6CKjHOoxzW5JIJu+FC ETrJ4mKYWKkfyR3Xx6vpu5xYfW74i84LPd+wJd7H+N5CCuEDzEbv8S/KwgRQpJ+9CquN b+IQfL9+4oK6uELEYx1lK6QFuFVSoNX7bF3q2Y+L3HONzJvSlhxRYTDp9cEvloAuL2mC sodS7OyIai54r4Sr18gtsspVaXTNaZm9gMoRByhHZoROwboDcVKNSABjgj718OBjt4/c noVzwxY7nnQU948E+JqoCsLh0U/AnzVKe51P8idxmp1rbLyZFJ44YaXqWne8z0eNrQ7n POmg== X-Received: by 10.180.94.230 with SMTP id df6mr35861124wib.25.1420540687563; Tue, 06 Jan 2015 02:38:07 -0800 (PST) Received: from cizrna.lan (37-48-36-73.tmcz.cz. [37.48.36.73]) by mx.google.com with ESMTPSA id i3sm13388982wie.23.2015.01.06.02.38.04 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 Jan 2015 02:38:06 -0800 (PST) From: Tomeu Vizoso To: linux-tegra@vger.kernel.org Subject: [PATCH 1/4] ARM: tegra: rely on bootloader pinmux programming on nyan-big Date: Tue, 6 Jan 2015 11:37:26 +0100 Message-Id: <1420540653-14816-2-git-send-email-tomeu.vizoso@collabora.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1420540653-14816-1-git-send-email-tomeu.vizoso@collabora.com> References: <1420540653-14816-1-git-send-email-tomeu.vizoso@collabora.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150106_023829_602742_4A3C32D8 X-CRM114-Status: GOOD ( 11.69 ) X-Spam-Score: -0.7 (/) Cc: Mark Rutland , Alexandre Courbot , Russell King , Tomeu Vizoso , Pawel Moll , Ian Campbell , Stephen Warren , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Rob Herring , Thierry Reding , Kumar Gala , Javier Martinez Canillas , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 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.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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 Following 6dbaff2b, the kernel expects that the bootloader has correctly programmed the Tegra pinmux. DTs for the Jetson and the Venice2 had been updated already but this one was left behind. Have tested this with the stock vendor firmware (coreboot) and have found no issues. Signed-off-by: Tomeu Vizoso --- arch/arm/boot/dts/tegra124-nyan-big.dts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/tegra124-nyan-big.dts b/arch/arm/boot/dts/tegra124-nyan-big.dts index 53181d3..4752572 100644 --- a/arch/arm/boot/dts/tegra124-nyan-big.dts +++ b/arch/arm/boot/dts/tegra124-nyan-big.dts @@ -44,10 +44,10 @@ }; pinmux@0,70000868 { - pinctrl-names = "default"; - pinctrl-0 = <&pinmux_default>; + pinctrl-names = "boot"; + pinctrl-0 = <&pinmux_boot>; - pinmux_default: common { + pinmux_boot: common { dap_mclk1_pw4 { nvidia,pins = "dap_mclk1_pw4"; nvidia,function = "extperiph1";