blob: f5e626d55951999ec8acb2ba98b4dd1bc015e991 [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 Figa2b9d9c32014-09-24 01:24:39 +090020#include <asm/suspend.h>
Tomasz Figabca28f82012-12-11 13:58:43 +090021
22#include <mach/map.h>
23
Sachin Kamatb3205de2014-05-13 07:13:44 +090024#include "common.h"
Tomasz Figabca28f82012-12-11 13:58:43 +090025#include "smc.h"
26
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090027#define EXYNOS_SLEEP_MAGIC 0x00000bad
28#define EXYNOS_BOOT_ADDR 0x8
29#define EXYNOS_BOOT_FLAG 0xc
30
Tomasz Figabca28f82012-12-11 13:58:43 +090031static int exynos_do_idle(void)
32{
33 exynos_smc(SMC_CMD_SLEEP, 0, 0, 0);
34 return 0;
35}
36
37static int exynos_cpu_boot(int cpu)
38{
Kyungmin Park989ff3f2014-05-09 06:19:18 +090039 /*
Chanwoo Choi64571582014-05-26 04:12:32 +090040 * Exynos3250 doesn't need to send smc command for secondary CPU boot
41 * because Exynos3250 removes WFE in secure mode.
42 */
43 if (soc_is_exynos3250())
44 return 0;
45
46 /*
Kyungmin Park989ff3f2014-05-09 06:19:18 +090047 * The second parameter of SMC_CMD_CPU1BOOT command means CPU id.
48 * But, Exynos4212 has only one secondary CPU so second parameter
49 * isn't used for informing secure firmware about CPU id.
50 */
51 if (soc_is_exynos4212())
52 cpu = 0;
53
Tomasz Figabca28f82012-12-11 13:58:43 +090054 exynos_smc(SMC_CMD_CPU1BOOT, cpu, 0, 0);
55 return 0;
56}
57
58static int exynos_set_cpu_boot_addr(int cpu, unsigned long boot_addr)
59{
Sachin Kamatb3205de2014-05-13 07:13:44 +090060 void __iomem *boot_reg;
61
62 if (!sysram_ns_base_addr)
63 return -ENODEV;
64
Olof Johanssonfe388fa2014-05-30 21:44:32 -070065 boot_reg = sysram_ns_base_addr + 0x1c;
Kyungmin Park989ff3f2014-05-09 06:19:18 +090066
Sachin Kamat35e75642014-07-08 08:03:49 +090067 /*
68 * Almost all Exynos-series of SoCs that run in secure mode don't need
69 * additional offset for every CPU, with Exynos4412 being the only
70 * exception.
71 */
72 if (soc_is_exynos4412())
73 boot_reg += 4 * cpu;
Tomasz Figabca28f82012-12-11 13:58:43 +090074
75 __raw_writel(boot_addr, boot_reg);
76 return 0;
77}
78
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090079static int exynos_cpu_suspend(unsigned long arg)
80{
81 flush_cache_all();
82 outer_flush_all();
83
84 exynos_smc(SMC_CMD_SLEEP, 0, 0, 0);
85
86 pr_info("Failed to suspend the system\n");
87 writel(0, sysram_ns_base_addr + EXYNOS_BOOT_FLAG);
88 return 1;
89}
90
91static int exynos_suspend(void)
92{
93 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9) {
94 /* Save Power control and Diagnostic registers */
95 asm ("mrc p15, 0, %0, c15, c0, 0\n"
96 "mrc p15, 0, %1, c15, c0, 1\n"
97 : "=r" (cp15_save_power), "=r" (cp15_save_diag)
98 : : "cc");
99 }
100
101 writel(EXYNOS_SLEEP_MAGIC, sysram_ns_base_addr + EXYNOS_BOOT_FLAG);
102 writel(virt_to_phys(exynos_cpu_resume_ns),
103 sysram_ns_base_addr + EXYNOS_BOOT_ADDR);
104
105 return cpu_suspend(0, exynos_cpu_suspend);
106}
107
108static int exynos_resume(void)
109{
110 writel(0, sysram_ns_base_addr + EXYNOS_BOOT_FLAG);
111
112 return 0;
113}
114
Tomasz Figabca28f82012-12-11 13:58:43 +0900115static const struct firmware_ops exynos_firmware_ops = {
116 .do_idle = exynos_do_idle,
117 .set_cpu_boot_addr = exynos_set_cpu_boot_addr,
118 .cpu_boot = exynos_cpu_boot,
Tomasz Figa2b9d9c32014-09-24 01:24:39 +0900119 .suspend = exynos_suspend,
120 .resume = exynos_resume,
Tomasz Figabca28f82012-12-11 13:58:43 +0900121};
122
123void __init exynos_firmware_init(void)
124{
Tomasz Figa4ee1cc72013-06-15 09:13:25 +0900125 struct device_node *nd;
126 const __be32 *addr;
Tomasz Figabca28f82012-12-11 13:58:43 +0900127
Tomasz Figa4ee1cc72013-06-15 09:13:25 +0900128 nd = of_find_compatible_node(NULL, NULL,
129 "samsung,secure-firmware");
130 if (!nd)
131 return;
Tomasz Figabca28f82012-12-11 13:58:43 +0900132
Tomasz Figa4ee1cc72013-06-15 09:13:25 +0900133 addr = of_get_address(nd, 0, NULL, NULL);
134 if (!addr) {
135 pr_err("%s: No address specified.\n", __func__);
136 return;
Tomasz Figabca28f82012-12-11 13:58:43 +0900137 }
138
139 pr_info("Running under secure firmware.\n");
140
141 register_firmware_ops(&exynos_firmware_ops);
142}