blob: eb91d2350f8c97883b0d167c5abf719deeca44a1 [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
17#include <asm/firmware.h>
18
19#include <mach/map.h>
20
Sachin Kamatb3205de2014-05-13 07:13:44 +090021#include "common.h"
Tomasz Figabca28f82012-12-11 13:58:43 +090022#include "smc.h"
23
24static int exynos_do_idle(void)
25{
26 exynos_smc(SMC_CMD_SLEEP, 0, 0, 0);
27 return 0;
28}
29
30static int exynos_cpu_boot(int cpu)
31{
Kyungmin Park989ff3f2014-05-09 06:19:18 +090032 /*
Chanwoo Choi64571582014-05-26 04:12:32 +090033 * Exynos3250 doesn't need to send smc command for secondary CPU boot
34 * because Exynos3250 removes WFE in secure mode.
35 */
36 if (soc_is_exynos3250())
37 return 0;
38
39 /*
Kyungmin Park989ff3f2014-05-09 06:19:18 +090040 * The second parameter of SMC_CMD_CPU1BOOT command means CPU id.
41 * But, Exynos4212 has only one secondary CPU so second parameter
42 * isn't used for informing secure firmware about CPU id.
43 */
44 if (soc_is_exynos4212())
45 cpu = 0;
46
Tomasz Figabca28f82012-12-11 13:58:43 +090047 exynos_smc(SMC_CMD_CPU1BOOT, cpu, 0, 0);
48 return 0;
49}
50
51static int exynos_set_cpu_boot_addr(int cpu, unsigned long boot_addr)
52{
Sachin Kamatb3205de2014-05-13 07:13:44 +090053 void __iomem *boot_reg;
54
55 if (!sysram_ns_base_addr)
56 return -ENODEV;
57
Olof Johanssonfe388fa2014-05-30 21:44:32 -070058 boot_reg = sysram_ns_base_addr + 0x1c;
Kyungmin Park989ff3f2014-05-09 06:19:18 +090059
Chanwoo Choi64571582014-05-26 04:12:32 +090060 if (!soc_is_exynos4212() && !soc_is_exynos3250())
Kyungmin Park989ff3f2014-05-09 06:19:18 +090061 boot_reg += 4*cpu;
Tomasz Figabca28f82012-12-11 13:58:43 +090062
63 __raw_writel(boot_addr, boot_reg);
64 return 0;
65}
66
67static const struct firmware_ops exynos_firmware_ops = {
68 .do_idle = exynos_do_idle,
69 .set_cpu_boot_addr = exynos_set_cpu_boot_addr,
70 .cpu_boot = exynos_cpu_boot,
71};
72
73void __init exynos_firmware_init(void)
74{
Tomasz Figa4ee1cc72013-06-15 09:13:25 +090075 struct device_node *nd;
76 const __be32 *addr;
Tomasz Figabca28f82012-12-11 13:58:43 +090077
Tomasz Figa4ee1cc72013-06-15 09:13:25 +090078 nd = of_find_compatible_node(NULL, NULL,
79 "samsung,secure-firmware");
80 if (!nd)
81 return;
Tomasz Figabca28f82012-12-11 13:58:43 +090082
Tomasz Figa4ee1cc72013-06-15 09:13:25 +090083 addr = of_get_address(nd, 0, NULL, NULL);
84 if (!addr) {
85 pr_err("%s: No address specified.\n", __func__);
86 return;
Tomasz Figabca28f82012-12-11 13:58:43 +090087 }
88
89 pr_info("Running under secure firmware.\n");
90
91 register_firmware_ops(&exynos_firmware_ops);
92}