From patchwork Mon Sep 18 12:33:53 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 724305 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CF6B5CD37B0 for ; Mon, 18 Sep 2023 12:35:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241383AbjIRMey (ORCPT ); Mon, 18 Sep 2023 08:34:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44828 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241470AbjIRMee (ORCPT ); Mon, 18 Sep 2023 08:34:34 -0400 Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 08F93CE5; Mon, 18 Sep 2023 05:34:02 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.02,156,1688396400"; d="scan'208";a="180129093" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 18 Sep 2023 21:34:02 +0900 Received: from localhost.localdomain (unknown [10.226.92.107]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 36EDA4005E22; Mon, 18 Sep 2023 21:33:58 +0900 (JST) From: Biju Das To: Linus Walleij Cc: Biju Das , Geert Uytterhoeven , Claudiu Beznea , Lad Prabhakar , Marc Zyngier , linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org, linux-gpio@vger.kernel.org, Biju Das Subject: [PATCH 0/2] Fix for GPIO interrupts Date: Mon, 18 Sep 2023 13:33:53 +0100 Message-Id: <20230918123355.262115-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org The following issues observed while adding IRQ support for RTC. * The driver is not following reverse order of enable() for disable(). * The driver is not following as per hardware manual for setting GPIO interrupts. As per HW manual we need to set noise filter for GPIO interrupts. This patch series fixes those issues. Biju Das (2): pinctrl: renesas: rzg2l: Make reverse order of enable() for disable() pinctrl: renesas: rzg2l: Enable noise filter for GPIO interrupt input drivers/pinctrl/renesas/pinctrl-rzg2l.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-)