dm: rng: Add random number generator(rng) uclass
authorSughosh Ganu <sughosh.ganu@linaro.org>
Sat, 28 Dec 2019 18:28:27 +0000 (23:58 +0530)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 7 Jan 2020 17:08:21 +0000 (18:08 +0100)
Add a uclass for reading a random number seed from a random number
generator device.

Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/Kconfig
drivers/Makefile
drivers/rng/Kconfig [new file with mode: 0644]
drivers/rng/Makefile [new file with mode: 0644]
drivers/rng/rng-uclass.c [new file with mode: 0644]
include/dm/uclass-id.h
include/rng.h [new file with mode: 0644]

index 9d99ce022619bf23e7dbed668218613cc9d4722c..e34a22708c3ff08ceac7db2011c8dfbc1d323ea4 100644 (file)
@@ -90,6 +90,8 @@ source "drivers/remoteproc/Kconfig"
 
 source "drivers/reset/Kconfig"
 
+source "drivers/rng/Kconfig"
+
 source "drivers/rtc/Kconfig"
 
 source "drivers/scsi/Kconfig"
index cb8c215e76700b873ea331cb2ab47ce1bec48f2f..8eec4e8176c0cfb29fdd2fc011745d8bc54df2ed 100644 (file)
@@ -116,4 +116,5 @@ obj-$(CONFIG_W1_EEPROM) += w1-eeprom/
 
 obj-$(CONFIG_MACH_PIC32) += ddr/microchip/
 obj-$(CONFIG_DM_HWSPINLOCK) += hwspinlock/
+obj-$(CONFIG_DM_RNG) += rng/
 endif
diff --git a/drivers/rng/Kconfig b/drivers/rng/Kconfig
new file mode 100644 (file)
index 0000000..dd44cc0
--- /dev/null
@@ -0,0 +1,7 @@
+config DM_RNG
+       bool "Driver support for Random Number Generator devices"
+       depends on DM
+       help
+         Enable driver model for random number generator(rng) devices.
+         This interface is used to initialise the rng device and to
+         read the random seed from the device.
diff --git a/drivers/rng/Makefile b/drivers/rng/Makefile
new file mode 100644 (file)
index 0000000..311705b
--- /dev/null
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: GPL-2.0+
+#
+# Copyright (c) 2019, Linaro Limited
+#
+
+obj-$(CONFIG_DM_RNG) += rng-uclass.o
diff --git a/drivers/rng/rng-uclass.c b/drivers/rng/rng-uclass.c
new file mode 100644 (file)
index 0000000..b6af3b8
--- /dev/null
@@ -0,0 +1,23 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (c) 2019, Linaro Limited
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <rng.h>
+
+int dm_rng_read(struct udevice *dev, void *buffer, size_t size)
+{
+       const struct dm_rng_ops *ops = device_get_ops(dev);
+
+       if (!ops->read)
+               return -ENOSYS;
+
+       return ops->read(dev, buffer, size);
+}
+
+UCLASS_DRIVER(rng) = {
+       .name = "rng",
+       .id = UCLASS_RNG,
+};
index c1bab17ad115149d67b16c0051496fb3a5ace78e..67f5d673cb80bab17392bb2b9a3f3801932133af 100644 (file)
@@ -88,6 +88,7 @@ enum uclass_id {
        UCLASS_REGULATOR,       /* Regulator device */
        UCLASS_REMOTEPROC,      /* Remote Processor device */
        UCLASS_RESET,           /* Reset controller device */
+       UCLASS_RNG,             /* Random Number Generator */
        UCLASS_RTC,             /* Real time clock device */
        UCLASS_SCSI,            /* SCSI device */
        UCLASS_SERIAL,          /* Serial UART */
diff --git a/include/rng.h b/include/rng.h
new file mode 100644 (file)
index 0000000..d2c0f9a
--- /dev/null
@@ -0,0 +1,33 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (c) 2019, Linaro Limited
+ */
+
+#if !defined _RNG_H_
+#define _RNG_H_
+
+struct udevice;
+
+/**
+ * dm_rng_read() - read a random number seed from the rng device
+ * @buffer:    input buffer to put the read random seed into
+ * @size:      number of bytes of random seed read
+ *
+ * Return: 0 if OK, -ve on error
+ */
+int dm_rng_read(struct udevice *dev, void *buffer, size_t size);
+
+/* struct dm_rng_ops - Operations for the hwrng uclass */
+struct dm_rng_ops {
+       /**
+        * @read() - read a random number seed
+        *
+        * @data:       input buffer to read the random seed
+        * @max:        total number of bytes to read
+        *
+        * Return: 0 if OK, -ve on error
+        */
+       int (*read)(struct udevice *dev, void *data, size_t max);
+};
+
+#endif /* _RNG_H_ */