thinkpad-acpi: move greeting messages out of the first subdriver (v2)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / virt / kvm / coalesced_mmio.c
blob04d69cd7049b989100058dcb8d74ef6fb7c295e2
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/kvm.h>
15 #include "coalesced_mmio.h"
17 static inline struct kvm_coalesced_mmio_dev *to_mmio(struct kvm_io_device *dev)
19 return container_of(dev, struct kvm_coalesced_mmio_dev, dev);
22 static int coalesced_mmio_in_range(struct kvm_coalesced_mmio_dev *dev,
23 gpa_t addr, int len)
25 struct kvm_coalesced_mmio_zone *zone;
26 struct kvm_coalesced_mmio_ring *ring;
27 unsigned avail;
28 int i;
30 /* Are we able to batch it ? */
32 /* last is the first free entry
33 * check if we don't meet the first used entry
34 * there is always one unused entry in the buffer
36 ring = dev->kvm->coalesced_mmio_ring;
37 avail = (ring->first - ring->last - 1) % KVM_COALESCED_MMIO_MAX;
38 if (avail < KVM_MAX_VCPUS) {
39 /* full */
40 return 0;
43 /* is it in a batchable area ? */
45 for (i = 0; i < dev->nb_zones; i++) {
46 zone = &dev->zone[i];
48 /* (addr,len) is fully included in
49 * (zone->addr, zone->size)
52 if (zone->addr <= addr &&
53 addr + len <= zone->addr + zone->size)
54 return 1;
56 return 0;
59 static int coalesced_mmio_write(struct kvm_io_device *this,
60 gpa_t addr, int len, const void *val)
62 struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
63 struct kvm_coalesced_mmio_ring *ring = dev->kvm->coalesced_mmio_ring;
64 if (!coalesced_mmio_in_range(dev, addr, len))
65 return -EOPNOTSUPP;
67 spin_lock(&dev->lock);
69 /* copy data in first free entry of the ring */
71 ring->coalesced_mmio[ring->last].phys_addr = addr;
72 ring->coalesced_mmio[ring->last].len = len;
73 memcpy(ring->coalesced_mmio[ring->last].data, val, len);
74 smp_wmb();
75 ring->last = (ring->last + 1) % KVM_COALESCED_MMIO_MAX;
76 spin_unlock(&dev->lock);
77 return 0;
80 static void coalesced_mmio_destructor(struct kvm_io_device *this)
82 struct kvm_coalesced_mmio_dev *dev = to_mmio(this);
84 kfree(dev);
87 static const struct kvm_io_device_ops coalesced_mmio_ops = {
88 .write = coalesced_mmio_write,
89 .destructor = coalesced_mmio_destructor,
92 int kvm_coalesced_mmio_init(struct kvm *kvm)
94 struct kvm_coalesced_mmio_dev *dev;
95 int ret;
97 dev = kzalloc(sizeof(struct kvm_coalesced_mmio_dev), GFP_KERNEL);
98 if (!dev)
99 return -ENOMEM;
100 spin_lock_init(&dev->lock);
101 kvm_iodevice_init(&dev->dev, &coalesced_mmio_ops);
102 dev->kvm = kvm;
103 kvm->coalesced_mmio_dev = dev;
105 ret = kvm_io_bus_register_dev(kvm, &kvm->mmio_bus, &dev->dev);
106 if (ret < 0)
107 kfree(dev);
109 return ret;
112 int kvm_vm_ioctl_register_coalesced_mmio(struct kvm *kvm,
113 struct kvm_coalesced_mmio_zone *zone)
115 struct kvm_coalesced_mmio_dev *dev = kvm->coalesced_mmio_dev;
117 if (dev == NULL)
118 return -EINVAL;
120 down_write(&kvm->slots_lock);
121 if (dev->nb_zones >= KVM_COALESCED_MMIO_ZONE_MAX) {
122 up_write(&kvm->slots_lock);
123 return -ENOBUFS;
126 dev->zone[dev->nb_zones] = *zone;
127 dev->nb_zones++;
129 up_write(&kvm->slots_lock);
130 return 0;
133 int kvm_vm_ioctl_unregister_coalesced_mmio(struct kvm *kvm,
134 struct kvm_coalesced_mmio_zone *zone)
136 int i;
137 struct kvm_coalesced_mmio_dev *dev = kvm->coalesced_mmio_dev;
138 struct kvm_coalesced_mmio_zone *z;
140 if (dev == NULL)
141 return -EINVAL;
143 down_write(&kvm->slots_lock);
145 i = dev->nb_zones;
146 while(i) {
147 z = &dev->zone[i - 1];
149 /* unregister all zones
150 * included in (zone->addr, zone->size)
153 if (zone->addr <= z->addr &&
154 z->addr + z->size <= zone->addr + zone->size) {
155 dev->nb_zones--;
156 *z = dev->zone[dev->nb_zones];
158 i--;
161 up_write(&kvm->slots_lock);
163 return 0;