mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
903e6ada01
Move to drivers/char/hw_random since histb-(t)rng does not provide cryptography pseudo rng. histb-rng is pretty like hisi-rng, but after investigation, we confirm there is no RNG_PHY_SEED register on histb-rng so a separate driver is needed. Still we rename relevant function names to match those in hisi-rng. Link: https://lore.kernel.org/r/20230401164448.1393336-1-mmyangfl@gmail.com Signed-off-by: David Yang <mmyangfl@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
9 lines
333 B
Makefile
9 lines
333 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_HPRE) += hpre/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_SEC) += sec/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_SEC2) += sec2/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_QM) += hisi_qm.o
|
|
hisi_qm-objs = qm.o sgl.o debugfs.o
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_ZIP) += zip/
|
|
obj-$(CONFIG_CRYPTO_DEV_HISI_TRNG) += trng/
|