123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- PORT_IRQ_IS_VALID_PRIORITY(prio)
- PORT_IRQ_IS_VALID_KERNEL_PRIORITY(prio)
- PORT_IRQ_PROLOGUE(); \
- CH_CFG_IRQ_PROLOGUE_HOOK(); \
- _stats_increase_irq(); \
- _trace_isr_enter(__func__); \
- _dbg_check_enter_isr()
- _dbg_check_leave_isr(); \
- _trace_isr_leave(__func__); \
- CH_CFG_IRQ_EPILOGUE_HOOK(); \
- PORT_IRQ_EPILOGUE()
- \
- _trace_switch(ntp, otp); \
- _stats_ctxswc(ntp, otp); \
- CH_CFG_CONTEXT_SWITCH_HOOK(ntp, otp); \
- port_switch(ntp, otp); \
- }
- extern stkalign_t ch_idle_thread_wa[];
- extern "C" {
- void chSysInit(void);
- bool chSysIntegrityCheckI(unsigned testmask);
- void chSysTimerHandlerI(void);
- syssts_t chSysGetStatusAndLockX(void);
- void chSysRestoreStatusX(syssts_t sts);
- bool chSysIsCounterWithinX(rtcnt_t cnt, rtcnt_t start, rtcnt_t end);
- void chSysPolledDelayX(rtcnt_t cycles);
- }
- static inline void chSysDisable(void) {
- port_disable();
- _dbg_check_disable();
- }
- static inline void chSysSuspend(void) {
- port_suspend();
- _dbg_check_suspend();
- }
- static inline void chSysEnable(void) {
- _dbg_check_enable();
- port_enable();
- }
- static inline void chSysLock(void) {
- port_lock();
- _stats_start_measure_crit_thd();
- _dbg_check_lock();
- }
- static inline void chSysUnlock(void) {
- _dbg_check_unlock();
- _stats_stop_measure_crit_thd();
-
- chDbgAssert((ch.rlist.queue.next == (thread_t *)&ch.rlist.queue) ||
- (ch.rlist.current->prio >= ch.rlist.queue.next->prio),
- "priority order violation");
- port_unlock();
- }
- static inline void chSysLockFromISR(void) {
- port_lock_from_isr();
- _stats_start_measure_crit_isr();
- _dbg_check_lock_from_isr();
- }
- static inline void chSysUnlockFromISR(void) {
- _dbg_check_unlock_from_isr();
- _stats_stop_measure_crit_isr();
- port_unlock_from_isr();
- }
- static inline void chSysUnconditionalLock(void) {
- if (port_irq_enabled(port_get_irq_status())) {
- chSysLock();
- }
- }
- static inline void chSysUnconditionalUnlock(void) {
- if (!port_irq_enabled(port_get_irq_status())) {
- chSysUnlock();
- }
- }
- static inline thread_t *chSysGetIdleThreadX(void) {
- return ch.rlist.queue.prev;
- }
|