xref: /openbmc/u-boot/arch/arm/include/asm/arch-sunxi/gtbus.h (revision 715dad6d7ede576bcd37fa6664226ec8ce58119a)
1 /*
2  * GTBUS initialisation
3  *
4  * (C) Copyright 2016 Theobroma Systems Design und Consulting GmbH
5  *                    Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #ifndef _SUNXI_GTBUS_H
11 #define _SUNXI_GTBUS_H
12 
13 #if defined(CONFIG_MACH_SUN9I)
14 #include <asm/arch/gtbus_sun9i.h>
15 #endif
16 
17 #ifndef __ASSEMBLY__
18 void gtbus_init(void);
19 #endif
20 
21 #endif
22