123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- From 8b1069fcc1dbb524556d851f3dedf0629a71f17b Mon Sep 17 00:00:00 2001
- From: Jia Jie Ho <[email protected]>
- Date: Mon, 15 May 2023 20:53:53 +0800
- Subject: [PATCH 065/122] crypto: starfive - Add crypto engine support
- Adding device probe and DMA init for StarFive cryptographic module.
- Co-developed-by: Huan Feng <[email protected]>
- Signed-off-by: Huan Feng <[email protected]>
- Signed-off-by: Jia Jie Ho <[email protected]>
- Signed-off-by: Herbert Xu <[email protected]>
- ---
- drivers/crypto/Kconfig | 1 +
- drivers/crypto/Makefile | 1 +
- drivers/crypto/starfive/Kconfig | 17 +++
- drivers/crypto/starfive/Makefile | 4 +
- drivers/crypto/starfive/jh7110-cryp.c | 201 ++++++++++++++++++++++++++
- drivers/crypto/starfive/jh7110-cryp.h | 63 ++++++++
- 6 files changed, 287 insertions(+)
- create mode 100644 drivers/crypto/starfive/Kconfig
- create mode 100644 drivers/crypto/starfive/Makefile
- create mode 100644 drivers/crypto/starfive/jh7110-cryp.c
- create mode 100644 drivers/crypto/starfive/jh7110-cryp.h
- --- a/drivers/crypto/Kconfig
- +++ b/drivers/crypto/Kconfig
- @@ -823,5 +823,6 @@ config CRYPTO_DEV_SA2UL
-
- source "drivers/crypto/keembay/Kconfig"
- source "drivers/crypto/aspeed/Kconfig"
- +source "drivers/crypto/starfive/Kconfig"
-
- endif # CRYPTO_HW
- --- a/drivers/crypto/Makefile
- +++ b/drivers/crypto/Makefile
- @@ -53,3 +53,4 @@ obj-y += xilinx/
- obj-y += hisilicon/
- obj-$(CONFIG_CRYPTO_DEV_AMLOGIC_GXL) += amlogic/
- obj-y += keembay/
- +obj-y += starfive/
- --- /dev/null
- +++ b/drivers/crypto/starfive/Kconfig
- @@ -0,0 +1,17 @@
- +#
- +# StarFive crypto drivers configuration
- +#
- +
- +config CRYPTO_DEV_JH7110
- + tristate "StarFive JH7110 cryptographic engine driver"
- + depends on SOC_STARFIVE || COMPILE_TEST
- + select CRYPTO_ENGINE
- + select ARM_AMBA
- + select DMADEVICES
- + select AMBA_PL08X
- + help
- + Support for StarFive JH7110 crypto hardware acceleration engine.
- + This module provides acceleration for public key algo,
- + skciphers, AEAD and hash functions.
- +
- + If you choose 'M' here, this module will be called jh7110-crypto.
- --- /dev/null
- +++ b/drivers/crypto/starfive/Makefile
- @@ -0,0 +1,4 @@
- +# SPDX-License-Identifier: GPL-2.0
- +
- +obj-$(CONFIG_CRYPTO_DEV_JH7110) += jh7110-crypto.o
- +jh7110-crypto-objs := jh7110-cryp.o
- --- /dev/null
- +++ b/drivers/crypto/starfive/jh7110-cryp.c
- @@ -0,0 +1,201 @@
- +// SPDX-License-Identifier: GPL-2.0
- +/*
- + * Cryptographic API.
- + *
- + * Support for StarFive hardware cryptographic engine.
- + * Copyright (c) 2022 StarFive Technology
- + *
- + */
- +
- +#include <linux/clk.h>
- +#include <linux/delay.h>
- +#include <linux/interrupt.h>
- +#include <linux/iopoll.h>
- +#include <linux/module.h>
- +#include <linux/of_device.h>
- +#include <linux/platform_device.h>
- +#include <linux/pm_runtime.h>
- +#include <linux/reset.h>
- +
- +#include "jh7110-cryp.h"
- +
- +#define DRIVER_NAME "jh7110-crypto"
- +
- +struct starfive_dev_list {
- + struct list_head dev_list;
- + spinlock_t lock; /* protect dev_list */
- +};
- +
- +static struct starfive_dev_list dev_list = {
- + .dev_list = LIST_HEAD_INIT(dev_list.dev_list),
- + .lock = __SPIN_LOCK_UNLOCKED(dev_list.lock),
- +};
- +
- +struct starfive_cryp_dev *starfive_cryp_find_dev(struct starfive_cryp_ctx *ctx)
- +{
- + struct starfive_cryp_dev *cryp = NULL, *tmp;
- +
- + spin_lock_bh(&dev_list.lock);
- + if (!ctx->cryp) {
- + list_for_each_entry(tmp, &dev_list.dev_list, list) {
- + cryp = tmp;
- + break;
- + }
- + ctx->cryp = cryp;
- + } else {
- + cryp = ctx->cryp;
- + }
- +
- + spin_unlock_bh(&dev_list.lock);
- +
- + return cryp;
- +}
- +
- +static int starfive_dma_init(struct starfive_cryp_dev *cryp)
- +{
- + dma_cap_mask_t mask;
- +
- + dma_cap_zero(mask);
- + dma_cap_set(DMA_SLAVE, mask);
- +
- + cryp->tx = dma_request_chan(cryp->dev, "tx");
- + if (IS_ERR(cryp->tx))
- + return dev_err_probe(cryp->dev, PTR_ERR(cryp->tx),
- + "Error requesting tx dma channel.\n");
- +
- + cryp->rx = dma_request_chan(cryp->dev, "rx");
- + if (IS_ERR(cryp->rx)) {
- + dma_release_channel(cryp->tx);
- + return dev_err_probe(cryp->dev, PTR_ERR(cryp->rx),
- + "Error requesting rx dma channel.\n");
- + }
- +
- + return 0;
- +}
- +
- +static void starfive_dma_cleanup(struct starfive_cryp_dev *cryp)
- +{
- + dma_release_channel(cryp->tx);
- + dma_release_channel(cryp->rx);
- +}
- +
- +static int starfive_cryp_probe(struct platform_device *pdev)
- +{
- + struct starfive_cryp_dev *cryp;
- + struct resource *res;
- + int ret;
- +
- + cryp = devm_kzalloc(&pdev->dev, sizeof(*cryp), GFP_KERNEL);
- + if (!cryp)
- + return -ENOMEM;
- +
- + platform_set_drvdata(pdev, cryp);
- + cryp->dev = &pdev->dev;
- +
- + cryp->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
- + if (IS_ERR(cryp->base))
- + return dev_err_probe(&pdev->dev, PTR_ERR(cryp->base),
- + "Error remapping memory for platform device\n");
- +
- + cryp->phys_base = res->start;
- + cryp->dma_maxburst = 32;
- +
- + cryp->hclk = devm_clk_get(&pdev->dev, "hclk");
- + if (IS_ERR(cryp->hclk))
- + return dev_err_probe(&pdev->dev, PTR_ERR(cryp->hclk),
- + "Error getting hardware reference clock\n");
- +
- + cryp->ahb = devm_clk_get(&pdev->dev, "ahb");
- + if (IS_ERR(cryp->ahb))
- + return dev_err_probe(&pdev->dev, PTR_ERR(cryp->ahb),
- + "Error getting ahb reference clock\n");
- +
- + cryp->rst = devm_reset_control_get_shared(cryp->dev, NULL);
- + if (IS_ERR(cryp->rst))
- + return dev_err_probe(&pdev->dev, PTR_ERR(cryp->rst),
- + "Error getting hardware reset line\n");
- +
- + clk_prepare_enable(cryp->hclk);
- + clk_prepare_enable(cryp->ahb);
- + reset_control_deassert(cryp->rst);
- +
- + spin_lock(&dev_list.lock);
- + list_add(&cryp->list, &dev_list.dev_list);
- + spin_unlock(&dev_list.lock);
- +
- + ret = starfive_dma_init(cryp);
- + if (ret) {
- + if (ret == -EPROBE_DEFER)
- + goto err_probe_defer;
- + else
- + goto err_dma_init;
- + }
- +
- + /* Initialize crypto engine */
- + cryp->engine = crypto_engine_alloc_init(&pdev->dev, 1);
- + if (!cryp->engine) {
- + ret = -ENOMEM;
- + goto err_engine;
- + }
- +
- + ret = crypto_engine_start(cryp->engine);
- + if (ret)
- + goto err_engine_start;
- +
- + return 0;
- +
- +err_engine_start:
- + crypto_engine_exit(cryp->engine);
- +err_engine:
- + starfive_dma_cleanup(cryp);
- +err_dma_init:
- + spin_lock(&dev_list.lock);
- + list_del(&cryp->list);
- + spin_unlock(&dev_list.lock);
- +
- + clk_disable_unprepare(cryp->hclk);
- + clk_disable_unprepare(cryp->ahb);
- + reset_control_assert(cryp->rst);
- +err_probe_defer:
- + return ret;
- +}
- +
- +static int starfive_cryp_remove(struct platform_device *pdev)
- +{
- + struct starfive_cryp_dev *cryp = platform_get_drvdata(pdev);
- +
- + crypto_engine_stop(cryp->engine);
- + crypto_engine_exit(cryp->engine);
- +
- + starfive_dma_cleanup(cryp);
- +
- + spin_lock(&dev_list.lock);
- + list_del(&cryp->list);
- + spin_unlock(&dev_list.lock);
- +
- + clk_disable_unprepare(cryp->hclk);
- + clk_disable_unprepare(cryp->ahb);
- + reset_control_assert(cryp->rst);
- +
- + return 0;
- +}
- +
- +static const struct of_device_id starfive_dt_ids[] __maybe_unused = {
- + { .compatible = "starfive,jh7110-crypto", .data = NULL},
- + {},
- +};
- +MODULE_DEVICE_TABLE(of, starfive_dt_ids);
- +
- +static struct platform_driver starfive_cryp_driver = {
- + .probe = starfive_cryp_probe,
- + .remove = starfive_cryp_remove,
- + .driver = {
- + .name = DRIVER_NAME,
- + .of_match_table = starfive_dt_ids,
- + },
- +};
- +
- +module_platform_driver(starfive_cryp_driver);
- +
- +MODULE_LICENSE("GPL");
- +MODULE_DESCRIPTION("StarFive JH7110 Cryptographic Module");
- --- /dev/null
- +++ b/drivers/crypto/starfive/jh7110-cryp.h
- @@ -0,0 +1,63 @@
- +/* SPDX-License-Identifier: GPL-2.0 */
- +#ifndef __STARFIVE_STR_H__
- +#define __STARFIVE_STR_H__
- +
- +#include <linux/delay.h>
- +#include <linux/dma-mapping.h>
- +#include <linux/dmaengine.h>
- +
- +#include <crypto/engine.h>
- +
- +#define STARFIVE_ALG_CR_OFFSET 0x0
- +#define STARFIVE_ALG_FIFO_OFFSET 0x4
- +#define STARFIVE_IE_MASK_OFFSET 0x8
- +#define STARFIVE_IE_FLAG_OFFSET 0xc
- +#define STARFIVE_DMA_IN_LEN_OFFSET 0x10
- +#define STARFIVE_DMA_OUT_LEN_OFFSET 0x14
- +
- +#define STARFIVE_MSG_BUFFER_SIZE SZ_16K
- +
- +union starfive_alg_cr {
- + u32 v;
- + struct {
- + u32 start :1;
- + u32 aes_dma_en :1;
- + u32 rsvd_0 :1;
- + u32 hash_dma_en :1;
- + u32 alg_done :1;
- + u32 rsvd_1 :3;
- + u32 clear :1;
- + u32 rsvd_2 :23;
- + };
- +};
- +
- +struct starfive_cryp_ctx {
- + struct crypto_engine_ctx enginectx;
- + struct starfive_cryp_dev *cryp;
- +};
- +
- +struct starfive_cryp_dev {
- + struct list_head list;
- + struct device *dev;
- +
- + struct clk *hclk;
- + struct clk *ahb;
- + struct reset_control *rst;
- +
- + void __iomem *base;
- + phys_addr_t phys_base;
- +
- + u32 dma_maxburst;
- + struct dma_chan *tx;
- + struct dma_chan *rx;
- + struct dma_slave_config cfg_in;
- + struct dma_slave_config cfg_out;
- +
- + struct crypto_engine *engine;
- +
- + union starfive_alg_cr alg_cr;
- +};
- +
- +struct starfive_cryp_dev *starfive_cryp_find_dev(struct starfive_cryp_ctx *ctx);
- +
- +#endif
|