blob: 82e08fb83eaeb3069218f3c5e750a199e49b53e3 [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
Robin Holt7b6d8642013-07-08 16:01:40 -070015#include <linux/reboot.h>
Thomas Abraham6e6aac72013-03-09 17:03:05 +090016#include <linux/of.h>
17
Arnd Bergmann034c0972013-04-10 11:35:29 +020018void mct_init(void __iomem *base, int irq_g0, int irq_l0, int irq_l1);
Kukjin Kim906c7892012-02-11 21:27:08 +090019
Marc Zyngier06853ae2011-09-08 13:15:22 +010020struct map_desc;
Arnd Bergmann0e2238e2013-06-19 01:36:47 +090021void exynos_init_io(void);
Robin Holt7b6d8642013-07-08 16:01:40 -070022void exynos4_restart(enum reboot_mode mode, const char *cmd);
23void exynos5_restart(enum reboot_mode mode, const char *cmd);
Bartlomiej Zolnierkiewicz35baa332013-08-30 12:15:04 +020024void exynos_cpuidle_init(void);
Lukasz Majewskid568b6f2013-11-28 13:42:42 +010025void exynos_cpufreq_init(void);
Shawn Guobb13fab2012-04-26 10:35:40 +080026void exynos_init_late(void);
27
Tomasz Figabca28f82012-12-11 13:58:43 +090028void exynos_firmware_init(void);
29
Tomasz Figa559ba232014-03-18 07:28:22 +090030#ifdef CONFIG_PM_SLEEP
31extern void __init exynos_pm_init(void);
32#else
33static inline void exynos_pm_init(void) {}
34#endif
35
Marc Zyngier06853ae2011-09-08 13:15:22 +010036extern struct smp_operations exynos_smp_ops;
37
38extern void exynos_cpu_die(unsigned int cpu);
39
Kukjin Kimccd458c2012-12-31 10:06:48 -080040/* PMU(Power Management Unit) support */
41
42#define PMU_TABLE_END NULL
43
44enum sys_powerdown {
45 SYS_AFTR,
46 SYS_LPA,
47 SYS_SLEEP,
48 NUM_SYS_POWERDOWN,
49};
50
51extern unsigned long l2x0_regs_phys;
52struct exynos_pmu_conf {
53 void __iomem *reg;
54 unsigned int val[NUM_SYS_POWERDOWN];
55};
56
57extern void exynos_sys_powerdown_conf(enum sys_powerdown mode);
Kukjin Kimccd458c2012-12-31 10:06:48 -080058
Kukjin Kimcc511b82011-12-27 08:18:36 +010059#endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */