1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2021 Aspeed Technology Inc.
6 #include "aspeed-hace.h"
7 #include <crypto/engine.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/err.h>
11 #include <linux/interrupt.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/of_address.h>
16 #include <linux/of_device.h>
17 #include <linux/of_irq.h>
19 #include <linux/platform_device.h>
21 #ifdef CONFIG_CRYPTO_DEV_ASPEED_DEBUG
22 #define HACE_DBG(d, fmt, ...) \
23 dev_info((d)->dev, "%s() " fmt, __func__, ##__VA_ARGS__)
25 #define HACE_DBG(d, fmt, ...) \
26 dev_dbg((d)->dev, "%s() " fmt, __func__, ##__VA_ARGS__)
29 /* HACE interrupt service routine */
30 static irqreturn_t aspeed_hace_irq(int irq, void *dev)
32 struct aspeed_hace_dev *hace_dev = (struct aspeed_hace_dev *)dev;
33 struct aspeed_engine_crypto *crypto_engine = &hace_dev->crypto_engine;
34 struct aspeed_engine_hash *hash_engine = &hace_dev->hash_engine;
37 sts = ast_hace_read(hace_dev, ASPEED_HACE_STS);
38 ast_hace_write(hace_dev, sts, ASPEED_HACE_STS);
40 HACE_DBG(hace_dev, "irq status: 0x%x\n", sts);
42 if (sts & HACE_HASH_ISR) {
43 if (hash_engine->flags & CRYPTO_FLAGS_BUSY)
44 tasklet_schedule(&hash_engine->done_task);
46 dev_warn(hace_dev->dev, "HASH no active requests.\n");
49 if (sts & HACE_CRYPTO_ISR) {
50 if (crypto_engine->flags & CRYPTO_FLAGS_BUSY)
51 tasklet_schedule(&crypto_engine->done_task);
53 dev_warn(hace_dev->dev, "CRYPTO no active requests.\n");
59 static void aspeed_hace_crypto_done_task(unsigned long data)
61 struct aspeed_hace_dev *hace_dev = (struct aspeed_hace_dev *)data;
62 struct aspeed_engine_crypto *crypto_engine = &hace_dev->crypto_engine;
64 crypto_engine->resume(hace_dev);
67 static void aspeed_hace_hash_done_task(unsigned long data)
69 struct aspeed_hace_dev *hace_dev = (struct aspeed_hace_dev *)data;
70 struct aspeed_engine_hash *hash_engine = &hace_dev->hash_engine;
72 hash_engine->resume(hace_dev);
75 static void aspeed_hace_register(struct aspeed_hace_dev *hace_dev)
77 #ifdef CONFIG_CRYPTO_DEV_ASPEED_HACE_HASH
78 aspeed_register_hace_hash_algs(hace_dev);
80 #ifdef CONFIG_CRYPTO_DEV_ASPEED_HACE_CRYPTO
81 aspeed_register_hace_crypto_algs(hace_dev);
85 static void aspeed_hace_unregister(struct aspeed_hace_dev *hace_dev)
87 #ifdef CONFIG_CRYPTO_DEV_ASPEED_HACE_HASH
88 aspeed_unregister_hace_hash_algs(hace_dev);
90 #ifdef CONFIG_CRYPTO_DEV_ASPEED_HACE_CRYPTO
91 aspeed_unregister_hace_crypto_algs(hace_dev);
95 static const struct of_device_id aspeed_hace_of_matches[] = {
96 { .compatible = "aspeed,ast2500-hace", .data = (void *)5, },
97 { .compatible = "aspeed,ast2600-hace", .data = (void *)6, },
101 static int aspeed_hace_probe(struct platform_device *pdev)
103 struct aspeed_engine_crypto *crypto_engine;
104 const struct of_device_id *hace_dev_id;
105 struct aspeed_engine_hash *hash_engine;
106 struct aspeed_hace_dev *hace_dev;
109 hace_dev = devm_kzalloc(&pdev->dev, sizeof(struct aspeed_hace_dev),
114 hace_dev_id = of_match_device(aspeed_hace_of_matches, &pdev->dev);
116 dev_err(&pdev->dev, "Failed to match hace dev id\n");
120 hace_dev->dev = &pdev->dev;
121 hace_dev->version = (unsigned long)hace_dev_id->data;
122 hash_engine = &hace_dev->hash_engine;
123 crypto_engine = &hace_dev->crypto_engine;
125 platform_set_drvdata(pdev, hace_dev);
127 hace_dev->regs = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
128 if (IS_ERR(hace_dev->regs))
129 return PTR_ERR(hace_dev->regs);
131 /* Get irq number and register it */
132 hace_dev->irq = platform_get_irq(pdev, 0);
133 if (hace_dev->irq < 0)
136 rc = devm_request_irq(&pdev->dev, hace_dev->irq, aspeed_hace_irq, 0,
137 dev_name(&pdev->dev), hace_dev);
139 dev_err(&pdev->dev, "Failed to request interrupt\n");
143 /* Get clk and enable it */
144 hace_dev->clk = devm_clk_get(&pdev->dev, NULL);
145 if (IS_ERR(hace_dev->clk)) {
146 dev_err(&pdev->dev, "Failed to get clk\n");
150 rc = clk_prepare_enable(hace_dev->clk);
152 dev_err(&pdev->dev, "Failed to enable clock 0x%x\n", rc);
156 /* Initialize crypto hardware engine structure for hash */
157 hace_dev->crypt_engine_hash = crypto_engine_alloc_init(hace_dev->dev,
159 if (!hace_dev->crypt_engine_hash) {
164 rc = crypto_engine_start(hace_dev->crypt_engine_hash);
166 goto err_engine_hash_start;
168 tasklet_init(&hash_engine->done_task, aspeed_hace_hash_done_task,
169 (unsigned long)hace_dev);
171 /* Initialize crypto hardware engine structure for crypto */
172 hace_dev->crypt_engine_crypto = crypto_engine_alloc_init(hace_dev->dev,
174 if (!hace_dev->crypt_engine_crypto) {
176 goto err_engine_hash_start;
179 rc = crypto_engine_start(hace_dev->crypt_engine_crypto);
181 goto err_engine_crypto_start;
183 tasklet_init(&crypto_engine->done_task, aspeed_hace_crypto_done_task,
184 (unsigned long)hace_dev);
186 /* Allocate DMA buffer for hash engine input used */
187 hash_engine->ahash_src_addr =
188 dmam_alloc_coherent(&pdev->dev,
189 ASPEED_HASH_SRC_DMA_BUF_LEN,
190 &hash_engine->ahash_src_dma_addr,
192 if (!hash_engine->ahash_src_addr) {
193 dev_err(&pdev->dev, "Failed to allocate dma buffer\n");
195 goto err_engine_crypto_start;
198 /* Allocate DMA buffer for crypto engine context used */
199 crypto_engine->cipher_ctx =
200 dmam_alloc_coherent(&pdev->dev,
202 &crypto_engine->cipher_ctx_dma,
204 if (!crypto_engine->cipher_ctx) {
205 dev_err(&pdev->dev, "Failed to allocate cipher ctx dma\n");
207 goto err_engine_crypto_start;
210 /* Allocate DMA buffer for crypto engine input used */
211 crypto_engine->cipher_addr =
212 dmam_alloc_coherent(&pdev->dev,
213 ASPEED_CRYPTO_SRC_DMA_BUF_LEN,
214 &crypto_engine->cipher_dma_addr,
216 if (!crypto_engine->cipher_addr) {
217 dev_err(&pdev->dev, "Failed to allocate cipher addr dma\n");
219 goto err_engine_crypto_start;
222 /* Allocate DMA buffer for crypto engine output used */
223 if (hace_dev->version == AST2600_VERSION) {
224 crypto_engine->dst_sg_addr =
225 dmam_alloc_coherent(&pdev->dev,
226 ASPEED_CRYPTO_DST_DMA_BUF_LEN,
227 &crypto_engine->dst_sg_dma_addr,
229 if (!crypto_engine->dst_sg_addr) {
230 dev_err(&pdev->dev, "Failed to allocate dst_sg dma\n");
232 goto err_engine_crypto_start;
236 aspeed_hace_register(hace_dev);
238 dev_info(&pdev->dev, "Aspeed Crypto Accelerator successfully registered\n");
242 err_engine_crypto_start:
243 crypto_engine_exit(hace_dev->crypt_engine_crypto);
244 err_engine_hash_start:
245 crypto_engine_exit(hace_dev->crypt_engine_hash);
247 clk_disable_unprepare(hace_dev->clk);
252 static int aspeed_hace_remove(struct platform_device *pdev)
254 struct aspeed_hace_dev *hace_dev = platform_get_drvdata(pdev);
255 struct aspeed_engine_crypto *crypto_engine = &hace_dev->crypto_engine;
256 struct aspeed_engine_hash *hash_engine = &hace_dev->hash_engine;
258 aspeed_hace_unregister(hace_dev);
260 crypto_engine_exit(hace_dev->crypt_engine_hash);
261 crypto_engine_exit(hace_dev->crypt_engine_crypto);
263 tasklet_kill(&hash_engine->done_task);
264 tasklet_kill(&crypto_engine->done_task);
266 clk_disable_unprepare(hace_dev->clk);
271 MODULE_DEVICE_TABLE(of, aspeed_hace_of_matches);
273 static struct platform_driver aspeed_hace_driver = {
274 .probe = aspeed_hace_probe,
275 .remove = aspeed_hace_remove,
277 .name = KBUILD_MODNAME,
278 .of_match_table = aspeed_hace_of_matches,
282 module_platform_driver(aspeed_hace_driver);
285 MODULE_DESCRIPTION("Aspeed HACE driver Crypto Accelerator");
286 MODULE_LICENSE("GPL");