blob: c212e71ea88625f5e8dd97691587941b3bb204b9 [file] [log] [blame]
Michael Buesch844dd052006-06-26 00:24:59 -07001/*
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 Buesch844dd052006-06-26 00:24:59 -070014
15#include <linux/types.h>
16#include <linux/list.h>
Rusty Russell3a2c0ba2014-12-08 16:50:37 +080017#include <linux/kref.h>
Michael Buesch844dd052006-06-26 00:24:59 -070018
19/**
20 * struct hwrng - Hardware Random Number Generator driver
21 * @name: Unique RNG name.
22 * @init: Initialization callback (can be NULL).
23 * @cleanup: Cleanup callback (can be NULL).
24 * @data_present: Callback to determine if data is available
25 * on the RNG. If NULL, it is assumed that
Ian Molton99965082009-12-01 14:47:32 +080026 * there is always data available. *OBSOLETE*
Michael Buesch844dd052006-06-26 00:24:59 -070027 * @data_read: Read data from the RNG device.
28 * Returns the number of lower random bytes in "data".
Sasha Levin988acec2011-05-25 15:12:20 +030029 * Must not be NULL. *OBSOLETE*
Ian Molton99965082009-12-01 14:47:32 +080030 * @read: New API. drivers can fill up to max bytes of data
31 * into the buffer. The buffer is aligned for any type.
Michael Buesch844dd052006-06-26 00:24:59 -070032 * @priv: Private data, for use by the RNG driver.
Torsten Duwe0f734e62014-06-14 23:48:41 -040033 * @quality: Estimation of true entropy in RNG's bitstream
34 * (per mill).
Michael Buesch844dd052006-06-26 00:24:59 -070035 */
36struct hwrng {
37 const char *name;
38 int (*init)(struct hwrng *rng);
39 void (*cleanup)(struct hwrng *rng);
Patrick McHardy984e9762007-11-21 12:24:45 +080040 int (*data_present)(struct hwrng *rng, int wait);
Michael Buesch844dd052006-06-26 00:24:59 -070041 int (*data_read)(struct hwrng *rng, u32 *data);
Ian Molton99965082009-12-01 14:47:32 +080042 int (*read)(struct hwrng *rng, void *data, size_t max, bool wait);
Michael Buesch844dd052006-06-26 00:24:59 -070043 unsigned long priv;
Torsten Duwe0f734e62014-06-14 23:48:41 -040044 unsigned short quality;
Michael Buesch844dd052006-06-26 00:24:59 -070045
46 /* internal. */
47 struct list_head list;
Rusty Russell3a2c0ba2014-12-08 16:50:37 +080048 struct kref ref;
Michael Buesch844dd052006-06-26 00:24:59 -070049};
50
51/** Register a new Hardware Random Number Generator driver. */
52extern int hwrng_register(struct hwrng *rng);
53/** Unregister a Hardware Random Number Generator driver. */
Rafael J. Wysockib844eba2008-03-23 20:28:24 +010054extern void hwrng_unregister(struct hwrng *rng);
Torsten Duwec84dbf62014-06-14 23:38:36 -040055/** Feed random bits into the pool. */
56extern void add_hwgenerator_randomness(const char *buffer, size_t count, size_t entropy);
Michael Buesch844dd052006-06-26 00:24:59 -070057
Michael Buesch844dd052006-06-26 00:24:59 -070058#endif /* LINUX_HWRANDOM_H_ */