mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Adding System Manager driver which will configure the pin mux for real hardware Cyclone V development kit (not Virtual Platform) Signed-off-by: Chin Liang See <clsee@altera.com> Reviewed-by: Pavel Machek <pavel@denx.de> Acked-by: Dinh Nguyen <dinguyen@altera.com> Cc: Wolfgang Denk <wd@denx.de> CC: Pavel Machek <pavel@denx.de> Cc: Dinh Nguyen <dinguyen@altera.com> Cc: Tom Rini <trini@ti.com> Cc: Albert Aribaud <albert.u.boot@aribaud.net>
		
			
				
	
	
		
			23 lines
		
	
	
		
			411 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			411 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 *  Copyright (C) 2013 Altera Corporation <www.altera.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef	_SYSTEM_MANAGER_H_
 | 
						|
#define	_SYSTEM_MANAGER_H_
 | 
						|
 | 
						|
#ifndef __ASSEMBLY__
 | 
						|
 | 
						|
void sysmgr_pinmux_init(void);
 | 
						|
 | 
						|
/* declaration for handoff table type */
 | 
						|
extern unsigned long sys_mgr_init_table[CONFIG_HPS_PINMUX_NUM];
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
#define CONFIG_SYSMGR_PINMUXGRP_OFFSET	(0x400)
 | 
						|
 | 
						|
#endif /* _SYSTEM_MANAGER_H_ */
 |