mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
97 lines
4.2 KiB
C
97 lines
4.2 KiB
C
// Copyright 2015-2020 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef __RVRUNTIME_FRAMES_H__
|
|
#define __RVRUNTIME_FRAMES_H__
|
|
|
|
/* Align a value up to nearest n-byte boundary, where n is a power of 2. */
|
|
#define ALIGNUP(n, val) (((val) + (n) - 1) & -(n))
|
|
|
|
#ifdef STRUCT_BEGIN
|
|
#undef STRUCT_BEGIN
|
|
#undef STRUCT_FIELD
|
|
#undef STRUCT_AFIELD
|
|
#undef STRUCT_END
|
|
#endif
|
|
|
|
#if defined(_ASMLANGUAGE) || defined(__ASSEMBLER__)
|
|
#define STRUCT_BEGIN .pushsection .text; .struct 0
|
|
#define STRUCT_FIELD(ctype,size,asname,name) asname: .space size
|
|
#define STRUCT_AFIELD(ctype,size,asname,name,n) asname: .space (size)*(n)
|
|
#define STRUCT_END(sname) sname##Size:; .popsection
|
|
#else
|
|
#define STRUCT_BEGIN typedef struct {
|
|
#define STRUCT_FIELD(ctype,size,asname,name) ctype name;
|
|
#define STRUCT_AFIELD(ctype,size,asname,name,n) ctype name[n];
|
|
#define STRUCT_END(sname) } sname;
|
|
#endif
|
|
|
|
/*
|
|
-------------------------------------------------------------------------------
|
|
INTERRUPT/EXCEPTION STACK FRAME FOR A EXCEPTION OR NESTED INTERRUPT
|
|
-------------------------------------------------------------------------------
|
|
*/
|
|
STRUCT_BEGIN
|
|
STRUCT_FIELD (long, 4, RV_STK_MEPC, mepc) /* Machine Exception Program Counter */
|
|
STRUCT_FIELD (long, 4, RV_STK_RA, ra) /* Return address */
|
|
STRUCT_FIELD (long, 4, RV_STK_SP, sp) /* Stack pointer */
|
|
STRUCT_FIELD (long, 4, RV_STK_GP, gp) /* Global pointer */
|
|
STRUCT_FIELD (long, 4, RV_STK_TP, tp) /* Thread pointer */
|
|
STRUCT_FIELD (long, 4, RV_STK_T0, t0) /* Temporary/alternate link register */
|
|
STRUCT_FIELD (long, 4, RV_STK_T1, t1) /* t1-2: Temporaries */
|
|
STRUCT_FIELD (long, 4, RV_STK_T2, t2)
|
|
STRUCT_FIELD (long, 4, RV_STK_S0, s0) /* Saved register/frame pointer */
|
|
STRUCT_FIELD (long, 4, RV_STK_S1, s1) /* Saved register */
|
|
STRUCT_FIELD (long, 4, RV_STK_A0, a0) /* a0-1: Function arguments/return address */
|
|
STRUCT_FIELD (long, 4, RV_STK_A1, a1)
|
|
STRUCT_FIELD (long, 4, RV_STK_A2, a2) /* a2-7: Function arguments */
|
|
STRUCT_FIELD (long, 4, RV_STK_A3, a3)
|
|
STRUCT_FIELD (long, 4, RV_STK_A4, a4)
|
|
STRUCT_FIELD (long, 4, RV_STK_A5, a5)
|
|
STRUCT_FIELD (long, 4, RV_STK_A6, a6)
|
|
STRUCT_FIELD (long, 4, RV_STK_A7, a7)
|
|
STRUCT_FIELD (long, 4, RV_STK_S2, s2) /* s2-11: Saved registers */
|
|
STRUCT_FIELD (long, 4, RV_STK_S3, s3)
|
|
STRUCT_FIELD (long, 4, RV_STK_S4, s4)
|
|
STRUCT_FIELD (long, 4, RV_STK_S5, s5)
|
|
STRUCT_FIELD (long, 4, RV_STK_S6, s6)
|
|
STRUCT_FIELD (long, 4, RV_STK_S7, s7)
|
|
STRUCT_FIELD (long, 4, RV_STK_S8, s8)
|
|
STRUCT_FIELD (long, 4, RV_STK_S9, s9)
|
|
STRUCT_FIELD (long, 4, RV_STK_S10, s10)
|
|
STRUCT_FIELD (long, 4, RV_STK_S11, s11)
|
|
STRUCT_FIELD (long, 4, RV_STK_T3, t3) /* t3-6: Temporaries */
|
|
STRUCT_FIELD (long, 4, RV_STK_T4, t4)
|
|
STRUCT_FIELD (long, 4, RV_STK_T5, t5)
|
|
STRUCT_FIELD (long, 4, RV_STK_T6, t6)
|
|
STRUCT_FIELD (long, 4, RV_STK_MSTATUS, mstatus) /* Machine Status */
|
|
STRUCT_FIELD (long, 4, RV_STK_MTVEC, mtvec) /* Machine Trap-Vector Base Address */
|
|
STRUCT_FIELD (long, 4, RV_STK_MCAUSE, mcause) /* Machine Trap Cause */
|
|
STRUCT_FIELD (long, 4, RV_STK_MTVAL, mtval) /* Machine Trap Value */
|
|
STRUCT_FIELD (long, 4, RV_STK_MHARTID, mhartid) /* Hardware Thread ID in machine mode */
|
|
STRUCT_END(RvExcFrame)
|
|
|
|
#if defined(_ASMLANGUAGE) || defined(__ASSEMBLER__)
|
|
#define RV_STK_SZ1 RvExcFrameSize
|
|
#else
|
|
#define RV_STK_SZ1 sizeof(RvExcFrame)
|
|
#endif
|
|
|
|
/*
|
|
* Exception stack frame size, after align up to 16 bytes boundary
|
|
*/
|
|
#define RV_STK_FRMSZ (ALIGNUP(0x10, RV_STK_SZ1))
|
|
|
|
#endif /* #ifndef __RVRUNTIME_FRAMES_H__ */
|