164f6ea9bSJeenu Viswambharan /* 22fccb228SAntonio Nino Diaz * Copyright (c) 2014-2017, ARM Limited and Contributors. All rights reserved. 364f6ea9bSJeenu Viswambharan * 482cb2c1aSdp-arm * SPDX-License-Identifier: BSD-3-Clause 564f6ea9bSJeenu Viswambharan */ 664f6ea9bSJeenu Viswambharan 758e946aeSSoby Mathew #include <assert.h> 8872be88aSdp-arm #include <cpu_data.h> 997043ac9SDan Handley #include <debug.h> 10872be88aSdp-arm #include <pmf.h> 1197043ac9SDan Handley #include <psci.h> 12872be88aSdp-arm #include <runtime_instr.h> 1364f6ea9bSJeenu Viswambharan #include <runtime_svc.h> 14*b7cb133eSJeenu Viswambharan #include <sdei.h> 15cf0b1492SSoby Mathew #include <smcc_helpers.h> 162fccb228SAntonio Nino Diaz #include <spm_svc.h> 1764f6ea9bSJeenu Viswambharan #include <std_svc.h> 1897043ac9SDan Handley #include <stdint.h> 1997043ac9SDan Handley #include <uuid.h> 2064f6ea9bSJeenu Viswambharan 2164f6ea9bSJeenu Viswambharan /* Standard Service UUID */ 2264f6ea9bSJeenu Viswambharan DEFINE_SVC_UUID(arm_svc_uid, 2364f6ea9bSJeenu Viswambharan 0x108d905b, 0xf863, 0x47e8, 0xae, 0x2d, 2464f6ea9bSJeenu Viswambharan 0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2); 2564f6ea9bSJeenu Viswambharan 2658e946aeSSoby Mathew /* Setup Standard Services */ 2758e946aeSSoby Mathew static int32_t std_svc_setup(void) 2858e946aeSSoby Mathew { 2958e946aeSSoby Mathew uintptr_t svc_arg; 302fccb228SAntonio Nino Diaz int ret = 0; 3158e946aeSSoby Mathew 3258e946aeSSoby Mathew svc_arg = get_arm_std_svc_args(PSCI_FID_MASK); 3358e946aeSSoby Mathew assert(svc_arg); 3458e946aeSSoby Mathew 3558e946aeSSoby Mathew /* 362fccb228SAntonio Nino Diaz * PSCI is one of the specifications implemented as a Standard Service. 3758e946aeSSoby Mathew * The `psci_setup()` also does EL3 architectural setup. 3858e946aeSSoby Mathew */ 392fccb228SAntonio Nino Diaz if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) { 402fccb228SAntonio Nino Diaz ret = 1; 412fccb228SAntonio Nino Diaz } 422fccb228SAntonio Nino Diaz 432fccb228SAntonio Nino Diaz #if ENABLE_SPM 442fccb228SAntonio Nino Diaz if (spm_setup() != 0) { 452fccb228SAntonio Nino Diaz ret = 1; 462fccb228SAntonio Nino Diaz } 472fccb228SAntonio Nino Diaz #endif 482fccb228SAntonio Nino Diaz 49*b7cb133eSJeenu Viswambharan #if SDEI_SUPPORT 50*b7cb133eSJeenu Viswambharan /* SDEI initialisation */ 51*b7cb133eSJeenu Viswambharan sdei_init(); 52*b7cb133eSJeenu Viswambharan #endif 53*b7cb133eSJeenu Viswambharan 542fccb228SAntonio Nino Diaz return ret; 5558e946aeSSoby Mathew } 5658e946aeSSoby Mathew 5764f6ea9bSJeenu Viswambharan /* 5864f6ea9bSJeenu Viswambharan * Top-level Standard Service SMC handler. This handler will in turn dispatch 5964f6ea9bSJeenu Viswambharan * calls to PSCI SMC handler 6064f6ea9bSJeenu Viswambharan */ 614c0d0390SSoby Mathew uintptr_t std_svc_smc_handler(uint32_t smc_fid, 624c0d0390SSoby Mathew u_register_t x1, 634c0d0390SSoby Mathew u_register_t x2, 644c0d0390SSoby Mathew u_register_t x3, 654c0d0390SSoby Mathew u_register_t x4, 6664f6ea9bSJeenu Viswambharan void *cookie, 6764f6ea9bSJeenu Viswambharan void *handle, 684c0d0390SSoby Mathew u_register_t flags) 6964f6ea9bSJeenu Viswambharan { 7064f6ea9bSJeenu Viswambharan /* 7164f6ea9bSJeenu Viswambharan * Dispatch PSCI calls to PSCI SMC handler and return its return 7264f6ea9bSJeenu Viswambharan * value 7364f6ea9bSJeenu Viswambharan */ 7464f6ea9bSJeenu Viswambharan if (is_psci_fid(smc_fid)) { 75872be88aSdp-arm uint64_t ret; 76872be88aSdp-arm 77872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION 78bfef6106Sdp-arm 79bfef6106Sdp-arm /* 80bfef6106Sdp-arm * Flush cache line so that even if CPU power down happens 81bfef6106Sdp-arm * the timestamp update is reflected in memory. 82bfef6106Sdp-arm */ 83872be88aSdp-arm PMF_WRITE_TIMESTAMP(rt_instr_svc, 84872be88aSdp-arm RT_INSTR_ENTER_PSCI, 85bfef6106Sdp-arm PMF_CACHE_MAINT, 86872be88aSdp-arm get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX])); 87872be88aSdp-arm #endif 88872be88aSdp-arm 89872be88aSdp-arm ret = psci_smc_handler(smc_fid, x1, x2, x3, x4, 90872be88aSdp-arm cookie, handle, flags); 91872be88aSdp-arm 92872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION 93872be88aSdp-arm PMF_CAPTURE_TIMESTAMP(rt_instr_svc, 94872be88aSdp-arm RT_INSTR_EXIT_PSCI, 95872be88aSdp-arm PMF_NO_CACHE_MAINT); 96872be88aSdp-arm #endif 97872be88aSdp-arm 98872be88aSdp-arm SMC_RET1(handle, ret); 9964f6ea9bSJeenu Viswambharan } 10064f6ea9bSJeenu Viswambharan 1012fccb228SAntonio Nino Diaz #if ENABLE_SPM 1022fccb228SAntonio Nino Diaz /* 1032fccb228SAntonio Nino Diaz * Dispatch SPM calls to SPM SMC handler and return its return 1042fccb228SAntonio Nino Diaz * value 1052fccb228SAntonio Nino Diaz */ 1062fccb228SAntonio Nino Diaz if (is_spm_fid(smc_fid)) { 1072fccb228SAntonio Nino Diaz return spm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, 1082fccb228SAntonio Nino Diaz handle, flags); 1092fccb228SAntonio Nino Diaz } 1102fccb228SAntonio Nino Diaz #endif 1112fccb228SAntonio Nino Diaz 112*b7cb133eSJeenu Viswambharan #if SDEI_SUPPORT 113*b7cb133eSJeenu Viswambharan if (is_sdei_fid(smc_fid)) { 114*b7cb133eSJeenu Viswambharan return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, 115*b7cb133eSJeenu Viswambharan flags); 116*b7cb133eSJeenu Viswambharan } 117*b7cb133eSJeenu Viswambharan #endif 118*b7cb133eSJeenu Viswambharan 11964f6ea9bSJeenu Viswambharan switch (smc_fid) { 12064f6ea9bSJeenu Viswambharan case ARM_STD_SVC_CALL_COUNT: 12164f6ea9bSJeenu Viswambharan /* 12264f6ea9bSJeenu Viswambharan * Return the number of Standard Service Calls. PSCI is the only 12364f6ea9bSJeenu Viswambharan * standard service implemented; so return number of PSCI calls 12464f6ea9bSJeenu Viswambharan */ 12564f6ea9bSJeenu Viswambharan SMC_RET1(handle, PSCI_NUM_CALLS); 12664f6ea9bSJeenu Viswambharan 12764f6ea9bSJeenu Viswambharan case ARM_STD_SVC_UID: 12864f6ea9bSJeenu Viswambharan /* Return UID to the caller */ 12964f6ea9bSJeenu Viswambharan SMC_UUID_RET(handle, arm_svc_uid); 13064f6ea9bSJeenu Viswambharan 13164f6ea9bSJeenu Viswambharan case ARM_STD_SVC_VERSION: 13264f6ea9bSJeenu Viswambharan /* Return the version of current implementation */ 13364f6ea9bSJeenu Viswambharan SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR); 13464f6ea9bSJeenu Viswambharan 13564f6ea9bSJeenu Viswambharan default: 13664f6ea9bSJeenu Viswambharan WARN("Unimplemented Standard Service Call: 0x%x \n", smc_fid); 13764f6ea9bSJeenu Viswambharan SMC_RET1(handle, SMC_UNK); 13864f6ea9bSJeenu Viswambharan } 13964f6ea9bSJeenu Viswambharan } 14064f6ea9bSJeenu Viswambharan 14164f6ea9bSJeenu Viswambharan /* Register Standard Service Calls as runtime service */ 14264f6ea9bSJeenu Viswambharan DECLARE_RT_SVC( 14364f6ea9bSJeenu Viswambharan std_svc, 14464f6ea9bSJeenu Viswambharan 14564f6ea9bSJeenu Viswambharan OEN_STD_START, 14664f6ea9bSJeenu Viswambharan OEN_STD_END, 14764f6ea9bSJeenu Viswambharan SMC_TYPE_FAST, 14858e946aeSSoby Mathew std_svc_setup, 14964f6ea9bSJeenu Viswambharan std_svc_smc_handler 15064f6ea9bSJeenu Viswambharan ); 151