blob: 997cb1e1b8cbfcac03be5eb3db12e3df7d9fbb07 [file] [log] [blame]
Soren Brinkmann76fcae32016-03-06 20:16:27 -08001/*
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -08002 * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
Soren Brinkmann76fcae32016-03-06 20:16:27 -08003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soren Brinkmann76fcae32016-03-06 20:16:27 -08005 */
6
7/* Top level SMC handler for SiP calls. Dispatch PM calls to PM SMC handler. */
8
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <common/runtime_svc.h>
10#include <tools_share/uuid.h>
11
Amit Nagalf7ecba32023-02-15 18:43:55 +053012#include <custom_svc.h>
Wendy Liangf8fec362017-09-06 09:39:55 -070013#include "ipi_mailbox_svc.h"
Soren Brinkmann76fcae32016-03-06 20:16:27 -080014#include "pm_svc_main.h"
15
16/* SMC function IDs for SiP Service queries */
Venkatesh Yadav Abbarapued4f1e82022-04-29 09:58:30 +053017#define ZYNQMP_SIP_SVC_CALL_COUNT U(0x8200ff00)
18#define ZYNQMP_SIP_SVC_UID U(0x8200ff01)
19#define ZYNQMP_SIP_SVC_VERSION U(0x8200ff03)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080020
21/* SiP Service Calls version numbers */
22#define SIP_SVC_VERSION_MAJOR 0
23#define SIP_SVC_VERSION_MINOR 1
24
Wendy Liangf8fec362017-09-06 09:39:55 -070025/* These macros are used to identify PM, IPI calls from the SMC function ID */
Soren Brinkmann76fcae32016-03-06 20:16:27 -080026#define PM_FID_MASK 0xf000u
27#define PM_FID_VALUE 0u
Wendy Liangf8fec362017-09-06 09:39:55 -070028#define IPI_FID_VALUE 0x1000u
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -080029#define EM_FID_MASK 0xf0000u
30#define EM_FID_VALUE 0xE0000u
31#define is_em_fid(_fid) (((_fid) & EM_FID_MASK) == EM_FID_VALUE)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080032#define is_pm_fid(_fid) (((_fid) & PM_FID_MASK) == PM_FID_VALUE)
Wendy Liangf8fec362017-09-06 09:39:55 -070033#define is_ipi_fid(_fid) (((_fid) & PM_FID_MASK) == IPI_FID_VALUE)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080034
35/* SiP Service UUID */
Roberto Vargaseace8f12018-04-26 13:36:53 +010036DEFINE_SVC_UUID2(zynqmp_sip_uuid,
37 0x5c9b1b2a, 0x0586, 0x2340, 0xa6, 0x1b,
38 0xb9, 0x25, 0x82, 0x2d, 0xe3, 0xa5);
Soren Brinkmann76fcae32016-03-06 20:16:27 -080039
40/**
41 * sip_svc_setup() - Setup SiP Service
42 *
43 * Invokes PM setup
44 */
45static int32_t sip_svc_setup(void)
46{
47 /* PM implementation as SiP Service */
Rajan Vaja720fd9d2018-10-05 04:42:57 -070048 return pm_setup();
Soren Brinkmann76fcae32016-03-06 20:16:27 -080049}
50
51/**
52 * sip_svc_smc_handler() - Top-level SiP Service SMC handler
53 *
54 * Handler for all SiP SMC calls. Handles standard SIP requests
55 * and calls PM SMC handler if the call is for a PM-API function.
56 */
Venkatesh Yadav Abbarapuc9505352022-05-16 17:29:04 +053057static uintptr_t sip_svc_smc_handler(uint32_t smc_fid,
Masahiro Yamada5ac9d962018-04-19 01:18:48 +090058 u_register_t x1,
59 u_register_t x2,
60 u_register_t x3,
61 u_register_t x4,
62 void *cookie,
63 void *handle,
64 u_register_t flags)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080065{
Venkatesh Yadav Abbarapu7ace4af2020-11-23 04:26:54 -080066 /* Let EM SMC handler deal with EM-related requests */
67 if (is_em_fid(smc_fid)) {
68 return em_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
69 flags);
70 } else if (is_pm_fid(smc_fid)) {
Soren Brinkmann76fcae32016-03-06 20:16:27 -080071 /* Let PM SMC handler deal with PM-related requests */
Soren Brinkmann76fcae32016-03-06 20:16:27 -080072 return pm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
73 flags);
74 }
75
Wendy Liangf8fec362017-09-06 09:39:55 -070076 /* Let IPI SMC handler deal with IPI-related requests */
77 if (is_ipi_fid(smc_fid)) {
78 return ipi_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
79 flags);
80 }
81
Soren Brinkmann76fcae32016-03-06 20:16:27 -080082 switch (smc_fid) {
83 case ZYNQMP_SIP_SVC_CALL_COUNT:
84 /* PM functions + default functions */
85 SMC_RET1(handle, PM_API_MAX + 2);
86
87 case ZYNQMP_SIP_SVC_UID:
88 SMC_UUID_RET(handle, zynqmp_sip_uuid);
89
90 case ZYNQMP_SIP_SVC_VERSION:
91 SMC_RET2(handle, SIP_SVC_VERSION_MAJOR, SIP_SVC_VERSION_MINOR);
92
Amit Nagalf7ecba32023-02-15 18:43:55 +053093 case ZYNQMP_SIP_SVC_CUSTOM:
94 case ZYNQMP_SIP_SVC64_CUSTOM:
95 return custom_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
96 handle, flags);
97
Soren Brinkmann76fcae32016-03-06 20:16:27 -080098 default:
99 WARN("Unimplemented SiP Service Call: 0x%x\n", smc_fid);
100 SMC_RET1(handle, SMC_UNK);
101 }
102}
103
104/* Register PM Service Calls as runtime service */
105DECLARE_RT_SVC(
106 sip_svc,
107 OEN_SIP_START,
108 OEN_SIP_END,
Venkatesh Yadav Abbarapu336f9f82022-04-28 16:39:07 +0530109 (uint8_t)SMC_TYPE_FAST,
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800110 sip_svc_setup,
111 sip_svc_smc_handler);