mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Add fu740 support. One abstract layer is added for supporting multiple chips such as fu540 and fu740. Signed-off-by: Green Wan <green.wan@sifive.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			492 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			492 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
/*
 | 
						|
 * Copyright (C) 2020-2021 SiFive, Inc.
 | 
						|
 * Zong Li
 | 
						|
 * Pragnesh Patel
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __SIFIVE_CLK_FU740_PRCI_H
 | 
						|
#define __SIFIVE_CLK_FU740_PRCI_H
 | 
						|
 | 
						|
#include "sifive-prci.h"
 | 
						|
 | 
						|
#define NUM_CLOCK_FU740		9
 | 
						|
 | 
						|
extern struct __prci_clock __prci_init_clocks_fu740[NUM_CLOCK_FU740];
 | 
						|
 | 
						|
static const struct prci_clk_desc prci_clk_fu740 = {
 | 
						|
	.clks = __prci_init_clocks_fu740,
 | 
						|
	.num_clks = ARRAY_SIZE(__prci_init_clocks_fu740),
 | 
						|
};
 | 
						|
 | 
						|
#endif /* __SIFIVE_CLK_FU740_PRCI_H */
 |