Lines Matching full:intid
20 #define INTID_IS_SGI(intid) (0 <= (intid) && (intid) < MIN_PPI) argument
21 #define INTID_IS_PPI(intid) (MIN_PPI <= (intid) && (intid) < MIN_SPI) argument
22 #define INTID_IS_SPI(intid) (MIN_SPI <= (intid) && (intid) <= MAX_SPI) argument
26 void gic_irq_enable(unsigned int intid);
27 void gic_irq_disable(unsigned int intid);
29 void gic_set_eoi(unsigned int intid);
30 void gic_set_dir(unsigned int intid);
38 void gic_set_priority(uint32_t intid, uint32_t prio);
39 void gic_irq_set_active(unsigned int intid);
40 void gic_irq_clear_active(unsigned int intid);
41 bool gic_irq_get_active(unsigned int intid);
42 void gic_irq_set_pending(unsigned int intid);
43 void gic_irq_clear_pending(unsigned int intid);
44 bool gic_irq_get_pending(unsigned int intid);
45 void gic_irq_set_config(unsigned int intid, bool is_edge);