Commit 36211890 authored by Benoît Thébaudeau's avatar Benoît Thébaudeau Committed by Herbert Xu

hwrng: mxc-rnga - fix data_present API

Commit 45001e92, which added support for RNGA, ignored the previous commit
984e976f, which changed the data_present API.

Cc: Matt Mackall <mpm@selenic.com>
Cc: Sascha Hauer <kernel@pengutronix.de>
Cc: Alan Carvalho de Assis <acassis@gmail.com>
Cc: <linux-arm-kernel@lists.infradead.org>
Signed-off-by: default avatarBenoît Thébaudeau <benoit.thebaudeau@advansee.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 39871037
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/hw_random.h> #include <linux/hw_random.h>
#include <linux/delay.h>
#include <linux/io.h> #include <linux/io.h>
/* RNGA Registers */ /* RNGA Registers */
...@@ -60,16 +61,20 @@ ...@@ -60,16 +61,20 @@
static struct platform_device *rng_dev; static struct platform_device *rng_dev;
static int mxc_rnga_data_present(struct hwrng *rng) static int mxc_rnga_data_present(struct hwrng *rng, int wait)
{ {
int level;
void __iomem *rng_base = (void __iomem *)rng->priv; void __iomem *rng_base = (void __iomem *)rng->priv;
int i;
/* how many random numbers is in FIFO? [0-16] */
level = ((__raw_readl(rng_base + RNGA_STATUS) & for (i = 0; i < 20; i++) {
RNGA_STATUS_LEVEL_MASK) >> 8); /* how many random numbers are in FIFO? [0-16] */
int level = (__raw_readl(rng_base + RNGA_STATUS) &
return level > 0 ? 1 : 0; RNGA_STATUS_LEVEL_MASK) >> 8;
if (level || !wait)
return !!level;
udelay(10);
}
return 0;
} }
static int mxc_rnga_data_read(struct hwrng *rng, u32 * data) static int mxc_rnga_data_read(struct hwrng *rng, u32 * data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment