81 lines
1.9 KiB
C
81 lines
1.9 KiB
C
/*
|
|
* Copyright (c) 2016 Jean-Paul Etienne <fractalclone@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Private kernel definitions
|
|
*
|
|
* This file contains private kernel structures definitions and various
|
|
* other definitions for the RISCV32 processor architecture.
|
|
*/
|
|
|
|
#ifndef _kernel_arch_data_h_
|
|
#define _kernel_arch_data_h_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <toolchain.h>
|
|
#include <sections.h>
|
|
#include <arch/cpu.h>
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
#include <kernel.h>
|
|
#include <zephyr/types.h>
|
|
#include <misc/util.h>
|
|
#include <misc/dlist.h>
|
|
#include <nano_internal.h>
|
|
|
|
/*
|
|
* The following structure defines the list of registers that need to be
|
|
* saved/restored when a cooperative context switch occurs.
|
|
*/
|
|
struct _callee_saved {
|
|
uint32_t sp; /* Stack pointer, (x2 register) */
|
|
|
|
uint32_t s0; /* saved register/frame pointer */
|
|
uint32_t s1; /* saved register */
|
|
uint32_t s2; /* saved register */
|
|
uint32_t s3; /* saved register */
|
|
uint32_t s4; /* saved register */
|
|
uint32_t s5; /* saved register */
|
|
uint32_t s6; /* saved register */
|
|
uint32_t s7; /* saved register */
|
|
uint32_t s8; /* saved register */
|
|
uint32_t s9; /* saved register */
|
|
uint32_t s10; /* saved register */
|
|
uint32_t s11; /* saved register */
|
|
};
|
|
typedef struct _callee_saved _callee_saved_t;
|
|
|
|
struct _caller_saved {
|
|
/*
|
|
* Nothing here, the exception code puts all the caller-saved
|
|
* registers onto the stack.
|
|
*/
|
|
};
|
|
|
|
typedef struct _caller_saved _caller_saved_t;
|
|
|
|
struct _thread_arch {
|
|
uint32_t swap_return_value; /* Return value of _Swap() */
|
|
};
|
|
|
|
typedef struct _thread_arch _thread_arch_t;
|
|
|
|
struct _kernel_arch {
|
|
/* nothing for now */
|
|
};
|
|
|
|
typedef struct _kernel_arch _kernel_arch_t;
|
|
|
|
extern char _interrupt_stack[CONFIG_ISR_STACK_SIZE];
|
|
|
|
#endif /* _ASMLANGUAGE */
|
|
|
|
#endif /* _kernel_arch_data_h_ */
|