mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	This adds a sandbox reset implementation (provider), a test client device, instantiates them both from Sandbox's DT, and adds a DM test that excercises everything. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			22 lines
		
	
	
		
			459 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			459 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2016, NVIDIA CORPORATION.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: GPL-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __SANDBOX_RESET_H
 | 
						|
#define __SANDBOX_RESET_H
 | 
						|
 | 
						|
#include <common.h>
 | 
						|
 | 
						|
struct udevice;
 | 
						|
 | 
						|
int sandbox_reset_query(struct udevice *dev, unsigned long id);
 | 
						|
 | 
						|
int sandbox_reset_test_get(struct udevice *dev);
 | 
						|
int sandbox_reset_test_assert(struct udevice *dev);
 | 
						|
int sandbox_reset_test_deassert(struct udevice *dev);
 | 
						|
int sandbox_reset_test_free(struct udevice *dev);
 | 
						|
 | 
						|
#endif
 |