]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm/mach-exynos/common.h
ARM: ep93xx: use machine specific hook for late init
[mirror_ubuntu-artful-kernel.git] / arch / arm / mach-exynos / common.h
CommitLineData
cc511b8d
KK
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
906c789c
KK
15extern struct sys_timer exynos4_timer;
16
cc511b8d
KK
17void exynos_init_io(struct map_desc *mach_desc, int size);
18void exynos4_init_irq(void);
94c7ca71 19void exynos5_init_irq(void);
906c789c 20void exynos4_restart(char mode, const char *cmd);
94c7ca71 21void exynos5_restart(char mode, const char *cmd);
cc511b8d 22
a855039e 23#ifdef CONFIG_ARCH_EXYNOS4
cc511b8d
KK
24void exynos4_register_clocks(void);
25void exynos4_setup_clocks(void);
26
a855039e
KK
27#else
28#define exynos4_register_clocks()
29#define exynos4_setup_clocks()
a855039e
KK
30#endif
31
94c7ca71
KK
32#ifdef CONFIG_ARCH_EXYNOS5
33void exynos5_register_clocks(void);
34void exynos5_setup_clocks(void);
35
36#else
37#define exynos5_register_clocks()
38#define exynos5_setup_clocks()
39#endif
40
906c789c
KK
41#ifdef CONFIG_CPU_EXYNOS4210
42void exynos4210_register_clocks(void);
9eb48595 43
906c789c
KK
44#else
45#define exynos4210_register_clocks()
46#endif
cc511b8d 47
906c789c
KK
48#ifdef CONFIG_SOC_EXYNOS4212
49void exynos4212_register_clocks(void);
cc511b8d
KK
50
51#else
906c789c 52#define exynos4212_register_clocks()
cc511b8d
KK
53#endif
54
55#endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */