2 * Copyright (C) 2000 Jens Axboe <axboe@suse.de>
3 * Copyright (C) 2001-2004 Peter Osterlund <petero2@telia.com>
4 * Copyright (C) 2006 Thomas Maier <balagi@justmail.de>
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
9 * Packet writing layer for ATAPI and SCSI CD-RW, DVD+RW, DVD-RW and
12 * Theory of operation:
14 * At the lowest level, there is the standard driver for the CD/DVD device,
15 * typically ide-cd.c or sr.c. This driver can handle read and write requests,
16 * but it doesn't know anything about the special restrictions that apply to
17 * packet writing. One restriction is that write requests must be aligned to
18 * packet boundaries on the physical media, and the size of a write request
19 * must be equal to the packet size. Another restriction is that a
20 * GPCMD_FLUSH_CACHE command has to be issued to the drive before a read
21 * command, if the previous command was a write.
23 * The purpose of the packet writing driver is to hide these restrictions from
24 * higher layers, such as file systems, and present a block device that can be
25 * randomly read and written using 2kB-sized blocks.
27 * The lowest layer in the packet writing driver is the packet I/O scheduler.
28 * Its data is defined by the struct packet_iosched and includes two bio
29 * queues with pending read and write requests. These queues are processed
30 * by the pkt_iosched_process_queue() function. The write requests in this
31 * queue are already properly aligned and sized. This layer is responsible for
32 * issuing the flush cache commands and scheduling the I/O in a good order.
34 * The next layer transforms unaligned write requests to aligned writes. This
35 * transformation requires reading missing pieces of data from the underlying
36 * block device, assembling the pieces to full packets and queuing them to the
37 * packet I/O scheduler.
39 * At the top layer there is a custom make_request_fn function that forwards
40 * read requests directly to the iosched queue and puts write requests in the
41 * unaligned write queue. A kernel thread performs the necessary read
42 * gathering to convert the unaligned writes to aligned writes and then feeds
43 * them to the packet I/O scheduler.
45 *************************************************************************/
47 #include <linux/pktcdvd.h>
48 #include <linux/module.h>
49 #include <linux/types.h>
50 #include <linux/kernel.h>
51 #include <linux/kthread.h>
52 #include <linux/errno.h>
53 #include <linux/spinlock.h>
54 #include <linux/file.h>
55 #include <linux/proc_fs.h>
56 #include <linux/seq_file.h>
57 #include <linux/miscdevice.h>
58 #include <linux/freezer.h>
59 #include <linux/mutex.h>
60 #include <scsi/scsi_cmnd.h>
61 #include <scsi/scsi_ioctl.h>
62 #include <scsi/scsi.h>
63 #include <linux/debugfs.h>
64 #include <linux/device.h>
66 #include <asm/uaccess.h>
68 #define DRIVER_NAME "pktcdvd"
71 #define DPRINTK(fmt, args...) printk(KERN_NOTICE fmt, ##args)
73 #define DPRINTK(fmt, args...)
77 #define VPRINTK(fmt, args...) printk(KERN_NOTICE fmt, ##args)
79 #define VPRINTK(fmt, args...)
82 #define MAX_SPEED 0xffff
84 #define ZONE(sector, pd) (((sector) + (pd)->offset) & ~((pd)->settings.size - 1))
86 static struct pktcdvd_device
*pkt_devs
[MAX_WRITERS
];
87 static struct proc_dir_entry
*pkt_proc
;
88 static int pktdev_major
;
89 static int write_congestion_on
= PKT_WRITE_CONGESTION_ON
;
90 static int write_congestion_off
= PKT_WRITE_CONGESTION_OFF
;
91 static struct mutex ctl_mutex
; /* Serialize open/close/setup/teardown */
92 static mempool_t
*psd_pool
;
94 static struct class *class_pktcdvd
= NULL
; /* /sys/class/pktcdvd */
95 static struct dentry
*pkt_debugfs_root
= NULL
; /* /debug/pktcdvd */
97 /* forward declaration */
98 static int pkt_setup_dev(dev_t dev
, dev_t
* pkt_dev
);
99 static int pkt_remove_dev(dev_t pkt_dev
);
100 static int pkt_seq_show(struct seq_file
*m
, void *p
);
105 * create and register a pktcdvd kernel object.
107 static struct pktcdvd_kobj
* pkt_kobj_create(struct pktcdvd_device
*pd
,
109 struct kobject
* parent
,
110 struct kobj_type
* ktype
)
112 struct pktcdvd_kobj
*p
;
115 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
119 error
= kobject_init_and_add(&p
->kobj
, ktype
, parent
, "%s", name
);
121 kobject_put(&p
->kobj
);
124 kobject_uevent(&p
->kobj
, KOBJ_ADD
);
128 * remove a pktcdvd kernel object.
130 static void pkt_kobj_remove(struct pktcdvd_kobj
*p
)
133 kobject_put(&p
->kobj
);
136 * default release function for pktcdvd kernel objects.
138 static void pkt_kobj_release(struct kobject
*kobj
)
140 kfree(to_pktcdvdkobj(kobj
));
144 /**********************************************************
146 * sysfs interface for pktcdvd
147 * by (C) 2006 Thomas Maier <balagi@justmail.de>
149 **********************************************************/
151 #define DEF_ATTR(_obj,_name,_mode) \
152 static struct attribute _obj = { .name = _name, .mode = _mode }
154 /**********************************************************
155 /sys/class/pktcdvd/pktcdvd[0-7]/
158 stat/packets_finished
163 write_queue/congestion_off
164 write_queue/congestion_on
165 **********************************************************/
167 DEF_ATTR(kobj_pkt_attr_st1
, "reset", 0200);
168 DEF_ATTR(kobj_pkt_attr_st2
, "packets_started", 0444);
169 DEF_ATTR(kobj_pkt_attr_st3
, "packets_finished", 0444);
170 DEF_ATTR(kobj_pkt_attr_st4
, "kb_written", 0444);
171 DEF_ATTR(kobj_pkt_attr_st5
, "kb_read", 0444);
172 DEF_ATTR(kobj_pkt_attr_st6
, "kb_read_gather", 0444);
174 static struct attribute
*kobj_pkt_attrs_stat
[] = {
184 DEF_ATTR(kobj_pkt_attr_wq1
, "size", 0444);
185 DEF_ATTR(kobj_pkt_attr_wq2
, "congestion_off", 0644);
186 DEF_ATTR(kobj_pkt_attr_wq3
, "congestion_on", 0644);
188 static struct attribute
*kobj_pkt_attrs_wqueue
[] = {
195 static ssize_t
kobj_pkt_show(struct kobject
*kobj
,
196 struct attribute
*attr
, char *data
)
198 struct pktcdvd_device
*pd
= to_pktcdvdkobj(kobj
)->pd
;
201 if (strcmp(attr
->name
, "packets_started") == 0) {
202 n
= sprintf(data
, "%lu\n", pd
->stats
.pkt_started
);
204 } else if (strcmp(attr
->name
, "packets_finished") == 0) {
205 n
= sprintf(data
, "%lu\n", pd
->stats
.pkt_ended
);
207 } else if (strcmp(attr
->name
, "kb_written") == 0) {
208 n
= sprintf(data
, "%lu\n", pd
->stats
.secs_w
>> 1);
210 } else if (strcmp(attr
->name
, "kb_read") == 0) {
211 n
= sprintf(data
, "%lu\n", pd
->stats
.secs_r
>> 1);
213 } else if (strcmp(attr
->name
, "kb_read_gather") == 0) {
214 n
= sprintf(data
, "%lu\n", pd
->stats
.secs_rg
>> 1);
216 } else if (strcmp(attr
->name
, "size") == 0) {
217 spin_lock(&pd
->lock
);
218 v
= pd
->bio_queue_size
;
219 spin_unlock(&pd
->lock
);
220 n
= sprintf(data
, "%d\n", v
);
222 } else if (strcmp(attr
->name
, "congestion_off") == 0) {
223 spin_lock(&pd
->lock
);
224 v
= pd
->write_congestion_off
;
225 spin_unlock(&pd
->lock
);
226 n
= sprintf(data
, "%d\n", v
);
228 } else if (strcmp(attr
->name
, "congestion_on") == 0) {
229 spin_lock(&pd
->lock
);
230 v
= pd
->write_congestion_on
;
231 spin_unlock(&pd
->lock
);
232 n
= sprintf(data
, "%d\n", v
);
237 static void init_write_congestion_marks(int* lo
, int* hi
)
241 *hi
= min(*hi
, 1000000);
245 *lo
= min(*lo
, *hi
- 100);
254 static ssize_t
kobj_pkt_store(struct kobject
*kobj
,
255 struct attribute
*attr
,
256 const char *data
, size_t len
)
258 struct pktcdvd_device
*pd
= to_pktcdvdkobj(kobj
)->pd
;
261 if (strcmp(attr
->name
, "reset") == 0 && len
> 0) {
262 pd
->stats
.pkt_started
= 0;
263 pd
->stats
.pkt_ended
= 0;
264 pd
->stats
.secs_w
= 0;
265 pd
->stats
.secs_rg
= 0;
266 pd
->stats
.secs_r
= 0;
268 } else if (strcmp(attr
->name
, "congestion_off") == 0
269 && sscanf(data
, "%d", &val
) == 1) {
270 spin_lock(&pd
->lock
);
271 pd
->write_congestion_off
= val
;
272 init_write_congestion_marks(&pd
->write_congestion_off
,
273 &pd
->write_congestion_on
);
274 spin_unlock(&pd
->lock
);
276 } else if (strcmp(attr
->name
, "congestion_on") == 0
277 && sscanf(data
, "%d", &val
) == 1) {
278 spin_lock(&pd
->lock
);
279 pd
->write_congestion_on
= val
;
280 init_write_congestion_marks(&pd
->write_congestion_off
,
281 &pd
->write_congestion_on
);
282 spin_unlock(&pd
->lock
);
287 static struct sysfs_ops kobj_pkt_ops
= {
288 .show
= kobj_pkt_show
,
289 .store
= kobj_pkt_store
291 static struct kobj_type kobj_pkt_type_stat
= {
292 .release
= pkt_kobj_release
,
293 .sysfs_ops
= &kobj_pkt_ops
,
294 .default_attrs
= kobj_pkt_attrs_stat
296 static struct kobj_type kobj_pkt_type_wqueue
= {
297 .release
= pkt_kobj_release
,
298 .sysfs_ops
= &kobj_pkt_ops
,
299 .default_attrs
= kobj_pkt_attrs_wqueue
302 static void pkt_sysfs_dev_new(struct pktcdvd_device
*pd
)
305 pd
->dev
= device_create(class_pktcdvd
, NULL
, pd
->pkt_dev
, "%s", pd
->name
);
310 pd
->kobj_stat
= pkt_kobj_create(pd
, "stat",
312 &kobj_pkt_type_stat
);
313 pd
->kobj_wqueue
= pkt_kobj_create(pd
, "write_queue",
315 &kobj_pkt_type_wqueue
);
319 static void pkt_sysfs_dev_remove(struct pktcdvd_device
*pd
)
321 pkt_kobj_remove(pd
->kobj_stat
);
322 pkt_kobj_remove(pd
->kobj_wqueue
);
324 device_destroy(class_pktcdvd
, pd
->pkt_dev
);
328 /********************************************************************
331 remove unmap packet dev
332 device_map show mappings
333 *******************************************************************/
335 static void class_pktcdvd_release(struct class *cls
)
339 static ssize_t
class_pktcdvd_show_map(struct class *c
, char *data
)
343 mutex_lock_nested(&ctl_mutex
, SINGLE_DEPTH_NESTING
);
344 for (idx
= 0; idx
< MAX_WRITERS
; idx
++) {
345 struct pktcdvd_device
*pd
= pkt_devs
[idx
];
348 n
+= sprintf(data
+n
, "%s %u:%u %u:%u\n",
350 MAJOR(pd
->pkt_dev
), MINOR(pd
->pkt_dev
),
351 MAJOR(pd
->bdev
->bd_dev
),
352 MINOR(pd
->bdev
->bd_dev
));
354 mutex_unlock(&ctl_mutex
);
358 static ssize_t
class_pktcdvd_store_add(struct class *c
, const char *buf
,
361 unsigned int major
, minor
;
363 if (sscanf(buf
, "%u:%u", &major
, &minor
) == 2) {
364 /* pkt_setup_dev() expects caller to hold reference to self */
365 if (!try_module_get(THIS_MODULE
))
368 pkt_setup_dev(MKDEV(major
, minor
), NULL
);
370 module_put(THIS_MODULE
);
378 static ssize_t
class_pktcdvd_store_remove(struct class *c
, const char *buf
,
381 unsigned int major
, minor
;
382 if (sscanf(buf
, "%u:%u", &major
, &minor
) == 2) {
383 pkt_remove_dev(MKDEV(major
, minor
));
389 static struct class_attribute class_pktcdvd_attrs
[] = {
390 __ATTR(add
, 0200, NULL
, class_pktcdvd_store_add
),
391 __ATTR(remove
, 0200, NULL
, class_pktcdvd_store_remove
),
392 __ATTR(device_map
, 0444, class_pktcdvd_show_map
, NULL
),
397 static int pkt_sysfs_init(void)
402 * create control files in sysfs
403 * /sys/class/pktcdvd/...
405 class_pktcdvd
= kzalloc(sizeof(*class_pktcdvd
), GFP_KERNEL
);
408 class_pktcdvd
->name
= DRIVER_NAME
;
409 class_pktcdvd
->owner
= THIS_MODULE
;
410 class_pktcdvd
->class_release
= class_pktcdvd_release
;
411 class_pktcdvd
->class_attrs
= class_pktcdvd_attrs
;
412 ret
= class_register(class_pktcdvd
);
414 kfree(class_pktcdvd
);
415 class_pktcdvd
= NULL
;
416 printk(DRIVER_NAME
": failed to create class pktcdvd\n");
422 static void pkt_sysfs_cleanup(void)
425 class_destroy(class_pktcdvd
);
426 class_pktcdvd
= NULL
;
429 /********************************************************************
432 /debugfs/pktcdvd[0-7]/
435 *******************************************************************/
437 static int pkt_debugfs_seq_show(struct seq_file
*m
, void *p
)
439 return pkt_seq_show(m
, p
);
442 static int pkt_debugfs_fops_open(struct inode
*inode
, struct file
*file
)
444 return single_open(file
, pkt_debugfs_seq_show
, inode
->i_private
);
447 static const struct file_operations debug_fops
= {
448 .open
= pkt_debugfs_fops_open
,
451 .release
= single_release
,
452 .owner
= THIS_MODULE
,
455 static void pkt_debugfs_dev_new(struct pktcdvd_device
*pd
)
457 if (!pkt_debugfs_root
)
459 pd
->dfs_f_info
= NULL
;
460 pd
->dfs_d_root
= debugfs_create_dir(pd
->name
, pkt_debugfs_root
);
461 if (IS_ERR(pd
->dfs_d_root
)) {
462 pd
->dfs_d_root
= NULL
;
465 pd
->dfs_f_info
= debugfs_create_file("info", S_IRUGO
,
466 pd
->dfs_d_root
, pd
, &debug_fops
);
467 if (IS_ERR(pd
->dfs_f_info
)) {
468 pd
->dfs_f_info
= NULL
;
473 static void pkt_debugfs_dev_remove(struct pktcdvd_device
*pd
)
475 if (!pkt_debugfs_root
)
478 debugfs_remove(pd
->dfs_f_info
);
479 pd
->dfs_f_info
= NULL
;
481 debugfs_remove(pd
->dfs_d_root
);
482 pd
->dfs_d_root
= NULL
;
485 static void pkt_debugfs_init(void)
487 pkt_debugfs_root
= debugfs_create_dir(DRIVER_NAME
, NULL
);
488 if (IS_ERR(pkt_debugfs_root
)) {
489 pkt_debugfs_root
= NULL
;
494 static void pkt_debugfs_cleanup(void)
496 if (!pkt_debugfs_root
)
498 debugfs_remove(pkt_debugfs_root
);
499 pkt_debugfs_root
= NULL
;
502 /* ----------------------------------------------------------*/
505 static void pkt_bio_finished(struct pktcdvd_device
*pd
)
507 BUG_ON(atomic_read(&pd
->cdrw
.pending_bios
) <= 0);
508 if (atomic_dec_and_test(&pd
->cdrw
.pending_bios
)) {
509 VPRINTK(DRIVER_NAME
": queue empty\n");
510 atomic_set(&pd
->iosched
.attention
, 1);
511 wake_up(&pd
->wqueue
);
515 static void pkt_bio_destructor(struct bio
*bio
)
517 kfree(bio
->bi_io_vec
);
521 static struct bio
*pkt_bio_alloc(int nr_iovecs
)
523 struct bio_vec
*bvl
= NULL
;
526 bio
= kmalloc(sizeof(struct bio
), GFP_KERNEL
);
531 bvl
= kcalloc(nr_iovecs
, sizeof(struct bio_vec
), GFP_KERNEL
);
535 bio
->bi_max_vecs
= nr_iovecs
;
536 bio
->bi_io_vec
= bvl
;
537 bio
->bi_destructor
= pkt_bio_destructor
;
548 * Allocate a packet_data struct
550 static struct packet_data
*pkt_alloc_packet_data(int frames
)
553 struct packet_data
*pkt
;
555 pkt
= kzalloc(sizeof(struct packet_data
), GFP_KERNEL
);
559 pkt
->frames
= frames
;
560 pkt
->w_bio
= pkt_bio_alloc(frames
);
564 for (i
= 0; i
< frames
/ FRAMES_PER_PAGE
; i
++) {
565 pkt
->pages
[i
] = alloc_page(GFP_KERNEL
|__GFP_ZERO
);
570 spin_lock_init(&pkt
->lock
);
572 for (i
= 0; i
< frames
; i
++) {
573 struct bio
*bio
= pkt_bio_alloc(1);
576 pkt
->r_bios
[i
] = bio
;
582 for (i
= 0; i
< frames
; i
++) {
583 struct bio
*bio
= pkt
->r_bios
[i
];
589 for (i
= 0; i
< frames
/ FRAMES_PER_PAGE
; i
++)
591 __free_page(pkt
->pages
[i
]);
600 * Free a packet_data struct
602 static void pkt_free_packet_data(struct packet_data
*pkt
)
606 for (i
= 0; i
< pkt
->frames
; i
++) {
607 struct bio
*bio
= pkt
->r_bios
[i
];
611 for (i
= 0; i
< pkt
->frames
/ FRAMES_PER_PAGE
; i
++)
612 __free_page(pkt
->pages
[i
]);
617 static void pkt_shrink_pktlist(struct pktcdvd_device
*pd
)
619 struct packet_data
*pkt
, *next
;
621 BUG_ON(!list_empty(&pd
->cdrw
.pkt_active_list
));
623 list_for_each_entry_safe(pkt
, next
, &pd
->cdrw
.pkt_free_list
, list
) {
624 pkt_free_packet_data(pkt
);
626 INIT_LIST_HEAD(&pd
->cdrw
.pkt_free_list
);
629 static int pkt_grow_pktlist(struct pktcdvd_device
*pd
, int nr_packets
)
631 struct packet_data
*pkt
;
633 BUG_ON(!list_empty(&pd
->cdrw
.pkt_free_list
));
635 while (nr_packets
> 0) {
636 pkt
= pkt_alloc_packet_data(pd
->settings
.size
>> 2);
638 pkt_shrink_pktlist(pd
);
641 pkt
->id
= nr_packets
;
643 list_add(&pkt
->list
, &pd
->cdrw
.pkt_free_list
);
649 static inline struct pkt_rb_node
*pkt_rbtree_next(struct pkt_rb_node
*node
)
651 struct rb_node
*n
= rb_next(&node
->rb_node
);
654 return rb_entry(n
, struct pkt_rb_node
, rb_node
);
657 static void pkt_rbtree_erase(struct pktcdvd_device
*pd
, struct pkt_rb_node
*node
)
659 rb_erase(&node
->rb_node
, &pd
->bio_queue
);
660 mempool_free(node
, pd
->rb_pool
);
661 pd
->bio_queue_size
--;
662 BUG_ON(pd
->bio_queue_size
< 0);
666 * Find the first node in the pd->bio_queue rb tree with a starting sector >= s.
668 static struct pkt_rb_node
*pkt_rbtree_find(struct pktcdvd_device
*pd
, sector_t s
)
670 struct rb_node
*n
= pd
->bio_queue
.rb_node
;
671 struct rb_node
*next
;
672 struct pkt_rb_node
*tmp
;
675 BUG_ON(pd
->bio_queue_size
> 0);
680 tmp
= rb_entry(n
, struct pkt_rb_node
, rb_node
);
681 if (s
<= tmp
->bio
->bi_sector
)
690 if (s
> tmp
->bio
->bi_sector
) {
691 tmp
= pkt_rbtree_next(tmp
);
695 BUG_ON(s
> tmp
->bio
->bi_sector
);
700 * Insert a node into the pd->bio_queue rb tree.
702 static void pkt_rbtree_insert(struct pktcdvd_device
*pd
, struct pkt_rb_node
*node
)
704 struct rb_node
**p
= &pd
->bio_queue
.rb_node
;
705 struct rb_node
*parent
= NULL
;
706 sector_t s
= node
->bio
->bi_sector
;
707 struct pkt_rb_node
*tmp
;
711 tmp
= rb_entry(parent
, struct pkt_rb_node
, rb_node
);
712 if (s
< tmp
->bio
->bi_sector
)
717 rb_link_node(&node
->rb_node
, parent
, p
);
718 rb_insert_color(&node
->rb_node
, &pd
->bio_queue
);
719 pd
->bio_queue_size
++;
723 * Add a bio to a single linked list defined by its head and tail pointers.
725 static void pkt_add_list_last(struct bio
*bio
, struct bio
**list_head
, struct bio
**list_tail
)
729 BUG_ON((*list_head
) == NULL
);
730 (*list_tail
)->bi_next
= bio
;
733 BUG_ON((*list_head
) != NULL
);
740 * Remove and return the first bio from a single linked list defined by its
741 * head and tail pointers.
743 static inline struct bio
*pkt_get_list_first(struct bio
**list_head
, struct bio
**list_tail
)
747 if (*list_head
== NULL
)
751 *list_head
= bio
->bi_next
;
752 if (*list_head
== NULL
)
760 * Send a packet_command to the underlying block device and
761 * wait for completion.
763 static int pkt_generic_packet(struct pktcdvd_device
*pd
, struct packet_command
*cgc
)
765 struct request_queue
*q
= bdev_get_queue(pd
->bdev
);
769 rq
= blk_get_request(q
, (cgc
->data_direction
== CGC_DATA_WRITE
) ?
770 WRITE
: READ
, __GFP_WAIT
);
773 if (blk_rq_map_kern(q
, rq
, cgc
->buffer
, cgc
->buflen
, __GFP_WAIT
))
777 rq
->cmd_len
= COMMAND_SIZE(cgc
->cmd
[0]);
778 memcpy(rq
->cmd
, cgc
->cmd
, CDROM_PACKET_SIZE
);
779 if (sizeof(rq
->cmd
) > CDROM_PACKET_SIZE
)
780 memset(rq
->cmd
+ CDROM_PACKET_SIZE
, 0, sizeof(rq
->cmd
) - CDROM_PACKET_SIZE
);
783 rq
->cmd_type
= REQ_TYPE_BLOCK_PC
;
784 rq
->cmd_flags
|= REQ_HARDBARRIER
;
786 rq
->cmd_flags
|= REQ_QUIET
;
788 blk_execute_rq(rq
->q
, pd
->bdev
->bd_disk
, rq
, 0);
797 * A generic sense dump / resolve mechanism should be implemented across
798 * all ATAPI + SCSI devices.
800 static void pkt_dump_sense(struct packet_command
*cgc
)
802 static char *info
[9] = { "No sense", "Recovered error", "Not ready",
803 "Medium error", "Hardware error", "Illegal request",
804 "Unit attention", "Data protect", "Blank check" };
806 struct request_sense
*sense
= cgc
->sense
;
808 printk(DRIVER_NAME
":");
809 for (i
= 0; i
< CDROM_PACKET_SIZE
; i
++)
810 printk(" %02x", cgc
->cmd
[i
]);
814 printk("no sense\n");
818 printk("sense %02x.%02x.%02x", sense
->sense_key
, sense
->asc
, sense
->ascq
);
820 if (sense
->sense_key
> 8) {
821 printk(" (INVALID)\n");
825 printk(" (%s)\n", info
[sense
->sense_key
]);
829 * flush the drive cache to media
831 static int pkt_flush_cache(struct pktcdvd_device
*pd
)
833 struct packet_command cgc
;
835 init_cdrom_command(&cgc
, NULL
, 0, CGC_DATA_NONE
);
836 cgc
.cmd
[0] = GPCMD_FLUSH_CACHE
;
840 * the IMMED bit -- we default to not setting it, although that
841 * would allow a much faster close, this is safer
846 return pkt_generic_packet(pd
, &cgc
);
850 * speed is given as the normal factor, e.g. 4 for 4x
852 static int pkt_set_speed(struct pktcdvd_device
*pd
, unsigned write_speed
, unsigned read_speed
)
854 struct packet_command cgc
;
855 struct request_sense sense
;
858 init_cdrom_command(&cgc
, NULL
, 0, CGC_DATA_NONE
);
860 cgc
.cmd
[0] = GPCMD_SET_SPEED
;
861 cgc
.cmd
[2] = (read_speed
>> 8) & 0xff;
862 cgc
.cmd
[3] = read_speed
& 0xff;
863 cgc
.cmd
[4] = (write_speed
>> 8) & 0xff;
864 cgc
.cmd
[5] = write_speed
& 0xff;
866 if ((ret
= pkt_generic_packet(pd
, &cgc
)))
867 pkt_dump_sense(&cgc
);
873 * Queue a bio for processing by the low-level CD device. Must be called
874 * from process context.
876 static void pkt_queue_bio(struct pktcdvd_device
*pd
, struct bio
*bio
)
878 spin_lock(&pd
->iosched
.lock
);
879 if (bio_data_dir(bio
) == READ
) {
880 pkt_add_list_last(bio
, &pd
->iosched
.read_queue
,
881 &pd
->iosched
.read_queue_tail
);
883 pkt_add_list_last(bio
, &pd
->iosched
.write_queue
,
884 &pd
->iosched
.write_queue_tail
);
886 spin_unlock(&pd
->iosched
.lock
);
888 atomic_set(&pd
->iosched
.attention
, 1);
889 wake_up(&pd
->wqueue
);
893 * Process the queued read/write requests. This function handles special
894 * requirements for CDRW drives:
895 * - A cache flush command must be inserted before a read request if the
896 * previous request was a write.
897 * - Switching between reading and writing is slow, so don't do it more often
899 * - Optimize for throughput at the expense of latency. This means that streaming
900 * writes will never be interrupted by a read, but if the drive has to seek
901 * before the next write, switch to reading instead if there are any pending
903 * - Set the read speed according to current usage pattern. When only reading
904 * from the device, it's best to use the highest possible read speed, but
905 * when switching often between reading and writing, it's better to have the
906 * same read and write speeds.
908 static void pkt_iosched_process_queue(struct pktcdvd_device
*pd
)
911 if (atomic_read(&pd
->iosched
.attention
) == 0)
913 atomic_set(&pd
->iosched
.attention
, 0);
917 int reads_queued
, writes_queued
;
919 spin_lock(&pd
->iosched
.lock
);
920 reads_queued
= (pd
->iosched
.read_queue
!= NULL
);
921 writes_queued
= (pd
->iosched
.write_queue
!= NULL
);
922 spin_unlock(&pd
->iosched
.lock
);
924 if (!reads_queued
&& !writes_queued
)
927 if (pd
->iosched
.writing
) {
928 int need_write_seek
= 1;
929 spin_lock(&pd
->iosched
.lock
);
930 bio
= pd
->iosched
.write_queue
;
931 spin_unlock(&pd
->iosched
.lock
);
932 if (bio
&& (bio
->bi_sector
== pd
->iosched
.last_write
))
934 if (need_write_seek
&& reads_queued
) {
935 if (atomic_read(&pd
->cdrw
.pending_bios
) > 0) {
936 VPRINTK(DRIVER_NAME
": write, waiting\n");
940 pd
->iosched
.writing
= 0;
943 if (!reads_queued
&& writes_queued
) {
944 if (atomic_read(&pd
->cdrw
.pending_bios
) > 0) {
945 VPRINTK(DRIVER_NAME
": read, waiting\n");
948 pd
->iosched
.writing
= 1;
952 spin_lock(&pd
->iosched
.lock
);
953 if (pd
->iosched
.writing
) {
954 bio
= pkt_get_list_first(&pd
->iosched
.write_queue
,
955 &pd
->iosched
.write_queue_tail
);
957 bio
= pkt_get_list_first(&pd
->iosched
.read_queue
,
958 &pd
->iosched
.read_queue_tail
);
960 spin_unlock(&pd
->iosched
.lock
);
965 if (bio_data_dir(bio
) == READ
)
966 pd
->iosched
.successive_reads
+= bio
->bi_size
>> 10;
968 pd
->iosched
.successive_reads
= 0;
969 pd
->iosched
.last_write
= bio
->bi_sector
+ bio_sectors(bio
);
971 if (pd
->iosched
.successive_reads
>= HI_SPEED_SWITCH
) {
972 if (pd
->read_speed
== pd
->write_speed
) {
973 pd
->read_speed
= MAX_SPEED
;
974 pkt_set_speed(pd
, pd
->write_speed
, pd
->read_speed
);
977 if (pd
->read_speed
!= pd
->write_speed
) {
978 pd
->read_speed
= pd
->write_speed
;
979 pkt_set_speed(pd
, pd
->write_speed
, pd
->read_speed
);
983 atomic_inc(&pd
->cdrw
.pending_bios
);
984 generic_make_request(bio
);
989 * Special care is needed if the underlying block device has a small
990 * max_phys_segments value.
992 static int pkt_set_segment_merging(struct pktcdvd_device
*pd
, struct request_queue
*q
)
994 if ((pd
->settings
.size
<< 9) / CD_FRAMESIZE
<= q
->max_phys_segments
) {
996 * The cdrom device can handle one segment/frame
998 clear_bit(PACKET_MERGE_SEGS
, &pd
->flags
);
1000 } else if ((pd
->settings
.size
<< 9) / PAGE_SIZE
<= q
->max_phys_segments
) {
1002 * We can handle this case at the expense of some extra memory
1003 * copies during write operations
1005 set_bit(PACKET_MERGE_SEGS
, &pd
->flags
);
1008 printk(DRIVER_NAME
": cdrom max_phys_segments too small\n");
1014 * Copy CD_FRAMESIZE bytes from src_bio into a destination page
1016 static void pkt_copy_bio_data(struct bio
*src_bio
, int seg
, int offs
, struct page
*dst_page
, int dst_offs
)
1018 unsigned int copy_size
= CD_FRAMESIZE
;
1020 while (copy_size
> 0) {
1021 struct bio_vec
*src_bvl
= bio_iovec_idx(src_bio
, seg
);
1022 void *vfrom
= kmap_atomic(src_bvl
->bv_page
, KM_USER0
) +
1023 src_bvl
->bv_offset
+ offs
;
1024 void *vto
= page_address(dst_page
) + dst_offs
;
1025 int len
= min_t(int, copy_size
, src_bvl
->bv_len
- offs
);
1028 memcpy(vto
, vfrom
, len
);
1029 kunmap_atomic(vfrom
, KM_USER0
);
1039 * Copy all data for this packet to pkt->pages[], so that
1040 * a) The number of required segments for the write bio is minimized, which
1041 * is necessary for some scsi controllers.
1042 * b) The data can be used as cache to avoid read requests if we receive a
1043 * new write request for the same zone.
1045 static void pkt_make_local_copy(struct packet_data
*pkt
, struct bio_vec
*bvec
)
1049 /* Copy all data to pkt->pages[] */
1052 for (f
= 0; f
< pkt
->frames
; f
++) {
1053 if (bvec
[f
].bv_page
!= pkt
->pages
[p
]) {
1054 void *vfrom
= kmap_atomic(bvec
[f
].bv_page
, KM_USER0
) + bvec
[f
].bv_offset
;
1055 void *vto
= page_address(pkt
->pages
[p
]) + offs
;
1056 memcpy(vto
, vfrom
, CD_FRAMESIZE
);
1057 kunmap_atomic(vfrom
, KM_USER0
);
1058 bvec
[f
].bv_page
= pkt
->pages
[p
];
1059 bvec
[f
].bv_offset
= offs
;
1061 BUG_ON(bvec
[f
].bv_offset
!= offs
);
1063 offs
+= CD_FRAMESIZE
;
1064 if (offs
>= PAGE_SIZE
) {
1071 static void pkt_end_io_read(struct bio
*bio
, int err
)
1073 struct packet_data
*pkt
= bio
->bi_private
;
1074 struct pktcdvd_device
*pd
= pkt
->pd
;
1077 VPRINTK("pkt_end_io_read: bio=%p sec0=%llx sec=%llx err=%d\n", bio
,
1078 (unsigned long long)pkt
->sector
, (unsigned long long)bio
->bi_sector
, err
);
1081 atomic_inc(&pkt
->io_errors
);
1082 if (atomic_dec_and_test(&pkt
->io_wait
)) {
1083 atomic_inc(&pkt
->run_sm
);
1084 wake_up(&pd
->wqueue
);
1086 pkt_bio_finished(pd
);
1089 static void pkt_end_io_packet_write(struct bio
*bio
, int err
)
1091 struct packet_data
*pkt
= bio
->bi_private
;
1092 struct pktcdvd_device
*pd
= pkt
->pd
;
1095 VPRINTK("pkt_end_io_packet_write: id=%d, err=%d\n", pkt
->id
, err
);
1097 pd
->stats
.pkt_ended
++;
1099 pkt_bio_finished(pd
);
1100 atomic_dec(&pkt
->io_wait
);
1101 atomic_inc(&pkt
->run_sm
);
1102 wake_up(&pd
->wqueue
);
1106 * Schedule reads for the holes in a packet
1108 static void pkt_gather_data(struct pktcdvd_device
*pd
, struct packet_data
*pkt
)
1110 int frames_read
= 0;
1113 char written
[PACKET_MAX_SIZE
];
1115 BUG_ON(!pkt
->orig_bios
);
1117 atomic_set(&pkt
->io_wait
, 0);
1118 atomic_set(&pkt
->io_errors
, 0);
1121 * Figure out which frames we need to read before we can write.
1123 memset(written
, 0, sizeof(written
));
1124 spin_lock(&pkt
->lock
);
1125 for (bio
= pkt
->orig_bios
; bio
; bio
= bio
->bi_next
) {
1126 int first_frame
= (bio
->bi_sector
- pkt
->sector
) / (CD_FRAMESIZE
>> 9);
1127 int num_frames
= bio
->bi_size
/ CD_FRAMESIZE
;
1128 pd
->stats
.secs_w
+= num_frames
* (CD_FRAMESIZE
>> 9);
1129 BUG_ON(first_frame
< 0);
1130 BUG_ON(first_frame
+ num_frames
> pkt
->frames
);
1131 for (f
= first_frame
; f
< first_frame
+ num_frames
; f
++)
1134 spin_unlock(&pkt
->lock
);
1136 if (pkt
->cache_valid
) {
1137 VPRINTK("pkt_gather_data: zone %llx cached\n",
1138 (unsigned long long)pkt
->sector
);
1143 * Schedule reads for missing parts of the packet.
1145 for (f
= 0; f
< pkt
->frames
; f
++) {
1146 struct bio_vec
*vec
;
1151 bio
= pkt
->r_bios
[f
];
1152 vec
= bio
->bi_io_vec
;
1154 bio
->bi_max_vecs
= 1;
1155 bio
->bi_sector
= pkt
->sector
+ f
* (CD_FRAMESIZE
>> 9);
1156 bio
->bi_bdev
= pd
->bdev
;
1157 bio
->bi_end_io
= pkt_end_io_read
;
1158 bio
->bi_private
= pkt
;
1159 bio
->bi_io_vec
= vec
;
1160 bio
->bi_destructor
= pkt_bio_destructor
;
1162 p
= (f
* CD_FRAMESIZE
) / PAGE_SIZE
;
1163 offset
= (f
* CD_FRAMESIZE
) % PAGE_SIZE
;
1164 VPRINTK("pkt_gather_data: Adding frame %d, page:%p offs:%d\n",
1165 f
, pkt
->pages
[p
], offset
);
1166 if (!bio_add_page(bio
, pkt
->pages
[p
], CD_FRAMESIZE
, offset
))
1169 atomic_inc(&pkt
->io_wait
);
1171 pkt_queue_bio(pd
, bio
);
1176 VPRINTK("pkt_gather_data: need %d frames for zone %llx\n",
1177 frames_read
, (unsigned long long)pkt
->sector
);
1178 pd
->stats
.pkt_started
++;
1179 pd
->stats
.secs_rg
+= frames_read
* (CD_FRAMESIZE
>> 9);
1183 * Find a packet matching zone, or the least recently used packet if
1184 * there is no match.
1186 static struct packet_data
*pkt_get_packet_data(struct pktcdvd_device
*pd
, int zone
)
1188 struct packet_data
*pkt
;
1190 list_for_each_entry(pkt
, &pd
->cdrw
.pkt_free_list
, list
) {
1191 if (pkt
->sector
== zone
|| pkt
->list
.next
== &pd
->cdrw
.pkt_free_list
) {
1192 list_del_init(&pkt
->list
);
1193 if (pkt
->sector
!= zone
)
1194 pkt
->cache_valid
= 0;
1202 static void pkt_put_packet_data(struct pktcdvd_device
*pd
, struct packet_data
*pkt
)
1204 if (pkt
->cache_valid
) {
1205 list_add(&pkt
->list
, &pd
->cdrw
.pkt_free_list
);
1207 list_add_tail(&pkt
->list
, &pd
->cdrw
.pkt_free_list
);
1212 * recover a failed write, query for relocation if possible
1214 * returns 1 if recovery is possible, or 0 if not
1217 static int pkt_start_recovery(struct packet_data
*pkt
)
1220 * FIXME. We need help from the file system to implement
1221 * recovery handling.
1225 struct request
*rq
= pkt
->rq
;
1226 struct pktcdvd_device
*pd
= rq
->rq_disk
->private_data
;
1227 struct block_device
*pkt_bdev
;
1228 struct super_block
*sb
= NULL
;
1229 unsigned long old_block
, new_block
;
1230 sector_t new_sector
;
1232 pkt_bdev
= bdget(kdev_t_to_nr(pd
->pkt_dev
));
1234 sb
= get_super(pkt_bdev
);
1241 if (!sb
->s_op
|| !sb
->s_op
->relocate_blocks
)
1244 old_block
= pkt
->sector
/ (CD_FRAMESIZE
>> 9);
1245 if (sb
->s_op
->relocate_blocks(sb
, old_block
, &new_block
))
1248 new_sector
= new_block
* (CD_FRAMESIZE
>> 9);
1249 pkt
->sector
= new_sector
;
1251 pkt
->bio
->bi_sector
= new_sector
;
1252 pkt
->bio
->bi_next
= NULL
;
1253 pkt
->bio
->bi_flags
= 1 << BIO_UPTODATE
;
1254 pkt
->bio
->bi_idx
= 0;
1256 BUG_ON(pkt
->bio
->bi_rw
!= (1 << BIO_RW
));
1257 BUG_ON(pkt
->bio
->bi_vcnt
!= pkt
->frames
);
1258 BUG_ON(pkt
->bio
->bi_size
!= pkt
->frames
* CD_FRAMESIZE
);
1259 BUG_ON(pkt
->bio
->bi_end_io
!= pkt_end_io_packet_write
);
1260 BUG_ON(pkt
->bio
->bi_private
!= pkt
);
1271 static inline void pkt_set_state(struct packet_data
*pkt
, enum packet_data_state state
)
1273 #if PACKET_DEBUG > 1
1274 static const char *state_name
[] = {
1275 "IDLE", "WAITING", "READ_WAIT", "WRITE_WAIT", "RECOVERY", "FINISHED"
1277 enum packet_data_state old_state
= pkt
->state
;
1278 VPRINTK("pkt %2d : s=%6llx %s -> %s\n", pkt
->id
, (unsigned long long)pkt
->sector
,
1279 state_name
[old_state
], state_name
[state
]);
1285 * Scan the work queue to see if we can start a new packet.
1286 * returns non-zero if any work was done.
1288 static int pkt_handle_queue(struct pktcdvd_device
*pd
)
1290 struct packet_data
*pkt
, *p
;
1291 struct bio
*bio
= NULL
;
1292 sector_t zone
= 0; /* Suppress gcc warning */
1293 struct pkt_rb_node
*node
, *first_node
;
1297 VPRINTK("handle_queue\n");
1299 atomic_set(&pd
->scan_queue
, 0);
1301 if (list_empty(&pd
->cdrw
.pkt_free_list
)) {
1302 VPRINTK("handle_queue: no pkt\n");
1307 * Try to find a zone we are not already working on.
1309 spin_lock(&pd
->lock
);
1310 first_node
= pkt_rbtree_find(pd
, pd
->current_sector
);
1312 n
= rb_first(&pd
->bio_queue
);
1314 first_node
= rb_entry(n
, struct pkt_rb_node
, rb_node
);
1319 zone
= ZONE(bio
->bi_sector
, pd
);
1320 list_for_each_entry(p
, &pd
->cdrw
.pkt_active_list
, list
) {
1321 if (p
->sector
== zone
) {
1328 node
= pkt_rbtree_next(node
);
1330 n
= rb_first(&pd
->bio_queue
);
1332 node
= rb_entry(n
, struct pkt_rb_node
, rb_node
);
1334 if (node
== first_node
)
1337 spin_unlock(&pd
->lock
);
1339 VPRINTK("handle_queue: no bio\n");
1343 pkt
= pkt_get_packet_data(pd
, zone
);
1345 pd
->current_sector
= zone
+ pd
->settings
.size
;
1347 BUG_ON(pkt
->frames
!= pd
->settings
.size
>> 2);
1348 pkt
->write_size
= 0;
1351 * Scan work queue for bios in the same zone and link them
1354 spin_lock(&pd
->lock
);
1355 VPRINTK("pkt_handle_queue: looking for zone %llx\n", (unsigned long long)zone
);
1356 while ((node
= pkt_rbtree_find(pd
, zone
)) != NULL
) {
1358 VPRINTK("pkt_handle_queue: found zone=%llx\n",
1359 (unsigned long long)ZONE(bio
->bi_sector
, pd
));
1360 if (ZONE(bio
->bi_sector
, pd
) != zone
)
1362 pkt_rbtree_erase(pd
, node
);
1363 spin_lock(&pkt
->lock
);
1364 pkt_add_list_last(bio
, &pkt
->orig_bios
, &pkt
->orig_bios_tail
);
1365 pkt
->write_size
+= bio
->bi_size
/ CD_FRAMESIZE
;
1366 spin_unlock(&pkt
->lock
);
1368 /* check write congestion marks, and if bio_queue_size is
1369 below, wake up any waiters */
1370 wakeup
= (pd
->write_congestion_on
> 0
1371 && pd
->bio_queue_size
<= pd
->write_congestion_off
);
1372 spin_unlock(&pd
->lock
);
1374 clear_bdi_congested(&pd
->disk
->queue
->backing_dev_info
, WRITE
);
1376 pkt
->sleep_time
= max(PACKET_WAIT_TIME
, 1);
1377 pkt_set_state(pkt
, PACKET_WAITING_STATE
);
1378 atomic_set(&pkt
->run_sm
, 1);
1380 spin_lock(&pd
->cdrw
.active_list_lock
);
1381 list_add(&pkt
->list
, &pd
->cdrw
.pkt_active_list
);
1382 spin_unlock(&pd
->cdrw
.active_list_lock
);
1388 * Assemble a bio to write one packet and queue the bio for processing
1389 * by the underlying block device.
1391 static void pkt_start_write(struct pktcdvd_device
*pd
, struct packet_data
*pkt
)
1396 struct bio_vec
*bvec
= pkt
->w_bio
->bi_io_vec
;
1398 for (f
= 0; f
< pkt
->frames
; f
++) {
1399 bvec
[f
].bv_page
= pkt
->pages
[(f
* CD_FRAMESIZE
) / PAGE_SIZE
];
1400 bvec
[f
].bv_offset
= (f
* CD_FRAMESIZE
) % PAGE_SIZE
;
1404 * Fill-in bvec with data from orig_bios.
1407 spin_lock(&pkt
->lock
);
1408 for (bio
= pkt
->orig_bios
; bio
; bio
= bio
->bi_next
) {
1409 int segment
= bio
->bi_idx
;
1411 int first_frame
= (bio
->bi_sector
- pkt
->sector
) / (CD_FRAMESIZE
>> 9);
1412 int num_frames
= bio
->bi_size
/ CD_FRAMESIZE
;
1413 BUG_ON(first_frame
< 0);
1414 BUG_ON(first_frame
+ num_frames
> pkt
->frames
);
1415 for (f
= first_frame
; f
< first_frame
+ num_frames
; f
++) {
1416 struct bio_vec
*src_bvl
= bio_iovec_idx(bio
, segment
);
1418 while (src_offs
>= src_bvl
->bv_len
) {
1419 src_offs
-= src_bvl
->bv_len
;
1421 BUG_ON(segment
>= bio
->bi_vcnt
);
1422 src_bvl
= bio_iovec_idx(bio
, segment
);
1425 if (src_bvl
->bv_len
- src_offs
>= CD_FRAMESIZE
) {
1426 bvec
[f
].bv_page
= src_bvl
->bv_page
;
1427 bvec
[f
].bv_offset
= src_bvl
->bv_offset
+ src_offs
;
1429 pkt_copy_bio_data(bio
, segment
, src_offs
,
1430 bvec
[f
].bv_page
, bvec
[f
].bv_offset
);
1432 src_offs
+= CD_FRAMESIZE
;
1436 pkt_set_state(pkt
, PACKET_WRITE_WAIT_STATE
);
1437 spin_unlock(&pkt
->lock
);
1439 VPRINTK("pkt_start_write: Writing %d frames for zone %llx\n",
1440 frames_write
, (unsigned long long)pkt
->sector
);
1441 BUG_ON(frames_write
!= pkt
->write_size
);
1443 if (test_bit(PACKET_MERGE_SEGS
, &pd
->flags
) || (pkt
->write_size
< pkt
->frames
)) {
1444 pkt_make_local_copy(pkt
, bvec
);
1445 pkt
->cache_valid
= 1;
1447 pkt
->cache_valid
= 0;
1450 /* Start the write request */
1451 bio_init(pkt
->w_bio
);
1452 pkt
->w_bio
->bi_max_vecs
= PACKET_MAX_SIZE
;
1453 pkt
->w_bio
->bi_sector
= pkt
->sector
;
1454 pkt
->w_bio
->bi_bdev
= pd
->bdev
;
1455 pkt
->w_bio
->bi_end_io
= pkt_end_io_packet_write
;
1456 pkt
->w_bio
->bi_private
= pkt
;
1457 pkt
->w_bio
->bi_io_vec
= bvec
;
1458 pkt
->w_bio
->bi_destructor
= pkt_bio_destructor
;
1459 for (f
= 0; f
< pkt
->frames
; f
++)
1460 if (!bio_add_page(pkt
->w_bio
, bvec
[f
].bv_page
, CD_FRAMESIZE
, bvec
[f
].bv_offset
))
1462 VPRINTK(DRIVER_NAME
": vcnt=%d\n", pkt
->w_bio
->bi_vcnt
);
1464 atomic_set(&pkt
->io_wait
, 1);
1465 pkt
->w_bio
->bi_rw
= WRITE
;
1466 pkt_queue_bio(pd
, pkt
->w_bio
);
1469 static void pkt_finish_packet(struct packet_data
*pkt
, int uptodate
)
1471 struct bio
*bio
, *next
;
1474 pkt
->cache_valid
= 0;
1476 /* Finish all bios corresponding to this packet */
1477 bio
= pkt
->orig_bios
;
1479 next
= bio
->bi_next
;
1480 bio
->bi_next
= NULL
;
1481 bio_endio(bio
, uptodate
? 0 : -EIO
);
1484 pkt
->orig_bios
= pkt
->orig_bios_tail
= NULL
;
1487 static void pkt_run_state_machine(struct pktcdvd_device
*pd
, struct packet_data
*pkt
)
1491 VPRINTK("run_state_machine: pkt %d\n", pkt
->id
);
1494 switch (pkt
->state
) {
1495 case PACKET_WAITING_STATE
:
1496 if ((pkt
->write_size
< pkt
->frames
) && (pkt
->sleep_time
> 0))
1499 pkt
->sleep_time
= 0;
1500 pkt_gather_data(pd
, pkt
);
1501 pkt_set_state(pkt
, PACKET_READ_WAIT_STATE
);
1504 case PACKET_READ_WAIT_STATE
:
1505 if (atomic_read(&pkt
->io_wait
) > 0)
1508 if (atomic_read(&pkt
->io_errors
) > 0) {
1509 pkt_set_state(pkt
, PACKET_RECOVERY_STATE
);
1511 pkt_start_write(pd
, pkt
);
1515 case PACKET_WRITE_WAIT_STATE
:
1516 if (atomic_read(&pkt
->io_wait
) > 0)
1519 if (test_bit(BIO_UPTODATE
, &pkt
->w_bio
->bi_flags
)) {
1520 pkt_set_state(pkt
, PACKET_FINISHED_STATE
);
1522 pkt_set_state(pkt
, PACKET_RECOVERY_STATE
);
1526 case PACKET_RECOVERY_STATE
:
1527 if (pkt_start_recovery(pkt
)) {
1528 pkt_start_write(pd
, pkt
);
1530 VPRINTK("No recovery possible\n");
1531 pkt_set_state(pkt
, PACKET_FINISHED_STATE
);
1535 case PACKET_FINISHED_STATE
:
1536 uptodate
= test_bit(BIO_UPTODATE
, &pkt
->w_bio
->bi_flags
);
1537 pkt_finish_packet(pkt
, uptodate
);
1547 static void pkt_handle_packets(struct pktcdvd_device
*pd
)
1549 struct packet_data
*pkt
, *next
;
1551 VPRINTK("pkt_handle_packets\n");
1554 * Run state machine for active packets
1556 list_for_each_entry(pkt
, &pd
->cdrw
.pkt_active_list
, list
) {
1557 if (atomic_read(&pkt
->run_sm
) > 0) {
1558 atomic_set(&pkt
->run_sm
, 0);
1559 pkt_run_state_machine(pd
, pkt
);
1564 * Move no longer active packets to the free list
1566 spin_lock(&pd
->cdrw
.active_list_lock
);
1567 list_for_each_entry_safe(pkt
, next
, &pd
->cdrw
.pkt_active_list
, list
) {
1568 if (pkt
->state
== PACKET_FINISHED_STATE
) {
1569 list_del(&pkt
->list
);
1570 pkt_put_packet_data(pd
, pkt
);
1571 pkt_set_state(pkt
, PACKET_IDLE_STATE
);
1572 atomic_set(&pd
->scan_queue
, 1);
1575 spin_unlock(&pd
->cdrw
.active_list_lock
);
1578 static void pkt_count_states(struct pktcdvd_device
*pd
, int *states
)
1580 struct packet_data
*pkt
;
1583 for (i
= 0; i
< PACKET_NUM_STATES
; i
++)
1586 spin_lock(&pd
->cdrw
.active_list_lock
);
1587 list_for_each_entry(pkt
, &pd
->cdrw
.pkt_active_list
, list
) {
1588 states
[pkt
->state
]++;
1590 spin_unlock(&pd
->cdrw
.active_list_lock
);
1594 * kcdrwd is woken up when writes have been queued for one of our
1595 * registered devices
1597 static int kcdrwd(void *foobar
)
1599 struct pktcdvd_device
*pd
= foobar
;
1600 struct packet_data
*pkt
;
1601 long min_sleep_time
, residue
;
1603 set_user_nice(current
, -20);
1607 DECLARE_WAITQUEUE(wait
, current
);
1610 * Wait until there is something to do
1612 add_wait_queue(&pd
->wqueue
, &wait
);
1614 set_current_state(TASK_INTERRUPTIBLE
);
1616 /* Check if we need to run pkt_handle_queue */
1617 if (atomic_read(&pd
->scan_queue
) > 0)
1620 /* Check if we need to run the state machine for some packet */
1621 list_for_each_entry(pkt
, &pd
->cdrw
.pkt_active_list
, list
) {
1622 if (atomic_read(&pkt
->run_sm
) > 0)
1626 /* Check if we need to process the iosched queues */
1627 if (atomic_read(&pd
->iosched
.attention
) != 0)
1630 /* Otherwise, go to sleep */
1631 if (PACKET_DEBUG
> 1) {
1632 int states
[PACKET_NUM_STATES
];
1633 pkt_count_states(pd
, states
);
1634 VPRINTK("kcdrwd: i:%d ow:%d rw:%d ww:%d rec:%d fin:%d\n",
1635 states
[0], states
[1], states
[2], states
[3],
1636 states
[4], states
[5]);
1639 min_sleep_time
= MAX_SCHEDULE_TIMEOUT
;
1640 list_for_each_entry(pkt
, &pd
->cdrw
.pkt_active_list
, list
) {
1641 if (pkt
->sleep_time
&& pkt
->sleep_time
< min_sleep_time
)
1642 min_sleep_time
= pkt
->sleep_time
;
1645 generic_unplug_device(bdev_get_queue(pd
->bdev
));
1647 VPRINTK("kcdrwd: sleeping\n");
1648 residue
= schedule_timeout(min_sleep_time
);
1649 VPRINTK("kcdrwd: wake up\n");
1651 /* make swsusp happy with our thread */
1654 list_for_each_entry(pkt
, &pd
->cdrw
.pkt_active_list
, list
) {
1655 if (!pkt
->sleep_time
)
1657 pkt
->sleep_time
-= min_sleep_time
- residue
;
1658 if (pkt
->sleep_time
<= 0) {
1659 pkt
->sleep_time
= 0;
1660 atomic_inc(&pkt
->run_sm
);
1664 if (kthread_should_stop())
1668 set_current_state(TASK_RUNNING
);
1669 remove_wait_queue(&pd
->wqueue
, &wait
);
1671 if (kthread_should_stop())
1675 * if pkt_handle_queue returns true, we can queue
1678 while (pkt_handle_queue(pd
))
1682 * Handle packet state machine
1684 pkt_handle_packets(pd
);
1687 * Handle iosched queues
1689 pkt_iosched_process_queue(pd
);
1695 static void pkt_print_settings(struct pktcdvd_device
*pd
)
1697 printk(DRIVER_NAME
": %s packets, ", pd
->settings
.fp
? "Fixed" : "Variable");
1698 printk("%u blocks, ", pd
->settings
.size
>> 2);
1699 printk("Mode-%c disc\n", pd
->settings
.block_mode
== 8 ? '1' : '2');
1702 static int pkt_mode_sense(struct pktcdvd_device
*pd
, struct packet_command
*cgc
, int page_code
, int page_control
)
1704 memset(cgc
->cmd
, 0, sizeof(cgc
->cmd
));
1706 cgc
->cmd
[0] = GPCMD_MODE_SENSE_10
;
1707 cgc
->cmd
[2] = page_code
| (page_control
<< 6);
1708 cgc
->cmd
[7] = cgc
->buflen
>> 8;
1709 cgc
->cmd
[8] = cgc
->buflen
& 0xff;
1710 cgc
->data_direction
= CGC_DATA_READ
;
1711 return pkt_generic_packet(pd
, cgc
);
1714 static int pkt_mode_select(struct pktcdvd_device
*pd
, struct packet_command
*cgc
)
1716 memset(cgc
->cmd
, 0, sizeof(cgc
->cmd
));
1717 memset(cgc
->buffer
, 0, 2);
1718 cgc
->cmd
[0] = GPCMD_MODE_SELECT_10
;
1719 cgc
->cmd
[1] = 0x10; /* PF */
1720 cgc
->cmd
[7] = cgc
->buflen
>> 8;
1721 cgc
->cmd
[8] = cgc
->buflen
& 0xff;
1722 cgc
->data_direction
= CGC_DATA_WRITE
;
1723 return pkt_generic_packet(pd
, cgc
);
1726 static int pkt_get_disc_info(struct pktcdvd_device
*pd
, disc_information
*di
)
1728 struct packet_command cgc
;
1731 /* set up command and get the disc info */
1732 init_cdrom_command(&cgc
, di
, sizeof(*di
), CGC_DATA_READ
);
1733 cgc
.cmd
[0] = GPCMD_READ_DISC_INFO
;
1734 cgc
.cmd
[8] = cgc
.buflen
= 2;
1737 if ((ret
= pkt_generic_packet(pd
, &cgc
)))
1740 /* not all drives have the same disc_info length, so requeue
1741 * packet with the length the drive tells us it can supply
1743 cgc
.buflen
= be16_to_cpu(di
->disc_information_length
) +
1744 sizeof(di
->disc_information_length
);
1746 if (cgc
.buflen
> sizeof(disc_information
))
1747 cgc
.buflen
= sizeof(disc_information
);
1749 cgc
.cmd
[8] = cgc
.buflen
;
1750 return pkt_generic_packet(pd
, &cgc
);
1753 static int pkt_get_track_info(struct pktcdvd_device
*pd
, __u16 track
, __u8 type
, track_information
*ti
)
1755 struct packet_command cgc
;
1758 init_cdrom_command(&cgc
, ti
, 8, CGC_DATA_READ
);
1759 cgc
.cmd
[0] = GPCMD_READ_TRACK_RZONE_INFO
;
1760 cgc
.cmd
[1] = type
& 3;
1761 cgc
.cmd
[4] = (track
& 0xff00) >> 8;
1762 cgc
.cmd
[5] = track
& 0xff;
1766 if ((ret
= pkt_generic_packet(pd
, &cgc
)))
1769 cgc
.buflen
= be16_to_cpu(ti
->track_information_length
) +
1770 sizeof(ti
->track_information_length
);
1772 if (cgc
.buflen
> sizeof(track_information
))
1773 cgc
.buflen
= sizeof(track_information
);
1775 cgc
.cmd
[8] = cgc
.buflen
;
1776 return pkt_generic_packet(pd
, &cgc
);
1779 static int pkt_get_last_written(struct pktcdvd_device
*pd
, long *last_written
)
1781 disc_information di
;
1782 track_information ti
;
1786 if ((ret
= pkt_get_disc_info(pd
, &di
)))
1789 last_track
= (di
.last_track_msb
<< 8) | di
.last_track_lsb
;
1790 if ((ret
= pkt_get_track_info(pd
, last_track
, 1, &ti
)))
1793 /* if this track is blank, try the previous. */
1796 if ((ret
= pkt_get_track_info(pd
, last_track
, 1, &ti
)))
1800 /* if last recorded field is valid, return it. */
1802 *last_written
= be32_to_cpu(ti
.last_rec_address
);
1804 /* make it up instead */
1805 *last_written
= be32_to_cpu(ti
.track_start
) +
1806 be32_to_cpu(ti
.track_size
);
1808 *last_written
-= (be32_to_cpu(ti
.free_blocks
) + 7);
1814 * write mode select package based on pd->settings
1816 static int pkt_set_write_settings(struct pktcdvd_device
*pd
)
1818 struct packet_command cgc
;
1819 struct request_sense sense
;
1820 write_param_page
*wp
;
1824 /* doesn't apply to DVD+RW or DVD-RAM */
1825 if ((pd
->mmc3_profile
== 0x1a) || (pd
->mmc3_profile
== 0x12))
1828 memset(buffer
, 0, sizeof(buffer
));
1829 init_cdrom_command(&cgc
, buffer
, sizeof(*wp
), CGC_DATA_READ
);
1831 if ((ret
= pkt_mode_sense(pd
, &cgc
, GPMODE_WRITE_PARMS_PAGE
, 0))) {
1832 pkt_dump_sense(&cgc
);
1836 size
= 2 + ((buffer
[0] << 8) | (buffer
[1] & 0xff));
1837 pd
->mode_offset
= (buffer
[6] << 8) | (buffer
[7] & 0xff);
1838 if (size
> sizeof(buffer
))
1839 size
= sizeof(buffer
);
1844 init_cdrom_command(&cgc
, buffer
, size
, CGC_DATA_READ
);
1846 if ((ret
= pkt_mode_sense(pd
, &cgc
, GPMODE_WRITE_PARMS_PAGE
, 0))) {
1847 pkt_dump_sense(&cgc
);
1852 * write page is offset header + block descriptor length
1854 wp
= (write_param_page
*) &buffer
[sizeof(struct mode_page_header
) + pd
->mode_offset
];
1856 wp
->fp
= pd
->settings
.fp
;
1857 wp
->track_mode
= pd
->settings
.track_mode
;
1858 wp
->write_type
= pd
->settings
.write_type
;
1859 wp
->data_block_type
= pd
->settings
.block_mode
;
1861 wp
->multi_session
= 0;
1863 #ifdef PACKET_USE_LS
1868 if (wp
->data_block_type
== PACKET_BLOCK_MODE1
) {
1869 wp
->session_format
= 0;
1871 } else if (wp
->data_block_type
== PACKET_BLOCK_MODE2
) {
1872 wp
->session_format
= 0x20;
1876 memcpy(&wp
->mcn
[1], PACKET_MCN
, sizeof(wp
->mcn
) - 1);
1882 printk(DRIVER_NAME
": write mode wrong %d\n", wp
->data_block_type
);
1885 wp
->packet_size
= cpu_to_be32(pd
->settings
.size
>> 2);
1887 cgc
.buflen
= cgc
.cmd
[8] = size
;
1888 if ((ret
= pkt_mode_select(pd
, &cgc
))) {
1889 pkt_dump_sense(&cgc
);
1893 pkt_print_settings(pd
);
1898 * 1 -- we can write to this track, 0 -- we can't
1900 static int pkt_writable_track(struct pktcdvd_device
*pd
, track_information
*ti
)
1902 switch (pd
->mmc3_profile
) {
1903 case 0x1a: /* DVD+RW */
1904 case 0x12: /* DVD-RAM */
1905 /* The track is always writable on DVD+RW/DVD-RAM */
1911 if (!ti
->packet
|| !ti
->fp
)
1915 * "good" settings as per Mt Fuji.
1917 if (ti
->rt
== 0 && ti
->blank
== 0)
1920 if (ti
->rt
== 0 && ti
->blank
== 1)
1923 if (ti
->rt
== 1 && ti
->blank
== 0)
1926 printk(DRIVER_NAME
": bad state %d-%d-%d\n", ti
->rt
, ti
->blank
, ti
->packet
);
1931 * 1 -- we can write to this disc, 0 -- we can't
1933 static int pkt_writable_disc(struct pktcdvd_device
*pd
, disc_information
*di
)
1935 switch (pd
->mmc3_profile
) {
1936 case 0x0a: /* CD-RW */
1937 case 0xffff: /* MMC3 not supported */
1939 case 0x1a: /* DVD+RW */
1940 case 0x13: /* DVD-RW */
1941 case 0x12: /* DVD-RAM */
1944 VPRINTK(DRIVER_NAME
": Wrong disc profile (%x)\n", pd
->mmc3_profile
);
1949 * for disc type 0xff we should probably reserve a new track.
1950 * but i'm not sure, should we leave this to user apps? probably.
1952 if (di
->disc_type
== 0xff) {
1953 printk(DRIVER_NAME
": Unknown disc. No track?\n");
1957 if (di
->disc_type
!= 0x20 && di
->disc_type
!= 0) {
1958 printk(DRIVER_NAME
": Wrong disc type (%x)\n", di
->disc_type
);
1962 if (di
->erasable
== 0) {
1963 printk(DRIVER_NAME
": Disc not erasable\n");
1967 if (di
->border_status
== PACKET_SESSION_RESERVED
) {
1968 printk(DRIVER_NAME
": Can't write to last track (reserved)\n");
1975 static int pkt_probe_settings(struct pktcdvd_device
*pd
)
1977 struct packet_command cgc
;
1978 unsigned char buf
[12];
1979 disc_information di
;
1980 track_information ti
;
1983 init_cdrom_command(&cgc
, buf
, sizeof(buf
), CGC_DATA_READ
);
1984 cgc
.cmd
[0] = GPCMD_GET_CONFIGURATION
;
1986 ret
= pkt_generic_packet(pd
, &cgc
);
1987 pd
->mmc3_profile
= ret
? 0xffff : buf
[6] << 8 | buf
[7];
1989 memset(&di
, 0, sizeof(disc_information
));
1990 memset(&ti
, 0, sizeof(track_information
));
1992 if ((ret
= pkt_get_disc_info(pd
, &di
))) {
1993 printk("failed get_disc\n");
1997 if (!pkt_writable_disc(pd
, &di
))
2000 pd
->type
= di
.erasable
? PACKET_CDRW
: PACKET_CDR
;
2002 track
= 1; /* (di.last_track_msb << 8) | di.last_track_lsb; */
2003 if ((ret
= pkt_get_track_info(pd
, track
, 1, &ti
))) {
2004 printk(DRIVER_NAME
": failed get_track\n");
2008 if (!pkt_writable_track(pd
, &ti
)) {
2009 printk(DRIVER_NAME
": can't write to this track\n");
2014 * we keep packet size in 512 byte units, makes it easier to
2015 * deal with request calculations.
2017 pd
->settings
.size
= be32_to_cpu(ti
.fixed_packet_size
) << 2;
2018 if (pd
->settings
.size
== 0) {
2019 printk(DRIVER_NAME
": detected zero packet size!\n");
2022 if (pd
->settings
.size
> PACKET_MAX_SECTORS
) {
2023 printk(DRIVER_NAME
": packet size is too big\n");
2026 pd
->settings
.fp
= ti
.fp
;
2027 pd
->offset
= (be32_to_cpu(ti
.track_start
) << 2) & (pd
->settings
.size
- 1);
2030 pd
->nwa
= be32_to_cpu(ti
.next_writable
);
2031 set_bit(PACKET_NWA_VALID
, &pd
->flags
);
2035 * in theory we could use lra on -RW media as well and just zero
2036 * blocks that haven't been written yet, but in practice that
2037 * is just a no-go. we'll use that for -R, naturally.
2040 pd
->lra
= be32_to_cpu(ti
.last_rec_address
);
2041 set_bit(PACKET_LRA_VALID
, &pd
->flags
);
2043 pd
->lra
= 0xffffffff;
2044 set_bit(PACKET_LRA_VALID
, &pd
->flags
);
2050 pd
->settings
.link_loss
= 7;
2051 pd
->settings
.write_type
= 0; /* packet */
2052 pd
->settings
.track_mode
= ti
.track_mode
;
2055 * mode1 or mode2 disc
2057 switch (ti
.data_mode
) {
2059 pd
->settings
.block_mode
= PACKET_BLOCK_MODE1
;
2062 pd
->settings
.block_mode
= PACKET_BLOCK_MODE2
;
2065 printk(DRIVER_NAME
": unknown data mode\n");
2072 * enable/disable write caching on drive
2074 static int pkt_write_caching(struct pktcdvd_device
*pd
, int set
)
2076 struct packet_command cgc
;
2077 struct request_sense sense
;
2078 unsigned char buf
[64];
2081 memset(buf
, 0, sizeof(buf
));
2082 init_cdrom_command(&cgc
, buf
, sizeof(buf
), CGC_DATA_READ
);
2084 cgc
.buflen
= pd
->mode_offset
+ 12;
2087 * caching mode page might not be there, so quiet this command
2091 if ((ret
= pkt_mode_sense(pd
, &cgc
, GPMODE_WCACHING_PAGE
, 0)))
2094 buf
[pd
->mode_offset
+ 10] |= (!!set
<< 2);
2096 cgc
.buflen
= cgc
.cmd
[8] = 2 + ((buf
[0] << 8) | (buf
[1] & 0xff));
2097 ret
= pkt_mode_select(pd
, &cgc
);
2099 printk(DRIVER_NAME
": write caching control failed\n");
2100 pkt_dump_sense(&cgc
);
2101 } else if (!ret
&& set
)
2102 printk(DRIVER_NAME
": enabled write caching on %s\n", pd
->name
);
2106 static int pkt_lock_door(struct pktcdvd_device
*pd
, int lockflag
)
2108 struct packet_command cgc
;
2110 init_cdrom_command(&cgc
, NULL
, 0, CGC_DATA_NONE
);
2111 cgc
.cmd
[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL
;
2112 cgc
.cmd
[4] = lockflag
? 1 : 0;
2113 return pkt_generic_packet(pd
, &cgc
);
2117 * Returns drive maximum write speed
2119 static int pkt_get_max_speed(struct pktcdvd_device
*pd
, unsigned *write_speed
)
2121 struct packet_command cgc
;
2122 struct request_sense sense
;
2123 unsigned char buf
[256+18];
2124 unsigned char *cap_buf
;
2127 memset(buf
, 0, sizeof(buf
));
2128 cap_buf
= &buf
[sizeof(struct mode_page_header
) + pd
->mode_offset
];
2129 init_cdrom_command(&cgc
, buf
, sizeof(buf
), CGC_DATA_UNKNOWN
);
2132 ret
= pkt_mode_sense(pd
, &cgc
, GPMODE_CAPABILITIES_PAGE
, 0);
2134 cgc
.buflen
= pd
->mode_offset
+ cap_buf
[1] + 2 +
2135 sizeof(struct mode_page_header
);
2136 ret
= pkt_mode_sense(pd
, &cgc
, GPMODE_CAPABILITIES_PAGE
, 0);
2138 pkt_dump_sense(&cgc
);
2143 offset
= 20; /* Obsoleted field, used by older drives */
2144 if (cap_buf
[1] >= 28)
2145 offset
= 28; /* Current write speed selected */
2146 if (cap_buf
[1] >= 30) {
2147 /* If the drive reports at least one "Logical Unit Write
2148 * Speed Performance Descriptor Block", use the information
2149 * in the first block. (contains the highest speed)
2151 int num_spdb
= (cap_buf
[30] << 8) + cap_buf
[31];
2156 *write_speed
= (cap_buf
[offset
] << 8) | cap_buf
[offset
+ 1];
2160 /* These tables from cdrecord - I don't have orange book */
2161 /* standard speed CD-RW (1-4x) */
2162 static char clv_to_speed
[16] = {
2163 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
2164 0, 2, 4, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
2166 /* high speed CD-RW (-10x) */
2167 static char hs_clv_to_speed
[16] = {
2168 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
2169 0, 2, 4, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
2171 /* ultra high speed CD-RW */
2172 static char us_clv_to_speed
[16] = {
2173 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
2174 0, 2, 4, 8, 0, 0,16, 0,24,32,40,48, 0, 0, 0, 0
2178 * reads the maximum media speed from ATIP
2180 static int pkt_media_speed(struct pktcdvd_device
*pd
, unsigned *speed
)
2182 struct packet_command cgc
;
2183 struct request_sense sense
;
2184 unsigned char buf
[64];
2185 unsigned int size
, st
, sp
;
2188 init_cdrom_command(&cgc
, buf
, 2, CGC_DATA_READ
);
2190 cgc
.cmd
[0] = GPCMD_READ_TOC_PMA_ATIP
;
2192 cgc
.cmd
[2] = 4; /* READ ATIP */
2194 ret
= pkt_generic_packet(pd
, &cgc
);
2196 pkt_dump_sense(&cgc
);
2199 size
= ((unsigned int) buf
[0]<<8) + buf
[1] + 2;
2200 if (size
> sizeof(buf
))
2203 init_cdrom_command(&cgc
, buf
, size
, CGC_DATA_READ
);
2205 cgc
.cmd
[0] = GPCMD_READ_TOC_PMA_ATIP
;
2209 ret
= pkt_generic_packet(pd
, &cgc
);
2211 pkt_dump_sense(&cgc
);
2215 if (!buf
[6] & 0x40) {
2216 printk(DRIVER_NAME
": Disc type is not CD-RW\n");
2219 if (!buf
[6] & 0x4) {
2220 printk(DRIVER_NAME
": A1 values on media are not valid, maybe not CDRW?\n");
2224 st
= (buf
[6] >> 3) & 0x7; /* disc sub-type */
2226 sp
= buf
[16] & 0xf; /* max speed from ATIP A1 field */
2228 /* Info from cdrecord */
2230 case 0: /* standard speed */
2231 *speed
= clv_to_speed
[sp
];
2233 case 1: /* high speed */
2234 *speed
= hs_clv_to_speed
[sp
];
2236 case 2: /* ultra high speed */
2237 *speed
= us_clv_to_speed
[sp
];
2240 printk(DRIVER_NAME
": Unknown disc sub-type %d\n",st
);
2244 printk(DRIVER_NAME
": Max. media speed: %d\n",*speed
);
2247 printk(DRIVER_NAME
": Unknown speed %d for sub-type %d\n",sp
,st
);
2252 static int pkt_perform_opc(struct pktcdvd_device
*pd
)
2254 struct packet_command cgc
;
2255 struct request_sense sense
;
2258 VPRINTK(DRIVER_NAME
": Performing OPC\n");
2260 init_cdrom_command(&cgc
, NULL
, 0, CGC_DATA_NONE
);
2262 cgc
.timeout
= 60*HZ
;
2263 cgc
.cmd
[0] = GPCMD_SEND_OPC
;
2265 if ((ret
= pkt_generic_packet(pd
, &cgc
)))
2266 pkt_dump_sense(&cgc
);
2270 static int pkt_open_write(struct pktcdvd_device
*pd
)
2273 unsigned int write_speed
, media_write_speed
, read_speed
;
2275 if ((ret
= pkt_probe_settings(pd
))) {
2276 VPRINTK(DRIVER_NAME
": %s failed probe\n", pd
->name
);
2280 if ((ret
= pkt_set_write_settings(pd
))) {
2281 DPRINTK(DRIVER_NAME
": %s failed saving write settings\n", pd
->name
);
2285 pkt_write_caching(pd
, USE_WCACHING
);
2287 if ((ret
= pkt_get_max_speed(pd
, &write_speed
)))
2288 write_speed
= 16 * 177;
2289 switch (pd
->mmc3_profile
) {
2290 case 0x13: /* DVD-RW */
2291 case 0x1a: /* DVD+RW */
2292 case 0x12: /* DVD-RAM */
2293 DPRINTK(DRIVER_NAME
": write speed %ukB/s\n", write_speed
);
2296 if ((ret
= pkt_media_speed(pd
, &media_write_speed
)))
2297 media_write_speed
= 16;
2298 write_speed
= min(write_speed
, media_write_speed
* 177);
2299 DPRINTK(DRIVER_NAME
": write speed %ux\n", write_speed
/ 176);
2302 read_speed
= write_speed
;
2304 if ((ret
= pkt_set_speed(pd
, write_speed
, read_speed
))) {
2305 DPRINTK(DRIVER_NAME
": %s couldn't set write speed\n", pd
->name
);
2308 pd
->write_speed
= write_speed
;
2309 pd
->read_speed
= read_speed
;
2311 if ((ret
= pkt_perform_opc(pd
))) {
2312 DPRINTK(DRIVER_NAME
": %s Optimum Power Calibration failed\n", pd
->name
);
2319 * called at open time.
2321 static int pkt_open_dev(struct pktcdvd_device
*pd
, int write
)
2325 struct request_queue
*q
;
2328 * We need to re-open the cdrom device without O_NONBLOCK to be able
2329 * to read/write from/to it. It is already opened in O_NONBLOCK mode
2330 * so bdget() can't fail.
2332 bdget(pd
->bdev
->bd_dev
);
2333 if ((ret
= blkdev_get(pd
->bdev
, FMODE_READ
, O_RDONLY
)))
2336 if ((ret
= bd_claim(pd
->bdev
, pd
)))
2339 if ((ret
= pkt_get_last_written(pd
, &lba
))) {
2340 printk(DRIVER_NAME
": pkt_get_last_written failed\n");
2344 set_capacity(pd
->disk
, lba
<< 2);
2345 set_capacity(pd
->bdev
->bd_disk
, lba
<< 2);
2346 bd_set_size(pd
->bdev
, (loff_t
)lba
<< 11);
2348 q
= bdev_get_queue(pd
->bdev
);
2350 if ((ret
= pkt_open_write(pd
)))
2353 * Some CDRW drives can not handle writes larger than one packet,
2354 * even if the size is a multiple of the packet size.
2356 spin_lock_irq(q
->queue_lock
);
2357 blk_queue_max_sectors(q
, pd
->settings
.size
);
2358 spin_unlock_irq(q
->queue_lock
);
2359 set_bit(PACKET_WRITABLE
, &pd
->flags
);
2361 pkt_set_speed(pd
, MAX_SPEED
, MAX_SPEED
);
2362 clear_bit(PACKET_WRITABLE
, &pd
->flags
);
2365 if ((ret
= pkt_set_segment_merging(pd
, q
)))
2369 if (!pkt_grow_pktlist(pd
, CONFIG_CDROM_PKTCDVD_BUFFERS
)) {
2370 printk(DRIVER_NAME
": not enough memory for buffers\n");
2374 printk(DRIVER_NAME
": %lukB available on disc\n", lba
<< 1);
2380 bd_release(pd
->bdev
);
2382 blkdev_put(pd
->bdev
);
2388 * called when the device is closed. makes sure that the device flushes
2389 * the internal cache before we close.
2391 static void pkt_release_dev(struct pktcdvd_device
*pd
, int flush
)
2393 if (flush
&& pkt_flush_cache(pd
))
2394 DPRINTK(DRIVER_NAME
": %s not flushing cache\n", pd
->name
);
2396 pkt_lock_door(pd
, 0);
2398 pkt_set_speed(pd
, MAX_SPEED
, MAX_SPEED
);
2399 bd_release(pd
->bdev
);
2400 blkdev_put(pd
->bdev
);
2402 pkt_shrink_pktlist(pd
);
2405 static struct pktcdvd_device
*pkt_find_dev_from_minor(int dev_minor
)
2407 if (dev_minor
>= MAX_WRITERS
)
2409 return pkt_devs
[dev_minor
];
2412 static int pkt_open(struct inode
*inode
, struct file
*file
)
2414 struct pktcdvd_device
*pd
= NULL
;
2417 VPRINTK(DRIVER_NAME
": entering open\n");
2419 mutex_lock(&ctl_mutex
);
2420 pd
= pkt_find_dev_from_minor(iminor(inode
));
2425 BUG_ON(pd
->refcnt
< 0);
2428 if (pd
->refcnt
> 1) {
2429 if ((file
->f_mode
& FMODE_WRITE
) &&
2430 !test_bit(PACKET_WRITABLE
, &pd
->flags
)) {
2435 ret
= pkt_open_dev(pd
, file
->f_mode
& FMODE_WRITE
);
2439 * needed here as well, since ext2 (among others) may change
2440 * the blocksize at mount time
2442 set_blocksize(inode
->i_bdev
, CD_FRAMESIZE
);
2445 mutex_unlock(&ctl_mutex
);
2451 VPRINTK(DRIVER_NAME
": failed open (%d)\n", ret
);
2452 mutex_unlock(&ctl_mutex
);
2456 static int pkt_close(struct inode
*inode
, struct file
*file
)
2458 struct pktcdvd_device
*pd
= inode
->i_bdev
->bd_disk
->private_data
;
2461 mutex_lock(&ctl_mutex
);
2463 BUG_ON(pd
->refcnt
< 0);
2464 if (pd
->refcnt
== 0) {
2465 int flush
= test_bit(PACKET_WRITABLE
, &pd
->flags
);
2466 pkt_release_dev(pd
, flush
);
2468 mutex_unlock(&ctl_mutex
);
2473 static void pkt_end_io_read_cloned(struct bio
*bio
, int err
)
2475 struct packet_stacked_data
*psd
= bio
->bi_private
;
2476 struct pktcdvd_device
*pd
= psd
->pd
;
2479 bio_endio(psd
->bio
, err
);
2480 mempool_free(psd
, psd_pool
);
2481 pkt_bio_finished(pd
);
2484 static int pkt_make_request(struct request_queue
*q
, struct bio
*bio
)
2486 struct pktcdvd_device
*pd
;
2487 char b
[BDEVNAME_SIZE
];
2489 struct packet_data
*pkt
;
2490 int was_empty
, blocked_bio
;
2491 struct pkt_rb_node
*node
;
2495 printk(DRIVER_NAME
": %s incorrect request queue\n", bdevname(bio
->bi_bdev
, b
));
2500 * Clone READ bios so we can have our own bi_end_io callback.
2502 if (bio_data_dir(bio
) == READ
) {
2503 struct bio
*cloned_bio
= bio_clone(bio
, GFP_NOIO
);
2504 struct packet_stacked_data
*psd
= mempool_alloc(psd_pool
, GFP_NOIO
);
2508 cloned_bio
->bi_bdev
= pd
->bdev
;
2509 cloned_bio
->bi_private
= psd
;
2510 cloned_bio
->bi_end_io
= pkt_end_io_read_cloned
;
2511 pd
->stats
.secs_r
+= bio
->bi_size
>> 9;
2512 pkt_queue_bio(pd
, cloned_bio
);
2516 if (!test_bit(PACKET_WRITABLE
, &pd
->flags
)) {
2517 printk(DRIVER_NAME
": WRITE for ro device %s (%llu)\n",
2518 pd
->name
, (unsigned long long)bio
->bi_sector
);
2522 if (!bio
->bi_size
|| (bio
->bi_size
% CD_FRAMESIZE
)) {
2523 printk(DRIVER_NAME
": wrong bio size\n");
2527 blk_queue_bounce(q
, &bio
);
2529 zone
= ZONE(bio
->bi_sector
, pd
);
2530 VPRINTK("pkt_make_request: start = %6llx stop = %6llx\n",
2531 (unsigned long long)bio
->bi_sector
,
2532 (unsigned long long)(bio
->bi_sector
+ bio_sectors(bio
)));
2534 /* Check if we have to split the bio */
2536 struct bio_pair
*bp
;
2540 last_zone
= ZONE(bio
->bi_sector
+ bio_sectors(bio
) - 1, pd
);
2541 if (last_zone
!= zone
) {
2542 BUG_ON(last_zone
!= zone
+ pd
->settings
.size
);
2543 first_sectors
= last_zone
- bio
->bi_sector
;
2544 bp
= bio_split(bio
, bio_split_pool
, first_sectors
);
2546 pkt_make_request(q
, &bp
->bio1
);
2547 pkt_make_request(q
, &bp
->bio2
);
2548 bio_pair_release(bp
);
2554 * If we find a matching packet in state WAITING or READ_WAIT, we can
2555 * just append this bio to that packet.
2557 spin_lock(&pd
->cdrw
.active_list_lock
);
2559 list_for_each_entry(pkt
, &pd
->cdrw
.pkt_active_list
, list
) {
2560 if (pkt
->sector
== zone
) {
2561 spin_lock(&pkt
->lock
);
2562 if ((pkt
->state
== PACKET_WAITING_STATE
) ||
2563 (pkt
->state
== PACKET_READ_WAIT_STATE
)) {
2564 pkt_add_list_last(bio
, &pkt
->orig_bios
,
2565 &pkt
->orig_bios_tail
);
2566 pkt
->write_size
+= bio
->bi_size
/ CD_FRAMESIZE
;
2567 if ((pkt
->write_size
>= pkt
->frames
) &&
2568 (pkt
->state
== PACKET_WAITING_STATE
)) {
2569 atomic_inc(&pkt
->run_sm
);
2570 wake_up(&pd
->wqueue
);
2572 spin_unlock(&pkt
->lock
);
2573 spin_unlock(&pd
->cdrw
.active_list_lock
);
2578 spin_unlock(&pkt
->lock
);
2581 spin_unlock(&pd
->cdrw
.active_list_lock
);
2584 * Test if there is enough room left in the bio work queue
2585 * (queue size >= congestion on mark).
2586 * If not, wait till the work queue size is below the congestion off mark.
2588 spin_lock(&pd
->lock
);
2589 if (pd
->write_congestion_on
> 0
2590 && pd
->bio_queue_size
>= pd
->write_congestion_on
) {
2591 set_bdi_congested(&q
->backing_dev_info
, WRITE
);
2593 spin_unlock(&pd
->lock
);
2594 congestion_wait(WRITE
, HZ
);
2595 spin_lock(&pd
->lock
);
2596 } while(pd
->bio_queue_size
> pd
->write_congestion_off
);
2598 spin_unlock(&pd
->lock
);
2601 * No matching packet found. Store the bio in the work queue.
2603 node
= mempool_alloc(pd
->rb_pool
, GFP_NOIO
);
2605 spin_lock(&pd
->lock
);
2606 BUG_ON(pd
->bio_queue_size
< 0);
2607 was_empty
= (pd
->bio_queue_size
== 0);
2608 pkt_rbtree_insert(pd
, node
);
2609 spin_unlock(&pd
->lock
);
2612 * Wake up the worker thread.
2614 atomic_set(&pd
->scan_queue
, 1);
2616 /* This wake_up is required for correct operation */
2617 wake_up(&pd
->wqueue
);
2618 } else if (!list_empty(&pd
->cdrw
.pkt_free_list
) && !blocked_bio
) {
2620 * This wake up is not required for correct operation,
2621 * but improves performance in some cases.
2623 wake_up(&pd
->wqueue
);
2633 static int pkt_merge_bvec(struct request_queue
*q
, struct bio
*bio
, struct bio_vec
*bvec
)
2635 struct pktcdvd_device
*pd
= q
->queuedata
;
2636 sector_t zone
= ZONE(bio
->bi_sector
, pd
);
2637 int used
= ((bio
->bi_sector
- zone
) << 9) + bio
->bi_size
;
2638 int remaining
= (pd
->settings
.size
<< 9) - used
;
2642 * A bio <= PAGE_SIZE must be allowed. If it crosses a packet
2643 * boundary, pkt_make_request() will split the bio.
2645 remaining2
= PAGE_SIZE
- bio
->bi_size
;
2646 remaining
= max(remaining
, remaining2
);
2648 BUG_ON(remaining
< 0);
2652 static void pkt_init_queue(struct pktcdvd_device
*pd
)
2654 struct request_queue
*q
= pd
->disk
->queue
;
2656 blk_queue_make_request(q
, pkt_make_request
);
2657 blk_queue_hardsect_size(q
, CD_FRAMESIZE
);
2658 blk_queue_max_sectors(q
, PACKET_MAX_SECTORS
);
2659 blk_queue_merge_bvec(q
, pkt_merge_bvec
);
2663 static int pkt_seq_show(struct seq_file
*m
, void *p
)
2665 struct pktcdvd_device
*pd
= m
->private;
2667 char bdev_buf
[BDEVNAME_SIZE
];
2668 int states
[PACKET_NUM_STATES
];
2670 seq_printf(m
, "Writer %s mapped to %s:\n", pd
->name
,
2671 bdevname(pd
->bdev
, bdev_buf
));
2673 seq_printf(m
, "\nSettings:\n");
2674 seq_printf(m
, "\tpacket size:\t\t%dkB\n", pd
->settings
.size
/ 2);
2676 if (pd
->settings
.write_type
== 0)
2680 seq_printf(m
, "\twrite type:\t\t%s\n", msg
);
2682 seq_printf(m
, "\tpacket type:\t\t%s\n", pd
->settings
.fp
? "Fixed" : "Variable");
2683 seq_printf(m
, "\tlink loss:\t\t%d\n", pd
->settings
.link_loss
);
2685 seq_printf(m
, "\ttrack mode:\t\t%d\n", pd
->settings
.track_mode
);
2687 if (pd
->settings
.block_mode
== PACKET_BLOCK_MODE1
)
2689 else if (pd
->settings
.block_mode
== PACKET_BLOCK_MODE2
)
2693 seq_printf(m
, "\tblock mode:\t\t%s\n", msg
);
2695 seq_printf(m
, "\nStatistics:\n");
2696 seq_printf(m
, "\tpackets started:\t%lu\n", pd
->stats
.pkt_started
);
2697 seq_printf(m
, "\tpackets ended:\t\t%lu\n", pd
->stats
.pkt_ended
);
2698 seq_printf(m
, "\twritten:\t\t%lukB\n", pd
->stats
.secs_w
>> 1);
2699 seq_printf(m
, "\tread gather:\t\t%lukB\n", pd
->stats
.secs_rg
>> 1);
2700 seq_printf(m
, "\tread:\t\t\t%lukB\n", pd
->stats
.secs_r
>> 1);
2702 seq_printf(m
, "\nMisc:\n");
2703 seq_printf(m
, "\treference count:\t%d\n", pd
->refcnt
);
2704 seq_printf(m
, "\tflags:\t\t\t0x%lx\n", pd
->flags
);
2705 seq_printf(m
, "\tread speed:\t\t%ukB/s\n", pd
->read_speed
);
2706 seq_printf(m
, "\twrite speed:\t\t%ukB/s\n", pd
->write_speed
);
2707 seq_printf(m
, "\tstart offset:\t\t%lu\n", pd
->offset
);
2708 seq_printf(m
, "\tmode page offset:\t%u\n", pd
->mode_offset
);
2710 seq_printf(m
, "\nQueue state:\n");
2711 seq_printf(m
, "\tbios queued:\t\t%d\n", pd
->bio_queue_size
);
2712 seq_printf(m
, "\tbios pending:\t\t%d\n", atomic_read(&pd
->cdrw
.pending_bios
));
2713 seq_printf(m
, "\tcurrent sector:\t\t0x%llx\n", (unsigned long long)pd
->current_sector
);
2715 pkt_count_states(pd
, states
);
2716 seq_printf(m
, "\tstate:\t\t\ti:%d ow:%d rw:%d ww:%d rec:%d fin:%d\n",
2717 states
[0], states
[1], states
[2], states
[3], states
[4], states
[5]);
2719 seq_printf(m
, "\twrite congestion marks:\toff=%d on=%d\n",
2720 pd
->write_congestion_off
,
2721 pd
->write_congestion_on
);
2725 static int pkt_seq_open(struct inode
*inode
, struct file
*file
)
2727 return single_open(file
, pkt_seq_show
, PDE(inode
)->data
);
2730 static const struct file_operations pkt_proc_fops
= {
2731 .open
= pkt_seq_open
,
2733 .llseek
= seq_lseek
,
2734 .release
= single_release
2737 static int pkt_new_dev(struct pktcdvd_device
*pd
, dev_t dev
)
2741 char b
[BDEVNAME_SIZE
];
2742 struct proc_dir_entry
*proc
;
2743 struct block_device
*bdev
;
2745 if (pd
->pkt_dev
== dev
) {
2746 printk(DRIVER_NAME
": Recursive setup not allowed\n");
2749 for (i
= 0; i
< MAX_WRITERS
; i
++) {
2750 struct pktcdvd_device
*pd2
= pkt_devs
[i
];
2753 if (pd2
->bdev
->bd_dev
== dev
) {
2754 printk(DRIVER_NAME
": %s already setup\n", bdevname(pd2
->bdev
, b
));
2757 if (pd2
->pkt_dev
== dev
) {
2758 printk(DRIVER_NAME
": Can't chain pktcdvd devices\n");
2766 ret
= blkdev_get(bdev
, FMODE_READ
, O_RDONLY
| O_NONBLOCK
);
2770 /* This is safe, since we have a reference from open(). */
2771 __module_get(THIS_MODULE
);
2774 set_blocksize(bdev
, CD_FRAMESIZE
);
2778 atomic_set(&pd
->cdrw
.pending_bios
, 0);
2779 pd
->cdrw
.thread
= kthread_run(kcdrwd
, pd
, "%s", pd
->name
);
2780 if (IS_ERR(pd
->cdrw
.thread
)) {
2781 printk(DRIVER_NAME
": can't start kernel thread\n");
2786 proc
= create_proc_entry(pd
->name
, 0, pkt_proc
);
2789 proc
->proc_fops
= &pkt_proc_fops
;
2791 DPRINTK(DRIVER_NAME
": writer %s mapped to %s\n", pd
->name
, bdevname(bdev
, b
));
2796 /* This is safe: open() is still holding a reference. */
2797 module_put(THIS_MODULE
);
2801 static int pkt_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
2803 struct pktcdvd_device
*pd
= inode
->i_bdev
->bd_disk
->private_data
;
2805 VPRINTK("pkt_ioctl: cmd %x, dev %d:%d\n", cmd
, imajor(inode
), iminor(inode
));
2809 * forward selected CDROM ioctls to CD-ROM, for UDF
2811 case CDROMMULTISESSION
:
2812 case CDROMREADTOCENTRY
:
2813 case CDROM_LAST_WRITTEN
:
2814 case CDROM_SEND_PACKET
:
2815 case SCSI_IOCTL_SEND_COMMAND
:
2816 return blkdev_ioctl(pd
->bdev
->bd_inode
, file
, cmd
, arg
);
2820 * The door gets locked when the device is opened, so we
2821 * have to unlock it or else the eject command fails.
2823 if (pd
->refcnt
== 1)
2824 pkt_lock_door(pd
, 0);
2825 return blkdev_ioctl(pd
->bdev
->bd_inode
, file
, cmd
, arg
);
2828 VPRINTK(DRIVER_NAME
": Unknown ioctl for %s (%x)\n", pd
->name
, cmd
);
2835 static int pkt_media_changed(struct gendisk
*disk
)
2837 struct pktcdvd_device
*pd
= disk
->private_data
;
2838 struct gendisk
*attached_disk
;
2844 attached_disk
= pd
->bdev
->bd_disk
;
2847 return attached_disk
->fops
->media_changed(attached_disk
);
2850 static struct block_device_operations pktcdvd_ops
= {
2851 .owner
= THIS_MODULE
,
2853 .release
= pkt_close
,
2855 .media_changed
= pkt_media_changed
,
2859 * Set up mapping from pktcdvd device to CD-ROM device.
2861 static int pkt_setup_dev(dev_t dev
, dev_t
* pkt_dev
)
2865 struct pktcdvd_device
*pd
;
2866 struct gendisk
*disk
;
2868 mutex_lock_nested(&ctl_mutex
, SINGLE_DEPTH_NESTING
);
2870 for (idx
= 0; idx
< MAX_WRITERS
; idx
++)
2873 if (idx
== MAX_WRITERS
) {
2874 printk(DRIVER_NAME
": max %d writers supported\n", MAX_WRITERS
);
2879 pd
= kzalloc(sizeof(struct pktcdvd_device
), GFP_KERNEL
);
2883 pd
->rb_pool
= mempool_create_kmalloc_pool(PKT_RB_POOL_SIZE
,
2884 sizeof(struct pkt_rb_node
));
2888 INIT_LIST_HEAD(&pd
->cdrw
.pkt_free_list
);
2889 INIT_LIST_HEAD(&pd
->cdrw
.pkt_active_list
);
2890 spin_lock_init(&pd
->cdrw
.active_list_lock
);
2892 spin_lock_init(&pd
->lock
);
2893 spin_lock_init(&pd
->iosched
.lock
);
2894 sprintf(pd
->name
, DRIVER_NAME
"%d", idx
);
2895 init_waitqueue_head(&pd
->wqueue
);
2896 pd
->bio_queue
= RB_ROOT
;
2898 pd
->write_congestion_on
= write_congestion_on
;
2899 pd
->write_congestion_off
= write_congestion_off
;
2901 disk
= alloc_disk(1);
2905 disk
->major
= pktdev_major
;
2906 disk
->first_minor
= idx
;
2907 disk
->fops
= &pktcdvd_ops
;
2908 disk
->flags
= GENHD_FL_REMOVABLE
;
2909 strcpy(disk
->disk_name
, pd
->name
);
2910 disk
->private_data
= pd
;
2911 disk
->queue
= blk_alloc_queue(GFP_KERNEL
);
2915 pd
->pkt_dev
= MKDEV(disk
->major
, disk
->first_minor
);
2916 ret
= pkt_new_dev(pd
, dev
);
2922 pkt_sysfs_dev_new(pd
);
2923 pkt_debugfs_dev_new(pd
);
2927 *pkt_dev
= pd
->pkt_dev
;
2929 mutex_unlock(&ctl_mutex
);
2933 blk_cleanup_queue(disk
->queue
);
2938 mempool_destroy(pd
->rb_pool
);
2941 mutex_unlock(&ctl_mutex
);
2942 printk(DRIVER_NAME
": setup of pktcdvd device failed\n");
2947 * Tear down mapping from pktcdvd device to CD-ROM device.
2949 static int pkt_remove_dev(dev_t pkt_dev
)
2951 struct pktcdvd_device
*pd
;
2955 mutex_lock_nested(&ctl_mutex
, SINGLE_DEPTH_NESTING
);
2957 for (idx
= 0; idx
< MAX_WRITERS
; idx
++) {
2959 if (pd
&& (pd
->pkt_dev
== pkt_dev
))
2962 if (idx
== MAX_WRITERS
) {
2963 DPRINTK(DRIVER_NAME
": dev not setup\n");
2968 if (pd
->refcnt
> 0) {
2972 if (!IS_ERR(pd
->cdrw
.thread
))
2973 kthread_stop(pd
->cdrw
.thread
);
2975 pkt_devs
[idx
] = NULL
;
2977 pkt_debugfs_dev_remove(pd
);
2978 pkt_sysfs_dev_remove(pd
);
2980 blkdev_put(pd
->bdev
);
2982 remove_proc_entry(pd
->name
, pkt_proc
);
2983 DPRINTK(DRIVER_NAME
": writer %s unmapped\n", pd
->name
);
2985 del_gendisk(pd
->disk
);
2986 blk_cleanup_queue(pd
->disk
->queue
);
2989 mempool_destroy(pd
->rb_pool
);
2992 /* This is safe: open() is still holding a reference. */
2993 module_put(THIS_MODULE
);
2996 mutex_unlock(&ctl_mutex
);
3000 static void pkt_get_status(struct pkt_ctrl_command
*ctrl_cmd
)
3002 struct pktcdvd_device
*pd
;
3004 mutex_lock_nested(&ctl_mutex
, SINGLE_DEPTH_NESTING
);
3006 pd
= pkt_find_dev_from_minor(ctrl_cmd
->dev_index
);
3008 ctrl_cmd
->dev
= new_encode_dev(pd
->bdev
->bd_dev
);
3009 ctrl_cmd
->pkt_dev
= new_encode_dev(pd
->pkt_dev
);
3012 ctrl_cmd
->pkt_dev
= 0;
3014 ctrl_cmd
->num_devices
= MAX_WRITERS
;
3016 mutex_unlock(&ctl_mutex
);
3019 static int pkt_ctl_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
3021 void __user
*argp
= (void __user
*)arg
;
3022 struct pkt_ctrl_command ctrl_cmd
;
3026 if (cmd
!= PACKET_CTRL_CMD
)
3029 if (copy_from_user(&ctrl_cmd
, argp
, sizeof(struct pkt_ctrl_command
)))
3032 switch (ctrl_cmd
.command
) {
3033 case PKT_CTRL_CMD_SETUP
:
3034 if (!capable(CAP_SYS_ADMIN
))
3036 ret
= pkt_setup_dev(new_decode_dev(ctrl_cmd
.dev
), &pkt_dev
);
3037 ctrl_cmd
.pkt_dev
= new_encode_dev(pkt_dev
);
3039 case PKT_CTRL_CMD_TEARDOWN
:
3040 if (!capable(CAP_SYS_ADMIN
))
3042 ret
= pkt_remove_dev(new_decode_dev(ctrl_cmd
.pkt_dev
));
3044 case PKT_CTRL_CMD_STATUS
:
3045 pkt_get_status(&ctrl_cmd
);
3051 if (copy_to_user(argp
, &ctrl_cmd
, sizeof(struct pkt_ctrl_command
)))
3057 static const struct file_operations pkt_ctl_fops
= {
3058 .ioctl
= pkt_ctl_ioctl
,
3059 .owner
= THIS_MODULE
,
3062 static struct miscdevice pkt_misc
= {
3063 .minor
= MISC_DYNAMIC_MINOR
,
3064 .name
= DRIVER_NAME
,
3065 .fops
= &pkt_ctl_fops
3068 static int __init
pkt_init(void)
3072 mutex_init(&ctl_mutex
);
3074 psd_pool
= mempool_create_kmalloc_pool(PSD_POOL_SIZE
,
3075 sizeof(struct packet_stacked_data
));
3079 ret
= register_blkdev(pktdev_major
, DRIVER_NAME
);
3081 printk(DRIVER_NAME
": Unable to register block device\n");
3087 ret
= pkt_sysfs_init();
3093 ret
= misc_register(&pkt_misc
);
3095 printk(DRIVER_NAME
": Unable to register misc device\n");
3099 pkt_proc
= proc_mkdir(DRIVER_NAME
, proc_root_driver
);
3104 pkt_debugfs_cleanup();
3105 pkt_sysfs_cleanup();
3107 unregister_blkdev(pktdev_major
, DRIVER_NAME
);
3109 mempool_destroy(psd_pool
);
3113 static void __exit
pkt_exit(void)
3115 remove_proc_entry(DRIVER_NAME
, proc_root_driver
);
3116 misc_deregister(&pkt_misc
);
3118 pkt_debugfs_cleanup();
3119 pkt_sysfs_cleanup();
3121 unregister_blkdev(pktdev_major
, DRIVER_NAME
);
3122 mempool_destroy(psd_pool
);
3125 MODULE_DESCRIPTION("Packet writing layer for CD/DVD drives");
3126 MODULE_AUTHOR("Jens Axboe <axboe@suse.de>");
3127 MODULE_LICENSE("GPL");
3129 module_init(pkt_init
);
3130 module_exit(pkt_exit
);