blob: 6b0f7e7be8ab475ac13e136d5e6d27033186782c [file] [log] [blame]
dp-arm1cebefd2016-09-19 11:21:03 +01001/*
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +01002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
dp-arm1cebefd2016-09-19 11:21:03 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
dp-arm1cebefd2016-09-19 11:21:03 +01005 */
6
dp-arm1cebefd2016-09-19 11:21:03 +01007#include <stdint.h>
dp-arm1cebefd2016-09-19 11:21:03 +01008
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <common/debug.h>
10#include <common/runtime_svc.h>
11#include <lib/pmf/pmf.h>
12#include <tools_share/uuid.h>
13
14#include <arm_sip_svc.h>
15#include <plat_arm.h>
dp-arm1cebefd2016-09-19 11:21:03 +010016
17/* ARM SiP Service UUID */
Roberto Vargaseace8f12018-04-26 13:36:53 +010018DEFINE_SVC_UUID2(arm_sip_svc_uid,
19 0x556d75e2, 0x6033, 0xb54b, 0xb5, 0x75,
20 0x62, 0x79, 0xfd, 0x11, 0x37, 0xff);
dp-arm1cebefd2016-09-19 11:21:03 +010021
22static int arm_sip_setup(void)
23{
24 if (pmf_setup() != 0)
25 return 1;
26 return 0;
27}
28
29/*
30 * This function handles ARM defined SiP Calls
31 */
32static uintptr_t arm_sip_handler(unsigned int smc_fid,
33 u_register_t x1,
34 u_register_t x2,
35 u_register_t x3,
36 u_register_t x4,
37 void *cookie,
38 void *handle,
39 u_register_t flags)
40{
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000041 int call_count = 0;
42
dp-arm1cebefd2016-09-19 11:21:03 +010043 /*
44 * Dispatch PMF calls to PMF SMC handler and return its return
45 * value
46 */
47 if (is_pmf_fid(smc_fid)) {
48 return pmf_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
49 handle, flags);
50 }
51
52 switch (smc_fid) {
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000053 case ARM_SIP_SVC_EXE_STATE_SWITCH: {
54 u_register_t pc;
55
56 /* Allow calls from non-secure only */
57 if (!is_caller_non_secure(flags))
58 SMC_RET1(handle, STATE_SW_E_DENIED);
59
60 /* Validate supplied entry point */
61 pc = (u_register_t) ((x1 << 32) | (uint32_t) x2);
Antonio Nino Diaz05fdb832018-10-25 16:53:04 +010062 if (arm_validate_ns_entrypoint(pc) != 0)
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000063 SMC_RET1(handle, STATE_SW_E_PARAM);
64
dp-arm1cebefd2016-09-19 11:21:03 +010065 /*
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000066 * Pointers used in execution state switch are all 32 bits wide
dp-arm1cebefd2016-09-19 11:21:03 +010067 */
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +010068 return (uintptr_t) arm_execution_state_switch(smc_fid,
69 (uint32_t) x1, (uint32_t) x2, (uint32_t) x3,
70 (uint32_t) x4, handle);
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000071 }
72
73 case ARM_SIP_SVC_CALL_COUNT:
74 /* PMF calls */
75 call_count += PMF_NUM_SMC_CALLS;
76
77 /* State switch call */
78 call_count += 1;
79
80 SMC_RET1(handle, call_count);
dp-arm1cebefd2016-09-19 11:21:03 +010081
82 case ARM_SIP_SVC_UID:
83 /* Return UID to the caller */
84 SMC_UUID_RET(handle, arm_sip_svc_uid);
85
86 case ARM_SIP_SVC_VERSION:
87 /* Return the version of current implementation */
88 SMC_RET2(handle, ARM_SIP_SVC_VERSION_MAJOR, ARM_SIP_SVC_VERSION_MINOR);
89
90 default:
91 WARN("Unimplemented ARM SiP Service Call: 0x%x \n", smc_fid);
92 SMC_RET1(handle, SMC_UNK);
93 }
94
95}
96
97
98/* Define a runtime service descriptor for fast SMC calls */
99DECLARE_RT_SVC(
100 arm_sip_svc,
101 OEN_SIP_START,
102 OEN_SIP_END,
103 SMC_TYPE_FAST,
104 arm_sip_setup,
105 arm_sip_handler
106);