Lines Matching refs:gic_common_ops

17 static const struct gic_common_ops *gic_common_ops;  variable
22 gic_common_ops->gic_cpu_init(cpu); in gic_cpu_init()
27 const struct gic_common_ops *gic_ops = NULL; in gic_dist_init()
32 if (gic_common_ops) { in gic_dist_init()
43 gic_common_ops = gic_ops; in gic_dist_init()
64 GUEST_ASSERT(gic_common_ops); in gic_irq_enable()
65 gic_common_ops->gic_irq_enable(intid); in gic_irq_enable()
70 GUEST_ASSERT(gic_common_ops); in gic_irq_disable()
71 gic_common_ops->gic_irq_disable(intid); in gic_irq_disable()
79 GUEST_ASSERT(gic_common_ops); in gic_get_and_ack_irq()
81 irqstat = gic_common_ops->gic_read_iar(); in gic_get_and_ack_irq()
89 GUEST_ASSERT(gic_common_ops); in gic_set_eoi()
90 gic_common_ops->gic_write_eoir(intid); in gic_set_eoi()
95 GUEST_ASSERT(gic_common_ops); in gic_set_dir()
96 gic_common_ops->gic_write_dir(intid); in gic_set_dir()
101 GUEST_ASSERT(gic_common_ops); in gic_set_eoi_split()
102 gic_common_ops->gic_set_eoi_split(split); in gic_set_eoi_split()
107 GUEST_ASSERT(gic_common_ops); in gic_set_priority_mask()
108 gic_common_ops->gic_set_priority_mask(pmr); in gic_set_priority_mask()
113 GUEST_ASSERT(gic_common_ops); in gic_set_priority()
114 gic_common_ops->gic_set_priority(intid, prio); in gic_set_priority()
119 GUEST_ASSERT(gic_common_ops); in gic_irq_set_active()
120 gic_common_ops->gic_irq_set_active(intid); in gic_irq_set_active()
125 GUEST_ASSERT(gic_common_ops); in gic_irq_clear_active()
126 gic_common_ops->gic_irq_clear_active(intid); in gic_irq_clear_active()
131 GUEST_ASSERT(gic_common_ops); in gic_irq_get_active()
132 return gic_common_ops->gic_irq_get_active(intid); in gic_irq_get_active()
137 GUEST_ASSERT(gic_common_ops); in gic_irq_set_pending()
138 gic_common_ops->gic_irq_set_pending(intid); in gic_irq_set_pending()
143 GUEST_ASSERT(gic_common_ops); in gic_irq_clear_pending()
144 gic_common_ops->gic_irq_clear_pending(intid); in gic_irq_clear_pending()
149 GUEST_ASSERT(gic_common_ops); in gic_irq_get_pending()
150 return gic_common_ops->gic_irq_get_pending(intid); in gic_irq_get_pending()
155 GUEST_ASSERT(gic_common_ops); in gic_irq_set_config()
156 gic_common_ops->gic_irq_set_config(intid, is_edge); in gic_irq_set_config()