1 // SPDX-License-Identifier: GPL-2.0
3 * ccw based virtio transport
5 * Copyright IBM Corp. 2012, 2014
10 #include <linux/kernel_stat.h>
11 #include <linux/init.h>
12 #include <linux/memblock.h>
13 #include <linux/err.h>
14 #include <linux/virtio.h>
15 #include <linux/virtio_config.h>
16 #include <linux/slab.h>
17 #include <linux/interrupt.h>
18 #include <linux/virtio_ring.h>
19 #include <linux/pfn.h>
20 #include <linux/async.h>
21 #include <linux/wait.h>
22 #include <linux/list.h>
23 #include <linux/bitops.h>
24 #include <linux/moduleparam.h>
26 #include <linux/kvm_para.h>
27 #include <linux/notifier.h>
29 #include <asm/setup.h>
32 #include <asm/ccwdev.h>
33 #include <asm/virtio-ccw.h>
39 * virtio related functions
42 struct vq_config_block {
47 #define VIRTIO_CCW_CONFIG_SIZE 0x100
48 /* same as PCI config space size, should be enough for all drivers */
50 struct vcdev_dma_area {
51 unsigned long indicators;
52 unsigned long indicators2;
53 struct vq_config_block config_block;
57 struct virtio_ccw_device {
58 struct virtio_device vdev;
59 __u8 config[VIRTIO_CCW_CONFIG_SIZE];
60 struct ccw_device *cdev;
63 unsigned int revision; /* Transport revision */
64 wait_queue_head_t wait_q;
67 struct mutex io_lock; /* Serializes I/O requests */
68 struct list_head virtqueues;
72 unsigned int config_ready;
74 struct vcdev_dma_area *dma_area;
77 static inline unsigned long *indicators(struct virtio_ccw_device *vcdev)
79 return &vcdev->dma_area->indicators;
82 static inline unsigned long *indicators2(struct virtio_ccw_device *vcdev)
84 return &vcdev->dma_area->indicators2;
87 struct vq_info_block_legacy {
94 struct vq_info_block {
103 struct virtio_feature_desc {
108 struct virtio_thinint_area {
109 unsigned long summary_indicator;
110 unsigned long indicator;
115 struct virtio_rev_info {
121 /* the highest virtio-ccw revision we support */
122 #define VIRTIO_CCW_REV_MAX 2
124 struct virtio_ccw_vq_info {
125 struct virtqueue *vq;
128 struct vq_info_block s;
129 struct vq_info_block_legacy l;
132 struct list_head node;
136 #define VIRTIO_AIRQ_ISC IO_SCH_ISC /* inherit from subchannel */
138 #define VIRTIO_IV_BITS (L1_CACHE_BYTES * 8)
139 #define MAX_AIRQ_AREAS 20
141 static int virtio_ccw_use_airq = 1;
145 u8 summary_indicator_idx;
146 struct airq_struct airq;
149 static struct airq_info *airq_areas[MAX_AIRQ_AREAS];
150 static DEFINE_MUTEX(airq_areas_lock);
152 static u8 *summary_indicators;
154 static inline u8 *get_summary_indicator(struct airq_info *info)
156 return summary_indicators + info->summary_indicator_idx;
159 #define CCW_CMD_SET_VQ 0x13
160 #define CCW_CMD_VDEV_RESET 0x33
161 #define CCW_CMD_SET_IND 0x43
162 #define CCW_CMD_SET_CONF_IND 0x53
163 #define CCW_CMD_READ_FEAT 0x12
164 #define CCW_CMD_WRITE_FEAT 0x11
165 #define CCW_CMD_READ_CONF 0x22
166 #define CCW_CMD_WRITE_CONF 0x21
167 #define CCW_CMD_WRITE_STATUS 0x31
168 #define CCW_CMD_READ_VQ_CONF 0x32
169 #define CCW_CMD_READ_STATUS 0x72
170 #define CCW_CMD_SET_IND_ADAPTER 0x73
171 #define CCW_CMD_SET_VIRTIO_REV 0x83
173 #define VIRTIO_CCW_DOING_SET_VQ 0x00010000
174 #define VIRTIO_CCW_DOING_RESET 0x00040000
175 #define VIRTIO_CCW_DOING_READ_FEAT 0x00080000
176 #define VIRTIO_CCW_DOING_WRITE_FEAT 0x00100000
177 #define VIRTIO_CCW_DOING_READ_CONFIG 0x00200000
178 #define VIRTIO_CCW_DOING_WRITE_CONFIG 0x00400000
179 #define VIRTIO_CCW_DOING_WRITE_STATUS 0x00800000
180 #define VIRTIO_CCW_DOING_SET_IND 0x01000000
181 #define VIRTIO_CCW_DOING_READ_VQ_CONF 0x02000000
182 #define VIRTIO_CCW_DOING_SET_CONF_IND 0x04000000
183 #define VIRTIO_CCW_DOING_SET_IND_ADAPTER 0x08000000
184 #define VIRTIO_CCW_DOING_SET_VIRTIO_REV 0x10000000
185 #define VIRTIO_CCW_DOING_READ_STATUS 0x20000000
186 #define VIRTIO_CCW_INTPARM_MASK 0xffff0000
188 static struct virtio_ccw_device *to_vc_device(struct virtio_device *vdev)
190 return container_of(vdev, struct virtio_ccw_device, vdev);
193 static void drop_airq_indicator(struct virtqueue *vq, struct airq_info *info)
195 unsigned long i, flags;
197 write_lock_irqsave(&info->lock, flags);
198 for (i = 0; i < airq_iv_end(info->aiv); i++) {
199 if (vq == (void *)airq_iv_get_ptr(info->aiv, i)) {
200 airq_iv_free_bit(info->aiv, i);
201 airq_iv_set_ptr(info->aiv, i, 0);
205 write_unlock_irqrestore(&info->lock, flags);
208 static void virtio_airq_handler(struct airq_struct *airq,
209 struct tpi_info *tpi_info)
211 struct airq_info *info = container_of(airq, struct airq_info, airq);
214 inc_irq_stat(IRQIO_VAI);
215 read_lock(&info->lock);
216 /* Walk through indicators field, summary indicator active. */
218 ai = airq_iv_scan(info->aiv, ai, airq_iv_end(info->aiv));
221 vring_interrupt(0, (void *)airq_iv_get_ptr(info->aiv, ai));
223 *(get_summary_indicator(info)) = 0;
225 /* Walk through indicators field, summary indicator not active. */
227 ai = airq_iv_scan(info->aiv, ai, airq_iv_end(info->aiv));
230 vring_interrupt(0, (void *)airq_iv_get_ptr(info->aiv, ai));
232 read_unlock(&info->lock);
235 static struct airq_info *new_airq_info(int index)
237 struct airq_info *info;
240 info = kzalloc(sizeof(*info), GFP_KERNEL);
243 rwlock_init(&info->lock);
244 info->aiv = airq_iv_create(VIRTIO_IV_BITS, AIRQ_IV_ALLOC | AIRQ_IV_PTR
245 | AIRQ_IV_CACHELINE, NULL);
250 info->airq.handler = virtio_airq_handler;
251 info->summary_indicator_idx = index;
252 info->airq.lsi_ptr = get_summary_indicator(info);
253 info->airq.lsi_mask = 0xff;
254 info->airq.isc = VIRTIO_AIRQ_ISC;
255 rc = register_adapter_interrupt(&info->airq);
257 airq_iv_release(info->aiv);
264 static unsigned long get_airq_indicator(struct virtqueue *vqs[], int nvqs,
265 u64 *first, void **airq_info)
268 struct airq_info *info;
269 unsigned long indicator_addr = 0;
270 unsigned long bit, flags;
272 for (i = 0; i < MAX_AIRQ_AREAS && !indicator_addr; i++) {
273 mutex_lock(&airq_areas_lock);
275 airq_areas[i] = new_airq_info(i);
276 info = airq_areas[i];
277 mutex_unlock(&airq_areas_lock);
280 write_lock_irqsave(&info->lock, flags);
281 bit = airq_iv_alloc(info->aiv, nvqs);
283 /* Not enough vacancies. */
284 write_unlock_irqrestore(&info->lock, flags);
289 indicator_addr = (unsigned long)info->aiv->vector;
290 for (j = 0; j < nvqs; j++) {
291 airq_iv_set_ptr(info->aiv, bit + j,
292 (unsigned long)vqs[j]);
294 write_unlock_irqrestore(&info->lock, flags);
296 return indicator_addr;
299 static void virtio_ccw_drop_indicators(struct virtio_ccw_device *vcdev)
301 struct virtio_ccw_vq_info *info;
303 if (!vcdev->airq_info)
305 list_for_each_entry(info, &vcdev->virtqueues, node)
306 drop_airq_indicator(info->vq, vcdev->airq_info);
309 static int doing_io(struct virtio_ccw_device *vcdev, __u32 flag)
314 spin_lock_irqsave(get_ccwdev_lock(vcdev->cdev), flags);
318 ret = vcdev->curr_io & flag;
319 spin_unlock_irqrestore(get_ccwdev_lock(vcdev->cdev), flags);
323 static int ccw_io_helper(struct virtio_ccw_device *vcdev,
324 struct ccw1 *ccw, __u32 intparm)
328 int flag = intparm & VIRTIO_CCW_INTPARM_MASK;
330 mutex_lock(&vcdev->io_lock);
332 spin_lock_irqsave(get_ccwdev_lock(vcdev->cdev), flags);
333 ret = ccw_device_start(vcdev->cdev, ccw, intparm, 0, 0);
337 vcdev->curr_io |= flag;
339 spin_unlock_irqrestore(get_ccwdev_lock(vcdev->cdev), flags);
341 } while (ret == -EBUSY);
342 wait_event(vcdev->wait_q, doing_io(vcdev, flag) == 0);
343 ret = ret ? ret : vcdev->err;
344 mutex_unlock(&vcdev->io_lock);
348 static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev,
352 unsigned long *indicatorp = NULL;
353 struct virtio_thinint_area *thinint_area = NULL;
354 struct airq_info *airq_info = vcdev->airq_info;
356 if (vcdev->is_thinint) {
357 thinint_area = ccw_device_dma_zalloc(vcdev->cdev,
358 sizeof(*thinint_area));
361 thinint_area->summary_indicator =
362 (unsigned long) get_summary_indicator(airq_info);
363 thinint_area->isc = VIRTIO_AIRQ_ISC;
364 ccw->cmd_code = CCW_CMD_SET_IND_ADAPTER;
365 ccw->count = sizeof(*thinint_area);
366 ccw->cda = (__u32)(unsigned long) thinint_area;
368 /* payload is the address of the indicators */
369 indicatorp = ccw_device_dma_zalloc(vcdev->cdev,
370 sizeof(indicators(vcdev)));
374 ccw->cmd_code = CCW_CMD_SET_IND;
375 ccw->count = sizeof(indicators(vcdev));
376 ccw->cda = (__u32)(unsigned long) indicatorp;
378 /* Deregister indicators from host. */
379 *indicators(vcdev) = 0;
381 ret = ccw_io_helper(vcdev, ccw,
383 VIRTIO_CCW_DOING_SET_IND_ADAPTER :
384 VIRTIO_CCW_DOING_SET_IND);
385 if (ret && (ret != -ENODEV))
386 dev_info(&vcdev->cdev->dev,
387 "Failed to deregister indicators (%d)\n", ret);
388 else if (vcdev->is_thinint)
389 virtio_ccw_drop_indicators(vcdev);
390 ccw_device_dma_free(vcdev->cdev, indicatorp, sizeof(indicators(vcdev)));
391 ccw_device_dma_free(vcdev->cdev, thinint_area, sizeof(*thinint_area));
394 static bool virtio_ccw_kvm_notify(struct virtqueue *vq)
396 struct virtio_ccw_vq_info *info = vq->priv;
397 struct virtio_ccw_device *vcdev;
398 struct subchannel_id schid;
400 vcdev = to_vc_device(info->vq->vdev);
401 ccw_device_get_schid(vcdev->cdev, &schid);
402 BUILD_BUG_ON(sizeof(struct subchannel_id) != sizeof(unsigned int));
403 info->cookie = kvm_hypercall3(KVM_S390_VIRTIO_CCW_NOTIFY,
404 *((unsigned int *)&schid),
405 vq->index, info->cookie);
406 if (info->cookie < 0)
411 static int virtio_ccw_read_vq_conf(struct virtio_ccw_device *vcdev,
412 struct ccw1 *ccw, int index)
416 vcdev->dma_area->config_block.index = index;
417 ccw->cmd_code = CCW_CMD_READ_VQ_CONF;
419 ccw->count = sizeof(struct vq_config_block);
420 ccw->cda = (__u32)(unsigned long)(&vcdev->dma_area->config_block);
421 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_VQ_CONF);
424 return vcdev->dma_area->config_block.num ?: -ENOENT;
427 static void virtio_ccw_del_vq(struct virtqueue *vq, struct ccw1 *ccw)
429 struct virtio_ccw_device *vcdev = to_vc_device(vq->vdev);
430 struct virtio_ccw_vq_info *info = vq->priv;
433 unsigned int index = vq->index;
435 /* Remove from our list. */
436 spin_lock_irqsave(&vcdev->lock, flags);
437 list_del(&info->node);
438 spin_unlock_irqrestore(&vcdev->lock, flags);
440 /* Release from host. */
441 if (vcdev->revision == 0) {
442 info->info_block->l.queue = 0;
443 info->info_block->l.align = 0;
444 info->info_block->l.index = index;
445 info->info_block->l.num = 0;
446 ccw->count = sizeof(info->info_block->l);
448 info->info_block->s.desc = 0;
449 info->info_block->s.index = index;
450 info->info_block->s.num = 0;
451 info->info_block->s.avail = 0;
452 info->info_block->s.used = 0;
453 ccw->count = sizeof(info->info_block->s);
455 ccw->cmd_code = CCW_CMD_SET_VQ;
457 ccw->cda = (__u32)(unsigned long)(info->info_block);
458 ret = ccw_io_helper(vcdev, ccw,
459 VIRTIO_CCW_DOING_SET_VQ | index);
461 * -ENODEV isn't considered an error: The device is gone anyway.
462 * This may happen on device detach.
464 if (ret && (ret != -ENODEV))
465 dev_warn(&vq->vdev->dev, "Error %d while deleting queue %d\n",
468 vring_del_virtqueue(vq);
469 ccw_device_dma_free(vcdev->cdev, info->info_block,
470 sizeof(*info->info_block));
474 static void virtio_ccw_del_vqs(struct virtio_device *vdev)
476 struct virtqueue *vq, *n;
478 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
480 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
484 virtio_ccw_drop_indicator(vcdev, ccw);
486 list_for_each_entry_safe(vq, n, &vdev->vqs, list)
487 virtio_ccw_del_vq(vq, ccw);
489 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
492 static struct virtqueue *virtio_ccw_setup_vq(struct virtio_device *vdev,
493 int i, vq_callback_t *callback,
494 const char *name, bool ctx,
497 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
499 struct virtqueue *vq = NULL;
500 struct virtio_ccw_vq_info *info;
505 /* Allocate queue. */
506 info = kzalloc(sizeof(struct virtio_ccw_vq_info), GFP_KERNEL);
508 dev_warn(&vcdev->cdev->dev, "no info\n");
512 info->info_block = ccw_device_dma_zalloc(vcdev->cdev,
513 sizeof(*info->info_block));
514 if (!info->info_block) {
515 dev_warn(&vcdev->cdev->dev, "no info block\n");
519 info->num = virtio_ccw_read_vq_conf(vcdev, ccw, i);
524 may_reduce = vcdev->revision > 0;
525 vq = vring_create_virtqueue(i, info->num, KVM_VIRTIO_CCW_RING_ALIGN,
526 vdev, true, may_reduce, ctx,
527 virtio_ccw_kvm_notify, callback, name);
530 /* For now, we fail if we can't get the requested size. */
531 dev_warn(&vcdev->cdev->dev, "no vq\n");
535 /* it may have been reduced */
536 info->num = virtqueue_get_vring_size(vq);
538 /* Register it with the host. */
539 queue = virtqueue_get_desc_addr(vq);
540 if (vcdev->revision == 0) {
541 info->info_block->l.queue = queue;
542 info->info_block->l.align = KVM_VIRTIO_CCW_RING_ALIGN;
543 info->info_block->l.index = i;
544 info->info_block->l.num = info->num;
545 ccw->count = sizeof(info->info_block->l);
547 info->info_block->s.desc = queue;
548 info->info_block->s.index = i;
549 info->info_block->s.num = info->num;
550 info->info_block->s.avail = (__u64)virtqueue_get_avail_addr(vq);
551 info->info_block->s.used = (__u64)virtqueue_get_used_addr(vq);
552 ccw->count = sizeof(info->info_block->s);
554 ccw->cmd_code = CCW_CMD_SET_VQ;
556 ccw->cda = (__u32)(unsigned long)(info->info_block);
557 err = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_VQ | i);
559 dev_warn(&vcdev->cdev->dev, "SET_VQ failed\n");
566 /* Save it to our list. */
567 spin_lock_irqsave(&vcdev->lock, flags);
568 list_add(&info->node, &vcdev->virtqueues);
569 spin_unlock_irqrestore(&vcdev->lock, flags);
575 vring_del_virtqueue(vq);
577 ccw_device_dma_free(vcdev->cdev, info->info_block,
578 sizeof(*info->info_block));
584 static int virtio_ccw_register_adapter_ind(struct virtio_ccw_device *vcdev,
585 struct virtqueue *vqs[], int nvqs,
589 struct virtio_thinint_area *thinint_area = NULL;
590 struct airq_info *info;
592 thinint_area = ccw_device_dma_zalloc(vcdev->cdev,
593 sizeof(*thinint_area));
598 /* Try to get an indicator. */
599 thinint_area->indicator = get_airq_indicator(vqs, nvqs,
600 &thinint_area->bit_nr,
602 if (!thinint_area->indicator) {
606 info = vcdev->airq_info;
607 thinint_area->summary_indicator =
608 (unsigned long) get_summary_indicator(info);
609 thinint_area->isc = VIRTIO_AIRQ_ISC;
610 ccw->cmd_code = CCW_CMD_SET_IND_ADAPTER;
611 ccw->flags = CCW_FLAG_SLI;
612 ccw->count = sizeof(*thinint_area);
613 ccw->cda = (__u32)(unsigned long)thinint_area;
614 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_IND_ADAPTER);
616 if (ret == -EOPNOTSUPP) {
618 * The host does not support adapter interrupts
619 * for virtio-ccw, stop trying.
621 virtio_ccw_use_airq = 0;
622 pr_info("Adapter interrupts unsupported on host\n");
624 dev_warn(&vcdev->cdev->dev,
625 "enabling adapter interrupts = %d\n", ret);
626 virtio_ccw_drop_indicators(vcdev);
629 ccw_device_dma_free(vcdev->cdev, thinint_area, sizeof(*thinint_area));
633 static int virtio_ccw_find_vqs(struct virtio_device *vdev, unsigned nvqs,
634 struct virtqueue *vqs[],
635 vq_callback_t *callbacks[],
636 const char * const names[],
638 struct irq_affinity *desc)
640 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
641 unsigned long *indicatorp = NULL;
642 int ret, i, queue_idx = 0;
645 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
649 for (i = 0; i < nvqs; ++i) {
655 vqs[i] = virtio_ccw_setup_vq(vdev, queue_idx++, callbacks[i],
656 names[i], ctx ? ctx[i] : false,
658 if (IS_ERR(vqs[i])) {
659 ret = PTR_ERR(vqs[i]);
666 * We need a data area under 2G to communicate. Our payload is
667 * the address of the indicators.
669 indicatorp = ccw_device_dma_zalloc(vcdev->cdev,
670 sizeof(indicators(vcdev)));
673 *indicatorp = (unsigned long) indicators(vcdev);
674 if (vcdev->is_thinint) {
675 ret = virtio_ccw_register_adapter_ind(vcdev, vqs, nvqs, ccw);
677 /* no error, just fall back to legacy interrupts */
678 vcdev->is_thinint = false;
680 if (!vcdev->is_thinint) {
681 /* Register queue indicators with host. */
682 *indicators(vcdev) = 0;
683 ccw->cmd_code = CCW_CMD_SET_IND;
685 ccw->count = sizeof(indicators(vcdev));
686 ccw->cda = (__u32)(unsigned long) indicatorp;
687 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_IND);
691 /* Register indicators2 with host for config changes */
692 *indicatorp = (unsigned long) indicators2(vcdev);
693 *indicators2(vcdev) = 0;
694 ccw->cmd_code = CCW_CMD_SET_CONF_IND;
696 ccw->count = sizeof(indicators2(vcdev));
697 ccw->cda = (__u32)(unsigned long) indicatorp;
698 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_CONF_IND);
703 ccw_device_dma_free(vcdev->cdev, indicatorp,
704 sizeof(indicators(vcdev)));
705 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
709 ccw_device_dma_free(vcdev->cdev, indicatorp,
710 sizeof(indicators(vcdev)));
711 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
712 virtio_ccw_del_vqs(vdev);
716 static void virtio_ccw_reset(struct virtio_device *vdev)
718 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
721 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
725 /* Zero status bits. */
726 vcdev->dma_area->status = 0;
728 /* Send a reset ccw on device. */
729 ccw->cmd_code = CCW_CMD_VDEV_RESET;
733 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_RESET);
734 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
737 static u64 virtio_ccw_get_features(struct virtio_device *vdev)
739 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
740 struct virtio_feature_desc *features;
745 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
749 features = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*features));
754 /* Read the feature bits from the host. */
756 ccw->cmd_code = CCW_CMD_READ_FEAT;
758 ccw->count = sizeof(*features);
759 ccw->cda = (__u32)(unsigned long)features;
760 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_FEAT);
766 rc = le32_to_cpu(features->features);
768 if (vcdev->revision == 0)
771 /* Read second half of the feature bits from the host. */
773 ccw->cmd_code = CCW_CMD_READ_FEAT;
775 ccw->count = sizeof(*features);
776 ccw->cda = (__u32)(unsigned long)features;
777 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_FEAT);
779 rc |= (u64)le32_to_cpu(features->features) << 32;
782 ccw_device_dma_free(vcdev->cdev, features, sizeof(*features));
783 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
787 static void ccw_transport_features(struct virtio_device *vdev)
790 * Currently nothing to do here.
794 static int virtio_ccw_finalize_features(struct virtio_device *vdev)
796 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
797 struct virtio_feature_desc *features;
801 if (vcdev->revision >= 1 &&
802 !__virtio_test_bit(vdev, VIRTIO_F_VERSION_1)) {
803 dev_err(&vdev->dev, "virtio: device uses revision 1 "
804 "but does not have VIRTIO_F_VERSION_1\n");
808 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
812 features = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*features));
817 /* Give virtio_ring a chance to accept features. */
818 vring_transport_features(vdev);
820 /* Give virtio_ccw a chance to accept features. */
821 ccw_transport_features(vdev);
824 features->features = cpu_to_le32((u32)vdev->features);
825 /* Write the first half of the feature bits to the host. */
826 ccw->cmd_code = CCW_CMD_WRITE_FEAT;
828 ccw->count = sizeof(*features);
829 ccw->cda = (__u32)(unsigned long)features;
830 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_WRITE_FEAT);
834 if (vcdev->revision == 0)
838 features->features = cpu_to_le32(vdev->features >> 32);
839 /* Write the second half of the feature bits to the host. */
840 ccw->cmd_code = CCW_CMD_WRITE_FEAT;
842 ccw->count = sizeof(*features);
843 ccw->cda = (__u32)(unsigned long)features;
844 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_WRITE_FEAT);
847 ccw_device_dma_free(vcdev->cdev, features, sizeof(*features));
848 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
853 static void virtio_ccw_get_config(struct virtio_device *vdev,
854 unsigned int offset, void *buf, unsigned len)
856 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
862 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
866 config_area = ccw_device_dma_zalloc(vcdev->cdev,
867 VIRTIO_CCW_CONFIG_SIZE);
871 /* Read the config area from the host. */
872 ccw->cmd_code = CCW_CMD_READ_CONF;
874 ccw->count = offset + len;
875 ccw->cda = (__u32)(unsigned long)config_area;
876 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_CONFIG);
880 spin_lock_irqsave(&vcdev->lock, flags);
881 memcpy(vcdev->config, config_area, offset + len);
882 if (vcdev->config_ready < offset + len)
883 vcdev->config_ready = offset + len;
884 spin_unlock_irqrestore(&vcdev->lock, flags);
886 memcpy(buf, config_area + offset, len);
889 ccw_device_dma_free(vcdev->cdev, config_area, VIRTIO_CCW_CONFIG_SIZE);
890 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
893 static void virtio_ccw_set_config(struct virtio_device *vdev,
894 unsigned int offset, const void *buf,
897 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
902 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
906 config_area = ccw_device_dma_zalloc(vcdev->cdev,
907 VIRTIO_CCW_CONFIG_SIZE);
911 /* Make sure we don't overwrite fields. */
912 if (vcdev->config_ready < offset)
913 virtio_ccw_get_config(vdev, 0, NULL, offset);
914 spin_lock_irqsave(&vcdev->lock, flags);
915 memcpy(&vcdev->config[offset], buf, len);
916 /* Write the config area to the host. */
917 memcpy(config_area, vcdev->config, sizeof(vcdev->config));
918 spin_unlock_irqrestore(&vcdev->lock, flags);
919 ccw->cmd_code = CCW_CMD_WRITE_CONF;
921 ccw->count = offset + len;
922 ccw->cda = (__u32)(unsigned long)config_area;
923 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_WRITE_CONFIG);
926 ccw_device_dma_free(vcdev->cdev, config_area, VIRTIO_CCW_CONFIG_SIZE);
927 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
930 static u8 virtio_ccw_get_status(struct virtio_device *vdev)
932 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
933 u8 old_status = vcdev->dma_area->status;
936 if (vcdev->revision < 2)
937 return vcdev->dma_area->status;
939 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
943 ccw->cmd_code = CCW_CMD_READ_STATUS;
945 ccw->count = sizeof(vcdev->dma_area->status);
946 ccw->cda = (__u32)(unsigned long)&vcdev->dma_area->status;
947 ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_STATUS);
949 * If the channel program failed (should only happen if the device
950 * was hotunplugged, and then we clean up via the machine check
951 * handler anyway), vcdev->dma_area->status was not overwritten and we just
952 * return the old status, which is fine.
954 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
956 return vcdev->dma_area->status;
959 static void virtio_ccw_set_status(struct virtio_device *vdev, u8 status)
961 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
962 u8 old_status = vcdev->dma_area->status;
966 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
970 /* Write the status to the host. */
971 vcdev->dma_area->status = status;
972 ccw->cmd_code = CCW_CMD_WRITE_STATUS;
974 ccw->count = sizeof(status);
975 ccw->cda = (__u32)(unsigned long)&vcdev->dma_area->status;
976 /* We use ssch for setting the status which is a serializing
977 * instruction that guarantees the memory writes have
978 * completed before ssch.
980 ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_WRITE_STATUS);
981 /* Write failed? We assume status is unchanged. */
983 vcdev->dma_area->status = old_status;
984 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
987 static const char *virtio_ccw_bus_name(struct virtio_device *vdev)
989 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
991 return dev_name(&vcdev->cdev->dev);
994 static void virtio_ccw_synchronize_cbs(struct virtio_device *vdev)
996 struct virtio_ccw_device *vcdev = to_vc_device(vdev);
997 struct airq_info *info = vcdev->airq_info;
1001 * This device uses adapter interrupts: synchronize with
1002 * vring_interrupt() called by virtio_airq_handler()
1003 * via the indicator area lock.
1005 write_lock_irq(&info->lock);
1006 write_unlock_irq(&info->lock);
1008 /* This device uses classic interrupts: synchronize
1009 * with vring_interrupt() called by
1010 * virtio_ccw_int_handler() via the per-device
1013 write_lock_irq(&vcdev->irq_lock);
1014 write_unlock_irq(&vcdev->irq_lock);
1018 static const struct virtio_config_ops virtio_ccw_config_ops = {
1019 .get_features = virtio_ccw_get_features,
1020 .finalize_features = virtio_ccw_finalize_features,
1021 .get = virtio_ccw_get_config,
1022 .set = virtio_ccw_set_config,
1023 .get_status = virtio_ccw_get_status,
1024 .set_status = virtio_ccw_set_status,
1025 .reset = virtio_ccw_reset,
1026 .find_vqs = virtio_ccw_find_vqs,
1027 .del_vqs = virtio_ccw_del_vqs,
1028 .bus_name = virtio_ccw_bus_name,
1029 .synchronize_cbs = virtio_ccw_synchronize_cbs,
1034 * ccw bus driver related functions
1037 static void virtio_ccw_release_dev(struct device *_d)
1039 struct virtio_device *dev = dev_to_virtio(_d);
1040 struct virtio_ccw_device *vcdev = to_vc_device(dev);
1042 ccw_device_dma_free(vcdev->cdev, vcdev->dma_area,
1043 sizeof(*vcdev->dma_area));
1047 static int irb_is_error(struct irb *irb)
1049 if (scsw_cstat(&irb->scsw) != 0)
1051 if (scsw_dstat(&irb->scsw) & ~(DEV_STAT_CHN_END | DEV_STAT_DEV_END))
1053 if (scsw_cc(&irb->scsw) != 0)
1058 static struct virtqueue *virtio_ccw_vq_by_ind(struct virtio_ccw_device *vcdev,
1061 struct virtio_ccw_vq_info *info;
1062 unsigned long flags;
1063 struct virtqueue *vq;
1066 spin_lock_irqsave(&vcdev->lock, flags);
1067 list_for_each_entry(info, &vcdev->virtqueues, node) {
1068 if (info->vq->index == index) {
1073 spin_unlock_irqrestore(&vcdev->lock, flags);
1077 static void virtio_ccw_check_activity(struct virtio_ccw_device *vcdev,
1080 if (vcdev->curr_io & activity) {
1082 case VIRTIO_CCW_DOING_READ_FEAT:
1083 case VIRTIO_CCW_DOING_WRITE_FEAT:
1084 case VIRTIO_CCW_DOING_READ_CONFIG:
1085 case VIRTIO_CCW_DOING_WRITE_CONFIG:
1086 case VIRTIO_CCW_DOING_WRITE_STATUS:
1087 case VIRTIO_CCW_DOING_READ_STATUS:
1088 case VIRTIO_CCW_DOING_SET_VQ:
1089 case VIRTIO_CCW_DOING_SET_IND:
1090 case VIRTIO_CCW_DOING_SET_CONF_IND:
1091 case VIRTIO_CCW_DOING_RESET:
1092 case VIRTIO_CCW_DOING_READ_VQ_CONF:
1093 case VIRTIO_CCW_DOING_SET_IND_ADAPTER:
1094 case VIRTIO_CCW_DOING_SET_VIRTIO_REV:
1095 vcdev->curr_io &= ~activity;
1096 wake_up(&vcdev->wait_q);
1099 /* don't know what to do... */
1100 dev_warn(&vcdev->cdev->dev,
1101 "Suspicious activity '%08x'\n", activity);
1108 static void virtio_ccw_int_handler(struct ccw_device *cdev,
1109 unsigned long intparm,
1112 __u32 activity = intparm & VIRTIO_CCW_INTPARM_MASK;
1113 struct virtio_ccw_device *vcdev = dev_get_drvdata(&cdev->dev);
1115 struct virtqueue *vq;
1120 vcdev->err = PTR_ERR(irb);
1121 virtio_ccw_check_activity(vcdev, activity);
1122 /* Don't poke around indicators, something's wrong. */
1125 /* Check if it's a notification from the host. */
1126 if ((intparm == 0) &&
1127 (scsw_stctl(&irb->scsw) ==
1128 (SCSW_STCTL_ALERT_STATUS | SCSW_STCTL_STATUS_PEND))) {
1131 if (irb_is_error(irb)) {
1132 /* Command reject? */
1133 if ((scsw_dstat(&irb->scsw) & DEV_STAT_UNIT_CHECK) &&
1134 (irb->ecw[0] & SNS0_CMD_REJECT))
1135 vcdev->err = -EOPNOTSUPP;
1137 /* Map everything else to -EIO. */
1140 virtio_ccw_check_activity(vcdev, activity);
1141 #ifdef CONFIG_VIRTIO_HARDEN_NOTIFICATION
1143 * Paired with virtio_ccw_synchronize_cbs() and interrupts are
1146 read_lock(&vcdev->irq_lock);
1148 for_each_set_bit(i, indicators(vcdev),
1149 sizeof(*indicators(vcdev)) * BITS_PER_BYTE) {
1150 /* The bit clear must happen before the vring kick. */
1151 clear_bit(i, indicators(vcdev));
1153 vq = virtio_ccw_vq_by_ind(vcdev, i);
1154 vring_interrupt(0, vq);
1156 #ifdef CONFIG_VIRTIO_HARDEN_NOTIFICATION
1157 read_unlock(&vcdev->irq_lock);
1159 if (test_bit(0, indicators2(vcdev))) {
1160 virtio_config_changed(&vcdev->vdev);
1161 clear_bit(0, indicators2(vcdev));
1166 * We usually want to autoonline all devices, but give the admin
1167 * a way to exempt devices from this.
1169 #define __DEV_WORDS ((__MAX_SUBCHANNEL + (8*sizeof(long) - 1)) / \
1171 static unsigned long devs_no_auto[__MAX_SSID + 1][__DEV_WORDS];
1173 static char *no_auto = "";
1175 module_param(no_auto, charp, 0444);
1176 MODULE_PARM_DESC(no_auto, "list of ccw bus id ranges not to be auto-onlined");
1178 static int virtio_ccw_check_autoonline(struct ccw_device *cdev)
1180 struct ccw_dev_id id;
1182 ccw_device_get_id(cdev, &id);
1183 if (test_bit(id.devno, devs_no_auto[id.ssid]))
1188 static void virtio_ccw_auto_online(void *data, async_cookie_t cookie)
1190 struct ccw_device *cdev = data;
1193 ret = ccw_device_set_online(cdev);
1195 dev_warn(&cdev->dev, "Failed to set online: %d\n", ret);
1198 static int virtio_ccw_probe(struct ccw_device *cdev)
1200 cdev->handler = virtio_ccw_int_handler;
1202 if (virtio_ccw_check_autoonline(cdev))
1203 async_schedule(virtio_ccw_auto_online, cdev);
1207 static struct virtio_ccw_device *virtio_grab_drvdata(struct ccw_device *cdev)
1209 unsigned long flags;
1210 struct virtio_ccw_device *vcdev;
1212 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1213 vcdev = dev_get_drvdata(&cdev->dev);
1214 if (!vcdev || vcdev->going_away) {
1215 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1218 vcdev->going_away = true;
1219 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1223 static void virtio_ccw_remove(struct ccw_device *cdev)
1225 unsigned long flags;
1226 struct virtio_ccw_device *vcdev = virtio_grab_drvdata(cdev);
1228 if (vcdev && cdev->online) {
1229 if (vcdev->device_lost)
1230 virtio_break_device(&vcdev->vdev);
1231 unregister_virtio_device(&vcdev->vdev);
1232 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1233 dev_set_drvdata(&cdev->dev, NULL);
1234 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1236 cdev->handler = NULL;
1239 static int virtio_ccw_offline(struct ccw_device *cdev)
1241 unsigned long flags;
1242 struct virtio_ccw_device *vcdev = virtio_grab_drvdata(cdev);
1246 if (vcdev->device_lost)
1247 virtio_break_device(&vcdev->vdev);
1248 unregister_virtio_device(&vcdev->vdev);
1249 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1250 dev_set_drvdata(&cdev->dev, NULL);
1251 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1255 static int virtio_ccw_set_transport_rev(struct virtio_ccw_device *vcdev)
1257 struct virtio_rev_info *rev;
1261 ccw = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*ccw));
1264 rev = ccw_device_dma_zalloc(vcdev->cdev, sizeof(*rev));
1266 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
1270 /* Set transport revision */
1271 ccw->cmd_code = CCW_CMD_SET_VIRTIO_REV;
1273 ccw->count = sizeof(*rev);
1274 ccw->cda = (__u32)(unsigned long)rev;
1276 vcdev->revision = VIRTIO_CCW_REV_MAX;
1278 rev->revision = vcdev->revision;
1279 /* none of our supported revisions carry payload */
1281 ret = ccw_io_helper(vcdev, ccw,
1282 VIRTIO_CCW_DOING_SET_VIRTIO_REV);
1283 if (ret == -EOPNOTSUPP) {
1284 if (vcdev->revision == 0)
1286 * The host device does not support setting
1287 * the revision: let's operate it in legacy
1294 } while (ret == -EOPNOTSUPP);
1296 ccw_device_dma_free(vcdev->cdev, ccw, sizeof(*ccw));
1297 ccw_device_dma_free(vcdev->cdev, rev, sizeof(*rev));
1301 static int virtio_ccw_online(struct ccw_device *cdev)
1304 struct virtio_ccw_device *vcdev;
1305 unsigned long flags;
1307 vcdev = kzalloc(sizeof(*vcdev), GFP_KERNEL);
1309 dev_warn(&cdev->dev, "Could not get memory for virtio\n");
1313 vcdev->vdev.dev.parent = &cdev->dev;
1315 vcdev->dma_area = ccw_device_dma_zalloc(vcdev->cdev,
1316 sizeof(*vcdev->dma_area));
1317 if (!vcdev->dma_area) {
1322 vcdev->is_thinint = virtio_ccw_use_airq; /* at least try */
1324 vcdev->vdev.dev.release = virtio_ccw_release_dev;
1325 vcdev->vdev.config = &virtio_ccw_config_ops;
1326 init_waitqueue_head(&vcdev->wait_q);
1327 INIT_LIST_HEAD(&vcdev->virtqueues);
1328 spin_lock_init(&vcdev->lock);
1329 rwlock_init(&vcdev->irq_lock);
1330 mutex_init(&vcdev->io_lock);
1332 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1333 dev_set_drvdata(&cdev->dev, vcdev);
1334 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1335 vcdev->vdev.id.vendor = cdev->id.cu_type;
1336 vcdev->vdev.id.device = cdev->id.cu_model;
1338 ret = virtio_ccw_set_transport_rev(vcdev);
1342 ret = register_virtio_device(&vcdev->vdev);
1344 dev_warn(&cdev->dev, "Failed to register virtio device: %d\n",
1350 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
1351 dev_set_drvdata(&cdev->dev, NULL);
1352 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
1353 put_device(&vcdev->vdev.dev);
1357 ccw_device_dma_free(vcdev->cdev, vcdev->dma_area,
1358 sizeof(*vcdev->dma_area));
1364 static int virtio_ccw_cio_notify(struct ccw_device *cdev, int event)
1367 struct virtio_ccw_device *vcdev = dev_get_drvdata(&cdev->dev);
1370 * Make sure vcdev is set
1371 * i.e. set_offline/remove callback not already running
1378 vcdev->device_lost = true;
1391 static struct ccw_device_id virtio_ids[] = {
1392 { CCW_DEVICE(0x3832, 0) },
1396 static struct ccw_driver virtio_ccw_driver = {
1398 .owner = THIS_MODULE,
1399 .name = "virtio_ccw",
1402 .probe = virtio_ccw_probe,
1403 .remove = virtio_ccw_remove,
1404 .set_offline = virtio_ccw_offline,
1405 .set_online = virtio_ccw_online,
1406 .notify = virtio_ccw_cio_notify,
1407 .int_class = IRQIO_VIR,
1410 static int __init pure_hex(char **cp, unsigned int *val, int min_digit,
1411 int max_digit, int max_val)
1418 while (diff <= max_digit) {
1419 int value = hex_to_bin(**cp);
1423 *val = *val * 16 + value;
1428 if ((diff < min_digit) || (diff > max_digit) || (*val > max_val))
1434 static int __init parse_busid(char *str, unsigned int *cssid,
1435 unsigned int *ssid, unsigned int *devno)
1446 ret = pure_hex(&str_work, cssid, 1, 2, __MAX_CSSID);
1447 if (ret || (str_work[0] != '.'))
1450 ret = pure_hex(&str_work, ssid, 1, 1, __MAX_SSID);
1451 if (ret || (str_work[0] != '.'))
1454 ret = pure_hex(&str_work, devno, 4, 4, __MAX_SUBCHANNEL);
1455 if (ret || (str_work[0] != '\0'))
1463 static void __init no_auto_parse(void)
1465 unsigned int from_cssid, to_cssid, from_ssid, to_ssid, from, to;
1470 while ((parm = strsep(&str, ","))) {
1471 rc = parse_busid(strsep(&parm, "-"), &from_cssid,
1476 rc = parse_busid(parm, &to_cssid,
1478 if ((from_ssid > to_ssid) ||
1479 ((from_ssid == to_ssid) && (from > to)))
1482 to_cssid = from_cssid;
1483 to_ssid = from_ssid;
1488 while ((from_ssid < to_ssid) ||
1489 ((from_ssid == to_ssid) && (from <= to))) {
1490 set_bit(from, devs_no_auto[from_ssid]);
1492 if (from > __MAX_SUBCHANNEL) {
1500 static int __init virtio_ccw_init(void)
1504 /* parse no_auto string before we do anything further */
1507 summary_indicators = cio_dma_zalloc(MAX_AIRQ_AREAS);
1508 if (!summary_indicators)
1510 rc = ccw_driver_register(&virtio_ccw_driver);
1512 cio_dma_free(summary_indicators, MAX_AIRQ_AREAS);
1515 device_initcall(virtio_ccw_init);