2 * Copyright (C) 2000 Jens Axboe <axboe@suse.de>
3 * Copyright (C) 2001-2004 Peter Osterlund <petero2@telia.com>
5 * May be copied or modified under the terms of the GNU General Public
6 * License. See linux/COPYING for more information.
8 * Packet writing layer for ATAPI and SCSI CD-R, CD-RW, DVD-R, and
9 * DVD-RW devices (aka an exercise in block layer masturbation)
12 * TODO: (circa order of when I will fix it)
13 * - Only able to write on CD-RW media right now.
14 * - check host application code on media and set it in write page
15 * - interface for UDF <-> packet to negotiate a new location when a write
17 * - handle OPC, especially for -RW media
19 * Theory of operation:
21 * We use a custom make_request_fn function that forwards reads directly to
22 * the underlying CD device. Write requests are either attached directly to
23 * a live packet_data object, or simply stored sequentially in a list for
24 * later processing by the kcdrwd kernel thread. This driver doesn't use
25 * any elevator functionally as defined by the elevator_s struct, but the
26 * underlying CD device uses a standard elevator.
28 * This strategy makes it possible to do very late merging of IO requests.
29 * A new bio sent to pkt_make_request can be merged with a live packet_data
30 * object even if the object is in the data gathering state.
32 *************************************************************************/
34 #define VERSION_CODE "v0.2.0a 2004-07-14 Jens Axboe (axboe@suse.de) and petero2@telia.com"
36 #include <linux/pktcdvd.h>
37 #include <linux/config.h>
38 #include <linux/module.h>
39 #include <linux/types.h>
40 #include <linux/kernel.h>
41 #include <linux/kthread.h>
42 #include <linux/errno.h>
43 #include <linux/spinlock.h>
44 #include <linux/file.h>
45 #include <linux/proc_fs.h>
46 #include <linux/seq_file.h>
47 #include <linux/miscdevice.h>
48 #include <linux/suspend.h>
49 #include <scsi/scsi_cmnd.h>
50 #include <scsi/scsi_ioctl.h>
52 #include <asm/uaccess.h>
55 #define DPRINTK(fmt, args...) printk(KERN_NOTICE fmt, ##args)
57 #define DPRINTK(fmt, args...)
61 #define VPRINTK(fmt, args...) printk(KERN_NOTICE fmt, ##args)
63 #define VPRINTK(fmt, args...)
66 #define MAX_SPEED 0xffff
68 #define ZONE(sector, pd) (((sector) + (pd)->offset) & ~((pd)->settings.size - 1))
70 static struct pktcdvd_device *pkt_devs[MAX_WRITERS];
71 static struct proc_dir_entry *pkt_proc;
73 static struct semaphore ctl_mutex; /* Serialize open/close/setup/teardown */
74 static mempool_t *psd_pool;
77 static void pkt_bio_finished(struct pktcdvd_device *pd)
79 BUG_ON(atomic_read(&pd->cdrw.pending_bios) <= 0);
80 if (atomic_dec_and_test(&pd->cdrw.pending_bios)) {
81 VPRINTK("pktcdvd: queue empty\n");
82 atomic_set(&pd->iosched.attention, 1);
87 static void pkt_bio_destructor(struct bio *bio)
89 kfree(bio->bi_io_vec);
93 static struct bio *pkt_bio_alloc(int nr_iovecs)
95 struct bio_vec *bvl = NULL;
98 bio = kmalloc(sizeof(struct bio), GFP_KERNEL);
103 bvl = kmalloc(nr_iovecs * sizeof(struct bio_vec), GFP_KERNEL);
106 memset(bvl, 0, nr_iovecs * sizeof(struct bio_vec));
108 bio->bi_max_vecs = nr_iovecs;
109 bio->bi_io_vec = bvl;
110 bio->bi_destructor = pkt_bio_destructor;
121 * Allocate a packet_data struct
123 static struct packet_data *pkt_alloc_packet_data(void)
126 struct packet_data *pkt;
128 pkt = kmalloc(sizeof(struct packet_data), GFP_KERNEL);
131 memset(pkt, 0, sizeof(struct packet_data));
133 pkt->w_bio = pkt_bio_alloc(PACKET_MAX_SIZE);
137 for (i = 0; i < PAGES_PER_PACKET; i++) {
138 pkt->pages[i] = alloc_page(GFP_KERNEL|__GFP_ZERO);
143 spin_lock_init(&pkt->lock);
145 for (i = 0; i < PACKET_MAX_SIZE; i++) {
146 struct bio *bio = pkt_bio_alloc(1);
149 pkt->r_bios[i] = bio;
155 for (i = 0; i < PACKET_MAX_SIZE; i++) {
156 struct bio *bio = pkt->r_bios[i];
162 for (i = 0; i < PAGES_PER_PACKET; i++)
164 __free_page(pkt->pages[i]);
173 * Free a packet_data struct
175 static void pkt_free_packet_data(struct packet_data *pkt)
179 for (i = 0; i < PACKET_MAX_SIZE; i++) {
180 struct bio *bio = pkt->r_bios[i];
184 for (i = 0; i < PAGES_PER_PACKET; i++)
185 __free_page(pkt->pages[i]);
190 static void pkt_shrink_pktlist(struct pktcdvd_device *pd)
192 struct packet_data *pkt, *next;
194 BUG_ON(!list_empty(&pd->cdrw.pkt_active_list));
196 list_for_each_entry_safe(pkt, next, &pd->cdrw.pkt_free_list, list) {
197 pkt_free_packet_data(pkt);
201 static int pkt_grow_pktlist(struct pktcdvd_device *pd, int nr_packets)
203 struct packet_data *pkt;
205 INIT_LIST_HEAD(&pd->cdrw.pkt_free_list);
206 INIT_LIST_HEAD(&pd->cdrw.pkt_active_list);
207 spin_lock_init(&pd->cdrw.active_list_lock);
208 while (nr_packets > 0) {
209 pkt = pkt_alloc_packet_data();
211 pkt_shrink_pktlist(pd);
214 pkt->id = nr_packets;
216 list_add(&pkt->list, &pd->cdrw.pkt_free_list);
222 static void *pkt_rb_alloc(unsigned int __nocast gfp_mask, void *data)
224 return kmalloc(sizeof(struct pkt_rb_node), gfp_mask);
227 static void pkt_rb_free(void *ptr, void *data)
232 static inline struct pkt_rb_node *pkt_rbtree_next(struct pkt_rb_node *node)
234 struct rb_node *n = rb_next(&node->rb_node);
237 return rb_entry(n, struct pkt_rb_node, rb_node);
240 static inline void pkt_rbtree_erase(struct pktcdvd_device *pd, struct pkt_rb_node *node)
242 rb_erase(&node->rb_node, &pd->bio_queue);
243 mempool_free(node, pd->rb_pool);
244 pd->bio_queue_size--;
245 BUG_ON(pd->bio_queue_size < 0);
249 * Find the first node in the pd->bio_queue rb tree with a starting sector >= s.
251 static struct pkt_rb_node *pkt_rbtree_find(struct pktcdvd_device *pd, sector_t s)
253 struct rb_node *n = pd->bio_queue.rb_node;
254 struct rb_node *next;
255 struct pkt_rb_node *tmp;
258 BUG_ON(pd->bio_queue_size > 0);
263 tmp = rb_entry(n, struct pkt_rb_node, rb_node);
264 if (s <= tmp->bio->bi_sector)
273 if (s > tmp->bio->bi_sector) {
274 tmp = pkt_rbtree_next(tmp);
278 BUG_ON(s > tmp->bio->bi_sector);
283 * Insert a node into the pd->bio_queue rb tree.
285 static void pkt_rbtree_insert(struct pktcdvd_device *pd, struct pkt_rb_node *node)
287 struct rb_node **p = &pd->bio_queue.rb_node;
288 struct rb_node *parent = NULL;
289 sector_t s = node->bio->bi_sector;
290 struct pkt_rb_node *tmp;
294 tmp = rb_entry(parent, struct pkt_rb_node, rb_node);
295 if (s < tmp->bio->bi_sector)
300 rb_link_node(&node->rb_node, parent, p);
301 rb_insert_color(&node->rb_node, &pd->bio_queue);
302 pd->bio_queue_size++;
306 * Add a bio to a single linked list defined by its head and tail pointers.
308 static inline void pkt_add_list_last(struct bio *bio, struct bio **list_head, struct bio **list_tail)
312 BUG_ON((*list_head) == NULL);
313 (*list_tail)->bi_next = bio;
316 BUG_ON((*list_head) != NULL);
323 * Remove and return the first bio from a single linked list defined by its
324 * head and tail pointers.
326 static inline struct bio *pkt_get_list_first(struct bio **list_head, struct bio **list_tail)
330 if (*list_head == NULL)
334 *list_head = bio->bi_next;
335 if (*list_head == NULL)
343 * Send a packet_command to the underlying block device and
344 * wait for completion.
346 static int pkt_generic_packet(struct pktcdvd_device *pd, struct packet_command *cgc)
348 char sense[SCSI_SENSE_BUFFERSIZE];
351 DECLARE_COMPLETION(wait);
354 q = bdev_get_queue(pd->bdev);
356 rq = blk_get_request(q, (cgc->data_direction == CGC_DATA_WRITE) ? WRITE : READ,
359 rq->rq_disk = pd->bdev->bd_disk;
363 rq->data = cgc->buffer;
364 rq->data_len = cgc->buflen;
366 memset(sense, 0, sizeof(sense));
368 rq->flags |= REQ_BLOCK_PC | REQ_HARDBARRIER;
370 rq->flags |= REQ_QUIET;
371 memcpy(rq->cmd, cgc->cmd, CDROM_PACKET_SIZE);
372 if (sizeof(rq->cmd) > CDROM_PACKET_SIZE)
373 memset(rq->cmd + CDROM_PACKET_SIZE, 0, sizeof(rq->cmd) - CDROM_PACKET_SIZE);
376 rq->flags |= REQ_NOMERGE;
378 rq->end_io = blk_end_sync_rq;
379 elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 1);
380 generic_unplug_device(q);
381 wait_for_completion(&wait);
391 * A generic sense dump / resolve mechanism should be implemented across
392 * all ATAPI + SCSI devices.
394 static void pkt_dump_sense(struct packet_command *cgc)
396 static char *info[9] = { "No sense", "Recovered error", "Not ready",
397 "Medium error", "Hardware error", "Illegal request",
398 "Unit attention", "Data protect", "Blank check" };
400 struct request_sense *sense = cgc->sense;
403 for (i = 0; i < CDROM_PACKET_SIZE; i++)
404 printk(" %02x", cgc->cmd[i]);
408 printk("no sense\n");
412 printk("sense %02x.%02x.%02x", sense->sense_key, sense->asc, sense->ascq);
414 if (sense->sense_key > 8) {
415 printk(" (INVALID)\n");
419 printk(" (%s)\n", info[sense->sense_key]);
423 * flush the drive cache to media
425 static int pkt_flush_cache(struct pktcdvd_device *pd)
427 struct packet_command cgc;
429 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
430 cgc.cmd[0] = GPCMD_FLUSH_CACHE;
434 * the IMMED bit -- we default to not setting it, although that
435 * would allow a much faster close, this is safer
440 return pkt_generic_packet(pd, &cgc);
444 * speed is given as the normal factor, e.g. 4 for 4x
446 static int pkt_set_speed(struct pktcdvd_device *pd, unsigned write_speed, unsigned read_speed)
448 struct packet_command cgc;
449 struct request_sense sense;
452 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
454 cgc.cmd[0] = GPCMD_SET_SPEED;
455 cgc.cmd[2] = (read_speed >> 8) & 0xff;
456 cgc.cmd[3] = read_speed & 0xff;
457 cgc.cmd[4] = (write_speed >> 8) & 0xff;
458 cgc.cmd[5] = write_speed & 0xff;
460 if ((ret = pkt_generic_packet(pd, &cgc)))
461 pkt_dump_sense(&cgc);
467 * Queue a bio for processing by the low-level CD device. Must be called
468 * from process context.
470 static void pkt_queue_bio(struct pktcdvd_device *pd, struct bio *bio, int high_prio_read)
472 spin_lock(&pd->iosched.lock);
473 if (bio_data_dir(bio) == READ) {
474 pkt_add_list_last(bio, &pd->iosched.read_queue,
475 &pd->iosched.read_queue_tail);
477 pd->iosched.high_prio_read = 1;
479 pkt_add_list_last(bio, &pd->iosched.write_queue,
480 &pd->iosched.write_queue_tail);
482 spin_unlock(&pd->iosched.lock);
484 atomic_set(&pd->iosched.attention, 1);
485 wake_up(&pd->wqueue);
489 * Process the queued read/write requests. This function handles special
490 * requirements for CDRW drives:
491 * - A cache flush command must be inserted before a read request if the
492 * previous request was a write.
493 * - Switching between reading and writing is slow, so don't it more often
495 * - Set the read speed according to current usage pattern. When only reading
496 * from the device, it's best to use the highest possible read speed, but
497 * when switching often between reading and writing, it's better to have the
498 * same read and write speeds.
499 * - Reads originating from user space should have higher priority than reads
500 * originating from pkt_gather_data, because some process is usually waiting
501 * on reads of the first kind.
503 static void pkt_iosched_process_queue(struct pktcdvd_device *pd)
507 if (atomic_read(&pd->iosched.attention) == 0)
509 atomic_set(&pd->iosched.attention, 0);
511 q = bdev_get_queue(pd->bdev);
515 int reads_queued, writes_queued, high_prio_read;
517 spin_lock(&pd->iosched.lock);
518 reads_queued = (pd->iosched.read_queue != NULL);
519 writes_queued = (pd->iosched.write_queue != NULL);
521 pd->iosched.high_prio_read = 0;
522 high_prio_read = pd->iosched.high_prio_read;
523 spin_unlock(&pd->iosched.lock);
525 if (!reads_queued && !writes_queued)
528 if (pd->iosched.writing) {
529 if (high_prio_read || (!writes_queued && reads_queued)) {
530 if (atomic_read(&pd->cdrw.pending_bios) > 0) {
531 VPRINTK("pktcdvd: write, waiting\n");
535 pd->iosched.writing = 0;
538 if (!reads_queued && writes_queued) {
539 if (atomic_read(&pd->cdrw.pending_bios) > 0) {
540 VPRINTK("pktcdvd: read, waiting\n");
543 pd->iosched.writing = 1;
547 spin_lock(&pd->iosched.lock);
548 if (pd->iosched.writing) {
549 bio = pkt_get_list_first(&pd->iosched.write_queue,
550 &pd->iosched.write_queue_tail);
552 bio = pkt_get_list_first(&pd->iosched.read_queue,
553 &pd->iosched.read_queue_tail);
555 spin_unlock(&pd->iosched.lock);
560 if (bio_data_dir(bio) == READ)
561 pd->iosched.successive_reads += bio->bi_size >> 10;
563 pd->iosched.successive_reads = 0;
564 if (pd->iosched.successive_reads >= HI_SPEED_SWITCH) {
565 if (pd->read_speed == pd->write_speed) {
566 pd->read_speed = MAX_SPEED;
567 pkt_set_speed(pd, pd->write_speed, pd->read_speed);
570 if (pd->read_speed != pd->write_speed) {
571 pd->read_speed = pd->write_speed;
572 pkt_set_speed(pd, pd->write_speed, pd->read_speed);
576 atomic_inc(&pd->cdrw.pending_bios);
577 generic_make_request(bio);
582 * Special care is needed if the underlying block device has a small
583 * max_phys_segments value.
585 static int pkt_set_segment_merging(struct pktcdvd_device *pd, request_queue_t *q)
587 if ((pd->settings.size << 9) / CD_FRAMESIZE <= q->max_phys_segments) {
589 * The cdrom device can handle one segment/frame
591 clear_bit(PACKET_MERGE_SEGS, &pd->flags);
593 } else if ((pd->settings.size << 9) / PAGE_SIZE <= q->max_phys_segments) {
595 * We can handle this case at the expense of some extra memory
596 * copies during write operations
598 set_bit(PACKET_MERGE_SEGS, &pd->flags);
601 printk("pktcdvd: cdrom max_phys_segments too small\n");
607 * Copy CD_FRAMESIZE bytes from src_bio into a destination page
609 static void pkt_copy_bio_data(struct bio *src_bio, int seg, int offs, struct page *dst_page, int dst_offs)
611 unsigned int copy_size = CD_FRAMESIZE;
613 while (copy_size > 0) {
614 struct bio_vec *src_bvl = bio_iovec_idx(src_bio, seg);
615 void *vfrom = kmap_atomic(src_bvl->bv_page, KM_USER0) +
616 src_bvl->bv_offset + offs;
617 void *vto = page_address(dst_page) + dst_offs;
618 int len = min_t(int, copy_size, src_bvl->bv_len - offs);
621 memcpy(vto, vfrom, len);
622 kunmap_atomic(vfrom, KM_USER0);
632 * Copy all data for this packet to pkt->pages[], so that
633 * a) The number of required segments for the write bio is minimized, which
634 * is necessary for some scsi controllers.
635 * b) The data can be used as cache to avoid read requests if we receive a
636 * new write request for the same zone.
638 static void pkt_make_local_copy(struct packet_data *pkt, struct page **pages, int *offsets)
642 /* Copy all data to pkt->pages[] */
645 for (f = 0; f < pkt->frames; f++) {
646 if (pages[f] != pkt->pages[p]) {
647 void *vfrom = kmap_atomic(pages[f], KM_USER0) + offsets[f];
648 void *vto = page_address(pkt->pages[p]) + offs;
649 memcpy(vto, vfrom, CD_FRAMESIZE);
650 kunmap_atomic(vfrom, KM_USER0);
651 pages[f] = pkt->pages[p];
654 BUG_ON(offsets[f] != offs);
656 offs += CD_FRAMESIZE;
657 if (offs >= PAGE_SIZE) {
658 BUG_ON(offs > PAGE_SIZE);
665 static int pkt_end_io_read(struct bio *bio, unsigned int bytes_done, int err)
667 struct packet_data *pkt = bio->bi_private;
668 struct pktcdvd_device *pd = pkt->pd;
674 VPRINTK("pkt_end_io_read: bio=%p sec0=%llx sec=%llx err=%d\n", bio,
675 (unsigned long long)pkt->sector, (unsigned long long)bio->bi_sector, err);
678 atomic_inc(&pkt->io_errors);
679 if (atomic_dec_and_test(&pkt->io_wait)) {
680 atomic_inc(&pkt->run_sm);
681 wake_up(&pd->wqueue);
683 pkt_bio_finished(pd);
688 static int pkt_end_io_packet_write(struct bio *bio, unsigned int bytes_done, int err)
690 struct packet_data *pkt = bio->bi_private;
691 struct pktcdvd_device *pd = pkt->pd;
697 VPRINTK("pkt_end_io_packet_write: id=%d, err=%d\n", pkt->id, err);
699 pd->stats.pkt_ended++;
701 pkt_bio_finished(pd);
702 atomic_dec(&pkt->io_wait);
703 atomic_inc(&pkt->run_sm);
704 wake_up(&pd->wqueue);
709 * Schedule reads for the holes in a packet
711 static void pkt_gather_data(struct pktcdvd_device *pd, struct packet_data *pkt)
716 char written[PACKET_MAX_SIZE];
718 BUG_ON(!pkt->orig_bios);
720 atomic_set(&pkt->io_wait, 0);
721 atomic_set(&pkt->io_errors, 0);
723 if (pkt->cache_valid) {
724 VPRINTK("pkt_gather_data: zone %llx cached\n",
725 (unsigned long long)pkt->sector);
730 * Figure out which frames we need to read before we can write.
732 memset(written, 0, sizeof(written));
733 spin_lock(&pkt->lock);
734 for (bio = pkt->orig_bios; bio; bio = bio->bi_next) {
735 int first_frame = (bio->bi_sector - pkt->sector) / (CD_FRAMESIZE >> 9);
736 int num_frames = bio->bi_size / CD_FRAMESIZE;
737 BUG_ON(first_frame < 0);
738 BUG_ON(first_frame + num_frames > pkt->frames);
739 for (f = first_frame; f < first_frame + num_frames; f++)
742 spin_unlock(&pkt->lock);
745 * Schedule reads for missing parts of the packet.
747 for (f = 0; f < pkt->frames; f++) {
751 bio = pkt->r_bios[f];
753 bio->bi_max_vecs = 1;
754 bio->bi_sector = pkt->sector + f * (CD_FRAMESIZE >> 9);
755 bio->bi_bdev = pd->bdev;
756 bio->bi_end_io = pkt_end_io_read;
757 bio->bi_private = pkt;
759 p = (f * CD_FRAMESIZE) / PAGE_SIZE;
760 offset = (f * CD_FRAMESIZE) % PAGE_SIZE;
761 VPRINTK("pkt_gather_data: Adding frame %d, page:%p offs:%d\n",
762 f, pkt->pages[p], offset);
763 if (!bio_add_page(bio, pkt->pages[p], CD_FRAMESIZE, offset))
766 atomic_inc(&pkt->io_wait);
768 pkt_queue_bio(pd, bio, 0);
773 VPRINTK("pkt_gather_data: need %d frames for zone %llx\n",
774 frames_read, (unsigned long long)pkt->sector);
775 pd->stats.pkt_started++;
776 pd->stats.secs_rg += frames_read * (CD_FRAMESIZE >> 9);
777 pd->stats.secs_w += pd->settings.size;
781 * Find a packet matching zone, or the least recently used packet if
784 static struct packet_data *pkt_get_packet_data(struct pktcdvd_device *pd, int zone)
786 struct packet_data *pkt;
788 list_for_each_entry(pkt, &pd->cdrw.pkt_free_list, list) {
789 if (pkt->sector == zone || pkt->list.next == &pd->cdrw.pkt_free_list) {
790 list_del_init(&pkt->list);
791 if (pkt->sector != zone)
792 pkt->cache_valid = 0;
799 static void pkt_put_packet_data(struct pktcdvd_device *pd, struct packet_data *pkt)
801 if (pkt->cache_valid) {
802 list_add(&pkt->list, &pd->cdrw.pkt_free_list);
804 list_add_tail(&pkt->list, &pd->cdrw.pkt_free_list);
809 * recover a failed write, query for relocation if possible
811 * returns 1 if recovery is possible, or 0 if not
814 static int pkt_start_recovery(struct packet_data *pkt)
817 * FIXME. We need help from the file system to implement
822 struct request *rq = pkt->rq;
823 struct pktcdvd_device *pd = rq->rq_disk->private_data;
824 struct block_device *pkt_bdev;
825 struct super_block *sb = NULL;
826 unsigned long old_block, new_block;
829 pkt_bdev = bdget(kdev_t_to_nr(pd->pkt_dev));
831 sb = get_super(pkt_bdev);
838 if (!sb->s_op || !sb->s_op->relocate_blocks)
841 old_block = pkt->sector / (CD_FRAMESIZE >> 9);
842 if (sb->s_op->relocate_blocks(sb, old_block, &new_block))
845 new_sector = new_block * (CD_FRAMESIZE >> 9);
846 pkt->sector = new_sector;
848 pkt->bio->bi_sector = new_sector;
849 pkt->bio->bi_next = NULL;
850 pkt->bio->bi_flags = 1 << BIO_UPTODATE;
851 pkt->bio->bi_idx = 0;
853 BUG_ON(pkt->bio->bi_rw != (1 << BIO_RW));
854 BUG_ON(pkt->bio->bi_vcnt != pkt->frames);
855 BUG_ON(pkt->bio->bi_size != pkt->frames * CD_FRAMESIZE);
856 BUG_ON(pkt->bio->bi_end_io != pkt_end_io_packet_write);
857 BUG_ON(pkt->bio->bi_private != pkt);
868 static inline void pkt_set_state(struct packet_data *pkt, enum packet_data_state state)
871 static const char *state_name[] = {
872 "IDLE", "WAITING", "READ_WAIT", "WRITE_WAIT", "RECOVERY", "FINISHED"
874 enum packet_data_state old_state = pkt->state;
875 VPRINTK("pkt %2d : s=%6llx %s -> %s\n", pkt->id, (unsigned long long)pkt->sector,
876 state_name[old_state], state_name[state]);
882 * Scan the work queue to see if we can start a new packet.
883 * returns non-zero if any work was done.
885 static int pkt_handle_queue(struct pktcdvd_device *pd)
887 struct packet_data *pkt, *p;
888 struct bio *bio = NULL;
889 sector_t zone = 0; /* Suppress gcc warning */
890 struct pkt_rb_node *node, *first_node;
893 VPRINTK("handle_queue\n");
895 atomic_set(&pd->scan_queue, 0);
897 if (list_empty(&pd->cdrw.pkt_free_list)) {
898 VPRINTK("handle_queue: no pkt\n");
903 * Try to find a zone we are not already working on.
905 spin_lock(&pd->lock);
906 first_node = pkt_rbtree_find(pd, pd->current_sector);
908 n = rb_first(&pd->bio_queue);
910 first_node = rb_entry(n, struct pkt_rb_node, rb_node);
915 zone = ZONE(bio->bi_sector, pd);
916 list_for_each_entry(p, &pd->cdrw.pkt_active_list, list) {
917 if (p->sector == zone) {
924 node = pkt_rbtree_next(node);
926 n = rb_first(&pd->bio_queue);
928 node = rb_entry(n, struct pkt_rb_node, rb_node);
930 if (node == first_node)
933 spin_unlock(&pd->lock);
935 VPRINTK("handle_queue: no bio\n");
939 pkt = pkt_get_packet_data(pd, zone);
942 pd->current_sector = zone + pd->settings.size;
944 pkt->frames = pd->settings.size >> 2;
945 BUG_ON(pkt->frames > PACKET_MAX_SIZE);
949 * Scan work queue for bios in the same zone and link them
952 spin_lock(&pd->lock);
953 VPRINTK("pkt_handle_queue: looking for zone %llx\n", (unsigned long long)zone);
954 while ((node = pkt_rbtree_find(pd, zone)) != NULL) {
956 VPRINTK("pkt_handle_queue: found zone=%llx\n",
957 (unsigned long long)ZONE(bio->bi_sector, pd));
958 if (ZONE(bio->bi_sector, pd) != zone)
960 pkt_rbtree_erase(pd, node);
961 spin_lock(&pkt->lock);
962 pkt_add_list_last(bio, &pkt->orig_bios, &pkt->orig_bios_tail);
963 pkt->write_size += bio->bi_size / CD_FRAMESIZE;
964 spin_unlock(&pkt->lock);
966 spin_unlock(&pd->lock);
968 pkt->sleep_time = max(PACKET_WAIT_TIME, 1);
969 pkt_set_state(pkt, PACKET_WAITING_STATE);
970 atomic_set(&pkt->run_sm, 1);
972 spin_lock(&pd->cdrw.active_list_lock);
973 list_add(&pkt->list, &pd->cdrw.pkt_active_list);
974 spin_unlock(&pd->cdrw.active_list_lock);
980 * Assemble a bio to write one packet and queue the bio for processing
981 * by the underlying block device.
983 static void pkt_start_write(struct pktcdvd_device *pd, struct packet_data *pkt)
986 struct page *pages[PACKET_MAX_SIZE];
987 int offsets[PACKET_MAX_SIZE];
991 for (f = 0; f < pkt->frames; f++) {
992 pages[f] = pkt->pages[(f * CD_FRAMESIZE) / PAGE_SIZE];
993 offsets[f] = (f * CD_FRAMESIZE) % PAGE_SIZE;
997 * Fill-in pages[] and offsets[] with data from orig_bios.
1000 spin_lock(&pkt->lock);
1001 for (bio = pkt->orig_bios; bio; bio = bio->bi_next) {
1002 int segment = bio->bi_idx;
1004 int first_frame = (bio->bi_sector - pkt->sector) / (CD_FRAMESIZE >> 9);
1005 int num_frames = bio->bi_size / CD_FRAMESIZE;
1006 BUG_ON(first_frame < 0);
1007 BUG_ON(first_frame + num_frames > pkt->frames);
1008 for (f = first_frame; f < first_frame + num_frames; f++) {
1009 struct bio_vec *src_bvl = bio_iovec_idx(bio, segment);
1011 while (src_offs >= src_bvl->bv_len) {
1012 src_offs -= src_bvl->bv_len;
1014 BUG_ON(segment >= bio->bi_vcnt);
1015 src_bvl = bio_iovec_idx(bio, segment);
1018 if (src_bvl->bv_len - src_offs >= CD_FRAMESIZE) {
1019 pages[f] = src_bvl->bv_page;
1020 offsets[f] = src_bvl->bv_offset + src_offs;
1022 pkt_copy_bio_data(bio, segment, src_offs,
1023 pages[f], offsets[f]);
1025 src_offs += CD_FRAMESIZE;
1029 pkt_set_state(pkt, PACKET_WRITE_WAIT_STATE);
1030 spin_unlock(&pkt->lock);
1032 VPRINTK("pkt_start_write: Writing %d frames for zone %llx\n",
1033 frames_write, (unsigned long long)pkt->sector);
1034 BUG_ON(frames_write != pkt->write_size);
1036 if (test_bit(PACKET_MERGE_SEGS, &pd->flags) || (pkt->write_size < pkt->frames)) {
1037 pkt_make_local_copy(pkt, pages, offsets);
1038 pkt->cache_valid = 1;
1040 pkt->cache_valid = 0;
1043 /* Start the write request */
1044 bio_init(pkt->w_bio);
1045 pkt->w_bio->bi_max_vecs = PACKET_MAX_SIZE;
1046 pkt->w_bio->bi_sector = pkt->sector;
1047 pkt->w_bio->bi_bdev = pd->bdev;
1048 pkt->w_bio->bi_end_io = pkt_end_io_packet_write;
1049 pkt->w_bio->bi_private = pkt;
1050 for (f = 0; f < pkt->frames; f++) {
1051 if ((f + 1 < pkt->frames) && (pages[f + 1] == pages[f]) &&
1052 (offsets[f + 1] = offsets[f] + CD_FRAMESIZE)) {
1053 if (!bio_add_page(pkt->w_bio, pages[f], CD_FRAMESIZE * 2, offsets[f]))
1057 if (!bio_add_page(pkt->w_bio, pages[f], CD_FRAMESIZE, offsets[f]))
1061 VPRINTK("pktcdvd: vcnt=%d\n", pkt->w_bio->bi_vcnt);
1063 atomic_set(&pkt->io_wait, 1);
1064 pkt->w_bio->bi_rw = WRITE;
1065 pkt_queue_bio(pd, pkt->w_bio, 0);
1068 static void pkt_finish_packet(struct packet_data *pkt, int uptodate)
1070 struct bio *bio, *next;
1073 pkt->cache_valid = 0;
1075 /* Finish all bios corresponding to this packet */
1076 bio = pkt->orig_bios;
1078 next = bio->bi_next;
1079 bio->bi_next = NULL;
1080 bio_endio(bio, bio->bi_size, uptodate ? 0 : -EIO);
1083 pkt->orig_bios = pkt->orig_bios_tail = NULL;
1086 static void pkt_run_state_machine(struct pktcdvd_device *pd, struct packet_data *pkt)
1090 VPRINTK("run_state_machine: pkt %d\n", pkt->id);
1093 switch (pkt->state) {
1094 case PACKET_WAITING_STATE:
1095 if ((pkt->write_size < pkt->frames) && (pkt->sleep_time > 0))
1098 pkt->sleep_time = 0;
1099 pkt_gather_data(pd, pkt);
1100 pkt_set_state(pkt, PACKET_READ_WAIT_STATE);
1103 case PACKET_READ_WAIT_STATE:
1104 if (atomic_read(&pkt->io_wait) > 0)
1107 if (atomic_read(&pkt->io_errors) > 0) {
1108 pkt_set_state(pkt, PACKET_RECOVERY_STATE);
1110 pkt_start_write(pd, pkt);
1114 case PACKET_WRITE_WAIT_STATE:
1115 if (atomic_read(&pkt->io_wait) > 0)
1118 if (test_bit(BIO_UPTODATE, &pkt->w_bio->bi_flags)) {
1119 pkt_set_state(pkt, PACKET_FINISHED_STATE);
1121 pkt_set_state(pkt, PACKET_RECOVERY_STATE);
1125 case PACKET_RECOVERY_STATE:
1126 if (pkt_start_recovery(pkt)) {
1127 pkt_start_write(pd, pkt);
1129 VPRINTK("No recovery possible\n");
1130 pkt_set_state(pkt, PACKET_FINISHED_STATE);
1134 case PACKET_FINISHED_STATE:
1135 uptodate = test_bit(BIO_UPTODATE, &pkt->w_bio->bi_flags);
1136 pkt_finish_packet(pkt, uptodate);
1146 static void pkt_handle_packets(struct pktcdvd_device *pd)
1148 struct packet_data *pkt, *next;
1150 VPRINTK("pkt_handle_packets\n");
1153 * Run state machine for active packets
1155 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1156 if (atomic_read(&pkt->run_sm) > 0) {
1157 atomic_set(&pkt->run_sm, 0);
1158 pkt_run_state_machine(pd, pkt);
1163 * Move no longer active packets to the free list
1165 spin_lock(&pd->cdrw.active_list_lock);
1166 list_for_each_entry_safe(pkt, next, &pd->cdrw.pkt_active_list, list) {
1167 if (pkt->state == PACKET_FINISHED_STATE) {
1168 list_del(&pkt->list);
1169 pkt_put_packet_data(pd, pkt);
1170 pkt_set_state(pkt, PACKET_IDLE_STATE);
1171 atomic_set(&pd->scan_queue, 1);
1174 spin_unlock(&pd->cdrw.active_list_lock);
1177 static void pkt_count_states(struct pktcdvd_device *pd, int *states)
1179 struct packet_data *pkt;
1182 for (i = 0; i <= PACKET_NUM_STATES; i++)
1185 spin_lock(&pd->cdrw.active_list_lock);
1186 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1187 states[pkt->state]++;
1189 spin_unlock(&pd->cdrw.active_list_lock);
1193 * kcdrwd is woken up when writes have been queued for one of our
1194 * registered devices
1196 static int kcdrwd(void *foobar)
1198 struct pktcdvd_device *pd = foobar;
1199 struct packet_data *pkt;
1200 long min_sleep_time, residue;
1202 set_user_nice(current, -20);
1205 DECLARE_WAITQUEUE(wait, current);
1208 * Wait until there is something to do
1210 add_wait_queue(&pd->wqueue, &wait);
1212 set_current_state(TASK_INTERRUPTIBLE);
1214 /* Check if we need to run pkt_handle_queue */
1215 if (atomic_read(&pd->scan_queue) > 0)
1218 /* Check if we need to run the state machine for some packet */
1219 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1220 if (atomic_read(&pkt->run_sm) > 0)
1224 /* Check if we need to process the iosched queues */
1225 if (atomic_read(&pd->iosched.attention) != 0)
1228 /* Otherwise, go to sleep */
1229 if (PACKET_DEBUG > 1) {
1230 int states[PACKET_NUM_STATES];
1231 pkt_count_states(pd, states);
1232 VPRINTK("kcdrwd: i:%d ow:%d rw:%d ww:%d rec:%d fin:%d\n",
1233 states[0], states[1], states[2], states[3],
1234 states[4], states[5]);
1237 min_sleep_time = MAX_SCHEDULE_TIMEOUT;
1238 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1239 if (pkt->sleep_time && pkt->sleep_time < min_sleep_time)
1240 min_sleep_time = pkt->sleep_time;
1243 generic_unplug_device(bdev_get_queue(pd->bdev));
1245 VPRINTK("kcdrwd: sleeping\n");
1246 residue = schedule_timeout(min_sleep_time);
1247 VPRINTK("kcdrwd: wake up\n");
1249 /* make swsusp happy with our thread */
1250 if (current->flags & PF_FREEZE)
1251 refrigerator(PF_FREEZE);
1253 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
1254 if (!pkt->sleep_time)
1256 pkt->sleep_time -= min_sleep_time - residue;
1257 if (pkt->sleep_time <= 0) {
1258 pkt->sleep_time = 0;
1259 atomic_inc(&pkt->run_sm);
1263 if (signal_pending(current)) {
1264 flush_signals(current);
1266 if (kthread_should_stop())
1270 set_current_state(TASK_RUNNING);
1271 remove_wait_queue(&pd->wqueue, &wait);
1273 if (kthread_should_stop())
1277 * if pkt_handle_queue returns true, we can queue
1280 while (pkt_handle_queue(pd))
1284 * Handle packet state machine
1286 pkt_handle_packets(pd);
1289 * Handle iosched queues
1291 pkt_iosched_process_queue(pd);
1297 static void pkt_print_settings(struct pktcdvd_device *pd)
1299 printk("pktcdvd: %s packets, ", pd->settings.fp ? "Fixed" : "Variable");
1300 printk("%u blocks, ", pd->settings.size >> 2);
1301 printk("Mode-%c disc\n", pd->settings.block_mode == 8 ? '1' : '2');
1304 static int pkt_mode_sense(struct pktcdvd_device *pd, struct packet_command *cgc, int page_code, int page_control)
1306 memset(cgc->cmd, 0, sizeof(cgc->cmd));
1308 cgc->cmd[0] = GPCMD_MODE_SENSE_10;
1309 cgc->cmd[2] = page_code | (page_control << 6);
1310 cgc->cmd[7] = cgc->buflen >> 8;
1311 cgc->cmd[8] = cgc->buflen & 0xff;
1312 cgc->data_direction = CGC_DATA_READ;
1313 return pkt_generic_packet(pd, cgc);
1316 static int pkt_mode_select(struct pktcdvd_device *pd, struct packet_command *cgc)
1318 memset(cgc->cmd, 0, sizeof(cgc->cmd));
1319 memset(cgc->buffer, 0, 2);
1320 cgc->cmd[0] = GPCMD_MODE_SELECT_10;
1321 cgc->cmd[1] = 0x10; /* PF */
1322 cgc->cmd[7] = cgc->buflen >> 8;
1323 cgc->cmd[8] = cgc->buflen & 0xff;
1324 cgc->data_direction = CGC_DATA_WRITE;
1325 return pkt_generic_packet(pd, cgc);
1328 static int pkt_get_disc_info(struct pktcdvd_device *pd, disc_information *di)
1330 struct packet_command cgc;
1333 /* set up command and get the disc info */
1334 init_cdrom_command(&cgc, di, sizeof(*di), CGC_DATA_READ);
1335 cgc.cmd[0] = GPCMD_READ_DISC_INFO;
1336 cgc.cmd[8] = cgc.buflen = 2;
1339 if ((ret = pkt_generic_packet(pd, &cgc)))
1342 /* not all drives have the same disc_info length, so requeue
1343 * packet with the length the drive tells us it can supply
1345 cgc.buflen = be16_to_cpu(di->disc_information_length) +
1346 sizeof(di->disc_information_length);
1348 if (cgc.buflen > sizeof(disc_information))
1349 cgc.buflen = sizeof(disc_information);
1351 cgc.cmd[8] = cgc.buflen;
1352 return pkt_generic_packet(pd, &cgc);
1355 static int pkt_get_track_info(struct pktcdvd_device *pd, __u16 track, __u8 type, track_information *ti)
1357 struct packet_command cgc;
1360 init_cdrom_command(&cgc, ti, 8, CGC_DATA_READ);
1361 cgc.cmd[0] = GPCMD_READ_TRACK_RZONE_INFO;
1362 cgc.cmd[1] = type & 3;
1363 cgc.cmd[4] = (track & 0xff00) >> 8;
1364 cgc.cmd[5] = track & 0xff;
1368 if ((ret = pkt_generic_packet(pd, &cgc)))
1371 cgc.buflen = be16_to_cpu(ti->track_information_length) +
1372 sizeof(ti->track_information_length);
1374 if (cgc.buflen > sizeof(track_information))
1375 cgc.buflen = sizeof(track_information);
1377 cgc.cmd[8] = cgc.buflen;
1378 return pkt_generic_packet(pd, &cgc);
1381 static int pkt_get_last_written(struct pktcdvd_device *pd, long *last_written)
1383 disc_information di;
1384 track_information ti;
1388 if ((ret = pkt_get_disc_info(pd, &di)))
1391 last_track = (di.last_track_msb << 8) | di.last_track_lsb;
1392 if ((ret = pkt_get_track_info(pd, last_track, 1, &ti)))
1395 /* if this track is blank, try the previous. */
1398 if ((ret = pkt_get_track_info(pd, last_track, 1, &ti)))
1402 /* if last recorded field is valid, return it. */
1404 *last_written = be32_to_cpu(ti.last_rec_address);
1406 /* make it up instead */
1407 *last_written = be32_to_cpu(ti.track_start) +
1408 be32_to_cpu(ti.track_size);
1410 *last_written -= (be32_to_cpu(ti.free_blocks) + 7);
1416 * write mode select package based on pd->settings
1418 static int pkt_set_write_settings(struct pktcdvd_device *pd)
1420 struct packet_command cgc;
1421 struct request_sense sense;
1422 write_param_page *wp;
1426 /* doesn't apply to DVD+RW or DVD-RAM */
1427 if ((pd->mmc3_profile == 0x1a) || (pd->mmc3_profile == 0x12))
1430 memset(buffer, 0, sizeof(buffer));
1431 init_cdrom_command(&cgc, buffer, sizeof(*wp), CGC_DATA_READ);
1433 if ((ret = pkt_mode_sense(pd, &cgc, GPMODE_WRITE_PARMS_PAGE, 0))) {
1434 pkt_dump_sense(&cgc);
1438 size = 2 + ((buffer[0] << 8) | (buffer[1] & 0xff));
1439 pd->mode_offset = (buffer[6] << 8) | (buffer[7] & 0xff);
1440 if (size > sizeof(buffer))
1441 size = sizeof(buffer);
1446 init_cdrom_command(&cgc, buffer, size, CGC_DATA_READ);
1448 if ((ret = pkt_mode_sense(pd, &cgc, GPMODE_WRITE_PARMS_PAGE, 0))) {
1449 pkt_dump_sense(&cgc);
1454 * write page is offset header + block descriptor length
1456 wp = (write_param_page *) &buffer[sizeof(struct mode_page_header) + pd->mode_offset];
1458 wp->fp = pd->settings.fp;
1459 wp->track_mode = pd->settings.track_mode;
1460 wp->write_type = pd->settings.write_type;
1461 wp->data_block_type = pd->settings.block_mode;
1463 wp->multi_session = 0;
1465 #ifdef PACKET_USE_LS
1470 if (wp->data_block_type == PACKET_BLOCK_MODE1) {
1471 wp->session_format = 0;
1473 } else if (wp->data_block_type == PACKET_BLOCK_MODE2) {
1474 wp->session_format = 0x20;
1478 memcpy(&wp->mcn[1], PACKET_MCN, sizeof(wp->mcn) - 1);
1484 printk("pktcdvd: write mode wrong %d\n", wp->data_block_type);
1487 wp->packet_size = cpu_to_be32(pd->settings.size >> 2);
1489 cgc.buflen = cgc.cmd[8] = size;
1490 if ((ret = pkt_mode_select(pd, &cgc))) {
1491 pkt_dump_sense(&cgc);
1495 pkt_print_settings(pd);
1500 * 0 -- we can write to this track, 1 -- we can't
1502 static int pkt_good_track(track_information *ti)
1505 * only good for CD-RW at the moment, not DVD-RW
1509 * FIXME: only for FP
1515 * "good" settings as per Mt Fuji.
1517 if (ti->rt == 0 && ti->blank == 0 && ti->packet == 1)
1520 if (ti->rt == 0 && ti->blank == 1 && ti->packet == 1)
1523 if (ti->rt == 1 && ti->blank == 0 && ti->packet == 1)
1526 printk("pktcdvd: bad state %d-%d-%d\n", ti->rt, ti->blank, ti->packet);
1531 * 0 -- we can write to this disc, 1 -- we can't
1533 static int pkt_good_disc(struct pktcdvd_device *pd, disc_information *di)
1535 switch (pd->mmc3_profile) {
1536 case 0x0a: /* CD-RW */
1537 case 0xffff: /* MMC3 not supported */
1539 case 0x1a: /* DVD+RW */
1540 case 0x13: /* DVD-RW */
1541 case 0x12: /* DVD-RAM */
1544 printk("pktcdvd: Wrong disc profile (%x)\n", pd->mmc3_profile);
1549 * for disc type 0xff we should probably reserve a new track.
1550 * but i'm not sure, should we leave this to user apps? probably.
1552 if (di->disc_type == 0xff) {
1553 printk("pktcdvd: Unknown disc. No track?\n");
1557 if (di->disc_type != 0x20 && di->disc_type != 0) {
1558 printk("pktcdvd: Wrong disc type (%x)\n", di->disc_type);
1562 if (di->erasable == 0) {
1563 printk("pktcdvd: Disc not erasable\n");
1567 if (di->border_status == PACKET_SESSION_RESERVED) {
1568 printk("pktcdvd: Can't write to last track (reserved)\n");
1575 static int pkt_probe_settings(struct pktcdvd_device *pd)
1577 struct packet_command cgc;
1578 unsigned char buf[12];
1579 disc_information di;
1580 track_information ti;
1583 init_cdrom_command(&cgc, buf, sizeof(buf), CGC_DATA_READ);
1584 cgc.cmd[0] = GPCMD_GET_CONFIGURATION;
1586 ret = pkt_generic_packet(pd, &cgc);
1587 pd->mmc3_profile = ret ? 0xffff : buf[6] << 8 | buf[7];
1589 memset(&di, 0, sizeof(disc_information));
1590 memset(&ti, 0, sizeof(track_information));
1592 if ((ret = pkt_get_disc_info(pd, &di))) {
1593 printk("failed get_disc\n");
1597 if (pkt_good_disc(pd, &di))
1600 switch (pd->mmc3_profile) {
1601 case 0x1a: /* DVD+RW */
1602 printk("pktcdvd: inserted media is DVD+RW\n");
1604 case 0x13: /* DVD-RW */
1605 printk("pktcdvd: inserted media is DVD-RW\n");
1607 case 0x12: /* DVD-RAM */
1608 printk("pktcdvd: inserted media is DVD-RAM\n");
1611 printk("pktcdvd: inserted media is CD-R%s\n", di.erasable ? "W" : "");
1614 pd->type = di.erasable ? PACKET_CDRW : PACKET_CDR;
1616 track = 1; /* (di.last_track_msb << 8) | di.last_track_lsb; */
1617 if ((ret = pkt_get_track_info(pd, track, 1, &ti))) {
1618 printk("pktcdvd: failed get_track\n");
1622 if (pkt_good_track(&ti)) {
1623 printk("pktcdvd: can't write to this track\n");
1628 * we keep packet size in 512 byte units, makes it easier to
1629 * deal with request calculations.
1631 pd->settings.size = be32_to_cpu(ti.fixed_packet_size) << 2;
1632 if (pd->settings.size == 0) {
1633 printk("pktcdvd: detected zero packet size!\n");
1634 pd->settings.size = 128;
1636 pd->settings.fp = ti.fp;
1637 pd->offset = (be32_to_cpu(ti.track_start) << 2) & (pd->settings.size - 1);
1640 pd->nwa = be32_to_cpu(ti.next_writable);
1641 set_bit(PACKET_NWA_VALID, &pd->flags);
1645 * in theory we could use lra on -RW media as well and just zero
1646 * blocks that haven't been written yet, but in practice that
1647 * is just a no-go. we'll use that for -R, naturally.
1650 pd->lra = be32_to_cpu(ti.last_rec_address);
1651 set_bit(PACKET_LRA_VALID, &pd->flags);
1653 pd->lra = 0xffffffff;
1654 set_bit(PACKET_LRA_VALID, &pd->flags);
1660 pd->settings.link_loss = 7;
1661 pd->settings.write_type = 0; /* packet */
1662 pd->settings.track_mode = ti.track_mode;
1665 * mode1 or mode2 disc
1667 switch (ti.data_mode) {
1669 pd->settings.block_mode = PACKET_BLOCK_MODE1;
1672 pd->settings.block_mode = PACKET_BLOCK_MODE2;
1675 printk("pktcdvd: unknown data mode\n");
1682 * enable/disable write caching on drive
1684 static int pkt_write_caching(struct pktcdvd_device *pd, int set)
1686 struct packet_command cgc;
1687 struct request_sense sense;
1688 unsigned char buf[64];
1691 memset(buf, 0, sizeof(buf));
1692 init_cdrom_command(&cgc, buf, sizeof(buf), CGC_DATA_READ);
1694 cgc.buflen = pd->mode_offset + 12;
1697 * caching mode page might not be there, so quiet this command
1701 if ((ret = pkt_mode_sense(pd, &cgc, GPMODE_WCACHING_PAGE, 0)))
1704 buf[pd->mode_offset + 10] |= (!!set << 2);
1706 cgc.buflen = cgc.cmd[8] = 2 + ((buf[0] << 8) | (buf[1] & 0xff));
1707 ret = pkt_mode_select(pd, &cgc);
1709 printk("pktcdvd: write caching control failed\n");
1710 pkt_dump_sense(&cgc);
1711 } else if (!ret && set)
1712 printk("pktcdvd: enabled write caching on %s\n", pd->name);
1716 static int pkt_lock_door(struct pktcdvd_device *pd, int lockflag)
1718 struct packet_command cgc;
1720 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
1721 cgc.cmd[0] = GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL;
1722 cgc.cmd[4] = lockflag ? 1 : 0;
1723 return pkt_generic_packet(pd, &cgc);
1727 * Returns drive maximum write speed
1729 static int pkt_get_max_speed(struct pktcdvd_device *pd, unsigned *write_speed)
1731 struct packet_command cgc;
1732 struct request_sense sense;
1733 unsigned char buf[256+18];
1734 unsigned char *cap_buf;
1737 memset(buf, 0, sizeof(buf));
1738 cap_buf = &buf[sizeof(struct mode_page_header) + pd->mode_offset];
1739 init_cdrom_command(&cgc, buf, sizeof(buf), CGC_DATA_UNKNOWN);
1742 ret = pkt_mode_sense(pd, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1744 cgc.buflen = pd->mode_offset + cap_buf[1] + 2 +
1745 sizeof(struct mode_page_header);
1746 ret = pkt_mode_sense(pd, &cgc, GPMODE_CAPABILITIES_PAGE, 0);
1748 pkt_dump_sense(&cgc);
1753 offset = 20; /* Obsoleted field, used by older drives */
1754 if (cap_buf[1] >= 28)
1755 offset = 28; /* Current write speed selected */
1756 if (cap_buf[1] >= 30) {
1757 /* If the drive reports at least one "Logical Unit Write
1758 * Speed Performance Descriptor Block", use the information
1759 * in the first block. (contains the highest speed)
1761 int num_spdb = (cap_buf[30] << 8) + cap_buf[31];
1766 *write_speed = (cap_buf[offset] << 8) | cap_buf[offset + 1];
1770 /* These tables from cdrecord - I don't have orange book */
1771 /* standard speed CD-RW (1-4x) */
1772 static char clv_to_speed[16] = {
1773 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
1774 0, 2, 4, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
1776 /* high speed CD-RW (-10x) */
1777 static char hs_clv_to_speed[16] = {
1778 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
1779 0, 2, 4, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
1781 /* ultra high speed CD-RW */
1782 static char us_clv_to_speed[16] = {
1783 /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 */
1784 0, 2, 4, 8, 0, 0,16, 0,24,32,40,48, 0, 0, 0, 0
1788 * reads the maximum media speed from ATIP
1790 static int pkt_media_speed(struct pktcdvd_device *pd, unsigned *speed)
1792 struct packet_command cgc;
1793 struct request_sense sense;
1794 unsigned char buf[64];
1795 unsigned int size, st, sp;
1798 init_cdrom_command(&cgc, buf, 2, CGC_DATA_READ);
1800 cgc.cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1802 cgc.cmd[2] = 4; /* READ ATIP */
1804 ret = pkt_generic_packet(pd, &cgc);
1806 pkt_dump_sense(&cgc);
1809 size = ((unsigned int) buf[0]<<8) + buf[1] + 2;
1810 if (size > sizeof(buf))
1813 init_cdrom_command(&cgc, buf, size, CGC_DATA_READ);
1815 cgc.cmd[0] = GPCMD_READ_TOC_PMA_ATIP;
1819 ret = pkt_generic_packet(pd, &cgc);
1821 pkt_dump_sense(&cgc);
1825 if (!buf[6] & 0x40) {
1826 printk("pktcdvd: Disc type is not CD-RW\n");
1829 if (!buf[6] & 0x4) {
1830 printk("pktcdvd: A1 values on media are not valid, maybe not CDRW?\n");
1834 st = (buf[6] >> 3) & 0x7; /* disc sub-type */
1836 sp = buf[16] & 0xf; /* max speed from ATIP A1 field */
1838 /* Info from cdrecord */
1840 case 0: /* standard speed */
1841 *speed = clv_to_speed[sp];
1843 case 1: /* high speed */
1844 *speed = hs_clv_to_speed[sp];
1846 case 2: /* ultra high speed */
1847 *speed = us_clv_to_speed[sp];
1850 printk("pktcdvd: Unknown disc sub-type %d\n",st);
1854 printk("pktcdvd: Max. media speed: %d\n",*speed);
1857 printk("pktcdvd: Unknown speed %d for sub-type %d\n",sp,st);
1862 static int pkt_perform_opc(struct pktcdvd_device *pd)
1864 struct packet_command cgc;
1865 struct request_sense sense;
1868 VPRINTK("pktcdvd: Performing OPC\n");
1870 init_cdrom_command(&cgc, NULL, 0, CGC_DATA_NONE);
1872 cgc.timeout = 60*HZ;
1873 cgc.cmd[0] = GPCMD_SEND_OPC;
1875 if ((ret = pkt_generic_packet(pd, &cgc)))
1876 pkt_dump_sense(&cgc);
1880 static int pkt_open_write(struct pktcdvd_device *pd)
1883 unsigned int write_speed, media_write_speed, read_speed;
1885 if ((ret = pkt_probe_settings(pd))) {
1886 DPRINTK("pktcdvd: %s failed probe\n", pd->name);
1890 if ((ret = pkt_set_write_settings(pd))) {
1891 DPRINTK("pktcdvd: %s failed saving write settings\n", pd->name);
1895 pkt_write_caching(pd, USE_WCACHING);
1897 if ((ret = pkt_get_max_speed(pd, &write_speed)))
1898 write_speed = 16 * 177;
1899 switch (pd->mmc3_profile) {
1900 case 0x13: /* DVD-RW */
1901 case 0x1a: /* DVD+RW */
1902 case 0x12: /* DVD-RAM */
1903 DPRINTK("pktcdvd: write speed %ukB/s\n", write_speed);
1906 if ((ret = pkt_media_speed(pd, &media_write_speed)))
1907 media_write_speed = 16;
1908 write_speed = min(write_speed, media_write_speed * 177);
1909 DPRINTK("pktcdvd: write speed %ux\n", write_speed / 176);
1912 read_speed = write_speed;
1914 if ((ret = pkt_set_speed(pd, write_speed, read_speed))) {
1915 DPRINTK("pktcdvd: %s couldn't set write speed\n", pd->name);
1918 pd->write_speed = write_speed;
1919 pd->read_speed = read_speed;
1921 if ((ret = pkt_perform_opc(pd))) {
1922 DPRINTK("pktcdvd: %s Optimum Power Calibration failed\n", pd->name);
1929 * called at open time.
1931 static int pkt_open_dev(struct pktcdvd_device *pd, int write)
1938 * We need to re-open the cdrom device without O_NONBLOCK to be able
1939 * to read/write from/to it. It is already opened in O_NONBLOCK mode
1940 * so bdget() can't fail.
1942 bdget(pd->bdev->bd_dev);
1943 if ((ret = blkdev_get(pd->bdev, FMODE_READ, O_RDONLY)))
1946 if ((ret = pkt_get_last_written(pd, &lba))) {
1947 printk("pktcdvd: pkt_get_last_written failed\n");
1951 set_capacity(pd->disk, lba << 2);
1952 set_capacity(pd->bdev->bd_disk, lba << 2);
1953 bd_set_size(pd->bdev, (loff_t)lba << 11);
1955 q = bdev_get_queue(pd->bdev);
1957 if ((ret = pkt_open_write(pd)))
1960 * Some CDRW drives can not handle writes larger than one packet,
1961 * even if the size is a multiple of the packet size.
1963 spin_lock_irq(q->queue_lock);
1964 blk_queue_max_sectors(q, pd->settings.size);
1965 spin_unlock_irq(q->queue_lock);
1966 set_bit(PACKET_WRITABLE, &pd->flags);
1968 pkt_set_speed(pd, MAX_SPEED, MAX_SPEED);
1969 clear_bit(PACKET_WRITABLE, &pd->flags);
1972 if ((ret = pkt_set_segment_merging(pd, q)))
1976 printk("pktcdvd: %lukB available on disc\n", lba << 1);
1981 blkdev_put(pd->bdev);
1987 * called when the device is closed. makes sure that the device flushes
1988 * the internal cache before we close.
1990 static void pkt_release_dev(struct pktcdvd_device *pd, int flush)
1992 if (flush && pkt_flush_cache(pd))
1993 DPRINTK("pktcdvd: %s not flushing cache\n", pd->name);
1995 pkt_lock_door(pd, 0);
1997 pkt_set_speed(pd, MAX_SPEED, MAX_SPEED);
1998 blkdev_put(pd->bdev);
2001 static struct pktcdvd_device *pkt_find_dev_from_minor(int dev_minor)
2003 if (dev_minor >= MAX_WRITERS)
2005 return pkt_devs[dev_minor];
2008 static int pkt_open(struct inode *inode, struct file *file)
2010 struct pktcdvd_device *pd = NULL;
2013 VPRINTK("pktcdvd: entering open\n");
2016 pd = pkt_find_dev_from_minor(iminor(inode));
2021 BUG_ON(pd->refcnt < 0);
2024 if (pd->refcnt == 1) {
2025 if (pkt_open_dev(pd, file->f_mode & FMODE_WRITE)) {
2030 * needed here as well, since ext2 (among others) may change
2031 * the blocksize at mount time
2033 set_blocksize(inode->i_bdev, CD_FRAMESIZE);
2042 VPRINTK("pktcdvd: failed open (%d)\n", ret);
2047 static int pkt_close(struct inode *inode, struct file *file)
2049 struct pktcdvd_device *pd = inode->i_bdev->bd_disk->private_data;
2054 BUG_ON(pd->refcnt < 0);
2055 if (pd->refcnt == 0) {
2056 int flush = test_bit(PACKET_WRITABLE, &pd->flags);
2057 pkt_release_dev(pd, flush);
2064 static void *psd_pool_alloc(unsigned int __nocast gfp_mask, void *data)
2066 return kmalloc(sizeof(struct packet_stacked_data), gfp_mask);
2069 static void psd_pool_free(void *ptr, void *data)
2074 static int pkt_end_io_read_cloned(struct bio *bio, unsigned int bytes_done, int err)
2076 struct packet_stacked_data *psd = bio->bi_private;
2077 struct pktcdvd_device *pd = psd->pd;
2083 bio_endio(psd->bio, psd->bio->bi_size, err);
2084 mempool_free(psd, psd_pool);
2085 pkt_bio_finished(pd);
2089 static int pkt_make_request(request_queue_t *q, struct bio *bio)
2091 struct pktcdvd_device *pd;
2092 char b[BDEVNAME_SIZE];
2094 struct packet_data *pkt;
2095 int was_empty, blocked_bio;
2096 struct pkt_rb_node *node;
2100 printk("pktcdvd: %s incorrect request queue\n", bdevname(bio->bi_bdev, b));
2105 * Clone READ bios so we can have our own bi_end_io callback.
2107 if (bio_data_dir(bio) == READ) {
2108 struct bio *cloned_bio = bio_clone(bio, GFP_NOIO);
2109 struct packet_stacked_data *psd = mempool_alloc(psd_pool, GFP_NOIO);
2113 cloned_bio->bi_bdev = pd->bdev;
2114 cloned_bio->bi_private = psd;
2115 cloned_bio->bi_end_io = pkt_end_io_read_cloned;
2116 pd->stats.secs_r += bio->bi_size >> 9;
2117 pkt_queue_bio(pd, cloned_bio, 1);
2121 if (!test_bit(PACKET_WRITABLE, &pd->flags)) {
2122 printk("pktcdvd: WRITE for ro device %s (%llu)\n",
2123 pd->name, (unsigned long long)bio->bi_sector);
2127 if (!bio->bi_size || (bio->bi_size % CD_FRAMESIZE)) {
2128 printk("pktcdvd: wrong bio size\n");
2132 blk_queue_bounce(q, &bio);
2134 zone = ZONE(bio->bi_sector, pd);
2135 VPRINTK("pkt_make_request: start = %6llx stop = %6llx\n",
2136 (unsigned long long)bio->bi_sector,
2137 (unsigned long long)(bio->bi_sector + bio_sectors(bio)));
2139 /* Check if we have to split the bio */
2141 struct bio_pair *bp;
2145 last_zone = ZONE(bio->bi_sector + bio_sectors(bio) - 1, pd);
2146 if (last_zone != zone) {
2147 BUG_ON(last_zone != zone + pd->settings.size);
2148 first_sectors = last_zone - bio->bi_sector;
2149 bp = bio_split(bio, bio_split_pool, first_sectors);
2151 pkt_make_request(q, &bp->bio1);
2152 pkt_make_request(q, &bp->bio2);
2153 bio_pair_release(bp);
2159 * If we find a matching packet in state WAITING or READ_WAIT, we can
2160 * just append this bio to that packet.
2162 spin_lock(&pd->cdrw.active_list_lock);
2164 list_for_each_entry(pkt, &pd->cdrw.pkt_active_list, list) {
2165 if (pkt->sector == zone) {
2166 spin_lock(&pkt->lock);
2167 if ((pkt->state == PACKET_WAITING_STATE) ||
2168 (pkt->state == PACKET_READ_WAIT_STATE)) {
2169 pkt_add_list_last(bio, &pkt->orig_bios,
2170 &pkt->orig_bios_tail);
2171 pkt->write_size += bio->bi_size / CD_FRAMESIZE;
2172 if ((pkt->write_size >= pkt->frames) &&
2173 (pkt->state == PACKET_WAITING_STATE)) {
2174 atomic_inc(&pkt->run_sm);
2175 wake_up(&pd->wqueue);
2177 spin_unlock(&pkt->lock);
2178 spin_unlock(&pd->cdrw.active_list_lock);
2183 spin_unlock(&pkt->lock);
2186 spin_unlock(&pd->cdrw.active_list_lock);
2189 * No matching packet found. Store the bio in the work queue.
2191 node = mempool_alloc(pd->rb_pool, GFP_NOIO);
2194 spin_lock(&pd->lock);
2195 BUG_ON(pd->bio_queue_size < 0);
2196 was_empty = (pd->bio_queue_size == 0);
2197 pkt_rbtree_insert(pd, node);
2198 spin_unlock(&pd->lock);
2201 * Wake up the worker thread.
2203 atomic_set(&pd->scan_queue, 1);
2205 /* This wake_up is required for correct operation */
2206 wake_up(&pd->wqueue);
2207 } else if (!list_empty(&pd->cdrw.pkt_free_list) && !blocked_bio) {
2209 * This wake up is not required for correct operation,
2210 * but improves performance in some cases.
2212 wake_up(&pd->wqueue);
2216 bio_io_error(bio, bio->bi_size);
2222 static int pkt_merge_bvec(request_queue_t *q, struct bio *bio, struct bio_vec *bvec)
2224 struct pktcdvd_device *pd = q->queuedata;
2225 sector_t zone = ZONE(bio->bi_sector, pd);
2226 int used = ((bio->bi_sector - zone) << 9) + bio->bi_size;
2227 int remaining = (pd->settings.size << 9) - used;
2231 * A bio <= PAGE_SIZE must be allowed. If it crosses a packet
2232 * boundary, pkt_make_request() will split the bio.
2234 remaining2 = PAGE_SIZE - bio->bi_size;
2235 remaining = max(remaining, remaining2);
2237 BUG_ON(remaining < 0);
2241 static void pkt_init_queue(struct pktcdvd_device *pd)
2243 request_queue_t *q = pd->disk->queue;
2245 blk_queue_make_request(q, pkt_make_request);
2246 blk_queue_hardsect_size(q, CD_FRAMESIZE);
2247 blk_queue_max_sectors(q, PACKET_MAX_SECTORS);
2248 blk_queue_merge_bvec(q, pkt_merge_bvec);
2252 static int pkt_seq_show(struct seq_file *m, void *p)
2254 struct pktcdvd_device *pd = m->private;
2256 char bdev_buf[BDEVNAME_SIZE];
2257 int states[PACKET_NUM_STATES];
2259 seq_printf(m, "Writer %s mapped to %s:\n", pd->name,
2260 bdevname(pd->bdev, bdev_buf));
2262 seq_printf(m, "\nSettings:\n");
2263 seq_printf(m, "\tpacket size:\t\t%dkB\n", pd->settings.size / 2);
2265 if (pd->settings.write_type == 0)
2269 seq_printf(m, "\twrite type:\t\t%s\n", msg);
2271 seq_printf(m, "\tpacket type:\t\t%s\n", pd->settings.fp ? "Fixed" : "Variable");
2272 seq_printf(m, "\tlink loss:\t\t%d\n", pd->settings.link_loss);
2274 seq_printf(m, "\ttrack mode:\t\t%d\n", pd->settings.track_mode);
2276 if (pd->settings.block_mode == PACKET_BLOCK_MODE1)
2278 else if (pd->settings.block_mode == PACKET_BLOCK_MODE2)
2282 seq_printf(m, "\tblock mode:\t\t%s\n", msg);
2284 seq_printf(m, "\nStatistics:\n");
2285 seq_printf(m, "\tpackets started:\t%lu\n", pd->stats.pkt_started);
2286 seq_printf(m, "\tpackets ended:\t\t%lu\n", pd->stats.pkt_ended);
2287 seq_printf(m, "\twritten:\t\t%lukB\n", pd->stats.secs_w >> 1);
2288 seq_printf(m, "\tread gather:\t\t%lukB\n", pd->stats.secs_rg >> 1);
2289 seq_printf(m, "\tread:\t\t\t%lukB\n", pd->stats.secs_r >> 1);
2291 seq_printf(m, "\nMisc:\n");
2292 seq_printf(m, "\treference count:\t%d\n", pd->refcnt);
2293 seq_printf(m, "\tflags:\t\t\t0x%lx\n", pd->flags);
2294 seq_printf(m, "\tread speed:\t\t%ukB/s\n", pd->read_speed);
2295 seq_printf(m, "\twrite speed:\t\t%ukB/s\n", pd->write_speed);
2296 seq_printf(m, "\tstart offset:\t\t%lu\n", pd->offset);
2297 seq_printf(m, "\tmode page offset:\t%u\n", pd->mode_offset);
2299 seq_printf(m, "\nQueue state:\n");
2300 seq_printf(m, "\tbios queued:\t\t%d\n", pd->bio_queue_size);
2301 seq_printf(m, "\tbios pending:\t\t%d\n", atomic_read(&pd->cdrw.pending_bios));
2302 seq_printf(m, "\tcurrent sector:\t\t0x%llx\n", (unsigned long long)pd->current_sector);
2304 pkt_count_states(pd, states);
2305 seq_printf(m, "\tstate:\t\t\ti:%d ow:%d rw:%d ww:%d rec:%d fin:%d\n",
2306 states[0], states[1], states[2], states[3], states[4], states[5]);
2311 static int pkt_seq_open(struct inode *inode, struct file *file)
2313 return single_open(file, pkt_seq_show, PDE(inode)->data);
2316 static struct file_operations pkt_proc_fops = {
2317 .open = pkt_seq_open,
2319 .llseek = seq_lseek,
2320 .release = single_release
2323 static int pkt_new_dev(struct pktcdvd_device *pd, dev_t dev)
2327 char b[BDEVNAME_SIZE];
2328 struct proc_dir_entry *proc;
2329 struct block_device *bdev;
2331 if (pd->pkt_dev == dev) {
2332 printk("pktcdvd: Recursive setup not allowed\n");
2335 for (i = 0; i < MAX_WRITERS; i++) {
2336 struct pktcdvd_device *pd2 = pkt_devs[i];
2339 if (pd2->bdev->bd_dev == dev) {
2340 printk("pktcdvd: %s already setup\n", bdevname(pd2->bdev, b));
2343 if (pd2->pkt_dev == dev) {
2344 printk("pktcdvd: Can't chain pktcdvd devices\n");
2352 ret = blkdev_get(bdev, FMODE_READ, O_RDONLY | O_NONBLOCK);
2356 /* This is safe, since we have a reference from open(). */
2357 __module_get(THIS_MODULE);
2359 if (!pkt_grow_pktlist(pd, CONFIG_CDROM_PKTCDVD_BUFFERS)) {
2360 printk("pktcdvd: not enough memory for buffers\n");
2366 set_blocksize(bdev, CD_FRAMESIZE);
2370 atomic_set(&pd->cdrw.pending_bios, 0);
2371 pd->cdrw.thread = kthread_run(kcdrwd, pd, "%s", pd->name);
2372 if (IS_ERR(pd->cdrw.thread)) {
2373 printk("pktcdvd: can't start kernel thread\n");
2378 proc = create_proc_entry(pd->name, 0, pkt_proc);
2381 proc->proc_fops = &pkt_proc_fops;
2383 DPRINTK("pktcdvd: writer %s mapped to %s\n", pd->name, bdevname(bdev, b));
2387 pkt_shrink_pktlist(pd);
2390 /* This is safe: open() is still holding a reference. */
2391 module_put(THIS_MODULE);
2395 static int pkt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
2397 struct pktcdvd_device *pd = inode->i_bdev->bd_disk->private_data;
2399 VPRINTK("pkt_ioctl: cmd %x, dev %d:%d\n", cmd, imajor(inode), iminor(inode));
2404 * forward selected CDROM ioctls to CD-ROM, for UDF
2406 case CDROMMULTISESSION:
2407 case CDROMREADTOCENTRY:
2408 case CDROM_LAST_WRITTEN:
2409 case CDROM_SEND_PACKET:
2410 case SCSI_IOCTL_SEND_COMMAND:
2411 return blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg);
2415 * The door gets locked when the device is opened, so we
2416 * have to unlock it or else the eject command fails.
2418 pkt_lock_door(pd, 0);
2419 return blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg);
2422 printk("pktcdvd: Unknown ioctl for %s (%x)\n", pd->name, cmd);
2429 static int pkt_media_changed(struct gendisk *disk)
2431 struct pktcdvd_device *pd = disk->private_data;
2432 struct gendisk *attached_disk;
2438 attached_disk = pd->bdev->bd_disk;
2441 return attached_disk->fops->media_changed(attached_disk);
2444 static struct block_device_operations pktcdvd_ops = {
2445 .owner = THIS_MODULE,
2447 .release = pkt_close,
2449 .media_changed = pkt_media_changed,
2453 * Set up mapping from pktcdvd device to CD-ROM device.
2455 static int pkt_setup_dev(struct pkt_ctrl_command *ctrl_cmd)
2459 struct pktcdvd_device *pd;
2460 struct gendisk *disk;
2461 dev_t dev = new_decode_dev(ctrl_cmd->dev);
2463 for (idx = 0; idx < MAX_WRITERS; idx++)
2466 if (idx == MAX_WRITERS) {
2467 printk("pktcdvd: max %d writers supported\n", MAX_WRITERS);
2471 pd = kmalloc(sizeof(struct pktcdvd_device), GFP_KERNEL);
2474 memset(pd, 0, sizeof(struct pktcdvd_device));
2476 pd->rb_pool = mempool_create(PKT_RB_POOL_SIZE, pkt_rb_alloc, pkt_rb_free, NULL);
2480 disk = alloc_disk(1);
2485 spin_lock_init(&pd->lock);
2486 spin_lock_init(&pd->iosched.lock);
2487 sprintf(pd->name, "pktcdvd%d", idx);
2488 init_waitqueue_head(&pd->wqueue);
2489 pd->bio_queue = RB_ROOT;
2491 disk->major = pkt_major;
2492 disk->first_minor = idx;
2493 disk->fops = &pktcdvd_ops;
2494 disk->flags = GENHD_FL_REMOVABLE;
2495 sprintf(disk->disk_name, "pktcdvd%d", idx);
2496 disk->private_data = pd;
2497 disk->queue = blk_alloc_queue(GFP_KERNEL);
2501 pd->pkt_dev = MKDEV(disk->major, disk->first_minor);
2502 ret = pkt_new_dev(pd, dev);
2508 ctrl_cmd->pkt_dev = new_encode_dev(pd->pkt_dev);
2512 blk_put_queue(disk->queue);
2517 mempool_destroy(pd->rb_pool);
2523 * Tear down mapping from pktcdvd device to CD-ROM device.
2525 static int pkt_remove_dev(struct pkt_ctrl_command *ctrl_cmd)
2527 struct pktcdvd_device *pd;
2529 dev_t pkt_dev = new_decode_dev(ctrl_cmd->pkt_dev);
2531 for (idx = 0; idx < MAX_WRITERS; idx++) {
2533 if (pd && (pd->pkt_dev == pkt_dev))
2536 if (idx == MAX_WRITERS) {
2537 DPRINTK("pktcdvd: dev not setup\n");
2544 if (!IS_ERR(pd->cdrw.thread))
2545 kthread_stop(pd->cdrw.thread);
2547 blkdev_put(pd->bdev);
2549 pkt_shrink_pktlist(pd);
2551 remove_proc_entry(pd->name, pkt_proc);
2552 DPRINTK("pktcdvd: writer %s unmapped\n", pd->name);
2554 del_gendisk(pd->disk);
2555 blk_put_queue(pd->disk->queue);
2558 pkt_devs[idx] = NULL;
2559 mempool_destroy(pd->rb_pool);
2562 /* This is safe: open() is still holding a reference. */
2563 module_put(THIS_MODULE);
2567 static void pkt_get_status(struct pkt_ctrl_command *ctrl_cmd)
2569 struct pktcdvd_device *pd = pkt_find_dev_from_minor(ctrl_cmd->dev_index);
2571 ctrl_cmd->dev = new_encode_dev(pd->bdev->bd_dev);
2572 ctrl_cmd->pkt_dev = new_encode_dev(pd->pkt_dev);
2575 ctrl_cmd->pkt_dev = 0;
2577 ctrl_cmd->num_devices = MAX_WRITERS;
2580 static int pkt_ctl_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
2582 void __user *argp = (void __user *)arg;
2583 struct pkt_ctrl_command ctrl_cmd;
2586 if (cmd != PACKET_CTRL_CMD)
2589 if (copy_from_user(&ctrl_cmd, argp, sizeof(struct pkt_ctrl_command)))
2592 switch (ctrl_cmd.command) {
2593 case PKT_CTRL_CMD_SETUP:
2594 if (!capable(CAP_SYS_ADMIN))
2597 ret = pkt_setup_dev(&ctrl_cmd);
2600 case PKT_CTRL_CMD_TEARDOWN:
2601 if (!capable(CAP_SYS_ADMIN))
2604 ret = pkt_remove_dev(&ctrl_cmd);
2607 case PKT_CTRL_CMD_STATUS:
2609 pkt_get_status(&ctrl_cmd);
2616 if (copy_to_user(argp, &ctrl_cmd, sizeof(struct pkt_ctrl_command)))
2622 static struct file_operations pkt_ctl_fops = {
2623 .ioctl = pkt_ctl_ioctl,
2624 .owner = THIS_MODULE,
2627 static struct miscdevice pkt_misc = {
2628 .minor = MISC_DYNAMIC_MINOR,
2630 .devfs_name = "pktcdvd/control",
2631 .fops = &pkt_ctl_fops
2634 static int __init pkt_init(void)
2638 psd_pool = mempool_create(PSD_POOL_SIZE, psd_pool_alloc, psd_pool_free, NULL);
2642 ret = register_blkdev(pkt_major, "pktcdvd");
2644 printk("pktcdvd: Unable to register block device\n");
2650 ret = misc_register(&pkt_misc);
2652 printk("pktcdvd: Unable to register misc device\n");
2656 init_MUTEX(&ctl_mutex);
2658 pkt_proc = proc_mkdir("pktcdvd", proc_root_driver);
2660 DPRINTK("pktcdvd: %s\n", VERSION_CODE);
2664 unregister_blkdev(pkt_major, "pktcdvd");
2666 mempool_destroy(psd_pool);
2670 static void __exit pkt_exit(void)
2672 remove_proc_entry("pktcdvd", proc_root_driver);
2673 misc_deregister(&pkt_misc);
2674 unregister_blkdev(pkt_major, "pktcdvd");
2675 mempool_destroy(psd_pool);
2678 MODULE_DESCRIPTION("Packet writing layer for CD/DVD drives");
2679 MODULE_AUTHOR("Jens Axboe <axboe@suse.de>");
2680 MODULE_LICENSE("GPL");
2682 module_init(pkt_init);
2683 module_exit(pkt_exit);