mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	U-Boot is expected to support multiple generations of Apple SoCs in a single binary with a single defconfig. Therefore it makes more sense to set SYS_SOC to "apple". Signed-off-by: Mark Kettenis <kettenis@openbsd.org> Reviewed-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			42 lines
		
	
	
		
			767 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			767 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * (C) Copyright 2009 Samsung Electronics
 | 
						|
 * Minkyu Kang <mk7.kang@samsung.com>
 | 
						|
 * Heungjun Kim <riverful.kim@samsung.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __ASM_ARCH_UART_H_
 | 
						|
#define __ASM_ARCH_UART_H_
 | 
						|
 | 
						|
#ifndef __ASSEMBLY__
 | 
						|
/* baudrate rest value */
 | 
						|
union br_rest {
 | 
						|
	unsigned short	slot;		/* udivslot */
 | 
						|
	unsigned char	value;		/* ufracval */
 | 
						|
};
 | 
						|
 | 
						|
struct s5p_uart {
 | 
						|
	unsigned int	ulcon;
 | 
						|
	unsigned int	ucon;
 | 
						|
	unsigned int	ufcon;
 | 
						|
	unsigned int	umcon;
 | 
						|
	unsigned int	utrstat;
 | 
						|
	unsigned int	uerstat;
 | 
						|
	unsigned int	ufstat;
 | 
						|
	unsigned int	umstat;
 | 
						|
	unsigned int	utxh;
 | 
						|
	unsigned int	urxh;
 | 
						|
	unsigned int	ubrdiv;
 | 
						|
	union br_rest	rest;
 | 
						|
	unsigned char	res3[0x3fd0];
 | 
						|
};
 | 
						|
 | 
						|
static inline int s5p_uart_divslot(void)
 | 
						|
{
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
#endif	/* __ASSEMBLY__ */
 | 
						|
 | 
						|
#endif
 |