From: Steffen Trumtrar <s.trumtrar@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Subject: [PATCH 0/5] i.MX6: CAAM engine support
Date: Wed, 10 Feb 2016 12:05:50 +0100 [thread overview]
Message-ID: <1455102355-26102-1-git-send-email-s.trumtrar@pengutronix.de> (raw)
Hi!
This series adds basic support for the i.MX6
Cryptographic Acceleration and Assurance Module (CAAM).
The CAAM supports multiple hashing/encryption engines,
this series only supports the included hardware random
number generator.
Tested with a riotboard.
Regards,
Steffen
Steffen Trumtrar (5):
include: linux: add circular buffers
ARM: imx6: add caam clks
crypto: add i.MX6 CAAM support
crypto: caam: add RNG support
ARM: i.MX6: riotboard: enable CAAM RNG
arch/arm/dts/imx6s-riotboard.dts | 4 +
arch/arm/mach-imx/clk-imx6.c | 4 +
drivers/Kconfig | 1 +
drivers/Makefile | 1 +
drivers/crypto/Kconfig | 10 +
drivers/crypto/Makefile | 1 +
drivers/crypto/caam/Kconfig | 44 +
drivers/crypto/caam/Makefile | 6 +
drivers/crypto/caam/caamrng.c | 319 +++++++
drivers/crypto/caam/ctrl.c | 651 +++++++++++++++
drivers/crypto/caam/ctrl.h | 13 +
drivers/crypto/caam/desc.h | 1665 +++++++++++++++++++++++++++++++++++++
drivers/crypto/caam/desc_constr.h | 390 +++++++++
drivers/crypto/caam/error.c | 257 ++++++
drivers/crypto/caam/error.h | 11 +
drivers/crypto/caam/intern.h | 99 +++
drivers/crypto/caam/jr.c | 364 ++++++++
drivers/crypto/caam/jr.h | 18 +
drivers/crypto/caam/regs.h | 895 ++++++++++++++++++++
include/linux/circ_buf.h | 36 +
20 files changed, 4789 insertions(+)
create mode 100644 drivers/crypto/Kconfig
create mode 100644 drivers/crypto/Makefile
create mode 100644 drivers/crypto/caam/Kconfig
create mode 100644 drivers/crypto/caam/Makefile
create mode 100644 drivers/crypto/caam/caamrng.c
create mode 100644 drivers/crypto/caam/ctrl.c
create mode 100644 drivers/crypto/caam/ctrl.h
create mode 100644 drivers/crypto/caam/desc.h
create mode 100644 drivers/crypto/caam/desc_constr.h
create mode 100644 drivers/crypto/caam/error.c
create mode 100644 drivers/crypto/caam/error.h
create mode 100644 drivers/crypto/caam/intern.h
create mode 100644 drivers/crypto/caam/jr.c
create mode 100644 drivers/crypto/caam/jr.h
create mode 100644 drivers/crypto/caam/regs.h
create mode 100644 include/linux/circ_buf.h
--
2.7.0.rc3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2016-02-10 11:06 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-10 11:05 Steffen Trumtrar [this message]
2016-02-10 11:05 ` [PATCH 1/5] include: linux: add circular buffers Steffen Trumtrar
2016-02-10 11:05 ` [PATCH 2/5] ARM: imx6: add caam clks Steffen Trumtrar
2016-02-10 11:05 ` [PATCH 3/5] crypto: add i.MX6 CAAM support Steffen Trumtrar
2016-02-10 11:05 ` [PATCH 4/5] crypto: caam: add RNG support Steffen Trumtrar
2016-02-10 11:05 ` [PATCH 5/5] ARM: i.MX6: riotboard: enable CAAM RNG Steffen Trumtrar
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=1455102355-26102-1-git-send-email-s.trumtrar@pengutronix.de \
--to=s.trumtrar@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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