mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Rockchip use 'arch-rockchip' instead of arch-$(SOC) as common header file path, so that we can get the correct path directly. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			407 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			407 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
/*
 | 
						|
 * (C) Copyright 2015 Google, Inc
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _ASM_ARCH_DDR_RK3188_H
 | 
						|
#define _ASM_ARCH_DDR_RK3188_H
 | 
						|
 | 
						|
#include <asm/arch-rockchip/ddr_rk3288.h>
 | 
						|
 | 
						|
/*
 | 
						|
 * RK3188 Memory scheduler register map.
 | 
						|
 */
 | 
						|
struct rk3188_msch {
 | 
						|
	u32 coreid;
 | 
						|
	u32 revisionid;
 | 
						|
	u32 ddrconf;
 | 
						|
	u32 ddrtiming;
 | 
						|
	u32 ddrmode;
 | 
						|
	u32 readlatency;
 | 
						|
};
 | 
						|
check_member(rk3188_msch, readlatency, 0x0014);
 | 
						|
 | 
						|
#endif
 |