blob: beb2a69786d5f7e21109923ea2d022a1d871e70a [file] [log] [blame]
developer65014b82015-04-13 14:47:57 +08001/*
2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
developer65014b82015-04-13 14:47:57 +08005 */
6#include <assert.h>
developer14f3fe32016-04-28 14:07:42 +08007#include <console.h>
developer65014b82015-04-13 14:47:57 +08008#include <debug.h>
developer14f3fe32016-04-28 14:07:42 +08009#include <mmio.h>
10#include <mtk_plat_common.h>
developer65014b82015-04-13 14:47:57 +080011#include <mtk_sip_svc.h>
developer73b982f2016-05-11 18:04:09 +080012#include <plat_sip_calls.h>
developer65014b82015-04-13 14:47:57 +080013#include <runtime_svc.h>
14#include <uuid.h>
15
16/* Mediatek SiP Service UUID */
17DEFINE_SVC_UUID(mtk_sip_svc_uid,
18 0xf7582ba4, 0x4262, 0x4d7d, 0x80, 0xe5,
19 0x8f, 0x95, 0x05, 0x00, 0x0f, 0x3d);
20
developer14f3fe32016-04-28 14:07:42 +080021#pragma weak mediatek_plat_sip_handler
22uint64_t mediatek_plat_sip_handler(uint32_t smc_fid,
23 uint64_t x1,
24 uint64_t x2,
25 uint64_t x3,
26 uint64_t x4,
27 void *cookie,
28 void *handle,
29 uint64_t flags)
30{
31 ERROR("%s: unhandled SMC (0x%x)\n", __func__, smc_fid);
32 SMC_RET1(handle, SMC_UNK);
33}
34
developer65014b82015-04-13 14:47:57 +080035/*
36 * This function handles Mediatek defined SiP Calls */
developer14f3fe32016-04-28 14:07:42 +080037uint64_t mediatek_sip_handler(uint32_t smc_fid,
38 uint64_t x1,
39 uint64_t x2,
40 uint64_t x3,
41 uint64_t x4,
42 void *cookie,
43 void *handle,
44 uint64_t flags)
developer65014b82015-04-13 14:47:57 +080045{
developer14f3fe32016-04-28 14:07:42 +080046 uint32_t ns;
developerb8925a22015-11-16 14:38:40 +080047
developer14f3fe32016-04-28 14:07:42 +080048 /* if parameter is sent from SMC32. Clean top 32 bits */
49 clean_top_32b_of_param(smc_fid, &x1, &x2, &x3, &x4);
developerb8925a22015-11-16 14:38:40 +080050
developer14f3fe32016-04-28 14:07:42 +080051 /* Determine which security state this SMC originated from */
52 ns = is_caller_non_secure(flags);
53 if (!ns) {
54 /* SiP SMC service secure world's call */
55 ;
56 } else {
57 /* SiP SMC service normal world's call */
58 switch (smc_fid) {
59#if MTK_SIP_SET_AUTHORIZED_SECURE_REG_ENABLE
60 case MTK_SIP_SET_AUTHORIZED_SECURE_REG: {
61 /* only use ret here */
62 uint64_t ret;
developerb8925a22015-11-16 14:38:40 +080063
developer14f3fe32016-04-28 14:07:42 +080064 ret = mt_sip_set_authorized_sreg((uint32_t)x1,
65 (uint32_t)x2);
66 SMC_RET1(handle, ret);
67 }
68#endif
69#if MTK_SIP_KERNEL_BOOT_ENABLE
70 case MTK_SIP_KERNEL_BOOT_AARCH32:
71 boot_to_kernel(x1, x2, x3, x4);
72 SMC_RET0(handle);
73#endif
74 }
developer65014b82015-04-13 14:47:57 +080075 }
76
developer14f3fe32016-04-28 14:07:42 +080077 return mediatek_plat_sip_handler(smc_fid, x1, x2, x3, x4,
78 cookie, handle, flags);
79
developer65014b82015-04-13 14:47:57 +080080}
81
82/*
83 * This function is responsible for handling all SiP calls from the NS world
84 */
85uint64_t sip_smc_handler(uint32_t smc_fid,
86 uint64_t x1,
87 uint64_t x2,
88 uint64_t x3,
89 uint64_t x4,
90 void *cookie,
91 void *handle,
92 uint64_t flags)
93{
developer65014b82015-04-13 14:47:57 +080094 switch (smc_fid) {
95 case SIP_SVC_CALL_COUNT:
96 /* Return the number of Mediatek SiP Service Calls. */
developer73b982f2016-05-11 18:04:09 +080097 SMC_RET1(handle,
98 MTK_COMMON_SIP_NUM_CALLS + MTK_PLAT_SIP_NUM_CALLS);
developer65014b82015-04-13 14:47:57 +080099
100 case SIP_SVC_UID:
101 /* Return UID to the caller */
102 SMC_UUID_RET(handle, mtk_sip_svc_uid);
103
104 case SIP_SVC_VERSION:
105 /* Return the version of current implementation */
106 SMC_RET2(handle, MTK_SIP_SVC_VERSION_MAJOR,
107 MTK_SIP_SVC_VERSION_MINOR);
108
109 default:
110 return mediatek_sip_handler(smc_fid, x1, x2, x3, x4,
developer14f3fe32016-04-28 14:07:42 +0800111 cookie, handle, flags);
developer65014b82015-04-13 14:47:57 +0800112 }
113}
114
115/* Define a runtime service descriptor for fast SMC calls */
116DECLARE_RT_SVC(
117 mediatek_sip_svc,
118 OEN_SIP_START,
119 OEN_SIP_END,
120 SMC_TYPE_FAST,
121 NULL,
122 sip_smc_handler
123);