blob: ae401a4ef0ece3e3513e7a18b7cc48b3bf2ac81a [file] [log] [blame]
Soren Brinkmannc8284402016-03-06 20:16:27 -08001/*
Venkatesh Yadav Abbarapu504925f2020-11-23 04:26:54 -08002 * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
Soren Brinkmannc8284402016-03-06 20:16:27 -08003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soren Brinkmannc8284402016-03-06 20:16:27 -08005 */
6
7/* Top level SMC handler for SiP calls. Dispatch PM calls to PM SMC handler. */
8
Michal Simek09b342a2023-02-14 13:10:29 +01009#include <inttypes.h>
10
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000011#include <common/runtime_svc.h>
12#include <tools_share/uuid.h>
13
Wendy Liange8ffe792017-09-06 09:39:55 -070014#include "ipi_mailbox_svc.h"
Soren Brinkmannc8284402016-03-06 20:16:27 -080015#include "pm_svc_main.h"
16
17/* SMC function IDs for SiP Service queries */
Venkatesh Yadav Abbarapu5bcbd2d2022-04-29 09:58:30 +053018#define ZYNQMP_SIP_SVC_CALL_COUNT U(0x8200ff00)
19#define ZYNQMP_SIP_SVC_UID U(0x8200ff01)
20#define ZYNQMP_SIP_SVC_VERSION U(0x8200ff03)
Soren Brinkmannc8284402016-03-06 20:16:27 -080021
22/* SiP Service Calls version numbers */
23#define SIP_SVC_VERSION_MAJOR 0
24#define SIP_SVC_VERSION_MINOR 1
25
Wendy Liange8ffe792017-09-06 09:39:55 -070026/* These macros are used to identify PM, IPI calls from the SMC function ID */
Michal Simek09b342a2023-02-14 13:10:29 +010027#define SIP_FID_MASK GENMASK(23, 16)
28#define XLNX_FID_MASK GENMASK(23, 12)
Soren Brinkmannc8284402016-03-06 20:16:27 -080029#define PM_FID_VALUE 0u
Wendy Liange8ffe792017-09-06 09:39:55 -070030#define IPI_FID_VALUE 0x1000u
Venkatesh Yadav Abbarapu504925f2020-11-23 04:26:54 -080031#define EM_FID_VALUE 0xE0000u
Michal Simek09b342a2023-02-14 13:10:29 +010032#define is_em_fid(_fid) (((_fid) & XLNX_FID_MASK) == EM_FID_VALUE)
33#define is_pm_fid(_fid) (((_fid) & XLNX_FID_MASK) == PM_FID_VALUE)
34#define is_ipi_fid(_fid) (((_fid) & XLNX_FID_MASK) == IPI_FID_VALUE)
Soren Brinkmannc8284402016-03-06 20:16:27 -080035
36/* SiP Service UUID */
Roberto Vargas03364862018-04-26 13:36:53 +010037DEFINE_SVC_UUID2(zynqmp_sip_uuid,
38 0x5c9b1b2a, 0x0586, 0x2340, 0xa6, 0x1b,
39 0xb9, 0x25, 0x82, 0x2d, 0xe3, 0xa5);
Soren Brinkmannc8284402016-03-06 20:16:27 -080040
41/**
42 * sip_svc_setup() - Setup SiP Service
43 *
44 * Invokes PM setup
45 */
46static int32_t sip_svc_setup(void)
47{
48 /* PM implementation as SiP Service */
Rajan Vaja19fe3c72018-10-05 04:42:57 -070049 return pm_setup();
Soren Brinkmannc8284402016-03-06 20:16:27 -080050}
51
52/**
53 * sip_svc_smc_handler() - Top-level SiP Service SMC handler
54 *
55 * Handler for all SiP SMC calls. Handles standard SIP requests
56 * and calls PM SMC handler if the call is for a PM-API function.
57 */
Venkatesh Yadav Abbarapu610eeac2022-05-16 17:29:04 +053058static uintptr_t sip_svc_smc_handler(uint32_t smc_fid,
Masahiro Yamada57d1e5f2018-04-19 01:18:48 +090059 u_register_t x1,
60 u_register_t x2,
61 u_register_t x3,
62 u_register_t x4,
63 void *cookie,
64 void *handle,
65 u_register_t flags)
Soren Brinkmannc8284402016-03-06 20:16:27 -080066{
Michal Simek09b342a2023-02-14 13:10:29 +010067 VERBOSE("SMCID: 0x%08x, x1: 0x%016" PRIx64 ", x2: 0x%016" PRIx64 ", x3: 0x%016" PRIx64 ", x4: 0x%016" PRIx64 "\n",
68 smc_fid, x1, x2, x3, x4);
69
Venkatesh Yadav Abbarapu504925f2020-11-23 04:26:54 -080070 /* Let EM SMC handler deal with EM-related requests */
71 if (is_em_fid(smc_fid)) {
72 return em_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
73 flags);
Michal Simeka9113962023-02-14 08:06:17 +010074 }
75
Michal Simek09b342a2023-02-14 13:10:29 +010076 if (smc_fid & SIP_FID_MASK) {
77 WARN("SMC out of SiP assinged range: 0x%x\n", smc_fid);
78 SMC_RET1(handle, SMC_UNK);
79 }
80
Soren Brinkmannc8284402016-03-06 20:16:27 -080081 /* Let PM SMC handler deal with PM-related requests */
Michal Simeka9113962023-02-14 08:06:17 +010082 if (is_pm_fid(smc_fid)) {
Soren Brinkmannc8284402016-03-06 20:16:27 -080083 return pm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
84 flags);
85 }
86
Wendy Liange8ffe792017-09-06 09:39:55 -070087 /* Let IPI SMC handler deal with IPI-related requests */
88 if (is_ipi_fid(smc_fid)) {
89 return ipi_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
90 flags);
91 }
92
Soren Brinkmannc8284402016-03-06 20:16:27 -080093 switch (smc_fid) {
94 case ZYNQMP_SIP_SVC_CALL_COUNT:
95 /* PM functions + default functions */
96 SMC_RET1(handle, PM_API_MAX + 2);
97
98 case ZYNQMP_SIP_SVC_UID:
99 SMC_UUID_RET(handle, zynqmp_sip_uuid);
100
101 case ZYNQMP_SIP_SVC_VERSION:
102 SMC_RET2(handle, SIP_SVC_VERSION_MAJOR, SIP_SVC_VERSION_MINOR);
103
104 default:
105 WARN("Unimplemented SiP Service Call: 0x%x\n", smc_fid);
106 SMC_RET1(handle, SMC_UNK);
107 }
108}
109
110/* Register PM Service Calls as runtime service */
111DECLARE_RT_SVC(
112 sip_svc,
113 OEN_SIP_START,
114 OEN_SIP_END,
Venkatesh Yadav Abbarapu2b57da62022-04-28 16:39:07 +0530115 (uint8_t)SMC_TYPE_FAST,
Soren Brinkmannc8284402016-03-06 20:16:27 -0800116 sip_svc_setup,
117 sip_svc_smc_handler);