blob: 27c9abdeb79e0651feae76addd0ed22a71fc078c [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;
Sachin Kamatb3205de2014-05-13 07:13:44 +090021extern void __iomem *sysram_ns_base_addr;
Arnd Bergmann0e2238e2013-06-19 01:36:47 +090022void exynos_init_io(void);
Sachin Kamatcbf08b92014-03-21 02:14:30 +090023void exynos_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 Figad710aa32014-03-18 07:28:27 +090030#ifdef CONFIG_PINCTRL_EXYNOS
31extern u32 exynos_get_eint_wake_mask(void);
32#else
33static inline u32 exynos_get_eint_wake_mask(void) { return 0xffffffff; }
34#endif
35
Tomasz Figa559ba232014-03-18 07:28:22 +090036#ifdef CONFIG_PM_SLEEP
37extern void __init exynos_pm_init(void);
38#else
39static inline void exynos_pm_init(void) {}
40#endif
41
Tomasz Figad710aa32014-03-18 07:28:27 +090042extern void exynos_cpu_resume(void);
43
Marc Zyngier06853ae2011-09-08 13:15:22 +010044extern struct smp_operations exynos_smp_ops;
45
46extern void exynos_cpu_die(unsigned int cpu);
47
Kukjin Kimccd458c2012-12-31 10:06:48 -080048/* PMU(Power Management Unit) support */
49
50#define PMU_TABLE_END NULL
51
52enum sys_powerdown {
53 SYS_AFTR,
54 SYS_LPA,
55 SYS_SLEEP,
56 NUM_SYS_POWERDOWN,
57};
58
59extern unsigned long l2x0_regs_phys;
60struct exynos_pmu_conf {
61 void __iomem *reg;
62 unsigned int val[NUM_SYS_POWERDOWN];
63};
64
65extern void exynos_sys_powerdown_conf(enum sys_powerdown mode);
Leela Krishna Amudalad3af6972014-05-16 04:23:24 +090066extern void exynos_cpu_power_down(int cpu);
67extern void exynos_cpu_power_up(int cpu);
68extern int exynos_cpu_power_state(int cpu);
Abhilash Kesavan096d21c2014-05-16 04:23:26 +090069extern void exynos_cluster_power_down(int cluster);
70extern void exynos_cluster_power_up(int cluster);
71extern int exynos_cluster_power_state(int cluster);
Daniel Lezcano3681baf2014-05-09 06:53:00 +090072extern void exynos_enter_aftr(void);
Kukjin Kimccd458c2012-12-31 10:06:48 -080073
Kukjin Kimcc511b82011-12-27 08:18:36 +010074#endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */