Linux Audio

Check our new training course

Loading...
v3.1
 
  1/*
  2 * KVM coalesced MMIO
  3 *
  4 * Copyright (c) 2008 Bull S.A.S.
  5 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
  6 *
  7 *  Author: Laurent Vivier <Laurent.Vivier@bull.net>
  8 *
  9 */
 10
 11#include "iodev.h"
 12
 13#include <linux/kvm_host.h>
 14#include <linux/slab.h>
 15#include <linux/kvm.h>
 16
 17#include "coalesced_mmio.h"
 18
 19static inline struct kvm_coalesced_mmio_dev *to_mmio(struct kvm_io_device *dev)
 20{
 21	return container_of(dev, struct kvm_coalesced_mmio_dev, dev);
 22}
 23
 24static int coalesced_mmio_in_range(struct kvm_coalesced_mmio_dev *dev,
 25				   gpa_t addr, int len)
 26{
 27	struct kvm_coalesced_mmio_zone *zone;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 28	struct kvm_coalesced_mmio_ring *ring;
 29	unsigned avail;
 30	int i;
 31
 32	/* Are we able to batch it ? */
 33
 34	/* last is the first free entry
 35	 * check if we don't meet the first used entry
 36	 * there is always one unused entry in the buffer
 37	 */
 38	ring = dev->kvm->coalesced_mmio_ring;
 39	avail = (ring->first - ring->last - 1) % KVM_COALESCED_MMIO_MAX;
 40	if (avail < KVM_MAX_VCPUS) {
 41		/* full */
 42		return 0;
 43	}
 44
 45	/* is it in a batchable area ? */
 46
 47	for (i = 0; i < dev->nb_zones; i++) {
 48		zone = &dev->zone[i];
 49
 50		/* (addr,len) is fully included in
 51		 * (zone->addr, zone->size)
 52		 */
 53
 54		if (zone->addr <= addr &&
 55		    addr + len <= zone->addr + zone->size)
 56			return 1;
 57	}
 58	return 0;
 59}
 60
 61static int coalesced_mmio_write(struct kvm_io_device *this,
 62				gpa_t addr, int len, const void *val)
 
 63{
 64	struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
 65	struct kvm_coalesced_mmio_ring *ring = dev->kvm->coalesced_mmio_ring;
 
 
 66	if (!coalesced_mmio_in_range(dev, addr, len))
 67		return -EOPNOTSUPP;
 68
 69	spin_lock(&dev->lock);
 
 
 
 
 
 
 
 70
 71	/* copy data in first free entry of the ring */
 72
 73	ring->coalesced_mmio[ring->last].phys_addr = addr;
 74	ring->coalesced_mmio[ring->last].len = len;
 75	memcpy(ring->coalesced_mmio[ring->last].data, val, len);
 
 76	smp_wmb();
 77	ring->last = (ring->last + 1) % KVM_COALESCED_MMIO_MAX;
 78	spin_unlock(&dev->lock);
 79	return 0;
 80}
 81
 82static void coalesced_mmio_destructor(struct kvm_io_device *this)
 83{
 84	struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
 85
 
 
 86	kfree(dev);
 87}
 88
 89static const struct kvm_io_device_ops coalesced_mmio_ops = {
 90	.write      = coalesced_mmio_write,
 91	.destructor = coalesced_mmio_destructor,
 92};
 93
 94int kvm_coalesced_mmio_init(struct kvm *kvm)
 95{
 96	struct kvm_coalesced_mmio_dev *dev;
 97	struct page *page;
 98	int ret;
 99
100	ret = -ENOMEM;
101	page = alloc_page(GFP_KERNEL | __GFP_ZERO);
102	if (!page)
103		goto out_err;
104	kvm->coalesced_mmio_ring = page_address(page);
105
106	ret = -ENOMEM;
107	dev = kzalloc(sizeof(struct kvm_coalesced_mmio_dev), GFP_KERNEL);
108	if (!dev)
109		goto out_free_page;
110	spin_lock_init(&dev->lock);
111	kvm_iodevice_init(&dev->dev, &coalesced_mmio_ops);
112	dev->kvm = kvm;
113	kvm->coalesced_mmio_dev = dev;
114
115	mutex_lock(&kvm->slots_lock);
116	ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, &dev->dev);
117	mutex_unlock(&kvm->slots_lock);
118	if (ret < 0)
119		goto out_free_dev;
120
121	return ret;
 
 
 
 
 
 
122
123out_free_dev:
124	kvm->coalesced_mmio_dev = NULL;
125	kfree(dev);
126out_free_page:
127	kvm->coalesced_mmio_ring = NULL;
128	__free_page(page);
129out_err:
130	return ret;
131}
132
133void kvm_coalesced_mmio_free(struct kvm *kvm)
134{
135	if (kvm->coalesced_mmio_ring)
136		free_page((unsigned long)kvm->coalesced_mmio_ring);
137}
138
139int kvm_vm_ioctl_register_coalesced_mmio(struct kvm *kvm,
140					 struct kvm_coalesced_mmio_zone *zone)
141{
142	struct kvm_coalesced_mmio_dev *dev = kvm->coalesced_mmio_dev;
 
143
144	if (dev == NULL)
145		return -ENXIO;
146
147	mutex_lock(&kvm->slots_lock);
148	if (dev->nb_zones >= KVM_COALESCED_MMIO_ZONE_MAX) {
149		mutex_unlock(&kvm->slots_lock);
150		return -ENOBUFS;
151	}
152
153	dev->zone[dev->nb_zones] = *zone;
154	dev->nb_zones++;
 
155
 
 
 
 
 
 
 
156	mutex_unlock(&kvm->slots_lock);
 
157	return 0;
 
 
 
 
 
 
158}
159
160int kvm_vm_ioctl_unregister_coalesced_mmio(struct kvm *kvm,
161					   struct kvm_coalesced_mmio_zone *zone)
162{
163	int i;
164	struct kvm_coalesced_mmio_dev *dev = kvm->coalesced_mmio_dev;
165	struct kvm_coalesced_mmio_zone *z;
166
167	if (dev == NULL)
168		return -ENXIO;
169
170	mutex_lock(&kvm->slots_lock);
171
172	i = dev->nb_zones;
173	while (i) {
174		z = &dev->zone[i - 1];
175
176		/* unregister all zones
177		 * included in (zone->addr, zone->size)
178		 */
179
180		if (zone->addr <= z->addr &&
181		    z->addr + z->size <= zone->addr + zone->size) {
182			dev->nb_zones--;
183			*z = dev->zone[dev->nb_zones];
184		}
185		i--;
186	}
187
188	mutex_unlock(&kvm->slots_lock);
189
190	return 0;
191}
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * KVM coalesced MMIO
  4 *
  5 * Copyright (c) 2008 Bull S.A.S.
  6 * Copyright 2009 Red Hat, Inc. and/or its affiliates.
  7 *
  8 *  Author: Laurent Vivier <Laurent.Vivier@bull.net>
  9 *
 10 */
 11
 12#include <kvm/iodev.h>
 13
 14#include <linux/kvm_host.h>
 15#include <linux/slab.h>
 16#include <linux/kvm.h>
 17
 18#include "coalesced_mmio.h"
 19
 20static 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
 25static int coalesced_mmio_in_range(struct kvm_coalesced_mmio_dev *dev,
 26				   gpa_t addr, int len)
 27{
 28	/* is it in a batchable area ?
 29	 * (addr,len) is fully included in
 30	 * (zone->addr, zone->size)
 31	 */
 32	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;
 41}
 42
 43static int coalesced_mmio_has_room(struct kvm_coalesced_mmio_dev *dev, u32 last)
 44{
 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;
 55	avail = (ring->first - last - 1) % KVM_COALESCED_MMIO_MAX;
 56	if (avail == 0) {
 57		/* full */
 58		return 0;
 59	}
 60
 61	return 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 62}
 63
 64static int coalesced_mmio_write(struct kvm_vcpu *vcpu,
 65				struct kvm_io_device *this, gpa_t addr,
 66				int len, const void *val)
 67{
 68	struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
 69	struct kvm_coalesced_mmio_ring *ring = dev->kvm->coalesced_mmio_ring;
 70	__u32 insert;
 71
 72	if (!coalesced_mmio_in_range(dev, addr, len))
 73		return -EOPNOTSUPP;
 74
 75	spin_lock(&dev->kvm->ring_lock);
 76
 77	insert = READ_ONCE(ring->last);
 78	if (!coalesced_mmio_has_room(dev, insert) ||
 79	    insert >= KVM_COALESCED_MMIO_MAX) {
 80		spin_unlock(&dev->kvm->ring_lock);
 81		return -EOPNOTSUPP;
 82	}
 83
 84	/* copy data in first free entry of the ring */
 85
 86	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;
 90	smp_wmb();
 91	ring->last = (insert + 1) % KVM_COALESCED_MMIO_MAX;
 92	spin_unlock(&dev->kvm->ring_lock);
 93	return 0;
 94}
 95
 96static void coalesced_mmio_destructor(struct kvm_io_device *this)
 97{
 98	struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
 99
100	list_del(&dev->list);
101
102	kfree(dev);
103}
104
105static const struct kvm_io_device_ops coalesced_mmio_ops = {
106	.write      = coalesced_mmio_write,
107	.destructor = coalesced_mmio_destructor,
108};
109
110int kvm_coalesced_mmio_init(struct kvm *kvm)
111{
 
112	struct page *page;
113	int ret;
114
115	ret = -ENOMEM;
116	page = alloc_page(GFP_KERNEL | __GFP_ZERO);
117	if (!page)
118		goto out_err;
 
119
120	ret = 0;
121	kvm->coalesced_mmio_ring = page_address(page);
 
 
 
 
 
 
 
 
 
 
 
 
122
123	/*
124	 * We're using this spinlock to sync access to the coalesced ring.
125	 * The list doesn't need it's own lock since device registration and
126	 * unregistration should only happen when kvm->slots_lock is held.
127	 */
128	spin_lock_init(&kvm->ring_lock);
129	INIT_LIST_HEAD(&kvm->coalesced_zones);
130
 
 
 
 
 
 
131out_err:
132	return ret;
133}
134
135void kvm_coalesced_mmio_free(struct kvm *kvm)
136{
137	if (kvm->coalesced_mmio_ring)
138		free_page((unsigned long)kvm->coalesced_mmio_ring);
139}
140
141int kvm_vm_ioctl_register_coalesced_mmio(struct kvm *kvm,
142					 struct kvm_coalesced_mmio_zone *zone)
143{
144	int ret;
145	struct kvm_coalesced_mmio_dev *dev;
146
147	if (zone->pio != 1 && zone->pio != 0)
148		return -EINVAL;
149
150	dev = kzalloc(sizeof(struct kvm_coalesced_mmio_dev),
151		      GFP_KERNEL_ACCOUNT);
152	if (!dev)
153		return -ENOMEM;
 
154
155	kvm_iodevice_init(&dev->dev, &coalesced_mmio_ops);
156	dev->kvm = kvm;
157	dev->zone = *zone;
158
159	mutex_lock(&kvm->slots_lock);
160	ret = kvm_io_bus_register_dev(kvm,
161				zone->pio ? KVM_PIO_BUS : KVM_MMIO_BUS,
162				zone->addr, zone->size, &dev->dev);
163	if (ret < 0)
164		goto out_free_dev;
165	list_add_tail(&dev->list, &kvm->coalesced_zones);
166	mutex_unlock(&kvm->slots_lock);
167
168	return 0;
169
170out_free_dev:
171	mutex_unlock(&kvm->slots_lock);
172	kfree(dev);
173
174	return ret;
175}
176
177int kvm_vm_ioctl_unregister_coalesced_mmio(struct kvm *kvm,
178					   struct kvm_coalesced_mmio_zone *zone)
179{
180	struct kvm_coalesced_mmio_dev *dev, *tmp;
 
 
181
182	if (zone->pio != 1 && zone->pio != 0)
183		return -EINVAL;
184
185	mutex_lock(&kvm->slots_lock);
186
187	list_for_each_entry_safe(dev, tmp, &kvm->coalesced_zones, list)
188		if (zone->pio == dev->zone.pio &&
189		    coalesced_mmio_in_range(dev, zone->addr, zone->size)) {
190			kvm_io_bus_unregister_dev(kvm,
191				zone->pio ? KVM_PIO_BUS : KVM_MMIO_BUS, &dev->dev);
192			kvm_iodevice_destructor(&dev->dev);
 
 
 
 
 
 
193		}
 
 
194
195	mutex_unlock(&kvm->slots_lock);
196
197	return 0;
198}