From: Jamie Gibbons <jamie.gibbons@microchip.com>
To: <u-boot@lists.denx.de>
Cc: Conor Dooley <conor.dooley@microchip.com>,
Valentina Fernandez Alanis
<valentina.fernandezalanis@microchip.com>,
Tom Rini <trini@konsulko.com>,
"Leo Yu-Chi Liang" <ycliang@andestech.com>,
Sughosh Ganu <sughosh.ganu@arm.com>,
Heinrich Schuchardt <xypron.glpk@gmx.de>,
Martin Herren <sputnik@on-the-web.ch>,
Michal Simek <michal.simek@amd.com>,
<jamie.gibbons@microchip.com>
Subject: [PATCH v2 3/6] rng: add Microchip PolarFire SoC hardware RNG driver
Date: Wed, 22 Jul 2026 16:45:46 +0100 [thread overview]
Message-ID: <20260722154602.3373184-4-jamie.gibbons@microchip.com> (raw)
In-Reply-To: <20260722154602.3373184-1-jamie.gibbons@microchip.com>
Add a U-Boot RNG driver for Microchip's PolarFire SoC (MPFS). The
hardware RNG is accessed indirectly via the MPFS system controller using
the mailbox interface.
The driver implements the UCLASS_RNG interface, requesting random data
from the system controller and returning it to the caller.
This allows use of the PolarFire SoC hardware RNG via the
standard 'rng' command and DM RNG API.
Signed-off-by: Jamie Gibbons <jamie.gibbons@microchip.com>
---
drivers/rng/Kconfig | 7 +++
drivers/rng/Makefile | 1 +
drivers/rng/mpfs_rng.c | 101 +++++++++++++++++++++++++++++++++++++++++
3 files changed, 109 insertions(+)
create mode 100644 drivers/rng/mpfs_rng.c
diff --git a/drivers/rng/Kconfig b/drivers/rng/Kconfig
index 19b2b707677..856ffda2f5e 100644
--- a/drivers/rng/Kconfig
+++ b/drivers/rng/Kconfig
@@ -23,6 +23,13 @@ config RNG_MESON
Enable support for hardware random number generator
of Amlogic Meson SoCs.
+config RNG_MPFS
+ tristate "Microchip PolarFire SoC Random Number Generator support"
+ depends on DM_RNG && MPFS_SYSCONTROLLER
+ help
+ Enable support for hardware random number generator
+ of Microchip's PolarFire SoCs.
+
config RNG_SANDBOX
bool "Sandbox random number generator"
depends on SANDBOX
diff --git a/drivers/rng/Makefile b/drivers/rng/Makefile
index 30c58272d41..50622d4705f 100644
--- a/drivers/rng/Makefile
+++ b/drivers/rng/Makefile
@@ -5,6 +5,7 @@
obj-$(CONFIG_$(PHASE_)DM_RNG) += rng-uclass.o
obj-$(CONFIG_RNG_MESON) += meson-rng.o
+obj-$(CONFIG_RNG_MPFS) += mpfs_rng.o
obj-$(CONFIG_RNG_SANDBOX) += sandbox_rng.o
obj-$(CONFIG_RNG_MSM) += msm_rng.o
obj-$(CONFIG_RNG_NPCM) += npcm_rng.o
diff --git a/drivers/rng/mpfs_rng.c b/drivers/rng/mpfs_rng.c
new file mode 100644
index 00000000000..820103a0202
--- /dev/null
+++ b/drivers/rng/mpfs_rng.c
@@ -0,0 +1,101 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Microchip's PolarFire SoC (MPFS) System Controller Driver
+ *
+ * Copyright (C) 2026 Microchip Technology Inc. All rights reserved.
+ *
+ * Author: Jamie Gibbons <jamie.gibbons@microchip.com>
+ *
+ */
+
+#include <dm.h>
+#include <dm/device.h>
+#include <dm/device_compat.h>
+#include <dm/devres.h>
+#include <linux/err.h>
+#include <linux/errno.h>
+#include <linux/io.h>
+#include <linux/printk.h>
+#include <mailbox.h>
+#include <malloc.h>
+#include <mpfs-mailbox.h>
+#include <rng.h>
+#include <string.h>
+
+#define CMD_OPCODE 0x21
+#define CMD_DATA_SIZE 0U
+#define CMD_DATA NULL
+#define MBOX_OFFSET 0U
+#define RESP_OFFSET 0U
+#define RNG_RESP_BYTES 32U
+
+/**
+ * struct mpfs_rng_priv - Structure representing System Controller data.
+ * @mpfs_syscontroller_priv: System Controller
+ */
+struct mpfs_rng_priv {
+ struct mpfs_syscontroller_priv *sys_controller;
+};
+
+static int mpfs_rng_read(struct udevice *dev, void *data, size_t len)
+{
+ struct mpfs_rng_priv *rng_priv = dev_get_priv(dev);
+ u32 response_msg[RNG_RESP_BYTES / sizeof(u32)];
+ size_t count = 0, copy_size;
+ int ret;
+
+ struct mpfs_mss_response response = {
+ .resp_status = 0U,
+ .resp_msg = (u32 *)response_msg,
+ .resp_size = RNG_RESP_BYTES,
+ };
+ struct mpfs_mss_msg msg = {
+ .cmd_opcode = CMD_OPCODE,
+ .cmd_data_size = CMD_DATA_SIZE,
+ .response = &response,
+ .cmd_data = CMD_DATA,
+ .mbox_offset = MBOX_OFFSET,
+ .resp_offset = RESP_OFFSET,
+ };
+
+ while (count < len) {
+ ret = mpfs_syscontroller_run_service(rng_priv->sys_controller, &msg);
+ if (ret)
+ return ret;
+
+ ret = mpfs_syscontroller_recv_response(rng_priv->sys_controller, &msg, 1000);
+ if (ret)
+ return ret;
+
+ copy_size = (len - count > RNG_RESP_BYTES) ? RNG_RESP_BYTES : (len - count);
+ memcpy((u8 *)data + count, response_msg, copy_size);
+ count += copy_size;
+ }
+
+ return 0;
+}
+
+static int mpfs_rng_probe(struct udevice *dev)
+{
+ struct mpfs_rng_priv *rng_priv = dev_get_priv(dev);
+
+ rng_priv->sys_controller = mpfs_syscontroller_get(dev->parent);
+ if (IS_ERR(rng_priv->sys_controller)) {
+ dev_err(dev, "Failed to get system controller\n");
+ return PTR_ERR(rng_priv->sys_controller);
+ }
+
+ return 0;
+}
+
+static const struct dm_rng_ops mpfs_rng_ops = {
+ .read = mpfs_rng_read,
+};
+
+U_BOOT_DRIVER(mpfs_rng) = {
+ .name = "mpfs_rng",
+ .id = UCLASS_RNG,
+ .probe = mpfs_rng_probe,
+ .priv_auto = sizeof(struct mpfs_rng_priv),
+ .ops = &mpfs_rng_ops,
+};
--
2.43.0
next prev parent reply other threads:[~2026-07-23 0:52 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-22 15:45 [PATCH v2 0/6] MPFS: add hardware RNG support and fix RNG consumers Jamie Gibbons
2026-07-22 15:45 ` [PATCH v2 1/6] misc: mpfs_syscontroller: add mailbox RX helper for service responses Jamie Gibbons
2026-07-22 15:45 ` [PATCH v2 2/6] misc: mpfs_syscontroller: bind RNG sub-device Jamie Gibbons
2026-07-22 15:45 ` Jamie Gibbons [this message]
2026-07-27 7:14 ` [PATCH v2 3/6] rng: add Microchip PolarFire SoC hardware RNG driver Leo Liang via U-Boot
2026-07-27 8:12 ` Jamie.Gibbons--- via U-Boot
2026-07-28 7:59 ` Leo Liang via U-Boot
2026-07-22 15:45 ` [PATCH v2 4/6] configs: microchip_mpfs_generic: enable MPFS RNG support Jamie Gibbons
2026-07-27 7:14 ` Leo Liang via U-Boot
2026-07-22 15:45 ` [PATCH v2 5/6] mailbox: mpfs-mbox: replace unbounded BUSY polling with bounded waits Jamie Gibbons
2026-07-22 15:45 ` [PATCH v2 6/6] mailbox: mpfs: add bounded wait for BUSY to clear before sending request Jamie Gibbons
2026-07-28 8:12 ` [PATCH v2 0/6] MPFS: add hardware RNG support and fix RNG consumers Leo Liang via U-Boot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260722154602.3373184-4-jamie.gibbons@microchip.com \
--to=jamie.gibbons@microchip.com \
--cc=conor.dooley@microchip.com \
--cc=michal.simek@amd.com \
--cc=sputnik@on-the-web.ch \
--cc=sughosh.ganu@arm.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=valentina.fernandezalanis@microchip.com \
--cc=xypron.glpk@gmx.de \
--cc=ycliang@andestech.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.