1 // SPDX-License-Identifier: GPL-2.0
3 * Physical device callbacks for vfio_ccw
5 * Copyright IBM Corp. 2017
7 * Author(s): Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
8 * Xiao Feng Ren <renxiaof@linux.vnet.ibm.com>
11 #include <linux/vfio.h>
12 #include <linux/mdev.h>
14 #include "vfio_ccw_private.h"
16 static int vfio_ccw_mdev_reset(struct mdev_device
*mdev
)
18 struct vfio_ccw_private
*private;
19 struct subchannel
*sch
;
22 private = dev_get_drvdata(mdev_parent_dev(mdev
));
26 * In the cureent stage, some things like "no I/O running" and "no
27 * interrupt pending" are clear, but we are not sure what other state
28 * we need to care about.
29 * There are still a lot more instructions need to be handled. We
30 * should come back here later.
32 ret
= vfio_ccw_sch_quiesce(sch
);
36 ret
= cio_enable_subchannel(sch
, (u32
)(unsigned long)sch
);
38 private->state
= VFIO_CCW_STATE_IDLE
;
43 static int vfio_ccw_mdev_notifier(struct notifier_block
*nb
,
47 struct vfio_ccw_private
*private =
48 container_of(nb
, struct vfio_ccw_private
, nb
);
51 * Vendor drivers MUST unpin pages in response to an
54 if (action
== VFIO_IOMMU_NOTIFY_DMA_UNMAP
) {
55 struct vfio_iommu_type1_dma_unmap
*unmap
= data
;
57 if (!cp_iova_pinned(&private->cp
, unmap
->iova
))
60 if (vfio_ccw_mdev_reset(private->mdev
))
63 cp_free(&private->cp
);
70 static ssize_t
name_show(struct kobject
*kobj
, struct device
*dev
, char *buf
)
72 return sprintf(buf
, "I/O subchannel (Non-QDIO)\n");
74 static MDEV_TYPE_ATTR_RO(name
);
76 static ssize_t
device_api_show(struct kobject
*kobj
, struct device
*dev
,
79 return sprintf(buf
, "%s\n", VFIO_DEVICE_API_CCW_STRING
);
81 static MDEV_TYPE_ATTR_RO(device_api
);
83 static ssize_t
available_instances_show(struct kobject
*kobj
,
84 struct device
*dev
, char *buf
)
86 struct vfio_ccw_private
*private = dev_get_drvdata(dev
);
88 return sprintf(buf
, "%d\n", atomic_read(&private->avail
));
90 static MDEV_TYPE_ATTR_RO(available_instances
);
92 static struct attribute
*mdev_types_attrs
[] = {
93 &mdev_type_attr_name
.attr
,
94 &mdev_type_attr_device_api
.attr
,
95 &mdev_type_attr_available_instances
.attr
,
99 static struct attribute_group mdev_type_group
= {
101 .attrs
= mdev_types_attrs
,
104 static struct attribute_group
*mdev_type_groups
[] = {
109 static int vfio_ccw_mdev_create(struct kobject
*kobj
, struct mdev_device
*mdev
)
111 struct vfio_ccw_private
*private =
112 dev_get_drvdata(mdev_parent_dev(mdev
));
114 if (private->state
== VFIO_CCW_STATE_NOT_OPER
)
117 if (atomic_dec_if_positive(&private->avail
) < 0)
120 private->mdev
= mdev
;
121 private->state
= VFIO_CCW_STATE_IDLE
;
126 static int vfio_ccw_mdev_remove(struct mdev_device
*mdev
)
128 struct vfio_ccw_private
*private =
129 dev_get_drvdata(mdev_parent_dev(mdev
));
131 if ((private->state
!= VFIO_CCW_STATE_NOT_OPER
) &&
132 (private->state
!= VFIO_CCW_STATE_STANDBY
)) {
133 if (!vfio_ccw_sch_quiesce(private->sch
))
134 private->state
= VFIO_CCW_STATE_STANDBY
;
135 /* The state will be NOT_OPER on error. */
138 cp_free(&private->cp
);
139 private->mdev
= NULL
;
140 atomic_inc(&private->avail
);
145 static int vfio_ccw_mdev_open(struct mdev_device
*mdev
)
147 struct vfio_ccw_private
*private =
148 dev_get_drvdata(mdev_parent_dev(mdev
));
149 unsigned long events
= VFIO_IOMMU_NOTIFY_DMA_UNMAP
;
151 private->nb
.notifier_call
= vfio_ccw_mdev_notifier
;
153 return vfio_register_notifier(mdev_dev(mdev
), VFIO_IOMMU_NOTIFY
,
154 &events
, &private->nb
);
157 static void vfio_ccw_mdev_release(struct mdev_device
*mdev
)
159 struct vfio_ccw_private
*private =
160 dev_get_drvdata(mdev_parent_dev(mdev
));
162 if ((private->state
!= VFIO_CCW_STATE_NOT_OPER
) &&
163 (private->state
!= VFIO_CCW_STATE_STANDBY
)) {
164 if (!vfio_ccw_mdev_reset(mdev
))
165 private->state
= VFIO_CCW_STATE_STANDBY
;
166 /* The state will be NOT_OPER on error. */
169 cp_free(&private->cp
);
170 vfio_unregister_notifier(mdev_dev(mdev
), VFIO_IOMMU_NOTIFY
,
174 static ssize_t
vfio_ccw_mdev_read(struct mdev_device
*mdev
,
179 struct vfio_ccw_private
*private;
180 struct ccw_io_region
*region
;
182 if (*ppos
+ count
> sizeof(*region
))
185 private = dev_get_drvdata(mdev_parent_dev(mdev
));
186 region
= private->io_region
;
187 if (copy_to_user(buf
, (void *)region
+ *ppos
, count
))
193 static ssize_t
vfio_ccw_mdev_write(struct mdev_device
*mdev
,
194 const char __user
*buf
,
198 struct vfio_ccw_private
*private;
199 struct ccw_io_region
*region
;
201 if (*ppos
+ count
> sizeof(*region
))
204 private = dev_get_drvdata(mdev_parent_dev(mdev
));
205 if (private->state
!= VFIO_CCW_STATE_IDLE
)
208 region
= private->io_region
;
209 if (copy_from_user((void *)region
+ *ppos
, buf
, count
))
212 vfio_ccw_fsm_event(private, VFIO_CCW_EVENT_IO_REQ
);
213 if (region
->ret_code
!= 0) {
214 private->state
= VFIO_CCW_STATE_IDLE
;
215 return region
->ret_code
;
221 static int vfio_ccw_mdev_get_device_info(struct vfio_device_info
*info
)
223 info
->flags
= VFIO_DEVICE_FLAGS_CCW
| VFIO_DEVICE_FLAGS_RESET
;
224 info
->num_regions
= VFIO_CCW_NUM_REGIONS
;
225 info
->num_irqs
= VFIO_CCW_NUM_IRQS
;
230 static int vfio_ccw_mdev_get_region_info(struct vfio_region_info
*info
,
234 switch (info
->index
) {
235 case VFIO_CCW_CONFIG_REGION_INDEX
:
237 info
->size
= sizeof(struct ccw_io_region
);
238 info
->flags
= VFIO_REGION_INFO_FLAG_READ
239 | VFIO_REGION_INFO_FLAG_WRITE
;
246 static int vfio_ccw_mdev_get_irq_info(struct vfio_irq_info
*info
)
248 if (info
->index
!= VFIO_CCW_IO_IRQ_INDEX
)
252 info
->flags
= VFIO_IRQ_INFO_EVENTFD
;
257 static int vfio_ccw_mdev_set_irqs(struct mdev_device
*mdev
,
261 struct vfio_ccw_private
*private;
262 struct eventfd_ctx
**ctx
;
264 if (!(flags
& VFIO_IRQ_SET_ACTION_TRIGGER
))
267 private = dev_get_drvdata(mdev_parent_dev(mdev
));
268 ctx
= &private->io_trigger
;
270 switch (flags
& VFIO_IRQ_SET_DATA_TYPE_MASK
) {
271 case VFIO_IRQ_SET_DATA_NONE
:
274 eventfd_signal(*ctx
, 1);
277 case VFIO_IRQ_SET_DATA_BOOL
:
281 if (get_user(trigger
, (uint8_t __user
*)data
))
285 eventfd_signal(*ctx
, 1);
288 case VFIO_IRQ_SET_DATA_EVENTFD
:
292 if (get_user(fd
, (int32_t __user
*)data
))
297 eventfd_ctx_put(*ctx
);
299 } else if (fd
>= 0) {
300 struct eventfd_ctx
*efdctx
;
302 efdctx
= eventfd_ctx_fdget(fd
);
304 return PTR_ERR(efdctx
);
307 eventfd_ctx_put(*ctx
);
320 static ssize_t
vfio_ccw_mdev_ioctl(struct mdev_device
*mdev
,
328 case VFIO_DEVICE_GET_INFO
:
330 struct vfio_device_info info
;
332 minsz
= offsetofend(struct vfio_device_info
, num_irqs
);
334 if (copy_from_user(&info
, (void __user
*)arg
, minsz
))
337 if (info
.argsz
< minsz
)
340 ret
= vfio_ccw_mdev_get_device_info(&info
);
344 return copy_to_user((void __user
*)arg
, &info
, minsz
);
346 case VFIO_DEVICE_GET_REGION_INFO
:
348 struct vfio_region_info info
;
350 void *cap_type
= NULL
;
352 minsz
= offsetofend(struct vfio_region_info
, offset
);
354 if (copy_from_user(&info
, (void __user
*)arg
, minsz
))
357 if (info
.argsz
< minsz
)
360 ret
= vfio_ccw_mdev_get_region_info(&info
, &cap_type_id
,
365 return copy_to_user((void __user
*)arg
, &info
, minsz
);
367 case VFIO_DEVICE_GET_IRQ_INFO
:
369 struct vfio_irq_info info
;
371 minsz
= offsetofend(struct vfio_irq_info
, count
);
373 if (copy_from_user(&info
, (void __user
*)arg
, minsz
))
376 if (info
.argsz
< minsz
|| info
.index
>= VFIO_CCW_NUM_IRQS
)
379 ret
= vfio_ccw_mdev_get_irq_info(&info
);
383 if (info
.count
== -1)
386 return copy_to_user((void __user
*)arg
, &info
, minsz
);
388 case VFIO_DEVICE_SET_IRQS
:
390 struct vfio_irq_set hdr
;
394 minsz
= offsetofend(struct vfio_irq_set
, count
);
396 if (copy_from_user(&hdr
, (void __user
*)arg
, minsz
))
399 ret
= vfio_set_irqs_validate_and_prepare(&hdr
, 1,
405 data
= (void __user
*)(arg
+ minsz
);
406 return vfio_ccw_mdev_set_irqs(mdev
, hdr
.flags
, data
);
408 case VFIO_DEVICE_RESET
:
409 return vfio_ccw_mdev_reset(mdev
);
415 static const struct mdev_parent_ops vfio_ccw_mdev_ops
= {
416 .owner
= THIS_MODULE
,
417 .supported_type_groups
= mdev_type_groups
,
418 .create
= vfio_ccw_mdev_create
,
419 .remove
= vfio_ccw_mdev_remove
,
420 .open
= vfio_ccw_mdev_open
,
421 .release
= vfio_ccw_mdev_release
,
422 .read
= vfio_ccw_mdev_read
,
423 .write
= vfio_ccw_mdev_write
,
424 .ioctl
= vfio_ccw_mdev_ioctl
,
427 int vfio_ccw_mdev_reg(struct subchannel
*sch
)
429 return mdev_register_device(&sch
->dev
, &vfio_ccw_mdev_ops
);
432 void vfio_ccw_mdev_unreg(struct subchannel
*sch
)
434 mdev_unregister_device(&sch
->dev
);