From patchwork Mon Sep 26 09:36:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "tianjia.zhang" X-Patchwork-Id: 12988475 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 B3EE0C6FA83 for ; Mon, 26 Sep 2022 09:38:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=vM3qS5ndcMeaF3MuO7IcZ4NvquJIFIBv/O0ibvJinA8=; b=CxasStYjmSyxD/ mfjCqUFp1F3bPgSfnSewoDx1H+9lR+AY5TJiGyAjLARe6uTx/ICsZ3VSQgzqOuUSnR3wt4huogAWw 4xywl5Pb0okOO4VHYj2V1CKcfWWP1gaqhEhkaU5JcsqKi0TbWjiJ1zAt9gxNUVBesVTx+g1ceTs+O y61/HEcjIXGBJHQKrn8aCFMQ5rZkJg6+WS6C32OlIs7Sf2ANWa6nQ5uomHOhhoQZ2KzxMzKSB0x1j 5FZ6fv8guxC4ca8KL2OOShqAuzW5izy4xx9AZDkH4QjbFZm0YBkAFYW1CHILBzJKFSv03Vp+JHRU/ cB5rhy+WJBmdKb8J8BCQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ockYf-003hGn-08; Mon, 26 Sep 2022 09:37:49 +0000 Received: from out30-132.freemail.mail.aliyun.com ([115.124.30.132]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ockXS-003gf3-78 for linux-arm-kernel@lists.infradead.org; Mon, 26 Sep 2022 09:36:36 +0000 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R131e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045176;MF=tianjia.zhang@linux.alibaba.com;NM=1;PH=DS;RN=13;SR=0;TI=SMTPD_---0VQkQP5U_1664184985; Received: from localhost(mailfrom:tianjia.zhang@linux.alibaba.com fp:SMTPD_---0VQkQP5U_1664184985) by smtp.aliyun-inc.com; Mon, 26 Sep 2022 17:36:25 +0800 From: Tianjia Zhang To: Herbert Xu , "David S. Miller" , Jussi Kivilinna , Ard Biesheuvel , Catalin Marinas , Will Deacon , Maxime Coquelin , Alexandre Torgue , Eric Biggers , linux-crypto@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com Subject: [PATCH 00/16] Optimizing SM3 and SM4 algorithms using NEON/CE/SVE instructions Date: Mon, 26 Sep 2022 17:36:04 +0800 Message-Id: <20220926093620.99898-1-tianjia.zhang@linux.alibaba.com> X-Mailer: git-send-email 2.24.3 (Apple Git-128) MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220926_023634_479420_DAD765C9 X-CRM114-Status: UNSURE ( 9.61 ) X-CRM114-Notice: Please train this message. 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 This series of patches uses different instruction sets to optimize the SM3 and SM4 algorithms, as well as the optimization of different modes of SM4. patch 1-2: NEON instruction set optimization for SM3 patch 3: Refactored and streamlined SM4 NEON instruction implementation patch 4-5: support test for new SM4 mode patch 6-8: Refactored and streamlined SM4 CE instruction implementation patch 9-12: CE accelerated implementation of SM4 CTS/XTS/ESSIV patch 13: CE accelerated implementation of SM4 CMAC/XCBC/CBCMAC patch 14-15: CE accelerated implementation of SM4 CCM/GCM patch 16: SM4 ARMv9 SVE cryptography acceleration implementation Tianjia Zhang (16): crypto: arm64/sm3 - raise the priority of the CE implementation crypto: arm64/sm3 - add NEON assembly implementation crypto: arm64/sm4 - refactor and simplify NEON implementation crypto: testmgr - add SM4 cts-cbc/essiv/xts/xcbc test vectors crypto: tcrypt - add SM4 cts-cbc/essiv/xts/xcbc test crypto: arm64/sm4 - refactor and simplify CE implementation crypto: arm64/sm4 - simplify sm4_ce_expand_key() of CE implementation crypto: arm64/sm4 - export reusable CE acceleration functions crypto: arm64/sm4 - add CE implementation for CTS-CBC mode crypto: arm64/sm4 - add CE implementation for XTS mode crypto: essiv - allow digestsize to be greater than keysize crypto: arm64/sm4 - add CE implementation for ESSIV mode crypto: arm64/sm4 - add CE implementation for cmac/xcbc/cbcmac crypto: arm64/sm4 - add CE implementation for CCM mode crypto: arm64/sm4 - add CE implementation for GCM mode crypto: arm64/sm4 - add ARMv9 SVE cryptography acceleration implementation arch/arm64/crypto/Kconfig | 66 +- arch/arm64/crypto/Makefile | 12 + arch/arm64/crypto/sm3-ce-glue.c | 2 +- arch/arm64/crypto/sm3-neon-core.S | 600 +++++++++++++ arch/arm64/crypto/sm3-neon-glue.c | 103 +++ arch/arm64/crypto/sm4-ce-asm.h | 209 +++++ arch/arm64/crypto/sm4-ce-ccm-core.S | 328 +++++++ arch/arm64/crypto/sm4-ce-ccm-glue.c | 303 +++++++ arch/arm64/crypto/sm4-ce-core.S | 1247 ++++++++++++++++++--------- arch/arm64/crypto/sm4-ce-gcm-core.S | 741 ++++++++++++++++ arch/arm64/crypto/sm4-ce-gcm-glue.c | 286 ++++++ arch/arm64/crypto/sm4-ce-glue.c | 703 ++++++++++++++- arch/arm64/crypto/sm4-ce.h | 16 + arch/arm64/crypto/sm4-neon-core.S | 630 +++++++++----- arch/arm64/crypto/sm4-neon-glue.c | 172 +--- arch/arm64/crypto/sm4-sve-ce-core.S | 1028 ++++++++++++++++++++++ arch/arm64/crypto/sm4-sve-ce-glue.c | 332 +++++++ crypto/essiv.c | 11 +- crypto/tcrypt.c | 28 + crypto/testmgr.c | 25 + crypto/testmgr.h | 1161 +++++++++++++++++++++++++ 21 files changed, 7234 insertions(+), 769 deletions(-) create mode 100644 arch/arm64/crypto/sm3-neon-core.S create mode 100644 arch/arm64/crypto/sm3-neon-glue.c create mode 100644 arch/arm64/crypto/sm4-ce-asm.h create mode 100644 arch/arm64/crypto/sm4-ce-ccm-core.S create mode 100644 arch/arm64/crypto/sm4-ce-ccm-glue.c create mode 100644 arch/arm64/crypto/sm4-ce-gcm-core.S create mode 100644 arch/arm64/crypto/sm4-ce-gcm-glue.c create mode 100644 arch/arm64/crypto/sm4-ce.h create mode 100644 arch/arm64/crypto/sm4-sve-ce-core.S create mode 100644 arch/arm64/crypto/sm4-sve-ce-glue.c