blob: f0a8ef32d00b5e8909725c6e2b0800fc9d09cad7 [file] [log] [blame]
Oleksandr Andrushchenko673fd822020-08-06 12:42:49 +03001/* SPDX-License-Identifier: GPL-2.0
2 *
3 * (C) 2003 - Rolf Neugebauer - Intel Research Cambridge
4 * (C) 2005 - Grzegorz Milos - Intel Reseach Cambridge
5 * (C) 2020 - EPAM Systems Inc.
6 *
7 * File: events.h
8 * Author: Rolf Neugebauer (neugebar@dcs.gla.ac.uk)
9 * Changes: Grzegorz Milos (gm281@cam.ac.uk)
10 *
11 * Date: Jul 2003, changes Jun 2005
12 *
13 * Description: Deals with events on the event channels
14 */
15#ifndef _EVENTS_H_
16#define _EVENTS_H_
17
Tom Rini03de3052024-05-20 13:35:03 -060018#include <asm/ptrace.h>
Oleksandr Andrushchenko673fd822020-08-06 12:42:49 +030019#include <asm/xen/hypercall.h>
20#include <xen/interface/event_channel.h>
21
22void init_events(void);
23void fini_events(void);
24
25int do_event(evtchn_port_t port, struct pt_regs *regs);
26void unbind_evtchn(evtchn_port_t port);
27void unbind_all_ports(void);
28int evtchn_alloc_unbound(domid_t pal,
29 void (*handler)(evtchn_port_t, struct pt_regs *, void *),
30 void *data, evtchn_port_t *port);
31
32/* Send notification via event channel */
33static inline int notify_remote_via_evtchn(evtchn_port_t port)
34{
35 struct evtchn_send op;
36
37 op.port = port;
38 return HYPERVISOR_event_channel_op(EVTCHNOP_send, &op);
39}
40
41void eventchn_poll(void);
42
43#endif /* _EVENTS_H_ */