blob: b30562daf6961575d7f017e0cd586999e5b32156 [file] [log] [blame]
Tomasz Figabca28f82012-12-11 13:58:43 +09001/*
2 * Copyright (C) 2012 Samsung Electronics.
3 * Kyungmin Park <kyungmin.park@samsung.com>
4 * Tomasz Figa <t.figa@samsung.com>
5 *
6 * This program is free software,you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/kernel.h>
12#include <linux/io.h>
13#include <linux/init.h>
14#include <linux/of.h>
15#include <linux/of_address.h>
16
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090017#include <asm/cacheflush.h>
18#include <asm/cputype.h>
Tomasz Figabca28f82012-12-11 13:58:43 +090019#include <asm/firmware.h>
Tomasz Figa5445b642015-01-08 07:53:20 +010020#include <asm/hardware/cache-l2x0.h>
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090021#include <asm/suspend.h>
Tomasz Figabca28f82012-12-11 13:58:43 +090022
23#include <mach/map.h>
24
Sachin Kamatb3205de2014-05-13 07:13:44 +090025#include "common.h"
Tomasz Figabca28f82012-12-11 13:58:43 +090026#include "smc.h"
27
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090028#define EXYNOS_SLEEP_MAGIC 0x00000bad
Bartlomiej Zolnierkiewicza135e202014-09-25 17:59:41 +090029#define EXYNOS_AFTR_MAGIC 0xfcba0d10
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090030#define EXYNOS_BOOT_ADDR 0x8
31#define EXYNOS_BOOT_FLAG 0xc
32
Bartlomiej Zolnierkiewicza135e202014-09-25 17:59:41 +090033static void exynos_save_cp15(void)
34{
35 /* Save Power control and Diagnostic registers */
36 asm ("mrc p15, 0, %0, c15, c0, 0\n"
37 "mrc p15, 0, %1, c15, c0, 1\n"
38 : "=r" (cp15_save_power), "=r" (cp15_save_diag)
39 : : "cc");
40}
41
Bartlomiej Zolnierkiewicz0b7778a2014-09-25 17:59:41 +090042static int exynos_do_idle(unsigned long mode)
Tomasz Figabca28f82012-12-11 13:58:43 +090043{
Bartlomiej Zolnierkiewicz0b7778a2014-09-25 17:59:41 +090044 switch (mode) {
45 case FW_DO_IDLE_AFTR:
Bartlomiej Zolnierkiewicza135e202014-09-25 17:59:41 +090046 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
47 exynos_save_cp15();
48 __raw_writel(virt_to_phys(exynos_cpu_resume_ns),
49 sysram_ns_base_addr + 0x24);
50 __raw_writel(EXYNOS_AFTR_MAGIC, sysram_ns_base_addr + 0x20);
Bartlomiej Zolnierkiewicz89366402015-03-27 02:35:48 +090051 if (soc_is_exynos3250()) {
52 exynos_smc(SMC_CMD_SAVE, OP_TYPE_CORE,
53 SMC_POWERSTATE_IDLE, 0);
54 exynos_smc(SMC_CMD_SHUTDOWN, OP_TYPE_CLUSTER,
55 SMC_POWERSTATE_IDLE, 0);
56 } else
57 exynos_smc(SMC_CMD_CPU0AFTR, 0, 0, 0);
Bartlomiej Zolnierkiewicz0b7778a2014-09-25 17:59:41 +090058 break;
59 case FW_DO_IDLE_SLEEP:
60 exynos_smc(SMC_CMD_SLEEP, 0, 0, 0);
61 }
Tomasz Figabca28f82012-12-11 13:58:43 +090062 return 0;
63}
64
65static int exynos_cpu_boot(int cpu)
66{
Kyungmin Park989ff3f2014-05-09 06:19:18 +090067 /*
Chanwoo Choi64571582014-05-26 04:12:32 +090068 * Exynos3250 doesn't need to send smc command for secondary CPU boot
69 * because Exynos3250 removes WFE in secure mode.
70 */
71 if (soc_is_exynos3250())
72 return 0;
73
74 /*
Kyungmin Park989ff3f2014-05-09 06:19:18 +090075 * The second parameter of SMC_CMD_CPU1BOOT command means CPU id.
76 * But, Exynos4212 has only one secondary CPU so second parameter
77 * isn't used for informing secure firmware about CPU id.
78 */
79 if (soc_is_exynos4212())
80 cpu = 0;
81
Tomasz Figabca28f82012-12-11 13:58:43 +090082 exynos_smc(SMC_CMD_CPU1BOOT, cpu, 0, 0);
83 return 0;
84}
85
86static int exynos_set_cpu_boot_addr(int cpu, unsigned long boot_addr)
87{
Sachin Kamatb3205de2014-05-13 07:13:44 +090088 void __iomem *boot_reg;
89
90 if (!sysram_ns_base_addr)
91 return -ENODEV;
92
Olof Johanssonfe388fa2014-05-30 21:44:32 -070093 boot_reg = sysram_ns_base_addr + 0x1c;
Kyungmin Park989ff3f2014-05-09 06:19:18 +090094
Sachin Kamat35e75642014-07-08 08:03:49 +090095 /*
96 * Almost all Exynos-series of SoCs that run in secure mode don't need
97 * additional offset for every CPU, with Exynos4412 being the only
98 * exception.
99 */
100 if (soc_is_exynos4412())
101 boot_reg += 4 * cpu;
Tomasz Figabca28f82012-12-11 13:58:43 +0900102
103 __raw_writel(boot_addr, boot_reg);
104 return 0;
105}
106
Bartlomiej Zolnierkiewicz1225ad72015-03-18 14:09:56 +0100107static int exynos_get_cpu_boot_addr(int cpu, unsigned long *boot_addr)
108{
109 void __iomem *boot_reg;
110
111 if (!sysram_ns_base_addr)
112 return -ENODEV;
113
114 boot_reg = sysram_ns_base_addr + 0x1c;
115
116 if (soc_is_exynos4412())
117 boot_reg += 4 * cpu;
118
119 *boot_addr = __raw_readl(boot_reg);
120 return 0;
121}
122
Tomasz Figa2b9d9c32014-09-24 01:24:39 +0900123static int exynos_cpu_suspend(unsigned long arg)
124{
125 flush_cache_all();
126 outer_flush_all();
127
128 exynos_smc(SMC_CMD_SLEEP, 0, 0, 0);
129
130 pr_info("Failed to suspend the system\n");
131 writel(0, sysram_ns_base_addr + EXYNOS_BOOT_FLAG);
132 return 1;
133}
134
135static int exynos_suspend(void)
136{
Bartlomiej Zolnierkiewicza135e202014-09-25 17:59:41 +0900137 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
138 exynos_save_cp15();
Tomasz Figa2b9d9c32014-09-24 01:24:39 +0900139
140 writel(EXYNOS_SLEEP_MAGIC, sysram_ns_base_addr + EXYNOS_BOOT_FLAG);
141 writel(virt_to_phys(exynos_cpu_resume_ns),
142 sysram_ns_base_addr + EXYNOS_BOOT_ADDR);
143
144 return cpu_suspend(0, exynos_cpu_suspend);
145}
146
147static int exynos_resume(void)
148{
149 writel(0, sysram_ns_base_addr + EXYNOS_BOOT_FLAG);
150
151 return 0;
152}
153
Tomasz Figabca28f82012-12-11 13:58:43 +0900154static const struct firmware_ops exynos_firmware_ops = {
Arnd Bergmann03c1b762014-10-28 08:10:21 +0900155 .do_idle = IS_ENABLED(CONFIG_EXYNOS_CPU_SUSPEND) ? exynos_do_idle : NULL,
Tomasz Figabca28f82012-12-11 13:58:43 +0900156 .set_cpu_boot_addr = exynos_set_cpu_boot_addr,
Bartlomiej Zolnierkiewicz1225ad72015-03-18 14:09:56 +0100157 .get_cpu_boot_addr = exynos_get_cpu_boot_addr,
Tomasz Figabca28f82012-12-11 13:58:43 +0900158 .cpu_boot = exynos_cpu_boot,
Arnd Bergmann03c1b762014-10-28 08:10:21 +0900159 .suspend = IS_ENABLED(CONFIG_PM_SLEEP) ? exynos_suspend : NULL,
160 .resume = IS_ENABLED(CONFIG_EXYNOS_CPU_SUSPEND) ? exynos_resume : NULL,
Tomasz Figabca28f82012-12-11 13:58:43 +0900161};
162
Tomasz Figa5445b642015-01-08 07:53:20 +0100163static void exynos_l2_write_sec(unsigned long val, unsigned reg)
164{
165 static int l2cache_enabled;
166
167 switch (reg) {
168 case L2X0_CTRL:
169 if (val & L2X0_CTRL_EN) {
170 /*
171 * Before the cache can be enabled, due to firmware
172 * design, SMC_CMD_L2X0INVALL must be called.
173 */
174 if (!l2cache_enabled) {
175 exynos_smc(SMC_CMD_L2X0INVALL, 0, 0, 0);
176 l2cache_enabled = 1;
177 }
178 } else {
179 l2cache_enabled = 0;
180 }
181 exynos_smc(SMC_CMD_L2X0CTRL, val, 0, 0);
182 break;
183
184 case L2X0_DEBUG_CTRL:
185 exynos_smc(SMC_CMD_L2X0DEBUG, val, 0, 0);
186 break;
187
188 default:
189 WARN_ONCE(1, "%s: ignoring write to reg 0x%x\n", __func__, reg);
190 }
191}
192
193static void exynos_l2_configure(const struct l2x0_regs *regs)
194{
195 exynos_smc(SMC_CMD_L2X0SETUP1, regs->tag_latency, regs->data_latency,
196 regs->prefetch_ctrl);
197 exynos_smc(SMC_CMD_L2X0SETUP2, regs->pwr_ctrl, regs->aux_ctrl, 0);
198}
199
Tomasz Figabca28f82012-12-11 13:58:43 +0900200void __init exynos_firmware_init(void)
201{
Tomasz Figa4ee1cc72013-06-15 09:13:25 +0900202 struct device_node *nd;
203 const __be32 *addr;
Tomasz Figabca28f82012-12-11 13:58:43 +0900204
Tomasz Figa4ee1cc72013-06-15 09:13:25 +0900205 nd = of_find_compatible_node(NULL, NULL,
206 "samsung,secure-firmware");
207 if (!nd)
208 return;
Tomasz Figabca28f82012-12-11 13:58:43 +0900209
Tomasz Figa4ee1cc72013-06-15 09:13:25 +0900210 addr = of_get_address(nd, 0, NULL, NULL);
211 if (!addr) {
212 pr_err("%s: No address specified.\n", __func__);
213 return;
Tomasz Figabca28f82012-12-11 13:58:43 +0900214 }
215
216 pr_info("Running under secure firmware.\n");
217
218 register_firmware_ops(&exynos_firmware_ops);
Tomasz Figa5445b642015-01-08 07:53:20 +0100219
220 /*
221 * Exynos 4 SoCs (based on Cortex A9 and equipped with L2C-310),
222 * running under secure firmware, require certain registers of L2
223 * cache controller to be written in secure mode. Here .write_sec
224 * callback is provided to perform necessary SMC calls.
225 */
226 if (IS_ENABLED(CONFIG_CACHE_L2X0) &&
227 read_cpuid_part() == ARM_CPU_PART_CORTEX_A9) {
228 outer_cache.write_sec = exynos_l2_write_sec;
229 outer_cache.configure = exynos_l2_configure;
230 }
Tomasz Figabca28f82012-12-11 13:58:43 +0900231}
Bartlomiej Zolnierkiewiczdc1b9442015-03-27 02:32:56 +0900232
233#define REG_CPU_STATE_ADDR (sysram_ns_base_addr + 0x28)
234#define BOOT_MODE_MASK 0x1f
235
236void exynos_set_boot_flag(unsigned int cpu, unsigned int mode)
237{
238 unsigned int tmp;
239
240 tmp = __raw_readl(REG_CPU_STATE_ADDR + cpu * 4);
241
242 if (mode & BOOT_MODE_MASK)
243 tmp &= ~BOOT_MODE_MASK;
244
245 tmp |= mode;
246 __raw_writel(tmp, REG_CPU_STATE_ADDR + cpu * 4);
247}
248
249void exynos_clear_boot_flag(unsigned int cpu, unsigned int mode)
250{
251 unsigned int tmp;
252
253 tmp = __raw_readl(REG_CPU_STATE_ADDR + cpu * 4);
254 tmp &= ~mode;
255 __raw_writel(tmp, REG_CPU_STATE_ADDR + cpu * 4);
256}