Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / s390 / kvm / kvm_virtio.c
CommitLineData
e976a2b9 1/*
a53c8fab 2 * virtio for kvm on s390
e976a2b9
CB
3 *
4 * Copyright IBM Corp. 2008
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License (version 2 only)
8 * as published by the Free Software Foundation.
9 *
10 * Author(s): Christian Borntraeger <borntraeger@de.ibm.com>
11 */
12
052ff461 13#include <linux/kernel_stat.h>
e976a2b9
CB
14#include <linux/init.h>
15#include <linux/bootmem.h>
16#include <linux/err.h>
17#include <linux/virtio.h>
18#include <linux/virtio_config.h>
5a0e3ad6 19#include <linux/slab.h>
faeba830 20#include <linux/virtio_console.h>
e976a2b9
CB
21#include <linux/interrupt.h>
22#include <linux/virtio_ring.h>
3a4c5d59 23#include <linux/export.h>
17f34580 24#include <linux/pfn.h>
e976a2b9
CB
25#include <asm/io.h>
26#include <asm/kvm_para.h>
27#include <asm/kvm_virtio.h>
cd183459 28#include <asm/sclp.h>
e976a2b9 29#include <asm/setup.h>
052ff461 30#include <asm/irq.h>
e976a2b9
CB
31
32#define VIRTIO_SUBCODE_64 0x0D00
33
34/*
35 * The pointer to our (page) of device descriptions.
36 */
37static void *kvm_devices;
c4736d96 38static struct work_struct hotplug_work;
e976a2b9 39
e976a2b9
CB
40struct kvm_device {
41 struct virtio_device vdev;
42 struct kvm_device_desc *desc;
43};
44
45#define to_kvmdev(vd) container_of(vd, struct kvm_device, vdev)
46
47/*
48 * memory layout:
49 * - kvm_device_descriptor
50 * struct kvm_device_desc
51 * - configuration
52 * struct kvm_vqconfig
53 * - feature bits
54 * - config space
55 */
56static struct kvm_vqconfig *kvm_vq_config(const struct kvm_device_desc *desc)
57{
58 return (struct kvm_vqconfig *)(desc + 1);
59}
60
61static u8 *kvm_vq_features(const struct kvm_device_desc *desc)
62{
63 return (u8 *)(kvm_vq_config(desc) + desc->num_vq);
64}
65
66static u8 *kvm_vq_configspace(const struct kvm_device_desc *desc)
67{
68 return kvm_vq_features(desc) + desc->feature_len * 2;
69}
70
71/*
72 * The total size of the config page used by this device (incl. desc)
73 */
74static unsigned desc_size(const struct kvm_device_desc *desc)
75{
76 return sizeof(*desc)
77 + desc->num_vq * sizeof(struct kvm_vqconfig)
78 + desc->feature_len * 2
79 + desc->config_len;
80}
81
5ca9fd54
HC
82/* This gets the device's feature bits. */
83static u32 kvm_get_features(struct virtio_device *vdev)
e976a2b9 84{
5ca9fd54
HC
85 unsigned int i;
86 u32 features = 0;
e976a2b9 87 struct kvm_device_desc *desc = to_kvmdev(vdev)->desc;
5ca9fd54 88 u8 *in_features = kvm_vq_features(desc);
e976a2b9 89
5ca9fd54
HC
90 for (i = 0; i < min(desc->feature_len * 8, 32); i++)
91 if (in_features[i / 8] & (1 << (i % 8)))
92 features |= (1 << i);
93 return features;
94}
e976a2b9 95
c624896e 96static void kvm_finalize_features(struct virtio_device *vdev)
5ca9fd54 97{
c624896e 98 unsigned int i, bits;
5ca9fd54
HC
99 struct kvm_device_desc *desc = to_kvmdev(vdev)->desc;
100 /* Second half of bitmap is features we accept. */
101 u8 *out_features = kvm_vq_features(desc) + desc->feature_len;
e976a2b9 102
e34f8725
RR
103 /* Give virtio_ring a chance to accept features. */
104 vring_transport_features(vdev);
105
5ca9fd54 106 memset(out_features, 0, desc->feature_len);
c624896e
RR
107 bits = min_t(unsigned, desc->feature_len, sizeof(vdev->features)) * 8;
108 for (i = 0; i < bits; i++) {
109 if (test_bit(i, vdev->features))
5ca9fd54
HC
110 out_features[i / 8] |= (1 << (i % 8));
111 }
e976a2b9
CB
112}
113
114/*
115 * Reading and writing elements in config space
116 */
117static void kvm_get(struct virtio_device *vdev, unsigned int offset,
118 void *buf, unsigned len)
119{
120 struct kvm_device_desc *desc = to_kvmdev(vdev)->desc;
121
122 BUG_ON(offset + len > desc->config_len);
123 memcpy(buf, kvm_vq_configspace(desc) + offset, len);
124}
125
126static void kvm_set(struct virtio_device *vdev, unsigned int offset,
127 const void *buf, unsigned len)
128{
129 struct kvm_device_desc *desc = to_kvmdev(vdev)->desc;
130
131 BUG_ON(offset + len > desc->config_len);
132 memcpy(kvm_vq_configspace(desc) + offset, buf, len);
133}
134
135/*
136 * The operations to get and set the status word just access
137 * the status field of the device descriptor. set_status will also
138 * make a hypercall to the host, to tell about status changes
139 */
140static u8 kvm_get_status(struct virtio_device *vdev)
141{
142 return to_kvmdev(vdev)->desc->status;
143}
144
145static void kvm_set_status(struct virtio_device *vdev, u8 status)
146{
147 BUG_ON(!status);
148 to_kvmdev(vdev)->desc->status = status;
149 kvm_hypercall1(KVM_S390_VIRTIO_SET_STATUS,
150 (unsigned long) to_kvmdev(vdev)->desc);
151}
152
153/*
154 * To reset the device, we use the KVM_VIRTIO_RESET hypercall, using the
155 * descriptor address. The Host will zero the status and all the
156 * features.
157 */
158static void kvm_reset(struct virtio_device *vdev)
159{
160 kvm_hypercall1(KVM_S390_VIRTIO_RESET,
161 (unsigned long) to_kvmdev(vdev)->desc);
162}
163
164/*
165 * When the virtio_ring code wants to notify the Host, it calls us here and we
166 * make a hypercall. We hand the address of the virtqueue so the Host
167 * knows which virtqueue we're talking about.
168 */
169static void kvm_notify(struct virtqueue *vq)
170{
171 struct kvm_vqconfig *config = vq->priv;
172
173 kvm_hypercall1(KVM_S390_VIRTIO_NOTIFY, config->address);
174}
175
176/*
177 * This routine finds the first virtqueue described in the configuration of
178 * this device and sets it up.
179 */
180static struct virtqueue *kvm_find_vq(struct virtio_device *vdev,
9499f5e7
RR
181 unsigned index,
182 void (*callback)(struct virtqueue *vq),
183 const char *name)
e976a2b9
CB
184{
185 struct kvm_device *kdev = to_kvmdev(vdev);
186 struct kvm_vqconfig *config;
187 struct virtqueue *vq;
188 int err;
189
190 if (index >= kdev->desc->num_vq)
191 return ERR_PTR(-ENOENT);
192
6457f126
MT
193 if (!name)
194 return NULL;
195
e976a2b9
CB
196 config = kvm_vq_config(kdev->desc)+index;
197
17f34580 198 err = vmem_add_mapping(config->address,
db405988
RR
199 vring_size(config->num,
200 KVM_S390_VIRTIO_RING_ALIGN));
17f34580 201 if (err)
e976a2b9 202 goto out;
e976a2b9 203
17bb6d40 204 vq = vring_new_virtqueue(index, config->num, KVM_S390_VIRTIO_RING_ALIGN,
7b21e34f 205 vdev, true, (void *) config->address,
9499f5e7 206 kvm_notify, callback, name);
e976a2b9
CB
207 if (!vq) {
208 err = -ENOMEM;
209 goto unmap;
210 }
211
212 /*
213 * register a callback token
214 * The host will sent this via the external interrupt parameter
215 */
216 config->token = (u64) vq;
217
218 vq->priv = config;
219 return vq;
220unmap:
17f34580 221 vmem_remove_mapping(config->address,
db405988
RR
222 vring_size(config->num,
223 KVM_S390_VIRTIO_RING_ALIGN));
e976a2b9
CB
224out:
225 return ERR_PTR(err);
226}
227
228static void kvm_del_vq(struct virtqueue *vq)
229{
230 struct kvm_vqconfig *config = vq->priv;
231
232 vring_del_virtqueue(vq);
17f34580 233 vmem_remove_mapping(config->address,
db405988
RR
234 vring_size(config->num,
235 KVM_S390_VIRTIO_RING_ALIGN));
e976a2b9
CB
236}
237
d2a7ddda
MT
238static void kvm_del_vqs(struct virtio_device *vdev)
239{
240 struct virtqueue *vq, *n;
241
242 list_for_each_entry_safe(vq, n, &vdev->vqs, list)
243 kvm_del_vq(vq);
244}
245
246static int kvm_find_vqs(struct virtio_device *vdev, unsigned nvqs,
247 struct virtqueue *vqs[],
248 vq_callback_t *callbacks[],
249 const char *names[])
250{
251 struct kvm_device *kdev = to_kvmdev(vdev);
252 int i;
253
254 /* We must have this many virtqueues. */
255 if (nvqs > kdev->desc->num_vq)
256 return -ENOENT;
257
258 for (i = 0; i < nvqs; ++i) {
259 vqs[i] = kvm_find_vq(vdev, i, callbacks[i], names[i]);
260 if (IS_ERR(vqs[i]))
261 goto error;
262 }
263 return 0;
264
265error:
266 kvm_del_vqs(vdev);
267 return PTR_ERR(vqs[i]);
268}
269
66846048
RJ
270static const char *kvm_bus_name(struct virtio_device *vdev)
271{
272 return "";
273}
274
e976a2b9
CB
275/*
276 * The config ops structure as defined by virtio config
277 */
93503932 278static const struct virtio_config_ops kvm_vq_configspace_ops = {
5ca9fd54 279 .get_features = kvm_get_features,
c624896e 280 .finalize_features = kvm_finalize_features,
e976a2b9
CB
281 .get = kvm_get,
282 .set = kvm_set,
283 .get_status = kvm_get_status,
284 .set_status = kvm_set_status,
285 .reset = kvm_reset,
d2a7ddda
MT
286 .find_vqs = kvm_find_vqs,
287 .del_vqs = kvm_del_vqs,
66846048 288 .bus_name = kvm_bus_name,
e976a2b9
CB
289};
290
291/*
292 * The root device for the kvm virtio devices.
293 * This makes them appear as /sys/devices/kvm_s390/0,1,2 not /sys/devices/0,1,2.
294 */
37f1c012 295static struct device *kvm_root;
e976a2b9
CB
296
297/*
298 * adds a new device and register it with virtio
299 * appropriate drivers are loaded by the device model
300 */
b769f579 301static void add_kvm_device(struct kvm_device_desc *d, unsigned int offset)
e976a2b9
CB
302{
303 struct kvm_device *kdev;
304
305 kdev = kzalloc(sizeof(*kdev), GFP_KERNEL);
306 if (!kdev) {
b769f579
RR
307 printk(KERN_EMERG "Cannot allocate kvm dev %u type %u\n",
308 offset, d->type);
e976a2b9
CB
309 return;
310 }
311
37f1c012 312 kdev->vdev.dev.parent = kvm_root;
e976a2b9
CB
313 kdev->vdev.id.device = d->type;
314 kdev->vdev.config = &kvm_vq_configspace_ops;
315 kdev->desc = d;
316
317 if (register_virtio_device(&kdev->vdev) != 0) {
b769f579
RR
318 printk(KERN_ERR "Failed to register kvm device %u type %u\n",
319 offset, d->type);
e976a2b9
CB
320 kfree(kdev);
321 }
322}
323
324/*
325 * scan_devices() simply iterates through the device page.
326 * The type 0 is reserved to mean "end of devices".
327 */
328static void scan_devices(void)
329{
330 unsigned int i;
331 struct kvm_device_desc *d;
332
333 for (i = 0; i < PAGE_SIZE; i += desc_size(d)) {
334 d = kvm_devices + i;
335
336 if (d->type == 0)
337 break;
338
b769f579 339 add_kvm_device(d, i);
e976a2b9
CB
340 }
341}
342
cefa33e2
AG
343/*
344 * match for a kvm device with a specific desc pointer
345 */
346static int match_desc(struct device *dev, void *data)
347{
7bf4074d
MS
348 struct virtio_device *vdev = dev_to_virtio(dev);
349 struct kvm_device *kdev = to_kvmdev(vdev);
cefa33e2 350
7bf4074d 351 return kdev->desc == data;
cefa33e2
AG
352}
353
354/*
355 * hotplug_device tries to find changes in the device page.
356 */
357static void hotplug_devices(struct work_struct *dummy)
358{
359 unsigned int i;
360 struct kvm_device_desc *d;
361 struct device *dev;
362
363 for (i = 0; i < PAGE_SIZE; i += desc_size(d)) {
364 d = kvm_devices + i;
365
366 /* end of list */
367 if (d->type == 0)
368 break;
369
370 /* device already exists */
371 dev = device_find_child(kvm_root, d, match_desc);
372 if (dev) {
373 /* XXX check for hotplug remove */
374 put_device(dev);
375 continue;
376 }
377
378 /* new device */
379 printk(KERN_INFO "Adding new virtio device %p\n", d);
380 add_kvm_device(d, i);
381 }
382}
383
e976a2b9
CB
384/*
385 * we emulate the request_irq behaviour on top of s390 extints
386 */
fde15c3a 387static void kvm_extint_handler(struct ext_code ext_code,
f6649a7e 388 unsigned int param32, unsigned long param64)
e976a2b9 389{
be3c5832 390 struct virtqueue *vq;
fc678d67 391 u32 param;
e976a2b9 392
fde15c3a 393 if ((ext_code.subcode & 0xff00) != VIRTIO_SUBCODE_64)
e976a2b9 394 return;
420f42ec 395 inc_irq_stat(IRQEXT_VRT);
e976a2b9 396
be3c5832 397 /* The LSB might be overloaded, we have to mask it */
f6649a7e 398 vq = (struct virtqueue *)(param64 & ~1UL);
be3c5832 399
fc678d67 400 /* We use ext_params to decide what this interrupt means */
f6649a7e 401 param = param32 & VIRTIO_PARAM_MASK;
be3c5832 402
fc678d67
AG
403 switch (param) {
404 case VIRTIO_PARAM_CONFIG_CHANGED:
405 {
be3c5832
CB
406 struct virtio_driver *drv;
407 drv = container_of(vq->vdev->dev.driver,
408 struct virtio_driver, driver);
409 if (drv->config_changed)
410 drv->config_changed(vq->vdev);
fc678d67
AG
411
412 break;
413 }
cefa33e2
AG
414 case VIRTIO_PARAM_DEV_ADD:
415 schedule_work(&hotplug_work);
416 break;
fc678d67
AG
417 case VIRTIO_PARAM_VRING_INTERRUPT:
418 default:
be3c5832 419 vring_interrupt(0, vq);
fc678d67
AG
420 break;
421 }
e976a2b9
CB
422}
423
55c171a6
CH
424/*
425 * For s390-virtio, we expect a page above main storage containing
426 * the virtio configuration. Try to actually load from this area
427 * in order to figure out if the host provides this page.
428 */
429static int __init test_devices_support(unsigned long addr)
430{
431 int ret = -EIO;
432
433 asm volatile(
434 "0: lura 0,%1\n"
435 "1: xgr %0,%0\n"
436 "2:\n"
437 EX_TABLE(0b,2b)
438 EX_TABLE(1b,2b)
439 : "+d" (ret)
440 : "a" (addr)
441 : "0", "cc");
442 return ret;
443}
e976a2b9
CB
444/*
445 * Init function for virtio
3188bf6b 446 * devices are in a single page above top of "normal" + standby mem
e976a2b9
CB
447 */
448static int __init kvm_devices_init(void)
449{
450 int rc;
3188bf6b 451 unsigned long total_memory_size = sclp_get_rzm() * sclp_get_rnmax();
e976a2b9
CB
452
453 if (!MACHINE_IS_KVM)
454 return -ENODEV;
455
3188bf6b 456 if (test_devices_support(total_memory_size) < 0)
55c171a6
CH
457 return -ENODEV;
458
3188bf6b 459 rc = vmem_add_mapping(total_memory_size, PAGE_SIZE);
55c171a6
CH
460 if (rc)
461 return rc;
462
3188bf6b 463 kvm_devices = (void *) total_memory_size;
55c171a6 464
035da16f 465 kvm_root = root_device_register("kvm_s390");
37f1c012
CH
466 if (IS_ERR(kvm_root)) {
467 rc = PTR_ERR(kvm_root);
e976a2b9 468 printk(KERN_ERR "Could not register kvm_s390 root device");
3188bf6b 469 vmem_remove_mapping(total_memory_size, PAGE_SIZE);
e976a2b9
CB
470 return rc;
471 }
472
cefa33e2
AG
473 INIT_WORK(&hotplug_work, hotplug_devices);
474
df7997ab 475 service_subclass_irq_register();
e976a2b9
CB
476 register_external_interrupt(0x2603, kvm_extint_handler);
477
478 scan_devices();
479 return 0;
480}
481
faeba830
CB
482/* code for early console output with virtio_console */
483static __init int early_put_chars(u32 vtermno, const char *buf, int count)
484{
485 char scratch[17];
486 unsigned int len = count;
487
488 if (len > sizeof(scratch) - 1)
489 len = sizeof(scratch) - 1;
490 scratch[len] = '\0';
491 memcpy(scratch, buf, len);
492 kvm_hypercall1(KVM_S390_VIRTIO_NOTIFY, __pa(scratch));
493 return len;
494}
495
c4de0c1a 496static int __init s390_virtio_console_init(void)
faeba830 497{
cd183459 498 if (sclp_has_vt220() || sclp_has_linemode())
c4de0c1a
HB
499 return -ENODEV;
500 return virtio_cons_early_init(early_put_chars);
faeba830 501}
c4de0c1a
HB
502console_initcall(s390_virtio_console_init);
503
faeba830 504
e976a2b9
CB
505/*
506 * We do this after core stuff, but before the drivers.
507 */
508postcore_initcall(kvm_devices_init);