mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Usage of common.h is deprecated. * Remove common.h from RNG drivers. * Sort includes. * Add time.h to sandbox driver. * Add linux/types.h to rng.h to provide size_t. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Copyright (c) 2019, Linaro Limited
 | 
						|
 */
 | 
						|
 | 
						|
#if !defined _RNG_H_
 | 
						|
#define _RNG_H_
 | 
						|
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
struct udevice;
 | 
						|
 | 
						|
/**
 | 
						|
 * dm_rng_read() - read a random number seed from the rng device
 | 
						|
 *
 | 
						|
 * The function blocks until the requested number of bytes is read.
 | 
						|
 *
 | 
						|
 * @dev:	random number generator device
 | 
						|
 * @buffer:	input buffer to put the read random seed into
 | 
						|
 * @size:	number of random bytes to read
 | 
						|
 * Return:	0 if OK, -ve on error
 | 
						|
 */
 | 
						|
int dm_rng_read(struct udevice *dev, void *buffer, size_t size);
 | 
						|
 | 
						|
/**
 | 
						|
 * struct dm_rng_ops - operations for the hwrng uclass
 | 
						|
 *
 | 
						|
 * This structures contains the function implemented by a hardware random
 | 
						|
 * number generation device.
 | 
						|
 */
 | 
						|
struct dm_rng_ops {
 | 
						|
	/**
 | 
						|
	 * @read:	read a random bytes
 | 
						|
	 *
 | 
						|
	 * The function blocks until the requested number of bytes is read.
 | 
						|
	 *
 | 
						|
	 * @read.dev:		random number generator device
 | 
						|
	 * @read.data:		input buffer to read the random seed into
 | 
						|
	 * @read.max:		number of random bytes to read
 | 
						|
	 * @read.Return:	0 if OK, -ve on error
 | 
						|
	 */
 | 
						|
	int (*read)(struct udevice *dev, void *data, size_t max);
 | 
						|
};
 | 
						|
 | 
						|
#endif /* _RNG_H_ */
 |