mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 02:11:25 +01:00 
			
		
		
		
	We have convert all SoC to use DM timer or ARM arch/generic timer, we can remove this rk_timer now. Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			324 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			324 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * (C) Copyright 2015 Rockchip Electronics Co., Ltd
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __ASM_ARCH_TIMER_H
 | 
						|
#define __ASM_ARCH_TIMER_H
 | 
						|
 | 
						|
struct rk_timer {
 | 
						|
	u32 timer_load_count0;
 | 
						|
	u32 timer_load_count1;
 | 
						|
	u32 timer_curr_value0;
 | 
						|
	u32 timer_curr_value1;
 | 
						|
	u32 timer_ctrl_reg;
 | 
						|
	u32 timer_int_status;
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |