Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / s390 / char / vmur.c
blob7689b500a1046ffbddfd0426c7229847959bc0f0
1 /*
2 * Linux driver for System z and s390 unit record devices
3 * (z/VM virtual punch, reader, printer)
5 * Copyright IBM Corp. 2001, 2007
6 * Authors: Malcolm Beattie <beattiem@uk.ibm.com>
7 * Michael Holzheu <holzheu@de.ibm.com>
8 * Frank Munzert <munzert@de.ibm.com>
9 */
11 #include <linux/cdev.h>
13 #include <asm/uaccess.h>
14 #include <asm/cio.h>
15 #include <asm/ccwdev.h>
16 #include <asm/debug.h>
17 #include <asm/diag.h>
19 #include "vmur.h"
22 * Driver overview
24 * Unit record device support is implemented as a character device driver.
25 * We can fit at least 16 bits into a device minor number and use the
26 * simple method of mapping a character device number with minor abcd
27 * to the unit record device with devno abcd.
28 * I/O to virtual unit record devices is handled as follows:
29 * Reads: Diagnose code 0x14 (input spool file manipulation)
30 * is used to read spool data page-wise.
31 * Writes: The CCW used is WRITE_CCW_CMD (0x01). The device's record length
32 * is available by reading sysfs attr reclen. Each write() to the device
33 * must specify an integral multiple (maximal 511) of reclen.
36 static char ur_banner[] = "z/VM virtual unit record device driver";
38 MODULE_AUTHOR("IBM Corporation");
39 MODULE_DESCRIPTION("s390 z/VM virtual unit record device driver");
40 MODULE_LICENSE("GPL");
42 #define PRINTK_HEADER "vmur: "
44 static dev_t ur_first_dev_maj_min;
45 static struct class *vmur_class;
46 static struct debug_info *vmur_dbf;
48 /* We put the device's record length (for writes) in the driver_info field */
49 static struct ccw_device_id ur_ids[] = {
50 { CCWDEV_CU_DI(READER_PUNCH_DEVTYPE, 80) },
51 { CCWDEV_CU_DI(PRINTER_DEVTYPE, 132) },
52 { /* end of list */ }
55 MODULE_DEVICE_TABLE(ccw, ur_ids);
57 static int ur_probe(struct ccw_device *cdev);
58 static void ur_remove(struct ccw_device *cdev);
59 static int ur_set_online(struct ccw_device *cdev);
60 static int ur_set_offline(struct ccw_device *cdev);
62 static struct ccw_driver ur_driver = {
63 .name = "vmur",
64 .owner = THIS_MODULE,
65 .ids = ur_ids,
66 .probe = ur_probe,
67 .remove = ur_remove,
68 .set_online = ur_set_online,
69 .set_offline = ur_set_offline,
72 static DEFINE_MUTEX(vmur_mutex);
75 * Allocation, freeing, getting and putting of urdev structures
77 * Each ur device (urd) contains a reference to its corresponding ccw device
78 * (cdev) using the urd->cdev pointer. Each ccw device has a reference to the
79 * ur device using the cdev->dev.driver_data pointer.
81 * urd references:
82 * - ur_probe gets a urd reference, ur_remove drops the reference
83 * (cdev->dev.driver_data)
84 * - ur_open gets a urd reference, ur_relase drops the reference
85 * (urf->urd)
87 * cdev references:
88 * - urdev_alloc get a cdev reference (urd->cdev)
89 * - urdev_free drops the cdev reference (urd->cdev)
91 * Setting and clearing of cdev->dev.driver_data is protected by the ccwdev lock
93 static struct urdev *urdev_alloc(struct ccw_device *cdev)
95 struct urdev *urd;
97 urd = kzalloc(sizeof(struct urdev), GFP_KERNEL);
98 if (!urd)
99 return NULL;
100 urd->reclen = cdev->id.driver_info;
101 ccw_device_get_id(cdev, &urd->dev_id);
102 mutex_init(&urd->io_mutex);
103 mutex_init(&urd->open_mutex);
104 atomic_set(&urd->ref_count, 1);
105 urd->cdev = cdev;
106 get_device(&cdev->dev);
107 return urd;
110 static void urdev_free(struct urdev *urd)
112 TRACE("urdev_free: %p\n", urd);
113 if (urd->cdev)
114 put_device(&urd->cdev->dev);
115 kfree(urd);
118 static void urdev_get(struct urdev *urd)
120 atomic_inc(&urd->ref_count);
123 static struct urdev *urdev_get_from_cdev(struct ccw_device *cdev)
125 struct urdev *urd;
126 unsigned long flags;
128 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
129 urd = cdev->dev.driver_data;
130 if (urd)
131 urdev_get(urd);
132 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
133 return urd;
136 static struct urdev *urdev_get_from_devno(u16 devno)
138 char bus_id[16];
139 struct ccw_device *cdev;
140 struct urdev *urd;
142 sprintf(bus_id, "0.0.%04x", devno);
143 cdev = get_ccwdev_by_busid(&ur_driver, bus_id);
144 if (!cdev)
145 return NULL;
146 urd = urdev_get_from_cdev(cdev);
147 put_device(&cdev->dev);
148 return urd;
151 static void urdev_put(struct urdev *urd)
153 if (atomic_dec_and_test(&urd->ref_count))
154 urdev_free(urd);
158 * Low-level functions to do I/O to a ur device.
159 * alloc_chan_prog
160 * free_chan_prog
161 * do_ur_io
162 * ur_int_handler
164 * alloc_chan_prog allocates and builds the channel program
165 * free_chan_prog frees memory of the channel program
167 * do_ur_io issues the channel program to the device and blocks waiting
168 * on a completion event it publishes at urd->io_done. The function
169 * serialises itself on the device's mutex so that only one I/O
170 * is issued at a time (and that I/O is synchronous).
172 * ur_int_handler catches the "I/O done" interrupt, writes the
173 * subchannel status word into the scsw member of the urdev structure
174 * and complete()s the io_done to wake the waiting do_ur_io.
176 * The caller of do_ur_io is responsible for kfree()ing the channel program
177 * address pointer that alloc_chan_prog returned.
180 static void free_chan_prog(struct ccw1 *cpa)
182 struct ccw1 *ptr = cpa;
184 while (ptr->cda) {
185 kfree((void *)(addr_t) ptr->cda);
186 ptr++;
188 kfree(cpa);
192 * alloc_chan_prog
193 * The channel program we use is write commands chained together
194 * with a final NOP CCW command-chained on (which ensures that CE and DE
195 * are presented together in a single interrupt instead of as separate
196 * interrupts unless an incorrect length indication kicks in first). The
197 * data length in each CCW is reclen.
199 static struct ccw1 *alloc_chan_prog(const char __user *ubuf, int rec_count,
200 int reclen)
202 struct ccw1 *cpa;
203 void *kbuf;
204 int i;
206 TRACE("alloc_chan_prog(%p, %i, %i)\n", ubuf, rec_count, reclen);
209 * We chain a NOP onto the writes to force CE+DE together.
210 * That means we allocate room for CCWs to cover count/reclen
211 * records plus a NOP.
213 cpa = kzalloc((rec_count + 1) * sizeof(struct ccw1),
214 GFP_KERNEL | GFP_DMA);
215 if (!cpa)
216 return ERR_PTR(-ENOMEM);
218 for (i = 0; i < rec_count; i++) {
219 cpa[i].cmd_code = WRITE_CCW_CMD;
220 cpa[i].flags = CCW_FLAG_CC | CCW_FLAG_SLI;
221 cpa[i].count = reclen;
222 kbuf = kmalloc(reclen, GFP_KERNEL | GFP_DMA);
223 if (!kbuf) {
224 free_chan_prog(cpa);
225 return ERR_PTR(-ENOMEM);
227 cpa[i].cda = (u32)(addr_t) kbuf;
228 if (copy_from_user(kbuf, ubuf, reclen)) {
229 free_chan_prog(cpa);
230 return ERR_PTR(-EFAULT);
232 ubuf += reclen;
234 /* The following NOP CCW forces CE+DE to be presented together */
235 cpa[i].cmd_code = CCW_CMD_NOOP;
236 return cpa;
239 static int do_ur_io(struct urdev *urd, struct ccw1 *cpa)
241 int rc;
242 struct ccw_device *cdev = urd->cdev;
243 DECLARE_COMPLETION_ONSTACK(event);
245 TRACE("do_ur_io: cpa=%p\n", cpa);
247 rc = mutex_lock_interruptible(&urd->io_mutex);
248 if (rc)
249 return rc;
251 urd->io_done = &event;
253 spin_lock_irq(get_ccwdev_lock(cdev));
254 rc = ccw_device_start(cdev, cpa, 1, 0, 0);
255 spin_unlock_irq(get_ccwdev_lock(cdev));
257 TRACE("do_ur_io: ccw_device_start returned %d\n", rc);
258 if (rc)
259 goto out;
261 wait_for_completion(&event);
262 TRACE("do_ur_io: I/O complete\n");
263 rc = 0;
265 out:
266 mutex_unlock(&urd->io_mutex);
267 return rc;
271 * ur interrupt handler, called from the ccw_device layer
273 static void ur_int_handler(struct ccw_device *cdev, unsigned long intparm,
274 struct irb *irb)
276 struct urdev *urd;
278 TRACE("ur_int_handler: intparm=0x%lx cstat=%02x dstat=%02x res=%u\n",
279 intparm, irb->scsw.cstat, irb->scsw.dstat, irb->scsw.count);
281 if (!intparm) {
282 TRACE("ur_int_handler: unsolicited interrupt\n");
283 return;
285 urd = cdev->dev.driver_data;
286 BUG_ON(!urd);
287 /* On special conditions irb is an error pointer */
288 if (IS_ERR(irb))
289 urd->io_request_rc = PTR_ERR(irb);
290 else if (irb->scsw.dstat == (DEV_STAT_CHN_END | DEV_STAT_DEV_END))
291 urd->io_request_rc = 0;
292 else
293 urd->io_request_rc = -EIO;
295 complete(urd->io_done);
299 * reclen sysfs attribute - The record length to be used for write CCWs
301 static ssize_t ur_attr_reclen_show(struct device *dev,
302 struct device_attribute *attr, char *buf)
304 struct urdev *urd;
305 int rc;
307 urd = urdev_get_from_cdev(to_ccwdev(dev));
308 if (!urd)
309 return -ENODEV;
310 rc = sprintf(buf, "%zu\n", urd->reclen);
311 urdev_put(urd);
312 return rc;
315 static DEVICE_ATTR(reclen, 0444, ur_attr_reclen_show, NULL);
317 static int ur_create_attributes(struct device *dev)
319 return device_create_file(dev, &dev_attr_reclen);
322 static void ur_remove_attributes(struct device *dev)
324 device_remove_file(dev, &dev_attr_reclen);
328 * diagnose code 0x210 - retrieve device information
329 * cc=0 normal completion, we have a real device
330 * cc=1 CP paging error
331 * cc=2 The virtual device exists, but is not associated with a real device
332 * cc=3 Invalid device address, or the virtual device does not exist
334 static int get_urd_class(struct urdev *urd)
336 static struct diag210 ur_diag210;
337 int cc;
339 ur_diag210.vrdcdvno = urd->dev_id.devno;
340 ur_diag210.vrdclen = sizeof(struct diag210);
342 cc = diag210(&ur_diag210);
343 switch (cc) {
344 case 0:
345 return -ENOTSUPP;
346 case 2:
347 return ur_diag210.vrdcvcla; /* virtual device class */
348 case 3:
349 return -ENODEV;
350 default:
351 return -EIO;
356 * Allocation and freeing of urfile structures
358 static struct urfile *urfile_alloc(struct urdev *urd)
360 struct urfile *urf;
362 urf = kzalloc(sizeof(struct urfile), GFP_KERNEL);
363 if (!urf)
364 return NULL;
365 urf->urd = urd;
367 TRACE("urfile_alloc: urd=%p urf=%p rl=%zu\n", urd, urf,
368 urf->dev_reclen);
370 return urf;
373 static void urfile_free(struct urfile *urf)
375 TRACE("urfile_free: urf=%p urd=%p\n", urf, urf->urd);
376 kfree(urf);
380 * The fops implementation of the character device driver
382 static ssize_t do_write(struct urdev *urd, const char __user *udata,
383 size_t count, size_t reclen, loff_t *ppos)
385 struct ccw1 *cpa;
386 int rc;
388 cpa = alloc_chan_prog(udata, count / reclen, reclen);
389 if (IS_ERR(cpa))
390 return PTR_ERR(cpa);
392 rc = do_ur_io(urd, cpa);
393 if (rc)
394 goto fail_kfree_cpa;
396 if (urd->io_request_rc) {
397 rc = urd->io_request_rc;
398 goto fail_kfree_cpa;
400 *ppos += count;
401 rc = count;
403 fail_kfree_cpa:
404 free_chan_prog(cpa);
405 return rc;
408 static ssize_t ur_write(struct file *file, const char __user *udata,
409 size_t count, loff_t *ppos)
411 struct urfile *urf = file->private_data;
413 TRACE("ur_write: count=%zu\n", count);
415 if (count == 0)
416 return 0;
418 if (count % urf->dev_reclen)
419 return -EINVAL; /* count must be a multiple of reclen */
421 if (count > urf->dev_reclen * MAX_RECS_PER_IO)
422 count = urf->dev_reclen * MAX_RECS_PER_IO;
424 return do_write(urf->urd, udata, count, urf->dev_reclen, ppos);
428 * diagnose code 0x14 subcode 0x0028 - position spool file to designated
429 * record
430 * cc=0 normal completion
431 * cc=2 no file active on the virtual reader or device not ready
432 * cc=3 record specified is beyond EOF
434 static int diag_position_to_record(int devno, int record)
436 int cc;
438 cc = diag14(record, devno, 0x28);
439 switch (cc) {
440 case 0:
441 return 0;
442 case 2:
443 return -ENOMEDIUM;
444 case 3:
445 return -ENODATA; /* position beyond end of file */
446 default:
447 return -EIO;
452 * diagnose code 0x14 subcode 0x0000 - read next spool file buffer
453 * cc=0 normal completion
454 * cc=1 EOF reached
455 * cc=2 no file active on the virtual reader, and no file eligible
456 * cc=3 file already active on the virtual reader or specified virtual
457 * reader does not exist or is not a reader
459 static int diag_read_file(int devno, char *buf)
461 int cc;
463 cc = diag14((unsigned long) buf, devno, 0x00);
464 switch (cc) {
465 case 0:
466 return 0;
467 case 1:
468 return -ENODATA;
469 case 2:
470 return -ENOMEDIUM;
471 default:
472 return -EIO;
476 static ssize_t diag14_read(struct file *file, char __user *ubuf, size_t count,
477 loff_t *offs)
479 size_t len, copied, res;
480 char *buf;
481 int rc;
482 u16 reclen;
483 struct urdev *urd;
485 urd = ((struct urfile *) file->private_data)->urd;
486 reclen = ((struct urfile *) file->private_data)->file_reclen;
488 rc = diag_position_to_record(urd->dev_id.devno, *offs / PAGE_SIZE + 1);
489 if (rc == -ENODATA)
490 return 0;
491 if (rc)
492 return rc;
494 len = min((size_t) PAGE_SIZE, count);
495 buf = (char *) __get_free_page(GFP_KERNEL | GFP_DMA);
496 if (!buf)
497 return -ENOMEM;
499 copied = 0;
500 res = (size_t) (*offs % PAGE_SIZE);
501 do {
502 rc = diag_read_file(urd->dev_id.devno, buf);
503 if (rc == -ENODATA) {
504 break;
506 if (rc)
507 goto fail;
508 if (reclen && (copied == 0) && (*offs < PAGE_SIZE))
509 *((u16 *) &buf[FILE_RECLEN_OFFSET]) = reclen;
510 len = min(count - copied, PAGE_SIZE - res);
511 if (copy_to_user(ubuf + copied, buf + res, len)) {
512 rc = -EFAULT;
513 goto fail;
515 res = 0;
516 copied += len;
517 } while (copied != count);
519 *offs += copied;
520 rc = copied;
521 fail:
522 free_page((unsigned long) buf);
523 return rc;
526 static ssize_t ur_read(struct file *file, char __user *ubuf, size_t count,
527 loff_t *offs)
529 struct urdev *urd;
530 int rc;
532 TRACE("ur_read: count=%zu ppos=%li\n", count, (unsigned long) *offs);
534 if (count == 0)
535 return 0;
537 urd = ((struct urfile *) file->private_data)->urd;
538 rc = mutex_lock_interruptible(&urd->io_mutex);
539 if (rc)
540 return rc;
541 rc = diag14_read(file, ubuf, count, offs);
542 mutex_unlock(&urd->io_mutex);
543 return rc;
547 * diagnose code 0x14 subcode 0x0fff - retrieve next file descriptor
548 * cc=0 normal completion
549 * cc=1 no files on reader queue or no subsequent file
550 * cc=2 spid specified is invalid
552 static int diag_read_next_file_info(struct file_control_block *buf, int spid)
554 int cc;
556 cc = diag14((unsigned long) buf, spid, 0xfff);
557 switch (cc) {
558 case 0:
559 return 0;
560 default:
561 return -ENODATA;
565 static int verify_uri_device(struct urdev *urd)
567 struct file_control_block *fcb;
568 char *buf;
569 int rc;
571 fcb = kmalloc(sizeof(*fcb), GFP_KERNEL | GFP_DMA);
572 if (!fcb)
573 return -ENOMEM;
575 /* check for empty reader device (beginning of chain) */
576 rc = diag_read_next_file_info(fcb, 0);
577 if (rc)
578 goto fail_free_fcb;
580 /* if file is in hold status, we do not read it */
581 if (fcb->file_stat & (FLG_SYSTEM_HOLD | FLG_USER_HOLD)) {
582 rc = -EPERM;
583 goto fail_free_fcb;
586 /* open file on virtual reader */
587 buf = (char *) __get_free_page(GFP_KERNEL | GFP_DMA);
588 if (!buf) {
589 rc = -ENOMEM;
590 goto fail_free_fcb;
592 rc = diag_read_file(urd->dev_id.devno, buf);
593 if ((rc != 0) && (rc != -ENODATA)) /* EOF does not hurt */
594 goto fail_free_buf;
596 /* check if the file on top of the queue is open now */
597 rc = diag_read_next_file_info(fcb, 0);
598 if (rc)
599 goto fail_free_buf;
600 if (!(fcb->file_stat & FLG_IN_USE)) {
601 rc = -EMFILE;
602 goto fail_free_buf;
604 rc = 0;
606 fail_free_buf:
607 free_page((unsigned long) buf);
608 fail_free_fcb:
609 kfree(fcb);
610 return rc;
613 static int verify_device(struct urdev *urd)
615 switch (urd->class) {
616 case DEV_CLASS_UR_O:
617 return 0; /* no check needed here */
618 case DEV_CLASS_UR_I:
619 return verify_uri_device(urd);
620 default:
621 return -ENOTSUPP;
625 static int get_uri_file_reclen(struct urdev *urd)
627 struct file_control_block *fcb;
628 int rc;
630 fcb = kmalloc(sizeof(*fcb), GFP_KERNEL | GFP_DMA);
631 if (!fcb)
632 return -ENOMEM;
633 rc = diag_read_next_file_info(fcb, 0);
634 if (rc)
635 goto fail_free;
636 if (fcb->file_stat & FLG_CP_DUMP)
637 rc = 0;
638 else
639 rc = fcb->rec_len;
641 fail_free:
642 kfree(fcb);
643 return rc;
646 static int get_file_reclen(struct urdev *urd)
648 switch (urd->class) {
649 case DEV_CLASS_UR_O:
650 return 0;
651 case DEV_CLASS_UR_I:
652 return get_uri_file_reclen(urd);
653 default:
654 return -ENOTSUPP;
658 static int ur_open(struct inode *inode, struct file *file)
660 u16 devno;
661 struct urdev *urd;
662 struct urfile *urf;
663 unsigned short accmode;
664 int rc;
666 accmode = file->f_flags & O_ACCMODE;
668 if (accmode == O_RDWR)
669 return -EACCES;
672 * We treat the minor number as the devno of the ur device
673 * to find in the driver tree.
675 devno = MINOR(file->f_dentry->d_inode->i_rdev);
677 urd = urdev_get_from_devno(devno);
678 if (!urd)
679 return -ENXIO;
681 if (file->f_flags & O_NONBLOCK) {
682 if (!mutex_trylock(&urd->open_mutex)) {
683 rc = -EBUSY;
684 goto fail_put;
686 } else {
687 if (mutex_lock_interruptible(&urd->open_mutex)) {
688 rc = -ERESTARTSYS;
689 goto fail_put;
693 TRACE("ur_open\n");
695 if (((accmode == O_RDONLY) && (urd->class != DEV_CLASS_UR_I)) ||
696 ((accmode == O_WRONLY) && (urd->class != DEV_CLASS_UR_O))) {
697 TRACE("ur_open: unsupported dev class (%d)\n", urd->class);
698 rc = -EACCES;
699 goto fail_unlock;
702 rc = verify_device(urd);
703 if (rc)
704 goto fail_unlock;
706 urf = urfile_alloc(urd);
707 if (!urf) {
708 rc = -ENOMEM;
709 goto fail_unlock;
712 urf->dev_reclen = urd->reclen;
713 rc = get_file_reclen(urd);
714 if (rc < 0)
715 goto fail_urfile_free;
716 urf->file_reclen = rc;
717 file->private_data = urf;
718 return 0;
720 fail_urfile_free:
721 urfile_free(urf);
722 fail_unlock:
723 mutex_unlock(&urd->open_mutex);
724 fail_put:
725 urdev_put(urd);
726 return rc;
729 static int ur_release(struct inode *inode, struct file *file)
731 struct urfile *urf = file->private_data;
733 TRACE("ur_release\n");
734 mutex_unlock(&urf->urd->open_mutex);
735 urdev_put(urf->urd);
736 urfile_free(urf);
737 return 0;
740 static loff_t ur_llseek(struct file *file, loff_t offset, int whence)
742 loff_t newpos;
744 if ((file->f_flags & O_ACCMODE) != O_RDONLY)
745 return -ESPIPE; /* seek allowed only for reader */
746 if (offset % PAGE_SIZE)
747 return -ESPIPE; /* only multiples of 4K allowed */
748 switch (whence) {
749 case 0: /* SEEK_SET */
750 newpos = offset;
751 break;
752 case 1: /* SEEK_CUR */
753 newpos = file->f_pos + offset;
754 break;
755 default:
756 return -EINVAL;
758 file->f_pos = newpos;
759 return newpos;
762 static const struct file_operations ur_fops = {
763 .owner = THIS_MODULE,
764 .open = ur_open,
765 .release = ur_release,
766 .read = ur_read,
767 .write = ur_write,
768 .llseek = ur_llseek,
772 * ccw_device infrastructure:
773 * ur_probe creates the struct urdev (with refcount = 1), the device
774 * attributes, sets up the interrupt handler and validates the virtual
775 * unit record device.
776 * ur_remove removes the device attributes and drops the reference to
777 * struct urdev.
779 * ur_probe, ur_remove, ur_set_online and ur_set_offline are serialized
780 * by the vmur_mutex lock.
782 * urd->char_device is used as indication that the online function has
783 * been completed successfully.
785 static int ur_probe(struct ccw_device *cdev)
787 struct urdev *urd;
788 int rc;
790 TRACE("ur_probe: cdev=%p\n", cdev);
792 mutex_lock(&vmur_mutex);
793 urd = urdev_alloc(cdev);
794 if (!urd) {
795 rc = -ENOMEM;
796 goto fail_unlock;
799 rc = ur_create_attributes(&cdev->dev);
800 if (rc) {
801 rc = -ENOMEM;
802 goto fail_urdev_put;
804 cdev->handler = ur_int_handler;
806 /* validate virtual unit record device */
807 urd->class = get_urd_class(urd);
808 if (urd->class < 0) {
809 rc = urd->class;
810 goto fail_remove_attr;
812 if ((urd->class != DEV_CLASS_UR_I) && (urd->class != DEV_CLASS_UR_O)) {
813 rc = -ENOTSUPP;
814 goto fail_remove_attr;
816 spin_lock_irq(get_ccwdev_lock(cdev));
817 cdev->dev.driver_data = urd;
818 spin_unlock_irq(get_ccwdev_lock(cdev));
820 mutex_unlock(&vmur_mutex);
821 return 0;
823 fail_remove_attr:
824 ur_remove_attributes(&cdev->dev);
825 fail_urdev_put:
826 urdev_put(urd);
827 fail_unlock:
828 mutex_unlock(&vmur_mutex);
829 return rc;
832 static int ur_set_online(struct ccw_device *cdev)
834 struct urdev *urd;
835 int minor, major, rc;
836 char node_id[16];
838 TRACE("ur_set_online: cdev=%p\n", cdev);
840 mutex_lock(&vmur_mutex);
841 urd = urdev_get_from_cdev(cdev);
842 if (!urd) {
843 /* ur_remove already deleted our urd */
844 rc = -ENODEV;
845 goto fail_unlock;
848 if (urd->char_device) {
849 /* Another ur_set_online was faster */
850 rc = -EBUSY;
851 goto fail_urdev_put;
854 minor = urd->dev_id.devno;
855 major = MAJOR(ur_first_dev_maj_min);
857 urd->char_device = cdev_alloc();
858 if (!urd->char_device) {
859 rc = -ENOMEM;
860 goto fail_urdev_put;
863 cdev_init(urd->char_device, &ur_fops);
864 urd->char_device->dev = MKDEV(major, minor);
865 urd->char_device->owner = ur_fops.owner;
867 rc = cdev_add(urd->char_device, urd->char_device->dev, 1);
868 if (rc)
869 goto fail_free_cdev;
870 if (urd->cdev->id.cu_type == READER_PUNCH_DEVTYPE) {
871 if (urd->class == DEV_CLASS_UR_I)
872 sprintf(node_id, "vmrdr-%s", cdev->dev.bus_id);
873 if (urd->class == DEV_CLASS_UR_O)
874 sprintf(node_id, "vmpun-%s", cdev->dev.bus_id);
875 } else if (urd->cdev->id.cu_type == PRINTER_DEVTYPE) {
876 sprintf(node_id, "vmprt-%s", cdev->dev.bus_id);
877 } else {
878 rc = -ENOTSUPP;
879 goto fail_free_cdev;
882 urd->device = device_create(vmur_class, NULL, urd->char_device->dev,
883 "%s", node_id);
884 if (IS_ERR(urd->device)) {
885 rc = PTR_ERR(urd->device);
886 TRACE("ur_set_online: device_create rc=%d\n", rc);
887 goto fail_free_cdev;
889 urdev_put(urd);
890 mutex_unlock(&vmur_mutex);
891 return 0;
893 fail_free_cdev:
894 cdev_del(urd->char_device);
895 urd->char_device = NULL;
896 fail_urdev_put:
897 urdev_put(urd);
898 fail_unlock:
899 mutex_unlock(&vmur_mutex);
900 return rc;
903 static int ur_set_offline_force(struct ccw_device *cdev, int force)
905 struct urdev *urd;
906 int rc;
908 TRACE("ur_set_offline: cdev=%p\n", cdev);
909 urd = urdev_get_from_cdev(cdev);
910 if (!urd)
911 /* ur_remove already deleted our urd */
912 return -ENODEV;
913 if (!urd->char_device) {
914 /* Another ur_set_offline was faster */
915 rc = -EBUSY;
916 goto fail_urdev_put;
918 if (!force && (atomic_read(&urd->ref_count) > 2)) {
919 /* There is still a user of urd (e.g. ur_open) */
920 TRACE("ur_set_offline: BUSY\n");
921 rc = -EBUSY;
922 goto fail_urdev_put;
924 device_destroy(vmur_class, urd->char_device->dev);
925 cdev_del(urd->char_device);
926 urd->char_device = NULL;
927 rc = 0;
929 fail_urdev_put:
930 urdev_put(urd);
931 return rc;
934 static int ur_set_offline(struct ccw_device *cdev)
936 int rc;
938 mutex_lock(&vmur_mutex);
939 rc = ur_set_offline_force(cdev, 0);
940 mutex_unlock(&vmur_mutex);
941 return rc;
944 static void ur_remove(struct ccw_device *cdev)
946 unsigned long flags;
948 TRACE("ur_remove\n");
950 mutex_lock(&vmur_mutex);
952 if (cdev->online)
953 ur_set_offline_force(cdev, 1);
954 ur_remove_attributes(&cdev->dev);
956 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
957 urdev_put(cdev->dev.driver_data);
958 cdev->dev.driver_data = NULL;
959 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
961 mutex_unlock(&vmur_mutex);
965 * Module initialisation and cleanup
967 static int __init ur_init(void)
969 int rc;
970 dev_t dev;
972 if (!MACHINE_IS_VM) {
973 PRINT_ERR("%s is only available under z/VM.\n", ur_banner);
974 return -ENODEV;
977 vmur_dbf = debug_register("vmur", 4, 1, 4 * sizeof(long));
978 if (!vmur_dbf)
979 return -ENOMEM;
980 rc = debug_register_view(vmur_dbf, &debug_sprintf_view);
981 if (rc)
982 goto fail_free_dbf;
984 debug_set_level(vmur_dbf, 6);
986 rc = ccw_driver_register(&ur_driver);
987 if (rc)
988 goto fail_free_dbf;
990 rc = alloc_chrdev_region(&dev, 0, NUM_MINORS, "vmur");
991 if (rc) {
992 PRINT_ERR("alloc_chrdev_region failed: err = %d\n", rc);
993 goto fail_unregister_driver;
995 ur_first_dev_maj_min = MKDEV(MAJOR(dev), 0);
997 vmur_class = class_create(THIS_MODULE, "vmur");
998 if (IS_ERR(vmur_class)) {
999 rc = PTR_ERR(vmur_class);
1000 goto fail_unregister_region;
1002 PRINT_INFO("%s loaded.\n", ur_banner);
1003 return 0;
1005 fail_unregister_region:
1006 unregister_chrdev_region(ur_first_dev_maj_min, NUM_MINORS);
1007 fail_unregister_driver:
1008 ccw_driver_unregister(&ur_driver);
1009 fail_free_dbf:
1010 debug_unregister(vmur_dbf);
1011 return rc;
1014 static void __exit ur_exit(void)
1016 class_destroy(vmur_class);
1017 unregister_chrdev_region(ur_first_dev_maj_min, NUM_MINORS);
1018 ccw_driver_unregister(&ur_driver);
1019 debug_unregister(vmur_dbf);
1020 PRINT_INFO("%s unloaded.\n", ur_banner);
1023 module_init(ur_init);
1024 module_exit(ur_exit);