blob: f5990ca59925626ba2281a1bca999f9d3ddf5bb1 [file] [log] [blame]
Soren Brinkmann76fcae32016-03-06 20:16:27 -08001/*
Michal Simek2a47faa2023-04-14 08:43:51 +02002 * Copyright (c) 2013-2020, Arm Limited and Contributors. All rights reserved.
Michal Simekd4ff2722023-04-20 08:01:03 +02003 * Copyright (c) 2023, Advanced Micro Devices, Inc. All rights reserved.
Soren Brinkmann76fcae32016-03-06 20:16:27 -08004 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Soren Brinkmann76fcae32016-03-06 20:16:27 -08006 */
7
8/* Top level SMC handler for SiP calls. Dispatch PM calls to PM SMC handler. */
9
Michal Simekdb988fe2023-02-14 13:10:29 +010010#include <inttypes.h>
11
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <common/runtime_svc.h>
13#include <tools_share/uuid.h>
14
Amit Nagalf7ecba32023-02-15 18:43:55 +053015#include <custom_svc.h>
Wendy Liangf8fec362017-09-06 09:39:55 -070016#include "ipi_mailbox_svc.h"
Jay Buddhabhatti5b9f3912023-02-02 22:34:03 -080017#include "pm_defs.h"
Jay Buddhabhatti26e138a2022-12-21 23:03:35 -080018#include "zynqmp_pm_svc_main.h"
Soren Brinkmann76fcae32016-03-06 20:16:27 -080019
20/* SMC function IDs for SiP Service queries */
Venkatesh Yadav Abbarapued4f1e82022-04-29 09:58:30 +053021#define ZYNQMP_SIP_SVC_UID U(0x8200ff01)
22#define ZYNQMP_SIP_SVC_VERSION U(0x8200ff03)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080023
24/* SiP Service Calls version numbers */
25#define SIP_SVC_VERSION_MAJOR 0
26#define SIP_SVC_VERSION_MINOR 1
27
Wendy Liangf8fec362017-09-06 09:39:55 -070028/* These macros are used to identify PM, IPI calls from the SMC function ID */
Michal Simekdb988fe2023-02-14 13:10:29 +010029#define SIP_FID_MASK GENMASK(23, 16)
30#define XLNX_FID_MASK GENMASK(23, 12)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080031#define PM_FID_VALUE 0u
Wendy Liangf8fec362017-09-06 09:39:55 -070032#define IPI_FID_VALUE 0x1000u
Michal Simekdb988fe2023-02-14 13:10:29 +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)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080035
36/* SiP Service UUID */
Roberto Vargaseace8f12018-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 Brinkmann76fcae32016-03-06 20:16:27 -080040
41/**
Prasad Kummari7d0623a2023-06-09 14:32:00 +053042 * sip_svc_setup() - Setup SiP Service.
Soren Brinkmann76fcae32016-03-06 20:16:27 -080043 *
Prasad Kummari7d0623a2023-06-09 14:32:00 +053044 * Return: On success, the initialization function must return 0.
45 * Any other return value will cause the framework to ignore
46 * the service.
47 *
48 * Invokes PM setup.
Soren Brinkmann76fcae32016-03-06 20:16:27 -080049 */
50static int32_t sip_svc_setup(void)
51{
52 /* PM implementation as SiP Service */
Rajan Vaja720fd9d2018-10-05 04:42:57 -070053 return pm_setup();
Soren Brinkmann76fcae32016-03-06 20:16:27 -080054}
55
56/**
57 * sip_svc_smc_handler() - Top-level SiP Service SMC handler
Prasad Kummari7d0623a2023-06-09 14:32:00 +053058 * @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.
Soren Brinkmann76fcae32016-03-06 20:16:27 -080066 *
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.
Soren Brinkmann76fcae32016-03-06 20:16:27 -080071 */
Venkatesh Yadav Abbarapuc9505352022-05-16 17:29:04 +053072static uintptr_t sip_svc_smc_handler(uint32_t smc_fid,
Masahiro Yamada5ac9d962018-04-19 01:18:48 +090073 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)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080080{
Michal Simekdb988fe2023-02-14 13:10:29 +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
Michal Simekdb988fe2023-02-14 13:10:29 +010084 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
Soren Brinkmann76fcae32016-03-06 20:16:27 -080089 /* Let PM SMC handler deal with PM-related requests */
Michal Simekdb455e12023-02-14 08:06:17 +010090 if (is_pm_fid(smc_fid)) {
Soren Brinkmann76fcae32016-03-06 20:16:27 -080091 return pm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
92 flags);
93 }
94
Wendy Liangf8fec362017-09-06 09:39:55 -070095 /* 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
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800101 switch (smc_fid) {
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800102 case ZYNQMP_SIP_SVC_UID:
103 SMC_UUID_RET(handle, zynqmp_sip_uuid);
104
105 case ZYNQMP_SIP_SVC_VERSION:
106 SMC_RET2(handle, SIP_SVC_VERSION_MAJOR, SIP_SVC_VERSION_MINOR);
107
Amit Nagalf7ecba32023-02-15 18:43:55 +0530108 case ZYNQMP_SIP_SVC_CUSTOM:
109 case ZYNQMP_SIP_SVC64_CUSTOM:
110 return custom_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
111 handle, flags);
112
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800113 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,
Venkatesh Yadav Abbarapu336f9f82022-04-28 16:39:07 +0530124 (uint8_t)SMC_TYPE_FAST,
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800125 sip_svc_setup,
126 sip_svc_smc_handler);