From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS, URIBL_BLOCKED,USER_AGENT_NEOMUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0D1F0C4360F for ; Tue, 2 Apr 2019 13:22:31 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D3B552133D for ; Tue, 2 Apr 2019 13:22:30 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="QeTdSTMB" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D3B552133D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=bootlin.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender:Content-Type:Cc: List-Subscribe:List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id: In-Reply-To:MIME-Version:References:Message-ID:Subject:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=H2DtCi1leqCzZpCS+t0GXujfPqO7aYMgixFEKCMw1Mg=; b=QeTdSTMBQHQoIy30Dh9Mp0Qbr xSqFkU7bmts8So/kNB/ANRTb5PSsKOPhGiFJU37Q9HLloy9XjAgF6bebGflkf+NTtHUjQ031hFXDE KLw+qJn4Ovam2HUpgQgigN2YRo94eX1VlzkNHmfC4nKi88cEey9VXww6XWrWkhwjjapHwDE1AUOCA 7YTzs040YBb58eO/vcMokbEiLeJ9NEWf7ax6eOiiszpv/XD4WhowtcnI4RCqk/8v089B3lC14A8X1 ubiihoktS7yz8MIWBBjvN5Y/BP9BerUxfFgfBRT0JVg/sDFcpDGoW5uvYW+EygWQstwJP19Sz9nhi NdyyMMfBg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1hBJMv-0001Pe-Hq; Tue, 02 Apr 2019 13:22:25 +0000 Received: from relay5-d.mail.gandi.net ([217.70.183.197]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1hBJMp-0001P2-Dr for linux-arm-kernel@lists.infradead.org; Tue, 02 Apr 2019 13:22:24 +0000 X-Originating-IP: 90.88.30.125 Received: from localhost (aaubervilliers-681-1-89-125.w90-88.abo.wanadoo.fr [90.88.30.125]) (Authenticated sender: maxime.ripard@bootlin.com) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id E3F551C0003; Tue, 2 Apr 2019 13:22:16 +0000 (UTC) Date: Tue, 2 Apr 2019 15:22:16 +0200 From: Maxime Ripard To: Chen-Yu Tsai , Linus Walleij , Bartosz Golaszewski Subject: Re: [PATCH 0/6] pinctrl: sunxi: Allow to configure pull-up / pull-down from GPIO flags Message-ID: <20190402132216.fvgb7vbqltmwazow@flea> References: MIME-Version: 1.0 In-Reply-To: User-Agent: NeoMutt/20180716 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190402_062219_615793_EF1F6177 X-CRM114-Status: GOOD ( 12.88 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-gpio@vger.kernel.org, Thomas Petazzoni , linux-arm-kernel@lists.infradead.org Content-Type: multipart/mixed; boundary="===============4524896782894925797==" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org --===============4524896782894925797== Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="btodf4w36fv3p43l" Content-Disposition: inline --btodf4w36fv3p43l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Mar 14, 2019 at 08:32:49PM +0100, Maxime Ripard wrote: > Hi, > > Here is a series that addresses one of the issues we've had for some time > with our pinctrl driver, which is that while we should have had the strict > mode enabled, we didn't and now we have to deal with all the DT having GPIO > and pinctrl nodes for the same pins. > > This was partially due to cargo cult (which has been addressed since), but > also due to technical limitations of the GPIO DT bindings at the time which > didn't allow to specify the pull-up and pull-down resistors, and the drive > strength of the pins. > > Now that the former are supported, we can remove those users, and we will > deal with the latter eventually. Ping? Maxime -- Maxime Ripard, Bootlin Embedded Linux and Kernel engineering https://bootlin.com --btodf4w36fv3p43l Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQRcEzekXsqa64kGDp7j7w1vZxhRxQUCXKNiCAAKCRDj7w1vZxhR xU3PAQDKCPfgGlC+stzKmrggWBKUWXsyQAFYTri3pggvuN82fQEA1l16THV3915T GJleCja6AsKEXg+4Pf9VYH/3hYSwQA8= =V18p -----END PGP SIGNATURE----- --btodf4w36fv3p43l-- --===============4524896782894925797== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel --===============4524896782894925797==--