Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 1 | /* |
| 2 | Hardware Random Number Generator |
| 3 | |
| 4 | Please read Documentation/hw_random.txt for details on use. |
| 5 | |
| 6 | ---------------------------------------------------------- |
| 7 | This software may be used and distributed according to the terms |
| 8 | of the GNU General Public License, incorporated herein by reference. |
| 9 | |
| 10 | */ |
| 11 | |
| 12 | #ifndef LINUX_HWRANDOM_H_ |
| 13 | #define LINUX_HWRANDOM_H_ |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 14 | |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/list.h> |
| 17 | |
| 18 | /** |
| 19 | * struct hwrng - Hardware Random Number Generator driver |
| 20 | * @name: Unique RNG name. |
| 21 | * @init: Initialization callback (can be NULL). |
| 22 | * @cleanup: Cleanup callback (can be NULL). |
| 23 | * @data_present: Callback to determine if data is available |
| 24 | * on the RNG. If NULL, it is assumed that |
Ian Molton | 9996508 | 2009-12-01 14:47:32 +0800 | [diff] [blame] | 25 | * there is always data available. *OBSOLETE* |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 26 | * @data_read: Read data from the RNG device. |
| 27 | * Returns the number of lower random bytes in "data". |
Sasha Levin | 988acec | 2011-05-25 15:12:20 +0300 | [diff] [blame] | 28 | * Must not be NULL. *OBSOLETE* |
Ian Molton | 9996508 | 2009-12-01 14:47:32 +0800 | [diff] [blame] | 29 | * @read: New API. drivers can fill up to max bytes of data |
| 30 | * into the buffer. The buffer is aligned for any type. |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 31 | * @priv: Private data, for use by the RNG driver. |
| 32 | */ |
| 33 | struct hwrng { |
| 34 | const char *name; |
| 35 | int (*init)(struct hwrng *rng); |
| 36 | void (*cleanup)(struct hwrng *rng); |
Patrick McHardy | 984e976 | 2007-11-21 12:24:45 +0800 | [diff] [blame] | 37 | int (*data_present)(struct hwrng *rng, int wait); |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 38 | int (*data_read)(struct hwrng *rng, u32 *data); |
Ian Molton | 9996508 | 2009-12-01 14:47:32 +0800 | [diff] [blame] | 39 | int (*read)(struct hwrng *rng, void *data, size_t max, bool wait); |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 40 | unsigned long priv; |
| 41 | |
| 42 | /* internal. */ |
| 43 | struct list_head list; |
| 44 | }; |
| 45 | |
| 46 | /** Register a new Hardware Random Number Generator driver. */ |
| 47 | extern int hwrng_register(struct hwrng *rng); |
| 48 | /** Unregister a Hardware Random Number Generator driver. */ |
Rafael J. Wysocki | b844eba | 2008-03-23 20:28:24 +0100 | [diff] [blame] | 49 | extern void hwrng_unregister(struct hwrng *rng); |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 50 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 51 | #endif /* LINUX_HWRANDOM_H_ */ |