Lines Matching defs:state
18 * Secure Payload PM state information e.g. SP is suspended, uninitialised etc
19 * and macros to access the state information in the per-cpu 'state' flags
26 #define get_tsp_pstate(state) ((state >> TSP_PSTATE_SHIFT) & TSP_PSTATE_MASK)
27 #define clr_tsp_pstate(state) (state &= ~(TSP_PSTATE_MASK \
47 #define get_yield_smc_active_flag(state) \
48 ((state >> YIELD_SMC_ACTIVE_FLAG_SHIFT) \
50 #define set_yield_smc_active_flag(state) (state |= \
52 #define clr_yield_smc_active_flag(state) (state &= \
57 * Secure Payload execution state information i.e. aarch32 or aarch64
84 * C runtime context while performing a security state switch.
164 * Structure which helps the SPD to maintain the per-cpu state of the SP.
169 * 'state' - collection of flags to track SP state e.g. on/off
173 * 'cpu_ctx' - space to maintain SP architectural state
184 uint32_t state;