From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755385AbcEEOJo (ORCPT ); Thu, 5 May 2016 10:09:44 -0400 Received: from e24smtp05.br.ibm.com ([32.104.18.26]:60965 "EHLO e24smtp05.br.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752937AbcEEOJm (ORCPT ); Thu, 5 May 2016 10:09:42 -0400 X-IBM-Helo: d24dlp01.br.ibm.com X-IBM-MailFrom: pfsmorigo@linux.vnet.ibm.com X-IBM-RcptTo: linux-crypto@vger.kernel.org;linux-kernel@vger.kernel.org From: Paulo Flabiano Smorigo To: linux-kernel@vger.kernel.org Cc: Paulo Flabiano Smorigo , "Leonidas S. Barbosa" , Herbert Xu , "David S. Miller" , linux-crypto@vger.kernel.org (open list:IBM Power VMX Cryptographic instructions) Subject: [PATCH] crypto: vmx - comply with ABIs that specify vrsave as reserved. Date: Thu, 5 May 2016 11:09:27 -0300 Message-Id: <1462457367-15445-1-git-send-email-pfsmorigo@linux.vnet.ibm.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <20160503081345.GA17118@gondor.apana.org.au> References: <20160503081345.GA17118@gondor.apana.org.au> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 16050514-0033-0000-0000-00000D1B0801 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org It gives significant improvements ( ~+15%) on some modes. These code has been adopted from OpenSSL project in collaboration with the original author (Andy Polyakov ). Signed-off-by: Paulo Flabiano Smorigo --- drivers/crypto/vmx/ppc-xlate.pl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/drivers/crypto/vmx/ppc-xlate.pl b/drivers/crypto/vmx/ppc-xlate.pl index b999733..9f4994c 100644 --- a/drivers/crypto/vmx/ppc-xlate.pl +++ b/drivers/crypto/vmx/ppc-xlate.pl @@ -139,6 +139,26 @@ my $vmr = sub { " vor $vx,$vy,$vy"; }; +# Some ABIs specify vrsave, special-purpose register #256, as reserved +# for system use. +my $no_vrsave = ($flavour =~ /aix|linux64le/); +my $mtspr = sub { + my ($f,$idx,$ra) = @_; + if ($idx == 256 && $no_vrsave) { + " or $ra,$ra,$ra"; + } else { + " mtspr $idx,$ra"; + } +}; +my $mfspr = sub { + my ($f,$rd,$idx) = @_; + if ($idx == 256 && $no_vrsave) { + " li $rd,-1"; + } else { + " mfspr $rd,$idx"; + } +}; + # PowerISA 2.06 stuff sub vsxmem_op { my ($f, $vrt, $ra, $rb, $op) = @_; -- 2.5.5