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=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 C1AF1C282DD for ; Tue, 7 Jan 2020 21:06:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 88AEB208C4 for ; Tue, 7 Jan 2020 21:06:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578431188; bh=krv2jrWZyHuYzGfRzS0lGllzfzLns7T1oJxEL73h7zc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=y/MFKgL7Zt1dhRb0Y4ain4Z8demvTSuLVrmrIjJ8oc6mKUPQb2yiI+45zajbIiweZ 8FtxtYNGKukQG3rE28g8wV0gW5fTC4uLGxstg7EKn0ykaVldmriiFc/pI8vTiG/uqa l9B9WcKxmWDwF5ZMEoqMcdEpc55c8od2odEA4tno= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729035AbgAGVG1 (ORCPT ); Tue, 7 Jan 2020 16:06:27 -0500 Received: from mail.kernel.org ([198.145.29.99]:55182 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728994AbgAGVGU (ORCPT ); Tue, 7 Jan 2020 16:06:20 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C429F2080A; Tue, 7 Jan 2020 21:06:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578431180; bh=krv2jrWZyHuYzGfRzS0lGllzfzLns7T1oJxEL73h7zc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VJfgt4PEPeq3UX83xuS19eWcIPo1G47NCVKA2QRt4L7uiER151JkEiZplEP8n80Qu oc/nb8vHX4uv0cXtIBBsIWTxVBIp2O3Pf6I4EFhH9b+hz+OaK6P21N/cI9tdTQGIYU INlZtUu10FkNzOcKoYvGXP0jWJI9rlHYBLkCuDKQ= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Linus Walleij , Russell King , Bartosz Golaszewski Subject: [PATCH 4.19 066/115] gpiolib: fix up emulated open drain outputs Date: Tue, 7 Jan 2020 21:54:36 +0100 Message-Id: <20200107205303.627566678@linuxfoundation.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200107205240.283674026@linuxfoundation.org> References: <20200107205240.283674026@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Russell King commit 256efaea1fdc4e38970489197409a26125ee0aaa upstream. gpiolib has a corner case with open drain outputs that are emulated. When such outputs are outputting a logic 1, emulation will set the hardware to input mode, which will cause gpiod_get_direction() to report that it is in input mode. This is different from the behaviour with a true open-drain output. Unify the semantics here. Cc: Suggested-by: Linus Walleij Signed-off-by: Russell King Signed-off-by: Bartosz Golaszewski Signed-off-by: Greg Kroah-Hartman --- drivers/gpio/gpiolib.c | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -217,6 +217,14 @@ int gpiod_get_direction(struct gpio_desc chip = gpiod_to_chip(desc); offset = gpio_chip_hwgpio(desc); + /* + * Open drain emulation using input mode may incorrectly report + * input here, fix that up. + */ + if (test_bit(FLAG_OPEN_DRAIN, &desc->flags) && + test_bit(FLAG_IS_OUT, &desc->flags)) + return 0; + if (!chip->get_direction) return status;