mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Add clock wrapper functions call to clock DM functions to get clock frequency and used in cm_print_clock_quick_summary(). Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
/*
 | 
						|
 * Copyright (C) 2019 Intel Corporation <www.intel.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _CLOCK_MANAGER_AGILEX_
 | 
						|
#define _CLOCK_MANAGER_AGILEX_
 | 
						|
 | 
						|
unsigned long cm_get_mpu_clk_hz(void);
 | 
						|
 | 
						|
#include <asm/arch/clock_manager_soc64.h>
 | 
						|
#include "../../../../../drivers/clk/altera/clk-agilex.h"
 | 
						|
 | 
						|
#endif /* _CLOCK_MANAGER_AGILEX_ */
 |