pm_svc_main.c 10.5 KB
Newer Older
1
/*
2
 * Copyright (c) 2019-2020, Xilinx, Inc. All rights reserved.
3
4
5
6
7
8
9
10
11
12
13
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/*
 * Top-level SMC handler for Versal power management calls and
 * IPI setup functions for communication with PMC.
 */

#include <errno.h>
#include <plat_private.h>
14
15
#include <stdbool.h>
#include <common/runtime_svc.h>
16
#include <plat/common/platform.h>
17
#include "pm_api_sys.h"
18
19
#include "pm_client.h"
#include "pm_ipi.h"
20
21
22
23
24
#include <drivers/arm/gicv3.h>

#define XSCUGIC_SGIR_EL1_INITID_SHIFT    24U
#define INVALID_SGI    0xFF
DEFINE_RENAME_SYSREG_RW_FUNCS(icc_asgi1r_el1, S3_0_C12_C11_6)
25

26
27
/* pm_up = true - UP, pm_up = false - DOWN */
static bool pm_up;
28
static unsigned int sgi = INVALID_SGI;
29

30
31
32
static uint64_t ipi_fiq_handler(uint32_t id, uint32_t flags, void *handle,
				void *cookie)
{
33
34
35
	int cpu;
	unsigned int reg;

36
	(void)plat_ic_acknowledge_interrupt();
37
38
39
40
41
42
	cpu = plat_my_core_pos() + 1;

	if (sgi != INVALID_SGI) {
		reg = (cpu | (sgi << XSCUGIC_SGIR_EL1_INITID_SHIFT));
		write_icc_asgi1r_el1(reg);
	}
43
44
45
46
47
48
49

	/* Clear FIQ */
	plat_ic_end_of_interrupt(id);

	return 0;
}

50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/**
 * pm_register_sgi() - PM register the IPI interrupt
 *
 * @sgi -  SGI number to be used for communication.
 * @return	On success, the initialization function must return 0.
 *		Any other return value will cause the framework to ignore
 *		the service
 *
 * Update the SGI number to be used.
 *
 */
int pm_register_sgi(unsigned int sgi_num)
{
	if (sgi != INVALID_SGI) {
		return -EBUSY;
	}

	if (sgi_num >= GICV3_MAX_SGI_TARGETS) {
		return -EINVAL;
	}

	sgi = sgi_num;
	return 0;
}

75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
 * pm_setup() - PM service setup
 *
 * @return	On success, the initialization function must return 0.
 *		Any other return value will cause the framework to ignore
 *		the service
 *
 * Initialization functions for Versal power management for
 * communicaton with PMC.
 *
 * Called from sip_svc_setup initialization function with the
 * rt_svc_init signature.
 */
int pm_setup(void)
{
	int status, ret = 0;

	status = pm_ipi_init(primary_proc);

	if (status < 0) {
		INFO("BL31: PM Service Init Failed, Error Code %d!\n", status);
		ret = status;
97
98
	} else {
		pm_up = true;
99
100
	}

101
102
103
104
105
106
107
108
109
110
111
112
	/*
	 * Enable IPI IRQ
	 * assume the rich OS is OK to handle callback IRQs now.
	 * Even if we were wrong, it would not enable the IRQ in
	 * the GIC.
	 */
	pm_ipi_irq_enable(primary_proc);

	ret = request_intr_type_el3(PLAT_VERSAL_IPI_IRQ, ipi_fiq_handler);
	if (ret) {
		WARN("BL31: registering IPI interrupt failed\n");
	}
113
114
	return ret;
}
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137

/**
 * pm_smc_handler() - SMC handler for PM-API calls coming from EL1/EL2.
 * @smc_fid - Function Identifier
 * @x1 - x4 - Arguments
 * @cookie  - Unused
 * @handler - Pointer to caller's context structure
 *
 * @return  - Unused
 *
 * Determines that smc_fid is valid and supported PM SMC Function ID from the
 * list of pm_api_ids, otherwise completes the request with
 * the unknown SMC Function ID
 *
 * The SMC calls for PM service are forwarded from SIP Service SMC handler
 * function with rt_svc_handle signature
 */
uint64_t pm_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3,
			uint64_t x4, void *cookie, void *handle, uint64_t flags)
{
	enum pm_ret_status ret;

	uint32_t pm_arg[4];
138
	uint32_t security_flag = SECURE_FLAG;
139
140
141
142
143
144
145
146
147
148

	/* Handle case where PM wasn't initialized properly */
	if (!pm_up)
		SMC_RET1(handle, SMC_UNK);

	pm_arg[0] = (uint32_t)x1;
	pm_arg[1] = (uint32_t)(x1 >> 32);
	pm_arg[2] = (uint32_t)x2;
	pm_arg[3] = (uint32_t)(x2 >> 32);

149
150
151
152
153
154
155
156
	/*
	 * Mark BIT24 payload (i.e 1st bit of pm_arg[3] ) as non-secure (1)
	 * if smc called is non secure
	 */
	if (is_caller_non_secure(flags)) {
		security_flag = NON_SECURE_FLAG;
	}

157
158
159
160
	switch (smc_fid & FUNCID_NUM_MASK) {
	/* PM API Functions */
	case PM_SELF_SUSPEND:
		ret = pm_self_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
161
				      pm_arg[3], security_flag);
162
163
		SMC_RET1(handle, (uint64_t)ret);

164
	case PM_FORCE_POWERDOWN:
165
		ret = pm_force_powerdown(pm_arg[0], pm_arg[1], security_flag);
166
167
		SMC_RET1(handle, (uint64_t)ret);

168
169
	case PM_REQ_SUSPEND:
		ret = pm_req_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
170
				     pm_arg[3], security_flag);
171
172
173
		SMC_RET1(handle, (uint64_t)ret);

	case PM_ABORT_SUSPEND:
174
		ret = pm_abort_suspend(pm_arg[0], security_flag);
175
176
		SMC_RET1(handle, (uint64_t)ret);

177
	case PM_SYSTEM_SHUTDOWN:
178
		ret = pm_system_shutdown(pm_arg[0], pm_arg[1], security_flag);
179
180
		SMC_RET1(handle, (uint64_t)ret);

181
	case PM_REQ_WAKEUP:
182
183
		ret = pm_req_wakeup(pm_arg[0], pm_arg[1], pm_arg[2], pm_arg[3],
				    security_flag);
184
		SMC_RET1(handle, (uint64_t)ret);
185
186

	case PM_SET_WAKEUP_SOURCE:
187
188
		ret = pm_set_wakeup_source(pm_arg[0], pm_arg[1], pm_arg[2],
					   security_flag);
189
		SMC_RET1(handle, (uint64_t)ret);
190

191
192
	case PM_REQUEST_DEVICE:
		ret = pm_request_device(pm_arg[0], pm_arg[1], pm_arg[2],
193
					pm_arg[3], security_flag);
194
195
196
		SMC_RET1(handle, (uint64_t)ret);

	case PM_RELEASE_DEVICE:
197
		ret = pm_release_device(pm_arg[0], security_flag);
198
199
200
201
		SMC_RET1(handle, (uint64_t)ret);

	case PM_SET_REQUIREMENT:
		ret = pm_set_requirement(pm_arg[0], pm_arg[1], pm_arg[2],
202
					 pm_arg[3], security_flag);
203
204
205
206
207
208
		SMC_RET1(handle, (uint64_t)ret);

	case PM_GET_API_VERSION:
	{
		uint32_t api_version;

209
		ret = pm_get_api_version(&api_version, security_flag);
210
211
212
213
214
215
216
217
		SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
				 ((uint64_t)api_version << 32));
	}

	case PM_GET_DEVICE_STATUS:
	{
		uint32_t buff[3];

218
		ret = pm_get_device_status(pm_arg[0], buff, security_flag);
219
220
221
222
223
		SMC_RET2(handle, (uint64_t)ret | ((uint64_t)buff[0] << 32),
			 (uint64_t)buff[1] | ((uint64_t)buff[2] << 32));
	}

	case PM_RESET_ASSERT:
224
		ret = pm_reset_assert(pm_arg[0], pm_arg[1], security_flag);
225
226
227
228
229
230
		SMC_RET1(handle, (uint64_t)ret);

	case PM_RESET_GET_STATUS:
	{
		uint32_t reset_status;

231
232
		ret = pm_reset_get_status(pm_arg[0], &reset_status,
					  security_flag);
233
234
235
236
		SMC_RET1(handle, (uint64_t)ret |
			 ((uint64_t)reset_status << 32));
	}

237
	case PM_INIT_FINALIZE:
238
		ret = pm_init_finalize(security_flag);
239
		SMC_RET1(handle, (uint64_t)ret);
240

241
242
243
244
	case PM_GET_CALLBACK_DATA:
	{
		uint32_t result[4] = {0};

245
		pm_get_callbackdata(result, ARRAY_SIZE(result), security_flag);
246
247
248
249
250
		SMC_RET2(handle,
			 (uint64_t)result[0] | ((uint64_t)result[1] << 32),
			 (uint64_t)result[2] | ((uint64_t)result[3] << 32));
	}

251
	case PM_PINCTRL_REQUEST:
252
		ret = pm_pinctrl_request(pm_arg[0], security_flag);
253
254
255
		SMC_RET1(handle, (uint64_t)ret);

	case PM_PINCTRL_RELEASE:
256
		ret = pm_pinctrl_release(pm_arg[0], security_flag);
257
258
259
260
261
262
		SMC_RET1(handle, (uint64_t)ret);

	case PM_PINCTRL_GET_FUNCTION:
	{
		uint32_t value = 0;

263
		ret = pm_pinctrl_get_function(pm_arg[0], &value, security_flag);
264
265
266
267
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
	}

	case PM_PINCTRL_SET_FUNCTION:
268
269
		ret = pm_pinctrl_set_function(pm_arg[0], pm_arg[1],
					      security_flag);
270
271
272
273
274
275
		SMC_RET1(handle, (uint64_t)ret);

	case PM_PINCTRL_CONFIG_PARAM_GET:
	{
		uint32_t value;

276
277
		ret = pm_pinctrl_get_pin_param(pm_arg[0], pm_arg[1], &value,
					       security_flag);
278
279
280
281
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
	}

	case PM_PINCTRL_CONFIG_PARAM_SET:
282
283
		ret = pm_pinctrl_set_pin_param(pm_arg[0], pm_arg[1], pm_arg[2],
					       security_flag);
284
285
		SMC_RET1(handle, (uint64_t)ret);

286
287
288
289
290
	case PM_IOCTL:
	{
		uint32_t value;

		ret = pm_api_ioctl(pm_arg[0], pm_arg[1], pm_arg[2],
291
				   pm_arg[3], &value, security_flag);
292
293
294
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
	}

295
296
	case PM_QUERY_DATA:
	{
297
		uint32_t data[8] = { 0 };
298
299

		ret = pm_query_data(pm_arg[0], pm_arg[1], pm_arg[2],
300
				      pm_arg[3], data, security_flag);
301

302
		SMC_RET2(handle, (uint64_t)ret  | ((uint64_t)data[0] << 32),
303
				 (uint64_t)data[1] | ((uint64_t)data[2] << 32));
304

305
	}
306
	case PM_CLOCK_ENABLE:
307
		ret = pm_clock_enable(pm_arg[0], security_flag);
308
309
310
		SMC_RET1(handle, (uint64_t)ret);

	case PM_CLOCK_DISABLE:
311
		ret = pm_clock_disable(pm_arg[0], security_flag);
312
313
314
315
316
317
		SMC_RET1(handle, (uint64_t)ret);

	case PM_CLOCK_GETSTATE:
	{
		uint32_t value;

318
		ret = pm_clock_get_state(pm_arg[0], &value, security_flag);
319
320
321
322
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
	}

	case PM_CLOCK_SETDIVIDER:
323
		ret = pm_clock_set_divider(pm_arg[0], pm_arg[1], security_flag);
324
325
326
327
328
329
		SMC_RET1(handle, (uint64_t)ret);

	case PM_CLOCK_GETDIVIDER:
	{
		uint32_t value;

330
		ret = pm_clock_get_divider(pm_arg[0], &value, security_flag);
331
332
333
334
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
	}

	case PM_CLOCK_SETPARENT:
335
		ret = pm_clock_set_parent(pm_arg[0], pm_arg[1], security_flag);
336
337
338
339
340
341
		SMC_RET1(handle, (uint64_t)ret);

	case PM_CLOCK_GETPARENT:
	{
		uint32_t value;

342
		ret = pm_clock_get_parent(pm_arg[0], &value, security_flag);
343
344
345
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32);
	}

346
347
348
349
	case PM_CLOCK_GETRATE:
	{
		uint32_t rate[2] = { 0 };

350
		ret = pm_clock_get_rate(pm_arg[0], rate, security_flag);
351
352
353
354
		SMC_RET2(handle, (uint64_t)ret | ((uint64_t)rate[0] << 32),
			 rate[1]);
	}

355
	case PM_PLL_SET_PARAMETER:
356
357
		ret = pm_pll_set_param(pm_arg[0], pm_arg[1], pm_arg[2],
				       security_flag);
358
359
360
361
362
363
		SMC_RET1(handle, (uint64_t)ret);

	case PM_PLL_GET_PARAMETER:
	{
		uint32_t value;

364
365
		ret = pm_pll_get_param(pm_arg[0], pm_arg[1], &value,
				       security_flag);
366
367
368
369
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value << 32));
	}

	case PM_PLL_SET_MODE:
370
		ret = pm_pll_set_mode(pm_arg[0], pm_arg[1], security_flag);
371
372
373
374
375
376
		SMC_RET1(handle, (uint64_t)ret);

	case PM_PLL_GET_MODE:
	{
		uint32_t mode;

377
		ret = pm_pll_get_mode(pm_arg[0], &mode, security_flag);
378
379
380
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)mode << 32));
	}

381
382
383
384
	case PM_GET_TRUSTZONE_VERSION:
		SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
			 ((uint64_t)VERSAL_TZ_VERSION << 32));

Ravi Patel's avatar
Ravi Patel committed
385
386
387
388
	case PM_GET_CHIPID:
	{
		uint32_t result[2];

389
		ret = pm_get_chipid(result, security_flag);
Ravi Patel's avatar
Ravi Patel committed
390
391
392
393
		SMC_RET2(handle, (uint64_t)ret | ((uint64_t)result[0] << 32),
			 result[1]);
	}

394
395
396
397
	case PM_FEATURE_CHECK:
	{
		uint32_t version;

398
		ret = pm_feature_check(pm_arg[0], &version, security_flag);
399
400
401
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)version << 32));
	}

402
403
	case PM_LOAD_PDI:
	{
404
405
		ret = pm_load_pdi(pm_arg[0], pm_arg[1], pm_arg[2],
				  security_flag);
406
407
408
		SMC_RET1(handle, (uint64_t)ret);
	}

409
410
411
412
	case PM_GET_OP_CHARACTERISTIC:
	{
		uint32_t result;

413
414
		ret = pm_get_op_characteristic(pm_arg[0], pm_arg[1], &result,
					       security_flag);
415
416
417
		SMC_RET1(handle, (uint64_t)ret | ((uint64_t)result << 32));
	}

418
419
	case PM_SET_MAX_LATENCY:
	{
420
		ret = pm_set_max_latency(pm_arg[0], pm_arg[1], security_flag);
421
422
423
		SMC_RET1(handle, (uint64_t)ret);
	}

424
425
	case PM_REGISTER_NOTIFIER:
	{
426
427
		ret = pm_register_notifier(pm_arg[0], pm_arg[1], pm_arg[2],
					   pm_arg[3], security_flag);
428
429
430
		SMC_RET1(handle, (uint64_t)ret);
	}

431
432
433
434
435
	default:
		WARN("Unimplemented PM Service Call: 0x%x\n", smc_fid);
		SMC_RET1(handle, SMC_UNK);
	}
}