blob: 099b22f9fd9ffa1d4e98a15cb5df48bcb97550c0 [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
Chanwoo Choi940bc582014-05-26 04:12:26 +090018#define EXYNOS3250_SOC_ID 0xE3472000
19#define EXYNOS3_SOC_MASK 0xFFFFF000
20
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090021#define EXYNOS4210_CPU_ID 0x43210000
22#define EXYNOS4212_CPU_ID 0x43220000
23#define EXYNOS4412_CPU_ID 0xE4412200
24#define EXYNOS4_CPU_MASK 0xFFFE0000
25
26#define EXYNOS5250_SOC_ID 0x43520000
Tarek Dakhran723c9c72014-05-27 06:54:12 +090027#define EXYNOS5410_SOC_ID 0xE5410000
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090028#define EXYNOS5420_SOC_ID 0xE5420000
29#define EXYNOS5440_SOC_ID 0xE5440000
Arun Kumar K86c6f142014-05-26 04:16:11 +090030#define EXYNOS5800_SOC_ID 0xE5422000
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090031#define EXYNOS5_SOC_MASK 0xFFFFF000
32
33extern unsigned long samsung_cpu_id;
34
35#define IS_SAMSUNG_CPU(name, id, mask) \
36static inline int is_samsung_##name(void) \
37{ \
38 return ((samsung_cpu_id & mask) == (id & mask)); \
39}
40
Chanwoo Choi940bc582014-05-26 04:12:26 +090041IS_SAMSUNG_CPU(exynos3250, EXYNOS3250_SOC_ID, EXYNOS3_SOC_MASK)
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090042IS_SAMSUNG_CPU(exynos4210, EXYNOS4210_CPU_ID, EXYNOS4_CPU_MASK)
43IS_SAMSUNG_CPU(exynos4212, EXYNOS4212_CPU_ID, EXYNOS4_CPU_MASK)
44IS_SAMSUNG_CPU(exynos4412, EXYNOS4412_CPU_ID, EXYNOS4_CPU_MASK)
45IS_SAMSUNG_CPU(exynos5250, EXYNOS5250_SOC_ID, EXYNOS5_SOC_MASK)
Tarek Dakhran723c9c72014-05-27 06:54:12 +090046IS_SAMSUNG_CPU(exynos5410, EXYNOS5410_SOC_ID, EXYNOS5_SOC_MASK)
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090047IS_SAMSUNG_CPU(exynos5420, EXYNOS5420_SOC_ID, EXYNOS5_SOC_MASK)
48IS_SAMSUNG_CPU(exynos5440, EXYNOS5440_SOC_ID, EXYNOS5_SOC_MASK)
Arun Kumar K86c6f142014-05-26 04:16:11 +090049IS_SAMSUNG_CPU(exynos5800, EXYNOS5800_SOC_ID, EXYNOS5_SOC_MASK)
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090050
Chanwoo Choi940bc582014-05-26 04:12:26 +090051#if defined(CONFIG_SOC_EXYNOS3250)
52# define soc_is_exynos3250() is_samsung_exynos3250()
53#else
54# define soc_is_exynos3250() 0
55#endif
56
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090057#if defined(CONFIG_CPU_EXYNOS4210)
58# define soc_is_exynos4210() is_samsung_exynos4210()
59#else
60# define soc_is_exynos4210() 0
61#endif
62
63#if defined(CONFIG_SOC_EXYNOS4212)
64# define soc_is_exynos4212() is_samsung_exynos4212()
65#else
66# define soc_is_exynos4212() 0
67#endif
68
69#if defined(CONFIG_SOC_EXYNOS4412)
70# define soc_is_exynos4412() is_samsung_exynos4412()
71#else
72# define soc_is_exynos4412() 0
73#endif
74
75#define EXYNOS4210_REV_0 (0x0)
76#define EXYNOS4210_REV_1_0 (0x10)
77#define EXYNOS4210_REV_1_1 (0x11)
78
79#if defined(CONFIG_SOC_EXYNOS5250)
80# define soc_is_exynos5250() is_samsung_exynos5250()
81#else
82# define soc_is_exynos5250() 0
83#endif
84
Tarek Dakhran723c9c72014-05-27 06:54:12 +090085#if defined(CONFIG_SOC_EXYNOS5410)
86# define soc_is_exynos5410() is_samsung_exynos5410()
87#else
88# define soc_is_exynos5410() 0
89#endif
90
Sachin Kamat7cb2ded2014-05-13 07:11:57 +090091#if defined(CONFIG_SOC_EXYNOS5420)
92# define soc_is_exynos5420() is_samsung_exynos5420()
93#else
94# define soc_is_exynos5420() 0
95#endif
96
97#if defined(CONFIG_SOC_EXYNOS5440)
98# define soc_is_exynos5440() is_samsung_exynos5440()
99#else
100# define soc_is_exynos5440() 0
101#endif
102
Arun Kumar K86c6f142014-05-26 04:16:11 +0900103#if defined(CONFIG_SOC_EXYNOS5800)
104# define soc_is_exynos5800() is_samsung_exynos5800()
105#else
106# define soc_is_exynos5800() 0
107#endif
108
Sachin Kamat7cb2ded2014-05-13 07:11:57 +0900109#define soc_is_exynos4() (soc_is_exynos4210() || soc_is_exynos4212() || \
110 soc_is_exynos4412())
Tarek Dakhran723c9c72014-05-27 06:54:12 +0900111#define soc_is_exynos5() (soc_is_exynos5250() || soc_is_exynos5410() || \
112 soc_is_exynos5420() || soc_is_exynos5800())
Sachin Kamat7cb2ded2014-05-13 07:11:57 +0900113
Arnd Bergmann034c0972013-04-10 11:35:29 +0200114void mct_init(void __iomem *base, int irq_g0, int irq_l0, int irq_l1);
Kukjin Kim906c7892012-02-11 21:27:08 +0900115
Marc Zyngier06853ae2011-09-08 13:15:22 +0100116struct map_desc;
Arnd Bergmann0e2238e2013-06-19 01:36:47 +0900117void exynos_init_io(void);
Sachin Kamatcbf08b92014-03-21 02:14:30 +0900118void exynos_restart(enum reboot_mode mode, const char *cmd);
Bartlomiej Zolnierkiewicz35baa332013-08-30 12:15:04 +0200119void exynos_cpuidle_init(void);
Lukasz Majewskid568b6f2013-11-28 13:42:42 +0100120void exynos_cpufreq_init(void);
Shawn Guobb13fab2012-04-26 10:35:40 +0800121void exynos_init_late(void);
122
Tomasz Figabca28f82012-12-11 13:58:43 +0900123void exynos_firmware_init(void);
124
Tomasz Figad710aa32014-03-18 07:28:27 +0900125#ifdef CONFIG_PINCTRL_EXYNOS
126extern u32 exynos_get_eint_wake_mask(void);
127#else
128static inline u32 exynos_get_eint_wake_mask(void) { return 0xffffffff; }
129#endif
130
Tomasz Figa559ba232014-03-18 07:28:22 +0900131#ifdef CONFIG_PM_SLEEP
132extern void __init exynos_pm_init(void);
133#else
134static inline void exynos_pm_init(void) {}
135#endif
136
Tomasz Figad710aa32014-03-18 07:28:27 +0900137extern void exynos_cpu_resume(void);
138
Marc Zyngier06853ae2011-09-08 13:15:22 +0100139extern struct smp_operations exynos_smp_ops;
140
141extern void exynos_cpu_die(unsigned int cpu);
142
Kukjin Kimccd458c2012-12-31 10:06:48 -0800143/* PMU(Power Management Unit) support */
144
145#define PMU_TABLE_END NULL
146
147enum sys_powerdown {
148 SYS_AFTR,
149 SYS_LPA,
150 SYS_SLEEP,
151 NUM_SYS_POWERDOWN,
152};
153
154extern unsigned long l2x0_regs_phys;
155struct exynos_pmu_conf {
156 void __iomem *reg;
157 unsigned int val[NUM_SYS_POWERDOWN];
158};
159
160extern void exynos_sys_powerdown_conf(enum sys_powerdown mode);
Kukjin Kimccd458c2012-12-31 10:06:48 -0800161
Sachin Kamat7cb2ded2014-05-13 07:11:57 +0900162extern void s5p_init_cpu(void __iomem *cpuid_addr);
163extern unsigned int samsung_rev(void);
164
Kukjin Kimcc511b82011-12-27 08:18:36 +0100165#endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */