~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/hw_random.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /*
  2         Hardware Random Number Generator
  3 
  4         Please read Documentation/admin-guide/hw_random.rst 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_
 14 
 15 #include <linux/completion.h>
 16 #include <linux/kref.h>
 17 #include <linux/types.h>
 18 
 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
 26  *                      there is always data available.  *OBSOLETE*
 27  * @data_read:          Read data from the RNG device.
 28  *                      Returns the number of lower random bytes in "data".
 29  *                      Must not be NULL.    *OBSOLETE*
 30  * @read:               New API. drivers can fill up to max bytes of data
 31  *                      into the buffer. The buffer is aligned for any type
 32  *                      and max is a multiple of 4 and >= 32 bytes.
 33  * @priv:               Private data, for use by the RNG driver.
 34  * @quality:            Estimation of true entropy in RNG's bitstream
 35  *                      (in bits of entropy per 1024 bits of input;
 36  *                      valid values: 1 to 1024, or 0 for maximum).
 37  */
 38 struct hwrng {
 39         const char *name;
 40         int (*init)(struct hwrng *rng);
 41         void (*cleanup)(struct hwrng *rng);
 42         int (*data_present)(struct hwrng *rng, int wait);
 43         int (*data_read)(struct hwrng *rng, u32 *data);
 44         int (*read)(struct hwrng *rng, void *data, size_t max, bool wait);
 45         unsigned long priv;
 46         unsigned short quality;
 47 
 48         /* internal. */
 49         struct list_head list;
 50         struct kref ref;
 51         struct completion cleanup_done;
 52         struct completion dying;
 53 };
 54 
 55 struct device;
 56 
 57 /** Register a new Hardware Random Number Generator driver. */
 58 extern int hwrng_register(struct hwrng *rng);
 59 extern int devm_hwrng_register(struct device *dev, struct hwrng *rng);
 60 /** Unregister a Hardware Random Number Generator driver. */
 61 extern void hwrng_unregister(struct hwrng *rng);
 62 extern void devm_hwrng_unregister(struct device *dve, struct hwrng *rng);
 63 
 64 extern long hwrng_msleep(struct hwrng *rng, unsigned int msecs);
 65 extern long hwrng_yield(struct hwrng *rng);
 66 
 67 #endif /* LINUX_HWRANDOM_H_ */
 68 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php