blob: 08e31ffe397407be15576f7489101e2527f7f370 [file]
/*
* Copyright (c) 2019 Carlo Caione <ccaione@baylibre.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief Per-arch thread definition
*
* This file contains definitions for
*
* struct _thread_arch
* struct _callee_saved
*
* necessary to instantiate instances of struct k_thread.
*/
#ifndef ZEPHYR_INCLUDE_ARCH_ARM_AARCH64_THREAD_H_
#define ZEPHYR_INCLUDE_ARCH_ARM_AARCH64_THREAD_H_
#ifndef _ASMLANGUAGE
#include <zephyr/types.h>
struct _callee_saved {
u64_t x19;
u64_t x20;
u64_t x21;
u64_t x22;
u64_t x23;
u64_t x24;
u64_t x25;
u64_t x26;
u64_t x27;
u64_t x28;
u64_t x29; /* FP */
u64_t x30; /* LR */
u64_t sp;
};
typedef struct _callee_saved _callee_saved_t;
struct _thread_arch {
u32_t swap_return_value;
};
typedef struct _thread_arch _thread_arch_t;
#endif /* _ASMLANGUAGE */
#endif /* ZEPHYR_INCLUDE_ARCH_ARM_AARCH64_THREAD_H_ */