From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 2F2BE94155F for ; Mon, 13 Nov 2023 10:38:17 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=U/WKjCnsJEQFyVeOPTBetAUyF9AkZNxauGX+vwM/kys=; c=relaxed/simple; d=groups.io; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version:In-Reply-To:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type:Content-Disposition; s=20140610; t=1699871895; v=1; b=W3NW+ItDd6EVPAmgklFHSPHPmCBQzwDWoPFrKzjR0dGXB4AjkaM+Zz7K+KLJldpaTxmMEJFW 2IdRK/OIGk+4tEkbwTdM9pS4WN/vezoY2FuEacA9JgKrr9/W8b7HEf2sWZv+yxady/snK2Y7bnW zfcnDHX0P2rB1OYNLNGCUofo= X-Received: by 127.0.0.2 with SMTP id eohFYY7687511xHRIztz4d81; Mon, 13 Nov 2023 02:38:15 -0800 X-Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web11.34178.1699871895203185780 for ; Mon, 13 Nov 2023 02:38:15 -0800 X-Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-20-peo7O2baOjWHg7YVNZCAjg-1; Mon, 13 Nov 2023 05:38:10 -0500 X-MC-Unique: peo7O2baOjWHg7YVNZCAjg-1 X-Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 25525811E7D; Mon, 13 Nov 2023 10:38:10 +0000 (UTC) X-Received: from sirius.home.kraxel.org (unknown [10.39.194.59]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EA170492BFD; Mon, 13 Nov 2023 10:38:09 +0000 (UTC) X-Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id AEFC61804A63; Mon, 13 Nov 2023 11:38:08 +0100 (CET) Date: Mon, 13 Nov 2023 11:38:08 +0100 From: "Gerd Hoffmann" To: Pierre Gondois Cc: devel@edk2.groups.io, Jiewen Yao , Yi Li , Xiaoyu Lu , Guomin Jiang , Leif Lindholm , Ard Biesheuvel , Sami Mujawar Subject: Re: [edk2-devel] [PATCH v3 0/6] CryptoPkg: Enable Openssl native instruction support for AARCH64 Message-ID: <54ldx2ookxcvuz5e5dl2namnmqvcggecyr5kqs4t5irp23g4wm@2tldnuy2nts3> References: <20231110104810.2038376-1-pierre.gondois@arm.com> MIME-Version: 1.0 In-Reply-To: <20231110104810.2038376-1-pierre.gondois@arm.com> X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,kraxel@redhat.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: GrQCXgYfXtLKwMObOJReRstix7686176AA= Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=W3NW+ItD; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=redhat.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io On Fri, Nov 10, 2023 at 11:48:04AM +0100, Pierre Gondois wrote: > v3: > - Use ArmPkg's function to access register: > - Dropped: > - [PATCH v2 1/7] MdePkg/BaseLib: AARCH64: Add ArmReadCntPctReg() > - [PATCH v2 2/7] MdePkg/BaseLib: AARCH64: Add ArmReadIdAA64Isar0Reg() > - [PATCH v2 3/7] MdePkg/BaseRngLib: Prefer ArmReadIdAA64Isar0Reg() over ArmReadIdIsar0() > - Added: > - [PATCH v3 1/6] ArmPkg/ArmLib: Move ArmReadIdAA64Isar0() to ArmLib > - Allow dependency of CryptoPkg over ArmPkg in CI: > - Added: > - [PATCH v3 2/6] CryptoPkg/CryptoPkg.ci.yaml: Allow dependency upon > > v2: > - [PATCH v2 2/7] MdePkg/BaseLib: AARCH64: Add ArmReadIdAA64Isar0Reg() > - Correct bad mask values in MdePkg/Include/Library/BaseLib.h > - [PATCH v2 4/7] CryptoPkg/OpensslLib: Add native instruction support: > - Add armcap.c to configure.py:sources_filter_fn() instead of > manually commenting the file in .inf files > > Various OpensslLib implementations are available in edk2. The > OpensslLibAccel.inf and OpensslLibFullAccel.inf ones use > architecture specific instructions, e.g. AESE, PMULL, SHA256H, ..., > allowing to improve speed. Can't comment on the arm asm bits but the integration into OpensslLib looks good to me. Acked-by: Gerd Hoffmann take care, Gerd -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#111133): https://edk2.groups.io/g/devel/message/111133 Mute This Topic: https://groups.io/mt/102504417/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-