From: jamie@jamieiles.com (Jamie Iles)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/2] hw_random: add driver for atmel true hardware random number generator
Date: Thu, 6 Oct 2011 17:02:00 +0100 [thread overview]
Message-ID: <20111006160200.GF1931@totoro> (raw)
In-Reply-To: <1317915694-27564-2-git-send-email-jacmet@sunsite.dk>
Hi Peter,
A couple of minor nits inline, but otherwise looks nice to me!
Jamie
On Thu, Oct 06, 2011 at 05:41:34PM +0200, Peter Korsgaard wrote:
> diff --git a/drivers/char/hw_random/atmel-rng.c b/drivers/char/hw_random/atmel-rng.c
> new file mode 100644
> index 0000000..c69eccb
> --- /dev/null
> +++ b/drivers/char/hw_random/atmel-rng.c
> @@ -0,0 +1,168 @@
> +/*
> + * Copyright (c) 2011 Peter Korsgaard <jacmet@sunsite.dk>
> + *
> + * This file is licensed under the terms of the GNU General Public
> + * License version 2. This program is licensed "as is" without any
> + * warranty of any kind, whether express or implied.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/slab.h>
> +#include <linux/err.h>
> +#include <linux/clk.h>
> +#include <linux/io.h>
> +#include <linux/hw_random.h>
> +#include <linux/platform_device.h>
> +
> +#define TRNG_CR 0x00
> +#define TRNG_ISR 0x1c
> +#define TRNG_ODATA 0x50
> +
> +#define TRNG_KEY 0x524e4700 /* RNG */
> +
> +struct atmel_trng {
> + struct clk *clk;
> + void __iomem *base;
> +};
> +
> +static int atmel_trng_read(struct hwrng *rng, void *buf, size_t max,
> + bool wait)
> +{
> + struct atmel_trng *trng = (struct atmel_trng *)rng->priv;
> + u32 *data = buf;
> +
> + /* data ready? */
> + if (readl(trng->base + TRNG_ODATA) & 1) {
> + *data = readl(trng->base + TRNG_ODATA);
> + return 4;
> + } else
> + return 0;
> +}
> +
> +static struct hwrng atmel_trng = {
> + .name = "atmel-trng",
> + .read = atmel_trng_read,
> +};
Could you do:
struct atmel_trng {
struct clk *clk;
void __iomem *base;
struct hwrng rng;
};
#define to_atmel_trng(rng) \
container_of(rng, struct amtel_trng, rng)
which would allow you to support more than one TRNG (although unlikely)
but also means you don't need the cast for priv.
> +static int atmel_trng_probe(struct platform_device *pdev)
> +{
> + struct atmel_trng *trng;
> + struct resource *res;
> + int ret;
> +
> + if (atmel_trng.priv) {
> + dev_err(&pdev->dev, "multiple instances not supported\n");
> + return -EBUSY;
> + }
> +
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + if (!res)
> + return -EINVAL;
> +
> + trng = devm_kzalloc(&pdev->dev, sizeof(*trng), GFP_KERNEL);
> + if (!trng)
> + return -ENOMEM;
> +
> + if (!devm_request_mem_region(&pdev->dev, res->start,
> + resource_size(res), pdev->name))
> + return -EBUSY;
> +
> + trng->base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
> + if (!trng->base)
> + return -EBUSY;
> +
> + trng->clk = clk_get(&pdev->dev, NULL);
> + if (IS_ERR(trng->clk))
> + return PTR_ERR(trng->clk);
> +
> + ret = clk_enable(trng->clk);
> + if (ret)
> + goto err_enable;
> +
> + writel(TRNG_KEY | 1, trng->base + TRNG_CR);
> +
> + atmel_trng.priv = (unsigned long)trng;
> +
> + ret = hwrng_register(&atmel_trng);
> + if (ret)
> + goto err_register;
> +
> + platform_set_drvdata(pdev, trng);
> +
> + return 0;
> +
> +err_register:
> + atmel_trng.priv = 0;
> + clk_disable(trng->clk);
> +err_enable:
> + clk_put(trng->clk);
> +
> + return ret;
> +}
> +
> +static int __devexit atmel_trng_remove(struct platform_device *pdev)
> +{
> + struct atmel_trng *trng = platform_get_drvdata(pdev);
> +
> + hwrng_unregister(&atmel_trng);
> +
> + writel(TRNG_KEY, trng->base + TRNG_CR);
> + clk_disable(trng->clk);
> + clk_put(trng->clk);
> +
> + atmel_trng.priv = 0;
I think this should have a platform_set_drvdata(pdev, NULL) too.
next prev parent reply other threads:[~2011-10-06 16:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-06 15:41 [PATCH 1/2] sam9g45: add trng clock and platform device Peter Korsgaard
2011-10-06 15:41 ` [PATCH 2/2] hw_random: add driver for atmel true hardware random number generator Peter Korsgaard
2011-10-06 15:49 ` Mark Brown
2011-10-06 15:55 ` Peter Korsgaard
2011-10-06 16:02 ` Jamie Iles [this message]
2011-10-06 17:53 ` Peter Korsgaard
2011-10-07 10:09 ` [PATCH 1/2] sam9g45: add trng clock and platform device Nicolas Ferre
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=20111006160200.GF1931@totoro \
--to=jamie@jamieiles.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).