mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
46c5338db7
The cortina/gemini SL3516 SoC has a crypto IP name either (crypto engine/crypto acceleration engine in the datasheet). It support many algorithms like [AES|DES|3DES][ECB|CBC], SHA1, MD5 and some HMAC. This patch adds the core files and support for ecb(aes) and the RNG. Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
61 lines
1.2 KiB
C
61 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* sl3516-ce-rng.c - hardware cryptographic offloader for SL3516 SoC.
|
|
*
|
|
* Copyright (C) 2021 Corentin Labbe <clabbe@baylibre.com>
|
|
*
|
|
* This file handle the RNG found in the SL3516 crypto engine
|
|
*/
|
|
#include "sl3516-ce.h"
|
|
#include <linux/pm_runtime.h>
|
|
#include <linux/hw_random.h>
|
|
|
|
static int sl3516_ce_rng_read(struct hwrng *rng, void *buf, size_t max, bool wait)
|
|
{
|
|
struct sl3516_ce_dev *ce;
|
|
u32 *data = buf;
|
|
size_t read = 0;
|
|
int err;
|
|
|
|
ce = container_of(rng, struct sl3516_ce_dev, trng);
|
|
|
|
#ifdef CONFIG_CRYPTO_DEV_SL3516_DEBUG
|
|
ce->hwrng_stat_req++;
|
|
ce->hwrng_stat_bytes += max;
|
|
#endif
|
|
|
|
err = pm_runtime_get_sync(ce->dev);
|
|
if (err < 0) {
|
|
pm_runtime_put_noidle(ce->dev);
|
|
return err;
|
|
}
|
|
|
|
while (read < max) {
|
|
*data = readl(ce->base + IPSEC_RAND_NUM_REG);
|
|
data++;
|
|
read += 4;
|
|
}
|
|
|
|
pm_runtime_put(ce->dev);
|
|
|
|
return read;
|
|
}
|
|
|
|
int sl3516_ce_rng_register(struct sl3516_ce_dev *ce)
|
|
{
|
|
int ret;
|
|
|
|
ce->trng.name = "SL3516 Crypto Engine RNG";
|
|
ce->trng.read = sl3516_ce_rng_read;
|
|
ce->trng.quality = 700;
|
|
|
|
ret = hwrng_register(&ce->trng);
|
|
if (ret)
|
|
dev_err(ce->dev, "Fail to register the RNG\n");
|
|
return ret;
|
|
}
|
|
|
|
void sl3516_ce_rng_unregister(struct sl3516_ce_dev *ce)
|
|
{
|
|
hwrng_unregister(&ce->trng);
|
|
}
|