2 * drivers/s390/char/tape_char.c
3 * character device frontend for tape device driver
5 * S390 and zSeries version
6 * Copyright IBM Corp. 2001,2006
7 * Author(s): Carsten Otte <cotte@de.ibm.com>
8 * Michael Holzheu <holzheu@de.ibm.com>
9 * Tuan Ngo-Anh <ngoanh@de.ibm.com>
10 * Martin Schwidefsky <schwidefsky@de.ibm.com>
13 #include <linux/module.h>
14 #include <linux/types.h>
15 #include <linux/proc_fs.h>
16 #include <linux/mtio.h>
17 #include <linux/smp_lock.h>
19 #include <asm/uaccess.h>
21 #define TAPE_DBF_AREA tape_core_dbf
25 #include "tape_class.h"
27 #define TAPECHAR_MAJOR 0 /* get dynamic major */
30 * file operation structure for tape character frontend
32 static ssize_t tapechar_read(struct file *, char __user *, size_t, loff_t *);
33 static ssize_t tapechar_write(struct file *, const char __user *, size_t, loff_t *);
34 static int tapechar_open(struct inode *,struct file *);
35 static int tapechar_release(struct inode *,struct file *);
36 static int tapechar_ioctl(struct inode *, struct file *, unsigned int,
38 static long tapechar_compat_ioctl(struct file *, unsigned int,
41 static const struct file_operations tape_fops =
44 .read = tapechar_read,
45 .write = tapechar_write,
46 .ioctl = tapechar_ioctl,
47 .compat_ioctl = tapechar_compat_ioctl,
48 .open = tapechar_open,
49 .release = tapechar_release,
52 static int tapechar_major = TAPECHAR_MAJOR;
55 * This function is called for every new tapedevice
58 tapechar_setup_device(struct tape_device * device)
62 sprintf(device_name, "ntibm%i", device->first_minor / 2);
63 device->nt = register_tape_dev(
65 MKDEV(tapechar_major, device->first_minor),
71 device->rt = register_tape_dev(
73 MKDEV(tapechar_major, device->first_minor + 1),
83 tapechar_cleanup_device(struct tape_device *device)
85 unregister_tape_dev(&device->cdev->dev, device->rt);
87 unregister_tape_dev(&device->cdev->dev, device->nt);
92 tapechar_check_idalbuffer(struct tape_device *device, size_t block_size)
94 struct idal_buffer *new;
96 if (device->char_data.idal_buf != NULL &&
97 device->char_data.idal_buf->size == block_size)
100 if (block_size > MAX_BLOCKSIZE) {
101 DBF_EVENT(3, "Invalid blocksize (%zd > %d)\n",
102 block_size, MAX_BLOCKSIZE);
106 /* The current idal buffer is not correct. Allocate a new one. */
107 new = idal_buffer_alloc(block_size, 0);
111 if (device->char_data.idal_buf != NULL)
112 idal_buffer_free(device->char_data.idal_buf);
114 device->char_data.idal_buf = new;
120 * Tape device read function
123 tapechar_read(struct file *filp, char __user *data, size_t count, loff_t *ppos)
125 struct tape_device *device;
126 struct tape_request *request;
130 DBF_EVENT(6, "TCHAR:read\n");
131 device = (struct tape_device *) filp->private_data;
134 * If the tape isn't terminated yet, do it now. And since we then
135 * are at the end of the tape there wouldn't be anything to read
136 * anyways. So we return immediatly.
138 if(device->required_tapemarks) {
139 return tape_std_terminate_write(device);
142 /* Find out block size to use */
143 if (device->char_data.block_size != 0) {
144 if (count < device->char_data.block_size) {
145 DBF_EVENT(3, "TCHAR:read smaller than block "
146 "size was requested\n");
149 block_size = device->char_data.block_size;
154 rc = tapechar_check_idalbuffer(device, block_size);
158 #ifdef CONFIG_S390_TAPE_BLOCK
159 /* Changes position. */
160 device->blk_data.medium_changed = 1;
163 DBF_EVENT(6, "TCHAR:nbytes: %lx\n", block_size);
164 /* Let the discipline build the ccw chain. */
165 request = device->discipline->read_block(device, block_size);
167 return PTR_ERR(request);
169 rc = tape_do_io(device, request);
171 rc = block_size - request->rescnt;
172 DBF_EVENT(6, "TCHAR:rbytes: %x\n", rc);
174 /* Copy data from idal buffer to user space. */
175 if (idal_buffer_to_user(device->char_data.idal_buf,
179 tape_free_request(request);
184 * Tape device write function
187 tapechar_write(struct file *filp, const char __user *data, size_t count, loff_t *ppos)
189 struct tape_device *device;
190 struct tape_request *request;
196 DBF_EVENT(6, "TCHAR:write\n");
197 device = (struct tape_device *) filp->private_data;
198 /* Find out block size and number of blocks */
199 if (device->char_data.block_size != 0) {
200 if (count < device->char_data.block_size) {
201 DBF_EVENT(3, "TCHAR:write smaller than block "
202 "size was requested\n");
205 block_size = device->char_data.block_size;
206 nblocks = count / block_size;
212 rc = tapechar_check_idalbuffer(device, block_size);
216 #ifdef CONFIG_S390_TAPE_BLOCK
217 /* Changes position. */
218 device->blk_data.medium_changed = 1;
221 DBF_EVENT(6,"TCHAR:nbytes: %lx\n", block_size);
222 DBF_EVENT(6, "TCHAR:nblocks: %x\n", nblocks);
223 /* Let the discipline build the ccw chain. */
224 request = device->discipline->write_block(device, block_size);
226 return PTR_ERR(request);
229 for (i = 0; i < nblocks; i++) {
230 /* Copy data from user space to idal buffer. */
231 if (idal_buffer_from_user(device->char_data.idal_buf,
236 rc = tape_do_io(device, request);
239 DBF_EVENT(6, "TCHAR:wbytes: %lx\n",
240 block_size - request->rescnt);
241 filp->f_pos += block_size - request->rescnt;
242 written += block_size - request->rescnt;
243 if (request->rescnt != 0)
247 tape_free_request(request);
250 * Ok, the device has no more space. It has NOT written
253 if (device->discipline->process_eov)
254 device->discipline->process_eov(device);
261 * After doing a write we always need two tapemarks to correctly
262 * terminate the tape (one to terminate the file, the second to
263 * flag the end of recorded data.
264 * Since process_eov positions the tape in front of the written
265 * tapemark it doesn't hurt to write two marks again.
268 device->required_tapemarks = 2;
270 return rc ? rc : written;
274 * Character frontend tape device open function.
277 tapechar_open (struct inode *inode, struct file *filp)
279 struct tape_device *device;
282 DBF_EVENT(6, "TCHAR:open: %i:%i\n",
283 imajor(filp->f_path.dentry->d_inode),
284 iminor(filp->f_path.dentry->d_inode));
286 if (imajor(filp->f_path.dentry->d_inode) != tapechar_major)
290 minor = iminor(filp->f_path.dentry->d_inode);
291 device = tape_get_device(minor / TAPE_MINORS_PER_DEV);
292 if (IS_ERR(device)) {
293 DBF_EVENT(3, "TCHAR:open: tape_get_device() failed\n");
294 rc = PTR_ERR(device);
299 rc = tape_open(device);
301 filp->private_data = device;
302 rc = nonseekable_open(inode, filp);
305 tape_put_device(device);
313 * Character frontend tape device release function.
317 tapechar_release(struct inode *inode, struct file *filp)
319 struct tape_device *device;
321 DBF_EVENT(6, "TCHAR:release: %x\n", iminor(inode));
322 device = (struct tape_device *) filp->private_data;
325 * If this is the rewinding tape minor then rewind. In that case we
326 * write all required tapemarks. Otherwise only one to terminate the
329 if ((iminor(inode) & 1) != 0) {
330 if (device->required_tapemarks)
331 tape_std_terminate_write(device);
332 tape_mtop(device, MTREW, 1);
334 if (device->required_tapemarks > 1) {
335 if (tape_mtop(device, MTWEOF, 1) == 0)
336 device->required_tapemarks--;
340 if (device->char_data.idal_buf != NULL) {
341 idal_buffer_free(device->char_data.idal_buf);
342 device->char_data.idal_buf = NULL;
344 tape_release(device);
345 filp->private_data = tape_put_device(device);
351 * Tape device io controls.
354 tapechar_ioctl(struct inode *inp, struct file *filp,
355 unsigned int no, unsigned long data)
357 struct tape_device *device;
360 DBF_EVENT(6, "TCHAR:ioct\n");
362 device = (struct tape_device *) filp->private_data;
364 if (no == MTIOCTOP) {
367 if (copy_from_user(&op, (char __user *) data, sizeof(op)) != 0)
373 * Operations that change tape position should write final
388 #ifdef CONFIG_S390_TAPE_BLOCK
389 device->blk_data.medium_changed = 1;
391 if (device->required_tapemarks)
392 tape_std_terminate_write(device);
396 rc = tape_mtop(device, op.mt_op, op.mt_count);
398 if (op.mt_op == MTWEOF && rc == 0) {
399 if (op.mt_count > device->required_tapemarks)
400 device->required_tapemarks = 0;
402 device->required_tapemarks -= op.mt_count;
406 if (no == MTIOCPOS) {
407 /* MTIOCPOS: query the tape position. */
410 rc = tape_mtop(device, MTTELL, 1);
414 if (copy_to_user((char __user *) data, &pos, sizeof(pos)) != 0)
418 if (no == MTIOCGET) {
419 /* MTIOCGET: query the tape drive status. */
422 memset(&get, 0, sizeof(get));
423 get.mt_type = MT_ISUNKNOWN;
424 get.mt_resid = 0 /* device->devstat.rescnt */;
425 get.mt_dsreg = device->tape_state;
426 /* FIXME: mt_gstat, mt_erreg, mt_fileno */
430 get.mt_gstat = device->tape_generic_status;
432 if (device->medium_state == MS_LOADED) {
433 rc = tape_mtop(device, MTTELL, 1);
439 get.mt_gstat |= GMT_BOT(~0);
444 if (copy_to_user((char __user *) data, &get, sizeof(get)) != 0)
449 /* Try the discipline ioctl function. */
450 if (device->discipline->ioctl_fn == NULL)
452 return device->discipline->ioctl_fn(device, no, data);
456 tapechar_compat_ioctl(struct file *filp, unsigned int no, unsigned long data)
458 struct tape_device *device = filp->private_data;
459 int rval = -ENOIOCTLCMD;
461 if (device->discipline->ioctl_fn) {
463 rval = device->discipline->ioctl_fn(device, no, data);
473 * Initialize character device frontend.
480 if (alloc_chrdev_region(&dev, 0, 256, "tape") != 0)
483 tapechar_major = MAJOR(dev);
494 unregister_chrdev_region(MKDEV(tapechar_major, 0), 256);