]> git.openfabrics.org - ~emulex/infiniband.git/commit
crypto: caam - Add support for the Freescale SEC4/CAAM
authorKim Phillips <kim.phillips@freescale.com>
Sun, 13 Mar 2011 08:54:26 +0000 (16:54 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sun, 27 Mar 2011 02:45:16 +0000 (10:45 +0800)
commit8e8ec596e6c0144e2dd500a57ee23dde9684df46
tree6ca9b342f37b3dc7a62621e544c8861920668117
parent60af520cf264ea26b2af3a6871bbd71850522aea
crypto: caam - Add support for the Freescale SEC4/CAAM

The SEC4 supercedes the SEC2.x/3.x as Freescale's
Integrated Security Engine.  Its programming model is
incompatible with all prior versions of the SEC (talitos).

The SEC4 is also known as the Cryptographic Accelerator
and Assurance Module (CAAM); this driver is named caam.

This initial submission does not include support for Data Path
mode operation - AEAD descriptors are submitted via the job
ring interface, while the Queue Interface (QI) is enabled
for use by others.  Only AEAD algorithms are implemented
at this time, for use with IPsec.

Many thanks to the Freescale STC team for their contributions
to this driver.

Signed-off-by: Steve Cornelius <sec@pobox.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
17 files changed:
Documentation/devicetree/bindings/crypto/fsl-sec4.txt [new file with mode: 0644]
arch/powerpc/boot/dts/p4080ds.dts
drivers/crypto/Kconfig
drivers/crypto/Makefile
drivers/crypto/caam/Kconfig [new file with mode: 0644]
drivers/crypto/caam/Makefile [new file with mode: 0644]
drivers/crypto/caam/caamalg.c [new file with mode: 0644]
drivers/crypto/caam/compat.h [new file with mode: 0644]
drivers/crypto/caam/ctrl.c [new file with mode: 0644]
drivers/crypto/caam/desc.h [new file with mode: 0644]
drivers/crypto/caam/desc_constr.h [new file with mode: 0644]
drivers/crypto/caam/error.c [new file with mode: 0644]
drivers/crypto/caam/error.h [new file with mode: 0644]
drivers/crypto/caam/intern.h [new file with mode: 0644]
drivers/crypto/caam/jr.c [new file with mode: 0644]
drivers/crypto/caam/jr.h [new file with mode: 0644]
drivers/crypto/caam/regs.h [new file with mode: 0644]