Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1534646
| From | Ryder Lee <ryder.lee@mediatek.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 0/2] Add MediaTek crypto acclelrator driver |
| Date | 2016-12-02 04:30 +0100 |
| Message-ID | <sJMHT-6s9-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This adds support for the MediaTek hardware accelerator on mt7623 SoC. This driver currently implement: - SHA1 and SHA2 family(HMAC) hash alogrithms. - AES block cipher in CBC/ECB mode with 128/196/256 bits keys. Ryder Lee (2): Add crypto driver support for some MediaTek chips crypto: mediatek - add DT bindings documentation .../devicetree/bindings/crypto/mediatek-crypto.txt | 32 + drivers/crypto/Kconfig | 17 + drivers/crypto/Makefile | 1 + drivers/crypto/mediatek/Makefile | 2 + drivers/crypto/mediatek/mtk-aes.c | 734 +++++++++++ drivers/crypto/mediatek/mtk-platform.c | 575 ++++++++ drivers/crypto/mediatek/mtk-platform.h | 230 ++++ drivers/crypto/mediatek/mtk-regs.h | 194 +++ drivers/crypto/mediatek/mtk-sha.c | 1384 ++++++++++++++++++++ 9 files changed, 3169 insertions(+) create mode 100644 Documentation/devicetree/bindings/crypto/mediatek-crypto.txt create mode 100644 drivers/crypto/mediatek/Makefile create mode 100644 drivers/crypto/mediatek/mtk-aes.c create mode 100644 drivers/crypto/mediatek/mtk-platform.c create mode 100644 drivers/crypto/mediatek/mtk-platform.h create mode 100644 drivers/crypto/mediatek/mtk-regs.h create mode 100644 drivers/crypto/mediatek/mtk-sha.c -- 1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 0/2] Add MediaTek crypto acclelrator driver Ryder Lee <ryder.lee@mediatek.com> - 2016-12-02 04:30 +0100
[PATCH 2/2] crypto: mediatek - add DT bindings documentation Ryder Lee <ryder.lee@mediatek.com> - 2016-12-02 04:30 +0100
Re: [PATCH 1/2] Add crypto driver support for some MediaTek chips Corentin Labbe <clabbe.montjoie@gmail.com> - 2016-12-02 09:20 +0100
Re: [PATCH 1/2] Add crypto driver support for some MediaTek chips mtk09577 <ryder.lee@mediatek.com> - 2016-12-02 12:50 +0100
Re: [PATCH 1/2] Add crypto driver support for some MediaTek chips Ryder Lee <ryder.lee@mediatek.com> - 2016-12-02 13:20 +0100
csiph-web