1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116#define PF_VERSION "1.04"
117#define PF_MAJOR 47
118#define PF_NAME "pf"
119#define PF_UNITS 4
120
121#include <linux/types.h>
122
123
124
125
126
127
128
129static bool verbose = 0;
130static int major = PF_MAJOR;
131static char *name = PF_NAME;
132static int cluster = 64;
133static int nice = 0;
134static int disable = 0;
135
136static int drive0[7] = { 0, 0, 0, -1, -1, -1, -1 };
137static int drive1[7] = { 0, 0, 0, -1, -1, -1, -1 };
138static int drive2[7] = { 0, 0, 0, -1, -1, -1, -1 };
139static int drive3[7] = { 0, 0, 0, -1, -1, -1, -1 };
140
141static int (*drives[4])[7] = {&drive0, &drive1, &drive2, &drive3};
142static int pf_drive_count;
143
144enum {D_PRT, D_PRO, D_UNI, D_MOD, D_SLV, D_LUN, D_DLY};
145
146
147
148#include <linux/module.h>
149#include <linux/init.h>
150#include <linux/fs.h>
151#include <linux/delay.h>
152#include <linux/hdreg.h>
153#include <linux/cdrom.h>
154#include <linux/spinlock.h>
155#include <linux/blk-mq.h>
156#include <linux/blkpg.h>
157#include <linux/mutex.h>
158#include <linux/uaccess.h>
159
160static DEFINE_MUTEX(pf_mutex);
161static DEFINE_SPINLOCK(pf_spin_lock);
162
163module_param(verbose, bool, 0644);
164module_param(major, int, 0);
165module_param(name, charp, 0);
166module_param(cluster, int, 0);
167module_param(nice, int, 0);
168module_param_array(drive0, int, NULL, 0);
169module_param_array(drive1, int, NULL, 0);
170module_param_array(drive2, int, NULL, 0);
171module_param_array(drive3, int, NULL, 0);
172
173#include "paride.h"
174#include "pseudo.h"
175
176
177
178#define PF_FD_MAX 8192
179#define PF_FD_HDS 2
180#define PF_FD_SPT 18
181#define PF_HD_HDS 64
182#define PF_HD_SPT 32
183
184#define PF_MAX_RETRIES 5
185#define PF_TMO 800
186#define PF_SPIN_DEL 50
187
188#define PF_SPIN (1000000*PF_TMO)/(HZ*PF_SPIN_DEL)
189
190#define STAT_ERR 0x00001
191#define STAT_INDEX 0x00002
192#define STAT_ECC 0x00004
193#define STAT_DRQ 0x00008
194#define STAT_SEEK 0x00010
195#define STAT_WRERR 0x00020
196#define STAT_READY 0x00040
197#define STAT_BUSY 0x00080
198
199#define ATAPI_REQ_SENSE 0x03
200#define ATAPI_LOCK 0x1e
201#define ATAPI_DOOR 0x1b
202#define ATAPI_MODE_SENSE 0x5a
203#define ATAPI_CAPACITY 0x25
204#define ATAPI_IDENTIFY 0x12
205#define ATAPI_READ_10 0x28
206#define ATAPI_WRITE_10 0x2a
207
208static int pf_open(struct block_device *bdev, fmode_t mode);
209static blk_status_t pf_queue_rq(struct blk_mq_hw_ctx *hctx,
210 const struct blk_mq_queue_data *bd);
211static int pf_ioctl(struct block_device *bdev, fmode_t mode,
212 unsigned int cmd, unsigned long arg);
213static int pf_getgeo(struct block_device *bdev, struct hd_geometry *geo);
214
215static void pf_release(struct gendisk *disk, fmode_t mode);
216
217static int pf_detect(void);
218static void do_pf_read(void);
219static void do_pf_read_start(void);
220static void do_pf_write(void);
221static void do_pf_write_start(void);
222static void do_pf_read_drq(void);
223static void do_pf_write_done(void);
224
225#define PF_NM 0
226#define PF_RO 1
227#define PF_RW 2
228
229#define PF_NAMELEN 8
230
231struct pf_unit {
232 struct pi_adapter pia;
233 struct pi_adapter *pi;
234 int removable;
235 int media_status;
236 int drive;
237 int lun;
238 int access;
239 int present;
240 char name[PF_NAMELEN];
241 struct gendisk *disk;
242 struct blk_mq_tag_set tag_set;
243 struct list_head rq_list;
244};
245
246static struct pf_unit units[PF_UNITS];
247
248static int pf_identify(struct pf_unit *pf);
249static void pf_lock(struct pf_unit *pf, int func);
250static void pf_eject(struct pf_unit *pf);
251static unsigned int pf_check_events(struct gendisk *disk,
252 unsigned int clearing);
253
254static char pf_scratch[512];
255
256
257
258
259
260static int pf_retries = 0;
261static int pf_busy = 0;
262static struct request *pf_req;
263static int pf_block;
264static int pf_count;
265static int pf_run;
266static int pf_cmd;
267static struct pf_unit *pf_current;
268static int pf_mask;
269static char *pf_buf;
270static void *par_drv;
271
272
273
274static const struct block_device_operations pf_fops = {
275 .owner = THIS_MODULE,
276 .open = pf_open,
277 .release = pf_release,
278 .ioctl = pf_ioctl,
279 .getgeo = pf_getgeo,
280 .check_events = pf_check_events,
281};
282
283static const struct blk_mq_ops pf_mq_ops = {
284 .queue_rq = pf_queue_rq,
285};
286
287static void __init pf_init_units(void)
288{
289 struct pf_unit *pf;
290 int unit;
291
292 pf_drive_count = 0;
293 for (unit = 0, pf = units; unit < PF_UNITS; unit++, pf++) {
294 struct gendisk *disk;
295
296 disk = alloc_disk(1);
297 if (!disk)
298 continue;
299
300 disk->queue = blk_mq_init_sq_queue(&pf->tag_set, &pf_mq_ops,
301 1, BLK_MQ_F_SHOULD_MERGE);
302 if (IS_ERR(disk->queue)) {
303 put_disk(disk);
304 disk->queue = NULL;
305 continue;
306 }
307
308 INIT_LIST_HEAD(&pf->rq_list);
309 disk->queue->queuedata = pf;
310 blk_queue_max_segments(disk->queue, cluster);
311 blk_queue_bounce_limit(disk->queue, BLK_BOUNCE_HIGH);
312 pf->disk = disk;
313 pf->pi = &pf->pia;
314 pf->media_status = PF_NM;
315 pf->drive = (*drives[unit])[D_SLV];
316 pf->lun = (*drives[unit])[D_LUN];
317 snprintf(pf->name, PF_NAMELEN, "%s%d", name, unit);
318 disk->major = major;
319 disk->first_minor = unit;
320 strcpy(disk->disk_name, pf->name);
321 disk->fops = &pf_fops;
322 if (!(*drives[unit])[D_PRT])
323 pf_drive_count++;
324 }
325}
326
327static int pf_open(struct block_device *bdev, fmode_t mode)
328{
329 struct pf_unit *pf = bdev->bd_disk->private_data;
330 int ret;
331
332 mutex_lock(&pf_mutex);
333 pf_identify(pf);
334
335 ret = -ENODEV;
336 if (pf->media_status == PF_NM)
337 goto out;
338
339 ret = -EROFS;
340 if ((pf->media_status == PF_RO) && (mode & FMODE_WRITE))
341 goto out;
342
343 ret = 0;
344 pf->access++;
345 if (pf->removable)
346 pf_lock(pf, 1);
347out:
348 mutex_unlock(&pf_mutex);
349 return ret;
350}
351
352static int pf_getgeo(struct block_device *bdev, struct hd_geometry *geo)
353{
354 struct pf_unit *pf = bdev->bd_disk->private_data;
355 sector_t capacity = get_capacity(pf->disk);
356
357 if (capacity < PF_FD_MAX) {
358 geo->cylinders = sector_div(capacity, PF_FD_HDS * PF_FD_SPT);
359 geo->heads = PF_FD_HDS;
360 geo->sectors = PF_FD_SPT;
361 } else {
362 geo->cylinders = sector_div(capacity, PF_HD_HDS * PF_HD_SPT);
363 geo->heads = PF_HD_HDS;
364 geo->sectors = PF_HD_SPT;
365 }
366
367 return 0;
368}
369
370static int pf_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long arg)
371{
372 struct pf_unit *pf = bdev->bd_disk->private_data;
373
374 if (cmd != CDROMEJECT)
375 return -EINVAL;
376
377 if (pf->access != 1)
378 return -EBUSY;
379 mutex_lock(&pf_mutex);
380 pf_eject(pf);
381 mutex_unlock(&pf_mutex);
382
383 return 0;
384}
385
386static void pf_release(struct gendisk *disk, fmode_t mode)
387{
388 struct pf_unit *pf = disk->private_data;
389
390 mutex_lock(&pf_mutex);
391 if (pf->access <= 0) {
392 mutex_unlock(&pf_mutex);
393 WARN_ON(1);
394 return;
395 }
396
397 pf->access--;
398
399 if (!pf->access && pf->removable)
400 pf_lock(pf, 0);
401
402 mutex_unlock(&pf_mutex);
403}
404
405static unsigned int pf_check_events(struct gendisk *disk, unsigned int clearing)
406{
407 return DISK_EVENT_MEDIA_CHANGE;
408}
409
410static inline int status_reg(struct pf_unit *pf)
411{
412 return pi_read_regr(pf->pi, 1, 6);
413}
414
415static inline int read_reg(struct pf_unit *pf, int reg)
416{
417 return pi_read_regr(pf->pi, 0, reg);
418}
419
420static inline void write_reg(struct pf_unit *pf, int reg, int val)
421{
422 pi_write_regr(pf->pi, 0, reg, val);
423}
424
425static int pf_wait(struct pf_unit *pf, int go, int stop, char *fun, char *msg)
426{
427 int j, r, e, s, p;
428
429 j = 0;
430 while ((((r = status_reg(pf)) & go) || (stop && (!(r & stop))))
431 && (j++ < PF_SPIN))
432 udelay(PF_SPIN_DEL);
433
434 if ((r & (STAT_ERR & stop)) || (j > PF_SPIN)) {
435 s = read_reg(pf, 7);
436 e = read_reg(pf, 1);
437 p = read_reg(pf, 2);
438 if (j > PF_SPIN)
439 e |= 0x100;
440 if (fun)
441 printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x"
442 " loop=%d phase=%d\n",
443 pf->name, fun, msg, r, s, e, j, p);
444 return (e << 8) + s;
445 }
446 return 0;
447}
448
449static int pf_command(struct pf_unit *pf, char *cmd, int dlen, char *fun)
450{
451 pi_connect(pf->pi);
452
453 write_reg(pf, 6, 0xa0+0x10*pf->drive);
454
455 if (pf_wait(pf, STAT_BUSY | STAT_DRQ, 0, fun, "before command")) {
456 pi_disconnect(pf->pi);
457 return -1;
458 }
459
460 write_reg(pf, 4, dlen % 256);
461 write_reg(pf, 5, dlen / 256);
462 write_reg(pf, 7, 0xa0);
463
464 if (pf_wait(pf, STAT_BUSY, STAT_DRQ, fun, "command DRQ")) {
465 pi_disconnect(pf->pi);
466 return -1;
467 }
468
469 if (read_reg(pf, 2) != 1) {
470 printk("%s: %s: command phase error\n", pf->name, fun);
471 pi_disconnect(pf->pi);
472 return -1;
473 }
474
475 pi_write_block(pf->pi, cmd, 12);
476
477 return 0;
478}
479
480static int pf_completion(struct pf_unit *pf, char *buf, char *fun)
481{
482 int r, s, n;
483
484 r = pf_wait(pf, STAT_BUSY, STAT_DRQ | STAT_READY | STAT_ERR,
485 fun, "completion");
486
487 if ((read_reg(pf, 2) & 2) && (read_reg(pf, 7) & STAT_DRQ)) {
488 n = (((read_reg(pf, 4) + 256 * read_reg(pf, 5)) +
489 3) & 0xfffc);
490 pi_read_block(pf->pi, buf, n);
491 }
492
493 s = pf_wait(pf, STAT_BUSY, STAT_READY | STAT_ERR, fun, "data done");
494
495 pi_disconnect(pf->pi);
496
497 return (r ? r : s);
498}
499
500static void pf_req_sense(struct pf_unit *pf, int quiet)
501{
502 char rs_cmd[12] =
503 { ATAPI_REQ_SENSE, pf->lun << 5, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0 };
504 char buf[16];
505 int r;
506
507 r = pf_command(pf, rs_cmd, 16, "Request sense");
508 mdelay(1);
509 if (!r)
510 pf_completion(pf, buf, "Request sense");
511
512 if ((!r) && (!quiet))
513 printk("%s: Sense key: %x, ASC: %x, ASQ: %x\n",
514 pf->name, buf[2] & 0xf, buf[12], buf[13]);
515}
516
517static int pf_atapi(struct pf_unit *pf, char *cmd, int dlen, char *buf, char *fun)
518{
519 int r;
520
521 r = pf_command(pf, cmd, dlen, fun);
522 mdelay(1);
523 if (!r)
524 r = pf_completion(pf, buf, fun);
525 if (r)
526 pf_req_sense(pf, !fun);
527
528 return r;
529}
530
531static void pf_lock(struct pf_unit *pf, int func)
532{
533 char lo_cmd[12] = { ATAPI_LOCK, pf->lun << 5, 0, 0, func, 0, 0, 0, 0, 0, 0, 0 };
534
535 pf_atapi(pf, lo_cmd, 0, pf_scratch, func ? "lock" : "unlock");
536}
537
538static void pf_eject(struct pf_unit *pf)
539{
540 char ej_cmd[12] = { ATAPI_DOOR, pf->lun << 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0 };
541
542 pf_lock(pf, 0);
543 pf_atapi(pf, ej_cmd, 0, pf_scratch, "eject");
544}
545
546#define PF_RESET_TMO 30
547
548static void pf_sleep(int cs)
549{
550 schedule_timeout_interruptible(cs);
551}
552
553
554
555
556
557
558static int pf_reset(struct pf_unit *pf)
559{
560 int i, k, flg;
561 int expect[5] = { 1, 1, 1, 0x14, 0xeb };
562
563 pi_connect(pf->pi);
564 write_reg(pf, 6, 0xa0+0x10*pf->drive);
565 write_reg(pf, 7, 8);
566
567 pf_sleep(20 * HZ / 1000);
568
569 k = 0;
570 while ((k++ < PF_RESET_TMO) && (status_reg(pf) & STAT_BUSY))
571 pf_sleep(HZ / 10);
572
573 flg = 1;
574 for (i = 0; i < 5; i++)
575 flg &= (read_reg(pf, i + 1) == expect[i]);
576
577 if (verbose) {
578 printk("%s: Reset (%d) signature = ", pf->name, k);
579 for (i = 0; i < 5; i++)
580 printk("%3x", read_reg(pf, i + 1));
581 if (!flg)
582 printk(" (incorrect)");
583 printk("\n");
584 }
585
586 pi_disconnect(pf->pi);
587 return flg - 1;
588}
589
590static void pf_mode_sense(struct pf_unit *pf)
591{
592 char ms_cmd[12] =
593 { ATAPI_MODE_SENSE, pf->lun << 5, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0 };
594 char buf[8];
595
596 pf_atapi(pf, ms_cmd, 8, buf, "mode sense");
597 pf->media_status = PF_RW;
598 if (buf[3] & 0x80)
599 pf->media_status = PF_RO;
600}
601
602static void xs(char *buf, char *targ, int offs, int len)
603{
604 int j, k, l;
605
606 j = 0;
607 l = 0;
608 for (k = 0; k < len; k++)
609 if ((buf[k + offs] != 0x20) || (buf[k + offs] != l))
610 l = targ[j++] = buf[k + offs];
611 if (l == 0x20)
612 j--;
613 targ[j] = 0;
614}
615
616static int xl(char *buf, int offs)
617{
618 int v, k;
619
620 v = 0;
621 for (k = 0; k < 4; k++)
622 v = v * 256 + (buf[k + offs] & 0xff);
623 return v;
624}
625
626static void pf_get_capacity(struct pf_unit *pf)
627{
628 char rc_cmd[12] = { ATAPI_CAPACITY, pf->lun << 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
629 char buf[8];
630 int bs;
631
632 if (pf_atapi(pf, rc_cmd, 8, buf, "get capacity")) {
633 pf->media_status = PF_NM;
634 return;
635 }
636 set_capacity(pf->disk, xl(buf, 0) + 1);
637 bs = xl(buf, 4);
638 if (bs != 512) {
639 set_capacity(pf->disk, 0);
640 if (verbose)
641 printk("%s: Drive %d, LUN %d,"
642 " unsupported block size %d\n",
643 pf->name, pf->drive, pf->lun, bs);
644 }
645}
646
647static int pf_identify(struct pf_unit *pf)
648{
649 int dt, s;
650 char *ms[2] = { "master", "slave" };
651 char mf[10], id[18];
652 char id_cmd[12] =
653 { ATAPI_IDENTIFY, pf->lun << 5, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0 };
654 char buf[36];
655
656 s = pf_atapi(pf, id_cmd, 36, buf, "identify");
657 if (s)
658 return -1;
659
660 dt = buf[0] & 0x1f;
661 if ((dt != 0) && (dt != 7)) {
662 if (verbose)
663 printk("%s: Drive %d, LUN %d, unsupported type %d\n",
664 pf->name, pf->drive, pf->lun, dt);
665 return -1;
666 }
667
668 xs(buf, mf, 8, 8);
669 xs(buf, id, 16, 16);
670
671 pf->removable = (buf[1] & 0x80);
672
673 pf_mode_sense(pf);
674 pf_mode_sense(pf);
675 pf_mode_sense(pf);
676
677 pf_get_capacity(pf);
678
679 printk("%s: %s %s, %s LUN %d, type %d",
680 pf->name, mf, id, ms[pf->drive], pf->lun, dt);
681 if (pf->removable)
682 printk(", removable");
683 if (pf->media_status == PF_NM)
684 printk(", no media\n");
685 else {
686 if (pf->media_status == PF_RO)
687 printk(", RO");
688 printk(", %llu blocks\n",
689 (unsigned long long)get_capacity(pf->disk));
690 }
691 return 0;
692}
693
694
695
696
697static int pf_probe(struct pf_unit *pf)
698{
699 if (pf->drive == -1) {
700 for (pf->drive = 0; pf->drive <= 1; pf->drive++)
701 if (!pf_reset(pf)) {
702 if (pf->lun != -1)
703 return pf_identify(pf);
704 else
705 for (pf->lun = 0; pf->lun < 8; pf->lun++)
706 if (!pf_identify(pf))
707 return 0;
708 }
709 } else {
710 if (pf_reset(pf))
711 return -1;
712 if (pf->lun != -1)
713 return pf_identify(pf);
714 for (pf->lun = 0; pf->lun < 8; pf->lun++)
715 if (!pf_identify(pf))
716 return 0;
717 }
718 return -1;
719}
720
721static int pf_detect(void)
722{
723 struct pf_unit *pf = units;
724 int k, unit;
725
726 printk("%s: %s version %s, major %d, cluster %d, nice %d\n",
727 name, name, PF_VERSION, major, cluster, nice);
728
729 par_drv = pi_register_driver(name);
730 if (!par_drv) {
731 pr_err("failed to register %s driver\n", name);
732 return -1;
733 }
734 k = 0;
735 if (pf_drive_count == 0) {
736 if (pi_init(pf->pi, 1, -1, -1, -1, -1, -1, pf_scratch, PI_PF,
737 verbose, pf->name)) {
738 if (!pf_probe(pf) && pf->disk) {
739 pf->present = 1;
740 k++;
741 } else
742 pi_release(pf->pi);
743 }
744
745 } else
746 for (unit = 0; unit < PF_UNITS; unit++, pf++) {
747 int *conf = *drives[unit];
748 if (!conf[D_PRT])
749 continue;
750 if (pi_init(pf->pi, 0, conf[D_PRT], conf[D_MOD],
751 conf[D_UNI], conf[D_PRO], conf[D_DLY],
752 pf_scratch, PI_PF, verbose, pf->name)) {
753 if (pf->disk && !pf_probe(pf)) {
754 pf->present = 1;
755 k++;
756 } else
757 pi_release(pf->pi);
758 }
759 }
760 if (k)
761 return 0;
762
763 printk("%s: No ATAPI disk detected\n", name);
764 for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++) {
765 if (!pf->disk)
766 continue;
767 blk_cleanup_queue(pf->disk->queue);
768 pf->disk->queue = NULL;
769 blk_mq_free_tag_set(&pf->tag_set);
770 put_disk(pf->disk);
771 }
772 pi_unregister_driver(par_drv);
773 return -1;
774}
775
776
777
778static int pf_start(struct pf_unit *pf, int cmd, int b, int c)
779{
780 int i;
781 char io_cmd[12] = { cmd, pf->lun << 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
782
783 for (i = 0; i < 4; i++) {
784 io_cmd[5 - i] = b & 0xff;
785 b = b >> 8;
786 }
787
788 io_cmd[8] = c & 0xff;
789 io_cmd[7] = (c >> 8) & 0xff;
790
791 i = pf_command(pf, io_cmd, c * 512, "start i/o");
792
793 mdelay(1);
794
795 return i;
796}
797
798static int pf_ready(void)
799{
800 return (((status_reg(pf_current) & (STAT_BUSY | pf_mask)) == pf_mask));
801}
802
803static int pf_queue;
804
805static int set_next_request(void)
806{
807 struct pf_unit *pf;
808 int old_pos = pf_queue;
809
810 do {
811 pf = &units[pf_queue];
812 if (++pf_queue == PF_UNITS)
813 pf_queue = 0;
814 if (pf->present && !list_empty(&pf->rq_list)) {
815 pf_req = list_first_entry(&pf->rq_list, struct request,
816 queuelist);
817 list_del_init(&pf_req->queuelist);
818 blk_mq_start_request(pf_req);
819 break;
820 }
821 } while (pf_queue != old_pos);
822
823 return pf_req != NULL;
824}
825
826static void pf_end_request(blk_status_t err)
827{
828 if (!pf_req)
829 return;
830 if (!blk_update_request(pf_req, err, blk_rq_cur_bytes(pf_req))) {
831 __blk_mq_end_request(pf_req, err);
832 pf_req = NULL;
833 }
834}
835
836static void pf_request(void)
837{
838 if (pf_busy)
839 return;
840repeat:
841 if (!pf_req && !set_next_request())
842 return;
843
844 pf_current = pf_req->rq_disk->private_data;
845 pf_block = blk_rq_pos(pf_req);
846 pf_run = blk_rq_sectors(pf_req);
847 pf_count = blk_rq_cur_sectors(pf_req);
848
849 if (pf_block + pf_count > get_capacity(pf_req->rq_disk)) {
850 pf_end_request(BLK_STS_IOERR);
851 goto repeat;
852 }
853
854 pf_cmd = rq_data_dir(pf_req);
855 pf_buf = bio_data(pf_req->bio);
856 pf_retries = 0;
857
858 pf_busy = 1;
859 if (pf_cmd == READ)
860 pi_do_claimed(pf_current->pi, do_pf_read);
861 else if (pf_cmd == WRITE)
862 pi_do_claimed(pf_current->pi, do_pf_write);
863 else {
864 pf_busy = 0;
865 pf_end_request(BLK_STS_IOERR);
866 goto repeat;
867 }
868}
869
870static blk_status_t pf_queue_rq(struct blk_mq_hw_ctx *hctx,
871 const struct blk_mq_queue_data *bd)
872{
873 struct pf_unit *pf = hctx->queue->queuedata;
874
875 spin_lock_irq(&pf_spin_lock);
876 list_add_tail(&bd->rq->queuelist, &pf->rq_list);
877 pf_request();
878 spin_unlock_irq(&pf_spin_lock);
879
880 return BLK_STS_OK;
881}
882
883static int pf_next_buf(void)
884{
885 unsigned long saved_flags;
886
887 pf_count--;
888 pf_run--;
889 pf_buf += 512;
890 pf_block++;
891 if (!pf_run)
892 return 1;
893 if (!pf_count) {
894 spin_lock_irqsave(&pf_spin_lock, saved_flags);
895 pf_end_request(0);
896 spin_unlock_irqrestore(&pf_spin_lock, saved_flags);
897 if (!pf_req)
898 return 1;
899 pf_count = blk_rq_cur_sectors(pf_req);
900 pf_buf = bio_data(pf_req->bio);
901 }
902 return 0;
903}
904
905static inline void next_request(blk_status_t err)
906{
907 unsigned long saved_flags;
908
909 spin_lock_irqsave(&pf_spin_lock, saved_flags);
910 pf_end_request(err);
911 pf_busy = 0;
912 pf_request();
913 spin_unlock_irqrestore(&pf_spin_lock, saved_flags);
914}
915
916
917static void do_pf_read(void)
918{
919 ps_set_intr(do_pf_read_start, NULL, 0, nice);
920}
921
922static void do_pf_read_start(void)
923{
924 pf_busy = 1;
925
926 if (pf_start(pf_current, ATAPI_READ_10, pf_block, pf_run)) {
927 pi_disconnect(pf_current->pi);
928 if (pf_retries < PF_MAX_RETRIES) {
929 pf_retries++;
930 pi_do_claimed(pf_current->pi, do_pf_read_start);
931 return;
932 }
933 next_request(BLK_STS_IOERR);
934 return;
935 }
936 pf_mask = STAT_DRQ;
937 ps_set_intr(do_pf_read_drq, pf_ready, PF_TMO, nice);
938}
939
940static void do_pf_read_drq(void)
941{
942 while (1) {
943 if (pf_wait(pf_current, STAT_BUSY, STAT_DRQ | STAT_ERR,
944 "read block", "completion") & STAT_ERR) {
945 pi_disconnect(pf_current->pi);
946 if (pf_retries < PF_MAX_RETRIES) {
947 pf_req_sense(pf_current, 0);
948 pf_retries++;
949 pi_do_claimed(pf_current->pi, do_pf_read_start);
950 return;
951 }
952 next_request(BLK_STS_IOERR);
953 return;
954 }
955 pi_read_block(pf_current->pi, pf_buf, 512);
956 if (pf_next_buf())
957 break;
958 }
959 pi_disconnect(pf_current->pi);
960 next_request(0);
961}
962
963static void do_pf_write(void)
964{
965 ps_set_intr(do_pf_write_start, NULL, 0, nice);
966}
967
968static void do_pf_write_start(void)
969{
970 pf_busy = 1;
971
972 if (pf_start(pf_current, ATAPI_WRITE_10, pf_block, pf_run)) {
973 pi_disconnect(pf_current->pi);
974 if (pf_retries < PF_MAX_RETRIES) {
975 pf_retries++;
976 pi_do_claimed(pf_current->pi, do_pf_write_start);
977 return;
978 }
979 next_request(BLK_STS_IOERR);
980 return;
981 }
982
983 while (1) {
984 if (pf_wait(pf_current, STAT_BUSY, STAT_DRQ | STAT_ERR,
985 "write block", "data wait") & STAT_ERR) {
986 pi_disconnect(pf_current->pi);
987 if (pf_retries < PF_MAX_RETRIES) {
988 pf_retries++;
989 pi_do_claimed(pf_current->pi, do_pf_write_start);
990 return;
991 }
992 next_request(BLK_STS_IOERR);
993 return;
994 }
995 pi_write_block(pf_current->pi, pf_buf, 512);
996 if (pf_next_buf())
997 break;
998 }
999 pf_mask = 0;
1000 ps_set_intr(do_pf_write_done, pf_ready, PF_TMO, nice);
1001}
1002
1003static void do_pf_write_done(void)
1004{
1005 if (pf_wait(pf_current, STAT_BUSY, 0, "write block", "done") & STAT_ERR) {
1006 pi_disconnect(pf_current->pi);
1007 if (pf_retries < PF_MAX_RETRIES) {
1008 pf_retries++;
1009 pi_do_claimed(pf_current->pi, do_pf_write_start);
1010 return;
1011 }
1012 next_request(BLK_STS_IOERR);
1013 return;
1014 }
1015 pi_disconnect(pf_current->pi);
1016 next_request(0);
1017}
1018
1019static int __init pf_init(void)
1020{
1021 struct pf_unit *pf;
1022 int unit;
1023
1024 if (disable)
1025 return -EINVAL;
1026
1027 pf_init_units();
1028
1029 if (pf_detect())
1030 return -ENODEV;
1031 pf_busy = 0;
1032
1033 if (register_blkdev(major, name)) {
1034 for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++) {
1035 if (!pf->disk)
1036 continue;
1037 blk_cleanup_queue(pf->disk->queue);
1038 blk_mq_free_tag_set(&pf->tag_set);
1039 put_disk(pf->disk);
1040 }
1041 return -EBUSY;
1042 }
1043
1044 for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++) {
1045 struct gendisk *disk = pf->disk;
1046
1047 if (!pf->present)
1048 continue;
1049 disk->private_data = pf;
1050 add_disk(disk);
1051 }
1052 return 0;
1053}
1054
1055static void __exit pf_exit(void)
1056{
1057 struct pf_unit *pf;
1058 int unit;
1059 unregister_blkdev(major, name);
1060 for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++) {
1061 if (!pf->disk)
1062 continue;
1063
1064 if (pf->present)
1065 del_gendisk(pf->disk);
1066
1067 blk_cleanup_queue(pf->disk->queue);
1068 blk_mq_free_tag_set(&pf->tag_set);
1069 put_disk(pf->disk);
1070
1071 if (pf->present)
1072 pi_release(pf->pi);
1073 }
1074}
1075
1076MODULE_LICENSE("GPL");
1077module_init(pf_init)
1078module_exit(pf_exit)
1079