blob: 6f2ff9459c6ed0997abbceeb995cb243497e1a82 [file] [log] [blame]
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05301/*
Abhyuday Godhasara589afa52021-08-11 06:15:13 -07002 * Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +05303 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
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/debug.h>
10#include <common/runtime_svc.h>
11#include <tools_share/uuid.h>
Wendy Lianga4494de2019-01-21 13:45:49 +053012
13#include "ipi_mailbox_svc.h"
Tejas Patel354fe572018-12-14 00:55:37 -080014#include "pm_svc_main.h"
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053015
16/* SMC function IDs for SiP Service queries */
Abhyuday Godhasara589afa52021-08-11 06:15:13 -070017#define VERSAL_SIP_SVC_CALL_COUNT U(0x8200ff00)
18#define VERSAL_SIP_SVC_UID U(0x8200ff01)
19#define VERSAL_SIP_SVC_VERSION U(0x8200ff03)
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053020
21/* SiP Service Calls version numbers */
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -070022#define SIP_SVC_VERSION_MAJOR U(0)
23#define SIP_SVC_VERSION_MINOR U(1)
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053024
25/* These macros are used to identify PM calls from the SMC function ID */
26#define PM_FID_MASK 0xf000u
27#define PM_FID_VALUE 0u
Wendy Lianga4494de2019-01-21 13:45:49 +053028#define IPI_FID_VALUE 0x1000u
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053029#define is_pm_fid(_fid) (((_fid) & PM_FID_MASK) == PM_FID_VALUE)
Wendy Lianga4494de2019-01-21 13:45:49 +053030#define is_ipi_fid(_fid) (((_fid) & PM_FID_MASK) == IPI_FID_VALUE)
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053031
32/* SiP Service UUID */
33DEFINE_SVC_UUID2(versal_sip_uuid,
Abhyuday Godhasara096f5cc2021-08-13 06:45:32 -070034 0x2ab9e4ecU, 0x93b9U, 0x11e7U, 0xa0U, 0x19U,
35 0xdfU, 0xe0U, 0xdbU, 0xadU, 0x0aU, 0xe0U);
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053036
37/**
38 * sip_svc_setup() - Setup SiP Service
39 *
40 * Invokes PM setup
41 */
42static int32_t sip_svc_setup(void)
43{
Tejas Patel354fe572018-12-14 00:55:37 -080044 /* PM implementation as SiP Service */
Abhyuday Godhasaraf435a142021-08-20 00:04:33 -070045 (void)pm_setup();
Tejas Patel354fe572018-12-14 00:55:37 -080046
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053047 return 0;
48}
49
50/**
51 * sip_svc_smc_handler() - Top-level SiP Service SMC handler
52 *
53 * Handler for all SiP SMC calls. Handles standard SIP requests
54 * and calls PM SMC handler if the call is for a PM-API function.
55 */
56uintptr_t sip_svc_smc_handler(uint32_t smc_fid,
57 u_register_t x1,
58 u_register_t x2,
59 u_register_t x3,
60 u_register_t x4,
61 void *cookie,
62 void *handle,
63 u_register_t flags)
64{
65 /* Let PM SMC handler deal with PM-related requests */
Tejas Patel59c608a2019-01-09 04:10:29 -080066 if (is_pm_fid(smc_fid)) {
67 return pm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
68 flags);
69 }
70
Wendy Lianga4494de2019-01-21 13:45:49 +053071 /* Let IPI SMC handler deal with IPI-related requests */
72 if (is_ipi_fid(smc_fid)) {
73 return ipi_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
74 flags);
75 }
76
Tejas Patel59c608a2019-01-09 04:10:29 -080077 /* Let PM SMC handler deal with PM-related requests */
Siva Durga Prasad Paladugufe4af662018-09-25 18:44:58 +053078 switch (smc_fid) {
79 case VERSAL_SIP_SVC_CALL_COUNT:
80 /* PM functions + default functions */
81 SMC_RET1(handle, 2);
82
83 case VERSAL_SIP_SVC_UID:
84 SMC_UUID_RET(handle, versal_sip_uuid);
85
86 case VERSAL_SIP_SVC_VERSION:
87 SMC_RET2(handle, SIP_SVC_VERSION_MAJOR, SIP_SVC_VERSION_MINOR);
88
89 default:
90 WARN("Unimplemented SiP Service Call: 0x%x\n", smc_fid);
91 SMC_RET1(handle, SMC_UNK);
92 }
93}
94
95/* Register PM Service Calls as runtime service */
96DECLARE_RT_SVC(
97 sip_svc,
98 OEN_SIP_START,
99 OEN_SIP_END,
100 SMC_TYPE_FAST,
101 sip_svc_setup,
102 sip_svc_smc_handler);