Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 1 | /* |
| 2 | * VFIO based Physical Subchannel device driver |
| 3 | * |
| 4 | * Copyright IBM Corp. 2017 |
| 5 | * |
| 6 | * Author(s): Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com> |
| 7 | * Xiao Feng Ren <renxiaof@linux.vnet.ibm.com> |
| 8 | */ |
| 9 | |
| 10 | #include <linux/module.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/device.h> |
| 13 | #include <linux/slab.h> |
Dong Jia Shi | 4e149e4 | 2017-03-17 04:17:35 +0100 | [diff] [blame] | 14 | #include <linux/uuid.h> |
| 15 | #include <linux/mdev.h> |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 16 | |
| 17 | #include <asm/isc.h> |
| 18 | |
Dong Jia Shi | 4e149e4 | 2017-03-17 04:17:35 +0100 | [diff] [blame] | 19 | #include "ioasm.h" |
| 20 | #include "css.h" |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 21 | #include "vfio_ccw_private.h" |
| 22 | |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 23 | struct workqueue_struct *vfio_ccw_work_q; |
| 24 | |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 25 | /* |
| 26 | * Helpers |
| 27 | */ |
Dong Jia Shi | 84cd8fc | 2017-03-17 04:17:33 +0100 | [diff] [blame] | 28 | int vfio_ccw_sch_quiesce(struct subchannel *sch) |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 29 | { |
| 30 | struct vfio_ccw_private *private = dev_get_drvdata(&sch->dev); |
| 31 | DECLARE_COMPLETION_ONSTACK(completion); |
| 32 | int iretry, ret = 0; |
| 33 | |
| 34 | spin_lock_irq(sch->lock); |
| 35 | if (!sch->schib.pmcw.ena) |
| 36 | goto out_unlock; |
| 37 | ret = cio_disable_subchannel(sch); |
| 38 | if (ret != -EBUSY) |
| 39 | goto out_unlock; |
| 40 | |
| 41 | do { |
| 42 | iretry = 255; |
| 43 | |
| 44 | ret = cio_cancel_halt_clear(sch, &iretry); |
| 45 | while (ret == -EBUSY) { |
| 46 | /* |
| 47 | * Flush all I/O and wait for |
| 48 | * cancel/halt/clear completion. |
| 49 | */ |
| 50 | private->completion = &completion; |
| 51 | spin_unlock_irq(sch->lock); |
| 52 | |
| 53 | wait_for_completion_timeout(&completion, 3*HZ); |
| 54 | |
| 55 | spin_lock_irq(sch->lock); |
| 56 | private->completion = NULL; |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 57 | flush_workqueue(vfio_ccw_work_q); |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 58 | ret = cio_cancel_halt_clear(sch, &iretry); |
| 59 | }; |
| 60 | |
| 61 | ret = cio_disable_subchannel(sch); |
| 62 | } while (ret == -EBUSY); |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 63 | out_unlock: |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 64 | private->state = VFIO_CCW_STATE_NOT_OPER; |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 65 | spin_unlock_irq(sch->lock); |
| 66 | return ret; |
| 67 | } |
| 68 | |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 69 | static void vfio_ccw_sch_io_todo(struct work_struct *work) |
| 70 | { |
| 71 | struct vfio_ccw_private *private; |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 72 | struct irb *irb; |
Dong Jia Shi | 4e149e4 | 2017-03-17 04:17:35 +0100 | [diff] [blame] | 73 | |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 74 | private = container_of(work, struct vfio_ccw_private, io_work); |
| 75 | irb = &private->irb; |
Dong Jia Shi | 4e149e4 | 2017-03-17 04:17:35 +0100 | [diff] [blame] | 76 | |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 77 | if (scsw_is_solicited(&irb->scsw)) { |
| 78 | cp_update_scsw(&private->cp, &irb->scsw); |
| 79 | cp_free(&private->cp); |
| 80 | } |
| 81 | memcpy(private->io_region.irb_area, irb, sizeof(*irb)); |
| 82 | |
| 83 | if (private->io_trigger) |
| 84 | eventfd_signal(private->io_trigger, 1); |
Dong Jia Shi | 4e149e4 | 2017-03-17 04:17:35 +0100 | [diff] [blame] | 85 | |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 86 | if (private->mdev) |
| 87 | private->state = VFIO_CCW_STATE_IDLE; |
Dong Jia Shi | 4e149e4 | 2017-03-17 04:17:35 +0100 | [diff] [blame] | 88 | } |
| 89 | |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 90 | /* |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 91 | * Css driver callbacks |
| 92 | */ |
| 93 | static void vfio_ccw_sch_irq(struct subchannel *sch) |
| 94 | { |
| 95 | struct vfio_ccw_private *private = dev_get_drvdata(&sch->dev); |
| 96 | |
| 97 | inc_irq_stat(IRQIO_CIO); |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 98 | vfio_ccw_fsm_event(private, VFIO_CCW_EVENT_INTERRUPT); |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | static int vfio_ccw_sch_probe(struct subchannel *sch) |
| 102 | { |
| 103 | struct pmcw *pmcw = &sch->schib.pmcw; |
| 104 | struct vfio_ccw_private *private; |
| 105 | int ret; |
| 106 | |
| 107 | if (pmcw->qf) { |
| 108 | dev_warn(&sch->dev, "vfio: ccw: does not support QDIO: %s\n", |
| 109 | dev_name(&sch->dev)); |
| 110 | return -ENODEV; |
| 111 | } |
| 112 | |
| 113 | private = kzalloc(sizeof(*private), GFP_KERNEL | GFP_DMA); |
| 114 | if (!private) |
| 115 | return -ENOMEM; |
| 116 | private->sch = sch; |
| 117 | dev_set_drvdata(&sch->dev, private); |
| 118 | |
| 119 | spin_lock_irq(sch->lock); |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 120 | private->state = VFIO_CCW_STATE_NOT_OPER; |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 121 | sch->isc = VFIO_CCW_ISC; |
| 122 | ret = cio_enable_subchannel(sch, (u32)(unsigned long)sch); |
| 123 | spin_unlock_irq(sch->lock); |
| 124 | if (ret) |
| 125 | goto out_free; |
| 126 | |
Dong Jia Shi | 84cd8fc | 2017-03-17 04:17:33 +0100 | [diff] [blame] | 127 | ret = vfio_ccw_mdev_reg(sch); |
| 128 | if (ret) |
Sebastian Ott | 36f6237 | 2017-05-15 15:49:07 +0200 | [diff] [blame] | 129 | goto out_disable; |
Dong Jia Shi | 84cd8fc | 2017-03-17 04:17:33 +0100 | [diff] [blame] | 130 | |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 131 | INIT_WORK(&private->io_work, vfio_ccw_sch_io_todo); |
Dong Jia Shi | 84cd8fc | 2017-03-17 04:17:33 +0100 | [diff] [blame] | 132 | atomic_set(&private->avail, 1); |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 133 | private->state = VFIO_CCW_STATE_STANDBY; |
Dong Jia Shi | 84cd8fc | 2017-03-17 04:17:33 +0100 | [diff] [blame] | 134 | |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 135 | return 0; |
| 136 | |
| 137 | out_disable: |
| 138 | cio_disable_subchannel(sch); |
| 139 | out_free: |
| 140 | dev_set_drvdata(&sch->dev, NULL); |
| 141 | kfree(private); |
| 142 | return ret; |
| 143 | } |
| 144 | |
| 145 | static int vfio_ccw_sch_remove(struct subchannel *sch) |
| 146 | { |
| 147 | struct vfio_ccw_private *private = dev_get_drvdata(&sch->dev); |
| 148 | |
| 149 | vfio_ccw_sch_quiesce(sch); |
| 150 | |
Dong Jia Shi | 84cd8fc | 2017-03-17 04:17:33 +0100 | [diff] [blame] | 151 | vfio_ccw_mdev_unreg(sch); |
| 152 | |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 153 | dev_set_drvdata(&sch->dev, NULL); |
| 154 | |
| 155 | kfree(private); |
| 156 | |
| 157 | return 0; |
| 158 | } |
| 159 | |
| 160 | static void vfio_ccw_sch_shutdown(struct subchannel *sch) |
| 161 | { |
| 162 | vfio_ccw_sch_quiesce(sch); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * vfio_ccw_sch_event - process subchannel event |
| 167 | * @sch: subchannel |
| 168 | * @process: non-zero if function is called in process context |
| 169 | * |
| 170 | * An unspecified event occurred for this subchannel. Adjust data according |
| 171 | * to the current operational state of the subchannel. Return zero when the |
| 172 | * event has been handled sufficiently or -EAGAIN when this function should |
| 173 | * be called again in process context. |
| 174 | */ |
| 175 | static int vfio_ccw_sch_event(struct subchannel *sch, int process) |
| 176 | { |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 177 | struct vfio_ccw_private *private = dev_get_drvdata(&sch->dev); |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 178 | unsigned long flags; |
| 179 | |
| 180 | spin_lock_irqsave(sch->lock, flags); |
| 181 | if (!device_is_registered(&sch->dev)) |
| 182 | goto out_unlock; |
| 183 | |
| 184 | if (work_pending(&sch->todo_work)) |
| 185 | goto out_unlock; |
| 186 | |
| 187 | if (cio_update_schib(sch)) { |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 188 | vfio_ccw_fsm_event(private, VFIO_CCW_EVENT_NOT_OPER); |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 189 | goto out_unlock; |
| 190 | } |
| 191 | |
Dong Jia Shi | bbe37e4 | 2017-03-17 04:17:40 +0100 | [diff] [blame] | 192 | private = dev_get_drvdata(&sch->dev); |
| 193 | if (private->state == VFIO_CCW_STATE_NOT_OPER) { |
| 194 | private->state = private->mdev ? VFIO_CCW_STATE_IDLE : |
| 195 | VFIO_CCW_STATE_STANDBY; |
| 196 | } |
| 197 | |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 198 | out_unlock: |
| 199 | spin_unlock_irqrestore(sch->lock, flags); |
| 200 | |
| 201 | return 0; |
| 202 | } |
| 203 | |
| 204 | static struct css_device_id vfio_ccw_sch_ids[] = { |
| 205 | { .match_flags = 0x1, .type = SUBCHANNEL_TYPE_IO, }, |
| 206 | { /* end of list */ }, |
| 207 | }; |
| 208 | MODULE_DEVICE_TABLE(css, vfio_ccw_sch_ids); |
| 209 | |
| 210 | static struct css_driver vfio_ccw_sch_driver = { |
| 211 | .drv = { |
| 212 | .name = "vfio_ccw", |
| 213 | .owner = THIS_MODULE, |
| 214 | }, |
| 215 | .subchannel_type = vfio_ccw_sch_ids, |
| 216 | .irq = vfio_ccw_sch_irq, |
| 217 | .probe = vfio_ccw_sch_probe, |
| 218 | .remove = vfio_ccw_sch_remove, |
| 219 | .shutdown = vfio_ccw_sch_shutdown, |
| 220 | .sch_event = vfio_ccw_sch_event, |
| 221 | }; |
| 222 | |
| 223 | static int __init vfio_ccw_sch_init(void) |
| 224 | { |
| 225 | int ret; |
| 226 | |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 227 | vfio_ccw_work_q = create_singlethread_workqueue("vfio-ccw"); |
| 228 | if (!vfio_ccw_work_q) |
| 229 | return -ENOMEM; |
| 230 | |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 231 | isc_register(VFIO_CCW_ISC); |
| 232 | ret = css_driver_register(&vfio_ccw_sch_driver); |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 233 | if (ret) { |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 234 | isc_unregister(VFIO_CCW_ISC); |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 235 | destroy_workqueue(vfio_ccw_work_q); |
| 236 | } |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 237 | |
| 238 | return ret; |
| 239 | } |
| 240 | |
| 241 | static void __exit vfio_ccw_sch_exit(void) |
| 242 | { |
| 243 | css_driver_unregister(&vfio_ccw_sch_driver); |
| 244 | isc_unregister(VFIO_CCW_ISC); |
Dong Jia Shi | e5f84db | 2017-03-17 04:17:39 +0100 | [diff] [blame] | 245 | destroy_workqueue(vfio_ccw_work_q); |
Dong Jia Shi | 63f1934 | 2017-03-17 04:17:31 +0100 | [diff] [blame] | 246 | } |
| 247 | module_init(vfio_ccw_sch_init); |
| 248 | module_exit(vfio_ccw_sch_exit); |
| 249 | |
| 250 | MODULE_LICENSE("GPL v2"); |