2006-06-26 15:24:59 +08:00
|
|
|
/*
|
|
|
|
Hardware Random Number Generator
|
|
|
|
|
|
|
|
Please read Documentation/hw_random.txt for details on use.
|
|
|
|
|
|
|
|
----------------------------------------------------------
|
|
|
|
This software may be used and distributed according to the terms
|
|
|
|
of the GNU General Public License, incorporated herein by reference.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LINUX_HWRANDOM_H_
|
|
|
|
#define LINUX_HWRANDOM_H_
|
|
|
|
|
2014-12-23 13:40:17 +08:00
|
|
|
#include <linux/completion.h>
|
2006-06-26 15:24:59 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/list.h>
|
2014-12-08 16:50:37 +08:00
|
|
|
#include <linux/kref.h>
|
2006-06-26 15:24:59 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* struct hwrng - Hardware Random Number Generator driver
|
|
|
|
* @name: Unique RNG name.
|
|
|
|
* @init: Initialization callback (can be NULL).
|
|
|
|
* @cleanup: Cleanup callback (can be NULL).
|
|
|
|
* @data_present: Callback to determine if data is available
|
|
|
|
* on the RNG. If NULL, it is assumed that
|
2009-12-01 14:47:32 +08:00
|
|
|
* there is always data available. *OBSOLETE*
|
2006-06-26 15:24:59 +08:00
|
|
|
* @data_read: Read data from the RNG device.
|
|
|
|
* Returns the number of lower random bytes in "data".
|
2011-05-25 20:12:20 +08:00
|
|
|
* Must not be NULL. *OBSOLETE*
|
2009-12-01 14:47:32 +08:00
|
|
|
* @read: New API. drivers can fill up to max bytes of data
|
2016-08-18 20:37:21 +08:00
|
|
|
* into the buffer. The buffer is aligned for any type
|
|
|
|
* and max is guaranteed to be >= to that alignment
|
|
|
|
* (either 4 or 8 depending on architecture).
|
2006-06-26 15:24:59 +08:00
|
|
|
* @priv: Private data, for use by the RNG driver.
|
2014-06-15 11:48:41 +08:00
|
|
|
* @quality: Estimation of true entropy in RNG's bitstream
|
|
|
|
* (per mill).
|
2006-06-26 15:24:59 +08:00
|
|
|
*/
|
|
|
|
struct hwrng {
|
|
|
|
const char *name;
|
|
|
|
int (*init)(struct hwrng *rng);
|
|
|
|
void (*cleanup)(struct hwrng *rng);
|
2007-11-21 12:24:45 +08:00
|
|
|
int (*data_present)(struct hwrng *rng, int wait);
|
2006-06-26 15:24:59 +08:00
|
|
|
int (*data_read)(struct hwrng *rng, u32 *data);
|
2009-12-01 14:47:32 +08:00
|
|
|
int (*read)(struct hwrng *rng, void *data, size_t max, bool wait);
|
2006-06-26 15:24:59 +08:00
|
|
|
unsigned long priv;
|
2014-06-15 11:48:41 +08:00
|
|
|
unsigned short quality;
|
2006-06-26 15:24:59 +08:00
|
|
|
|
|
|
|
/* internal. */
|
|
|
|
struct list_head list;
|
2014-12-08 16:50:37 +08:00
|
|
|
struct kref ref;
|
2014-12-23 13:40:17 +08:00
|
|
|
struct completion cleanup_done;
|
2006-06-26 15:24:59 +08:00
|
|
|
};
|
|
|
|
|
2015-03-13 05:00:02 +08:00
|
|
|
struct device;
|
|
|
|
|
2006-06-26 15:24:59 +08:00
|
|
|
/** Register a new Hardware Random Number Generator driver. */
|
|
|
|
extern int hwrng_register(struct hwrng *rng);
|
2015-03-13 05:00:02 +08:00
|
|
|
extern int devm_hwrng_register(struct device *dev, struct hwrng *rng);
|
2006-06-26 15:24:59 +08:00
|
|
|
/** Unregister a Hardware Random Number Generator driver. */
|
2008-03-24 03:28:24 +08:00
|
|
|
extern void hwrng_unregister(struct hwrng *rng);
|
2015-03-13 05:00:02 +08:00
|
|
|
extern void devm_hwrng_unregister(struct device *dve, struct hwrng *rng);
|
2014-06-15 11:38:36 +08:00
|
|
|
/** Feed random bits into the pool. */
|
|
|
|
extern void add_hwgenerator_randomness(const char *buffer, size_t count, size_t entropy);
|
2006-06-26 15:24:59 +08:00
|
|
|
|
|
|
|
#endif /* LINUX_HWRANDOM_H_ */
|