forked from mirrors/linux
		
	 6682bd4d44
			
		
	
	
		6682bd4d44
		
	
	
	
	
		
			
			The function used to probe the peripheral clock controller of the arm64 amlogic SoCs is mostly the same. We now have 3 of those controllers so it is time to factorize things a bit. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Reviewed-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Link: https://lkml.kernel.org/r/20190201145345.6795-5-jbrunet@baylibre.com
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			521 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			521 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| /*
 | |
|  * Copyright (c) 2019 BayLibre, SAS.
 | |
|  * Author: Jerome Brunet <jbrunet@baylibre.com>
 | |
|  */
 | |
| 
 | |
| #ifndef __MESON_CLKC_H
 | |
| #define __MESON_CLKC_H
 | |
| 
 | |
| #include <linux/clk-provider.h>
 | |
| #include "clk-regmap.h"
 | |
| 
 | |
| #define IN_PREFIX "ee-in-"
 | |
| 
 | |
| struct platform_device;
 | |
| 
 | |
| struct meson_eeclkc_data {
 | |
| 	struct clk_regmap *const	*regmap_clks;
 | |
| 	unsigned int			regmap_clk_num;
 | |
| 	struct clk_hw_onecell_data	*hw_onecell_data;
 | |
| };
 | |
| 
 | |
| int meson_eeclkc_probe(struct platform_device *pdev);
 | |
| 
 | |
| #endif /* __MESON_CLKC_H */
 |