summaryrefslogtreecommitdiff
path: root/arch/arm/mach-exynos/firmware.c
blob: 2cdec14e148c72540689c7e954b4ef2d8cae4c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
 * Copyright (C) 2012 Samsung Electronics.
 * Kyungmin Park <kyungmin.park@samsung.com>
 * Tomasz Figa <t.figa@samsung.com>
 *
 * This program is free software,you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/io.h>
#include <linux/init.h>
#include <linux/of.h>
#include <linux/of_address.h>

#include <asm/firmware.h>
#include <asm/hardware/cache-l2x0.h>

#include <mach/map.h>

#include <plat/cpu.h>

#include "common.h"
#include "smc.h"

#define EXYNOS_SLEEP_MAGIC	0x00000BAD
#define EXYNOS_AFTR_MAGIC	0xFCBA0D10

static int exynos_do_idle(int mode)
{
	switch (mode) {
	case EXYNOS_DO_IDLE_AFTR:
		__raw_writel(virt_to_phys(s3c_cpu_resume), S5P_VA_SYSRAM_NS +
			     0x24);
		__raw_writel(EXYNOS_AFTR_MAGIC, S5P_VA_SYSRAM_NS + 0x20);
		exynos_smc(SMC_CMD_CPU0AFTR, 0, 0, 0);

		break;
	case EXYNOS_DO_IDLE_NORMAL:
		exynos_smc(SMC_CMD_SLEEP, 0, 0, 0);
	}

	return 0;
}

static int exynos_cpu_boot(int cpu)
{
	/*
	 * Exynos3250 doesn't need to send smc command for secondary CPU boot
	 * because Exynos3250 removes WFE in secure mode.
	 */
	if (soc_is_exynos3250())
		return 0;

	/*
	 * The second parameter of SMC_CMD_CPU1BOOT command means CPU id.
	 * But, Exynos4212 has only one secondary CPU so second parameter
	 * isn't used for informing secure firmware about CPU id.
	 */
	if (soc_is_exynos4212())
		cpu = 0;

	exynos_smc(SMC_CMD_CPU1BOOT, cpu, 0, 0);
	return 0;
}

static int exynos_set_cpu_boot_addr(int cpu, unsigned long boot_addr)
{
	void __iomem *boot_reg = S5P_VA_SYSRAM_NS + 0x1c;

	if (!soc_is_exynos4212() && !soc_is_exynos3250())
		boot_reg += 4*cpu;

	__raw_writel(boot_addr, boot_reg);
	return 0;
}

#ifdef CONFIG_CACHE_L2X0
static int exynos_l2x0_init(void)
{
	exynos_smc(SMC_CMD_L2X0INVALL, 0, 0, 0);
	exynos_smc(SMC_CMD_L2X0CTRL, 1, 0, 0);
	return 0;
}

static int exynos_l2x0_resume(void)
{
	exynos_smc(SMC_CMD_L2X0SETUP1, l2x0_saved_regs.tag_latency,
		   l2x0_saved_regs.data_latency, l2x0_saved_regs.prefetch_ctrl);
	exynos_smc(SMC_CMD_L2X0SETUP2, 0x3, 0x7C470001, 0xC200FFFF);
	exynos_smc(SMC_CMD_L2X0INVALL, 0, 0, 0);
	exynos_smc(SMC_CMD_L2X0CTRL, 1, 0, 0);

	return 0;
}
#endif

static int exynos_suspend(unsigned long resume_addr)
{
	writel(EXYNOS_SLEEP_MAGIC, S5P_VA_SYSRAM_NS + 0xC);
	writel(resume_addr, S5P_VA_SYSRAM_NS + 0x8);
	exynos_smc(SMC_CMD_SLEEP, 0, 0, 0);

	return 0;
}

static int exynos_resume(void)
{
	writel(0, S5P_VA_SYSRAM_NS + 0xC);

	return 0;
}

static int exynos_c15resume(u32 *regs)
{
	exynos_smc(SMC_CMD_C15RESUME, regs[0], regs[1], 0);

	return 0;
}

static int exynos_readsfr(unsigned int addr, unsigned int *value)
{
	*value = exynos_smc2(SMC_CMD_REG, SMC_REG_SFR_R(addr), 0, 0);
	return 0;
}

static int exynos_writesfr(unsigned int addr, unsigned int value)
{
	exynos_smc(SMC_CMD_REG, SMC_REG_SFR_W(addr), value, 0);
	return 0;
}

static const struct firmware_ops exynos_firmware_ops = {
	.do_idle		= exynos_do_idle,
	.set_cpu_boot_addr	= exynos_set_cpu_boot_addr,
	.cpu_boot		= exynos_cpu_boot,
#ifdef CONFIG_CACHE_L2X0
	.l2x0_init	= exynos_l2x0_init,
	.l2x0_resume	= exynos_l2x0_resume,
#endif
	.suspend	= exynos_suspend,
	.resume		= exynos_resume,
	.readsfr	= exynos_readsfr,
	.writesfr	= exynos_writesfr,
	.c15resume	= exynos_c15resume,
};

void __init exynos_firmware_init(void)
{
	if (of_have_populated_dt()) {
		struct device_node *nd;
		const __be32 *addr;

		nd = of_find_compatible_node(NULL, NULL,
						"samsung,secure-firmware");
		if (!nd)
			return;

		addr = of_get_address(nd, 0, NULL, NULL);
		if (!addr) {
			pr_err("%s: No address specified.\n", __func__);
			return;
		}
	}

	pr_info("Running under secure firmware.\n");

	register_firmware_ops(&exynos_firmware_ops);
}