mbox series

[0/5] crypto: hisilicon - add HPRE support

Message ID 1569835209-44326-1-git-send-email-xuzaibo@huawei.com (mailing list archive)
Headers show
Series crypto: hisilicon - add HPRE support | expand

Message

Xu Zaibo Sept. 30, 2019, 9:20 a.m. UTC
This series adds HiSilicon high performance RSA engine(HPRE) driver
in crypto subsystem. HPRE driver provides PCIe hardware device initiation
with RSA and DH algorithms registered to Crypto. Meanwhile, some debug
supporting of DebugFS is given.

Zaibo Xu (5):
  crypto: hisilicon - add HiSilicon HPRE accelerator
  crypto: hisilicon - add SRIOV support for HPRE
  Documentation: Add debugfs doc for hisi_hpre
  crypto: hisilicon: Add debugfs for HPRE
  MAINTAINERS: Add maintainer for HiSilicon HPRE driver

 Documentation/ABI/testing/debugfs-hisi-hpre |   57 ++
 MAINTAINERS                                 |    9 +
 drivers/crypto/hisilicon/Kconfig            |   11 +
 drivers/crypto/hisilicon/Makefile           |    1 +
 drivers/crypto/hisilicon/hpre/Makefile      |    2 +
 drivers/crypto/hisilicon/hpre/hpre.h        |   83 ++
 drivers/crypto/hisilicon/hpre/hpre_crypto.c | 1137 +++++++++++++++++++++++++++
 drivers/crypto/hisilicon/hpre/hpre_main.c   | 1052 +++++++++++++++++++++++++
 8 files changed, 2352 insertions(+)
 create mode 100644 Documentation/ABI/testing/debugfs-hisi-hpre
 create mode 100644 drivers/crypto/hisilicon/hpre/Makefile
 create mode 100644 drivers/crypto/hisilicon/hpre/hpre.h
 create mode 100644 drivers/crypto/hisilicon/hpre/hpre_crypto.c
 create mode 100644 drivers/crypto/hisilicon/hpre/hpre_main.c

Comments

Xu Zaibo Oct. 9, 2019, 3:15 a.m. UTC | #1
Hi,


On 2019/9/30 17:20, Zaibo Xu wrote:
> This series adds HiSilicon high performance RSA engine(HPRE) driver
> in crypto subsystem. HPRE driver provides PCIe hardware device initiation
> with RSA and DH algorithms registered to Crypto. Meanwhile, some debug
> supporting of DebugFS is given.
>
> Zaibo Xu (5):
>    crypto: hisilicon - add HiSilicon HPRE accelerator
>    crypto: hisilicon - add SRIOV support for HPRE
>    Documentation: Add debugfs doc for hisi_hpre
>    crypto: hisilicon: Add debugfs for HPRE
>    MAINTAINERS: Add maintainer for HiSilicon HPRE driver
>
>   Documentation/ABI/testing/debugfs-hisi-hpre |   57 ++
>   MAINTAINERS                                 |    9 +
>   drivers/crypto/hisilicon/Kconfig            |   11 +
>   drivers/crypto/hisilicon/Makefile           |    1 +
>   drivers/crypto/hisilicon/hpre/Makefile      |    2 +
>   drivers/crypto/hisilicon/hpre/hpre.h        |   83 ++
>   drivers/crypto/hisilicon/hpre/hpre_crypto.c | 1137 +++++++++++++++++++++++++++
>   drivers/crypto/hisilicon/hpre/hpre_main.c   | 1052 +++++++++++++++++++++++++
>   8 files changed, 2352 insertions(+)
>   create mode 100644 Documentation/ABI/testing/debugfs-hisi-hpre
>   create mode 100644 drivers/crypto/hisilicon/hpre/Makefile
>   create mode 100644 drivers/crypto/hisilicon/hpre/hpre.h
>   create mode 100644 drivers/crypto/hisilicon/hpre/hpre_crypto.c
>   create mode 100644 drivers/crypto/hisilicon/hpre/hpre_main.c
>
Any comments for this version?

Best,
Zaibo
Herbert Xu Oct. 10, 2019, 12:54 p.m. UTC | #2
On Mon, Sep 30, 2019 at 05:20:04PM +0800, Zaibo Xu wrote:
> This series adds HiSilicon high performance RSA engine(HPRE) driver
> in crypto subsystem. HPRE driver provides PCIe hardware device initiation
> with RSA and DH algorithms registered to Crypto. Meanwhile, some debug
> supporting of DebugFS is given.
> 
> Zaibo Xu (5):
>   crypto: hisilicon - add HiSilicon HPRE accelerator
>   crypto: hisilicon - add SRIOV support for HPRE
>   Documentation: Add debugfs doc for hisi_hpre
>   crypto: hisilicon: Add debugfs for HPRE
>   MAINTAINERS: Add maintainer for HiSilicon HPRE driver
> 
>  Documentation/ABI/testing/debugfs-hisi-hpre |   57 ++
>  MAINTAINERS                                 |    9 +
>  drivers/crypto/hisilicon/Kconfig            |   11 +
>  drivers/crypto/hisilicon/Makefile           |    1 +
>  drivers/crypto/hisilicon/hpre/Makefile      |    2 +
>  drivers/crypto/hisilicon/hpre/hpre.h        |   83 ++
>  drivers/crypto/hisilicon/hpre/hpre_crypto.c | 1137 +++++++++++++++++++++++++++
>  drivers/crypto/hisilicon/hpre/hpre_main.c   | 1052 +++++++++++++++++++++++++
>  8 files changed, 2352 insertions(+)
>  create mode 100644 Documentation/ABI/testing/debugfs-hisi-hpre
>  create mode 100644 drivers/crypto/hisilicon/hpre/Makefile
>  create mode 100644 drivers/crypto/hisilicon/hpre/hpre.h
>  create mode 100644 drivers/crypto/hisilicon/hpre/hpre_crypto.c
>  create mode 100644 drivers/crypto/hisilicon/hpre/hpre_main.c

All applied.  Thanks.