blob: 4d8ede4807ac6f8120312608a4497d38714672ea [file] [log] [blame]
Stephen Boyd2a1eb582010-08-27 10:01:23 -07001/* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
Lina Iyer2ce76a62015-03-02 16:30:29 -07002 * Copyright (C) 2015 Linaro Ltd.
Stephen Boyd2a1eb582010-08-27 10:01:23 -07003 *
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>
Kumar Gala916f7432015-02-26 15:49:09 -060025#include <linux/qcom_scm.h>
Stephen Boyd2a1eb582010-08-27 10:01:23 -070026
Stephen Boydf76c6912014-08-04 18:31:43 -070027#include <asm/outercache.h>
Stephen Boyd2a1eb582010-08-27 10:01:23 -070028#include <asm/cacheflush.h>
29
Stephen Boyd2a1eb582010-08-27 10:01:23 -070030
Kumar Gala4de43472015-02-04 16:30:46 -060031#define QCOM_SCM_ENOMEM -5
32#define QCOM_SCM_EOPNOTSUPP -4
33#define QCOM_SCM_EINVAL_ADDR -3
34#define QCOM_SCM_EINVAL_ARG -2
35#define QCOM_SCM_ERROR -1
36#define QCOM_SCM_INTERRUPTED 1
Stephen Boyd2a1eb582010-08-27 10:01:23 -070037
Lina Iyera353e4a2015-03-02 16:30:28 -070038#define QCOM_SCM_FLAG_COLDBOOT_CPU0 0x00
39#define QCOM_SCM_FLAG_COLDBOOT_CPU1 0x01
40#define QCOM_SCM_FLAG_COLDBOOT_CPU2 0x08
41#define QCOM_SCM_FLAG_COLDBOOT_CPU3 0x20
42
Lina Iyer2ce76a62015-03-02 16:30:29 -070043#define QCOM_SCM_FLAG_WARMBOOT_CPU0 0x04
44#define QCOM_SCM_FLAG_WARMBOOT_CPU1 0x02
45#define QCOM_SCM_FLAG_WARMBOOT_CPU2 0x10
46#define QCOM_SCM_FLAG_WARMBOOT_CPU3 0x40
47
48struct qcom_scm_entry {
49 int flag;
50 void *entry;
51};
52
53static struct qcom_scm_entry qcom_scm_wb[] = {
54 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU0 },
55 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU1 },
56 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU2 },
57 { .flag = QCOM_SCM_FLAG_WARMBOOT_CPU3 },
58};
59
Kumar Gala4de43472015-02-04 16:30:46 -060060static DEFINE_MUTEX(qcom_scm_lock);
Stephen Boyd2a1eb582010-08-27 10:01:23 -070061
62/**
Kumar Gala4de43472015-02-04 16:30:46 -060063 * struct qcom_scm_command - one SCM command buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -070064 * @len: total available memory for command and response
65 * @buf_offset: start of command buffer
66 * @resp_hdr_offset: start of response buffer
67 * @id: command to be executed
Kumar Gala4de43472015-02-04 16:30:46 -060068 * @buf: buffer returned from qcom_scm_get_command_buffer()
Stephen Boyd2a1eb582010-08-27 10:01:23 -070069 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030070 * An SCM command is laid out in memory as follows:
Stephen Boyd2a1eb582010-08-27 10:01:23 -070071 *
Kumar Gala4de43472015-02-04 16:30:46 -060072 * ------------------- <--- struct qcom_scm_command
Stephen Boyd2a1eb582010-08-27 10:01:23 -070073 * | command header |
Kumar Gala4de43472015-02-04 16:30:46 -060074 * ------------------- <--- qcom_scm_get_command_buffer()
Stephen Boyd2a1eb582010-08-27 10:01:23 -070075 * | command buffer |
Kumar Gala4de43472015-02-04 16:30:46 -060076 * ------------------- <--- struct qcom_scm_response and
77 * | response header | qcom_scm_command_to_response()
78 * ------------------- <--- qcom_scm_get_response_buffer()
Stephen Boyd2a1eb582010-08-27 10:01:23 -070079 * | response buffer |
80 * -------------------
81 *
82 * There can be arbitrary padding between the headers and buffers so
Kumar Gala4de43472015-02-04 16:30:46 -060083 * you should always use the appropriate qcom_scm_get_*_buffer() routines
Stephen Boyd2a1eb582010-08-27 10:01:23 -070084 * to access the buffers in a safe manner.
85 */
Kumar Gala4de43472015-02-04 16:30:46 -060086struct qcom_scm_command {
Stephen Boyd7279db92015-01-21 11:21:15 -080087 __le32 len;
88 __le32 buf_offset;
89 __le32 resp_hdr_offset;
90 __le32 id;
91 __le32 buf[0];
Stephen Boyd2a1eb582010-08-27 10:01:23 -070092};
93
94/**
Kumar Gala4de43472015-02-04 16:30:46 -060095 * struct qcom_scm_response - one SCM response buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -070096 * @len: total available memory for response
Kumar Gala4de43472015-02-04 16:30:46 -060097 * @buf_offset: start of response data relative to start of qcom_scm_response
Stephen Boyd2a1eb582010-08-27 10:01:23 -070098 * @is_complete: indicates if the command has finished processing
99 */
Kumar Gala4de43472015-02-04 16:30:46 -0600100struct qcom_scm_response {
Stephen Boyd7279db92015-01-21 11:21:15 -0800101 __le32 len;
102 __le32 buf_offset;
103 __le32 is_complete;
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700104};
105
106/**
Kumar Gala4de43472015-02-04 16:30:46 -0600107 * alloc_qcom_scm_command() - Allocate an SCM command
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700108 * @cmd_size: size of the command buffer
109 * @resp_size: size of the response buffer
110 *
111 * Allocate an SCM command, including enough room for the command
112 * and response headers as well as the command and response buffers.
113 *
Kumar Gala4de43472015-02-04 16:30:46 -0600114 * Returns a valid &qcom_scm_command on success or %NULL if the allocation fails.
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700115 */
Kumar Gala4de43472015-02-04 16:30:46 -0600116static struct qcom_scm_command *alloc_qcom_scm_command(size_t cmd_size, size_t resp_size)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700117{
Kumar Gala4de43472015-02-04 16:30:46 -0600118 struct qcom_scm_command *cmd;
119 size_t len = sizeof(*cmd) + sizeof(struct qcom_scm_response) + cmd_size +
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700120 resp_size;
Stephen Boyd7279db92015-01-21 11:21:15 -0800121 u32 offset;
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700122
123 cmd = kzalloc(PAGE_ALIGN(len), GFP_KERNEL);
124 if (cmd) {
Stephen Boyd7279db92015-01-21 11:21:15 -0800125 cmd->len = cpu_to_le32(len);
Kumar Gala4de43472015-02-04 16:30:46 -0600126 offset = offsetof(struct qcom_scm_command, buf);
Stephen Boyd7279db92015-01-21 11:21:15 -0800127 cmd->buf_offset = cpu_to_le32(offset);
128 cmd->resp_hdr_offset = cpu_to_le32(offset + cmd_size);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700129 }
130 return cmd;
131}
132
133/**
Kumar Gala4de43472015-02-04 16:30:46 -0600134 * free_qcom_scm_command() - Free an SCM command
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700135 * @cmd: command to free
136 *
137 * Free an SCM command.
138 */
Kumar Gala4de43472015-02-04 16:30:46 -0600139static inline void free_qcom_scm_command(struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700140{
141 kfree(cmd);
142}
143
144/**
Kumar Gala4de43472015-02-04 16:30:46 -0600145 * qcom_scm_command_to_response() - Get a pointer to a qcom_scm_response
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700146 * @cmd: command
147 *
148 * Returns a pointer to a response for a command.
149 */
Kumar Gala4de43472015-02-04 16:30:46 -0600150static inline struct qcom_scm_response *qcom_scm_command_to_response(
151 const struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700152{
Stephen Boyd7279db92015-01-21 11:21:15 -0800153 return (void *)cmd + le32_to_cpu(cmd->resp_hdr_offset);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700154}
155
156/**
Kumar Gala4de43472015-02-04 16:30:46 -0600157 * qcom_scm_get_command_buffer() - Get a pointer to a command buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700158 * @cmd: command
159 *
160 * Returns a pointer to the command buffer of a command.
161 */
Kumar Gala4de43472015-02-04 16:30:46 -0600162static inline void *qcom_scm_get_command_buffer(const struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700163{
164 return (void *)cmd->buf;
165}
166
167/**
Kumar Gala4de43472015-02-04 16:30:46 -0600168 * qcom_scm_get_response_buffer() - Get a pointer to a response buffer
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700169 * @rsp: response
170 *
171 * Returns a pointer to a response buffer of a response.
172 */
Kumar Gala4de43472015-02-04 16:30:46 -0600173static inline void *qcom_scm_get_response_buffer(const struct qcom_scm_response *rsp)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700174{
Stephen Boyd7279db92015-01-21 11:21:15 -0800175 return (void *)rsp + le32_to_cpu(rsp->buf_offset);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700176}
177
Kumar Gala4de43472015-02-04 16:30:46 -0600178static int qcom_scm_remap_error(int err)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700179{
Kumar Gala4de43472015-02-04 16:30:46 -0600180 pr_err("qcom_scm_call failed with error code %d\n", err);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700181 switch (err) {
Kumar Gala4de43472015-02-04 16:30:46 -0600182 case QCOM_SCM_ERROR:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700183 return -EIO;
Kumar Gala4de43472015-02-04 16:30:46 -0600184 case QCOM_SCM_EINVAL_ADDR:
185 case QCOM_SCM_EINVAL_ARG:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700186 return -EINVAL;
Kumar Gala4de43472015-02-04 16:30:46 -0600187 case QCOM_SCM_EOPNOTSUPP:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700188 return -EOPNOTSUPP;
Kumar Gala4de43472015-02-04 16:30:46 -0600189 case QCOM_SCM_ENOMEM:
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700190 return -ENOMEM;
191 }
192 return -EINVAL;
193}
194
195static u32 smc(u32 cmd_addr)
196{
197 int context_id;
198 register u32 r0 asm("r0") = 1;
199 register u32 r1 asm("r1") = (u32)&context_id;
200 register u32 r2 asm("r2") = cmd_addr;
Stephen Boyd8e76a802011-02-24 10:44:44 -0800201 do {
202 asm volatile(
203 __asmeq("%0", "r0")
204 __asmeq("%1", "r0")
205 __asmeq("%2", "r1")
206 __asmeq("%3", "r2")
Marc Zyngiereca55f42011-11-08 13:07:36 +0000207#ifdef REQUIRES_SEC
208 ".arch_extension sec\n"
209#endif
Stephen Boyd8e76a802011-02-24 10:44:44 -0800210 "smc #0 @ switch to secure world\n"
211 : "=r" (r0)
212 : "r" (r0), "r" (r1), "r" (r2)
213 : "r3");
Kumar Gala4de43472015-02-04 16:30:46 -0600214 } while (r0 == QCOM_SCM_INTERRUPTED);
Stephen Boyd8e76a802011-02-24 10:44:44 -0800215
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700216 return r0;
217}
218
Kumar Gala4de43472015-02-04 16:30:46 -0600219static int __qcom_scm_call(const struct qcom_scm_command *cmd)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700220{
221 int ret;
222 u32 cmd_addr = virt_to_phys(cmd);
223
224 /*
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700225 * Flush the command buffer so that the secure world sees
226 * the correct data.
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700227 */
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700228 __cpuc_flush_dcache_area((void *)cmd, cmd->len);
229 outer_flush_range(cmd_addr, cmd_addr + cmd->len);
230
Stephen Boyd8e76a802011-02-24 10:44:44 -0800231 ret = smc(cmd_addr);
232 if (ret < 0)
Kumar Gala4de43472015-02-04 16:30:46 -0600233 ret = qcom_scm_remap_error(ret);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700234
235 return ret;
236}
237
Kumar Gala4de43472015-02-04 16:30:46 -0600238static void qcom_scm_inv_range(unsigned long start, unsigned long end)
Stephen Boydf76c6912014-08-04 18:31:43 -0700239{
Stephen Boyd30cbb0c2014-08-04 18:31:44 -0700240 u32 cacheline_size, ctr;
241
242 asm volatile("mrc p15, 0, %0, c0, c0, 1" : "=r" (ctr));
243 cacheline_size = 4 << ((ctr >> 16) & 0xf);
244
245 start = round_down(start, cacheline_size);
246 end = round_up(end, cacheline_size);
Stephen Boydf76c6912014-08-04 18:31:43 -0700247 outer_inv_range(start, end);
248 while (start < end) {
249 asm ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start)
250 : "memory");
Stephen Boyd30cbb0c2014-08-04 18:31:44 -0700251 start += cacheline_size;
Stephen Boydf76c6912014-08-04 18:31:43 -0700252 }
253 dsb();
254 isb();
255}
256
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700257/**
Kumar Gala4de43472015-02-04 16:30:46 -0600258 * qcom_scm_call() - Send an SCM command
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700259 * @svc_id: service identifier
260 * @cmd_id: command identifier
261 * @cmd_buf: command buffer
262 * @cmd_len: length of the command buffer
263 * @resp_buf: response buffer
264 * @resp_len: length of the response buffer
265 *
266 * Sends a command to the SCM and waits for the command to finish processing.
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700267 *
268 * A note on cache maintenance:
269 * Note that any buffers that are expected to be accessed by the secure world
Kumar Gala4de43472015-02-04 16:30:46 -0600270 * must be flushed before invoking qcom_scm_call and invalidated in the cache
271 * immediately after qcom_scm_call returns. Cache maintenance on the command
272 * and response buffers is taken care of by qcom_scm_call; however, callers are
Vikram Mulukutla404b5a92014-08-04 18:31:45 -0700273 * responsible for any other cached buffers passed over to the secure world.
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700274 */
Kumar Gala4de43472015-02-04 16:30:46 -0600275static int qcom_scm_call(u32 svc_id, u32 cmd_id, const void *cmd_buf,
276 size_t cmd_len, void *resp_buf, size_t resp_len)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700277{
278 int ret;
Kumar Gala4de43472015-02-04 16:30:46 -0600279 struct qcom_scm_command *cmd;
280 struct qcom_scm_response *rsp;
Stephen Boydf76c6912014-08-04 18:31:43 -0700281 unsigned long start, end;
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700282
Kumar Gala4de43472015-02-04 16:30:46 -0600283 cmd = alloc_qcom_scm_command(cmd_len, resp_len);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700284 if (!cmd)
285 return -ENOMEM;
286
Stephen Boyd7279db92015-01-21 11:21:15 -0800287 cmd->id = cpu_to_le32((svc_id << 10) | cmd_id);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700288 if (cmd_buf)
Kumar Gala4de43472015-02-04 16:30:46 -0600289 memcpy(qcom_scm_get_command_buffer(cmd), cmd_buf, cmd_len);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700290
Kumar Gala4de43472015-02-04 16:30:46 -0600291 mutex_lock(&qcom_scm_lock);
292 ret = __qcom_scm_call(cmd);
293 mutex_unlock(&qcom_scm_lock);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700294 if (ret)
295 goto out;
296
Kumar Gala4de43472015-02-04 16:30:46 -0600297 rsp = qcom_scm_command_to_response(cmd);
Stephen Boydf76c6912014-08-04 18:31:43 -0700298 start = (unsigned long)rsp;
299
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700300 do {
Kumar Gala4de43472015-02-04 16:30:46 -0600301 qcom_scm_inv_range(start, start + sizeof(*rsp));
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700302 } while (!rsp->is_complete);
303
Kumar Gala4de43472015-02-04 16:30:46 -0600304 end = (unsigned long)qcom_scm_get_response_buffer(rsp) + resp_len;
305 qcom_scm_inv_range(start, end);
Stephen Boydf76c6912014-08-04 18:31:43 -0700306
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700307 if (resp_buf)
Kumar Gala4de43472015-02-04 16:30:46 -0600308 memcpy(resp_buf, qcom_scm_get_response_buffer(rsp), resp_len);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700309out:
Kumar Gala4de43472015-02-04 16:30:46 -0600310 free_qcom_scm_command(cmd);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700311 return ret;
312}
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700313
Kumar Gala4de43472015-02-04 16:30:46 -0600314u32 qcom_scm_get_version(void)
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700315{
316 int context_id;
317 static u32 version = -1;
Stephen Boyd98d4ded2011-02-24 10:44:43 -0800318 register u32 r0 asm("r0");
319 register u32 r1 asm("r1");
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700320
321 if (version != -1)
322 return version;
323
Kumar Gala4de43472015-02-04 16:30:46 -0600324 mutex_lock(&qcom_scm_lock);
Stephen Boyd98d4ded2011-02-24 10:44:43 -0800325
326 r0 = 0x1 << 8;
327 r1 = (u32)&context_id;
Stephen Boyd8e76a802011-02-24 10:44:44 -0800328 do {
329 asm volatile(
330 __asmeq("%0", "r0")
331 __asmeq("%1", "r1")
332 __asmeq("%2", "r0")
333 __asmeq("%3", "r1")
Stephen Boyd26e87b12012-04-30 19:17:20 -0700334#ifdef REQUIRES_SEC
335 ".arch_extension sec\n"
336#endif
Stephen Boyd8e76a802011-02-24 10:44:44 -0800337 "smc #0 @ switch to secure world\n"
338 : "=r" (r0), "=r" (r1)
339 : "r" (r0), "r" (r1)
340 : "r2", "r3");
Kumar Gala4de43472015-02-04 16:30:46 -0600341 } while (r0 == QCOM_SCM_INTERRUPTED);
Stephen Boyd8e76a802011-02-24 10:44:44 -0800342
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700343 version = r1;
Kumar Gala4de43472015-02-04 16:30:46 -0600344 mutex_unlock(&qcom_scm_lock);
Stephen Boyd2a1eb582010-08-27 10:01:23 -0700345
346 return version;
347}
Kumar Gala4de43472015-02-04 16:30:46 -0600348EXPORT_SYMBOL(qcom_scm_get_version);
Kumar Gala3d9b4482015-02-04 15:46:04 -0600349
Kumar Gala4de43472015-02-04 16:30:46 -0600350#define QCOM_SCM_SVC_BOOT 0x1
351#define QCOM_SCM_BOOT_ADDR 0x1
Kumar Gala3d9b4482015-02-04 15:46:04 -0600352/*
353 * Set the cold/warm boot address for one of the CPU cores.
354 */
Lina Iyera353e4a2015-03-02 16:30:28 -0700355static int qcom_scm_set_boot_addr(u32 addr, int flags)
Kumar Gala3d9b4482015-02-04 15:46:04 -0600356{
357 struct {
358 __le32 flags;
359 __le32 addr;
360 } cmd;
361
362 cmd.addr = cpu_to_le32(addr);
363 cmd.flags = cpu_to_le32(flags);
Kumar Gala4de43472015-02-04 16:30:46 -0600364 return qcom_scm_call(QCOM_SCM_SVC_BOOT, QCOM_SCM_BOOT_ADDR,
Kumar Gala3d9b4482015-02-04 15:46:04 -0600365 &cmd, sizeof(cmd), NULL, 0);
366}
Lina Iyera353e4a2015-03-02 16:30:28 -0700367
368/**
369 * qcom_scm_set_cold_boot_addr() - Set the cold boot address for cpus
370 * @entry: Entry point function for the cpus
371 * @cpus: The cpumask of cpus that will use the entry point
372 *
373 * Set the cold boot address of the cpus. Any cpu outside the supported
374 * range would be removed from the cpu present mask.
375 */
376int qcom_scm_set_cold_boot_addr(void *entry, const cpumask_t *cpus)
377{
378 int flags = 0;
379 int cpu;
380 int scm_cb_flags[] = {
381 QCOM_SCM_FLAG_COLDBOOT_CPU0,
382 QCOM_SCM_FLAG_COLDBOOT_CPU1,
383 QCOM_SCM_FLAG_COLDBOOT_CPU2,
384 QCOM_SCM_FLAG_COLDBOOT_CPU3,
385 };
386
387 if (!cpus || (cpus && cpumask_empty(cpus)))
388 return -EINVAL;
389
390 for_each_cpu(cpu, cpus) {
391 if (cpu < ARRAY_SIZE(scm_cb_flags))
392 flags |= scm_cb_flags[cpu];
393 else
394 set_cpu_present(cpu, false);
395 }
396
397 return qcom_scm_set_boot_addr(virt_to_phys(entry), flags);
398}
399EXPORT_SYMBOL(qcom_scm_set_cold_boot_addr);
Lina Iyer2ce76a62015-03-02 16:30:29 -0700400
401/**
402 * qcom_scm_set_warm_boot_addr() - Set the warm boot address for cpus
403 * @entry: Entry point function for the cpus
404 * @cpus: The cpumask of cpus that will use the entry point
405 *
406 * Set the Linux entry point for the SCM to transfer control to when coming
407 * out of a power down. CPU power down may be executed on cpuidle or hotplug.
408 */
409int qcom_scm_set_warm_boot_addr(void *entry, const cpumask_t *cpus)
410{
411 int ret;
412 int flags = 0;
413 int cpu;
414
415 /*
416 * Reassign only if we are switching from hotplug entry point
417 * to cpuidle entry point or vice versa.
418 */
419 for_each_cpu(cpu, cpus) {
420 if (entry == qcom_scm_wb[cpu].entry)
421 continue;
422 flags |= qcom_scm_wb[cpu].flag;
423 }
424
425 /* No change in entry function */
426 if (!flags)
427 return 0;
428
429 ret = qcom_scm_set_boot_addr(virt_to_phys(entry), flags);
430 if (!ret) {
431 for_each_cpu(cpu, cpus)
432 qcom_scm_wb[cpu].entry = entry;
433 }
434
435 return ret;
436}
437EXPORT_SYMBOL(qcom_scm_set_warm_boot_addr);