1 // SPDX-License-Identifier: BSD-2-Clause 2 /* 3 * Copyright (c) 2016, Linaro Limited 4 */ 5 6 #include <gen-asm-defines.h> 7 #include <kernel/thread.h> 8 #include <sm/pm.h> 9 #include <sm/sm.h> 10 #include <types_ext.h> 11 #include "thread_private.h" 12 13 DEFINES 14 { 15 #ifdef ARM32 16 DEFINE(SM_NSEC_CTX_R0, offsetof(struct sm_nsec_ctx, r0)); 17 DEFINE(SM_NSEC_CTX_R8, offsetof(struct sm_nsec_ctx, r8)); 18 DEFINE(SM_SEC_CTX_R0, offsetof(struct sm_sec_ctx, r0)); 19 DEFINE(SM_SEC_CTX_MON_LR, offsetof(struct sm_sec_ctx, mon_lr)); 20 DEFINE(SM_CTX_SEC_SIZE, sizeof(struct sm_sec_ctx)); 21 DEFINE(SM_CTX_SIZE, sizeof(struct sm_ctx)); 22 DEFINE(SM_CTX_NSEC, offsetof(struct sm_ctx, nsec)); 23 DEFINE(SM_CTX_SEC, offsetof(struct sm_ctx, sec)); 24 25 DEFINE(THREAD_VECTOR_TABLE_FIQ_ENTRY, 26 offsetof(struct thread_vector_table, fiq_entry)); 27 28 DEFINE(THREAD_SVC_REG_R0, offsetof(struct thread_svc_regs, r0)); 29 DEFINE(THREAD_SVC_REG_R5, offsetof(struct thread_svc_regs, r5)); 30 DEFINE(THREAD_SVC_REG_R6, offsetof(struct thread_svc_regs, r6)); 31 32 /* struct thread_core_local */ 33 DEFINE(THREAD_CORE_LOCAL_R0, offsetof(struct thread_core_local, r[0])); 34 DEFINE(THREAD_CORE_LOCAL_SM_PM_CTX_PHYS, 35 offsetof(struct thread_core_local, sm_pm_ctx_phys)); 36 DEFINE(THREAD_CORE_LOCAL_SIZE, sizeof(struct thread_core_local)); 37 38 DEFINE(SM_PM_CTX_SIZE, sizeof(struct sm_pm_ctx)); 39 #endif /*ARM32*/ 40 41 #ifdef ARM64 42 DEFINE(THREAD_SMC_ARGS_X0, offsetof(struct thread_smc_args, a0)); 43 DEFINE(THREAD_SMC_ARGS_SIZE, sizeof(struct thread_smc_args)); 44 45 DEFINE(THREAD_SVC_REG_X0, offsetof(struct thread_svc_regs, x0)); 46 DEFINE(THREAD_SVC_REG_X2, offsetof(struct thread_svc_regs, x2)); 47 DEFINE(THREAD_SVC_REG_X5, offsetof(struct thread_svc_regs, x5)); 48 DEFINE(THREAD_SVC_REG_X6, offsetof(struct thread_svc_regs, x6)); 49 DEFINE(THREAD_SVC_REG_X30, offsetof(struct thread_svc_regs, x30)); 50 DEFINE(THREAD_SVC_REG_ELR, offsetof(struct thread_svc_regs, elr)); 51 DEFINE(THREAD_SVC_REG_SPSR, offsetof(struct thread_svc_regs, spsr)); 52 DEFINE(THREAD_SVC_REG_SP_EL0, offsetof(struct thread_svc_regs, sp_el0)); 53 DEFINE(THREAD_SVC_REG_SIZE, sizeof(struct thread_svc_regs)); 54 55 /* struct thread_abort_regs */ 56 DEFINE(THREAD_ABT_REG_X0, offsetof(struct thread_abort_regs, x0)); 57 DEFINE(THREAD_ABT_REG_X2, offsetof(struct thread_abort_regs, x2)); 58 DEFINE(THREAD_ABT_REG_X30, offsetof(struct thread_abort_regs, x30)); 59 DEFINE(THREAD_ABT_REG_SPSR, offsetof(struct thread_abort_regs, spsr)); 60 DEFINE(THREAD_ABT_REGS_SIZE, sizeof(struct thread_abort_regs)); 61 62 /* struct thread_ctx */ 63 DEFINE(THREAD_CTX_KERN_SP, offsetof(struct thread_ctx, kern_sp)); 64 DEFINE(THREAD_CTX_SIZE, sizeof(struct thread_ctx)); 65 66 /* struct thread_ctx_regs */ 67 DEFINE(THREAD_CTX_REGS_SP, offsetof(struct thread_ctx_regs, sp)); 68 DEFINE(THREAD_CTX_REGS_X0, offsetof(struct thread_ctx_regs, x[0])); 69 DEFINE(THREAD_CTX_REGS_X1, offsetof(struct thread_ctx_regs, x[1])); 70 DEFINE(THREAD_CTX_REGS_X4, offsetof(struct thread_ctx_regs, x[4])); 71 DEFINE(THREAD_CTX_REGS_X19, offsetof(struct thread_ctx_regs, x[19])); 72 73 /* struct thread_user_mode_rec */ 74 DEFINE(THREAD_USER_MODE_REC_EXIT_STATUS0_PTR, 75 offsetof(struct thread_user_mode_rec, exit_status0_ptr)); 76 DEFINE(THREAD_USER_MODE_REC_X19, 77 offsetof(struct thread_user_mode_rec, x[0])); 78 DEFINE(THREAD_USER_MODE_REC_SIZE, sizeof(struct thread_user_mode_rec)); 79 80 /* struct thread_core_local */ 81 DEFINE(THREAD_CORE_LOCAL_X0, offsetof(struct thread_core_local, x[0])); 82 DEFINE(THREAD_CORE_LOCAL_X2, offsetof(struct thread_core_local, x[2])); 83 #endif /*ARM64*/ 84 85 /* struct thread_core_local */ 86 DEFINE(THREAD_CORE_LOCAL_TMP_STACK_VA_END, 87 offsetof(struct thread_core_local, tmp_stack_va_end)); 88 DEFINE(THREAD_CORE_LOCAL_CURR_THREAD, 89 offsetof(struct thread_core_local, curr_thread)); 90 DEFINE(THREAD_CORE_LOCAL_FLAGS, 91 offsetof(struct thread_core_local, flags)); 92 DEFINE(THREAD_CORE_LOCAL_ABT_STACK_VA_END, 93 offsetof(struct thread_core_local, abt_stack_va_end)); 94 95 } 96