From patchwork Thu Aug 30 12:47:02 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heiko Schocher X-Patchwork-Id: 963854 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=denx.de Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 421Mhj00YWz9ryt for ; Thu, 30 Aug 2018 22:47:32 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728833AbeH3Qta (ORCPT ); Thu, 30 Aug 2018 12:49:30 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:45208 "EHLO mail-out.m-online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728830AbeH3Qt3 (ORCPT ); Thu, 30 Aug 2018 12:49:29 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 421Mhc1ztCz1qxDs; Thu, 30 Aug 2018 14:47:28 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 421Mhc11qWz1tLP5; Thu, 30 Aug 2018 14:47:28 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id Us21mFHJ0aCq; Thu, 30 Aug 2018 14:47:27 +0200 (CEST) X-Auth-Info: SXQm3x6uIcmU85W3+uufW6o2Ti+xX28mLJa9Yk0Ha3Y= Received: from mail-internal.denx.de (p578adb1c.dip0.t-ipconnect.de [87.138.219.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Thu, 30 Aug 2018 14:47:27 +0200 (CEST) Received: from pollux.denx.de (pollux [192.168.1.1]) by mail-internal.denx.de (Postfix) with ESMTP id D765718082A; Thu, 30 Aug 2018 14:47:10 +0200 (CEST) Received: by pollux.denx.de (Postfix, from userid 515) id A990A23B3; Thu, 30 Aug 2018 14:47:07 +0200 (CEST) From: Heiko Schocher To: linux-kernel@vger.kernel.org Cc: Heiko Schocher , Fabio Estevam , devicetree@vger.kernel.org, Rob Herring , Shawn Guo , Peter Chen , Pengutronix Kernel Team , Mark Rutland , NXP Linux Team , linux-arm-kernel@lists.infradead.org, Sascha Hauer Subject: [PATCH] ARM: dts: imx6ull: fix pinmux input_val for uart5 rx pin Date: Thu, 30 Aug 2018 14:47:02 +0200 Message-Id: <20180830124702.12572-1-hs@denx.de> X-Mailer: git-send-email 2.14.4 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org on the imx6ull the input_val for uart5 rx function of pin MX6UL_PAD_UART5_RX_DATA__UART5_DCE_RX is 7 and not 5 as on the imx6ul. With this patch, console on an imx6ull based board works with uart5. Signed-off-by: Heiko Schocher --- arch/arm/boot/dts/imx6ull-pinfunc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts/imx6ull-pinfunc.h b/arch/arm/boot/dts/imx6ull-pinfunc.h index fdc46bb09cc1a..d835aeae5485b 100644 --- a/arch/arm/boot/dts/imx6ull-pinfunc.h +++ b/arch/arm/boot/dts/imx6ull-pinfunc.h @@ -61,5 +61,6 @@ #define MX6ULL_PAD_CSI_DATA05__ESAI_TX_CLK 0x01F8 0x0484 0x0000 0x9 0x0 #define MX6ULL_PAD_CSI_DATA06__ESAI_TX5_RX0 0x01FC 0x0488 0x0000 0x9 0x0 #define MX6ULL_PAD_CSI_DATA07__ESAI_T0 0x0200 0x048C 0x0000 0x9 0x0 +#define MX6ULL_PAD_UART5_RX_DATA__UART5_DCE_RX 0x00C0 0x034C 0x0644 0 7 #endif /* __DTS_IMX6ULL_PINFUNC_H */