]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/firmware/qcom_scm-32.c
9e3dc2f8d2b9a36e46eb21c656eb6d7e335d2a22
[mirror_ubuntu-zesty-kernel.git] / drivers / firmware / qcom_scm-32.c
1 /* Copyright (c) 2010,2015, The Linux Foundation. All rights reserved.
2 * Copyright (C) 2015 Linaro Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301, USA.
17 */
18
19 #include <linux/slab.h>
20 #include <linux/io.h>
21 #include <linux/module.h>
22 #include <linux/mutex.h>
23 #include <linux/errno.h>
24 #include <linux/err.h>
25 #include <linux/qcom_scm.h>
26
27 #include <asm/cacheflush.h>
28
29 #include "qcom_scm.h"
30
31 #define QCOM_SCM_FLAG_COLDBOOT_CPU0 0x00
32 #define QCOM_SCM_FLAG_COLDBOOT_CPU1 0x01
33 #define QCOM_SCM_FLAG_COLDBOOT_CPU2 0x08
34 #define QCOM_SCM_FLAG_COLDBOOT_CPU3 0x20
35
36 #define QCOM_SCM_FLAG_WARMBOOT_CPU0 0x04
37 #define QCOM_SCM_FLAG_WARMBOOT_CPU1 0x02
38 #define QCOM_SCM_FLAG_WARMBOOT_CPU2 0x10
39 #define QCOM_SCM_FLAG_WARMBOOT_CPU3 0x40
40
41 struct qcom_scm_entry {
42 int flag;
43 void *entry;
44 };
45
46 static struct qcom_scm_entry qcom_scm_wb[] = {
47 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU0 },
48 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU1 },
49 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU2 },
50 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU3 },
51 };
52
53 static DEFINE_MUTEX(qcom_scm_lock);
54
55 /**
56 * struct qcom_scm_command - one SCM command buffer
57 * @len: total available memory for command and response
58 * @buf_offset: start of command buffer
59 * @resp_hdr_offset: start of response buffer
60 * @id: command to be executed
61 * @buf: buffer returned from qcom_scm_get_command_buffer()
62 *
63 * An SCM command is laid out in memory as follows:
64 *
65 * ------------------- <--- struct qcom_scm_command
66 * | command header |
67 * ------------------- <--- qcom_scm_get_command_buffer()
68 * | command buffer |
69 * ------------------- <--- struct qcom_scm_response and
70 * | response header | qcom_scm_command_to_response()
71 * ------------------- <--- qcom_scm_get_response_buffer()
72 * | response buffer |
73 * -------------------
74 *
75 * There can be arbitrary padding between the headers and buffers so
76 * you should always use the appropriate qcom_scm_get_*_buffer() routines
77 * to access the buffers in a safe manner.
78 */
79 struct qcom_scm_command {
80 __le32 len;
81 __le32 buf_offset;
82 __le32 resp_hdr_offset;
83 __le32 id;
84 __le32 buf[0];
85 };
86
87 /**
88 * struct qcom_scm_response - one SCM response buffer
89 * @len: total available memory for response
90 * @buf_offset: start of response data relative to start of qcom_scm_response
91 * @is_complete: indicates if the command has finished processing
92 */
93 struct qcom_scm_response {
94 __le32 len;
95 __le32 buf_offset;
96 __le32 is_complete;
97 };
98
99 /**
100 * alloc_qcom_scm_command() - Allocate an SCM command
101 * @cmd_size: size of the command buffer
102 * @resp_size: size of the response buffer
103 *
104 * Allocate an SCM command, including enough room for the command
105 * and response headers as well as the command and response buffers.
106 *
107 * Returns a valid &qcom_scm_command on success or %NULL if the allocation fails.
108 */
109 static struct qcom_scm_command *alloc_qcom_scm_command(size_t cmd_size, size_t resp_size)
110 {
111 struct qcom_scm_command *cmd;
112 size_t len = sizeof(*cmd) + sizeof(struct qcom_scm_response) + cmd_size +
113 resp_size;
114 u32 offset;
115
116 cmd = kzalloc(PAGE_ALIGN(len), GFP_KERNEL);
117 if (cmd) {
118 cmd->len = cpu_to_le32(len);
119 offset = offsetof(struct qcom_scm_command, buf);
120 cmd->buf_offset = cpu_to_le32(offset);
121 cmd->resp_hdr_offset = cpu_to_le32(offset + cmd_size);
122 }
123 return cmd;
124 }
125
126 /**
127 * free_qcom_scm_command() - Free an SCM command
128 * @cmd: command to free
129 *
130 * Free an SCM command.
131 */
132 static inline void free_qcom_scm_command(struct qcom_scm_command *cmd)
133 {
134 kfree(cmd);
135 }
136
137 /**
138 * qcom_scm_command_to_response() - Get a pointer to a qcom_scm_response
139 * @cmd: command
140 *
141 * Returns a pointer to a response for a command.
142 */
143 static inline struct qcom_scm_response *qcom_scm_command_to_response(
144 const struct qcom_scm_command *cmd)
145 {
146 return (void *)cmd + le32_to_cpu(cmd->resp_hdr_offset);
147 }
148
149 /**
150 * qcom_scm_get_command_buffer() - Get a pointer to a command buffer
151 * @cmd: command
152 *
153 * Returns a pointer to the command buffer of a command.
154 */
155 static inline void *qcom_scm_get_command_buffer(const struct qcom_scm_command *cmd)
156 {
157 return (void *)cmd->buf;
158 }
159
160 /**
161 * qcom_scm_get_response_buffer() - Get a pointer to a response buffer
162 * @rsp: response
163 *
164 * Returns a pointer to a response buffer of a response.
165 */
166 static inline void *qcom_scm_get_response_buffer(const struct qcom_scm_response *rsp)
167 {
168 return (void *)rsp + le32_to_cpu(rsp->buf_offset);
169 }
170
171 static u32 smc(u32 cmd_addr)
172 {
173 int context_id;
174 register u32 r0 asm("r0") = 1;
175 register u32 r1 asm("r1") = (u32)&context_id;
176 register u32 r2 asm("r2") = cmd_addr;
177 do {
178 asm volatile(
179 __asmeq("%0", "r0")
180 __asmeq("%1", "r0")
181 __asmeq("%2", "r1")
182 __asmeq("%3", "r2")
183 #ifdef REQUIRES_SEC
184 ".arch_extension sec\n"
185 #endif
186 "smc #0 @ switch to secure world\n"
187 : "=r" (r0)
188 : "r" (r0), "r" (r1), "r" (r2)
189 : "r3");
190 } while (r0 == QCOM_SCM_INTERRUPTED);
191
192 return r0;
193 }
194
195 static int __qcom_scm_call(const struct qcom_scm_command *cmd)
196 {
197 int ret;
198 u32 cmd_addr = virt_to_phys(cmd);
199
200 /*
201 * Flush the command buffer so that the secure world sees
202 * the correct data.
203 */
204 secure_flush_area(cmd, cmd->len);
205
206 ret = smc(cmd_addr);
207 if (ret < 0)
208 ret = qcom_scm_remap_error(ret);
209
210 return ret;
211 }
212
213 static void qcom_scm_inv_range(unsigned long start, unsigned long end)
214 {
215 u32 cacheline_size, ctr;
216
217 asm volatile("mrc p15, 0, %0, c0, c0, 1" : "=r" (ctr));
218 cacheline_size = 4 << ((ctr >> 16) & 0xf);
219
220 start = round_down(start, cacheline_size);
221 end = round_up(end, cacheline_size);
222 outer_inv_range(start, end);
223 while (start < end) {
224 asm ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start)
225 : "memory");
226 start += cacheline_size;
227 }
228 dsb();
229 isb();
230 }
231
232 /**
233 * qcom_scm_call() - Send an SCM command
234 * @svc_id: service identifier
235 * @cmd_id: command identifier
236 * @cmd_buf: command buffer
237 * @cmd_len: length of the command buffer
238 * @resp_buf: response buffer
239 * @resp_len: length of the response buffer
240 *
241 * Sends a command to the SCM and waits for the command to finish processing.
242 *
243 * A note on cache maintenance:
244 * Note that any buffers that are expected to be accessed by the secure world
245 * must be flushed before invoking qcom_scm_call and invalidated in the cache
246 * immediately after qcom_scm_call returns. Cache maintenance on the command
247 * and response buffers is taken care of by qcom_scm_call; however, callers are
248 * responsible for any other cached buffers passed over to the secure world.
249 */
250 static int qcom_scm_call(u32 svc_id, u32 cmd_id, const void *cmd_buf,
251 size_t cmd_len, void *resp_buf, size_t resp_len)
252 {
253 int ret;
254 struct qcom_scm_command *cmd;
255 struct qcom_scm_response *rsp;
256 unsigned long start, end;
257
258 cmd = alloc_qcom_scm_command(cmd_len, resp_len);
259 if (!cmd)
260 return -ENOMEM;
261
262 cmd->id = cpu_to_le32((svc_id << 10) | cmd_id);
263 if (cmd_buf)
264 memcpy(qcom_scm_get_command_buffer(cmd), cmd_buf, cmd_len);
265
266 mutex_lock(&qcom_scm_lock);
267 ret = __qcom_scm_call(cmd);
268 mutex_unlock(&qcom_scm_lock);
269 if (ret)
270 goto out;
271
272 rsp = qcom_scm_command_to_response(cmd);
273 start = (unsigned long)rsp;
274
275 do {
276 qcom_scm_inv_range(start, start + sizeof(*rsp));
277 } while (!rsp->is_complete);
278
279 end = (unsigned long)qcom_scm_get_response_buffer(rsp) + resp_len;
280 qcom_scm_inv_range(start, end);
281
282 if (resp_buf)
283 memcpy(resp_buf, qcom_scm_get_response_buffer(rsp), resp_len);
284 out:
285 free_qcom_scm_command(cmd);
286 return ret;
287 }
288
289 #define SCM_CLASS_REGISTER (0x2 << 8)
290 #define SCM_MASK_IRQS BIT(5)
291 #define SCM_ATOMIC(svc, cmd, n) (((((svc) << 10)|((cmd) & 0x3ff)) << 12) | \
292 SCM_CLASS_REGISTER | \
293 SCM_MASK_IRQS | \
294 (n & 0xf))
295
296 /**
297 * qcom_scm_call_atomic1() - Send an atomic SCM command with one argument
298 * @svc_id: service identifier
299 * @cmd_id: command identifier
300 * @arg1: first argument
301 *
302 * This shall only be used with commands that are guaranteed to be
303 * uninterruptable, atomic and SMP safe.
304 */
305 static s32 qcom_scm_call_atomic1(u32 svc, u32 cmd, u32 arg1)
306 {
307 int context_id;
308
309 register u32 r0 asm("r0") = SCM_ATOMIC(svc, cmd, 1);
310 register u32 r1 asm("r1") = (u32)&context_id;
311 register u32 r2 asm("r2") = arg1;
312
313 asm volatile(
314 __asmeq("%0", "r0")
315 __asmeq("%1", "r0")
316 __asmeq("%2", "r1")
317 __asmeq("%3", "r2")
318 #ifdef REQUIRES_SEC
319 ".arch_extension sec\n"
320 #endif
321 "smc #0 @ switch to secure world\n"
322 : "=r" (r0)
323 : "r" (r0), "r" (r1), "r" (r2)
324 : "r3");
325 return r0;
326 }
327
328 u32 qcom_scm_get_version(void)
329 {
330 int context_id;
331 static u32 version = -1;
332 register u32 r0 asm("r0");
333 register u32 r1 asm("r1");
334
335 if (version != -1)
336 return version;
337
338 mutex_lock(&qcom_scm_lock);
339
340 r0 = 0x1 << 8;
341 r1 = (u32)&context_id;
342 do {
343 asm volatile(
344 __asmeq("%0", "r0")
345 __asmeq("%1", "r1")
346 __asmeq("%2", "r0")
347 __asmeq("%3", "r1")
348 #ifdef REQUIRES_SEC
349 ".arch_extension sec\n"
350 #endif
351 "smc #0 @ switch to secure world\n"
352 : "=r" (r0), "=r" (r1)
353 : "r" (r0), "r" (r1)
354 : "r2", "r3");
355 } while (r0 == QCOM_SCM_INTERRUPTED);
356
357 version = r1;
358 mutex_unlock(&qcom_scm_lock);
359
360 return version;
361 }
362 EXPORT_SYMBOL(qcom_scm_get_version);
363
364 /*
365 * Set the cold/warm boot address for one of the CPU cores.
366 */
367 static int qcom_scm_set_boot_addr(u32 addr, int flags)
368 {
369 struct {
370 __le32 flags;
371 __le32 addr;
372 } cmd;
373
374 cmd.addr = cpu_to_le32(addr);
375 cmd.flags = cpu_to_le32(flags);
376 return qcom_scm_call(QCOM_SCM_SVC_BOOT, QCOM_SCM_BOOT_ADDR,
377 &cmd, sizeof(cmd), NULL, 0);
378 }
379
380 /**
381 * qcom_scm_set_cold_boot_addr() - Set the cold boot address for cpus
382 * @entry: Entry point function for the cpus
383 * @cpus: The cpumask of cpus that will use the entry point
384 *
385 * Set the cold boot address of the cpus. Any cpu outside the supported
386 * range would be removed from the cpu present mask.
387 */
388 int __qcom_scm_set_cold_boot_addr(void *entry, const cpumask_t *cpus)
389 {
390 int flags = 0;
391 int cpu;
392 int scm_cb_flags[] = {
393 QCOM_SCM_FLAG_COLDBOOT_CPU0,
394 QCOM_SCM_FLAG_COLDBOOT_CPU1,
395 QCOM_SCM_FLAG_COLDBOOT_CPU2,
396 QCOM_SCM_FLAG_COLDBOOT_CPU3,
397 };
398
399 if (!cpus || (cpus && cpumask_empty(cpus)))
400 return -EINVAL;
401
402 for_each_cpu(cpu, cpus) {
403 if (cpu < ARRAY_SIZE(scm_cb_flags))
404 flags |= scm_cb_flags[cpu];
405 else
406 set_cpu_present(cpu, false);
407 }
408
409 return qcom_scm_set_boot_addr(virt_to_phys(entry), flags);
410 }
411
412 /**
413 * qcom_scm_set_warm_boot_addr() - Set the warm boot address for cpus
414 * @entry: Entry point function for the cpus
415 * @cpus: The cpumask of cpus that will use the entry point
416 *
417 * Set the Linux entry point for the SCM to transfer control to when coming
418 * out of a power down. CPU power down may be executed on cpuidle or hotplug.
419 */
420 int __qcom_scm_set_warm_boot_addr(void *entry, const cpumask_t *cpus)
421 {
422 int ret;
423 int flags = 0;
424 int cpu;
425
426 /*
427 * Reassign only if we are switching from hotplug entry point
428 * to cpuidle entry point or vice versa.
429 */
430 for_each_cpu(cpu, cpus) {
431 if (entry == qcom_scm_wb[cpu].entry)
432 continue;
433 flags |= qcom_scm_wb[cpu].flag;
434 }
435
436 /* No change in entry function */
437 if (!flags)
438 return 0;
439
440 ret = qcom_scm_set_boot_addr(virt_to_phys(entry), flags);
441 if (!ret) {
442 for_each_cpu(cpu, cpus)
443 qcom_scm_wb[cpu].entry = entry;
444 }
445
446 return ret;
447 }
448
449 /**
450 * qcom_scm_cpu_power_down() - Power down the cpu
451 * @flags - Flags to flush cache
452 *
453 * This is an end point to power down cpu. If there was a pending interrupt,
454 * the control would return from this function, otherwise, the cpu jumps to the
455 * warm boot entry point set for this cpu upon reset.
456 */
457 void __qcom_scm_cpu_power_down(u32 flags)
458 {
459 qcom_scm_call_atomic1(QCOM_SCM_SVC_BOOT, QCOM_SCM_CMD_TERMINATE_PC,
460 flags & QCOM_SCM_FLUSH_FLAG_MASK);
461 }
462
463 int __qcom_scm_is_call_available(u32 svc_id, u32 cmd_id)
464 {
465 int ret;
466 __le32 svc_cmd = cpu_to_le32((svc_id << 10) | cmd_id);
467 __le32 ret_val = 0;
468
469 ret = qcom_scm_call(QCOM_SCM_SVC_INFO, QCOM_IS_CALL_AVAIL_CMD, &svc_cmd,
470 sizeof(svc_cmd), &ret_val, sizeof(ret_val));
471 if (ret)
472 return ret;
473
474 return le32_to_cpu(ret_val);
475 }
476
477 int __qcom_scm_hdcp_req(struct qcom_scm_hdcp_req *req, u32 req_cnt, u32 *resp)
478 {
479 if (req_cnt > QCOM_SCM_HDCP_MAX_REQ_CNT)
480 return -ERANGE;
481
482 return qcom_scm_call(QCOM_SCM_SVC_HDCP, QCOM_SCM_CMD_HDCP,
483 req, req_cnt * sizeof(*req), resp, sizeof(*resp));
484 }