linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V3 0/4] Add Xilinx's ZynqMP AES driver support
@ 2019-11-06 11:40 Kalyani Akula
  2019-11-06 11:40 ` [PATCH V3 1/4] dt-bindings: crypto: Add bindings for ZynqMP AES driver Kalyani Akula
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Kalyani Akula @ 2019-11-06 11:40 UTC (permalink / raw)
  To: linux-crypto, linux-kernel
  Cc: Kalyani Akula, Harsh Jain, Sarat Chand Savitala,
	Mohan Marutirao Dhanawade, Kalyani Akula

This patch set adds support for
- dt-binding docs for Xilinx ZynqMP AES driver
- Adds device tree node for ZynqMP AES driver
- Adds communication layer support for aes in zynqmp.c
- Adds Xilinx ZynqMP driver for AES Algorithm

V3 Changes :
- Added software fallback in cases where HW doesnt have 
 the capability to handle the request.
- Removed use of global variable for storing the driver data.
- Enabled CONFIG_CRYPTO_MANAGER_EXTRA_TESTS=y and executed all
 the kernel selftests. Also covered tests with tcrypt module.

V2 Changes :
- Converted RFC PATCH to PATCH
- Removed ALG_SET_KEY_TYPE that was added to support keytype
  attribute. Taken using setkey interface.
- Removed deprecated BLKCIPHER in Kconfig
- Erased Key/IV from the buffer.
- Renamed zynqmp-aes driver to zynqmp-aes-gcm.
- Addressed few other review comments

Kalyani Akula (4):
  dt-bindings: crypto: Add bindings for ZynqMP AES driver
  ARM64: zynqmp: Add Xilinix AES node.
  firmware: xilinx: Add ZynqMP aes API for AES functionality
  crypto: Add Xilinx AES driver

 .../devicetree/bindings/crypto/xlnx,zynqmp-aes.txt |  12 +
 arch/arm64/boot/dts/xilinx/zynqmp.dtsi             |   5 +
 drivers/crypto/Kconfig                             |  11 +
 drivers/crypto/Makefile                            |   2 +
 drivers/crypto/xilinx/Makefile                     |   3 +
 drivers/crypto/xilinx/zynqmp-aes-gcm.c             | 457 +++++++++++++++++++++
 drivers/firmware/xilinx/zynqmp.c                   |  23 ++
 include/linux/firmware/xlnx-zynqmp.h               |   2 +
 8 files changed, 515 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/crypto/xlnx,zynqmp-aes.txt
 create mode 100644 drivers/crypto/xilinx/Makefile
 create mode 100644 drivers/crypto/xilinx/zynqmp-aes-gcm.c

-- 
1.9.5


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

end of thread, other threads:[~2019-11-20  6:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-06 11:40 [PATCH V3 0/4] Add Xilinx's ZynqMP AES driver support Kalyani Akula
2019-11-06 11:40 ` [PATCH V3 1/4] dt-bindings: crypto: Add bindings for ZynqMP AES driver Kalyani Akula
2019-11-06 11:40 ` [PATCH V3 2/4] ARM64: zynqmp: Add Xilinix AES node Kalyani Akula
2019-11-06 11:40 ` [PATCH V3 3/4] firmware: xilinx: Add ZynqMP aes API for AES functionality Kalyani Akula
2019-11-06 11:40 ` [PATCH V3 4/4] crypto: Add Xilinx AES driver Kalyani Akula
2019-11-15 12:45   ` Corentin Labbe
2019-11-20  6:41     ` Kalyani Akula

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 NNTP newsgroup(s).