lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 30 May 2017 17:28:00 +0530
From:   Srikanth Jampala <Jampala.Srikanth@...ium.com>
To:     herbert@...dor.apana.org.au
Cc:     davem@...emloft.net, linux-kernel@...r.kernel.org,
        linux-crypto@...r.kernel.org, Sreerama.Gadam@...ium.com,
        Ram.Kumar@...ium.com, Nidadavolu.Murthy@...ium.com,
        George.Cherian@...ium.com,
        Srikanth Jampala <Jampala.Srikanth@...ium.com>
Subject: [PATCH v2 0/3] Add support for Cavium CNN55XX crypto adapters.

This series adds support for Cavium CNN55XX crypto adapters.
  
 CNN55XX crypto adapters belongs to Cavium NITROX family series,
 able to accelerates both Symmetric and Asymmetric crypto workloads.
 These adapters have crypto cores for Symmetric and Asymmetric
 crypto operations, and needs to load firmware to become operational.
 
 Patches are generated on top of kernel/git/herbert/crypto-2.6

 The series was tested with dm-crypt for in kernel
 cryptographic offload operations.

Changes from v1 to v2:
- Addressed the Stephan Muller comments.
  - Moved from ablkcipher to skcipher API.
  - Clear the context information while releasing.
- Cleanup in request processing, avoids unnecessary copies.
- Use refcount_t type for reference counters.
- Dependencies updated in Kconfig.

Srikanth Jampala (3):
  crypto: cavium - Add support for CNN55XX adapters.
  crypto: cavium - Add debugfs support in CNN55XX driver.
  crypto: cavium - Register the CNN55XX supported crypto algorithms.

 drivers/crypto/Kconfig                       |    1 +
 drivers/crypto/Makefile                      |    1 +
 drivers/crypto/cavium/nitrox/Kconfig         |   21 +
 drivers/crypto/cavium/nitrox/Makefile        |    8 +
 drivers/crypto/cavium/nitrox/nitrox_algs.c   |  457 +++++++++++
 drivers/crypto/cavium/nitrox/nitrox_common.h |   42 +
 drivers/crypto/cavium/nitrox/nitrox_csr.h    | 1084 ++++++++++++++++++++++++++
 drivers/crypto/cavium/nitrox/nitrox_dev.h    |  179 +++++
 drivers/crypto/cavium/nitrox/nitrox_hal.c    |  401 ++++++++++
 drivers/crypto/cavium/nitrox/nitrox_isr.c    |  467 +++++++++++
 drivers/crypto/cavium/nitrox/nitrox_lib.c    |  210 +++++
 drivers/crypto/cavium/nitrox/nitrox_main.c   |  640 +++++++++++++++
 drivers/crypto/cavium/nitrox/nitrox_req.h    |  445 +++++++++++
 drivers/crypto/cavium/nitrox/nitrox_reqmgr.c |  732 +++++++++++++++++
 14 files changed, 4688 insertions(+)
 create mode 100644 drivers/crypto/cavium/nitrox/Kconfig
 create mode 100644 drivers/crypto/cavium/nitrox/Makefile
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_algs.c
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_common.h
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_csr.h
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_dev.h
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_hal.c
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_isr.c
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_lib.c
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_main.c
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_req.h
 create mode 100644 drivers/crypto/cavium/nitrox/nitrox_reqmgr.c

-- 
2.9.3

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ