Linux-Crypto Archive mirror
 help / color / mirror / Atom feed
From: Pavitrakumar M <pavitrakumarm@vayavyalabs.com>
To: herbert@gondor.apana.org.au, linux-crypto@vger.kernel.org
Cc: Ruud.Derwig@synopsys.com, manjunath.hadli@vayavyalabs.com,
	bhoomikak@vayavyalabs.com,
	Pavitrakumar M <pavitrakumarm@vayavyalabs.com>
Subject: [PATCH v3 0/7] Add SPAcc crypto driver support
Date: Fri, 26 Apr 2024 09:55:37 +0530	[thread overview]
Message-ID: <20240426042544.3545690-1-pavitrakumarm@vayavyalabs.com> (raw)

Add the driver for SPAcc(Security Protocol Accelerator), which is a
crypto acceleration IP from Synopsys. The SPAcc supports many cipher,
hash, aead algorithms and various modes.The driver currently supports
below,

aead:
- ccm(sm4)
- ccm(aes)
- gcm(sm4)
- gcm(aes)
- rfc7539(chacha20,poly1305)

cipher:
- cbc(sm4)
- ecb(sm4)
- ctr(sm4)
- xts(sm4)
- cts(cbc(sm4))
- cbc(aes)
- ecb(aes)
- xts(aes)
- cts(cbc(aes))
- ctr(aes)
- chacha20
- ecb(des)
- cbc(des)
- ecb(des3_ede)
- cbc(des3_ede)

hash:
- cmac(aes)
- xcbc(aes)
- cmac(sm4)
- xcbc(sm4) 
- hmac(md5)
- md5
- hmac(sha1)
- sha1
- sha224
- sha256
- sha384
- sha512
- hmac(sha224)
- hmac(sha256)
- hmac(sha384)
- hmac(sha512)
- sha3-224
- sha3-256
- sha3-384
- sha3-512
- hmac(sm3)
- sm3
- michael_mic

Pavitrakumar M (7):
  Add SPAcc Skcipher support
  Enable SPAcc AUTODETECT
  Add SPAcc ahash support
  Add SPAcc aead support
  Add SPAcc Kconfig and Makefile
  Add SPAcc node zynqmp dts
  Enable Driver compilation in crypto Kconfig and Makefile

 arch/arm64/boot/dts/xilinx/zynqmp.dtsi     |   10 +
 drivers/crypto/Kconfig                     |    9 +-
 drivers/crypto/Makefile                    |    2 +-
 drivers/crypto/dwc-spacc/Kconfig           |   95 +
 drivers/crypto/dwc-spacc/Makefile          |   16 +
 drivers/crypto/dwc-spacc/spacc_aead.c      | 1313 ++++++++++
 drivers/crypto/dwc-spacc/spacc_ahash.c     | 1292 ++++++++++
 drivers/crypto/dwc-spacc/spacc_core.c      | 2671 ++++++++++++++++++++
 drivers/crypto/dwc-spacc/spacc_core.h      |  834 ++++++
 drivers/crypto/dwc-spacc/spacc_device.c    |  342 +++
 drivers/crypto/dwc-spacc/spacc_device.h    |  237 ++
 drivers/crypto/dwc-spacc/spacc_hal.c       |  365 +++
 drivers/crypto/dwc-spacc/spacc_hal.h       |  113 +
 drivers/crypto/dwc-spacc/spacc_interrupt.c |  324 +++
 drivers/crypto/dwc-spacc/spacc_manager.c   |  670 +++++
 drivers/crypto/dwc-spacc/spacc_skcipher.c  |  720 ++++++
 16 files changed, 9004 insertions(+), 9 deletions(-)
 create mode 100644 drivers/crypto/dwc-spacc/Kconfig
 create mode 100644 drivers/crypto/dwc-spacc/Makefile
 create mode 100644 drivers/crypto/dwc-spacc/spacc_aead.c
 create mode 100644 drivers/crypto/dwc-spacc/spacc_ahash.c
 create mode 100644 drivers/crypto/dwc-spacc/spacc_core.c
 create mode 100644 drivers/crypto/dwc-spacc/spacc_core.h
 create mode 100644 drivers/crypto/dwc-spacc/spacc_device.c
 create mode 100644 drivers/crypto/dwc-spacc/spacc_device.h
 create mode 100644 drivers/crypto/dwc-spacc/spacc_hal.c
 create mode 100644 drivers/crypto/dwc-spacc/spacc_hal.h
 create mode 100644 drivers/crypto/dwc-spacc/spacc_interrupt.c
 create mode 100644 drivers/crypto/dwc-spacc/spacc_manager.c
 create mode 100644 drivers/crypto/dwc-spacc/spacc_skcipher.c


base-commit: 543ea178fbfadeaf79e15766ac989f3351349f02
-- 
2.25.1


             reply	other threads:[~2024-04-26  4:26 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-26  4:25 Pavitrakumar M [this message]
2024-04-26  4:25 ` [PATCH v3 1/7] Add SPAcc Skcipher support Pavitrakumar M
2024-04-26  4:25 ` [PATCH v3 2/7] Enable SPAcc AUTODETECT Pavitrakumar M
2024-04-26  4:25 ` [PATCH v3 3/7] Add SPAcc ahash support Pavitrakumar M
2024-05-03 10:29   ` Herbert Xu
2024-05-07  4:19     ` Pavitrakumar Managutte
2024-05-10  8:03       ` Herbert Xu
2024-05-16  3:11         ` Pavitrakumar Managutte
2024-05-16  3:15           ` Herbert Xu
2024-05-16  3:50             ` Pavitrakumar Managutte
     [not found]               ` <CALxtO0mz6ehEowBr94MZqG3+P9tV1ZaomP5K3n1F2VSuRzn=1A@mail.gmail.com>
2024-05-21  2:13                 ` Herbert Xu
2024-04-26  4:25 ` [PATCH v3 4/7] Add SPAcc aead support Pavitrakumar M
2024-04-26  4:25 ` [PATCH v3 5/7] Add SPAcc Kconfig and Makefile Pavitrakumar M
2024-04-26  4:25 ` [PATCH v3 6/7] Add SPAcc node zynqmp dts Pavitrakumar M
2024-04-26  4:25 ` [PATCH v3 7/7] Enable Driver compilation in crypto Kconfig and Makefile Pavitrakumar M

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=20240426042544.3545690-1-pavitrakumarm@vayavyalabs.com \
    --to=pavitrakumarm@vayavyalabs.com \
    --cc=Ruud.Derwig@synopsys.com \
    --cc=bhoomikak@vayavyalabs.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-crypto@vger.kernel.org \
    --cc=manjunath.hadli@vayavyalabs.com \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).