blob: f76967b1c551054da36b391e7413e47057641aae [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
Marc Zyngier06853ae2011-09-08 13:15:22 +010030extern struct smp_operations exynos_smp_ops;
31
32extern void exynos_cpu_die(unsigned int cpu);
33
Kukjin Kimccd458c2012-12-31 10:06:48 -080034/* PMU(Power Management Unit) support */
35
36#define PMU_TABLE_END NULL
37
38enum sys_powerdown {
39 SYS_AFTR,
40 SYS_LPA,
41 SYS_SLEEP,
42 NUM_SYS_POWERDOWN,
43};
44
45extern unsigned long l2x0_regs_phys;
46struct exynos_pmu_conf {
47 void __iomem *reg;
48 unsigned int val[NUM_SYS_POWERDOWN];
49};
50
51extern void exynos_sys_powerdown_conf(enum sys_powerdown mode);
Kukjin Kimccd458c2012-12-31 10:06:48 -080052
Kukjin Kimcc511b82011-12-27 08:18:36 +010053#endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */