📄 hal_arch.h
字号:
externC void hal_thread_switch_context( CYG_ADDRESS to, CYG_ADDRESS from );externC void hal_thread_load_context( CYG_ADDRESS to ) __attribute__ ((noreturn));#define HAL_THREAD_SWITCH_CONTEXT(_fspptr_,_tspptr_) \ hal_thread_switch_context((CYG_ADDRESS)_tspptr_, \ (CYG_ADDRESS)_fspptr_);#define HAL_THREAD_LOAD_CONTEXT(_tspptr_) \ hal_thread_load_context( (CYG_ADDRESS)_tspptr_ );//---------------------------------------------------------------------------// Execution reorder barrier.// When optimizing the compiler can reorder code. In multithreaded systems// where the order of actions is vital, this can sometimes cause problems.// This macro may be inserted into places where reordering should not happen.#define HAL_REORDER_BARRIER() asm volatile ( "" : : : "memory" )//---------------------------------------------------------------------------// Breakpoint support// HAL_BREAKPOINT() is a code sequence that will cause a breakpoint to happen// if executed.// HAL_BREAKINST is the value of the breakpoint instruction and // HAL_BREAKINST_SIZE is its size in bytes.#define HAL_BREAKPOINT(_label_) \asm volatile (" .globl " #_label_ ";" \ #_label_":" \ "ta 1" \ );#define HAL_BREAKINST {0x91,0xd0,0x20,0x01}#define HAL_BREAKINST_SIZE 4//---------------------------------------------------------------------------// Thread register state manipulation for GDB support.// Translate a stack pointer as saved by the thread context macros above into// a pointer to a HAL_SavedRegisters structure.#define HAL_THREAD_GET_SAVED_REGISTERS( _sp_, _regs_ ) \ (_regs_) = (HAL_SavedRegisters *)(_sp_)// Routines in icontext.c used here because they're quite large for// the SPARC (note param order):externC voidcyg_hal_sparc_get_gdb_regs( void *gdb_regset, HAL_SavedRegisters *eCos_regset );externC voidcyg_hal_sparc_set_gdb_regs( HAL_SavedRegisters *eCos_regset, void *gdb_regset );// Copy a set of registers from a HAL_SavedRegisters structure into a GDB// ordered array.#define HAL_GET_GDB_REGISTERS( _aregval_, _regs_ ) \ CYG_MACRO_START \ cyg_hal_sparc_get_gdb_regs( (_aregval_), (_regs_) ); \CYG_MACRO_END// Copy a GDB ordered array into a HAL_SavedRegisters structure.#define HAL_SET_GDB_REGISTERS( _regs_ , _aregval_ ) \ CYG_MACRO_START \ cyg_hal_sparc_set_gdb_regs( (_regs_), (_aregval_) ); \CYG_MACRO_END//---------------------------------------------------------------------------// HAL setjmp#define CYGARC_JMP_BUF_SIZE 32 // (words)// this too must be doubleword aligned (64 bit)typedef cyg_uint64 hal_jmp_buf[ CYGARC_JMP_BUF_SIZE / 2 ];externC int hal_setjmp(hal_jmp_buf env);externC void hal_longjmp(hal_jmp_buf env, int val);//---------------------------------------------------------------------------// Flush Register Windows//// This is implemented as trap 3 in some SPARC systems.// This macro is only for use from normal, foreground code.// (including exception handlers and the like)#define HAL_FLUSH_REGISTERS_TO_STACK() \ CYG_MACRO_START \ cyg_uint32 _saveintr_; \ HAL_DISABLE_INTERRUPTS( _saveintr_ ); /* leave traps on */ \ asm volatile ( \ /* force out all our callers register sets onto the stack */ \ /* if necessary: the system will handily take care of this for */ \ /* us as follows: */ \ "save %%sp, -16 * 4, %%sp;" /* need all these to preserve */ \ "save %%sp, -16 * 4, %%sp;" /* the linked list property... */ \ "save %%sp, -16 * 4, %%sp;" \ "save %%sp, -16 * 4, %%sp;" \ "save %%sp, -16 * 4, %%sp;" \ "save %%sp, -16 * 4, %%sp;" \ "restore;" \ "restore;" \ "restore;" \ "restore;" \ "restore;" \ "restore" \ /* six of these is correct; a seventh would force out the */ \ /* current set that we are using right now. Note that minimal */ \ /* space is allowed on stack for locals and ins in case this */ \ /* sequence itself gets interrupted and recurses too deep. */ \ : \ : \ : "memory" \ ); \ HAL_RESTORE_INTERRUPTS( _saveintr_ ); \CYG_MACRO_END//---------------------------------------------------------------------------// Idle thread code.// This macro is called in the idle thread loop, and gives the HAL the// chance to insert code. Typical idle thread behaviour might be to halt the// processor.externC void hal_idle_thread_action(cyg_uint32 loop_count);#ifndef HAL_IDLE_THREAD_ACTION#define HAL_IDLE_THREAD_ACTION(_count_) \ /* Cyg_Clock::real_time_clock->tick() */#endif//---------------------------------------------------------------------------// Minimal and sensible stack sizes: the intention is that applications// will use these to provide a stack size in the first instance prior to// proper analysis. Idle thread stack should be this big.// THESE ARE NOT INTENDED TO BE MICROMETRICALLY ACCURATE FIGURES.// THEY ARE HOWEVER ENOUGH TO START PROGRAMMING.// YOU MUST MAKE YOUR STACKS LARGER IF YOU HAVE LARGE "AUTO" VARIABLES!// We define quite large stack needs for SPARC, for it requires 576// bytes (144 words) to process an interrupt and thread-switch, and// momentarily, but needed in case of recursive interrupts, it needs 208// words - if a sequence of saves to push out other regsets is interrupted.// This is not a config option because it should not be adjusted except// under "enough rope" sort of disclaimers.// A minimal, optimized stack frame is 24 words, but even -O2 code seems to// place a few locals in the locals area: round this up to provide a// sensible overestimate:#define CYGNUM_HAL_STACK_FRAME_SIZE (4 * 32)// Stack needed for a context switch: this is implicit in the estimate for// interrupts so not explicitly used below:#define CYGNUM_HAL_STACK_CONTEXT_SIZE (4 * 32)// Interrupt + call to ISR, interrupt_end() and the DSR#define CYGNUM_HAL_STACK_INTERRUPT_SIZE \ ((208 * 4) + 2 * CYGNUM_HAL_STACK_FRAME_SIZE)// And we have lots of registers so no particular amount is added in for// typical local variable usage.// Typically we have 4 nestable interrupt sources, clock, serialin,// serialout, (and NMI button, but you want it to not destroy context):#define CYGNUM_HAL_STACK_SIZE_MINIMUM \ (4 * CYGNUM_HAL_STACK_INTERRUPT_SIZE + 2 * CYGNUM_HAL_STACK_FRAME_SIZE)#define CYGNUM_HAL_STACK_SIZE_TYPICAL \ (CYGNUM_HAL_STACK_SIZE_MINIMUM + 8 * CYGNUM_HAL_STACK_FRAME_SIZE)//--------------------------------------------------------------------------// Macros for switching context between two eCos instances (jump from// code in ROM to code in RAM or vice versa).#define CYGARC_HAL_SAVE_GP()#define CYGARC_HAL_RESTORE_GP()//-----------------------------------------------------------------------------#endif // CYGONCE_HAL_ARCH_H// End of hal_arch.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -