| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 1 | /* | 
| David Brownell | c49a7f1 | 2008-04-16 19:24:42 +0800 | [diff] [blame] | 2 | * omap-rng.c - RNG driver for TI OMAP CPU family | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 3 | * | 
|  | 4 | * Author: Deepak Saxena <dsaxena@plexity.net> | 
|  | 5 | * | 
|  | 6 | * Copyright 2005 (c) MontaVista Software, Inc. | 
|  | 7 | * | 
|  | 8 | * Mostly based on original driver: | 
|  | 9 | * | 
|  | 10 | * Copyright (C) 2005 Nokia Corporation | 
| Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 11 | * Author: Juha Yrjölä <juha.yrjola@nokia.com> | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 12 | * | 
|  | 13 | * This file is licensed under  the terms of the GNU General Public | 
|  | 14 | * License version 2. This program is licensed "as is" without any | 
|  | 15 | * warranty of any kind, whether express or implied. | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 16 | */ | 
|  | 17 |  | 
|  | 18 | #include <linux/module.h> | 
|  | 19 | #include <linux/init.h> | 
|  | 20 | #include <linux/random.h> | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 21 | #include <linux/clk.h> | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 22 | #include <linux/err.h> | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 23 | #include <linux/platform_device.h> | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 24 | #include <linux/hw_random.h> | 
| Patrick McHardy | 984e976 | 2007-11-21 12:24:45 +0800 | [diff] [blame] | 25 | #include <linux/delay.h> | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 26 |  | 
|  | 27 | #include <asm/io.h> | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 28 |  | 
|  | 29 | #define RNG_OUT_REG		0x00		/* Output register */ | 
|  | 30 | #define RNG_STAT_REG		0x04		/* Status register | 
|  | 31 | [0] = STAT_BUSY */ | 
|  | 32 | #define RNG_ALARM_REG		0x24		/* Alarm register | 
|  | 33 | [7:0] = ALARM_COUNTER */ | 
|  | 34 | #define RNG_CONFIG_REG		0x28		/* Configuration register | 
|  | 35 | [11:6] = RESET_COUNT | 
|  | 36 | [5:3]  = RING2_DELAY | 
|  | 37 | [2:0]  = RING1_DELAY */ | 
|  | 38 | #define RNG_REV_REG		0x3c		/* Revision register | 
|  | 39 | [7:0] = REV_NB */ | 
|  | 40 | #define RNG_MASK_REG		0x40		/* Mask and reset register | 
|  | 41 | [2] = IT_EN | 
|  | 42 | [1] = SOFTRESET | 
|  | 43 | [0] = AUTOIDLE */ | 
|  | 44 | #define RNG_SYSSTATUS		0x44		/* System status | 
|  | 45 | [0] = RESETDONE */ | 
|  | 46 |  | 
|  | 47 | static void __iomem *rng_base; | 
|  | 48 | static struct clk *rng_ick; | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 49 | static struct platform_device *rng_dev; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 50 |  | 
| David Brownell | c49a7f1 | 2008-04-16 19:24:42 +0800 | [diff] [blame] | 51 | static inline u32 omap_rng_read_reg(int reg) | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 52 | { | 
|  | 53 | return __raw_readl(rng_base + reg); | 
|  | 54 | } | 
|  | 55 |  | 
| David Brownell | c49a7f1 | 2008-04-16 19:24:42 +0800 | [diff] [blame] | 56 | static inline void omap_rng_write_reg(int reg, u32 val) | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 57 | { | 
|  | 58 | __raw_writel(val, rng_base + reg); | 
|  | 59 | } | 
|  | 60 |  | 
| Patrick McHardy | 984e976 | 2007-11-21 12:24:45 +0800 | [diff] [blame] | 61 | static int omap_rng_data_present(struct hwrng *rng, int wait) | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 62 | { | 
| Patrick McHardy | 984e976 | 2007-11-21 12:24:45 +0800 | [diff] [blame] | 63 | int data, i; | 
|  | 64 |  | 
|  | 65 | for (i = 0; i < 20; i++) { | 
|  | 66 | data = omap_rng_read_reg(RNG_STAT_REG) ? 0 : 1; | 
|  | 67 | if (data || !wait) | 
|  | 68 | break; | 
| David Brownell | c49a7f1 | 2008-04-16 19:24:42 +0800 | [diff] [blame] | 69 | /* RNG produces data fast enough (2+ MBit/sec, even | 
|  | 70 | * during "rngtest" loads, that these delays don't | 
|  | 71 | * seem to trigger.  We *could* use the RNG IRQ, but | 
|  | 72 | * that'd be higher overhead ... so why bother? | 
|  | 73 | */ | 
| Patrick McHardy | 984e976 | 2007-11-21 12:24:45 +0800 | [diff] [blame] | 74 | udelay(10); | 
|  | 75 | } | 
|  | 76 | return data; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 77 | } | 
|  | 78 |  | 
|  | 79 | static int omap_rng_data_read(struct hwrng *rng, u32 *data) | 
|  | 80 | { | 
|  | 81 | *data = omap_rng_read_reg(RNG_OUT_REG); | 
|  | 82 |  | 
|  | 83 | return 4; | 
|  | 84 | } | 
|  | 85 |  | 
|  | 86 | static struct hwrng omap_rng_ops = { | 
|  | 87 | .name		= "omap", | 
|  | 88 | .data_present	= omap_rng_data_present, | 
|  | 89 | .data_read	= omap_rng_data_read, | 
|  | 90 | }; | 
|  | 91 |  | 
| Uwe Kleine-König | 9f171ad | 2009-03-29 15:47:06 +0800 | [diff] [blame] | 92 | static int __devinit omap_rng_probe(struct platform_device *pdev) | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 93 | { | 
| Julia Lawall | c652759 | 2011-02-16 13:05:54 +1100 | [diff] [blame] | 94 | struct resource *res; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 95 | int ret; | 
|  | 96 |  | 
|  | 97 | /* | 
|  | 98 | * A bit ugly, and it will never actually happen but there can | 
|  | 99 | * be only one RNG and this catches any bork | 
|  | 100 | */ | 
| David Brownell | c49a7f1 | 2008-04-16 19:24:42 +0800 | [diff] [blame] | 101 | if (rng_dev) | 
|  | 102 | return -EBUSY; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 103 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 104 | if (cpu_is_omap24xx()) { | 
| Russell King | eeec7c8 | 2009-01-19 20:58:56 +0000 | [diff] [blame] | 105 | rng_ick = clk_get(&pdev->dev, "ick"); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 106 | if (IS_ERR(rng_ick)) { | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 107 | dev_err(&pdev->dev, "Could not get rng_ick\n"); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 108 | ret = PTR_ERR(rng_ick); | 
|  | 109 | return ret; | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 110 | } else | 
|  | 111 | clk_enable(rng_ick); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 112 | } | 
|  | 113 |  | 
|  | 114 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
|  | 115 |  | 
| Julia Lawall | 6ba1a31 | 2011-06-08 20:59:38 +0800 | [diff] [blame] | 116 | if (!res) { | 
|  | 117 | ret = -ENOENT; | 
|  | 118 | goto err_region; | 
|  | 119 | } | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 120 |  | 
| Julia Lawall | c652759 | 2011-02-16 13:05:54 +1100 | [diff] [blame] | 121 | if (!request_mem_region(res->start, resource_size(res), pdev->name)) { | 
| Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 122 | ret = -EBUSY; | 
|  | 123 | goto err_region; | 
|  | 124 | } | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 125 |  | 
| Julia Lawall | c652759 | 2011-02-16 13:05:54 +1100 | [diff] [blame] | 126 | dev_set_drvdata(&pdev->dev, res); | 
| Tobias Klauser | 0fd92a1 | 2009-09-24 16:23:18 -0700 | [diff] [blame] | 127 | rng_base = ioremap(res->start, resource_size(res)); | 
| Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 128 | if (!rng_base) { | 
|  | 129 | ret = -ENOMEM; | 
|  | 130 | goto err_ioremap; | 
|  | 131 | } | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 132 |  | 
|  | 133 | ret = hwrng_register(&omap_rng_ops); | 
| Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 134 | if (ret) | 
|  | 135 | goto err_register; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 136 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 137 | dev_info(&pdev->dev, "OMAP Random Number Generator ver. %02x\n", | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 138 | omap_rng_read_reg(RNG_REV_REG)); | 
|  | 139 | omap_rng_write_reg(RNG_MASK_REG, 0x1); | 
|  | 140 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 141 | rng_dev = pdev; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 142 |  | 
|  | 143 | return 0; | 
| Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 144 |  | 
|  | 145 | err_register: | 
|  | 146 | iounmap(rng_base); | 
|  | 147 | rng_base = NULL; | 
|  | 148 | err_ioremap: | 
| Julia Lawall | c652759 | 2011-02-16 13:05:54 +1100 | [diff] [blame] | 149 | release_mem_region(res->start, resource_size(res)); | 
| Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 150 | err_region: | 
|  | 151 | if (cpu_is_omap24xx()) { | 
|  | 152 | clk_disable(rng_ick); | 
|  | 153 | clk_put(rng_ick); | 
|  | 154 | } | 
|  | 155 | return ret; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 156 | } | 
|  | 157 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 158 | static int __exit omap_rng_remove(struct platform_device *pdev) | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 159 | { | 
| Julia Lawall | c652759 | 2011-02-16 13:05:54 +1100 | [diff] [blame] | 160 | struct resource *res = dev_get_drvdata(&pdev->dev); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 161 |  | 
|  | 162 | hwrng_unregister(&omap_rng_ops); | 
|  | 163 |  | 
|  | 164 | omap_rng_write_reg(RNG_MASK_REG, 0x0); | 
|  | 165 |  | 
| Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 166 | iounmap(rng_base); | 
|  | 167 |  | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 168 | if (cpu_is_omap24xx()) { | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 169 | clk_disable(rng_ick); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 170 | clk_put(rng_ick); | 
|  | 171 | } | 
|  | 172 |  | 
| Julia Lawall | c652759 | 2011-02-16 13:05:54 +1100 | [diff] [blame] | 173 | release_mem_region(res->start, resource_size(res)); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 174 | rng_base = NULL; | 
|  | 175 |  | 
|  | 176 | return 0; | 
|  | 177 | } | 
|  | 178 |  | 
|  | 179 | #ifdef CONFIG_PM | 
|  | 180 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 181 | static int omap_rng_suspend(struct platform_device *pdev, pm_message_t message) | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 182 | { | 
|  | 183 | omap_rng_write_reg(RNG_MASK_REG, 0x0); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 184 | return 0; | 
|  | 185 | } | 
|  | 186 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 187 | static int omap_rng_resume(struct platform_device *pdev) | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 188 | { | 
|  | 189 | omap_rng_write_reg(RNG_MASK_REG, 0x1); | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 190 | return 0; | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 191 | } | 
|  | 192 |  | 
|  | 193 | #else | 
|  | 194 |  | 
|  | 195 | #define	omap_rng_suspend	NULL | 
|  | 196 | #define	omap_rng_resume		NULL | 
|  | 197 |  | 
|  | 198 | #endif | 
|  | 199 |  | 
| David Brownell | c49a7f1 | 2008-04-16 19:24:42 +0800 | [diff] [blame] | 200 | /* work with hotplug and coldplug */ | 
|  | 201 | MODULE_ALIAS("platform:omap_rng"); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 202 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 203 | static struct platform_driver omap_rng_driver = { | 
|  | 204 | .driver = { | 
|  | 205 | .name		= "omap_rng", | 
|  | 206 | .owner		= THIS_MODULE, | 
|  | 207 | }, | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 208 | .probe		= omap_rng_probe, | 
|  | 209 | .remove		= __exit_p(omap_rng_remove), | 
|  | 210 | .suspend	= omap_rng_suspend, | 
|  | 211 | .resume		= omap_rng_resume | 
|  | 212 | }; | 
|  | 213 |  | 
|  | 214 | static int __init omap_rng_init(void) | 
|  | 215 | { | 
|  | 216 | if (!cpu_is_omap16xx() && !cpu_is_omap24xx()) | 
|  | 217 | return -ENODEV; | 
|  | 218 |  | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 219 | return platform_driver_register(&omap_rng_driver); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 220 | } | 
|  | 221 |  | 
|  | 222 | static void __exit omap_rng_exit(void) | 
|  | 223 | { | 
| David Brownell | af2bc7d | 2006-08-05 12:14:04 -0700 | [diff] [blame] | 224 | platform_driver_unregister(&omap_rng_driver); | 
| Michael Buesch | ebc915a | 2006-06-26 00:25:03 -0700 | [diff] [blame] | 225 | } | 
|  | 226 |  | 
|  | 227 | module_init(omap_rng_init); | 
|  | 228 | module_exit(omap_rng_exit); | 
|  | 229 |  | 
|  | 230 | MODULE_AUTHOR("Deepak Saxena (and others)"); | 
|  | 231 | MODULE_LICENSE("GPL"); |