blob: 8c1efe692c20bbf29d539969f62e568aef23069f [file] [log] [blame]
Kukjin Kimcc511b82011-12-27 08:18:36 +01001/*
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
15void exynos_init_io(struct map_desc *mach_desc, int size);
16void exynos4_init_irq(void);
17
Kukjin Kima8550392012-03-09 14:19:10 -080018#ifdef CONFIG_ARCH_EXYNOS4
Kukjin Kimcc511b82011-12-27 08:18:36 +010019void exynos4_register_clocks(void);
20void exynos4_setup_clocks(void);
21
22void exynos4210_register_clocks(void);
23void exynos4212_register_clocks(void);
24
Kukjin Kima8550392012-03-09 14:19:10 -080025#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
Russell King9eb48592012-01-03 11:56:53 +010033void exynos4_restart(char mode, const char *cmd);
34
Kukjin Kimcc511b82011-12-27 08:18:36 +010035extern struct sys_timer exynos4_timer;
36
37#ifdef CONFIG_ARCH_EXYNOS
38extern int exynos_init(void);
39extern void exynos4_map_io(void);
40extern void exynos4_init_clocks(int xtal);
41extern 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 */