mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/10] AMD Cryptographic Coprocessor support
@ 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
                   ` (11 more replies)
  0 siblings, 12 replies; 19+ messages in thread
From: Tom Lendacky @ 2013-11-12 17:45 UTC (permalink / raw)
  To: davem, linux-crypto, herbert; +Cc: linux-kernel

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 Lendacky


^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCH 00/10] AMD Cryptographic Coprocessor support
@ 2013-11-12 17:39 Tom Lendacky
  0 siblings, 0 replies; 19+ messages in thread
From: Tom Lendacky @ 2013-11-12 17:39 UTC (permalink / raw)
  To: davem, linux-crytpo, herbert; +Cc: linux-kernel

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 Lendacky


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2015-01-26  2:55 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-12 17:45 [PATCH 00/10] AMD Cryptographic Coprocessor support 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 ` [PATCH 00/10] AMD Cryptographic Coprocessor support Tom Lendacky
2013-11-21  3:20   ` 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

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®