Ian Campbell | 643cf0e | 2014-05-05 11:52:23 +0100 | [diff] [blame] | 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 */ |
Ian Campbell | ed41e62 | 2014-10-24 21:20:47 +0100 | [diff] [blame] | 18 | #if defined(CONFIG_MACH_SUN6I) || defined(CONFIG_MACH_SUN8I) |
Chen-Yu Tsai | 14177e4 | 2014-10-03 20:16:25 +0800 | [diff] [blame] | 19 | #include <asm/arch/clock_sun6i.h> |
| 20 | #else |
Ian Campbell | 643cf0e | 2014-05-05 11:52:23 +0100 | [diff] [blame] | 21 | #include <asm/arch/clock_sun4i.h> |
Chen-Yu Tsai | 14177e4 | 2014-10-03 20:16:25 +0800 | [diff] [blame] | 22 | #endif |
Ian Campbell | 643cf0e | 2014-05-05 11:52:23 +0100 | [diff] [blame] | 23 | |
| 24 | #ifndef __ASSEMBLY__ |
| 25 | int clock_init(void); |
| 26 | int clock_twi_onoff(int port, int state); |
Hans de Goede | 0bd5125 | 2014-11-08 14:07:27 +0100 | [diff] [blame] | 27 | void clock_set_de_mod_clock(u32 *clk_cfg, unsigned int hz); |
Ian Campbell | 643cf0e | 2014-05-05 11:52:23 +0100 | [diff] [blame] | 28 | void clock_init_safe(void); |
| 29 | void clock_init_uart(void); |
| 30 | #endif |
| 31 | |
| 32 | #endif /* _SUNXI_CLOCK_H */ |