]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-exynos/common.h
8c1efe692c20bbf29d539969f62e568aef23069f
[karo-tx-linux.git] / arch / arm / mach-exynos / common.h
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 void exynos_init_io(struct map_desc *mach_desc, int size);
16 void exynos4_init_irq(void);
17
18 #ifdef CONFIG_ARCH_EXYNOS4
19 void exynos4_register_clocks(void);
20 void exynos4_setup_clocks(void);
21
22 void exynos4210_register_clocks(void);
23 void exynos4212_register_clocks(void);
24
25 #else
26 #define exynos4_register_clocks()
27 #define exynos4_setup_clocks()
28
29 #define exynos4210_register_clocks()
30 #define exynos4212_register_clocks()
31 #endif
32
33 void exynos4_restart(char mode, const char *cmd);
34
35 extern struct sys_timer exynos4_timer;
36
37 #ifdef CONFIG_ARCH_EXYNOS
38 extern  int exynos_init(void);
39 extern void exynos4_map_io(void);
40 extern void exynos4_init_clocks(int xtal);
41 extern void exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no);
42
43 #else
44 #define exynos4_init_clocks NULL
45 #define exynos4_init_uarts NULL
46 #define exynos4_map_io NULL
47 #define exynos_init NULL
48 #endif
49
50 #endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */