/* * Copyright 2020 NXP * * SPDX-License-Identifier: Apache-2.0 */ #ifndef ZEPHYR_INCLUDE_ARCH_ARM64_ARCH_INLINES_H #define ZEPHYR_INCLUDE_ARCH_ARM64_ARCH_INLINES_H #ifndef _ASMLANGUAGE #include #include #include #include /* Note: keep in sync with `get_cpu` in arch/arm64/core/macro_priv.inc */ static ALWAYS_INLINE _cpu_t *arch_curr_cpu(void) { return (_cpu_t *)(read_tpidrro_el0() & TPIDRROEL0_CURR_CPU); } static ALWAYS_INLINE int arch_exception_depth(void) { return (read_tpidrro_el0() & TPIDRROEL0_EXC_DEPTH) / TPIDRROEL0_EXC_UNIT; } static ALWAYS_INLINE uint32_t arch_proc_id(void) { uint64_t cpu_mpid = read_mpidr_el1(); __ASSERT(cpu_mpid == (uint32_t)cpu_mpid, "mpid extends past 32 bits"); return (uint32_t)cpu_mpid; } static ALWAYS_INLINE unsigned int arch_num_cpus(void) { return CONFIG_MP_MAX_NUM_CPUS; } #endif /* !_ASMLANGUAGE */ #endif /* ZEPHYR_INCLUDE_ARCH_ARM64_ARCH_INLINES_H */