Changeset 407 for trunk/hal/tsar_mips32/core/hal_interrupt.c
- Timestamp:
- Nov 7, 2017, 3:08:12 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_interrupt.c
r406 r407 33 33 reg_t * regs_tbl ) 34 34 { 35 irq_dmsg("\n[DMSG] %s : enter / core[%x,%d] / cycle %d\n",36 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() );37 35 38 // access local ICU to call the relevant ISR 36 irq_dmsg("\n[DBG] %s : core[%x,%d] enter at cycle %d\n", 37 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() ); 38 39 // As ALMOS-MKH does not define a generic interrupt handler, 40 // we directly access the local TSAR ICU to call the relevant ISR 39 41 soclib_pic_irq_handler(); 40 41 irq_dmsg("\n[DMSG] %s : exit / core[%x,%d] / cycle %d\n", 42 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() ); 42 43 irq_dmsg("\n[DBG] %s : core[%x,%d] exit at cycle %d\n", 44 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() ); 45 43 46 }
Note: See TracChangeset
for help on using the changeset viewer.