2 * Xen event channels (FIFO-based ABI)
4 * Copyright (C) 2013 Citrix Systems R&D ltd.
6 * This source code is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * Or, when distributed separately from the Linux kernel or
12 * incorporated into other software packages, subject to the following
15 * Permission is hereby granted, free of charge, to any person obtaining a copy
16 * of this source file (the "Software"), to deal in the Software without
17 * restriction, including without limitation the rights to use, copy, modify,
18 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
19 * and to permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
34 #define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
36 #include <linux/linkage.h>
37 #include <linux/interrupt.h>
38 #include <linux/irq.h>
39 #include <linux/module.h>
40 #include <linux/smp.h>
41 #include <linux/percpu.h>
42 #include <linux/cpu.h>
44 #include <asm/sync_bitops.h>
45 #include <asm/xen/hypercall.h>
46 #include <asm/xen/hypervisor.h>
47 #include <asm/xen/page.h>
50 #include <xen/xen-ops.h>
51 #include <xen/events.h>
52 #include <xen/interface/xen.h>
53 #include <xen/interface/event_channel.h>
55 #include "events_internal.h"
57 #define EVENT_WORDS_PER_PAGE (PAGE_SIZE / sizeof(event_word_t))
58 #define MAX_EVENT_ARRAY_PAGES (EVTCHN_FIFO_NR_CHANNELS / EVENT_WORDS_PER_PAGE)
60 struct evtchn_fifo_queue
{
61 uint32_t head
[EVTCHN_FIFO_MAX_QUEUES
];
64 static DEFINE_PER_CPU(struct evtchn_fifo_control_block
*, cpu_control_block
);
65 static DEFINE_PER_CPU(struct evtchn_fifo_queue
, cpu_queue
);
66 static event_word_t
*event_array
[MAX_EVENT_ARRAY_PAGES
] __read_mostly
;
67 static unsigned event_array_pages __read_mostly
;
69 #define BM(w) ((unsigned long *)(w))
71 static inline event_word_t
*event_word_from_port(unsigned port
)
73 unsigned i
= port
/ EVENT_WORDS_PER_PAGE
;
75 return event_array
[i
] + port
% EVENT_WORDS_PER_PAGE
;
78 static unsigned evtchn_fifo_max_channels(void)
80 return EVTCHN_FIFO_NR_CHANNELS
;
83 static unsigned evtchn_fifo_nr_channels(void)
85 return event_array_pages
* EVENT_WORDS_PER_PAGE
;
88 static void free_unused_array_pages(void)
92 for (i
= event_array_pages
; i
< MAX_EVENT_ARRAY_PAGES
; i
++) {
95 free_page((unsigned long)event_array
[i
]);
96 event_array
[i
] = NULL
;
100 static void init_array_page(event_word_t
*array_page
)
104 for (i
= 0; i
< EVENT_WORDS_PER_PAGE
; i
++)
105 array_page
[i
] = 1 << EVTCHN_FIFO_MASKED
;
108 static int evtchn_fifo_setup(struct irq_info
*info
)
110 unsigned port
= info
->evtchn
;
111 unsigned new_array_pages
;
114 new_array_pages
= port
/ EVENT_WORDS_PER_PAGE
+ 1;
116 if (new_array_pages
> MAX_EVENT_ARRAY_PAGES
)
119 while (event_array_pages
< new_array_pages
) {
121 struct evtchn_expand_array expand_array
;
123 /* Might already have a page if we've resumed. */
124 array_page
= event_array
[event_array_pages
];
126 array_page
= (void *)__get_free_page(GFP_KERNEL
);
127 if (array_page
== NULL
) {
131 event_array
[event_array_pages
] = array_page
;
134 /* Mask all events in this page before adding it. */
135 init_array_page(array_page
);
137 expand_array
.array_gfn
= virt_to_mfn(array_page
);
139 ret
= HYPERVISOR_event_channel_op(EVTCHNOP_expand_array
, &expand_array
);
148 if (event_array_pages
== 0)
149 panic("xen: unable to expand event array with initial page (%d)\n", ret
);
151 pr_err("unable to expand event array (%d)\n", ret
);
152 free_unused_array_pages();
156 static void evtchn_fifo_bind_to_cpu(struct irq_info
*info
, unsigned cpu
)
161 static void evtchn_fifo_clear_pending(unsigned port
)
163 event_word_t
*word
= event_word_from_port(port
);
164 sync_clear_bit(EVTCHN_FIFO_PENDING
, BM(word
));
167 static void evtchn_fifo_set_pending(unsigned port
)
169 event_word_t
*word
= event_word_from_port(port
);
170 sync_set_bit(EVTCHN_FIFO_PENDING
, BM(word
));
173 static bool evtchn_fifo_is_pending(unsigned port
)
175 event_word_t
*word
= event_word_from_port(port
);
176 return sync_test_bit(EVTCHN_FIFO_PENDING
, BM(word
));
179 static bool evtchn_fifo_test_and_set_mask(unsigned port
)
181 event_word_t
*word
= event_word_from_port(port
);
182 return sync_test_and_set_bit(EVTCHN_FIFO_MASKED
, BM(word
));
185 static void evtchn_fifo_mask(unsigned port
)
187 event_word_t
*word
= event_word_from_port(port
);
188 sync_set_bit(EVTCHN_FIFO_MASKED
, BM(word
));
192 * Clear MASKED, spinning if BUSY is set.
194 static void clear_masked(volatile event_word_t
*word
)
196 event_word_t
new, old
, w
;
201 old
= w
& ~(1 << EVTCHN_FIFO_BUSY
);
202 new = old
& ~(1 << EVTCHN_FIFO_MASKED
);
203 w
= sync_cmpxchg(word
, old
, new);
207 static void evtchn_fifo_unmask(unsigned port
)
209 event_word_t
*word
= event_word_from_port(port
);
211 BUG_ON(!irqs_disabled());
214 if (sync_test_bit(EVTCHN_FIFO_PENDING
, BM(word
))) {
215 struct evtchn_unmask unmask
= { .port
= port
};
216 (void)HYPERVISOR_event_channel_op(EVTCHNOP_unmask
, &unmask
);
220 static uint32_t clear_linked(volatile event_word_t
*word
)
222 event_word_t
new, old
, w
;
228 new = (w
& ~((1 << EVTCHN_FIFO_LINKED
)
229 | EVTCHN_FIFO_LINK_MASK
));
230 } while ((w
= sync_cmpxchg(word
, old
, new)) != old
);
232 return w
& EVTCHN_FIFO_LINK_MASK
;
235 static void handle_irq_for_port(unsigned port
)
239 irq
= get_evtchn_to_irq(port
);
241 generic_handle_irq(irq
);
244 static void consume_one_event(unsigned cpu
,
245 struct evtchn_fifo_control_block
*control_block
,
246 unsigned priority
, uint32_t *ready
)
248 struct evtchn_fifo_queue
*q
= &per_cpu(cpu_queue
, cpu
);
253 head
= q
->head
[priority
];
256 * Reached the tail last time? Read the new HEAD from the
260 rmb(); /* Ensure word is up-to-date before reading head. */
261 head
= control_block
->head
[priority
];
265 word
= event_word_from_port(port
);
266 head
= clear_linked(word
);
269 * If the link is non-zero, there are more events in the
270 * queue, otherwise the queue is empty.
272 * If the queue is empty, clear this priority from our local
273 * copy of the ready word.
276 clear_bit(priority
, BM(ready
));
278 if (sync_test_bit(EVTCHN_FIFO_PENDING
, BM(word
))
279 && !sync_test_bit(EVTCHN_FIFO_MASKED
, BM(word
)))
280 handle_irq_for_port(port
);
282 q
->head
[priority
] = head
;
285 static void evtchn_fifo_handle_events(unsigned cpu
)
287 struct evtchn_fifo_control_block
*control_block
;
291 control_block
= per_cpu(cpu_control_block
, cpu
);
293 ready
= xchg(&control_block
->ready
, 0);
296 q
= find_first_bit(BM(&ready
), EVTCHN_FIFO_MAX_QUEUES
);
297 consume_one_event(cpu
, control_block
, q
, &ready
);
298 ready
|= xchg(&control_block
->ready
, 0);
302 static void evtchn_fifo_resume(void)
306 for_each_possible_cpu(cpu
) {
307 void *control_block
= per_cpu(cpu_control_block
, cpu
);
308 struct evtchn_init_control init_control
;
315 * If this CPU is offline, take the opportunity to
316 * free the control block while it is not being
319 if (!cpu_online(cpu
)) {
320 free_page((unsigned long)control_block
);
321 per_cpu(cpu_control_block
, cpu
) = NULL
;
325 init_control
.control_gfn
= virt_to_mfn(control_block
);
326 init_control
.offset
= 0;
327 init_control
.vcpu
= cpu
;
329 ret
= HYPERVISOR_event_channel_op(EVTCHNOP_init_control
,
336 * The event array starts out as empty again and is extended
337 * as normal when events are bound. The existing pages will
340 event_array_pages
= 0;
343 static const struct evtchn_ops evtchn_ops_fifo
= {
344 .max_channels
= evtchn_fifo_max_channels
,
345 .nr_channels
= evtchn_fifo_nr_channels
,
346 .setup
= evtchn_fifo_setup
,
347 .bind_to_cpu
= evtchn_fifo_bind_to_cpu
,
348 .clear_pending
= evtchn_fifo_clear_pending
,
349 .set_pending
= evtchn_fifo_set_pending
,
350 .is_pending
= evtchn_fifo_is_pending
,
351 .test_and_set_mask
= evtchn_fifo_test_and_set_mask
,
352 .mask
= evtchn_fifo_mask
,
353 .unmask
= evtchn_fifo_unmask
,
354 .handle_events
= evtchn_fifo_handle_events
,
355 .resume
= evtchn_fifo_resume
,
358 static int evtchn_fifo_init_control_block(unsigned cpu
)
360 struct page
*control_block
= NULL
;
361 struct evtchn_init_control init_control
;
364 control_block
= alloc_page(GFP_KERNEL
|__GFP_ZERO
);
365 if (control_block
== NULL
)
368 init_control
.control_gfn
= virt_to_mfn(page_address(control_block
));
369 init_control
.offset
= 0;
370 init_control
.vcpu
= cpu
;
372 ret
= HYPERVISOR_event_channel_op(EVTCHNOP_init_control
, &init_control
);
376 per_cpu(cpu_control_block
, cpu
) = page_address(control_block
);
381 __free_page(control_block
);
385 static int evtchn_fifo_cpu_notification(struct notifier_block
*self
,
386 unsigned long action
,
389 int cpu
= (long)hcpu
;
394 if (!per_cpu(cpu_control_block
, cpu
))
395 ret
= evtchn_fifo_init_control_block(cpu
);
400 return ret
< 0 ? NOTIFY_BAD
: NOTIFY_OK
;
403 static struct notifier_block evtchn_fifo_cpu_notifier
= {
404 .notifier_call
= evtchn_fifo_cpu_notification
,
407 int __init
xen_evtchn_fifo_init(void)
412 ret
= evtchn_fifo_init_control_block(cpu
);
416 pr_info("Using FIFO-based ABI\n");
418 evtchn_ops
= &evtchn_ops_fifo
;
420 register_cpu_notifier(&evtchn_fifo_cpu_notifier
);