blob: 0be80c213f7f2513a6bea46e9dd436a6cb15002a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Laurent Vivier5f94c172008-05-30 16:05:54 +02002/*
3 * KVM coalesced MMIO
4 *
5 * Copyright (c) 2008 Bull S.A.S.
Avi Kivity221d0592010-05-23 18:37:00 +03006 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
Laurent Vivier5f94c172008-05-30 16:05:54 +02007 *
8 * Author: Laurent Vivier <Laurent.Vivier@bull.net>
9 *
10 */
11
Andre Przywaraaf669ac2015-03-26 14:39:29 +000012#include <kvm/iodev.h>
Laurent Vivier5f94c172008-05-30 16:05:54 +020013
14#include <linux/kvm_host.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Laurent Vivier5f94c172008-05-30 16:05:54 +020016#include <linux/kvm.h>
17
18#include "coalesced_mmio.h"
19
Gregory Haskinsd76685c42009-06-01 12:54:50 -040020static inline struct kvm_coalesced_mmio_dev *to_mmio(struct kvm_io_device *dev)
21{
22 return container_of(dev, struct kvm_coalesced_mmio_dev, dev);
23}
24
Michael S. Tsirkinbda90202009-06-29 22:24:32 +030025static int coalesced_mmio_in_range(struct kvm_coalesced_mmio_dev *dev,
26 gpa_t addr, int len)
Laurent Vivier5f94c172008-05-30 16:05:54 +020027{
Sasha Levin2b3c246a2011-07-20 20:59:00 +030028 /* is it in a batchable area ?
29 * (addr,len) is fully included in
30 * (zone->addr, zone->size)
31 */
Dan Carpenter1a214242011-10-19 09:15:10 +030032 if (len < 0)
33 return 0;
34 if (addr + len < addr)
35 return 0;
36 if (addr < dev->zone.addr)
37 return 0;
38 if (addr + len > dev->zone.addr + dev->zone.size)
39 return 0;
40 return 1;
Laurent Vivier5f94c172008-05-30 16:05:54 +020041}
42
Matt Delcob60fe992019-09-16 14:16:54 -070043static int coalesced_mmio_has_room(struct kvm_coalesced_mmio_dev *dev, u32 last)
Sasha Levinc2981252011-07-18 17:17:14 +030044{
45 struct kvm_coalesced_mmio_ring *ring;
46 unsigned avail;
47
48 /* Are we able to batch it ? */
49
50 /* last is the first free entry
51 * check if we don't meet the first used entry
52 * there is always one unused entry in the buffer
53 */
54 ring = dev->kvm->coalesced_mmio_ring;
Matt Delcob60fe992019-09-16 14:16:54 -070055 avail = (ring->first - last - 1) % KVM_COALESCED_MMIO_MAX;
Sasha Levinc2981252011-07-18 17:17:14 +030056 if (avail == 0) {
57 /* full */
58 return 0;
59 }
60
61 return 1;
62}
63
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +000064static int coalesced_mmio_write(struct kvm_vcpu *vcpu,
65 struct kvm_io_device *this, gpa_t addr,
66 int len, const void *val)
Laurent Vivier5f94c172008-05-30 16:05:54 +020067{
Gregory Haskinsd76685c42009-06-01 12:54:50 -040068 struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
Laurent Vivier5f94c172008-05-30 16:05:54 +020069 struct kvm_coalesced_mmio_ring *ring = dev->kvm->coalesced_mmio_ring;
Matt Delcob60fe992019-09-16 14:16:54 -070070 __u32 insert;
Sasha Levinc2981252011-07-18 17:17:14 +030071
Michael S. Tsirkinbda90202009-06-29 22:24:32 +030072 if (!coalesced_mmio_in_range(dev, addr, len))
73 return -EOPNOTSUPP;
Laurent Vivier5f94c172008-05-30 16:05:54 +020074
Sasha Levin2b3c246a2011-07-20 20:59:00 +030075 spin_lock(&dev->kvm->ring_lock);
Laurent Vivier5f94c172008-05-30 16:05:54 +020076
Matt Delcob60fe992019-09-16 14:16:54 -070077 insert = READ_ONCE(ring->last);
78 if (!coalesced_mmio_has_room(dev, insert) ||
79 insert >= KVM_COALESCED_MMIO_MAX) {
Sasha Levin2b3c246a2011-07-20 20:59:00 +030080 spin_unlock(&dev->kvm->ring_lock);
Sasha Levinc2981252011-07-18 17:17:14 +030081 return -EOPNOTSUPP;
82 }
83
Laurent Vivier5f94c172008-05-30 16:05:54 +020084 /* copy data in first free entry of the ring */
85
Matt Delcob60fe992019-09-16 14:16:54 -070086 ring->coalesced_mmio[insert].phys_addr = addr;
87 ring->coalesced_mmio[insert].len = len;
88 memcpy(ring->coalesced_mmio[insert].data, val, len);
89 ring->coalesced_mmio[insert].pio = dev->zone.pio;
Laurent Vivier5f94c172008-05-30 16:05:54 +020090 smp_wmb();
Matt Delcob60fe992019-09-16 14:16:54 -070091 ring->last = (insert + 1) % KVM_COALESCED_MMIO_MAX;
Sasha Levin2b3c246a2011-07-20 20:59:00 +030092 spin_unlock(&dev->kvm->ring_lock);
Michael S. Tsirkinbda90202009-06-29 22:24:32 +030093 return 0;
Laurent Vivier5f94c172008-05-30 16:05:54 +020094}
95
96static void coalesced_mmio_destructor(struct kvm_io_device *this)
97{
Gregory Haskinsd76685c42009-06-01 12:54:50 -040098 struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
Gregory Haskins787a6602009-06-01 12:54:45 -040099
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300100 list_del(&dev->list);
101
Gregory Haskins787a6602009-06-01 12:54:45 -0400102 kfree(dev);
Laurent Vivier5f94c172008-05-30 16:05:54 +0200103}
104
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400105static const struct kvm_io_device_ops coalesced_mmio_ops = {
106 .write = coalesced_mmio_write,
Gregory Haskinsd76685c42009-06-01 12:54:50 -0400107 .destructor = coalesced_mmio_destructor,
108};
109
Laurent Vivier5f94c172008-05-30 16:05:54 +0200110int kvm_coalesced_mmio_init(struct kvm *kvm)
111{
Avi Kivity980da6c2009-12-20 15:13:43 +0200112 struct page *page;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200113
Shakeel Butt93bb59c2020-12-18 14:01:38 -0800114 page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO);
Avi Kivity980da6c2009-12-20 15:13:43 +0200115 if (!page)
Miaohe Linb139b5a2019-11-09 16:08:20 +0800116 return -ENOMEM;
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300117
Avi Kivity980da6c2009-12-20 15:13:43 +0200118 kvm->coalesced_mmio_ring = page_address(page);
119
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300120 /*
121 * We're using this spinlock to sync access to the coalesced ring.
Fuad Tabba656012c2020-04-01 15:03:10 +0100122 * The list doesn't need its own lock since device registration and
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300123 * unregistration should only happen when kvm->slots_lock is held.
124 */
125 spin_lock_init(&kvm->ring_lock);
126 INIT_LIST_HEAD(&kvm->coalesced_zones);
Laurent Vivier5f94c172008-05-30 16:05:54 +0200127
Miaohe Linb139b5a2019-11-09 16:08:20 +0800128 return 0;
Avi Kivity980da6c2009-12-20 15:13:43 +0200129}
130
131void kvm_coalesced_mmio_free(struct kvm *kvm)
132{
133 if (kvm->coalesced_mmio_ring)
134 free_page((unsigned long)kvm->coalesced_mmio_ring);
Laurent Vivier5f94c172008-05-30 16:05:54 +0200135}
136
137int kvm_vm_ioctl_register_coalesced_mmio(struct kvm *kvm,
Jochen Maes43db6692010-02-08 11:29:33 +0100138 struct kvm_coalesced_mmio_zone *zone)
Laurent Vivier5f94c172008-05-30 16:05:54 +0200139{
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300140 int ret;
141 struct kvm_coalesced_mmio_dev *dev;
142
Peng Hao0804c842018-10-14 07:09:55 +0800143 if (zone->pio != 1 && zone->pio != 0)
144 return -EINVAL;
145
Ben Gardonb12ce362019-02-11 11:02:49 -0800146 dev = kzalloc(sizeof(struct kvm_coalesced_mmio_dev),
147 GFP_KERNEL_ACCOUNT);
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300148 if (!dev)
149 return -ENOMEM;
150
151 kvm_iodevice_init(&dev->dev, &coalesced_mmio_ops);
152 dev->kvm = kvm;
153 dev->zone = *zone;
154
155 mutex_lock(&kvm->slots_lock);
Peng Hao0804c842018-10-14 07:09:55 +0800156 ret = kvm_io_bus_register_dev(kvm,
157 zone->pio ? KVM_PIO_BUS : KVM_MMIO_BUS,
158 zone->addr, zone->size, &dev->dev);
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300159 if (ret < 0)
160 goto out_free_dev;
161 list_add_tail(&dev->list, &kvm->coalesced_zones);
162 mutex_unlock(&kvm->slots_lock);
163
Dan Carpenteraac5c422014-01-29 16:16:39 +0300164 return 0;
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300165
166out_free_dev:
167 mutex_unlock(&kvm->slots_lock);
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300168 kfree(dev);
Laurent Vivier5f94c172008-05-30 16:05:54 +0200169
Dan Carpenteraac5c422014-01-29 16:16:39 +0300170 return ret;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200171}
172
173int kvm_vm_ioctl_unregister_coalesced_mmio(struct kvm *kvm,
174 struct kvm_coalesced_mmio_zone *zone)
175{
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300176 struct kvm_coalesced_mmio_dev *dev, *tmp;
Sean Christopherson5d3c4c7932021-04-12 15:20:49 -0700177 int r;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200178
Eric Biggers987d1142018-12-17 09:36:19 -0800179 if (zone->pio != 1 && zone->pio != 0)
180 return -EINVAL;
181
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200182 mutex_lock(&kvm->slots_lock);
Laurent Vivier5f94c172008-05-30 16:05:54 +0200183
Sean Christopherson5d3c4c7932021-04-12 15:20:49 -0700184 list_for_each_entry_safe(dev, tmp, &kvm->coalesced_zones, list) {
Eric Biggers987d1142018-12-17 09:36:19 -0800185 if (zone->pio == dev->zone.pio &&
186 coalesced_mmio_in_range(dev, zone->addr, zone->size)) {
Sean Christopherson5d3c4c7932021-04-12 15:20:49 -0700187 r = kvm_io_bus_unregister_dev(kvm,
Peng Hao0804c842018-10-14 07:09:55 +0800188 zone->pio ? KVM_PIO_BUS : KVM_MMIO_BUS, &dev->dev);
Sean Christopherson5d3c4c7932021-04-12 15:20:49 -0700189
190 /*
191 * On failure, unregister destroys all devices on the
192 * bus _except_ the target device, i.e. coalesced_zones
193 * has been modified. No need to restart the walk as
194 * there aren't any zones left.
195 */
196 if (r)
197 break;
Kefeng Wang23fa2e42021-06-26 15:03:04 +0800198 kvm_iodevice_destructor(&dev->dev);
Laurent Vivier5f94c172008-05-30 16:05:54 +0200199 }
Sean Christopherson5d3c4c7932021-04-12 15:20:49 -0700200 }
Laurent Vivier5f94c172008-05-30 16:05:54 +0200201
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200202 mutex_unlock(&kvm->slots_lock);
Laurent Vivier5f94c172008-05-30 16:05:54 +0200203
Sean Christopherson5d3c4c7932021-04-12 15:20:49 -0700204 /*
205 * Ignore the result of kvm_io_bus_unregister_dev(), from userspace's
206 * perspective, the coalesced MMIO is most definitely unregistered.
207 */
Laurent Vivier5f94c172008-05-30 16:05:54 +0200208 return 0;
209}