164f6ea9bSJeenu Viswambharan /* 2*2fccb228SAntonio 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> 14cf0b1492SSoby Mathew #include <smcc_helpers.h> 15*2fccb228SAntonio Nino Diaz #include <spm_svc.h> 1664f6ea9bSJeenu Viswambharan #include <std_svc.h> 1797043ac9SDan Handley #include <stdint.h> 1897043ac9SDan Handley #include <uuid.h> 1964f6ea9bSJeenu Viswambharan 2064f6ea9bSJeenu Viswambharan /* Standard Service UUID */ 2164f6ea9bSJeenu Viswambharan DEFINE_SVC_UUID(arm_svc_uid, 2264f6ea9bSJeenu Viswambharan 0x108d905b, 0xf863, 0x47e8, 0xae, 0x2d, 2364f6ea9bSJeenu Viswambharan 0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2); 2464f6ea9bSJeenu Viswambharan 2558e946aeSSoby Mathew /* Setup Standard Services */ 2658e946aeSSoby Mathew static int32_t std_svc_setup(void) 2758e946aeSSoby Mathew { 2858e946aeSSoby Mathew uintptr_t svc_arg; 29*2fccb228SAntonio Nino Diaz int ret = 0; 3058e946aeSSoby Mathew 3158e946aeSSoby Mathew svc_arg = get_arm_std_svc_args(PSCI_FID_MASK); 3258e946aeSSoby Mathew assert(svc_arg); 3358e946aeSSoby Mathew 3458e946aeSSoby Mathew /* 35*2fccb228SAntonio Nino Diaz * PSCI is one of the specifications implemented as a Standard Service. 3658e946aeSSoby Mathew * The `psci_setup()` also does EL3 architectural setup. 3758e946aeSSoby Mathew */ 38*2fccb228SAntonio Nino Diaz if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) { 39*2fccb228SAntonio Nino Diaz ret = 1; 40*2fccb228SAntonio Nino Diaz } 41*2fccb228SAntonio Nino Diaz 42*2fccb228SAntonio Nino Diaz #if ENABLE_SPM 43*2fccb228SAntonio Nino Diaz if (spm_setup() != 0) { 44*2fccb228SAntonio Nino Diaz ret = 1; 45*2fccb228SAntonio Nino Diaz } 46*2fccb228SAntonio Nino Diaz #endif 47*2fccb228SAntonio Nino Diaz 48*2fccb228SAntonio Nino Diaz return ret; 4958e946aeSSoby Mathew } 5058e946aeSSoby Mathew 5164f6ea9bSJeenu Viswambharan /* 5264f6ea9bSJeenu Viswambharan * Top-level Standard Service SMC handler. This handler will in turn dispatch 5364f6ea9bSJeenu Viswambharan * calls to PSCI SMC handler 5464f6ea9bSJeenu Viswambharan */ 554c0d0390SSoby Mathew uintptr_t std_svc_smc_handler(uint32_t smc_fid, 564c0d0390SSoby Mathew u_register_t x1, 574c0d0390SSoby Mathew u_register_t x2, 584c0d0390SSoby Mathew u_register_t x3, 594c0d0390SSoby Mathew u_register_t x4, 6064f6ea9bSJeenu Viswambharan void *cookie, 6164f6ea9bSJeenu Viswambharan void *handle, 624c0d0390SSoby Mathew u_register_t flags) 6364f6ea9bSJeenu Viswambharan { 6464f6ea9bSJeenu Viswambharan /* 6564f6ea9bSJeenu Viswambharan * Dispatch PSCI calls to PSCI SMC handler and return its return 6664f6ea9bSJeenu Viswambharan * value 6764f6ea9bSJeenu Viswambharan */ 6864f6ea9bSJeenu Viswambharan if (is_psci_fid(smc_fid)) { 69872be88aSdp-arm uint64_t ret; 70872be88aSdp-arm 71872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION 72bfef6106Sdp-arm 73bfef6106Sdp-arm /* 74bfef6106Sdp-arm * Flush cache line so that even if CPU power down happens 75bfef6106Sdp-arm * the timestamp update is reflected in memory. 76bfef6106Sdp-arm */ 77872be88aSdp-arm PMF_WRITE_TIMESTAMP(rt_instr_svc, 78872be88aSdp-arm RT_INSTR_ENTER_PSCI, 79bfef6106Sdp-arm PMF_CACHE_MAINT, 80872be88aSdp-arm get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX])); 81872be88aSdp-arm #endif 82872be88aSdp-arm 83872be88aSdp-arm ret = psci_smc_handler(smc_fid, x1, x2, x3, x4, 84872be88aSdp-arm cookie, handle, flags); 85872be88aSdp-arm 86872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION 87872be88aSdp-arm PMF_CAPTURE_TIMESTAMP(rt_instr_svc, 88872be88aSdp-arm RT_INSTR_EXIT_PSCI, 89872be88aSdp-arm PMF_NO_CACHE_MAINT); 90872be88aSdp-arm #endif 91872be88aSdp-arm 92872be88aSdp-arm SMC_RET1(handle, ret); 9364f6ea9bSJeenu Viswambharan } 9464f6ea9bSJeenu Viswambharan 95*2fccb228SAntonio Nino Diaz 96*2fccb228SAntonio Nino Diaz #if ENABLE_SPM 97*2fccb228SAntonio Nino Diaz /* 98*2fccb228SAntonio Nino Diaz * Dispatch SPM calls to SPM SMC handler and return its return 99*2fccb228SAntonio Nino Diaz * value 100*2fccb228SAntonio Nino Diaz */ 101*2fccb228SAntonio Nino Diaz if (is_spm_fid(smc_fid)) { 102*2fccb228SAntonio Nino Diaz return spm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, 103*2fccb228SAntonio Nino Diaz handle, flags); 104*2fccb228SAntonio Nino Diaz } 105*2fccb228SAntonio Nino Diaz #endif 106*2fccb228SAntonio Nino Diaz 10764f6ea9bSJeenu Viswambharan switch (smc_fid) { 10864f6ea9bSJeenu Viswambharan case ARM_STD_SVC_CALL_COUNT: 10964f6ea9bSJeenu Viswambharan /* 11064f6ea9bSJeenu Viswambharan * Return the number of Standard Service Calls. PSCI is the only 11164f6ea9bSJeenu Viswambharan * standard service implemented; so return number of PSCI calls 11264f6ea9bSJeenu Viswambharan */ 11364f6ea9bSJeenu Viswambharan SMC_RET1(handle, PSCI_NUM_CALLS); 11464f6ea9bSJeenu Viswambharan 11564f6ea9bSJeenu Viswambharan case ARM_STD_SVC_UID: 11664f6ea9bSJeenu Viswambharan /* Return UID to the caller */ 11764f6ea9bSJeenu Viswambharan SMC_UUID_RET(handle, arm_svc_uid); 11864f6ea9bSJeenu Viswambharan 11964f6ea9bSJeenu Viswambharan case ARM_STD_SVC_VERSION: 12064f6ea9bSJeenu Viswambharan /* Return the version of current implementation */ 12164f6ea9bSJeenu Viswambharan SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR); 12264f6ea9bSJeenu Viswambharan 12364f6ea9bSJeenu Viswambharan default: 12464f6ea9bSJeenu Viswambharan WARN("Unimplemented Standard Service Call: 0x%x \n", smc_fid); 12564f6ea9bSJeenu Viswambharan SMC_RET1(handle, SMC_UNK); 12664f6ea9bSJeenu Viswambharan } 12764f6ea9bSJeenu Viswambharan } 12864f6ea9bSJeenu Viswambharan 12964f6ea9bSJeenu Viswambharan /* Register Standard Service Calls as runtime service */ 13064f6ea9bSJeenu Viswambharan DECLARE_RT_SVC( 13164f6ea9bSJeenu Viswambharan std_svc, 13264f6ea9bSJeenu Viswambharan 13364f6ea9bSJeenu Viswambharan OEN_STD_START, 13464f6ea9bSJeenu Viswambharan OEN_STD_END, 13564f6ea9bSJeenu Viswambharan SMC_TYPE_FAST, 13658e946aeSSoby Mathew std_svc_setup, 13764f6ea9bSJeenu Viswambharan std_svc_smc_handler 13864f6ea9bSJeenu Viswambharan ); 139