1 /* 2 * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are met: 6 * 7 * Redistributions of source code must retain the above copyright notice, this 8 * list of conditions and the following disclaimer. 9 * 10 * Redistributions in binary form must reproduce the above copyright notice, 11 * this list of conditions and the following disclaimer in the documentation 12 * and/or other materials provided with the distribution. 13 * 14 * Neither the name of ARM nor the names of its contributors may be used 15 * to endorse or promote products derived from this software without specific 16 * prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 #include <stdint.h> 32 #include <uuid.h> 33 #include <context_mgmt.h> 34 #include <runtime_svc.h> 35 #include <std_svc.h> 36 #include <psci.h> 37 #include <psci_private.h> 38 #include <debug.h> 39 40 /* Standard Service UUID */ 41 DEFINE_SVC_UUID(arm_svc_uid, 42 0x108d905b, 0xf863, 0x47e8, 0xae, 0x2d, 43 0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2); 44 45 /* Setup Standard Services */ 46 static int32_t std_svc_setup(void) 47 { 48 /* 49 * PSCI is the only specification implemented as a Standard Service. 50 * Invoke PSCI setup from here 51 */ 52 return psci_setup(); 53 } 54 55 /* 56 * Top-level Standard Service SMC handler. This handler will in turn dispatch 57 * calls to PSCI SMC handler 58 */ 59 uint64_t std_svc_smc_handler(uint32_t smc_fid, 60 uint64_t x1, 61 uint64_t x2, 62 uint64_t x3, 63 uint64_t x4, 64 void *cookie, 65 void *handle, 66 uint64_t flags) 67 { 68 /* 69 * Dispatch PSCI calls to PSCI SMC handler and return its return 70 * value 71 */ 72 if (is_psci_fid(smc_fid)) { 73 return psci_smc_handler(smc_fid, x1, x2, x3, x4, cookie, 74 handle, flags); 75 } 76 77 switch (smc_fid) { 78 case ARM_STD_SVC_CALL_COUNT: 79 /* 80 * Return the number of Standard Service Calls. PSCI is the only 81 * standard service implemented; so return number of PSCI calls 82 */ 83 SMC_RET1(handle, PSCI_NUM_CALLS); 84 85 case ARM_STD_SVC_UID: 86 /* Return UID to the caller */ 87 SMC_UUID_RET(handle, arm_svc_uid); 88 89 case ARM_STD_SVC_VERSION: 90 /* Return the version of current implementation */ 91 SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR); 92 93 default: 94 WARN("Unimplemented Standard Service Call: 0x%x \n", smc_fid); 95 SMC_RET1(handle, SMC_UNK); 96 } 97 } 98 99 /* Register Standard Service Calls as runtime service */ 100 DECLARE_RT_SVC( 101 std_svc, 102 103 OEN_STD_START, 104 OEN_STD_END, 105 SMC_TYPE_FAST, 106 std_svc_setup, 107 std_svc_smc_handler 108 ); 109