1 /*
2 * ccw based virtio transport
3 *
4 * Copyright IBM Corp. 2012, 2014
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): Cornelia Huck <cornelia.huck@de.ibm.com>
11 */
12
13 #include <linux/kernel_stat.h>
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>
19 #include <linux/slab.h>
20 #include <linux/interrupt.h>
21 #include <linux/virtio_ring.h>
22 #include <linux/pfn.h>
23 #include <linux/async.h>
24 #include <linux/wait.h>
25 #include <linux/list.h>
26 #include <linux/bitops.h>
27 #include <linux/module.h>
28 #include <linux/io.h>
29 #include <linux/kvm_para.h>
30 #include <linux/notifier.h>
31 #include <asm/setup.h>
32 #include <asm/irq.h>
33 #include <asm/cio.h>
34 #include <asm/ccwdev.h>
35 #include <asm/virtio-ccw.h>
36 #include <asm/isc.h>
37 #include <asm/airq.h>
38
39 /*
40 * virtio related functions
41 */
42
43 struct vq_config_block {
44 __u16 index;
45 __u16 num;
46 } __packed;
47
48 #define VIRTIO_CCW_CONFIG_SIZE 0x100
49 /* same as PCI config space size, should be enough for all drivers */
50
51 struct virtio_ccw_device {
52 struct virtio_device vdev;
53 __u8 *status;
54 __u8 config[VIRTIO_CCW_CONFIG_SIZE];
55 struct ccw_device *cdev;
56 __u32 curr_io;
57 int err;
58 wait_queue_head_t wait_q;
59 spinlock_t lock;
60 struct list_head virtqueues;
61 unsigned long indicators;
62 unsigned long indicators2;
63 struct vq_config_block *config_block;
64 bool is_thinint;
65 bool going_away;
66 bool device_lost;
67 unsigned int config_ready;
68 void *airq_info;
69 };
70
71 struct vq_info_block {
72 __u64 queue;
73 __u32 align;
74 __u16 index;
75 __u16 num;
76 } __packed;
77
78 struct virtio_feature_desc {
79 __u32 features;
80 __u8 index;
81 } __packed;
82
83 struct virtio_thinint_area {
84 unsigned long summary_indicator;
85 unsigned long indicator;
86 u64 bit_nr;
87 u8 isc;
88 } __packed;
89
90 struct virtio_ccw_vq_info {
91 struct virtqueue *vq;
92 int num;
93 void *queue;
94 struct vq_info_block *info_block;
95 int bit_nr;
96 struct list_head node;
97 long cookie;
98 };
99
100 #define VIRTIO_AIRQ_ISC IO_SCH_ISC /* inherit from subchannel */
101
102 #define VIRTIO_IV_BITS (L1_CACHE_BYTES * 8)
103 #define MAX_AIRQ_AREAS 20
104
105 static int virtio_ccw_use_airq = 1;
106
107 struct airq_info {
108 rwlock_t lock;
109 u8 summary_indicator;
110 struct airq_struct airq;
111 struct airq_iv *aiv;
112 };
113 static struct airq_info *airq_areas[MAX_AIRQ_AREAS];
114
115 #define CCW_CMD_SET_VQ 0x13
116 #define CCW_CMD_VDEV_RESET 0x33
117 #define CCW_CMD_SET_IND 0x43
118 #define CCW_CMD_SET_CONF_IND 0x53
119 #define CCW_CMD_READ_FEAT 0x12
120 #define CCW_CMD_WRITE_FEAT 0x11
121 #define CCW_CMD_READ_CONF 0x22
122 #define CCW_CMD_WRITE_CONF 0x21
123 #define CCW_CMD_WRITE_STATUS 0x31
124 #define CCW_CMD_READ_VQ_CONF 0x32
125 #define CCW_CMD_SET_IND_ADAPTER 0x73
126
127 #define VIRTIO_CCW_DOING_SET_VQ 0x00010000
128 #define VIRTIO_CCW_DOING_RESET 0x00040000
129 #define VIRTIO_CCW_DOING_READ_FEAT 0x00080000
130 #define VIRTIO_CCW_DOING_WRITE_FEAT 0x00100000
131 #define VIRTIO_CCW_DOING_READ_CONFIG 0x00200000
132 #define VIRTIO_CCW_DOING_WRITE_CONFIG 0x00400000
133 #define VIRTIO_CCW_DOING_WRITE_STATUS 0x00800000
134 #define VIRTIO_CCW_DOING_SET_IND 0x01000000
135 #define VIRTIO_CCW_DOING_READ_VQ_CONF 0x02000000
136 #define VIRTIO_CCW_DOING_SET_CONF_IND 0x04000000
137 #define VIRTIO_CCW_DOING_SET_IND_ADAPTER 0x08000000
138 #define VIRTIO_CCW_INTPARM_MASK 0xffff0000
139
to_vc_device(struct virtio_device * vdev)140 static struct virtio_ccw_device *to_vc_device(struct virtio_device *vdev)
141 {
142 return container_of(vdev, struct virtio_ccw_device, vdev);
143 }
144
drop_airq_indicator(struct virtqueue * vq,struct airq_info * info)145 static void drop_airq_indicator(struct virtqueue *vq, struct airq_info *info)
146 {
147 unsigned long i, flags;
148
149 write_lock_irqsave(&info->lock, flags);
150 for (i = 0; i < airq_iv_end(info->aiv); i++) {
151 if (vq == (void *)airq_iv_get_ptr(info->aiv, i)) {
152 airq_iv_free_bit(info->aiv, i);
153 airq_iv_set_ptr(info->aiv, i, 0);
154 break;
155 }
156 }
157 write_unlock_irqrestore(&info->lock, flags);
158 }
159
virtio_airq_handler(struct airq_struct * airq)160 static void virtio_airq_handler(struct airq_struct *airq)
161 {
162 struct airq_info *info = container_of(airq, struct airq_info, airq);
163 unsigned long ai;
164
165 inc_irq_stat(IRQIO_VAI);
166 read_lock(&info->lock);
167 /* Walk through indicators field, summary indicator active. */
168 for (ai = 0;;) {
169 ai = airq_iv_scan(info->aiv, ai, airq_iv_end(info->aiv));
170 if (ai == -1UL)
171 break;
172 vring_interrupt(0, (void *)airq_iv_get_ptr(info->aiv, ai));
173 }
174 info->summary_indicator = 0;
175 smp_wmb();
176 /* Walk through indicators field, summary indicator not active. */
177 for (ai = 0;;) {
178 ai = airq_iv_scan(info->aiv, ai, airq_iv_end(info->aiv));
179 if (ai == -1UL)
180 break;
181 vring_interrupt(0, (void *)airq_iv_get_ptr(info->aiv, ai));
182 }
183 read_unlock(&info->lock);
184 }
185
new_airq_info(void)186 static struct airq_info *new_airq_info(void)
187 {
188 struct airq_info *info;
189 int rc;
190
191 info = kzalloc(sizeof(*info), GFP_KERNEL);
192 if (!info)
193 return NULL;
194 rwlock_init(&info->lock);
195 info->aiv = airq_iv_create(VIRTIO_IV_BITS, AIRQ_IV_ALLOC | AIRQ_IV_PTR);
196 if (!info->aiv) {
197 kfree(info);
198 return NULL;
199 }
200 info->airq.handler = virtio_airq_handler;
201 info->airq.lsi_ptr = &info->summary_indicator;
202 info->airq.lsi_mask = 0xff;
203 info->airq.isc = VIRTIO_AIRQ_ISC;
204 rc = register_adapter_interrupt(&info->airq);
205 if (rc) {
206 airq_iv_release(info->aiv);
207 kfree(info);
208 return NULL;
209 }
210 return info;
211 }
212
destroy_airq_info(struct airq_info * info)213 static void destroy_airq_info(struct airq_info *info)
214 {
215 if (!info)
216 return;
217
218 unregister_adapter_interrupt(&info->airq);
219 airq_iv_release(info->aiv);
220 kfree(info);
221 }
222
get_airq_indicator(struct virtqueue * vqs[],int nvqs,u64 * first,void ** airq_info)223 static unsigned long get_airq_indicator(struct virtqueue *vqs[], int nvqs,
224 u64 *first, void **airq_info)
225 {
226 int i, j;
227 struct airq_info *info;
228 unsigned long indicator_addr = 0;
229 unsigned long bit, flags;
230
231 for (i = 0; i < MAX_AIRQ_AREAS && !indicator_addr; i++) {
232 if (!airq_areas[i])
233 airq_areas[i] = new_airq_info();
234 info = airq_areas[i];
235 if (!info)
236 return 0;
237 write_lock_irqsave(&info->lock, flags);
238 bit = airq_iv_alloc(info->aiv, nvqs);
239 if (bit == -1UL) {
240 /* Not enough vacancies. */
241 write_unlock_irqrestore(&info->lock, flags);
242 continue;
243 }
244 *first = bit;
245 *airq_info = info;
246 indicator_addr = (unsigned long)info->aiv->vector;
247 for (j = 0; j < nvqs; j++) {
248 airq_iv_set_ptr(info->aiv, bit + j,
249 (unsigned long)vqs[j]);
250 }
251 write_unlock_irqrestore(&info->lock, flags);
252 }
253 return indicator_addr;
254 }
255
virtio_ccw_drop_indicators(struct virtio_ccw_device * vcdev)256 static void virtio_ccw_drop_indicators(struct virtio_ccw_device *vcdev)
257 {
258 struct virtio_ccw_vq_info *info;
259
260 list_for_each_entry(info, &vcdev->virtqueues, node)
261 drop_airq_indicator(info->vq, vcdev->airq_info);
262 }
263
doing_io(struct virtio_ccw_device * vcdev,__u32 flag)264 static int doing_io(struct virtio_ccw_device *vcdev, __u32 flag)
265 {
266 unsigned long flags;
267 __u32 ret;
268
269 spin_lock_irqsave(get_ccwdev_lock(vcdev->cdev), flags);
270 if (vcdev->err)
271 ret = 0;
272 else
273 ret = vcdev->curr_io & flag;
274 spin_unlock_irqrestore(get_ccwdev_lock(vcdev->cdev), flags);
275 return ret;
276 }
277
ccw_io_helper(struct virtio_ccw_device * vcdev,struct ccw1 * ccw,__u32 intparm)278 static int ccw_io_helper(struct virtio_ccw_device *vcdev,
279 struct ccw1 *ccw, __u32 intparm)
280 {
281 int ret;
282 unsigned long flags;
283 int flag = intparm & VIRTIO_CCW_INTPARM_MASK;
284
285 do {
286 spin_lock_irqsave(get_ccwdev_lock(vcdev->cdev), flags);
287 ret = ccw_device_start(vcdev->cdev, ccw, intparm, 0, 0);
288 if (!ret) {
289 if (!vcdev->curr_io)
290 vcdev->err = 0;
291 vcdev->curr_io |= flag;
292 }
293 spin_unlock_irqrestore(get_ccwdev_lock(vcdev->cdev), flags);
294 cpu_relax();
295 } while (ret == -EBUSY);
296 wait_event(vcdev->wait_q, doing_io(vcdev, flag) == 0);
297 return ret ? ret : vcdev->err;
298 }
299
virtio_ccw_drop_indicator(struct virtio_ccw_device * vcdev,struct ccw1 * ccw)300 static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev,
301 struct ccw1 *ccw)
302 {
303 int ret;
304 unsigned long *indicatorp = NULL;
305 struct virtio_thinint_area *thinint_area = NULL;
306 struct airq_info *airq_info = vcdev->airq_info;
307
308 if (vcdev->is_thinint) {
309 thinint_area = kzalloc(sizeof(*thinint_area),
310 GFP_DMA | GFP_KERNEL);
311 if (!thinint_area)
312 return;
313 thinint_area->summary_indicator =
314 (unsigned long) &airq_info->summary_indicator;
315 thinint_area->isc = VIRTIO_AIRQ_ISC;
316 ccw->cmd_code = CCW_CMD_SET_IND_ADAPTER;
317 ccw->count = sizeof(*thinint_area);
318 ccw->cda = (__u32)(unsigned long) thinint_area;
319 } else {
320 indicatorp = kmalloc(sizeof(&vcdev->indicators),
321 GFP_DMA | GFP_KERNEL);
322 if (!indicatorp)
323 return;
324 *indicatorp = 0;
325 ccw->cmd_code = CCW_CMD_SET_IND;
326 ccw->count = sizeof(vcdev->indicators);
327 ccw->cda = (__u32)(unsigned long) indicatorp;
328 }
329 /* Deregister indicators from host. */
330 vcdev->indicators = 0;
331 ccw->flags = 0;
332 ret = ccw_io_helper(vcdev, ccw,
333 vcdev->is_thinint ?
334 VIRTIO_CCW_DOING_SET_IND_ADAPTER :
335 VIRTIO_CCW_DOING_SET_IND);
336 if (ret && (ret != -ENODEV))
337 dev_info(&vcdev->cdev->dev,
338 "Failed to deregister indicators (%d)\n", ret);
339 else if (vcdev->is_thinint)
340 virtio_ccw_drop_indicators(vcdev);
341 kfree(indicatorp);
342 kfree(thinint_area);
343 }
344
do_kvm_notify(struct subchannel_id schid,unsigned long queue_index,long cookie)345 static inline long do_kvm_notify(struct subchannel_id schid,
346 unsigned long queue_index,
347 long cookie)
348 {
349 register unsigned long __nr asm("1") = KVM_S390_VIRTIO_CCW_NOTIFY;
350 register struct subchannel_id __schid asm("2") = schid;
351 register unsigned long __index asm("3") = queue_index;
352 register long __rc asm("2");
353 register long __cookie asm("4") = cookie;
354
355 asm volatile ("diag 2,4,0x500\n"
356 : "=d" (__rc) : "d" (__nr), "d" (__schid), "d" (__index),
357 "d"(__cookie)
358 : "memory", "cc");
359 return __rc;
360 }
361
virtio_ccw_kvm_notify(struct virtqueue * vq)362 static bool virtio_ccw_kvm_notify(struct virtqueue *vq)
363 {
364 struct virtio_ccw_vq_info *info = vq->priv;
365 struct virtio_ccw_device *vcdev;
366 struct subchannel_id schid;
367
368 vcdev = to_vc_device(info->vq->vdev);
369 ccw_device_get_schid(vcdev->cdev, &schid);
370 info->cookie = do_kvm_notify(schid, vq->index, info->cookie);
371 if (info->cookie < 0)
372 return false;
373 return true;
374 }
375
virtio_ccw_read_vq_conf(struct virtio_ccw_device * vcdev,struct ccw1 * ccw,int index)376 static int virtio_ccw_read_vq_conf(struct virtio_ccw_device *vcdev,
377 struct ccw1 *ccw, int index)
378 {
379 vcdev->config_block->index = index;
380 ccw->cmd_code = CCW_CMD_READ_VQ_CONF;
381 ccw->flags = 0;
382 ccw->count = sizeof(struct vq_config_block);
383 ccw->cda = (__u32)(unsigned long)(vcdev->config_block);
384 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_VQ_CONF);
385 return vcdev->config_block->num;
386 }
387
virtio_ccw_del_vq(struct virtqueue * vq,struct ccw1 * ccw)388 static void virtio_ccw_del_vq(struct virtqueue *vq, struct ccw1 *ccw)
389 {
390 struct virtio_ccw_device *vcdev = to_vc_device(vq->vdev);
391 struct virtio_ccw_vq_info *info = vq->priv;
392 unsigned long flags;
393 unsigned long size;
394 int ret;
395 unsigned int index = vq->index;
396
397 /* Remove from our list. */
398 spin_lock_irqsave(&vcdev->lock, flags);
399 list_del(&info->node);
400 spin_unlock_irqrestore(&vcdev->lock, flags);
401
402 /* Release from host. */
403 info->info_block->queue = 0;
404 info->info_block->align = 0;
405 info->info_block->index = index;
406 info->info_block->num = 0;
407 ccw->cmd_code = CCW_CMD_SET_VQ;
408 ccw->flags = 0;
409 ccw->count = sizeof(*info->info_block);
410 ccw->cda = (__u32)(unsigned long)(info->info_block);
411 ret = ccw_io_helper(vcdev, ccw,
412 VIRTIO_CCW_DOING_SET_VQ | index);
413 /*
414 * -ENODEV isn't considered an error: The device is gone anyway.
415 * This may happen on device detach.
416 */
417 if (ret && (ret != -ENODEV))
418 dev_warn(&vq->vdev->dev, "Error %d while deleting queue %d",
419 ret, index);
420
421 vring_del_virtqueue(vq);
422 size = PAGE_ALIGN(vring_size(info->num, KVM_VIRTIO_CCW_RING_ALIGN));
423 free_pages_exact(info->queue, size);
424 kfree(info->info_block);
425 kfree(info);
426 }
427
virtio_ccw_del_vqs(struct virtio_device * vdev)428 static void virtio_ccw_del_vqs(struct virtio_device *vdev)
429 {
430 struct virtqueue *vq, *n;
431 struct ccw1 *ccw;
432 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
433
434 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
435 if (!ccw)
436 return;
437
438 virtio_ccw_drop_indicator(vcdev, ccw);
439
440 list_for_each_entry_safe(vq, n, &vdev->vqs, list)
441 virtio_ccw_del_vq(vq, ccw);
442
443 kfree(ccw);
444 }
445
virtio_ccw_setup_vq(struct virtio_device * vdev,int i,vq_callback_t * callback,const char * name,struct ccw1 * ccw)446 static struct virtqueue *virtio_ccw_setup_vq(struct virtio_device *vdev,
447 int i, vq_callback_t *callback,
448 const char *name,
449 struct ccw1 *ccw)
450 {
451 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
452 int err;
453 struct virtqueue *vq = NULL;
454 struct virtio_ccw_vq_info *info;
455 unsigned long size = 0; /* silence the compiler */
456 unsigned long flags;
457
458 /* Allocate queue. */
459 info = kzalloc(sizeof(struct virtio_ccw_vq_info), GFP_KERNEL);
460 if (!info) {
461 dev_warn(&vcdev->cdev->dev, "no info\n");
462 err = -ENOMEM;
463 goto out_err;
464 }
465 info->info_block = kzalloc(sizeof(*info->info_block),
466 GFP_DMA | GFP_KERNEL);
467 if (!info->info_block) {
468 dev_warn(&vcdev->cdev->dev, "no info block\n");
469 err = -ENOMEM;
470 goto out_err;
471 }
472 info->num = virtio_ccw_read_vq_conf(vcdev, ccw, i);
473 size = PAGE_ALIGN(vring_size(info->num, KVM_VIRTIO_CCW_RING_ALIGN));
474 info->queue = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
475 if (info->queue == NULL) {
476 dev_warn(&vcdev->cdev->dev, "no queue\n");
477 err = -ENOMEM;
478 goto out_err;
479 }
480
481 vq = vring_new_virtqueue(i, info->num, KVM_VIRTIO_CCW_RING_ALIGN, vdev,
482 true, info->queue, virtio_ccw_kvm_notify,
483 callback, name);
484 if (!vq) {
485 /* For now, we fail if we can't get the requested size. */
486 dev_warn(&vcdev->cdev->dev, "no vq\n");
487 err = -ENOMEM;
488 goto out_err;
489 }
490
491 /* Register it with the host. */
492 info->info_block->queue = (__u64)info->queue;
493 info->info_block->align = KVM_VIRTIO_CCW_RING_ALIGN;
494 info->info_block->index = i;
495 info->info_block->num = info->num;
496 ccw->cmd_code = CCW_CMD_SET_VQ;
497 ccw->flags = 0;
498 ccw->count = sizeof(*info->info_block);
499 ccw->cda = (__u32)(unsigned long)(info->info_block);
500 err = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_VQ | i);
501 if (err) {
502 dev_warn(&vcdev->cdev->dev, "SET_VQ failed\n");
503 goto out_err;
504 }
505
506 info->vq = vq;
507 vq->priv = info;
508
509 /* Save it to our list. */
510 spin_lock_irqsave(&vcdev->lock, flags);
511 list_add(&info->node, &vcdev->virtqueues);
512 spin_unlock_irqrestore(&vcdev->lock, flags);
513
514 return vq;
515
516 out_err:
517 if (vq)
518 vring_del_virtqueue(vq);
519 if (info) {
520 if (info->queue)
521 free_pages_exact(info->queue, size);
522 kfree(info->info_block);
523 }
524 kfree(info);
525 return ERR_PTR(err);
526 }
527
virtio_ccw_register_adapter_ind(struct virtio_ccw_device * vcdev,struct virtqueue * vqs[],int nvqs,struct ccw1 * ccw)528 static int virtio_ccw_register_adapter_ind(struct virtio_ccw_device *vcdev,
529 struct virtqueue *vqs[], int nvqs,
530 struct ccw1 *ccw)
531 {
532 int ret;
533 struct virtio_thinint_area *thinint_area = NULL;
534 struct airq_info *info;
535
536 thinint_area = kzalloc(sizeof(*thinint_area), GFP_DMA | GFP_KERNEL);
537 if (!thinint_area) {
538 ret = -ENOMEM;
539 goto out;
540 }
541 /* Try to get an indicator. */
542 thinint_area->indicator = get_airq_indicator(vqs, nvqs,
543 &thinint_area->bit_nr,
544 &vcdev->airq_info);
545 if (!thinint_area->indicator) {
546 ret = -ENOSPC;
547 goto out;
548 }
549 info = vcdev->airq_info;
550 thinint_area->summary_indicator =
551 (unsigned long) &info->summary_indicator;
552 thinint_area->isc = VIRTIO_AIRQ_ISC;
553 ccw->cmd_code = CCW_CMD_SET_IND_ADAPTER;
554 ccw->flags = CCW_FLAG_SLI;
555 ccw->count = sizeof(*thinint_area);
556 ccw->cda = (__u32)(unsigned long)thinint_area;
557 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_IND_ADAPTER);
558 if (ret) {
559 if (ret == -EOPNOTSUPP) {
560 /*
561 * The host does not support adapter interrupts
562 * for virtio-ccw, stop trying.
563 */
564 virtio_ccw_use_airq = 0;
565 pr_info("Adapter interrupts unsupported on host\n");
566 } else
567 dev_warn(&vcdev->cdev->dev,
568 "enabling adapter interrupts = %d\n", ret);
569 virtio_ccw_drop_indicators(vcdev);
570 }
571 out:
572 kfree(thinint_area);
573 return ret;
574 }
575
virtio_ccw_find_vqs(struct virtio_device * vdev,unsigned nvqs,struct virtqueue * vqs[],vq_callback_t * callbacks[],const char * names[])576 static int virtio_ccw_find_vqs(struct virtio_device *vdev, unsigned nvqs,
577 struct virtqueue *vqs[],
578 vq_callback_t *callbacks[],
579 const char *names[])
580 {
581 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
582 unsigned long *indicatorp = NULL;
583 int ret, i;
584 struct ccw1 *ccw;
585
586 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
587 if (!ccw)
588 return -ENOMEM;
589
590 for (i = 0; i < nvqs; ++i) {
591 vqs[i] = virtio_ccw_setup_vq(vdev, i, callbacks[i], names[i],
592 ccw);
593 if (IS_ERR(vqs[i])) {
594 ret = PTR_ERR(vqs[i]);
595 vqs[i] = NULL;
596 goto out;
597 }
598 }
599 ret = -ENOMEM;
600 /* We need a data area under 2G to communicate. */
601 indicatorp = kmalloc(sizeof(&vcdev->indicators), GFP_DMA | GFP_KERNEL);
602 if (!indicatorp)
603 goto out;
604 *indicatorp = (unsigned long) &vcdev->indicators;
605 if (vcdev->is_thinint) {
606 ret = virtio_ccw_register_adapter_ind(vcdev, vqs, nvqs, ccw);
607 if (ret)
608 /* no error, just fall back to legacy interrupts */
609 vcdev->is_thinint = 0;
610 }
611 if (!vcdev->is_thinint) {
612 /* Register queue indicators with host. */
613 vcdev->indicators = 0;
614 ccw->cmd_code = CCW_CMD_SET_IND;
615 ccw->flags = 0;
616 ccw->count = sizeof(vcdev->indicators);
617 ccw->cda = (__u32)(unsigned long) indicatorp;
618 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_IND);
619 if (ret)
620 goto out;
621 }
622 /* Register indicators2 with host for config changes */
623 *indicatorp = (unsigned long) &vcdev->indicators2;
624 vcdev->indicators2 = 0;
625 ccw->cmd_code = CCW_CMD_SET_CONF_IND;
626 ccw->flags = 0;
627 ccw->count = sizeof(vcdev->indicators2);
628 ccw->cda = (__u32)(unsigned long) indicatorp;
629 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_CONF_IND);
630 if (ret)
631 goto out;
632
633 kfree(indicatorp);
634 kfree(ccw);
635 return 0;
636 out:
637 kfree(indicatorp);
638 kfree(ccw);
639 virtio_ccw_del_vqs(vdev);
640 return ret;
641 }
642
virtio_ccw_reset(struct virtio_device * vdev)643 static void virtio_ccw_reset(struct virtio_device *vdev)
644 {
645 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
646 struct ccw1 *ccw;
647
648 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
649 if (!ccw)
650 return;
651
652 /* Zero status bits. */
653 *vcdev->status = 0;
654
655 /* Send a reset ccw on device. */
656 ccw->cmd_code = CCW_CMD_VDEV_RESET;
657 ccw->flags = 0;
658 ccw->count = 0;
659 ccw->cda = 0;
660 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_RESET);
661 kfree(ccw);
662 }
663
virtio_ccw_get_features(struct virtio_device * vdev)664 static u32 virtio_ccw_get_features(struct virtio_device *vdev)
665 {
666 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
667 struct virtio_feature_desc *features;
668 int ret, rc;
669 struct ccw1 *ccw;
670
671 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
672 if (!ccw)
673 return 0;
674
675 features = kzalloc(sizeof(*features), GFP_DMA | GFP_KERNEL);
676 if (!features) {
677 rc = 0;
678 goto out_free;
679 }
680 /* Read the feature bits from the host. */
681 /* TODO: Features > 32 bits */
682 features->index = 0;
683 ccw->cmd_code = CCW_CMD_READ_FEAT;
684 ccw->flags = 0;
685 ccw->count = sizeof(*features);
686 ccw->cda = (__u32)(unsigned long)features;
687 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_FEAT);
688 if (ret) {
689 rc = 0;
690 goto out_free;
691 }
692
693 rc = le32_to_cpu(features->features);
694
695 out_free:
696 kfree(features);
697 kfree(ccw);
698 return rc;
699 }
700
virtio_ccw_finalize_features(struct virtio_device * vdev)701 static void virtio_ccw_finalize_features(struct virtio_device *vdev)
702 {
703 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
704 struct virtio_feature_desc *features;
705 int i;
706 struct ccw1 *ccw;
707
708 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
709 if (!ccw)
710 return;
711
712 features = kzalloc(sizeof(*features), GFP_DMA | GFP_KERNEL);
713 if (!features)
714 goto out_free;
715
716 /* Give virtio_ring a chance to accept features. */
717 vring_transport_features(vdev);
718
719 for (i = 0; i < sizeof(*vdev->features) / sizeof(features->features);
720 i++) {
721 int highbits = i % 2 ? 32 : 0;
722 features->index = i;
723 features->features = cpu_to_le32(vdev->features[i / 2]
724 >> highbits);
725 /* Write the feature bits to the host. */
726 ccw->cmd_code = CCW_CMD_WRITE_FEAT;
727 ccw->flags = 0;
728 ccw->count = sizeof(*features);
729 ccw->cda = (__u32)(unsigned long)features;
730 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_WRITE_FEAT);
731 }
732 out_free:
733 kfree(features);
734 kfree(ccw);
735 }
736
virtio_ccw_get_config(struct virtio_device * vdev,unsigned int offset,void * buf,unsigned len)737 static void virtio_ccw_get_config(struct virtio_device *vdev,
738 unsigned int offset, void *buf, unsigned len)
739 {
740 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
741 int ret;
742 struct ccw1 *ccw;
743 void *config_area;
744
745 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
746 if (!ccw)
747 return;
748
749 config_area = kzalloc(VIRTIO_CCW_CONFIG_SIZE, GFP_DMA | GFP_KERNEL);
750 if (!config_area)
751 goto out_free;
752
753 /* Read the config area from the host. */
754 ccw->cmd_code = CCW_CMD_READ_CONF;
755 ccw->flags = 0;
756 ccw->count = offset + len;
757 ccw->cda = (__u32)(unsigned long)config_area;
758 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_CONFIG);
759 if (ret)
760 goto out_free;
761
762 memcpy(vcdev->config, config_area, offset + len);
763 if (buf)
764 memcpy(buf, &vcdev->config[offset], len);
765 if (vcdev->config_ready < offset + len)
766 vcdev->config_ready = offset + len;
767
768 out_free:
769 kfree(config_area);
770 kfree(ccw);
771 }
772
virtio_ccw_set_config(struct virtio_device * vdev,unsigned int offset,const void * buf,unsigned len)773 static void virtio_ccw_set_config(struct virtio_device *vdev,
774 unsigned int offset, const void *buf,
775 unsigned len)
776 {
777 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
778 struct ccw1 *ccw;
779 void *config_area;
780
781 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
782 if (!ccw)
783 return;
784
785 config_area = kzalloc(VIRTIO_CCW_CONFIG_SIZE, GFP_DMA | GFP_KERNEL);
786 if (!config_area)
787 goto out_free;
788
789 /* Make sure we don't overwrite fields. */
790 if (vcdev->config_ready < offset)
791 virtio_ccw_get_config(vdev, 0, NULL, offset);
792 memcpy(&vcdev->config[offset], buf, len);
793 /* Write the config area to the host. */
794 memcpy(config_area, vcdev->config, sizeof(vcdev->config));
795 ccw->cmd_code = CCW_CMD_WRITE_CONF;
796 ccw->flags = 0;
797 ccw->count = offset + len;
798 ccw->cda = (__u32)(unsigned long)config_area;
799 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_WRITE_CONFIG);
800
801 out_free:
802 kfree(config_area);
803 kfree(ccw);
804 }
805
virtio_ccw_get_status(struct virtio_device * vdev)806 static u8 virtio_ccw_get_status(struct virtio_device *vdev)
807 {
808 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
809
810 return *vcdev->status;
811 }
812
virtio_ccw_set_status(struct virtio_device * vdev,u8 status)813 static void virtio_ccw_set_status(struct virtio_device *vdev, u8 status)
814 {
815 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
816 struct ccw1 *ccw;
817
818 ccw = kzalloc(sizeof(*ccw), GFP_DMA | GFP_KERNEL);
819 if (!ccw)
820 return;
821
822 /* Write the status to the host. */
823 *vcdev->status = status;
824 ccw->cmd_code = CCW_CMD_WRITE_STATUS;
825 ccw->flags = 0;
826 ccw->count = sizeof(status);
827 ccw->cda = (__u32)(unsigned long)vcdev->status;
828 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_WRITE_STATUS);
829 kfree(ccw);
830 }
831
832 static struct virtio_config_ops virtio_ccw_config_ops = {
833 .get_features = virtio_ccw_get_features,
834 .finalize_features = virtio_ccw_finalize_features,
835 .get = virtio_ccw_get_config,
836 .set = virtio_ccw_set_config,
837 .get_status = virtio_ccw_get_status,
838 .set_status = virtio_ccw_set_status,
839 .reset = virtio_ccw_reset,
840 .find_vqs = virtio_ccw_find_vqs,
841 .del_vqs = virtio_ccw_del_vqs,
842 };
843
844
845 /*
846 * ccw bus driver related functions
847 */
848
virtio_ccw_release_dev(struct device * _d)849 static void virtio_ccw_release_dev(struct device *_d)
850 {
851 struct virtio_device *dev = container_of(_d, struct virtio_device,
852 dev);
853 struct virtio_ccw_device *vcdev = to_vc_device(dev);
854
855 kfree(vcdev->status);
856 kfree(vcdev->config_block);
857 kfree(vcdev);
858 }
859
irb_is_error(struct irb * irb)860 static int irb_is_error(struct irb *irb)
861 {
862 if (scsw_cstat(&irb->scsw) != 0)
863 return 1;
864 if (scsw_dstat(&irb->scsw) & ~(DEV_STAT_CHN_END | DEV_STAT_DEV_END))
865 return 1;
866 if (scsw_cc(&irb->scsw) != 0)
867 return 1;
868 return 0;
869 }
870
virtio_ccw_vq_by_ind(struct virtio_ccw_device * vcdev,int index)871 static struct virtqueue *virtio_ccw_vq_by_ind(struct virtio_ccw_device *vcdev,
872 int index)
873 {
874 struct virtio_ccw_vq_info *info;
875 unsigned long flags;
876 struct virtqueue *vq;
877
878 vq = NULL;
879 spin_lock_irqsave(&vcdev->lock, flags);
880 list_for_each_entry(info, &vcdev->virtqueues, node) {
881 if (info->vq->index == index) {
882 vq = info->vq;
883 break;
884 }
885 }
886 spin_unlock_irqrestore(&vcdev->lock, flags);
887 return vq;
888 }
889
virtio_ccw_int_handler(struct ccw_device * cdev,unsigned long intparm,struct irb * irb)890 static void virtio_ccw_int_handler(struct ccw_device *cdev,
891 unsigned long intparm,
892 struct irb *irb)
893 {
894 __u32 activity = intparm & VIRTIO_CCW_INTPARM_MASK;
895 struct virtio_ccw_device *vcdev = dev_get_drvdata(&cdev->dev);
896 int i;
897 struct virtqueue *vq;
898
899 if (!vcdev)
900 return;
901 /* Check if it's a notification from the host. */
902 if ((intparm == 0) &&
903 (scsw_stctl(&irb->scsw) ==
904 (SCSW_STCTL_ALERT_STATUS | SCSW_STCTL_STATUS_PEND))) {
905 /* OK */
906 }
907 if (irb_is_error(irb)) {
908 /* Command reject? */
909 if ((scsw_dstat(&irb->scsw) & DEV_STAT_UNIT_CHECK) &&
910 (irb->ecw[0] & SNS0_CMD_REJECT))
911 vcdev->err = -EOPNOTSUPP;
912 else
913 /* Map everything else to -EIO. */
914 vcdev->err = -EIO;
915 }
916 if (vcdev->curr_io & activity) {
917 switch (activity) {
918 case VIRTIO_CCW_DOING_READ_FEAT:
919 case VIRTIO_CCW_DOING_WRITE_FEAT:
920 case VIRTIO_CCW_DOING_READ_CONFIG:
921 case VIRTIO_CCW_DOING_WRITE_CONFIG:
922 case VIRTIO_CCW_DOING_WRITE_STATUS:
923 case VIRTIO_CCW_DOING_SET_VQ:
924 case VIRTIO_CCW_DOING_SET_IND:
925 case VIRTIO_CCW_DOING_SET_CONF_IND:
926 case VIRTIO_CCW_DOING_RESET:
927 case VIRTIO_CCW_DOING_READ_VQ_CONF:
928 case VIRTIO_CCW_DOING_SET_IND_ADAPTER:
929 vcdev->curr_io &= ~activity;
930 wake_up(&vcdev->wait_q);
931 break;
932 default:
933 /* don't know what to do... */
934 dev_warn(&cdev->dev, "Suspicious activity '%08x'\n",
935 activity);
936 WARN_ON(1);
937 break;
938 }
939 }
940 for_each_set_bit(i, &vcdev->indicators,
941 sizeof(vcdev->indicators) * BITS_PER_BYTE) {
942 /* The bit clear must happen before the vring kick. */
943 clear_bit(i, &vcdev->indicators);
944 barrier();
945 vq = virtio_ccw_vq_by_ind(vcdev, i);
946 vring_interrupt(0, vq);
947 }
948 if (test_bit(0, &vcdev->indicators2)) {
949 virtio_config_changed(&vcdev->vdev);
950 clear_bit(0, &vcdev->indicators2);
951 }
952 }
953
954 /*
955 * We usually want to autoonline all devices, but give the admin
956 * a way to exempt devices from this.
957 */
958 #define __DEV_WORDS ((__MAX_SUBCHANNEL + (8*sizeof(long) - 1)) / \
959 (8*sizeof(long)))
960 static unsigned long devs_no_auto[__MAX_SSID + 1][__DEV_WORDS];
961
962 static char *no_auto = "";
963
964 module_param(no_auto, charp, 0444);
965 MODULE_PARM_DESC(no_auto, "list of ccw bus id ranges not to be auto-onlined");
966
virtio_ccw_check_autoonline(struct ccw_device * cdev)967 static int virtio_ccw_check_autoonline(struct ccw_device *cdev)
968 {
969 struct ccw_dev_id id;
970
971 ccw_device_get_id(cdev, &id);
972 if (test_bit(id.devno, devs_no_auto[id.ssid]))
973 return 0;
974 return 1;
975 }
976
virtio_ccw_auto_online(void * data,async_cookie_t cookie)977 static void virtio_ccw_auto_online(void *data, async_cookie_t cookie)
978 {
979 struct ccw_device *cdev = data;
980 int ret;
981
982 ret = ccw_device_set_online(cdev);
983 if (ret)
984 dev_warn(&cdev->dev, "Failed to set online: %d\n", ret);
985 }
986
virtio_ccw_probe(struct ccw_device * cdev)987 static int virtio_ccw_probe(struct ccw_device *cdev)
988 {
989 cdev->handler = virtio_ccw_int_handler;
990
991 if (virtio_ccw_check_autoonline(cdev))
992 async_schedule(virtio_ccw_auto_online, cdev);
993 return 0;
994 }
995
virtio_grab_drvdata(struct ccw_device * cdev)996 static struct virtio_ccw_device *virtio_grab_drvdata(struct ccw_device *cdev)
997 {
998 unsigned long flags;
999 struct virtio_ccw_device *vcdev;
1000
1001 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1002 vcdev = dev_get_drvdata(&cdev->dev);
1003 if (!vcdev || vcdev->going_away) {
1004 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1005 return NULL;
1006 }
1007 vcdev->going_away = true;
1008 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1009 return vcdev;
1010 }
1011
virtio_ccw_remove(struct ccw_device * cdev)1012 static void virtio_ccw_remove(struct ccw_device *cdev)
1013 {
1014 unsigned long flags;
1015 struct virtio_ccw_device *vcdev = virtio_grab_drvdata(cdev);
1016
1017 if (vcdev && cdev->online) {
1018 if (vcdev->device_lost)
1019 virtio_break_device(&vcdev->vdev);
1020 unregister_virtio_device(&vcdev->vdev);
1021 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1022 dev_set_drvdata(&cdev->dev, NULL);
1023 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1024 }
1025 cdev->handler = NULL;
1026 }
1027
virtio_ccw_offline(struct ccw_device * cdev)1028 static int virtio_ccw_offline(struct ccw_device *cdev)
1029 {
1030 unsigned long flags;
1031 struct virtio_ccw_device *vcdev = virtio_grab_drvdata(cdev);
1032
1033 if (!vcdev)
1034 return 0;
1035 if (vcdev->device_lost)
1036 virtio_break_device(&vcdev->vdev);
1037 unregister_virtio_device(&vcdev->vdev);
1038 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1039 dev_set_drvdata(&cdev->dev, NULL);
1040 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1041 return 0;
1042 }
1043
1044
virtio_ccw_online(struct ccw_device * cdev)1045 static int virtio_ccw_online(struct ccw_device *cdev)
1046 {
1047 int ret;
1048 struct virtio_ccw_device *vcdev;
1049 unsigned long flags;
1050
1051 vcdev = kzalloc(sizeof(*vcdev), GFP_KERNEL);
1052 if (!vcdev) {
1053 dev_warn(&cdev->dev, "Could not get memory for virtio\n");
1054 ret = -ENOMEM;
1055 goto out_free;
1056 }
1057 vcdev->config_block = kzalloc(sizeof(*vcdev->config_block),
1058 GFP_DMA | GFP_KERNEL);
1059 if (!vcdev->config_block) {
1060 ret = -ENOMEM;
1061 goto out_free;
1062 }
1063 vcdev->status = kzalloc(sizeof(*vcdev->status), GFP_DMA | GFP_KERNEL);
1064 if (!vcdev->status) {
1065 ret = -ENOMEM;
1066 goto out_free;
1067 }
1068
1069 vcdev->is_thinint = virtio_ccw_use_airq; /* at least try */
1070
1071 vcdev->vdev.dev.parent = &cdev->dev;
1072 vcdev->vdev.dev.release = virtio_ccw_release_dev;
1073 vcdev->vdev.config = &virtio_ccw_config_ops;
1074 vcdev->cdev = cdev;
1075 init_waitqueue_head(&vcdev->wait_q);
1076 INIT_LIST_HEAD(&vcdev->virtqueues);
1077 spin_lock_init(&vcdev->lock);
1078
1079 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1080 dev_set_drvdata(&cdev->dev, vcdev);
1081 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1082 vcdev->vdev.id.vendor = cdev->id.cu_type;
1083 vcdev->vdev.id.device = cdev->id.cu_model;
1084 ret = register_virtio_device(&vcdev->vdev);
1085 if (ret) {
1086 dev_warn(&cdev->dev, "Failed to register virtio device: %d\n",
1087 ret);
1088 goto out_put;
1089 }
1090 return 0;
1091 out_put:
1092 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1093 dev_set_drvdata(&cdev->dev, NULL);
1094 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1095 put_device(&vcdev->vdev.dev);
1096 return ret;
1097 out_free:
1098 if (vcdev) {
1099 kfree(vcdev->status);
1100 kfree(vcdev->config_block);
1101 }
1102 kfree(vcdev);
1103 return ret;
1104 }
1105
virtio_ccw_cio_notify(struct ccw_device * cdev,int event)1106 static int virtio_ccw_cio_notify(struct ccw_device *cdev, int event)
1107 {
1108 int rc;
1109 struct virtio_ccw_device *vcdev = dev_get_drvdata(&cdev->dev);
1110
1111 /*
1112 * Make sure vcdev is set
1113 * i.e. set_offline/remove callback not already running
1114 */
1115 if (!vcdev)
1116 return NOTIFY_DONE;
1117
1118 switch (event) {
1119 case CIO_GONE:
1120 vcdev->device_lost = true;
1121 rc = NOTIFY_DONE;
1122 break;
1123 default:
1124 rc = NOTIFY_DONE;
1125 break;
1126 }
1127 return rc;
1128 }
1129
1130 static struct ccw_device_id virtio_ids[] = {
1131 { CCW_DEVICE(0x3832, 0) },
1132 {},
1133 };
1134 MODULE_DEVICE_TABLE(ccw, virtio_ids);
1135
1136 static struct ccw_driver virtio_ccw_driver = {
1137 .driver = {
1138 .owner = THIS_MODULE,
1139 .name = "virtio_ccw",
1140 },
1141 .ids = virtio_ids,
1142 .probe = virtio_ccw_probe,
1143 .remove = virtio_ccw_remove,
1144 .set_offline = virtio_ccw_offline,
1145 .set_online = virtio_ccw_online,
1146 .notify = virtio_ccw_cio_notify,
1147 .int_class = IRQIO_VIR,
1148 };
1149
pure_hex(char ** cp,unsigned int * val,int min_digit,int max_digit,int max_val)1150 static int __init pure_hex(char **cp, unsigned int *val, int min_digit,
1151 int max_digit, int max_val)
1152 {
1153 int diff;
1154
1155 diff = 0;
1156 *val = 0;
1157
1158 while (diff <= max_digit) {
1159 int value = hex_to_bin(**cp);
1160
1161 if (value < 0)
1162 break;
1163 *val = *val * 16 + value;
1164 (*cp)++;
1165 diff++;
1166 }
1167
1168 if ((diff < min_digit) || (diff > max_digit) || (*val > max_val))
1169 return 1;
1170
1171 return 0;
1172 }
1173
parse_busid(char * str,unsigned int * cssid,unsigned int * ssid,unsigned int * devno)1174 static int __init parse_busid(char *str, unsigned int *cssid,
1175 unsigned int *ssid, unsigned int *devno)
1176 {
1177 char *str_work;
1178 int rc, ret;
1179
1180 rc = 1;
1181
1182 if (*str == '\0')
1183 goto out;
1184
1185 str_work = str;
1186 ret = pure_hex(&str_work, cssid, 1, 2, __MAX_CSSID);
1187 if (ret || (str_work[0] != '.'))
1188 goto out;
1189 str_work++;
1190 ret = pure_hex(&str_work, ssid, 1, 1, __MAX_SSID);
1191 if (ret || (str_work[0] != '.'))
1192 goto out;
1193 str_work++;
1194 ret = pure_hex(&str_work, devno, 4, 4, __MAX_SUBCHANNEL);
1195 if (ret || (str_work[0] != '\0'))
1196 goto out;
1197
1198 rc = 0;
1199 out:
1200 return rc;
1201 }
1202
no_auto_parse(void)1203 static void __init no_auto_parse(void)
1204 {
1205 unsigned int from_cssid, to_cssid, from_ssid, to_ssid, from, to;
1206 char *parm, *str;
1207 int rc;
1208
1209 str = no_auto;
1210 while ((parm = strsep(&str, ","))) {
1211 rc = parse_busid(strsep(&parm, "-"), &from_cssid,
1212 &from_ssid, &from);
1213 if (rc)
1214 continue;
1215 if (parm != NULL) {
1216 rc = parse_busid(parm, &to_cssid,
1217 &to_ssid, &to);
1218 if ((from_ssid > to_ssid) ||
1219 ((from_ssid == to_ssid) && (from > to)))
1220 rc = -EINVAL;
1221 } else {
1222 to_cssid = from_cssid;
1223 to_ssid = from_ssid;
1224 to = from;
1225 }
1226 if (rc)
1227 continue;
1228 while ((from_ssid < to_ssid) ||
1229 ((from_ssid == to_ssid) && (from <= to))) {
1230 set_bit(from, devs_no_auto[from_ssid]);
1231 from++;
1232 if (from > __MAX_SUBCHANNEL) {
1233 from_ssid++;
1234 from = 0;
1235 }
1236 }
1237 }
1238 }
1239
virtio_ccw_init(void)1240 static int __init virtio_ccw_init(void)
1241 {
1242 /* parse no_auto string before we do anything further */
1243 no_auto_parse();
1244 return ccw_driver_register(&virtio_ccw_driver);
1245 }
1246 module_init(virtio_ccw_init);
1247
virtio_ccw_exit(void)1248 static void __exit virtio_ccw_exit(void)
1249 {
1250 int i;
1251
1252 ccw_driver_unregister(&virtio_ccw_driver);
1253 for (i = 0; i < MAX_AIRQ_AREAS; i++)
1254 destroy_airq_info(airq_areas[i]);
1255 }
1256 module_exit(virtio_ccw_exit);
1257