blob: 5f30a5774e57ed5575f2c0ea8b34a74edbfc017d [file] [log] [blame]
Carlo Caione2c4ddb22016-08-27 15:43:43 +02001/*
2 * Amlogic Secure Monitor driver
3 *
4 * Copyright (C) 2016 Endless Mobile, Inc.
5 * Author: Carlo Caione <carlo@endlessm.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program. If not, see <http://www.gnu.org/licenses/>.
13 */
14
15#define pr_fmt(fmt) "meson-sm: " fmt
16
17#include <linux/arm-smccc.h>
18#include <linux/bug.h>
19#include <linux/io.h>
20#include <linux/of.h>
21#include <linux/of_device.h>
22#include <linux/printk.h>
23#include <linux/types.h>
24#include <linux/sizes.h>
25
26#include <linux/firmware/meson/meson_sm.h>
27
28struct meson_sm_cmd {
29 unsigned int index;
30 u32 smc_id;
31};
32#define CMD(d, s) { .index = (d), .smc_id = (s), }
33
34struct meson_sm_chip {
35 unsigned int shmem_size;
36 u32 cmd_shmem_in_base;
37 u32 cmd_shmem_out_base;
38 struct meson_sm_cmd cmd[];
39};
40
41struct meson_sm_chip gxbb_chip = {
42 .shmem_size = SZ_4K,
43 .cmd_shmem_in_base = 0x82000020,
44 .cmd_shmem_out_base = 0x82000021,
45 .cmd = {
46 CMD(SM_EFUSE_READ, 0x82000030),
47 CMD(SM_EFUSE_WRITE, 0x82000031),
48 CMD(SM_EFUSE_USER_MAX, 0x82000033),
49 { /* sentinel */ },
50 },
51};
52
53struct meson_sm_firmware {
54 const struct meson_sm_chip *chip;
55 void __iomem *sm_shmem_in_base;
56 void __iomem *sm_shmem_out_base;
57};
58
59static struct meson_sm_firmware fw;
60
61static u32 meson_sm_get_cmd(const struct meson_sm_chip *chip,
62 unsigned int cmd_index)
63{
64 const struct meson_sm_cmd *cmd = chip->cmd;
65
66 while (cmd->smc_id && cmd->index != cmd_index)
67 cmd++;
68
69 return cmd->smc_id;
70}
71
72static u32 __meson_sm_call(u32 cmd, u32 arg0, u32 arg1, u32 arg2,
73 u32 arg3, u32 arg4)
74{
75 struct arm_smccc_res res;
76
77 arm_smccc_smc(cmd, arg0, arg1, arg2, arg3, arg4, 0, 0, &res);
78 return res.a0;
79}
80
81static void __iomem *meson_sm_map_shmem(u32 cmd_shmem, unsigned int size)
82{
83 u32 sm_phy_base;
84
85 sm_phy_base = __meson_sm_call(cmd_shmem, 0, 0, 0, 0, 0);
86 if (!sm_phy_base)
87 return 0;
88
89 return ioremap_cache(sm_phy_base, size);
90}
91
92/**
93 * meson_sm_call - generic SMC32 call to the secure-monitor
94 *
95 * @cmd_index: Index of the SMC32 function ID
96 * @ret: Returned value
97 * @arg0: SMC32 Argument 0
98 * @arg1: SMC32 Argument 1
99 * @arg2: SMC32 Argument 2
100 * @arg3: SMC32 Argument 3
101 * @arg4: SMC32 Argument 4
102 *
103 * Return: 0 on success, a negative value on error
104 */
105int meson_sm_call(unsigned int cmd_index, u32 *ret, u32 arg0,
106 u32 arg1, u32 arg2, u32 arg3, u32 arg4)
107{
108 u32 cmd, lret;
109
110 if (!fw.chip)
111 return -ENOENT;
112
113 cmd = meson_sm_get_cmd(fw.chip, cmd_index);
114 if (!cmd)
115 return -EINVAL;
116
117 lret = __meson_sm_call(cmd, arg0, arg1, arg2, arg3, arg4);
118
119 if (ret)
120 *ret = lret;
121
122 return 0;
123}
124EXPORT_SYMBOL(meson_sm_call);
125
126/**
127 * meson_sm_call_read - retrieve data from secure-monitor
128 *
129 * @buffer: Buffer to store the retrieved data
Carlo Caione83e007a2017-03-03 16:17:58 +0100130 * @bsize: Size of the buffer
Carlo Caione2c4ddb22016-08-27 15:43:43 +0200131 * @cmd_index: Index of the SMC32 function ID
132 * @arg0: SMC32 Argument 0
133 * @arg1: SMC32 Argument 1
134 * @arg2: SMC32 Argument 2
135 * @arg3: SMC32 Argument 3
136 * @arg4: SMC32 Argument 4
137 *
138 * Return: size of read data on success, a negative value on error
139 */
Carlo Caione83e007a2017-03-03 16:17:58 +0100140int meson_sm_call_read(void *buffer, unsigned int bsize, unsigned int cmd_index,
141 u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4)
Carlo Caione2c4ddb22016-08-27 15:43:43 +0200142{
143 u32 size;
144
145 if (!fw.chip)
146 return -ENOENT;
147
148 if (!fw.chip->cmd_shmem_out_base)
149 return -EINVAL;
150
Carlo Caione83e007a2017-03-03 16:17:58 +0100151 if (bsize > fw.chip->shmem_size)
152 return -EINVAL;
153
Carlo Caione2c4ddb22016-08-27 15:43:43 +0200154 if (meson_sm_call(cmd_index, &size, arg0, arg1, arg2, arg3, arg4) < 0)
155 return -EINVAL;
156
Carlo Caione83e007a2017-03-03 16:17:58 +0100157 if (!size || size > bsize)
Carlo Caione2c4ddb22016-08-27 15:43:43 +0200158 return -EINVAL;
159
160 if (buffer)
161 memcpy(buffer, fw.sm_shmem_out_base, size);
162
163 return size;
164}
165EXPORT_SYMBOL(meson_sm_call_read);
166
167/**
168 * meson_sm_call_write - send data to secure-monitor
169 *
170 * @buffer: Buffer containing data to send
171 * @size: Size of the data to send
172 * @cmd_index: Index of the SMC32 function ID
173 * @arg0: SMC32 Argument 0
174 * @arg1: SMC32 Argument 1
175 * @arg2: SMC32 Argument 2
176 * @arg3: SMC32 Argument 3
177 * @arg4: SMC32 Argument 4
178 *
179 * Return: size of sent data on success, a negative value on error
180 */
181int meson_sm_call_write(void *buffer, unsigned int size, unsigned int cmd_index,
182 u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4)
183{
184 u32 written;
185
186 if (!fw.chip)
187 return -ENOENT;
188
189 if (size > fw.chip->shmem_size)
190 return -EINVAL;
191
192 if (!fw.chip->cmd_shmem_in_base)
193 return -EINVAL;
194
195 memcpy(fw.sm_shmem_in_base, buffer, size);
196
197 if (meson_sm_call(cmd_index, &written, arg0, arg1, arg2, arg3, arg4) < 0)
198 return -EINVAL;
199
200 if (!written)
201 return -EINVAL;
202
203 return written;
204}
205EXPORT_SYMBOL(meson_sm_call_write);
206
207static const struct of_device_id meson_sm_ids[] = {
208 { .compatible = "amlogic,meson-gxbb-sm", .data = &gxbb_chip },
209 { /* sentinel */ },
210};
211
212int __init meson_sm_init(void)
213{
214 const struct meson_sm_chip *chip;
215 const struct of_device_id *matched_np;
216 struct device_node *np;
217
218 np = of_find_matching_node_and_match(NULL, meson_sm_ids, &matched_np);
219 if (!np)
220 return -ENODEV;
221
222 chip = matched_np->data;
223 if (!chip) {
224 pr_err("unable to setup secure-monitor data\n");
225 goto out;
226 }
227
228 if (chip->cmd_shmem_in_base) {
229 fw.sm_shmem_in_base = meson_sm_map_shmem(chip->cmd_shmem_in_base,
230 chip->shmem_size);
231 if (WARN_ON(!fw.sm_shmem_in_base))
232 goto out;
233 }
234
235 if (chip->cmd_shmem_out_base) {
236 fw.sm_shmem_out_base = meson_sm_map_shmem(chip->cmd_shmem_out_base,
237 chip->shmem_size);
238 if (WARN_ON(!fw.sm_shmem_out_base))
239 goto out_in_base;
240 }
241
242 fw.chip = chip;
243 pr_info("secure-monitor enabled\n");
244
245 return 0;
246
247out_in_base:
248 iounmap(fw.sm_shmem_in_base);
249out:
250 return -EINVAL;
251}
252device_initcall(meson_sm_init);