#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/hw_random.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#define ST_RNG_STATUS_REG …
#define ST_RNG_DATA_REG …
#define ST_RNG_STATUS_BAD_SEQUENCE …
#define ST_RNG_STATUS_BAD_ALTERNANCE …
#define ST_RNG_STATUS_FIFO_FULL …
#define ST_RNG_SAMPLE_SIZE …
#define ST_RNG_FIFO_DEPTH …
#define ST_RNG_FIFO_SIZE …
#define ST_RNG_FILL_FIFO_TIMEOUT …
struct st_rng_data { … };
static int st_rng_read(struct hwrng *rng, void *data, size_t max, bool wait)
{ … }
static int st_rng_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id st_rng_match[] __maybe_unused = …;
MODULE_DEVICE_TABLE(of, st_rng_match);
static struct platform_driver st_rng_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;