From patchwork Tue Aug 15 13:15:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 713921 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 3AD07C001DB for ; Tue, 15 Aug 2023 13:16:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237410AbjHONQ1 (ORCPT ); Tue, 15 Aug 2023 09:16:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59322 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237411AbjHONQI (ORCPT ); Tue, 15 Aug 2023 09:16:08 -0400 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 3B6A61999; Tue, 15 Aug 2023 06:16:05 -0700 (PDT) X-IronPort-AV: E=Sophos;i="6.01,174,1684767600"; d="scan'208";a="173003463" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie5.idc.renesas.com with ESMTP; 15 Aug 2023 22:16:04 +0900 Received: from localhost.localdomain (unknown [10.226.92.136]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id CD7DA4008C5C; Tue, 15 Aug 2023 22:16:01 +0900 (JST) From: Biju Das To: Linus Walleij Cc: Biju Das , Geert Uytterhoeven , Lad Prabhakar , Fabrizio Castro , Chris Brandt , Jacopo Mondi , linux-renesas-soc@vger.kernel.org, linux-gpio@vger.kernel.org Subject: [PATCH v3 0/3] Fix NULL pointer dereference in RZ/{G2L,V2M,A2} pinctrl driver Date: Tue, 15 Aug 2023 14:15:55 +0100 Message-Id: <20230815131558.33787-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 Fix NULL pointer dereference in RZ/{G2L,V2M,A2M} pinctrl driver due to a race condition during boot. We have seen issues with RZ/{G2L,V2M} boards. Based on the code, RZ/A2 will also hit this issue. So fixing RZ/A2 aswell. This issue is reproducible with 1/200 reboots. v2->v3: * Added comments for bitmap_lock and lock. * Moved map allocation down to reduce lock section. * Added locks for maps and pinctrl group and function creation/remove calls * Added unlock_and_done label for lock error path. v1->v2: * Updated crash logs as per submitting patches doc. Biju Das (3): pinctrl: renesas: rzg2l: Fix NULL pointer dereference in rzg2l_dt_subnode_to_map() pinctrl: renesas: rzv2m: Fix NULL pointer dereference in rzv2m_dt_subnode_to_map() pinctrl: renesas: rza2: Add lock around pinctrl_generic{{add,remove}_group,{add,remove}_function} drivers/pinctrl/renesas/pinctrl-rza2.c | 15 ++++++- drivers/pinctrl/renesas/pinctrl-rzg2l.c | 58 ++++++++++++++----------- drivers/pinctrl/renesas/pinctrl-rzv2m.c | 56 ++++++++++++++---------- 3 files changed, 78 insertions(+), 51 deletions(-)