net: lantiq: Use napi_complete_done()
[linux/fpc-iii.git] / virt / lib / irqbypass.c
blob43de8ae78fa17b6fd8b8c63ea6912236bea23f69
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * IRQ offload/bypass manager
5 * Copyright (C) 2015 Red Hat, Inc.
6 * Copyright (c) 2015 Linaro Ltd.
8 * Various virtualization hardware acceleration techniques allow bypassing or
9 * offloading interrupts received from devices around the host kernel. Posted
10 * Interrupts on Intel VT-d systems can allow interrupts to be received
11 * directly by a virtual machine. ARM IRQ Forwarding allows forwarded physical
12 * interrupts to be directly deactivated by the guest. This manager allows
13 * interrupt producers and consumers to find each other to enable this sort of
14 * bypass.
17 #include <linux/irqbypass.h>
18 #include <linux/list.h>
19 #include <linux/module.h>
20 #include <linux/mutex.h>
22 MODULE_LICENSE("GPL v2");
23 MODULE_DESCRIPTION("IRQ bypass manager utility module");
25 static LIST_HEAD(producers);
26 static LIST_HEAD(consumers);
27 static DEFINE_MUTEX(lock);
29 /* @lock must be held when calling connect */
30 static int __connect(struct irq_bypass_producer *prod,
31 struct irq_bypass_consumer *cons)
33 int ret = 0;
35 if (prod->stop)
36 prod->stop(prod);
37 if (cons->stop)
38 cons->stop(cons);
40 if (prod->add_consumer)
41 ret = prod->add_consumer(prod, cons);
43 if (!ret) {
44 ret = cons->add_producer(cons, prod);
45 if (ret && prod->del_consumer)
46 prod->del_consumer(prod, cons);
49 if (cons->start)
50 cons->start(cons);
51 if (prod->start)
52 prod->start(prod);
54 return ret;
57 /* @lock must be held when calling disconnect */
58 static void __disconnect(struct irq_bypass_producer *prod,
59 struct irq_bypass_consumer *cons)
61 if (prod->stop)
62 prod->stop(prod);
63 if (cons->stop)
64 cons->stop(cons);
66 cons->del_producer(cons, prod);
68 if (prod->del_consumer)
69 prod->del_consumer(prod, cons);
71 if (cons->start)
72 cons->start(cons);
73 if (prod->start)
74 prod->start(prod);
77 /**
78 * irq_bypass_register_producer - register IRQ bypass producer
79 * @producer: pointer to producer structure
81 * Add the provided IRQ producer to the list of producers and connect
82 * with any matching token found on the IRQ consumers list.
84 int irq_bypass_register_producer(struct irq_bypass_producer *producer)
86 struct irq_bypass_producer *tmp;
87 struct irq_bypass_consumer *consumer;
89 if (!producer->token)
90 return -EINVAL;
92 might_sleep();
94 if (!try_module_get(THIS_MODULE))
95 return -ENODEV;
97 mutex_lock(&lock);
99 list_for_each_entry(tmp, &producers, node) {
100 if (tmp->token == producer->token) {
101 mutex_unlock(&lock);
102 module_put(THIS_MODULE);
103 return -EBUSY;
107 list_for_each_entry(consumer, &consumers, node) {
108 if (consumer->token == producer->token) {
109 int ret = __connect(producer, consumer);
110 if (ret) {
111 mutex_unlock(&lock);
112 module_put(THIS_MODULE);
113 return ret;
115 break;
119 list_add(&producer->node, &producers);
121 mutex_unlock(&lock);
123 return 0;
125 EXPORT_SYMBOL_GPL(irq_bypass_register_producer);
128 * irq_bypass_unregister_producer - unregister IRQ bypass producer
129 * @producer: pointer to producer structure
131 * Remove a previously registered IRQ producer from the list of producers
132 * and disconnect it from any connected IRQ consumer.
134 void irq_bypass_unregister_producer(struct irq_bypass_producer *producer)
136 struct irq_bypass_producer *tmp;
137 struct irq_bypass_consumer *consumer;
139 if (!producer->token)
140 return;
142 might_sleep();
144 if (!try_module_get(THIS_MODULE))
145 return; /* nothing in the list anyway */
147 mutex_lock(&lock);
149 list_for_each_entry(tmp, &producers, node) {
150 if (tmp->token != producer->token)
151 continue;
153 list_for_each_entry(consumer, &consumers, node) {
154 if (consumer->token == producer->token) {
155 __disconnect(producer, consumer);
156 break;
160 list_del(&producer->node);
161 module_put(THIS_MODULE);
162 break;
165 mutex_unlock(&lock);
167 module_put(THIS_MODULE);
169 EXPORT_SYMBOL_GPL(irq_bypass_unregister_producer);
172 * irq_bypass_register_consumer - register IRQ bypass consumer
173 * @consumer: pointer to consumer structure
175 * Add the provided IRQ consumer to the list of consumers and connect
176 * with any matching token found on the IRQ producer list.
178 int irq_bypass_register_consumer(struct irq_bypass_consumer *consumer)
180 struct irq_bypass_consumer *tmp;
181 struct irq_bypass_producer *producer;
183 if (!consumer->token ||
184 !consumer->add_producer || !consumer->del_producer)
185 return -EINVAL;
187 might_sleep();
189 if (!try_module_get(THIS_MODULE))
190 return -ENODEV;
192 mutex_lock(&lock);
194 list_for_each_entry(tmp, &consumers, node) {
195 if (tmp->token == consumer->token || tmp == consumer) {
196 mutex_unlock(&lock);
197 module_put(THIS_MODULE);
198 return -EBUSY;
202 list_for_each_entry(producer, &producers, node) {
203 if (producer->token == consumer->token) {
204 int ret = __connect(producer, consumer);
205 if (ret) {
206 mutex_unlock(&lock);
207 module_put(THIS_MODULE);
208 return ret;
210 break;
214 list_add(&consumer->node, &consumers);
216 mutex_unlock(&lock);
218 return 0;
220 EXPORT_SYMBOL_GPL(irq_bypass_register_consumer);
223 * irq_bypass_unregister_consumer - unregister IRQ bypass consumer
224 * @consumer: pointer to consumer structure
226 * Remove a previously registered IRQ consumer from the list of consumers
227 * and disconnect it from any connected IRQ producer.
229 void irq_bypass_unregister_consumer(struct irq_bypass_consumer *consumer)
231 struct irq_bypass_consumer *tmp;
232 struct irq_bypass_producer *producer;
234 if (!consumer->token)
235 return;
237 might_sleep();
239 if (!try_module_get(THIS_MODULE))
240 return; /* nothing in the list anyway */
242 mutex_lock(&lock);
244 list_for_each_entry(tmp, &consumers, node) {
245 if (tmp != consumer)
246 continue;
248 list_for_each_entry(producer, &producers, node) {
249 if (producer->token == consumer->token) {
250 __disconnect(producer, consumer);
251 break;
255 list_del(&consumer->node);
256 module_put(THIS_MODULE);
257 break;
260 mutex_unlock(&lock);
262 module_put(THIS_MODULE);
264 EXPORT_SYMBOL_GPL(irq_bypass_unregister_consumer);