USB: g_hid: unregister platform driver on probe/usb_composite_register errors
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / virt / kvm / coalesced_mmio.c
blob36e258029649c719fec91a1feb7306604ae90ab9
1 /*
2 * KVM coalesced MMIO
4 * Copyright (c) 2008 Bull S.A.S.
6 * Author: Laurent Vivier <Laurent.Vivier@bull.net>
8 */
10 #include "iodev.h"
12 #include <linux/kvm_host.h>
13 #include <linux/slab.h>
14 #include <linux/kvm.h>
16 #include "coalesced_mmio.h"
18 static inline struct kvm_coalesced_mmio_dev *to_mmio(struct kvm_io_device *dev)
20 return container_of(dev, struct kvm_coalesced_mmio_dev, dev);
23 static int coalesced_mmio_in_range(struct kvm_coalesced_mmio_dev *dev,
24 gpa_t addr, int len)
26 struct kvm_coalesced_mmio_zone *zone;
27 struct kvm_coalesced_mmio_ring *ring;
28 unsigned avail;
29 int i;
31 /* Are we able to batch it ? */
33 /* last is the first free entry
34 * check if we don't meet the first used entry
35 * there is always one unused entry in the buffer
37 ring = dev->kvm->coalesced_mmio_ring;
38 avail = (ring->first - ring->last - 1) % KVM_COALESCED_MMIO_MAX;
39 if (avail < KVM_MAX_VCPUS) {
40 /* full */
41 return 0;
44 /* is it in a batchable area ? */
46 for (i = 0; i < dev->nb_zones; i++) {
47 zone = &dev->zone[i];
49 /* (addr,len) is fully included in
50 * (zone->addr, zone->size)
53 if (zone->addr <= addr &&
54 addr + len <= zone->addr + zone->size)
55 return 1;
57 return 0;
60 static int coalesced_mmio_write(struct kvm_io_device *this,
61 gpa_t addr, int len, const void *val)
63 struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
64 struct kvm_coalesced_mmio_ring *ring = dev->kvm->coalesced_mmio_ring;
65 if (!coalesced_mmio_in_range(dev, addr, len))
66 return -EOPNOTSUPP;
68 spin_lock(&dev->lock);
70 /* copy data in first free entry of the ring */
72 ring->coalesced_mmio[ring->last].phys_addr = addr;
73 ring->coalesced_mmio[ring->last].len = len;
74 memcpy(ring->coalesced_mmio[ring->last].data, val, len);
75 smp_wmb();
76 ring->last = (ring->last + 1) % KVM_COALESCED_MMIO_MAX;
77 spin_unlock(&dev->lock);
78 return 0;
81 static void coalesced_mmio_destructor(struct kvm_io_device *this)
83 struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
85 kfree(dev);
88 static const struct kvm_io_device_ops coalesced_mmio_ops = {
89 .write = coalesced_mmio_write,
90 .destructor = coalesced_mmio_destructor,
93 int kvm_coalesced_mmio_init(struct kvm *kvm)
95 struct kvm_coalesced_mmio_dev *dev;
96 struct page *page;
97 int ret;
99 ret = -ENOMEM;
100 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
101 if (!page)
102 goto out_err;
103 kvm->coalesced_mmio_ring = page_address(page);
105 ret = -ENOMEM;
106 dev = kzalloc(sizeof(struct kvm_coalesced_mmio_dev), GFP_KERNEL);
107 if (!dev)
108 goto out_free_page;
109 spin_lock_init(&dev->lock);
110 kvm_iodevice_init(&dev->dev, &coalesced_mmio_ops);
111 dev->kvm = kvm;
112 kvm->coalesced_mmio_dev = dev;
114 mutex_lock(&kvm->slots_lock);
115 ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, &dev->dev);
116 mutex_unlock(&kvm->slots_lock);
117 if (ret < 0)
118 goto out_free_dev;
120 return ret;
122 out_free_dev:
123 kfree(dev);
124 out_free_page:
125 __free_page(page);
126 out_err:
127 return ret;
130 void kvm_coalesced_mmio_free(struct kvm *kvm)
132 if (kvm->coalesced_mmio_ring)
133 free_page((unsigned long)kvm->coalesced_mmio_ring);
136 int kvm_vm_ioctl_register_coalesced_mmio(struct kvm *kvm,
137 struct kvm_coalesced_mmio_zone *zone)
139 struct kvm_coalesced_mmio_dev *dev = kvm->coalesced_mmio_dev;
141 if (dev == NULL)
142 return -EINVAL;
144 mutex_lock(&kvm->slots_lock);
145 if (dev->nb_zones >= KVM_COALESCED_MMIO_ZONE_MAX) {
146 mutex_unlock(&kvm->slots_lock);
147 return -ENOBUFS;
150 dev->zone[dev->nb_zones] = *zone;
151 dev->nb_zones++;
153 mutex_unlock(&kvm->slots_lock);
154 return 0;
157 int kvm_vm_ioctl_unregister_coalesced_mmio(struct kvm *kvm,
158 struct kvm_coalesced_mmio_zone *zone)
160 int i;
161 struct kvm_coalesced_mmio_dev *dev = kvm->coalesced_mmio_dev;
162 struct kvm_coalesced_mmio_zone *z;
164 if (dev == NULL)
165 return -EINVAL;
167 mutex_lock(&kvm->slots_lock);
169 i = dev->nb_zones;
170 while (i) {
171 z = &dev->zone[i - 1];
173 /* unregister all zones
174 * included in (zone->addr, zone->size)
177 if (zone->addr <= z->addr &&
178 z->addr + z->size <= zone->addr + zone->size) {
179 dev->nb_zones--;
180 *z = dev->zone[dev->nb_zones];
182 i--;
185 mutex_unlock(&kvm->slots_lock);
187 return 0;