Lines Matching refs:vector
31 void rt_hw_interrupt_handler(int vector, void *param) in rt_hw_interrupt_handler() argument
33 rt_kprintf("Unhandled interrupt %d occured!!!\n", vector); in rt_hw_interrupt_handler()
66 void rt_hw_interrupt_mask(int vector) in rt_hw_interrupt_mask() argument
68 VICIntEnClr = (1 << vector); in rt_hw_interrupt_mask()
71 void rt_hw_interrupt_umask(int vector) in rt_hw_interrupt_umask() argument
73 VICIntEnable = (1 << vector); in rt_hw_interrupt_umask()
85 rt_isr_handler_t rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, in rt_hw_interrupt_install() argument
90 if(vector >= 0 && vector < MAX_HANDLERS) in rt_hw_interrupt_install()
92 old_handler = irq_desc[vector].handler; in rt_hw_interrupt_install()
95 irq_desc[vector].handler = handler; in rt_hw_interrupt_install()
96 irq_desc[vector].param = param; in rt_hw_interrupt_install()