]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-sunxi/clock.h
Merge branch 'master' of git://git.denx.de/u-boot-imx
[karo-tx-uboot.git] / arch / arm / include / asm / arch-sunxi / clock.h
1 /*
2  * (C) Copyright 2007-2011
3  * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
4  * Tom Cubie <tangliang@allwinnertech.com>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef _SUNXI_CLOCK_H
10 #define _SUNXI_CLOCK_H
11
12 #include <linux/types.h>
13
14 #define CLK_GATE_OPEN                   0x1
15 #define CLK_GATE_CLOSE                  0x0
16
17 /* clock control module regs definition */
18 #if defined(CONFIG_SUN6I) || defined(CONFIG_SUN8I)
19 #include <asm/arch/clock_sun6i.h>
20 #else
21 #include <asm/arch/clock_sun4i.h>
22 #endif
23
24 #ifndef __ASSEMBLY__
25 int clock_init(void);
26 int clock_twi_onoff(int port, int state);
27 void clock_set_pll1(unsigned int hz);
28 unsigned int clock_get_pll5p(void);
29 unsigned int clock_get_pll6(void);
30 void clock_init_safe(void);
31 void clock_init_uart(void);
32 #endif
33
34 #endif /* _SUNXI_CLOCK_H */