mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	This adds a SPI framework for people to hook up simulated SPI clients. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2011-2012 The Chromium OS Authors.
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __SANDBOX_STATE_H
 | 
						|
#define __SANDBOX_STATE_H
 | 
						|
 | 
						|
#include <config.h>
 | 
						|
 | 
						|
/* How we exited U-Boot */
 | 
						|
enum exit_type_id {
 | 
						|
	STATE_EXIT_NORMAL,
 | 
						|
	STATE_EXIT_COLD_REBOOT,
 | 
						|
	STATE_EXIT_POWER_OFF,
 | 
						|
};
 | 
						|
 | 
						|
struct sandbox_spi_info {
 | 
						|
	const char *spec;
 | 
						|
	const struct sandbox_spi_emu_ops *ops;
 | 
						|
};
 | 
						|
 | 
						|
/* The complete state of the test system */
 | 
						|
struct sandbox_state {
 | 
						|
	const char *cmd;		/* Command to execute */
 | 
						|
	const char *fdt_fname;		/* Filename of FDT binary */
 | 
						|
	enum exit_type_id exit_type;	/* How we exited U-Boot */
 | 
						|
	const char *parse_err;		/* Error to report from parsing */
 | 
						|
	int argc;			/* Program arguments */
 | 
						|
	char **argv;
 | 
						|
 | 
						|
	/* Pointer to information for each SPI bus/cs */
 | 
						|
	struct sandbox_spi_info spi[CONFIG_SANDBOX_SPI_MAX_BUS]
 | 
						|
					[CONFIG_SANDBOX_SPI_MAX_CS];
 | 
						|
};
 | 
						|
 | 
						|
/**
 | 
						|
 * Record the exit type to be reported by the test program.
 | 
						|
 *
 | 
						|
 * @param exit_type	Exit type to record
 | 
						|
 */
 | 
						|
void state_record_exit(enum exit_type_id exit_type);
 | 
						|
 | 
						|
/**
 | 
						|
 * Gets a pointer to the current state.
 | 
						|
 *
 | 
						|
 * @return pointer to state
 | 
						|
 */
 | 
						|
struct sandbox_state *state_get_current(void);
 | 
						|
 | 
						|
/**
 | 
						|
 * Initialize the test system state
 | 
						|
 */
 | 
						|
int state_init(void);
 | 
						|
 | 
						|
#endif
 |