You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
904 B
31 lines
904 B
/* |
|
* Copyright (c) 2019 Carlo Caione <ccaione@baylibre.com> |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
/** |
|
* @file |
|
* @brief Private kernel definitions (ARM) |
|
* |
|
* This file contains private kernel function definitions and various |
|
* other definitions for the 32-bit ARM Cortex-A/R/M processor architecture |
|
* family. |
|
* |
|
* This file is also included by assembly language files which must #define |
|
* _ASMLANGUAGE before including this header file. Note that kernel |
|
* assembly source files obtains structure offset values via "absolute symbols" |
|
* in the offsets.o module. |
|
*/ |
|
|
|
#ifndef ZEPHYR_ARCH_ARM_INCLUDE_KERNEL_ARCH_FUNC_H_ |
|
#define ZEPHYR_ARCH_ARM_INCLUDE_KERNEL_ARCH_FUNC_H_ |
|
|
|
#include <kernel_arch_data.h> |
|
|
|
#if defined(CONFIG_CPU_CORTEX_M) |
|
#include <cortex_m/kernel_arch_func.h> |
|
#else |
|
#include <cortex_a_r/kernel_arch_func.h> |
|
#endif |
|
|
|
#endif /* ZEPHYR_ARCH_ARM_INCLUDE_KERNEL_ARCH_FUNC_H_ */
|
|
|