mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Work_92105 from Work Microwave is an LPC3250- based board with the following features: - 64MB or 128MB SDR DRAM - 1 GB SLC NAND, managed through MLC controller. - Ethernet - Ethernet + PHY SMSC8710 - I2C: - EEPROM (24M01-compatible) - RTC (DS1374-compatible) - Temperature sensor (DS620) - DACs (2 x MAX518) - SPI (through SSP interface) - Port expander MAX6957 - LCD display (HD44780-compatible), controlled through the port expander and DACs This board has SPL support, and uses the LPC32XX boot image format. Signed-off-by: Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>
		
			
				
	
	
		
			21 lines
		
	
	
		
			496 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			496 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2011 Vladimir Zapolskiy <vz@mleia.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _LPC32XX_SYS_PROTO_H
 | 
						|
#define _LPC32XX_SYS_PROTO_H
 | 
						|
 | 
						|
#include <asm/arch/emc.h>
 | 
						|
 | 
						|
void lpc32xx_uart_init(unsigned int uart_id);
 | 
						|
void lpc32xx_mac_init(void);
 | 
						|
void lpc32xx_mlc_nand_init(void);
 | 
						|
void lpc32xx_i2c_init(unsigned int devnum);
 | 
						|
void lpc32xx_ssp_init(void);
 | 
						|
#if defined(CONFIG_SPL_BUILD)
 | 
						|
void ddr_init(const struct emc_dram_settings *dram);
 | 
						|
#endif
 | 
						|
#endif /* _LPC32XX_SYS_PROTO_H */
 |