blob: b30254d58c5d3c1b7e610184e3358d09fd067850 [file] [log] [blame]
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05301/*
Michal Simek2a47faa2023-04-14 08:43:51 +02002 * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
Prasad Kummari7d0623a2023-06-09 14:32:00 +05303 * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05304 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8/* Top level SMC handler for SiP calls. Dispatch PM calls to PM SMC handler. */
9
Michal Simek6e45f942023-02-15 12:39:22 +010010#include <inttypes.h>
11
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <common/debug.h>
13#include <common/runtime_svc.h>
14#include <tools_share/uuid.h>
Wendy Lianga4494de2019-01-21 13:45:49 +053015
16#include "ipi_mailbox_svc.h"
Tejas Patel354fe572018-12-14 00:55:37 -080017#include "pm_svc_main.h"
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053018
19/* SMC function IDs for SiP Service queries */
Abhyuday Godhasara589afa52021-08-11 06:15:13 -070020#define VERSAL_SIP_SVC_CALL_COUNT U(0x8200ff00)
21#define VERSAL_SIP_SVC_UID U(0x8200ff01)
22#define VERSAL_SIP_SVC_VERSION U(0x8200ff03)
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053023
24/* SiP Service Calls version numbers */
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -070025#define SIP_SVC_VERSION_MAJOR U(0)
26#define SIP_SVC_VERSION_MINOR U(1)
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053027
28/* These macros are used to identify PM calls from the SMC function ID */
Michal Simek6e45f942023-02-15 12:39:22 +010029#define SIP_FID_MASK GENMASK(23, 16)
30#define XLNX_FID_MASK GENMASK(23, 12)
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053031#define PM_FID_VALUE 0u
Wendy Lianga4494de2019-01-21 13:45:49 +053032#define IPI_FID_VALUE 0x1000u
Michal Simek6e45f942023-02-15 12:39:22 +010033#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)
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053035
36/* SiP Service UUID */
37DEFINE_SVC_UUID2(versal_sip_uuid,
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -070038 0x2ab9e4ecU, 0x93b9U, 0x11e7U, 0xa0U, 0x19U,
39 0xdfU, 0xe0U, 0xdbU, 0xadU, 0x0aU, 0xe0U);
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053040
41/**
42 * sip_svc_setup() - Setup SiP Service
43 *
Prasad Kummari7d0623a2023-06-09 14:32:00 +053044 * Return: 0 on success,negative error code on failure.
45 *
46 * Invokes PM setup.
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053047 */
48static int32_t sip_svc_setup(void)
49{
Tejas Patel354fe572018-12-14 00:55:37 -080050 /* PM implementation as SiP Service */
Abhyuday Godhasaraf435a142021-08-20 00:04:33 -070051 (void)pm_setup();
Tejas Patel354fe572018-12-14 00:55:37 -080052
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053053 return 0;
54}
55
56/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +053057 * sip_svc_smc_handler() - Top-level SiP Service SMC handler.
58 * @smc_fid: Function Identifier.
59 * @x1: SMC64 Arguments 1 from kernel.
60 * @x2: SMC64 Arguments 2 from kernel.
61 * @x3: SMC64 Arguments 3 from kernel(upper 32-bits).
62 * @x4: SMC64 Arguments 4 from kernel.
63 * @cookie: Unused
64 * @handle: Pointer to caller's context structure.
65 * @flags: SECURE_FLAG or NON_SECURE_FLAG.
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053066 *
67 * Handler for all SiP SMC calls. Handles standard SIP requests
68 * and calls PM SMC handler if the call is for a PM-API function.
Prasad Kummari7d0623a2023-06-09 14:32:00 +053069 *
70 * Return: Unused.
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053071 */
72uintptr_t sip_svc_smc_handler(uint32_t smc_fid,
73 u_register_t x1,
74 u_register_t x2,
75 u_register_t x3,
76 u_register_t x4,
77 void *cookie,
78 void *handle,
79 u_register_t flags)
80{
Michal Simek6e45f942023-02-15 12:39:22 +010081 VERBOSE("SMCID: 0x%08x, x1: 0x%016" PRIx64 ", x2: 0x%016" PRIx64 ", x3: 0x%016" PRIx64 ", x4: 0x%016" PRIx64 "\n",
82 smc_fid, x1, x2, x3, x4);
83
84 if (smc_fid & SIP_FID_MASK) {
85 WARN("SMC out of SiP assinged range: 0x%x\n", smc_fid);
86 SMC_RET1(handle, SMC_UNK);
87 }
88
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053089 /* Let PM SMC handler deal with PM-related requests */
Tejas Patel59c608a2019-01-09 04:10:29 -080090 if (is_pm_fid(smc_fid)) {
91 return pm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
92 flags);
93 }
94
Wendy Lianga4494de2019-01-21 13:45:49 +053095 /* Let IPI SMC handler deal with IPI-related requests */
96 if (is_ipi_fid(smc_fid)) {
97 return ipi_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
98 flags);
99 }
100
Tejas Patel59c608a2019-01-09 04:10:29 -0800101 /* Let PM SMC handler deal with PM-related requests */
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +0530102 switch (smc_fid) {
103 case VERSAL_SIP_SVC_CALL_COUNT:
104 /* PM functions + default functions */
105 SMC_RET1(handle, 2);
106
107 case VERSAL_SIP_SVC_UID:
108 SMC_UUID_RET(handle, versal_sip_uuid);
109
110 case VERSAL_SIP_SVC_VERSION:
111 SMC_RET2(handle, SIP_SVC_VERSION_MAJOR, SIP_SVC_VERSION_MINOR);
112
113 default:
114 WARN("Unimplemented SiP Service Call: 0x%x\n", smc_fid);
115 SMC_RET1(handle, SMC_UNK);
116 }
117}
118
119/* Register PM Service Calls as runtime service */
120DECLARE_RT_SVC(
121 sip_svc,
122 OEN_SIP_START,
123 OEN_SIP_END,
124 SMC_TYPE_FAST,
125 sip_svc_setup,
126 sip_svc_smc_handler);