diff options
Diffstat (limited to 'virt/kvm')
-rw-r--r-- | virt/kvm/coalesced_mmio.c | 25 | ||||
-rw-r--r-- | virt/kvm/ioapic.c | 22 | ||||
-rw-r--r-- | virt/kvm/iodev.h | 29 | ||||
-rw-r--r-- | virt/kvm/kvm_main.c | 2 |
4 files changed, 51 insertions, 27 deletions
diff --git a/virt/kvm/coalesced_mmio.c b/virt/kvm/coalesced_mmio.c index 03ea2807b1f2..c4c7ec2f9d30 100644 --- a/virt/kvm/coalesced_mmio.c +++ b/virt/kvm/coalesced_mmio.c | |||
@@ -14,11 +14,15 @@ | |||
14 | 14 | ||
15 | #include "coalesced_mmio.h" | 15 | #include "coalesced_mmio.h" |
16 | 16 | ||
17 | static inline struct kvm_coalesced_mmio_dev *to_mmio(struct kvm_io_device *dev) | ||
18 | { | ||
19 | return container_of(dev, struct kvm_coalesced_mmio_dev, dev); | ||
20 | } | ||
21 | |||
17 | static int coalesced_mmio_in_range(struct kvm_io_device *this, | 22 | static int coalesced_mmio_in_range(struct kvm_io_device *this, |
18 | gpa_t addr, int len, int is_write) | 23 | gpa_t addr, int len, int is_write) |
19 | { | 24 | { |
20 | struct kvm_coalesced_mmio_dev *dev = | 25 | struct kvm_coalesced_mmio_dev *dev = to_mmio(this); |
21 | (struct kvm_coalesced_mmio_dev*)this->private; | ||
22 | struct kvm_coalesced_mmio_zone *zone; | 26 | struct kvm_coalesced_mmio_zone *zone; |
23 | int next; | 27 | int next; |
24 | int i; | 28 | int i; |
@@ -63,8 +67,7 @@ static int coalesced_mmio_in_range(struct kvm_io_device *this, | |||
63 | static void coalesced_mmio_write(struct kvm_io_device *this, | 67 | static void coalesced_mmio_write(struct kvm_io_device *this, |
64 | gpa_t addr, int len, const void *val) | 68 | gpa_t addr, int len, const void *val) |
65 | { | 69 | { |
66 | struct kvm_coalesced_mmio_dev *dev = | 70 | struct kvm_coalesced_mmio_dev *dev = to_mmio(this); |
67 | (struct kvm_coalesced_mmio_dev*)this->private; | ||
68 | struct kvm_coalesced_mmio_ring *ring = dev->kvm->coalesced_mmio_ring; | 71 | struct kvm_coalesced_mmio_ring *ring = dev->kvm->coalesced_mmio_ring; |
69 | 72 | ||
70 | /* kvm->lock must be taken by caller before call to in_range()*/ | 73 | /* kvm->lock must be taken by caller before call to in_range()*/ |
@@ -80,12 +83,17 @@ static void coalesced_mmio_write(struct kvm_io_device *this, | |||
80 | 83 | ||
81 | static void coalesced_mmio_destructor(struct kvm_io_device *this) | 84 | static void coalesced_mmio_destructor(struct kvm_io_device *this) |
82 | { | 85 | { |
83 | struct kvm_coalesced_mmio_dev *dev = | 86 | struct kvm_coalesced_mmio_dev *dev = to_mmio(this); |
84 | (struct kvm_coalesced_mmio_dev *)this->private; | ||
85 | 87 | ||
86 | kfree(dev); | 88 | kfree(dev); |
87 | } | 89 | } |
88 | 90 | ||
91 | static const struct kvm_io_device_ops coalesced_mmio_ops = { | ||
92 | .write = coalesced_mmio_write, | ||
93 | .in_range = coalesced_mmio_in_range, | ||
94 | .destructor = coalesced_mmio_destructor, | ||
95 | }; | ||
96 | |||
89 | int kvm_coalesced_mmio_init(struct kvm *kvm) | 97 | int kvm_coalesced_mmio_init(struct kvm *kvm) |
90 | { | 98 | { |
91 | struct kvm_coalesced_mmio_dev *dev; | 99 | struct kvm_coalesced_mmio_dev *dev; |
@@ -93,10 +101,7 @@ int kvm_coalesced_mmio_init(struct kvm *kvm) | |||
93 | dev = kzalloc(sizeof(struct kvm_coalesced_mmio_dev), GFP_KERNEL); | 101 | dev = kzalloc(sizeof(struct kvm_coalesced_mmio_dev), GFP_KERNEL); |
94 | if (!dev) | 102 | if (!dev) |
95 | return -ENOMEM; | 103 | return -ENOMEM; |
96 | dev->dev.write = coalesced_mmio_write; | 104 | kvm_iodevice_init(&dev->dev, &coalesced_mmio_ops); |
97 | dev->dev.in_range = coalesced_mmio_in_range; | ||
98 | dev->dev.destructor = coalesced_mmio_destructor; | ||
99 | dev->dev.private = dev; | ||
100 | dev->kvm = kvm; | 105 | dev->kvm = kvm; |
101 | kvm->coalesced_mmio_dev = dev; | 106 | kvm->coalesced_mmio_dev = dev; |
102 | kvm_io_bus_register_dev(&kvm->mmio_bus, &dev->dev); | 107 | kvm_io_bus_register_dev(&kvm->mmio_bus, &dev->dev); |
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c index 1150c6d5c7b8..469b9faae665 100644 --- a/virt/kvm/ioapic.c +++ b/virt/kvm/ioapic.c | |||
@@ -220,10 +220,15 @@ void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode) | |||
220 | __kvm_ioapic_update_eoi(ioapic, i, trigger_mode); | 220 | __kvm_ioapic_update_eoi(ioapic, i, trigger_mode); |
221 | } | 221 | } |
222 | 222 | ||
223 | static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev) | ||
224 | { | ||
225 | return container_of(dev, struct kvm_ioapic, dev); | ||
226 | } | ||
227 | |||
223 | static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr, | 228 | static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr, |
224 | int len, int is_write) | 229 | int len, int is_write) |
225 | { | 230 | { |
226 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; | 231 | struct kvm_ioapic *ioapic = to_ioapic(this); |
227 | 232 | ||
228 | return ((addr >= ioapic->base_address && | 233 | return ((addr >= ioapic->base_address && |
229 | (addr < ioapic->base_address + IOAPIC_MEM_LENGTH))); | 234 | (addr < ioapic->base_address + IOAPIC_MEM_LENGTH))); |
@@ -232,7 +237,7 @@ static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr, | |||
232 | static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, | 237 | static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, |
233 | void *val) | 238 | void *val) |
234 | { | 239 | { |
235 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; | 240 | struct kvm_ioapic *ioapic = to_ioapic(this); |
236 | u32 result; | 241 | u32 result; |
237 | 242 | ||
238 | ioapic_debug("addr %lx\n", (unsigned long)addr); | 243 | ioapic_debug("addr %lx\n", (unsigned long)addr); |
@@ -269,7 +274,7 @@ static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len, | |||
269 | static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len, | 274 | static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len, |
270 | const void *val) | 275 | const void *val) |
271 | { | 276 | { |
272 | struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private; | 277 | struct kvm_ioapic *ioapic = to_ioapic(this); |
273 | u32 data; | 278 | u32 data; |
274 | 279 | ||
275 | ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n", | 280 | ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n", |
@@ -314,6 +319,12 @@ void kvm_ioapic_reset(struct kvm_ioapic *ioapic) | |||
314 | ioapic->id = 0; | 319 | ioapic->id = 0; |
315 | } | 320 | } |
316 | 321 | ||
322 | static const struct kvm_io_device_ops ioapic_mmio_ops = { | ||
323 | .read = ioapic_mmio_read, | ||
324 | .write = ioapic_mmio_write, | ||
325 | .in_range = ioapic_in_range, | ||
326 | }; | ||
327 | |||
317 | int kvm_ioapic_init(struct kvm *kvm) | 328 | int kvm_ioapic_init(struct kvm *kvm) |
318 | { | 329 | { |
319 | struct kvm_ioapic *ioapic; | 330 | struct kvm_ioapic *ioapic; |
@@ -323,10 +334,7 @@ int kvm_ioapic_init(struct kvm *kvm) | |||
323 | return -ENOMEM; | 334 | return -ENOMEM; |
324 | kvm->arch.vioapic = ioapic; | 335 | kvm->arch.vioapic = ioapic; |
325 | kvm_ioapic_reset(ioapic); | 336 | kvm_ioapic_reset(ioapic); |
326 | ioapic->dev.read = ioapic_mmio_read; | 337 | kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops); |
327 | ioapic->dev.write = ioapic_mmio_write; | ||
328 | ioapic->dev.in_range = ioapic_in_range; | ||
329 | ioapic->dev.private = ioapic; | ||
330 | ioapic->kvm = kvm; | 338 | ioapic->kvm = kvm; |
331 | kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev); | 339 | kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev); |
332 | return 0; | 340 | return 0; |
diff --git a/virt/kvm/iodev.h b/virt/kvm/iodev.h index 55e8846ac3a6..2c67f5acd6db 100644 --- a/virt/kvm/iodev.h +++ b/virt/kvm/iodev.h | |||
@@ -18,7 +18,9 @@ | |||
18 | 18 | ||
19 | #include <linux/kvm_types.h> | 19 | #include <linux/kvm_types.h> |
20 | 20 | ||
21 | struct kvm_io_device { | 21 | struct kvm_io_device; |
22 | |||
23 | struct kvm_io_device_ops { | ||
22 | void (*read)(struct kvm_io_device *this, | 24 | void (*read)(struct kvm_io_device *this, |
23 | gpa_t addr, | 25 | gpa_t addr, |
24 | int len, | 26 | int len, |
@@ -30,16 +32,25 @@ struct kvm_io_device { | |||
30 | int (*in_range)(struct kvm_io_device *this, gpa_t addr, int len, | 32 | int (*in_range)(struct kvm_io_device *this, gpa_t addr, int len, |
31 | int is_write); | 33 | int is_write); |
32 | void (*destructor)(struct kvm_io_device *this); | 34 | void (*destructor)(struct kvm_io_device *this); |
35 | }; | ||
36 | |||
33 | 37 | ||
34 | void *private; | 38 | struct kvm_io_device { |
39 | const struct kvm_io_device_ops *ops; | ||
35 | }; | 40 | }; |
36 | 41 | ||
42 | static inline void kvm_iodevice_init(struct kvm_io_device *dev, | ||
43 | const struct kvm_io_device_ops *ops) | ||
44 | { | ||
45 | dev->ops = ops; | ||
46 | } | ||
47 | |||
37 | static inline void kvm_iodevice_read(struct kvm_io_device *dev, | 48 | static inline void kvm_iodevice_read(struct kvm_io_device *dev, |
38 | gpa_t addr, | 49 | gpa_t addr, |
39 | int len, | 50 | int len, |
40 | void *val) | 51 | void *val) |
41 | { | 52 | { |
42 | dev->read(dev, addr, len, val); | 53 | dev->ops->read(dev, addr, len, val); |
43 | } | 54 | } |
44 | 55 | ||
45 | static inline void kvm_iodevice_write(struct kvm_io_device *dev, | 56 | static inline void kvm_iodevice_write(struct kvm_io_device *dev, |
@@ -47,19 +58,19 @@ static inline void kvm_iodevice_write(struct kvm_io_device *dev, | |||
47 | int len, | 58 | int len, |
48 | const void *val) | 59 | const void *val) |
49 | { | 60 | { |
50 | dev->write(dev, addr, len, val); | 61 | dev->ops->write(dev, addr, len, val); |
51 | } | 62 | } |
52 | 63 | ||
53 | static inline int kvm_iodevice_inrange(struct kvm_io_device *dev, | 64 | static inline int kvm_iodevice_in_range(struct kvm_io_device *dev, |
54 | gpa_t addr, int len, int is_write) | 65 | gpa_t addr, int len, int is_write) |
55 | { | 66 | { |
56 | return dev->in_range(dev, addr, len, is_write); | 67 | return dev->ops->in_range(dev, addr, len, is_write); |
57 | } | 68 | } |
58 | 69 | ||
59 | static inline void kvm_iodevice_destructor(struct kvm_io_device *dev) | 70 | static inline void kvm_iodevice_destructor(struct kvm_io_device *dev) |
60 | { | 71 | { |
61 | if (dev->destructor) | 72 | if (dev->ops->destructor) |
62 | dev->destructor(dev); | 73 | dev->ops->destructor(dev); |
63 | } | 74 | } |
64 | 75 | ||
65 | #endif /* __KVM_IODEV_H__ */ | 76 | #endif /* __KVM_IODEV_H__ */ |
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 2d9bc439d9a9..d1f9c87daa87 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c | |||
@@ -2463,7 +2463,7 @@ struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, | |||
2463 | for (i = 0; i < bus->dev_count; i++) { | 2463 | for (i = 0; i < bus->dev_count; i++) { |
2464 | struct kvm_io_device *pos = bus->devs[i]; | 2464 | struct kvm_io_device *pos = bus->devs[i]; |
2465 | 2465 | ||
2466 | if (pos->in_range(pos, addr, len, is_write)) | 2466 | if (kvm_iodevice_in_range(pos, addr, len, is_write)) |
2467 | return pos; | 2467 | return pos; |
2468 | } | 2468 | } |
2469 | 2469 | ||