mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Add a simple driver for the clocks provided by the MIPS Boston development board. The system provides information about 2 clocks whose rates are fixed by the bitfile flashed in the boards FPGA, and this driver simply reads the rates of these 2 clocks. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Reviewed-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			14 lines
		
	
	
		
			286 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			286 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2016 Imagination Technologies
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __DT_BINDINGS_CLOCK_BOSTON_CLOCK_H__
 | 
						|
#define __DT_BINDINGS_CLOCK_BOSTON_CLOCK_H__
 | 
						|
 | 
						|
#define BOSTON_CLK_SYS 0
 | 
						|
#define BOSTON_CLK_CPU 1
 | 
						|
 | 
						|
#endif /* __DT_BINDINGS_CLOCK_BOSTON_CLOCK_H__ */
 |