blob: b7271bb8a6a29b57ce5909bd67f0683adb9f5467 [file] [log] [blame]
Patrick Daly7a75e262013-03-07 16:22:45 -08001/* Copyright (c) 2010-2013, The Linux Foundation. All rights reserved.
Stephen Boyde44ec392011-08-29 12:03:24 -07002 *
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
Stephen Boydef5d1c42011-12-15 20:47:14 -080013#define pr_fmt(fmt) "scm-pas: " fmt
14
Stephen Boyde44ec392011-08-29 12:03:24 -070015#include <linux/module.h>
16#include <linux/slab.h>
17#include <linux/string.h>
Stephen Boydef5d1c42011-12-15 20:47:14 -080018#include <linux/clk.h>
Stephen Boyde44ec392011-08-29 12:03:24 -070019
20#include <mach/scm.h>
21#include <mach/socinfo.h>
Stephen Boydef5d1c42011-12-15 20:47:14 -080022#include <mach/msm_bus.h>
23#include <mach/msm_bus_board.h>
Stephen Boyde44ec392011-08-29 12:03:24 -070024#include "scm-pas.h"
25
26#define PAS_INIT_IMAGE_CMD 1
Stephen Boydb16e0162012-07-30 17:10:54 -070027#define PAS_MEM_SETUP_CMD 2
Stephen Boyde44ec392011-08-29 12:03:24 -070028#define PAS_AUTH_AND_RESET_CMD 5
29#define PAS_SHUTDOWN_CMD 6
30#define PAS_IS_SUPPORTED_CMD 7
31
Patrick Daly7a75e262013-03-07 16:22:45 -080032enum scm_clock_ids {
33 BUS_CLK = 0,
34 CORE_CLK,
35 IFACE_CLK,
36 CORE_CLK_SRC,
37 NUM_CLKS
38};
39
40static const char * const scm_clock_names[NUM_CLKS] = {
41 [BUS_CLK] = "bus_clk",
42 [CORE_CLK] = "core_clk",
43 [IFACE_CLK] = "iface_clk",
44 [CORE_CLK_SRC] = "core_clk_src",
45};
46
47static struct clk *scm_clocks[NUM_CLKS];
48
Stephen Boyde44ec392011-08-29 12:03:24 -070049int pas_init_image(enum pas_id id, const u8 *metadata, size_t size)
50{
51 int ret;
52 struct pas_init_image_req {
53 u32 proc;
54 u32 image_addr;
55 } request;
56 u32 scm_ret = 0;
57 /* Make memory physically contiguous */
58 void *mdata_buf = kmemdup(metadata, size, GFP_KERNEL);
59
60 if (!mdata_buf)
61 return -ENOMEM;
62
63 request.proc = id;
64 request.image_addr = virt_to_phys(mdata_buf);
65
66 ret = scm_call(SCM_SVC_PIL, PAS_INIT_IMAGE_CMD, &request,
67 sizeof(request), &scm_ret, sizeof(scm_ret));
68 kfree(mdata_buf);
69
70 if (ret)
71 return ret;
72 return scm_ret;
73}
74EXPORT_SYMBOL(pas_init_image);
75
Stephen Boydb16e0162012-07-30 17:10:54 -070076int pas_mem_setup(enum pas_id id, u32 start_addr, u32 len)
77{
78 int ret;
79 struct pas_init_image_req {
80 u32 proc;
81 u32 start_addr;
82 u32 len;
83 } request;
84 u32 scm_ret = 0;
85
86 request.proc = id;
87 request.start_addr = start_addr;
88 request.len = len;
89
90 ret = scm_call(SCM_SVC_PIL, PAS_MEM_SETUP_CMD, &request,
91 sizeof(request), &scm_ret, sizeof(scm_ret));
92 if (ret)
93 return ret;
94 return scm_ret;
95}
96EXPORT_SYMBOL(pas_mem_setup);
97
Stephen Boydef5d1c42011-12-15 20:47:14 -080098static struct msm_bus_paths scm_pas_bw_tbl[] = {
99 {
100 .vectors = (struct msm_bus_vectors[]){
101 {
102 .src = MSM_BUS_MASTER_SPS,
103 .dst = MSM_BUS_SLAVE_EBI_CH0,
104 },
105 },
106 .num_paths = 1,
107 },
108 {
109 .vectors = (struct msm_bus_vectors[]){
110 {
111 .src = MSM_BUS_MASTER_SPS,
112 .dst = MSM_BUS_SLAVE_EBI_CH0,
113 .ib = 492 * 8 * 1000000UL,
114 .ab = 492 * 8 * 100000UL,
115 },
116 },
117 .num_paths = 1,
118 },
119};
120
121static struct msm_bus_scale_pdata scm_pas_bus_pdata = {
122 .usecase = scm_pas_bw_tbl,
123 .num_usecases = ARRAY_SIZE(scm_pas_bw_tbl),
124 .name = "scm_pas",
125};
126
127static uint32_t scm_perf_client;
Stephen Boydef5d1c42011-12-15 20:47:14 -0800128
129static DEFINE_MUTEX(scm_pas_bw_mutex);
130static int scm_pas_bw_count;
131
132static int scm_pas_enable_bw(void)
133{
Patrick Daly7a75e262013-03-07 16:22:45 -0800134 int ret = 0, i;
Stephen Boydef5d1c42011-12-15 20:47:14 -0800135
Matt Wagantall8873e202012-07-26 14:34:34 -0700136 if (!scm_perf_client)
Stephen Boydef5d1c42011-12-15 20:47:14 -0800137 return -EINVAL;
138
139 mutex_lock(&scm_pas_bw_mutex);
140 if (!scm_pas_bw_count) {
141 ret = msm_bus_scale_client_update_request(scm_perf_client, 1);
Patrick Daly7a75e262013-03-07 16:22:45 -0800142 if (ret)
143 goto err_bus;
Stephen Boydef5d1c42011-12-15 20:47:14 -0800144 scm_pas_bw_count++;
Patrick Daly7a75e262013-03-07 16:22:45 -0800145 }
146 for (i = 0; i < NUM_CLKS; i++)
147 if (clk_prepare_enable(scm_clocks[i]))
148 goto err_clk;
149
150 mutex_unlock(&scm_pas_bw_mutex);
151 return ret;
152
153err_clk:
154 pr_err("clk prepare_enable failed (%s)\n", scm_clock_names[i]);
155 for (i--; i >= 0; i--)
156 clk_disable_unprepare(scm_clocks[i]);
157
158err_bus:
159 pr_err("bandwidth request failed (%d)\n", ret);
160 msm_bus_scale_client_update_request(scm_perf_client, 0);
161
Stephen Boydef5d1c42011-12-15 20:47:14 -0800162 mutex_unlock(&scm_pas_bw_mutex);
163 return ret;
164}
165
166static void scm_pas_disable_bw(void)
167{
Patrick Daly7a75e262013-03-07 16:22:45 -0800168 int i;
Stephen Boydef5d1c42011-12-15 20:47:14 -0800169 mutex_lock(&scm_pas_bw_mutex);
170 if (scm_pas_bw_count-- == 1) {
171 msm_bus_scale_client_update_request(scm_perf_client, 0);
Stephen Boydef5d1c42011-12-15 20:47:14 -0800172 }
Patrick Daly7a75e262013-03-07 16:22:45 -0800173 for (i = NUM_CLKS - 1; i >= 0; i--)
174 clk_disable_unprepare(scm_clocks[i]);
175
Stephen Boydef5d1c42011-12-15 20:47:14 -0800176 mutex_unlock(&scm_pas_bw_mutex);
177}
178
Stephen Boyde44ec392011-08-29 12:03:24 -0700179int pas_auth_and_reset(enum pas_id id)
180{
Stephen Boydef5d1c42011-12-15 20:47:14 -0800181 int ret, bus_ret;
Stephen Boyde44ec392011-08-29 12:03:24 -0700182 u32 proc = id, scm_ret = 0;
183
Stephen Boydef5d1c42011-12-15 20:47:14 -0800184 bus_ret = scm_pas_enable_bw();
Stephen Boyde44ec392011-08-29 12:03:24 -0700185 ret = scm_call(SCM_SVC_PIL, PAS_AUTH_AND_RESET_CMD, &proc,
186 sizeof(proc), &scm_ret, sizeof(scm_ret));
187 if (ret)
Stephen Boydef5d1c42011-12-15 20:47:14 -0800188 scm_ret = ret;
189 if (!bus_ret)
190 scm_pas_disable_bw();
Stephen Boyde44ec392011-08-29 12:03:24 -0700191
192 return scm_ret;
193}
194EXPORT_SYMBOL(pas_auth_and_reset);
195
196int pas_shutdown(enum pas_id id)
197{
198 int ret;
199 u32 proc = id, scm_ret = 0;
200
201 ret = scm_call(SCM_SVC_PIL, PAS_SHUTDOWN_CMD, &proc, sizeof(proc),
202 &scm_ret, sizeof(scm_ret));
203 if (ret)
204 return ret;
205
206 return scm_ret;
207}
208EXPORT_SYMBOL(pas_shutdown);
209
210static bool secure_pil = true;
211module_param(secure_pil, bool, S_IRUGO);
212MODULE_PARM_DESC(secure_pil, "Use secure PIL");
213
214int pas_supported(enum pas_id id)
215{
216 int ret;
217 u32 periph = id, ret_val = 0;
218
219 if (!secure_pil)
220 return 0;
221
222 /*
223 * 8660 SCM doesn't support querying secure PIL support so just return
224 * true if not overridden on the command line.
225 */
226 if (cpu_is_msm8x60())
227 return 1;
228
229 if (scm_is_call_available(SCM_SVC_PIL, PAS_IS_SUPPORTED_CMD) <= 0)
230 return 0;
231
232 ret = scm_call(SCM_SVC_PIL, PAS_IS_SUPPORTED_CMD, &periph,
233 sizeof(periph), &ret_val, sizeof(ret_val));
234 if (ret)
235 return ret;
236
237 return ret_val;
238}
239EXPORT_SYMBOL(pas_supported);
Stephen Boydef5d1c42011-12-15 20:47:14 -0800240
241static int __init scm_pas_init(void)
242{
Patrick Daly7a75e262013-03-07 16:22:45 -0800243 int i, rate;
244 for (i = 0; i < NUM_CLKS; i++) {
245 scm_clocks[i] = clk_get_sys("scm", scm_clock_names[i]);
246 if (IS_ERR(scm_clocks[i]))
247 scm_clocks[i] = NULL;
248 }
249
250 /* Fail silently if this clock is not supported */
251 rate = clk_round_rate(scm_clocks[CORE_CLK_SRC], 1);
252 clk_set_rate(scm_clocks[CORE_CLK_SRC], rate);
253
Patrick Dalyd5234252013-03-07 16:35:08 -0800254 if (cpu_is_msm8974() || cpu_is_msm8226()) {
Matt Wagantall8873e202012-07-26 14:34:34 -0700255 scm_pas_bw_tbl[0].vectors[0].src = MSM_BUS_MASTER_CRYPTO_CORE0;
256 scm_pas_bw_tbl[1].vectors[0].src = MSM_BUS_MASTER_CRYPTO_CORE0;
257 } else {
Patrick Daly7a75e262013-03-07 16:22:45 -0800258 if (!IS_ERR(scm_clocks[BUS_CLK]))
259 clk_set_rate(scm_clocks[BUS_CLK], 64000000);
260 else
Matt Wagantall8873e202012-07-26 14:34:34 -0700261 pr_warn("unable to get bus clock\n");
Matt Wagantall8873e202012-07-26 14:34:34 -0700262 }
263
Syed Rameez Mustafa3c8353d2012-10-18 17:28:57 -0700264 scm_perf_client = msm_bus_scale_register_client(&scm_pas_bus_pdata);
Stephen Boydef5d1c42011-12-15 20:47:14 -0800265 if (!scm_perf_client)
266 pr_warn("unable to register bus client\n");
Matt Wagantall8873e202012-07-26 14:34:34 -0700267
Stephen Boydef5d1c42011-12-15 20:47:14 -0800268 return 0;
269}
270module_init(scm_pas_init);