From: Tom Lendacky <thomas.lendacky@amd.com>
To: <herbert@gondor.hengli.com.au>
Cc: <davem@davemloft.net>, <linux-crypto@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 00/10] AMD Cryptographic Coprocessor support
Date: Wed, 20 Nov 2013 10:20:10 -0600 [thread overview]
Message-ID: <5441273.HtAtgCrPKB@tlendack-t1> (raw)
In-Reply-To: <20131112174558.19746.47262.stgit@tlendack-t1.amdoffice.net>
Hi Herbert,
Is the crypto tree the right tree to go through for this support
or would you prefer I go through another tree?
Thanks,
Tom
On Tuesday, November 12, 2013 11:45:59 AM Tom Lendacky wrote:
> Resending because of typo in mailing list address...
>
> The following series implements support for the AMD Cryptographic
> Coprocessor (CCP). The AMD CCP provides hardware encryption, hashing
> and other related operations.
>
> This patch series is based on the 3.12 kernel.
>
> ---
>
> Tom Lendacky (10):
> crypto: authenc - Find proper IV address in ablkcipher callback
> crypto: scatterwalk - Set the chain pointer indication bit
> crypto: CCP device driver and interface support
> crypto: crypto API interface to the CCP device driver
> crypto: CCP AES crypto API support
> crypto: CCP AES CMAC mode crypto API support
> crypto: CCP XTS-AES crypto API support
> crypto: CCP SHA crypto API support
> crytpo: CCP device driver build files
> crypto: CCP maintainer information
>
>
> MAINTAINERS | 7
> crypto/authenc.c | 7
> drivers/crypto/Kconfig | 12
> drivers/crypto/Makefile | 1
> drivers/crypto/ccp/Kconfig | 23
> drivers/crypto/ccp/Makefile | 10
> drivers/crypto/ccp/ccp-crypto-aes-cmac.c | 355 +++++
> drivers/crypto/ccp/ccp-crypto-aes-xts.c | 285 ++++
> drivers/crypto/ccp/ccp-crypto-aes.c | 375 ++++++
> drivers/crypto/ccp/ccp-crypto-main.c | 432 ++++++
> drivers/crypto/ccp/ccp-crypto-sha.c | 497 +++++++
> drivers/crypto/ccp/ccp-crypto.h | 191 +++
> drivers/crypto/ccp/ccp-dev.c | 582 +++++++++
> drivers/crypto/ccp/ccp-dev.h | 272 ++++
> drivers/crypto/ccp/ccp-ops.c | 2020
> ++++++++++++++++++++++++++++++ drivers/crypto/ccp/ccp-pci.c |
> 360 +++++
> include/crypto/scatterwalk.h | 1
> include/linux/ccp.h | 525 ++++++++
> 18 files changed, 5952 insertions(+), 3 deletions(-)
> create mode 100644 drivers/crypto/ccp/Kconfig
> create mode 100644 drivers/crypto/ccp/Makefile
> create mode 100644 drivers/crypto/ccp/ccp-crypto-aes-cmac.c
> create mode 100644 drivers/crypto/ccp/ccp-crypto-aes-xts.c
> create mode 100644 drivers/crypto/ccp/ccp-crypto-aes.c
> create mode 100644 drivers/crypto/ccp/ccp-crypto-main.c
> create mode 100644 drivers/crypto/ccp/ccp-crypto-sha.c
> create mode 100644 drivers/crypto/ccp/ccp-crypto.h
> create mode 100644 drivers/crypto/ccp/ccp-dev.c
> create mode 100644 drivers/crypto/ccp/ccp-dev.h
> create mode 100644 drivers/crypto/ccp/ccp-ops.c
> create mode 100644 drivers/crypto/ccp/ccp-pci.c
> create mode 100644 include/linux/ccp.h
--
Tom
Thomas Lendacky
Advanced Micro Devices, Inc.
next prev parent reply other threads:[~2013-11-20 16:20 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-12 17:45 Tom Lendacky
2013-11-12 17:46 ` [PATCH 01/10] crypto: authenc - Find proper IV address in ablkcipher callback Tom Lendacky
2013-11-28 14:18 ` Herbert Xu
2013-11-12 17:46 ` [PATCH 02/10] crypto: scatterwalk - Set the chain pointer indication bit Tom Lendacky
2013-11-28 14:21 ` Herbert Xu
2015-01-20 8:06 ` [PATCH] crypto: replace scatterwalk_sg_next with sg_next Cristian Stoica
2015-01-26 2:55 ` Herbert Xu
2013-11-12 17:46 ` [PATCH 03/10] crypto: CCP device driver and interface support Tom Lendacky
2013-11-12 17:46 ` [PATCH 04/10] crypto: crypto API interface to the CCP device driver Tom Lendacky
2013-11-12 17:46 ` [PATCH 05/10] crypto: CCP AES crypto API support Tom Lendacky
2013-11-12 17:46 ` [PATCH 06/10] crypto: CCP AES CMAC mode " Tom Lendacky
2013-11-12 17:46 ` [PATCH 07/10] crypto: CCP XTS-AES " Tom Lendacky
2013-11-12 17:46 ` [PATCH 08/10] crypto: CCP SHA " Tom Lendacky
2013-11-12 17:46 ` [PATCH 09/10] crytpo: CCP device driver build files Tom Lendacky
2013-11-12 17:46 ` [PATCH 10/10] crypto: CCP maintainer information Tom Lendacky
2013-11-20 16:20 ` Tom Lendacky [this message]
2013-11-21 3:20 ` [PATCH 00/10] AMD Cryptographic Coprocessor support Herbert Xu
2013-12-05 14:35 ` Herbert Xu
-- strict thread matches above, loose matches on Subject: below --
2013-11-12 17:39 Tom Lendacky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5441273.HtAtgCrPKB@tlendack-t1 \
--to=thomas.lendacky@amd.com \
--cc=davem@davemloft.net \
--cc=herbert@gondor.hengli.com.au \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®