omap-rng.c 4.9 KB
Newer Older
1
/*
D
David Brownell 已提交
2
 * omap-rng.c - RNG driver for TI OMAP CPU family
3 4 5 6 7 8 9 10
 *
 * Author: Deepak Saxena <dsaxena@plexity.net>
 *
 * Copyright 2005 (c) MontaVista Software, Inc.
 *
 * Mostly based on original driver:
 *
 * Copyright (C) 2005 Nokia Corporation
11
 * Author: Juha Yrjölä <juha.yrjola@nokia.com>
12 13 14 15 16 17 18 19 20
 *
 * 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/module.h>
#include <linux/init.h>
#include <linux/random.h>
D
David Brownell 已提交
21
#include <linux/clk.h>
22
#include <linux/err.h>
D
David Brownell 已提交
23
#include <linux/platform_device.h>
24
#include <linux/hw_random.h>
25
#include <linux/delay.h>
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48

#include <asm/io.h>

#define RNG_OUT_REG		0x00		/* Output register */
#define RNG_STAT_REG		0x04		/* Status register
							[0] = STAT_BUSY */
#define RNG_ALARM_REG		0x24		/* Alarm register
							[7:0] = ALARM_COUNTER */
#define RNG_CONFIG_REG		0x28		/* Configuration register
							[11:6] = RESET_COUNT
							[5:3]  = RING2_DELAY
							[2:0]  = RING1_DELAY */
#define RNG_REV_REG		0x3c		/* Revision register
							[7:0] = REV_NB */
#define RNG_MASK_REG		0x40		/* Mask and reset register
							[2] = IT_EN
							[1] = SOFTRESET
							[0] = AUTOIDLE */
#define RNG_SYSSTATUS		0x44		/* System status
							[0] = RESETDONE */

static void __iomem *rng_base;
static struct clk *rng_ick;
D
David Brownell 已提交
49
static struct platform_device *rng_dev;
50

D
David Brownell 已提交
51
static inline u32 omap_rng_read_reg(int reg)
52 53 54 55
{
	return __raw_readl(rng_base + reg);
}

D
David Brownell 已提交
56
static inline void omap_rng_write_reg(int reg, u32 val)
57 58 59 60
{
	__raw_writel(val, rng_base + reg);
}

61
static int omap_rng_data_present(struct hwrng *rng, int wait)
62
{
63 64 65 66 67 68
	int data, i;

	for (i = 0; i < 20; i++) {
		data = omap_rng_read_reg(RNG_STAT_REG) ? 0 : 1;
		if (data || !wait)
			break;
D
David Brownell 已提交
69 70 71 72 73
		/* RNG produces data fast enough (2+ MBit/sec, even
		 * during "rngtest" loads, that these delays don't
		 * seem to trigger.  We *could* use the RNG IRQ, but
		 * that'd be higher overhead ... so why bother?
		 */
74 75 76
		udelay(10);
	}
	return data;
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
}

static int omap_rng_data_read(struct hwrng *rng, u32 *data)
{
	*data = omap_rng_read_reg(RNG_OUT_REG);

	return 4;
}

static struct hwrng omap_rng_ops = {
	.name		= "omap",
	.data_present	= omap_rng_data_present,
	.data_read	= omap_rng_data_read,
};

D
David Brownell 已提交
92
static int __init omap_rng_probe(struct platform_device *pdev)
93 94 95 96 97 98 99 100
{
	struct resource *res, *mem;
	int ret;

	/*
	 * A bit ugly, and it will never actually happen but there can
	 * be only one RNG and this catches any bork
	 */
D
David Brownell 已提交
101 102
	if (rng_dev)
		return -EBUSY;
103

D
David Brownell 已提交
104
	if (cpu_is_omap24xx()) {
105
		rng_ick = clk_get(&pdev->dev, "ick");
106
		if (IS_ERR(rng_ick)) {
D
David Brownell 已提交
107
			dev_err(&pdev->dev, "Could not get rng_ick\n");
108 109
			ret = PTR_ERR(rng_ick);
			return ret;
D
David Brownell 已提交
110 111
		} else
			clk_enable(rng_ick);
112 113 114 115 116 117 118 119 120
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);

	if (!res)
		return -ENOENT;

	mem = request_mem_region(res->start, res->end - res->start + 1,
				 pdev->name);
121 122 123 124
	if (mem == NULL) {
		ret = -EBUSY;
		goto err_region;
	}
125

D
David Brownell 已提交
126
	dev_set_drvdata(&pdev->dev, mem);
127 128 129 130 131
	rng_base = ioremap(res->start, res->end - res->start + 1);
	if (!rng_base) {
		ret = -ENOMEM;
		goto err_ioremap;
	}
132 133

	ret = hwrng_register(&omap_rng_ops);
134 135
	if (ret)
		goto err_register;
136

D
David Brownell 已提交
137
	dev_info(&pdev->dev, "OMAP Random Number Generator ver. %02x\n",
138 139 140
		omap_rng_read_reg(RNG_REV_REG));
	omap_rng_write_reg(RNG_MASK_REG, 0x1);

D
David Brownell 已提交
141
	rng_dev = pdev;
142 143

	return 0;
144 145 146 147 148 149 150 151 152 153 154 155

err_register:
	iounmap(rng_base);
	rng_base = NULL;
err_ioremap:
	release_resource(mem);
err_region:
	if (cpu_is_omap24xx()) {
		clk_disable(rng_ick);
		clk_put(rng_ick);
	}
	return ret;
156 157
}

D
David Brownell 已提交
158
static int __exit omap_rng_remove(struct platform_device *pdev)
159
{
D
David Brownell 已提交
160
	struct resource *mem = dev_get_drvdata(&pdev->dev);
161 162 163 164 165

	hwrng_unregister(&omap_rng_ops);

	omap_rng_write_reg(RNG_MASK_REG, 0x0);

166 167
	iounmap(rng_base);

168
	if (cpu_is_omap24xx()) {
D
David Brownell 已提交
169
		clk_disable(rng_ick);
170 171 172 173 174 175 176 177 178 179 180
		clk_put(rng_ick);
	}

	release_resource(mem);
	rng_base = NULL;

	return 0;
}

#ifdef CONFIG_PM

D
David Brownell 已提交
181
static int omap_rng_suspend(struct platform_device *pdev, pm_message_t message)
182 183 184 185 186
{
	omap_rng_write_reg(RNG_MASK_REG, 0x0);
	return 0;
}

D
David Brownell 已提交
187
static int omap_rng_resume(struct platform_device *pdev)
188 189
{
	omap_rng_write_reg(RNG_MASK_REG, 0x1);
D
David Brownell 已提交
190
	return 0;
191 192 193 194 195 196 197 198 199
}

#else

#define	omap_rng_suspend	NULL
#define	omap_rng_resume		NULL

#endif

D
David Brownell 已提交
200 201
/* work with hotplug and coldplug */
MODULE_ALIAS("platform:omap_rng");
202

D
David Brownell 已提交
203 204 205 206 207
static struct platform_driver omap_rng_driver = {
	.driver = {
		.name		= "omap_rng",
		.owner		= THIS_MODULE,
	},
208 209 210 211 212 213 214 215 216 217 218
	.probe		= omap_rng_probe,
	.remove		= __exit_p(omap_rng_remove),
	.suspend	= omap_rng_suspend,
	.resume		= omap_rng_resume
};

static int __init omap_rng_init(void)
{
	if (!cpu_is_omap16xx() && !cpu_is_omap24xx())
		return -ENODEV;

D
David Brownell 已提交
219
	return platform_driver_register(&omap_rng_driver);
220 221 222 223
}

static void __exit omap_rng_exit(void)
{
D
David Brownell 已提交
224
	platform_driver_unregister(&omap_rng_driver);
225 226 227 228 229 230 231
}

module_init(omap_rng_init);
module_exit(omap_rng_exit);

MODULE_AUTHOR("Deepak Saxena (and others)");
MODULE_LICENSE("GPL");