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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id BB38CC5B552 for ; Tue, 10 Jun 2025 09:03:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:MIME-Version: Content-Transfer-Encoding:Content-Type:In-Reply-To:References:Message-ID:Date :Subject:CC:To:From:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=+JozUfiNb1LoAgfn3GNwBIRAcIkDHguNVCOBKT+Sa2s=; b=NvjykxO1Txc2AI15KeLVeyUDTU bKJX2/WpG25+DE1woNakMFP87h8eO9N5UH8AWpd3W7RuijbnMviAg0WTGWmpmcofm3c9nyKiRCl5M AF4rh/E/CVFRDQF8mnsbMMK3QoG3jj2Za+dUfuIzs4F8OybJK6Bsc2pBHJRz0spTuuwdq0FUQ+2+D rFjkUD+IosfgUBZ3eeNxdVlwlpE6SnpF20aQArhSyYypUFtjhKKb3JS703RVEkbM4Eg1jhXnvaadA zsDEML78zazCQCvcb/kfawlSkXicvChbzAsdOlrIu15pdprQpAkz98Kyzhf9JSLmhKCj7hhsXE+pu C5DhZTfQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1uOust-00000006GQ4-0Adk; Tue, 10 Jun 2025 09:03:07 +0000 Received: from mail.actia.se ([212.181.117.226]) by bombadil.infradead.org with esmtps (Exim 4.98.2 #2 (Red Hat Linux)) id 1uOuhZ-00000006EjF-37n5 for linux-arm-kernel@lists.infradead.org; Tue, 10 Jun 2025 08:51:26 +0000 Received: from S036ANL.actianordic.se (10.12.31.117) by S036ANL.actianordic.se (10.12.31.117) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.39; Tue, 10 Jun 2025 10:51:17 +0200 Received: from S036ANL.actianordic.se ([fe80::e13e:1feb:4ea6:ec69]) by S036ANL.actianordic.se ([fe80::e13e:1feb:4ea6:ec69%3]) with mapi id 15.01.2507.039; Tue, 10 Jun 2025 10:51:17 +0200 From: John Ernberg To: =?iso-8859-2?Q?Horia_Geant=E3?= , Pankaj Gupta , Gaurav Jain , Herbert Xu , "David S . Miller" , "Rob Herring" , Krzysztof Kozlowski , "Conor Dooley" , Shawn Guo , Sascha Hauer CC: Frank Li , Peng Fan , "Pengutronix Kernel Team" , Fabio Estevam , "linux-crypto@vger.kernel.org" , "devicetree@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "imx@lists.linux.dev" , "linux-arm-kernel@lists.infradead.org" , John Ernberg Subject: [PATCH v5 2/4] crypto: caam - Support iMX8QXP and variants thereof Thread-Topic: [PATCH v5 2/4] crypto: caam - Support iMX8QXP and variants thereof Thread-Index: AQHb2eTUC9Cp7KL6lkKcbctbdtZZjA== Date: Tue, 10 Jun 2025 08:51:17 +0000 Message-ID: <20250610085110.2295392-3-john.ernberg@actia.se> References: <20250610085110.2295392-1-john.ernberg@actia.se> In-Reply-To: <20250610085110.2295392-1-john.ernberg@actia.se> Accept-Language: en-US, sv-SE Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-mailer: git-send-email 2.49.0 x-originating-ip: [10.12.12.63] x-esetresult: clean, is OK x-esetid: 37303A2955B1445362776A Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20250610_015125_778943_D78E4A4A X-CRM114-Status: GOOD ( 13.00 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org The iMX8QXP (and variants such as the QX, DX, DXP) all identify as iMX8QXP. They have the exact same restrictions as the supported iMX8QM introduced at commit 61bb8db6f682 ("crypto: caam - Add support for i.MX8QM") Loosen the check a little bit with a wildcard to also match the iMX8QXP and its variants. Signed-off-by: John Ernberg Reviewed-by: Frank Li Reviewed-by: Peng Fan --- v5: - Collect tags v4: - no changes v3: - no changes v2: - Collect review tag --- drivers/crypto/caam/ctrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/caam/ctrl.c b/drivers/crypto/caam/ctrl.c index 766c447c9cfb..ce7b99019537 100644 --- a/drivers/crypto/caam/ctrl.c +++ b/drivers/crypto/caam/ctrl.c @@ -573,7 +573,7 @@ static const struct soc_device_attribute caam_imx_soc_t= able[] =3D { { .soc_id =3D "i.MX7*", .data =3D &caam_imx7_data }, { .soc_id =3D "i.MX8M*", .data =3D &caam_imx7_data }, { .soc_id =3D "i.MX8ULP", .data =3D &caam_imx8ulp_data }, - { .soc_id =3D "i.MX8QM", .data =3D &caam_imx8ulp_data }, + { .soc_id =3D "i.MX8Q*", .data =3D &caam_imx8ulp_data }, { .soc_id =3D "VF*", .data =3D &caam_vf610_data }, { .family =3D "Freescale i.MX" }, { /* sentinel */ } --=20 2.49.0