mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	xilinx_uartlite has been ported to DM, this patch makes the xilinx-ppc405-generic and the xilinx-ppc440-generic boards use the new DM driver. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Acked-by: Stefan Roese <sr@denx.de> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Michal Simek <michal.simek@xilinx.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			745 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			745 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * (C) Copyright 2008
 | 
						|
 * Ricado Ribalda-Universidad Autonoma de Madrid-ricardo.ribalda@gmail.com
 | 
						|
 * This work has been supported by: QTechnology  http://qtec.com/
 | 
						|
 * based on xparameters-ml507.h by Xilinx
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
*/
 | 
						|
 | 
						|
#ifndef XPARAMETER_H
 | 
						|
#define XPARAMETER_H
 | 
						|
 | 
						|
#define XPAR_DDR2_SDRAM_MEM_BASEADDR	0x00000000
 | 
						|
#define XPAR_IIC_EEPROM_BASEADDR	0x81600000
 | 
						|
#define XPAR_INTC_0_BASEADDR		0x81800000
 | 
						|
#define XPAR_SPI_0_BASEADDR             0x83400000
 | 
						|
#define XPAR_FLASH_MEM0_BASEADDR	0xFE000000
 | 
						|
#define XPAR_PLB_CLOCK_FREQ_HZ		100000000
 | 
						|
#define XPAR_CORE_CLOCK_FREQ_HZ		400000000
 | 
						|
#define XPAR_INTC_MAX_NUM_INTR_INPUTS	32
 | 
						|
#define XPAR_SPI_0_NUM_TRANSFER_BITS	8
 | 
						|
#define XPAR_UARTNS550_0_CLOCK_FREQ_HZ	100000000
 | 
						|
 | 
						|
#endif
 |