xref: /openbmc/linux/arch/arm/mach-exynos/common.h (revision 906c789c)
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
3  *		http://www.samsung.com
4  *
5  * Common Header for EXYNOS machines
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11 
12 #ifndef __ARCH_ARM_MACH_EXYNOS_COMMON_H
13 #define __ARCH_ARM_MACH_EXYNOS_COMMON_H
14 
15 extern struct sys_timer exynos4_timer;
16 
17 void exynos_init_io(struct map_desc *mach_desc, int size);
18 void exynos4_init_irq(void);
19 void exynos4_restart(char mode, const char *cmd);
20 
21 #ifdef CONFIG_ARCH_EXYNOS4
22 void exynos4_register_clocks(void);
23 void exynos4_setup_clocks(void);
24 
25 #else
26 #define exynos4_register_clocks()
27 #define exynos4_setup_clocks()
28 #endif
29 
30 #ifdef CONFIG_CPU_EXYNOS4210
31 void exynos4210_register_clocks(void);
32 
33 #else
34 #define exynos4210_register_clocks()
35 #endif
36 
37 #ifdef CONFIG_SOC_EXYNOS4212
38 void exynos4212_register_clocks(void);
39 
40 #else
41 #define exynos4212_register_clocks()
42 #endif
43 
44 #endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */
45