Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp5244302ybl; Tue, 10 Dec 2019 02:58:37 -0800 (PST) X-Google-Smtp-Source: APXvYqxdsnSARLEuk82OqTW/BNArnjGFUGJvRCm8hRj3kuRF5pL1SYsthAdlvJaYAGL18LT7cV6n X-Received: by 2002:aca:e084:: with SMTP id x126mr3285245oig.97.1575975517496; Tue, 10 Dec 2019 02:58:37 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1575975517; cv=none; d=google.com; s=arc-20160816; b=rmMCRW3V11euPtMlKmLu7mb9SNWKxbW9JUcndOtJeqgKOAL3D+bXPF826HCybypc9d f9YvxmfnJ78GHlg0YcjhpRpp0jmR0K/kLtqLKblMdgztkS3XO2Nt1up97B2YwCFBDnmP Hk0/kNx/RHJzKpLVJqB7LJkO/lj5nwoQ5w4bVtx8B2eRfE3g8Ypd2FsOC+7pw8BvObwj +e9910l46046QI1V/EE468rT4axXjMLWq22zOd24AsvWsFjYK1U7M/x357/JJTYMuwAT Y5cz6+PsioThxgdxqlmdUA06NOTM4W9n4qm1I6nynQsZv0Vhe2AwbDNG8NjzrDKYovqg 2d+w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=5wNnW2+0pj1a3ZLs27cqEdrPxiqQqkvxxhpJKpu7Fk4=; b=P1jFfrcjUBP5lQ6fX0sWRpf4iNnu3fFKnLnHSm3MGead6uJFpohs4ZPbEAk/adLiQK pQDtoD6BQRLG0t7AePba0mxgKO6ghrjA8HpERqQPs+8uh+N1v5Qvy/IkXVnWeVw7mkrt ABISC8u3uefPRZ5PPiOfZMFt8PfbL7W7+8emWqLn1ScMHyxymJ4GSkz4XhUbZ7jFq0gV xFVp+Oo23u1wtdqLtOPe8SLaCgF1E9VLnnkj4mrmgjcmRNkVLRtjoQuW5UT50eFybcZ/ 2XWmZlIDy9gPbbrzf3tW+1KecLDFnASirNncgpHQYn+CVtC63d8w3cos2AuYkvtVOwpb fiqQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f53si1875684otf.235.2019.12.10.02.58.24; Tue, 10 Dec 2019 02:58:37 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727183AbfLJK5a (ORCPT + 99 others); Tue, 10 Dec 2019 05:57:30 -0500 Received: from relay11.mail.gandi.net ([217.70.178.231]:52553 "EHLO relay11.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726915AbfLJK5a (ORCPT ); Tue, 10 Dec 2019 05:57:30 -0500 Received: from localhost (136.112.broadband15.iol.cz [90.182.112.136]) (Authenticated sender: alexandre.belloni@bootlin.com) by relay11.mail.gandi.net (Postfix) with ESMTPSA id EF415100016; Tue, 10 Dec 2019 10:57:21 +0000 (UTC) Date: Tue, 10 Dec 2019 11:57:19 +0100 From: Alexandre Belloni To: Ingo van Lil Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Peter Rosin , Nicolas Ferre , Ludovic Desroches Subject: Re: [PATCH] ARM: dts: at91: Reenable UART TX pull-ups Message-ID: <20191210105719.GF1463890@piout.net> References: <20191203142147.875227-1-inguin@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191203142147.875227-1-inguin@gmx.de> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/12/2019 15:21:47+0100, Ingo van Lil wrote: > Pull-ups for SAM9 UART/USART TX lines were disabled in a previous > commit. However, several chips in the SAM9 family require pull-ups to > prevent the TX lines from falling (and causing an endless break > condition) when the transceiver is disabled. > > From the SAM9G20 datasheet, 32.5.1: "To prevent the TXD line from > falling when the USART is disabled, the use of an internal pull up > is mandatory.". This commit reenables the pull-ups for all chips having > that sentence in their datasheets. > > Fixes: 5e04822f7db5 ("ARM: dts: at91: fixes uart pinctrl, set pullup on rx, clear pullup on tx") > Signed-off-by: Ingo van Lil > Cc: Peter Rosin > --- > arch/arm/boot/dts/at91sam9260.dtsi | 12 ++++++------ > arch/arm/boot/dts/at91sam9261.dtsi | 6 +++--- > arch/arm/boot/dts/at91sam9263.dtsi | 6 +++--- > arch/arm/boot/dts/at91sam9g45.dtsi | 8 ++++---- > arch/arm/boot/dts/at91sam9rl.dtsi | 8 ++++---- > 5 files changed, 20 insertions(+), 20 deletions(-) > Applied, thanks. -- Alexandre Belloni, Bootlin Embedded Linux and Kernel engineering https://bootlin.com