mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 10:21:25 +01:00 
			
		
		
		
	Move this out of the common header and include it only where needed. In a number of cases this requires adding "struct udevice;" to avoid adding another large header or in other cases replacing / adding missing header files that had been pulled in, very indirectly. Finally, we have a few cases where we did not need to include <asm/global_data.h> at all, so remove that include. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * Copyright (C) 2019 Intel Corporation <www.intel.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __CACHE_H
 | 
						|
#define __CACHE_H
 | 
						|
 | 
						|
struct udevice;
 | 
						|
 | 
						|
/*
 | 
						|
 * Structure for the cache controller
 | 
						|
 */
 | 
						|
struct cache_info {
 | 
						|
	phys_addr_t base; /* Base physical address of cache device. */
 | 
						|
};
 | 
						|
 | 
						|
struct cache_ops {
 | 
						|
	/**
 | 
						|
	 * get_info() - Get basic cache info
 | 
						|
	 *
 | 
						|
	 * @dev:	Device to check (UCLASS_CACHE)
 | 
						|
	 * @info:	Place to put info
 | 
						|
	 * @return 0 if OK, -ve on error
 | 
						|
	 */
 | 
						|
	int (*get_info)(struct udevice *dev, struct cache_info *info);
 | 
						|
 | 
						|
	/**
 | 
						|
	 * enable() - Enable cache
 | 
						|
	 *
 | 
						|
	 * @dev:	Device to check (UCLASS_CACHE)
 | 
						|
	 * @return 0 if OK, -ve on error
 | 
						|
	 */
 | 
						|
	int (*enable)(struct udevice *dev);
 | 
						|
 | 
						|
	/**
 | 
						|
	 * disable() - Flush and disable cache
 | 
						|
	 *
 | 
						|
	 * @dev:	Device to check (UCLASS_CACHE)
 | 
						|
	 * @return 0 if OK, -ve on error
 | 
						|
	 */
 | 
						|
	int (*disable)(struct udevice *dev);
 | 
						|
};
 | 
						|
 | 
						|
#define cache_get_ops(dev)	((struct cache_ops *)(dev)->driver->ops)
 | 
						|
 | 
						|
/**
 | 
						|
 * cache_get_info() - Get information about a cache controller
 | 
						|
 *
 | 
						|
 * @dev:	Device to check (UCLASS_CACHE)
 | 
						|
 * @info:	Returns cache info
 | 
						|
 * @return 0 if OK, -ve on error
 | 
						|
 */
 | 
						|
int cache_get_info(struct udevice *dev, struct cache_info *info);
 | 
						|
 | 
						|
/**
 | 
						|
 * cache_enable() - Enable cache
 | 
						|
 *
 | 
						|
 * @dev:	Device to check (UCLASS_CACHE)
 | 
						|
 * @return 0 if OK, -ve on error
 | 
						|
 */
 | 
						|
int cache_enable(struct udevice *dev);
 | 
						|
 | 
						|
/**
 | 
						|
 * cache_disable() - Flush and disable cache
 | 
						|
 *
 | 
						|
 * @dev:	Device to check (UCLASS_CACHE)
 | 
						|
 * @return 0 if OK, -ve on error
 | 
						|
 */
 | 
						|
int cache_disable(struct udevice *dev);
 | 
						|
#endif
 |