mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 02:11:25 +01:00 
			
		
		
		
	Add the required header information, device tree nodes and I/O accessor functions to support PCI on sandbox. All devices are emulated by drivers which can be added as required for testing or development. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			32 lines
		
	
	
		
			818 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			818 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Test-related constants for sandbox
 | 
						|
 *
 | 
						|
 * Copyright (c) 2014 Google, Inc
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __ASM_TEST_H
 | 
						|
#define __ASM_TEST_H
 | 
						|
 | 
						|
/* The sandbox driver always permits an I2C device with this address */
 | 
						|
#define SANDBOX_I2C_TEST_ADDR		0x59
 | 
						|
 | 
						|
#define SANDBOX_PCI_VENDOR_ID		0x1234
 | 
						|
#define SANDBOX_PCI_DEVICE_ID		0x5678
 | 
						|
#define SANDBOX_PCI_CLASS_CODE		PCI_CLASS_CODE_COMM
 | 
						|
#define SANDBOX_PCI_CLASS_SUB_CODE	PCI_CLASS_SUB_CODE_COMM_SERIAL
 | 
						|
 | 
						|
enum sandbox_i2c_eeprom_test_mode {
 | 
						|
	SIE_TEST_MODE_NONE,
 | 
						|
	/* Permits read/write of only one byte per I2C transaction */
 | 
						|
	SIE_TEST_MODE_SINGLE_BYTE,
 | 
						|
};
 | 
						|
 | 
						|
void sandbox_i2c_eeprom_set_test_mode(struct udevice *dev,
 | 
						|
				      enum sandbox_i2c_eeprom_test_mode mode);
 | 
						|
 | 
						|
void sandbox_i2c_eeprom_set_offset_len(struct udevice *dev, int offset_len);
 | 
						|
 | 
						|
#endif
 |