1 // SPDX-License-Identifier: GPL-2.0
3 * ACRN HSM irqfd: use eventfd objects to inject virtual interrupts
5 * Copyright (C) 2020 Intel Corporation. All rights reserved.
8 * Shuo Liu <shuo.a.liu@intel.com>
9 * Yakui Zhao <yakui.zhao@intel.com>
12 #include <linux/eventfd.h>
13 #include <linux/file.h>
14 #include <linux/poll.h>
15 #include <linux/slab.h>
19 static LIST_HEAD(acrn_irqfd_clients);
22 * struct hsm_irqfd - Properties of HSM irqfd
23 * @vm: Associated VM pointer
24 * @wait: Entry of wait-queue
25 * @shutdown: Async shutdown work
26 * @eventfd: Associated eventfd
27 * @list: Entry within &acrn_vm.irqfds of irqfds of a VM
28 * @pt: Structure for select/poll on the associated eventfd
33 wait_queue_entry_t wait;
34 struct work_struct shutdown;
35 struct eventfd_ctx *eventfd;
36 struct list_head list;
38 struct acrn_msi_entry msi;
41 static void acrn_irqfd_inject(struct hsm_irqfd *irqfd)
43 struct acrn_vm *vm = irqfd->vm;
45 acrn_msi_inject(vm, irqfd->msi.msi_addr,
49 static void hsm_irqfd_shutdown(struct hsm_irqfd *irqfd)
53 lockdep_assert_held(&irqfd->vm->irqfds_lock);
55 /* remove from wait queue */
56 list_del_init(&irqfd->list);
57 eventfd_ctx_remove_wait_queue(irqfd->eventfd, &irqfd->wait, &cnt);
58 eventfd_ctx_put(irqfd->eventfd);
62 static void hsm_irqfd_shutdown_work(struct work_struct *work)
64 struct hsm_irqfd *irqfd;
67 irqfd = container_of(work, struct hsm_irqfd, shutdown);
69 mutex_lock(&vm->irqfds_lock);
70 if (!list_empty(&irqfd->list))
71 hsm_irqfd_shutdown(irqfd);
72 mutex_unlock(&vm->irqfds_lock);
75 /* Called with wqh->lock held and interrupts disabled */
76 static int hsm_irqfd_wakeup(wait_queue_entry_t *wait, unsigned int mode,
79 unsigned long poll_bits = (unsigned long)key;
80 struct hsm_irqfd *irqfd;
83 irqfd = container_of(wait, struct hsm_irqfd, wait);
85 if (poll_bits & POLLIN)
86 /* An event has been signaled, inject an interrupt */
87 acrn_irqfd_inject(irqfd);
89 if (poll_bits & POLLHUP)
90 /* Do shutdown work in thread to hold wqh->lock */
91 queue_work(vm->irqfd_wq, &irqfd->shutdown);
96 static void hsm_irqfd_poll_func(struct file *file, wait_queue_head_t *wqh,
99 struct hsm_irqfd *irqfd;
101 irqfd = container_of(pt, struct hsm_irqfd, pt);
102 add_wait_queue(wqh, &irqfd->wait);
106 * Assign an eventfd to a VM and create a HSM irqfd associated with the
107 * eventfd. The properties of the HSM irqfd are built from a &struct
110 static int acrn_irqfd_assign(struct acrn_vm *vm, struct acrn_irqfd *args)
112 struct eventfd_ctx *eventfd = NULL;
113 struct hsm_irqfd *irqfd, *tmp;
118 irqfd = kzalloc(sizeof(*irqfd), GFP_KERNEL);
123 memcpy(&irqfd->msi, &args->msi, sizeof(args->msi));
124 INIT_LIST_HEAD(&irqfd->list);
125 INIT_WORK(&irqfd->shutdown, hsm_irqfd_shutdown_work);
133 eventfd = eventfd_ctx_fileget(f.file);
134 if (IS_ERR(eventfd)) {
135 ret = PTR_ERR(eventfd);
139 irqfd->eventfd = eventfd;
142 * Install custom wake-up handling to be notified whenever underlying
143 * eventfd is signaled.
145 init_waitqueue_func_entry(&irqfd->wait, hsm_irqfd_wakeup);
146 init_poll_funcptr(&irqfd->pt, hsm_irqfd_poll_func);
148 mutex_lock(&vm->irqfds_lock);
149 list_for_each_entry(tmp, &vm->irqfds, list) {
150 if (irqfd->eventfd != tmp->eventfd)
153 mutex_unlock(&vm->irqfds_lock);
156 list_add_tail(&irqfd->list, &vm->irqfds);
157 mutex_unlock(&vm->irqfds_lock);
159 /* Check the pending event in this stage */
160 events = vfs_poll(f.file, &irqfd->pt);
162 if (events & EPOLLIN)
163 acrn_irqfd_inject(irqfd);
168 if (eventfd && !IS_ERR(eventfd))
169 eventfd_ctx_put(eventfd);
177 static int acrn_irqfd_deassign(struct acrn_vm *vm,
178 struct acrn_irqfd *args)
180 struct hsm_irqfd *irqfd, *tmp;
181 struct eventfd_ctx *eventfd;
183 eventfd = eventfd_ctx_fdget(args->fd);
185 return PTR_ERR(eventfd);
187 mutex_lock(&vm->irqfds_lock);
188 list_for_each_entry_safe(irqfd, tmp, &vm->irqfds, list) {
189 if (irqfd->eventfd == eventfd) {
190 hsm_irqfd_shutdown(irqfd);
194 mutex_unlock(&vm->irqfds_lock);
195 eventfd_ctx_put(eventfd);
200 int acrn_irqfd_config(struct acrn_vm *vm, struct acrn_irqfd *args)
204 if (args->flags & ACRN_IRQFD_FLAG_DEASSIGN)
205 ret = acrn_irqfd_deassign(vm, args);
207 ret = acrn_irqfd_assign(vm, args);
212 int acrn_irqfd_init(struct acrn_vm *vm)
214 INIT_LIST_HEAD(&vm->irqfds);
215 mutex_init(&vm->irqfds_lock);
216 vm->irqfd_wq = alloc_workqueue("acrn_irqfd-%u", 0, 0, vm->vmid);
220 dev_dbg(acrn_dev.this_device, "VM %u irqfd init.\n", vm->vmid);
224 void acrn_irqfd_deinit(struct acrn_vm *vm)
226 struct hsm_irqfd *irqfd, *next;
228 dev_dbg(acrn_dev.this_device, "VM %u irqfd deinit.\n", vm->vmid);
229 destroy_workqueue(vm->irqfd_wq);
230 mutex_lock(&vm->irqfds_lock);
231 list_for_each_entry_safe(irqfd, next, &vm->irqfds, list)
232 hsm_irqfd_shutdown(irqfd);
233 mutex_unlock(&vm->irqfds_lock);