mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 00:47:26 +00:00
5d649d2b08
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>
22 lines
411 B
C
22 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_ */
|