mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-29 23:41:52 +01:00 
			
		
		
		
	Now UniPhier platform highly depends on Device Tree configuration (CONFIG_OF_CONTROL is select'ed by Kconfig). Since the EHCI is only used on main U-Boot, we can drop platform devices of the EHCI controllers. We still keep UART platform devices because they might be useful for SPL. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Marek Vasut <marex@denx.de>
		
			
				
	
	
		
			16 lines
		
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2014-2015 Panasonic Corporation
 | |
|  *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #include <mach/platdevice.h>
 | |
| 
 | |
| #define UART_MASTER_CLK		36864000
 | |
| 
 | |
| SERIAL_DEVICE(0, 0x54006800, UART_MASTER_CLK)
 | |
| SERIAL_DEVICE(1, 0x54006900, UART_MASTER_CLK)
 | |
| SERIAL_DEVICE(2, 0x54006a00, UART_MASTER_CLK)
 | |
| SERIAL_DEVICE(3, 0x54006b00, UART_MASTER_CLK)
 |