blob: 6e7a72bdb17688fccc8a5acce3ac9b8eff905ad2 [file] [log] [blame]
Stephen Boyd2a1eb582010-08-27 10:01:23 -07001/* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
16 */
17
18#include <linux/slab.h>
19#include <linux/io.h>
20#include <linux/module.h>
21#include <linux/mutex.h>
22#include <linux/errno.h>
23#include <linux/err.h>
Kumar Gala916f7432015-02-26 15:49:09 -060024#include <linux/qcom_scm.h>
Stephen Boyd2a1eb582010-08-27 10:01:23 -070025
Stephen Boydf76c6912014-08-04 18:31:43 -070026#include <asm/outercache.h>
Stephen Boyd2a1eb582010-08-27 10:01:23 -070027#include <asm/cacheflush.h>
28
Stephen Boyd2a1eb582010-08-27 10:01:23 -070029
Kumar Gala4de43472015-02-04 16:30:46 -060030#define QCOM_SCM_ENOMEM -5
31#define QCOM_SCM_EOPNOTSUPP -4
32#define QCOM_SCM_EINVAL_ADDR -3
33#define QCOM_SCM_EINVAL_ARG -2
34#define QCOM_SCM_ERROR -1
35#define QCOM_SCM_INTERRUPTED 1
Stephen Boyd2a1eb582010-08-27 10:01:23 -070036
Kumar Gala4de43472015-02-04 16:30:46 -060037static DEFINE_MUTEX(qcom_scm_lock);
Stephen Boyd2a1eb582010-08-27 10:01:23 -070038
39/**
Kumar Gala4de43472015-02-04 16:30:46 -060040 * struct qcom_scm_command - one SCM command buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -070041 * @len: total available memory for command and response
42 * @buf_offset: start of command buffer
43 * @resp_hdr_offset: start of response buffer
44 * @id: command to be executed
Kumar Gala4de43472015-02-04 16:30:46 -060045 * @buf: buffer returned from qcom_scm_get_command_buffer()
Stephen Boyd2a1eb582010-08-27 10:01:23 -070046 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030047 * An SCM command is laid out in memory as follows:
Stephen Boyd2a1eb582010-08-27 10:01:23 -070048 *
Kumar Gala4de43472015-02-04 16:30:46 -060049 * ------------------- <--- struct qcom_scm_command
Stephen Boyd2a1eb582010-08-27 10:01:23 -070050 * | command header |
Kumar Gala4de43472015-02-04 16:30:46 -060051 * ------------------- <--- qcom_scm_get_command_buffer()
Stephen Boyd2a1eb582010-08-27 10:01:23 -070052 * | command buffer |
Kumar Gala4de43472015-02-04 16:30:46 -060053 * ------------------- <--- struct qcom_scm_response and
54 * | response header | qcom_scm_command_to_response()
55 * ------------------- <--- qcom_scm_get_response_buffer()
Stephen Boyd2a1eb582010-08-27 10:01:23 -070056 * | response buffer |
57 * -------------------
58 *
59 * There can be arbitrary padding between the headers and buffers so
Kumar Gala4de43472015-02-04 16:30:46 -060060 * you should always use the appropriate qcom_scm_get_*_buffer() routines
Stephen Boyd2a1eb582010-08-27 10:01:23 -070061 * to access the buffers in a safe manner.
62 */
Kumar Gala4de43472015-02-04 16:30:46 -060063struct qcom_scm_command {
Stephen Boyd7279db92015-01-21 11:21:15 -080064 __le32 len;
65 __le32 buf_offset;
66 __le32 resp_hdr_offset;
67 __le32 id;
68 __le32 buf[0];
Stephen Boyd2a1eb582010-08-27 10:01:23 -070069};
70
71/**
Kumar Gala4de43472015-02-04 16:30:46 -060072 * struct qcom_scm_response - one SCM response buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -070073 * @len: total available memory for response
Kumar Gala4de43472015-02-04 16:30:46 -060074 * @buf_offset: start of response data relative to start of qcom_scm_response
Stephen Boyd2a1eb582010-08-27 10:01:23 -070075 * @is_complete: indicates if the command has finished processing
76 */
Kumar Gala4de43472015-02-04 16:30:46 -060077struct qcom_scm_response {
Stephen Boyd7279db92015-01-21 11:21:15 -080078 __le32 len;
79 __le32 buf_offset;
80 __le32 is_complete;
Stephen Boyd2a1eb582010-08-27 10:01:23 -070081};
82
83/**
Kumar Gala4de43472015-02-04 16:30:46 -060084 * alloc_qcom_scm_command() - Allocate an SCM command
Stephen Boyd2a1eb582010-08-27 10:01:23 -070085 * @cmd_size: size of the command buffer
86 * @resp_size: size of the response buffer
87 *
88 * Allocate an SCM command, including enough room for the command
89 * and response headers as well as the command and response buffers.
90 *
Kumar Gala4de43472015-02-04 16:30:46 -060091 * Returns a valid &qcom_scm_command on success or %NULL if the allocation fails.
Stephen Boyd2a1eb582010-08-27 10:01:23 -070092 */
Kumar Gala4de43472015-02-04 16:30:46 -060093static struct qcom_scm_command *alloc_qcom_scm_command(size_t cmd_size, size_t resp_size)
Stephen Boyd2a1eb582010-08-27 10:01:23 -070094{
Kumar Gala4de43472015-02-04 16:30:46 -060095 struct qcom_scm_command *cmd;
96 size_t len = sizeof(*cmd) + sizeof(struct qcom_scm_response) + cmd_size +
Stephen Boyd2a1eb582010-08-27 10:01:23 -070097 resp_size;
Stephen Boyd7279db92015-01-21 11:21:15 -080098 u32 offset;
Stephen Boyd2a1eb582010-08-27 10:01:23 -070099
100 cmd = kzalloc(PAGE_ALIGN(len), GFP_KERNEL);
101 if (cmd) {
Stephen Boyd7279db92015-01-21 11:21:15 -0800102 cmd->len = cpu_to_le32(len);
Kumar Gala4de43472015-02-04 16:30:46 -0600103 offset = offsetof(struct qcom_scm_command, buf);
Stephen Boyd7279db92015-01-21 11:21:15 -0800104 cmd->buf_offset = cpu_to_le32(offset);
105 cmd->resp_hdr_offset = cpu_to_le32(offset + cmd_size);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700106 }
107 return cmd;
108}
109
110/**
Kumar Gala4de43472015-02-04 16:30:46 -0600111 * free_qcom_scm_command() - Free an SCM command
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700112 * @cmd: command to free
113 *
114 * Free an SCM command.
115 */
Kumar Gala4de43472015-02-04 16:30:46 -0600116static inline void free_qcom_scm_command(struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700117{
118 kfree(cmd);
119}
120
121/**
Kumar Gala4de43472015-02-04 16:30:46 -0600122 * qcom_scm_command_to_response() - Get a pointer to a qcom_scm_response
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700123 * @cmd: command
124 *
125 * Returns a pointer to a response for a command.
126 */
Kumar Gala4de43472015-02-04 16:30:46 -0600127static inline struct qcom_scm_response *qcom_scm_command_to_response(
128 const struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700129{
Stephen Boyd7279db92015-01-21 11:21:15 -0800130 return (void *)cmd + le32_to_cpu(cmd->resp_hdr_offset);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700131}
132
133/**
Kumar Gala4de43472015-02-04 16:30:46 -0600134 * qcom_scm_get_command_buffer() - Get a pointer to a command buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700135 * @cmd: command
136 *
137 * Returns a pointer to the command buffer of a command.
138 */
Kumar Gala4de43472015-02-04 16:30:46 -0600139static inline void *qcom_scm_get_command_buffer(const struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700140{
141 return (void *)cmd->buf;
142}
143
144/**
Kumar Gala4de43472015-02-04 16:30:46 -0600145 * qcom_scm_get_response_buffer() - Get a pointer to a response buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700146 * @rsp: response
147 *
148 * Returns a pointer to a response buffer of a response.
149 */
Kumar Gala4de43472015-02-04 16:30:46 -0600150static inline void *qcom_scm_get_response_buffer(const struct qcom_scm_response *rsp)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700151{
Stephen Boyd7279db92015-01-21 11:21:15 -0800152 return (void *)rsp + le32_to_cpu(rsp->buf_offset);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700153}
154
Kumar Gala4de43472015-02-04 16:30:46 -0600155static int qcom_scm_remap_error(int err)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700156{
Kumar Gala4de43472015-02-04 16:30:46 -0600157 pr_err("qcom_scm_call failed with error code %d\n", err);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700158 switch (err) {
Kumar Gala4de43472015-02-04 16:30:46 -0600159 case QCOM_SCM_ERROR:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700160 return -EIO;
Kumar Gala4de43472015-02-04 16:30:46 -0600161 case QCOM_SCM_EINVAL_ADDR:
162 case QCOM_SCM_EINVAL_ARG:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700163 return -EINVAL;
Kumar Gala4de43472015-02-04 16:30:46 -0600164 case QCOM_SCM_EOPNOTSUPP:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700165 return -EOPNOTSUPP;
Kumar Gala4de43472015-02-04 16:30:46 -0600166 case QCOM_SCM_ENOMEM:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700167 return -ENOMEM;
168 }
169 return -EINVAL;
170}
171
172static u32 smc(u32 cmd_addr)
173{
174 int context_id;
175 register u32 r0 asm("r0") = 1;
176 register u32 r1 asm("r1") = (u32)&context_id;
177 register u32 r2 asm("r2") = cmd_addr;
Stephen Boyd8e76a802011-02-24 10:44:44 -0800178 do {
179 asm volatile(
180 __asmeq("%0", "r0")
181 __asmeq("%1", "r0")
182 __asmeq("%2", "r1")
183 __asmeq("%3", "r2")
Marc Zyngiereca55f42011-11-08 13:07:36 +0000184#ifdef REQUIRES_SEC
185 ".arch_extension sec\n"
186#endif
Stephen Boyd8e76a802011-02-24 10:44:44 -0800187 "smc #0 @ switch to secure world\n"
188 : "=r" (r0)
189 : "r" (r0), "r" (r1), "r" (r2)
190 : "r3");
Kumar Gala4de43472015-02-04 16:30:46 -0600191 } while (r0 == QCOM_SCM_INTERRUPTED);
Stephen Boyd8e76a802011-02-24 10:44:44 -0800192
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700193 return r0;
194}
195
Kumar Gala4de43472015-02-04 16:30:46 -0600196static int __qcom_scm_call(const struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700197{
198 int ret;
199 u32 cmd_addr = virt_to_phys(cmd);
200
201 /*
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700202 * Flush the command buffer so that the secure world sees
203 * the correct data.
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700204 */
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700205 __cpuc_flush_dcache_area((void *)cmd, cmd->len);
206 outer_flush_range(cmd_addr, cmd_addr + cmd->len);
207
Stephen Boyd8e76a802011-02-24 10:44:44 -0800208 ret = smc(cmd_addr);
209 if (ret < 0)
Kumar Gala4de43472015-02-04 16:30:46 -0600210 ret = qcom_scm_remap_error(ret);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700211
212 return ret;
213}
214
Kumar Gala4de43472015-02-04 16:30:46 -0600215static void qcom_scm_inv_range(unsigned long start, unsigned long end)
Stephen Boydf76c6912014-08-04 18:31:43 -0700216{
Stephen Boyd30cbb0c2014-08-04 18:31:44 -0700217 u32 cacheline_size, ctr;
218
219 asm volatile("mrc p15, 0, %0, c0, c0, 1" : "=r" (ctr));
220 cacheline_size = 4 << ((ctr >> 16) & 0xf);
221
222 start = round_down(start, cacheline_size);
223 end = round_up(end, cacheline_size);
Stephen Boydf76c6912014-08-04 18:31:43 -0700224 outer_inv_range(start, end);
225 while (start < end) {
226 asm ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start)
227 : "memory");
Stephen Boyd30cbb0c2014-08-04 18:31:44 -0700228 start += cacheline_size;
Stephen Boydf76c6912014-08-04 18:31:43 -0700229 }
230 dsb();
231 isb();
232}
233
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700234/**
Kumar Gala4de43472015-02-04 16:30:46 -0600235 * qcom_scm_call() - Send an SCM command
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700236 * @svc_id: service identifier
237 * @cmd_id: command identifier
238 * @cmd_buf: command buffer
239 * @cmd_len: length of the command buffer
240 * @resp_buf: response buffer
241 * @resp_len: length of the response buffer
242 *
243 * Sends a command to the SCM and waits for the command to finish processing.
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700244 *
245 * A note on cache maintenance:
246 * Note that any buffers that are expected to be accessed by the secure world
Kumar Gala4de43472015-02-04 16:30:46 -0600247 * must be flushed before invoking qcom_scm_call and invalidated in the cache
248 * immediately after qcom_scm_call returns. Cache maintenance on the command
249 * and response buffers is taken care of by qcom_scm_call; however, callers are
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700250 * responsible for any other cached buffers passed over to the secure world.
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700251 */
Kumar Gala4de43472015-02-04 16:30:46 -0600252static int qcom_scm_call(u32 svc_id, u32 cmd_id, const void *cmd_buf,
253 size_t cmd_len, void *resp_buf, size_t resp_len)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700254{
255 int ret;
Kumar Gala4de43472015-02-04 16:30:46 -0600256 struct qcom_scm_command *cmd;
257 struct qcom_scm_response *rsp;
Stephen Boydf76c6912014-08-04 18:31:43 -0700258 unsigned long start, end;
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700259
Kumar Gala4de43472015-02-04 16:30:46 -0600260 cmd = alloc_qcom_scm_command(cmd_len, resp_len);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700261 if (!cmd)
262 return -ENOMEM;
263
Stephen Boyd7279db92015-01-21 11:21:15 -0800264 cmd->id = cpu_to_le32((svc_id << 10) | cmd_id);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700265 if (cmd_buf)
Kumar Gala4de43472015-02-04 16:30:46 -0600266 memcpy(qcom_scm_get_command_buffer(cmd), cmd_buf, cmd_len);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700267
Kumar Gala4de43472015-02-04 16:30:46 -0600268 mutex_lock(&qcom_scm_lock);
269 ret = __qcom_scm_call(cmd);
270 mutex_unlock(&qcom_scm_lock);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700271 if (ret)
272 goto out;
273
Kumar Gala4de43472015-02-04 16:30:46 -0600274 rsp = qcom_scm_command_to_response(cmd);
Stephen Boydf76c6912014-08-04 18:31:43 -0700275 start = (unsigned long)rsp;
276
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700277 do {
Kumar Gala4de43472015-02-04 16:30:46 -0600278 qcom_scm_inv_range(start, start + sizeof(*rsp));
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700279 } while (!rsp->is_complete);
280
Kumar Gala4de43472015-02-04 16:30:46 -0600281 end = (unsigned long)qcom_scm_get_response_buffer(rsp) + resp_len;
282 qcom_scm_inv_range(start, end);
Stephen Boydf76c6912014-08-04 18:31:43 -0700283
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700284 if (resp_buf)
Kumar Gala4de43472015-02-04 16:30:46 -0600285 memcpy(resp_buf, qcom_scm_get_response_buffer(rsp), resp_len);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700286out:
Kumar Gala4de43472015-02-04 16:30:46 -0600287 free_qcom_scm_command(cmd);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700288 return ret;
289}
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700290
Kumar Gala4de43472015-02-04 16:30:46 -0600291u32 qcom_scm_get_version(void)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700292{
293 int context_id;
294 static u32 version = -1;
Stephen Boyd98d4ded2011-02-24 10:44:43 -0800295 register u32 r0 asm("r0");
296 register u32 r1 asm("r1");
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700297
298 if (version != -1)
299 return version;
300
Kumar Gala4de43472015-02-04 16:30:46 -0600301 mutex_lock(&qcom_scm_lock);
Stephen Boyd98d4ded2011-02-24 10:44:43 -0800302
303 r0 = 0x1 << 8;
304 r1 = (u32)&context_id;
Stephen Boyd8e76a802011-02-24 10:44:44 -0800305 do {
306 asm volatile(
307 __asmeq("%0", "r0")
308 __asmeq("%1", "r1")
309 __asmeq("%2", "r0")
310 __asmeq("%3", "r1")
Stephen Boyd26e87b12012-04-30 19:17:20 -0700311#ifdef REQUIRES_SEC
312 ".arch_extension sec\n"
313#endif
Stephen Boyd8e76a802011-02-24 10:44:44 -0800314 "smc #0 @ switch to secure world\n"
315 : "=r" (r0), "=r" (r1)
316 : "r" (r0), "r" (r1)
317 : "r2", "r3");
Kumar Gala4de43472015-02-04 16:30:46 -0600318 } while (r0 == QCOM_SCM_INTERRUPTED);
Stephen Boyd8e76a802011-02-24 10:44:44 -0800319
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700320 version = r1;
Kumar Gala4de43472015-02-04 16:30:46 -0600321 mutex_unlock(&qcom_scm_lock);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700322
323 return version;
324}
Kumar Gala4de43472015-02-04 16:30:46 -0600325EXPORT_SYMBOL(qcom_scm_get_version);
Kumar Gala3d9b4482015-02-04 15:46:04 -0600326
Kumar Gala4de43472015-02-04 16:30:46 -0600327#define QCOM_SCM_SVC_BOOT 0x1
328#define QCOM_SCM_BOOT_ADDR 0x1
Kumar Gala3d9b4482015-02-04 15:46:04 -0600329/*
330 * Set the cold/warm boot address for one of the CPU cores.
331 */
Kumar Gala4de43472015-02-04 16:30:46 -0600332int qcom_scm_set_boot_addr(u32 addr, int flags)
Kumar Gala3d9b4482015-02-04 15:46:04 -0600333{
334 struct {
335 __le32 flags;
336 __le32 addr;
337 } cmd;
338
339 cmd.addr = cpu_to_le32(addr);
340 cmd.flags = cpu_to_le32(flags);
Kumar Gala4de43472015-02-04 16:30:46 -0600341 return qcom_scm_call(QCOM_SCM_SVC_BOOT, QCOM_SCM_BOOT_ADDR,
Kumar Gala3d9b4482015-02-04 15:46:04 -0600342 &cmd, sizeof(cmd), NULL, 0);
343}
Kumar Gala4de43472015-02-04 16:30:46 -0600344EXPORT_SYMBOL(qcom_scm_set_boot_addr);