DEV messaging stage 1/4: Rearrange struct cdevsw and add a message port
[dragonfly.git] / sys / dev / disk / mcd / mcd.c
1 /*
2  * Copyright 1993 by Holger Veit (data part)
3  * Copyright 1993 by Brian Moore (audio part)
4  * Changes Copyright 1993 by Gary Clark II
5  * Changes Copyright (C) 1994-1995 by Andrey A. Chernov, Moscow, Russia
6  *
7  * Rewrote probe routine to work on newer Mitsumi drives.
8  * Additional changes (C) 1994 by Jordan K. Hubbard
9  *
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *      This software was developed by Holger Veit and Brian Moore
23  *      for use with "386BSD" and similar operating systems.
24  *    "Similar operating systems" includes mainly non-profit oriented
25  *    systems for research and education, including but not restricted to
26  *    "NetBSD", "FreeBSD", "Mach" (by CMU).
27  * 4. Neither the name of the developer(s) nor the name "386BSD"
28  *    may be used to endorse or promote products derived from this
29  *    software without specific prior written permission.
30  *
31  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPER(S) ``AS IS'' AND ANY
32  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
34  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE DEVELOPER(S) BE
35  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
36  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
37  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
38  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
39  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
40  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
41  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42  *
43  * $FreeBSD: src/sys/i386/isa/mcd.c,v 1.115 2000/01/29 16:17:34 peter Exp $
44  * $DragonFly: src/sys/dev/disk/mcd/Attic/mcd.c,v 1.4 2003/07/21 05:50:40 dillon Exp $
45  */
46 static const char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore";
47
48 #include "mcd.h"
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/conf.h>
52 #include <sys/fcntl.h>
53 #include <sys/buf.h>
54 #include <sys/cdio.h>
55 #include <sys/disklabel.h>
56 #include <sys/kernel.h>
57
58 #include <machine/clock.h>
59
60 #include <i386/isa/isa_device.h>
61 #include <i386/isa/mcdreg.h>
62
63 #define MCD_TRACE(format, args...)                                              \
64 {                                                                       \
65         if (mcd_data[unit].debug) {                                     \
66                 printf("mcd%d: status=0x%02x: ",                        \
67                         unit, mcd_data[unit].status);                   \
68                 printf(format, ## args);                                \
69         }                                                               \
70 }
71
72 #define mcd_part(dev)   ((minor(dev)) & 7)
73 #define mcd_unit(dev)   (((minor(dev)) & 0x38) >> 3)
74 #define mcd_phys(dev)   (((minor(dev)) & 0x40) >> 6)
75 #define RAW_PART        2
76
77 /* flags */
78 #define MCDVALID        0x0001  /* parameters loaded */
79 #define MCDINIT         0x0002  /* device is init'd */
80 #define MCDNEWMODEL     0x0004  /* device is new model */
81 #define MCDLABEL        0x0008  /* label is read */
82 #define MCDPROBING      0x0010  /* probing */
83 #define MCDREADRAW      0x0020  /* read raw mode (2352 bytes) */
84 #define MCDVOLINFO      0x0040  /* already read volinfo */
85 #define MCDTOC          0x0080  /* already read toc */
86 #define MCDMBXBSY       0x0100  /* local mbx is busy */
87
88 /* status */
89 #define MCDAUDIOBSY     MCD_ST_AUDIOBSY         /* playing audio */
90 #define MCDDSKCHNG      MCD_ST_DSKCHNG          /* sensed change of disk */
91 #define MCDDSKIN        MCD_ST_DSKIN            /* sensed disk in drive */
92 #define MCDDOOROPEN     MCD_ST_DOOROPEN         /* sensed door open */
93
94 /* These are apparently the different states a mitsumi can get up to */
95 #define MCDCDABSENT     0x0030
96 #define MCDCDPRESENT    0x0020
97 #define MCDSCLOSED      0x0080
98 #define MCDSOPEN        0x00a0
99
100 #define MCD_MD_UNKNOWN  (-1)
101
102 /* toc */
103 #define MCD_MAXTOCS     104     /* from the Linux driver */
104 #define MCD_LASTPLUS1   170     /* special toc entry */
105
106 #define MCD_TYPE_UNKNOWN        0
107 #define MCD_TYPE_LU002S         1
108 #define MCD_TYPE_LU005S         2
109 #define MCD_TYPE_LU006S         3
110 #define MCD_TYPE_FX001          4
111 #define MCD_TYPE_FX001D         5
112
113 struct mcd_mbx {
114         short           unit;
115         short           port;
116         short           retry;
117         short           nblk;
118         int             sz;
119         u_long          skip;
120         struct buf      *bp;
121         int             p_offset;
122         short           count;
123         short           mode;
124 };
125
126 static struct mcd_data {
127         short   type;
128         char    *name;
129         short   config;
130         short   flags;
131         u_char  read_command;
132         short   status;
133         int     blksize;
134         u_long  disksize;
135         int     iobase;
136         struct disklabel dlabel;
137         int     partflags[MAXPARTITIONS];
138         int     openflags;
139         struct mcd_volinfo volinfo;
140         struct mcd_qchninfo toc[MCD_MAXTOCS];
141         short   audio_status;
142         short   curr_mode;
143         struct mcd_read2 lastpb;
144         short   debug;
145         struct buf_queue_head head;             /* head of buf queue */
146         struct mcd_mbx mbx;
147 } mcd_data[NMCD];
148
149 /* reader state machine */
150 #define MCD_S_BEGIN     0
151 #define MCD_S_BEGIN1    1
152 #define MCD_S_WAITSTAT  2
153 #define MCD_S_WAITMODE  3
154 #define MCD_S_WAITREAD  4
155
156 /* prototypes */
157 static  void    mcd_start(int unit);
158 static  int     mcd_getdisklabel(int unit);
159 #ifdef NOTYET
160 static  void    mcd_configure(struct mcd_data *cd);
161 #endif
162 static  int     mcd_get(int unit, char *buf, int nmax);
163 static  int     mcd_setflags(int unit,struct mcd_data *cd);
164 static  int     mcd_getstat(int unit,int sflg);
165 static  int     mcd_send(int unit, int cmd,int nretrys);
166 static  void    hsg2msf(int hsg, bcd_t *msf);
167 static  int     msf2hsg(bcd_t *msf, int relative);
168 static  int     mcd_volinfo(int unit);
169 static  ointhand2_t     mcdintr;
170 static  int     mcd_waitrdy(int port,int dly);
171 static  timeout_t mcd_timeout;
172 static  void    mcd_doread(int state, struct mcd_mbx *mbxin);
173 static  void    mcd_soft_reset(int unit);
174 static  int     mcd_hard_reset(int unit);
175 static  int     mcd_setmode(int unit, int mode);
176 static  int     mcd_getqchan(int unit, struct mcd_qchninfo *q);
177 static  int     mcd_subchan(int unit, struct ioc_read_subchannel *sc);
178 static  int     mcd_toc_header(int unit, struct ioc_toc_header *th);
179 static  int     mcd_read_toc(int unit);
180 static  int     mcd_toc_entrys(int unit, struct ioc_read_toc_entry *te);
181 #if 0
182 static  int     mcd_toc_entry(int unit, struct ioc_read_toc_single_entry *te);
183 #endif
184 static  int     mcd_stop(int unit);
185 static  int     mcd_eject(int unit);
186 static  int     mcd_inject(int unit);
187 static  int     mcd_playtracks(int unit, struct ioc_play_track *pt);
188 static  int     mcd_play(int unit, struct mcd_read2 *pb);
189 static  int     mcd_playmsf(int unit, struct ioc_play_msf *pt);
190 static  int     mcd_playblocks(int unit, struct ioc_play_blocks *);
191 static  int     mcd_pause(int unit);
192 static  int     mcd_resume(int unit);
193 static  int     mcd_lock_door(int unit, int lock);
194 static  int     mcd_close_tray(int unit);
195
196 static  int     mcd_probe(struct isa_device *dev);
197 static  int     mcd_attach(struct isa_device *dev);
198 struct  isa_driver      mcddriver = { mcd_probe, mcd_attach, "mcd" };
199
200 static  d_open_t        mcdopen;
201 static  d_close_t       mcdclose;
202 static  d_ioctl_t       mcdioctl;
203 static  d_psize_t       mcdsize;
204 static  d_strategy_t    mcdstrategy;
205
206 static struct cdevsw mcd_cdevsw = {
207         /* name */      "mcd",
208         /* maj */       MCD_CDEV_MAJOR,
209         /* flags */     D_DISK,
210         /* port */      NULL,
211         /* autoq */     0,
212
213         /* open */      mcdopen,
214         /* close */     mcdclose,
215         /* read */      physread,
216         /* write */     nowrite,
217         /* ioctl */     mcdioctl,
218         /* poll */      nopoll,
219         /* mmap */      nommap,
220         /* strategy */  mcdstrategy,
221         /* dump */      nodump,
222         /* psize */     nopsize
223 };
224
225 #define mcd_put(port,byte)      outb(port,byte)
226
227 #define MCD_RETRYS      5
228 #define MCD_RDRETRYS    8
229
230 #define CLOSE_TRAY_SECS 8
231 #define DISK_SENSE_SECS 3
232 #define WAIT_FRAC 4
233
234 /* several delays */
235 #define RDELAY_WAITSTAT 300
236 #define RDELAY_WAITMODE 300
237 #define RDELAY_WAITREAD 800
238
239 #define MIN_DELAY       15
240 #define DELAY_GETREPLY  5000000
241
242 int mcd_attach(struct isa_device *dev)
243 {
244         int     unit = dev->id_unit;
245         struct mcd_data *cd = mcd_data + unit;
246
247         dev->id_ointr = mcdintr;
248         cd->iobase = dev->id_iobase;
249         cd->flags |= MCDINIT;
250         mcd_soft_reset(unit);
251         bufq_init(&cd->head);
252
253 #ifdef NOTYET
254         /* wire controller for interrupts and dma */
255         mcd_configure(cd);
256 #endif
257         /* name filled in probe */
258         make_dev(&mcd_cdevsw, dkmakeminor(unit, 0, 0),
259             UID_ROOT, GID_OPERATOR, 0640, "rmcd%da", unit);
260         make_dev(&mcd_cdevsw, dkmakeminor(unit, 0, RAW_PART),
261             UID_ROOT, GID_OPERATOR, 0640, "rmcd%dc", unit);
262         make_dev(&mcd_cdevsw, dkmakeminor(unit, 0, 0),
263             UID_ROOT, GID_OPERATOR, 0640, "mcd%da", unit);
264         make_dev(&mcd_cdevsw, dkmakeminor(unit, 0, RAW_PART),
265             UID_ROOT, GID_OPERATOR, 0640, "mcd%dc", unit);
266         return 1;
267 }
268
269 int mcdopen(dev_t dev, int flags, int fmt, struct proc *p)
270 {
271         int unit,part,phys,r,retry;
272         struct mcd_data *cd;
273
274         unit = mcd_unit(dev);
275         if (unit >= NMCD)
276                 return ENXIO;
277
278         cd = mcd_data + unit;
279         part = mcd_part(dev);
280         phys = mcd_phys(dev);
281
282         /* not initialized*/
283         if (!(cd->flags & MCDINIT))
284                 return ENXIO;
285
286         /* invalidated in the meantime? mark all open part's invalid */
287         if (!(cd->flags & MCDVALID) && cd->openflags)
288                 return ENXIO;
289
290         if (mcd_getstat(unit,1) == -1)
291                 return EIO;
292
293         if (    (cd->status & (MCDDSKCHNG|MCDDOOROPEN))
294             || !(cd->status & MCDDSKIN))
295                 for (retry = 0; retry < DISK_SENSE_SECS * WAIT_FRAC; retry++) {
296                         (void) tsleep((caddr_t)cd, PCATCH, "mcdsn1", hz/WAIT_FRAC);
297                         if ((r = mcd_getstat(unit,1)) == -1)
298                                 return EIO;
299                         if (r != -2)
300                                 break;
301                 }
302
303         if ((   (cd->status & (MCDDOOROPEN|MCDDSKCHNG))
304              || !(cd->status & MCDDSKIN)
305             )
306             && major(dev) == MCD_CDEV_MAJOR && part == RAW_PART
307            ) {
308                 cd->openflags |= (1<<part);
309                 if (phys)
310                         cd->partflags[part] |= MCDREADRAW;
311                 return 0;
312         }
313         if (cd->status & MCDDOOROPEN) {
314                 printf("mcd%d: door is open\n", unit);
315                 return ENXIO;
316         }
317         if (!(cd->status & MCDDSKIN)) {
318                 printf("mcd%d: no CD inside\n", unit);
319                 return ENXIO;
320         }
321         if (cd->status & MCDDSKCHNG) {
322                 printf("mcd%d: CD not sensed\n", unit);
323                 return ENXIO;
324         }
325
326         if (mcdsize(dev) < 0) {
327                 if (major(dev) == MCD_CDEV_MAJOR && part == RAW_PART) {
328                         cd->openflags |= (1<<part);
329                         if (phys)
330                                 cd->partflags[part] |= MCDREADRAW;
331                         return 0;
332                 }
333                 printf("mcd%d: failed to get disk size\n",unit);
334                 return ENXIO;
335         } else
336                 cd->flags |= MCDVALID;
337
338         /* XXX get a default disklabel */
339         mcd_getdisklabel(unit);
340
341 MCD_TRACE("open: partition=%d, disksize = %ld, blksize=%d\n",
342         part, cd->disksize, cd->blksize);
343
344         dev->si_bsize_phys = cd->blksize;
345
346         if (part == RAW_PART ||
347                 (part < cd->dlabel.d_npartitions &&
348                 cd->dlabel.d_partitions[part].p_fstype != FS_UNUSED)) {
349                 cd->openflags |= (1<<part);
350                 if (part == RAW_PART && phys)
351                         cd->partflags[part] |= MCDREADRAW;
352                 (void) mcd_lock_door(unit, MCD_LK_LOCK);
353                 if (!(cd->flags & MCDVALID))
354                         return ENXIO;
355                 return 0;
356         }
357
358         return ENXIO;
359 }
360
361 int mcdclose(dev_t dev, int flags, int fmt, struct proc *p)
362 {
363         int unit,part;
364         struct mcd_data *cd;
365
366         unit = mcd_unit(dev);
367         if (unit >= NMCD)
368                 return ENXIO;
369
370         cd = mcd_data + unit;
371         part = mcd_part(dev);
372
373         if (!(cd->flags & MCDINIT) || !(cd->openflags & (1<<part)))
374                 return ENXIO;
375
376         MCD_TRACE("close: partition=%d\n", part);
377
378         (void) mcd_lock_door(unit, MCD_LK_UNLOCK);
379         cd->openflags &= ~(1<<part);
380         cd->partflags[part] &= ~MCDREADRAW;
381
382         return 0;
383 }
384
385 void
386 mcdstrategy(struct buf *bp)
387 {
388         struct mcd_data *cd;
389         int s;
390
391         int unit = mcd_unit(bp->b_dev);
392
393         cd = mcd_data + unit;
394
395         /* test validity */
396 /*MCD_TRACE("strategy: buf=0x%lx, unit=%ld, block#=%ld bcount=%ld\n",
397         bp,unit,bp->b_blkno,bp->b_bcount);*/
398         if (unit >= NMCD || bp->b_blkno < 0) {
399                 printf("mcdstrategy: unit = %d, blkno = %ld, bcount = %ld\n",
400                         unit, (long)bp->b_blkno, bp->b_bcount);
401                 printf("mcd: mcdstratregy failure");
402                 bp->b_error = EINVAL;
403                 bp->b_flags |= B_ERROR;
404                 goto bad;
405         }
406
407         /* if device invalidated (e.g. media change, door open), error */
408         if (!(cd->flags & MCDVALID)) {
409 MCD_TRACE("strategy: drive not valid\n");
410                 bp->b_error = EIO;
411                 goto bad;
412         }
413
414         /* read only */
415         if (!(bp->b_flags & B_READ)) {
416                 bp->b_error = EROFS;
417                 goto bad;
418         }
419
420         /* no data to read */
421         if (bp->b_bcount == 0)
422                 goto done;
423
424         /* for non raw access, check partition limits */
425         if (mcd_part(bp->b_dev) != RAW_PART) {
426                 if (!(cd->flags & MCDLABEL)) {
427                         bp->b_error = EIO;
428                         goto bad;
429                 }
430                 /* adjust transfer if necessary */
431                 if (bounds_check_with_label(bp,&cd->dlabel,1) <= 0) {
432                         goto done;
433                 }
434         } else {
435                 bp->b_pblkno = bp->b_blkno;
436                 bp->b_resid = 0;
437         }
438
439         /* queue it */
440         s = splbio();
441         bufqdisksort(&cd->head, bp);
442         splx(s);
443
444         /* now check whether we can perform processing */
445         mcd_start(unit);
446         return;
447
448 bad:
449         bp->b_flags |= B_ERROR;
450 done:
451         bp->b_resid = bp->b_bcount;
452         biodone(bp);
453         return;
454 }
455
456 static void mcd_start(int unit)
457 {
458         struct mcd_data *cd = mcd_data + unit;
459         struct partition *p;
460         struct buf *bp;
461         int s = splbio();
462
463         if (cd->flags & MCDMBXBSY) {
464                 splx(s);
465                 return;
466         }
467
468         bp = bufq_first(&cd->head);
469         if (bp != 0) {
470                 /* block found to process, dequeue */
471                 /*MCD_TRACE("mcd_start: found block bp=0x%x\n",bp,0,0,0);*/
472                 bufq_remove(&cd->head, bp);
473                 splx(s);
474         } else {
475                 /* nothing to do */
476                 splx(s);
477                 return;
478         }
479
480         /* changed media? */
481         if (!(cd->flags & MCDVALID)) {
482                 MCD_TRACE("mcd_start: drive not valid\n");
483                 return;
484         }
485
486         p = cd->dlabel.d_partitions + mcd_part(bp->b_dev);
487
488         cd->flags |= MCDMBXBSY;
489         if (cd->partflags[mcd_part(bp->b_dev)] & MCDREADRAW)
490                 cd->flags |= MCDREADRAW;
491         cd->mbx.unit = unit;
492         cd->mbx.port = cd->iobase;
493         cd->mbx.retry = MCD_RETRYS;
494         cd->mbx.bp = bp;
495         cd->mbx.p_offset = p->p_offset;
496
497         /* calling the read routine */
498         mcd_doread(MCD_S_BEGIN,&(cd->mbx));
499         /* triggers mcd_start, when successful finished */
500         return;
501 }
502
503 int mcdioctl(dev_t dev, u_long cmd, caddr_t addr, int flags, struct proc *p)
504 {
505         struct mcd_data *cd;
506         int unit,part,retry,r;
507
508         unit = mcd_unit(dev);
509         part = mcd_part(dev);
510         cd = mcd_data + unit;
511
512         if (mcd_getstat(unit, 1) == -1) /* detect disk change too */
513                 return EIO;
514 MCD_TRACE("ioctl called 0x%lx\n", cmd);
515
516         switch (cmd) {
517         case CDIOCSETPATCH:
518         case CDIOCGETVOL:
519         case CDIOCSETVOL:
520         case CDIOCSETMONO:
521         case CDIOCSETSTERIO:
522         case CDIOCSETMUTE:
523         case CDIOCSETLEFT:
524         case CDIOCSETRIGHT:
525                 return EINVAL;
526         case CDIOCEJECT:
527                 return mcd_eject(unit);
528         case CDIOCSETDEBUG:
529                 cd->debug = 1;
530                 return 0;
531         case CDIOCCLRDEBUG:
532                 cd->debug = 0;
533                 return 0;
534         case CDIOCRESET:
535                 return mcd_hard_reset(unit);
536         case CDIOCALLOW:
537                 return mcd_lock_door(unit, MCD_LK_UNLOCK);
538         case CDIOCPREVENT:
539                 return mcd_lock_door(unit, MCD_LK_LOCK);
540         case CDIOCCLOSE:
541                 return mcd_inject(unit);
542         }
543
544         if (!(cd->flags & MCDVALID)) {
545                 if (   major(dev) != MCD_CDEV_MAJOR
546                     || part != RAW_PART
547                     || !(cd->openflags & (1<<RAW_PART))
548                    )
549                         return ENXIO;
550                 if (    (cd->status & (MCDDSKCHNG|MCDDOOROPEN))
551                     || !(cd->status & MCDDSKIN))
552                         for (retry = 0; retry < DISK_SENSE_SECS * WAIT_FRAC; retry++) {
553                                 (void) tsleep((caddr_t)cd, PCATCH, "mcdsn2", hz/WAIT_FRAC);
554                                 if ((r = mcd_getstat(unit,1)) == -1)
555                                         return EIO;
556                                 if (r != -2)
557                                         break;
558                         }
559                 if (   (cd->status & (MCDDOOROPEN|MCDDSKCHNG))
560                     || !(cd->status & MCDDSKIN)
561                     || mcdsize(dev) < 0
562                    )
563                         return ENXIO;
564                 cd->flags |= MCDVALID;
565                 mcd_getdisklabel(unit);
566                 if (mcd_phys(dev))
567                         cd->partflags[part] |= MCDREADRAW;
568                 (void) mcd_lock_door(unit, MCD_LK_LOCK);
569                 if (!(cd->flags & MCDVALID))
570                         return ENXIO;
571         }
572
573         switch (cmd) {
574         case DIOCGDINFO:
575                 *(struct disklabel *) addr = cd->dlabel;
576                 return 0;
577         case DIOCGPART:
578                 ((struct partinfo *) addr)->disklab = &cd->dlabel;
579                 ((struct partinfo *) addr)->part =
580                     &cd->dlabel.d_partitions[mcd_part(dev)];
581                 return 0;
582
583                 /*
584                  * a bit silly, but someone might want to test something on a
585                  * section of cdrom.
586                  */
587         case DIOCWDINFO:
588         case DIOCSDINFO:
589                 if ((flags & FWRITE) == 0)
590                         return EBADF;
591                 else {
592                         return setdisklabel(&cd->dlabel,
593                             (struct disklabel *) addr,
594                             0);
595                 }
596         case DIOCWLABEL:
597                 return EBADF;
598         case CDIOCPLAYTRACKS:
599                 return mcd_playtracks(unit, (struct ioc_play_track *) addr);
600         case CDIOCPLAYBLOCKS:
601                 return mcd_playblocks(unit, (struct ioc_play_blocks *) addr);
602         case CDIOCPLAYMSF:
603                 return mcd_playmsf(unit, (struct ioc_play_msf *) addr);
604         case CDIOCREADSUBCHANNEL:
605                 return mcd_subchan(unit, (struct ioc_read_subchannel *) addr);
606         case CDIOREADTOCHEADER:
607                 return mcd_toc_header(unit, (struct ioc_toc_header *) addr);
608         case CDIOREADTOCENTRYS:
609                 return mcd_toc_entrys(unit, (struct ioc_read_toc_entry *) addr);
610         case CDIOCRESUME:
611                 return mcd_resume(unit);
612         case CDIOCPAUSE:
613                 return mcd_pause(unit);
614         case CDIOCSTART:
615                 if (mcd_setmode(unit, MCD_MD_COOKED) != 0)
616                         return EIO;
617                 return 0;
618         case CDIOCSTOP:
619                 return mcd_stop(unit);
620         default:
621                 return ENOTTY;
622         }
623         /*NOTREACHED*/
624 }
625
626 /* this could have been taken from scsi/cd.c, but it is not clear
627  * whether the scsi cd driver is linked in
628  */
629 static int mcd_getdisklabel(int unit)
630 {
631         struct mcd_data *cd = mcd_data + unit;
632
633         if (cd->flags & MCDLABEL)
634                 return -1;
635
636         bzero(&cd->dlabel,sizeof(struct disklabel));
637         /* filled with spaces first */
638         strncpy(cd->dlabel.d_typename,"               ",
639                 sizeof(cd->dlabel.d_typename));
640         strncpy(cd->dlabel.d_typename, cd->name,
641                 min(strlen(cd->name), sizeof(cd->dlabel.d_typename) - 1));
642         strncpy(cd->dlabel.d_packname,"unknown        ",
643                 sizeof(cd->dlabel.d_packname));
644         cd->dlabel.d_secsize    = cd->blksize;
645         cd->dlabel.d_nsectors   = 100;
646         cd->dlabel.d_ntracks    = 1;
647         cd->dlabel.d_ncylinders = (cd->disksize/100)+1;
648         cd->dlabel.d_secpercyl  = 100;
649         cd->dlabel.d_secperunit = cd->disksize;
650         cd->dlabel.d_rpm        = 300;
651         cd->dlabel.d_interleave = 1;
652         cd->dlabel.d_flags      = D_REMOVABLE;
653         cd->dlabel.d_npartitions= 1;
654         cd->dlabel.d_partitions[0].p_offset = 0;
655         cd->dlabel.d_partitions[0].p_size = cd->disksize;
656         cd->dlabel.d_partitions[0].p_fstype = 9;
657         cd->dlabel.d_magic      = DISKMAGIC;
658         cd->dlabel.d_magic2     = DISKMAGIC;
659         cd->dlabel.d_checksum   = dkcksum(&cd->dlabel);
660
661         cd->flags |= MCDLABEL;
662         return 0;
663 }
664
665 int mcdsize(dev_t dev)
666 {
667         int size;
668         int unit = mcd_unit(dev);
669         struct mcd_data *cd = mcd_data + unit;
670
671         if (mcd_volinfo(unit) == 0) {
672                 cd->blksize = MCDBLK;
673                 size = msf2hsg(cd->volinfo.vol_msf, 0);
674                 cd->disksize = size * (MCDBLK/DEV_BSIZE);
675                 return 0;
676         }
677         return -1;
678 }
679
680 /***************************************************************
681  * lower level of driver starts here
682  **************************************************************/
683
684 #ifdef NOTDEF
685 static char
686 irqs[] = {
687         0x00,0x00,0x10,0x20,0x00,0x30,0x00,0x00,
688         0x00,0x10,0x40,0x50,0x00,0x00,0x00,0x00
689 };
690
691 static char
692 drqs[] = {
693         0x00,0x01,0x00,0x03,0x00,0x05,0x06,0x07,
694 };
695 #endif
696
697 #ifdef NOT_YET
698 static void
699 mcd_configure(struct mcd_data *cd)
700 {
701         outb(cd->iobase+mcd_config,cd->config);
702 }
703 #endif
704
705 /* Wait for non-busy - return 0 on timeout */
706 static int
707 twiddle_thumbs(int port, int unit, int count, char *whine)
708 {
709         int i;
710
711         for (i = 0; i < count; i++) {
712                 if (!(inb(port+MCD_FLAGS) & MFL_STATUS_NOT_AVAIL))
713                         return 1;
714                 }
715         if (bootverbose)
716                 printf("mcd%d: timeout %s\n", unit, whine);
717         return 0;
718 }
719
720 /* check to see if a Mitsumi CD-ROM is attached to the ISA bus */
721
722 int
723 mcd_probe(struct isa_device *dev)
724 {
725         int port = dev->id_iobase;
726         int unit = dev->id_unit;
727         int i, j;
728         unsigned char stbytes[3];
729         static int once;
730
731         if (!once++)
732                 cdevsw_add(&mcd_cdevsw);
733
734         mcd_data[unit].flags = MCDPROBING;
735
736 #ifdef NOTDEF
737         /* get irq/drq configuration word */
738         mcd_data[unit].config = irqs[dev->id_irq]; /* | drqs[dev->id_drq];*/
739 #else
740         mcd_data[unit].config = 0;
741 #endif
742
743         /* send a reset */
744         outb(port+MCD_FLAGS, M_RESET);
745
746         /*
747          * delay awhile by getting any pending garbage (old data) and
748          * throwing it away.
749          */
750         for (i = 1000000; i != 0; i--)
751                 inb(port+MCD_FLAGS);
752
753         /* Get status */
754         outb(port+MCD_DATA, MCD_CMDGETSTAT);
755         if (!twiddle_thumbs(port, unit, 1000000, "getting status"))
756                 return 0;       /* Timeout */
757         /* Get version information */
758         outb(port+MCD_DATA, MCD_CMDCONTINFO);
759         for (j = 0; j < 3; j++) {
760                 if (!twiddle_thumbs(port, unit, 3000, "getting version info"))
761                         return 0;
762                 stbytes[j] = (inb(port+MCD_DATA) & 0xFF);
763         }
764         if (stbytes[1] == stbytes[2])
765                 return 0;
766         if (stbytes[2] >= 4 || stbytes[1] != 'M') {
767                 outb(port+MCD_CTRL, M_PICKLE);
768                 mcd_data[unit].flags |= MCDNEWMODEL;
769         }
770         mcd_data[unit].read_command = MCD_CMDSINGLESPEEDREAD;
771         switch (stbytes[1]) {
772         case 'M':
773                 if (stbytes[2] <= 2) {
774                         mcd_data[unit].type = MCD_TYPE_LU002S;
775                         mcd_data[unit].name = "Mitsumi LU002S";
776                 } else if (stbytes[2] <= 5) {
777                         mcd_data[unit].type = MCD_TYPE_LU005S;
778                         mcd_data[unit].name = "Mitsumi LU005S";
779                 } else {
780                         mcd_data[unit].type = MCD_TYPE_LU006S;
781                         mcd_data[unit].name = "Mitsumi LU006S";
782                 }
783                 break;
784         case 'F':
785                 mcd_data[unit].type = MCD_TYPE_FX001;
786                 mcd_data[unit].name = "Mitsumi FX001";
787                 break;
788         case 'D':
789                 mcd_data[unit].type = MCD_TYPE_FX001D;
790                 mcd_data[unit].name = "Mitsumi FX001D";
791                 mcd_data[unit].read_command = MCD_CMDDOUBLESPEEDREAD;
792                 break;
793         default:
794                 mcd_data[unit].type = MCD_TYPE_UNKNOWN;
795                 mcd_data[unit].name = "Mitsumi ???";
796                 break;
797         }
798         printf("mcd%d: type %s, version info: %c %x\n", unit, mcd_data[unit].name,
799                 stbytes[1], stbytes[2]);
800
801         return 4;
802 }
803
804
805 static int
806 mcd_waitrdy(int port,int dly)
807 {
808         int i;
809
810         /* wait until flag port senses status ready */
811         for (i=0; i<dly; i+=MIN_DELAY) {
812                 if (!(inb(port+MCD_FLAGS) & MFL_STATUS_NOT_AVAIL))
813                         return 0;
814                 DELAY(MIN_DELAY);
815         }
816         return -1;
817 }
818
819 static int
820 mcd_getreply(int unit,int dly)
821 {
822         struct  mcd_data *cd = mcd_data + unit;
823         int     port = cd->iobase;
824
825         /* wait data to become ready */
826         if (mcd_waitrdy(port,dly)<0) {
827                 printf("mcd%d: timeout getreply\n",unit);
828                 return -1;
829         }
830
831         /* get the data */
832         return inb(port+mcd_status) & 0xFF;
833 }
834
835 static int
836 mcd_getstat(int unit,int sflg)
837 {
838         int     i;
839         struct  mcd_data *cd = mcd_data + unit;
840         int     port = cd->iobase;
841
842         /* get the status */
843         if (sflg)
844                 outb(port+mcd_command, MCD_CMDGETSTAT);
845         i = mcd_getreply(unit,DELAY_GETREPLY);
846         if (i<0 || (i & MCD_ST_CMDCHECK)) {
847                 cd->curr_mode = MCD_MD_UNKNOWN;
848                 return -1;
849         }
850
851         cd->status = i;
852
853         if (mcd_setflags(unit,cd) < 0)
854                 return -2;
855         return cd->status;
856 }
857
858 static int
859 mcd_setflags(int unit, struct mcd_data *cd)
860 {
861         /* check flags */
862         if (    (cd->status & (MCDDSKCHNG|MCDDOOROPEN))
863             || !(cd->status & MCDDSKIN)) {
864                 MCD_TRACE("setflags: sensed DSKCHNG or DOOROPEN or !DSKIN\n");
865                 mcd_soft_reset(unit);
866                 return -1;
867         }
868
869         if (cd->status & MCDAUDIOBSY)
870                 cd->audio_status = CD_AS_PLAY_IN_PROGRESS;
871         else if (cd->audio_status == CD_AS_PLAY_IN_PROGRESS)
872                 cd->audio_status = CD_AS_PLAY_COMPLETED;
873         return 0;
874 }
875
876 static int
877 mcd_get(int unit, char *buf, int nmax)
878 {
879         int i,k;
880
881         for (i=0; i<nmax; i++) {
882                 /* wait for data */
883                 if ((k = mcd_getreply(unit,DELAY_GETREPLY)) < 0) {
884                         printf("mcd%d: timeout mcd_get\n",unit);
885                         return -1;
886                 }
887                 buf[i] = k;
888         }
889         return i;
890 }
891
892 static int
893 mcd_send(int unit, int cmd,int nretrys)
894 {
895         int i,k=0;
896         int port = mcd_data[unit].iobase;
897
898 /*MCD_TRACE("mcd_send: command = 0x%02x\n",cmd,0,0,0);*/
899         for (i=0; i<nretrys; i++) {
900                 outb(port+mcd_command, cmd);
901                 if ((k=mcd_getstat(unit,0)) != -1)
902                         break;
903         }
904         if (k == -2) {
905                 printf("mcd%d: media changed\n",unit);
906                 return -1;
907         }
908         if (i == nretrys) {
909                 printf("mcd%d: mcd_send retry cnt exceeded\n",unit);
910                 return -1;
911         }
912 /*MCD_TRACE("mcd_send: done\n",0,0,0,0);*/
913         return 0;
914 }
915
916 static void
917 hsg2msf(int hsg, bcd_t *msf)
918 {
919         hsg += 150;
920         F_msf(msf) = bin2bcd(hsg % 75);
921         hsg /= 75;
922         S_msf(msf) = bin2bcd(hsg % 60);
923         hsg /= 60;
924         M_msf(msf) = bin2bcd(hsg);
925 }
926
927 static int
928 msf2hsg(bcd_t *msf, int relative)
929 {
930         return (bcd2bin(M_msf(msf)) * 60 + bcd2bin(S_msf(msf))) * 75 +
931                 bcd2bin(F_msf(msf)) - (!relative) * 150;
932 }
933
934 static int
935 mcd_volinfo(int unit)
936 {
937         struct mcd_data *cd = mcd_data + unit;
938
939         /* Just return if we already have it */
940         if (cd->flags & MCDVOLINFO) return 0;
941
942 /*MCD_TRACE("mcd_volinfo: enter\n",0,0,0,0);*/
943
944         /* send volume info command */
945         if (mcd_send(unit,MCD_CMDGETVOLINFO,MCD_RETRYS) < 0)
946                 return EIO;
947
948         /* get data */
949         if (mcd_get(unit,(char*) &cd->volinfo,sizeof(struct mcd_volinfo)) < 0) {
950                 printf("mcd%d: mcd_volinfo: error read data\n",unit);
951                 return EIO;
952         }
953
954         if (cd->volinfo.trk_low > 0 &&
955             cd->volinfo.trk_high >= cd->volinfo.trk_low
956            ) {
957                 cd->flags |= MCDVOLINFO;        /* volinfo is OK */
958                 return 0;
959         }
960
961         return EINVAL;
962 }
963
964 static void
965 mcdintr(unit)
966         int unit;
967 {
968         MCD_TRACE("stray interrupt\n");
969 }
970
971 /* state machine to process read requests
972  * initialize with MCD_S_BEGIN: calculate sizes, and read status
973  * MCD_S_WAITSTAT: wait for status reply, set mode
974  * MCD_S_WAITMODE: waits for status reply from set mode, set read command
975  * MCD_S_WAITREAD: wait for read ready, read data
976  */
977 static struct mcd_mbx *mbxsave;
978 static struct callout_handle tohandle = CALLOUT_HANDLE_INITIALIZER(&tohandle);
979
980 static void
981 mcd_timeout(void *arg)
982 {
983         mcd_doread((int)arg, mbxsave);
984 }
985
986 static void
987 mcd_doread(int state, struct mcd_mbx *mbxin)
988 {
989         struct mcd_mbx *mbx = (state!=MCD_S_BEGIN) ? mbxsave : mbxin;
990         int     unit = mbx->unit;
991         int     port = mbx->port;
992         int     com_port = mbx->port + mcd_command;
993         int     data_port = mbx->port + mcd_rdata;
994         struct  buf *bp = mbx->bp;
995         struct  mcd_data *cd = mcd_data + unit;
996
997         int     rm,i,k;
998         struct mcd_read2 rbuf;
999         int     blknum;
1000         caddr_t addr;
1001
1002 loop:
1003         switch (state) {
1004         case MCD_S_BEGIN:
1005                 mbx = mbxsave = mbxin;
1006
1007         case MCD_S_BEGIN1:
1008 retry_status:
1009                 /* get status */
1010                 outb(com_port, MCD_CMDGETSTAT);
1011                 mbx->count = RDELAY_WAITSTAT;
1012                 tohandle = timeout(mcd_timeout,
1013                                    (caddr_t)MCD_S_WAITSTAT,hz/100); /* XXX */
1014                 return;
1015         case MCD_S_WAITSTAT:
1016                 untimeout(mcd_timeout,(caddr_t)MCD_S_WAITSTAT, tohandle);
1017                 if (mbx->count-- >= 0) {
1018                         if (inb(port+MCD_FLAGS) & MFL_STATUS_NOT_AVAIL) {
1019                                 timeout(mcd_timeout,
1020                                     (caddr_t)MCD_S_WAITSTAT,hz/100); /* XXX */
1021                                 return;
1022                         }
1023                         cd->status = inb(port+mcd_status) & 0xFF;
1024                         if (cd->status & MCD_ST_CMDCHECK)
1025                                 goto retry_status;
1026                         if (mcd_setflags(unit,cd) < 0)
1027                                 goto changed;
1028                         MCD_TRACE("got WAITSTAT delay=%d\n",
1029                                 RDELAY_WAITSTAT-mbx->count);
1030                         /* reject, if audio active */
1031                         if (cd->status & MCDAUDIOBSY) {
1032                                 printf("mcd%d: audio is active\n",unit);
1033                                 goto readerr;
1034                         }
1035
1036 retry_mode:
1037                         /* to check for raw/cooked mode */
1038                         if (cd->flags & MCDREADRAW) {
1039                                 rm = MCD_MD_RAW;
1040                                 mbx->sz = MCDRBLK;
1041                         } else {
1042                                 rm = MCD_MD_COOKED;
1043                                 mbx->sz = cd->blksize;
1044                         }
1045
1046                         if (rm == cd->curr_mode)
1047                                 goto modedone;
1048
1049                         mbx->count = RDELAY_WAITMODE;
1050
1051                         cd->curr_mode = MCD_MD_UNKNOWN;
1052                         mbx->mode = rm;
1053                         mcd_put(com_port, MCD_CMDSETMODE);
1054                         mcd_put(com_port, rm);
1055
1056                         tohandle = timeout(mcd_timeout,
1057                                            (caddr_t)MCD_S_WAITMODE,hz/100); /* XXX */
1058                         return;
1059                 } else {
1060                         printf("mcd%d: timeout getstatus\n",unit);
1061                         goto readerr;
1062                 }
1063
1064         case MCD_S_WAITMODE:
1065                 untimeout(mcd_timeout,(caddr_t)MCD_S_WAITMODE, tohandle);
1066                 if (mbx->count-- < 0) {
1067                         printf("mcd%d: timeout set mode\n",unit);
1068                         goto readerr;
1069                 }
1070                 if (inb(port+MCD_FLAGS) & MFL_STATUS_NOT_AVAIL) {
1071                         tohandle = timeout(mcd_timeout,
1072                                            (caddr_t)MCD_S_WAITMODE,hz/100);
1073                         return;
1074                 }
1075                 cd->status = inb(port+mcd_status) & 0xFF;
1076                 if (cd->status & MCD_ST_CMDCHECK) {
1077                         cd->curr_mode = MCD_MD_UNKNOWN;
1078                         goto retry_mode;
1079                 }
1080                 if (mcd_setflags(unit,cd) < 0)
1081                         goto changed;
1082                 cd->curr_mode = mbx->mode;
1083                 MCD_TRACE("got WAITMODE delay=%d\n",
1084                         RDELAY_WAITMODE-mbx->count);
1085 modedone:
1086                 /* for first block */
1087                 mbx->nblk = (bp->b_bcount + (mbx->sz-1)) / mbx->sz;
1088                 mbx->skip = 0;
1089
1090 nextblock:
1091                 blknum  = (bp->b_blkno / (mbx->sz/DEV_BSIZE))
1092                         + mbx->p_offset + mbx->skip/mbx->sz;
1093
1094                 MCD_TRACE("mcd_doread: read blknum=%d for bp=%p\n",
1095                         blknum, bp);
1096
1097                 /* build parameter block */
1098                 hsg2msf(blknum,rbuf.start_msf);
1099 retry_read:
1100                 /* send the read command */
1101                 disable_intr();
1102                 mcd_put(com_port,cd->read_command);
1103                 mcd_put(com_port,rbuf.start_msf[0]);
1104                 mcd_put(com_port,rbuf.start_msf[1]);
1105                 mcd_put(com_port,rbuf.start_msf[2]);
1106                 mcd_put(com_port,0);
1107                 mcd_put(com_port,0);
1108                 mcd_put(com_port,1);
1109                 enable_intr();
1110
1111                 /* Spin briefly (<= 2ms) to avoid missing next block */
1112                 for (i = 0; i < 20; i++) {
1113                         k = inb(port+MCD_FLAGS);
1114                         if (!(k & MFL_DATA_NOT_AVAIL))
1115                                 goto got_it;
1116                         DELAY(100);
1117                 }
1118
1119                 mbx->count = RDELAY_WAITREAD;
1120                 tohandle = timeout(mcd_timeout,
1121                                    (caddr_t)MCD_S_WAITREAD,hz/100); /* XXX */
1122                 return;
1123         case MCD_S_WAITREAD:
1124                 untimeout(mcd_timeout,(caddr_t)MCD_S_WAITREAD, tohandle);
1125                 if (mbx->count-- > 0) {
1126                         k = inb(port+MCD_FLAGS);
1127                         if (!(k & MFL_DATA_NOT_AVAIL)) { /* XXX */
1128                                 MCD_TRACE("got data delay=%d\n",
1129                                         RDELAY_WAITREAD-mbx->count);
1130                         got_it:
1131                                 /* data is ready */
1132                                 addr    = bp->b_data + mbx->skip;
1133
1134                                 outb(port+mcd_ctl2,0x04);       /* XXX */
1135                                 for (i=0; i<mbx->sz; i++)
1136                                         *addr++ = inb(data_port);
1137                                 outb(port+mcd_ctl2,0x0c);       /* XXX */
1138
1139                                 k = inb(port+MCD_FLAGS);
1140                                 /* If we still have some junk, read it too */
1141                                 if (!(k & MFL_DATA_NOT_AVAIL)) {
1142                                         outb(port+mcd_ctl2,0x04);       /* XXX */
1143                                         (void)inb(data_port);
1144                                         (void)inb(data_port);
1145                                         outb(port+mcd_ctl2,0x0c);       /* XXX */
1146                                 }
1147
1148                                 if (--mbx->nblk > 0) {
1149                                         mbx->skip += mbx->sz;
1150                                         goto nextblock;
1151                                 }
1152
1153                                 /* return buffer */
1154                                 bp->b_resid = 0;
1155                                 biodone(bp);
1156
1157                                 cd->flags &= ~(MCDMBXBSY|MCDREADRAW);
1158                                 mcd_start(mbx->unit);
1159                                 return;
1160                         }
1161                         if (!(k & MFL_STATUS_NOT_AVAIL)) {
1162                                 cd->status = inb(port+mcd_status) & 0xFF;
1163                                 if (cd->status & MCD_ST_CMDCHECK)
1164                                         goto retry_read;
1165                                 if (mcd_setflags(unit,cd) < 0)
1166                                         goto changed;
1167                         }
1168                         tohandle = timeout(mcd_timeout,
1169                                            (caddr_t)MCD_S_WAITREAD,hz/100); /* XXX */
1170                         return;
1171                 } else {
1172                         printf("mcd%d: timeout read data\n",unit);
1173                         goto readerr;
1174                 }
1175         }
1176
1177 readerr:
1178         if (mbx->retry-- > 0) {
1179                 printf("mcd%d: retrying\n",unit);
1180                 state = MCD_S_BEGIN1;
1181                 goto loop;
1182         }
1183 harderr:
1184         /* invalidate the buffer */
1185         bp->b_flags |= B_ERROR;
1186         bp->b_resid = bp->b_bcount;
1187         biodone(bp);
1188
1189         cd->flags &= ~(MCDMBXBSY|MCDREADRAW);
1190         mcd_start(mbx->unit);
1191         return;
1192
1193 changed:
1194         printf("mcd%d: media changed\n", unit);
1195         goto harderr;
1196
1197 #ifdef NOTDEF
1198         printf("mcd%d: unit timeout, resetting\n",mbx->unit);
1199         outb(mbx->port+mcd_reset,MCD_CMDRESET);
1200         DELAY(300000);
1201         (void)mcd_getstat(mbx->unit,1);
1202         (void)mcd_getstat(mbx->unit,1);
1203         /*cd->status &= ~MCDDSKCHNG; */
1204         cd->debug = 1; /* preventive set debug mode */
1205
1206 #endif
1207
1208 }
1209
1210 static int
1211 mcd_lock_door(int unit, int lock)
1212 {
1213         struct mcd_data *cd = mcd_data + unit;
1214         int port = cd->iobase;
1215
1216         outb(port+mcd_command, MCD_CMDLOCKDRV);
1217         outb(port+mcd_command, lock);
1218         if (mcd_getstat(unit,0) == -1)
1219                 return EIO;
1220         return 0;
1221 }
1222
1223 static int
1224 mcd_close_tray(int unit)
1225 {
1226         struct mcd_data *cd = mcd_data + unit;
1227         int port = cd->iobase;
1228         int retry, r;
1229
1230         if (mcd_getstat(unit,1) == -1)
1231                 return EIO;
1232         if (cd->status & MCDDOOROPEN) {
1233                 outb(port+mcd_command, MCD_CMDCLOSETRAY);
1234                 for (retry = 0; retry < CLOSE_TRAY_SECS * WAIT_FRAC; retry++) {
1235                         if (inb(port+MCD_FLAGS) & MFL_STATUS_NOT_AVAIL)
1236                                 (void) tsleep((caddr_t)cd, PCATCH, "mcdcls", hz/WAIT_FRAC);
1237                         else {
1238                                 if ((r = mcd_getstat(unit,0)) == -1)
1239                                         return EIO;
1240                                 return 0;
1241                         }
1242                 }
1243                 return ENXIO;
1244         }
1245         return 0;
1246 }
1247
1248 static int
1249 mcd_eject(int unit)
1250 {
1251         struct mcd_data *cd = mcd_data + unit;
1252         int port = cd->iobase, r;
1253
1254         if (mcd_getstat(unit,1) == -1)    /* detect disk change too */
1255                 return EIO;
1256         if (cd->status & MCDDOOROPEN)
1257                 return 0;
1258         if ((r = mcd_stop(unit)) == EIO)
1259                 return r;
1260         outb(port+mcd_command, MCD_CMDEJECTDISK);
1261         if (mcd_getstat(unit,0) == -1)
1262                 return EIO;
1263         return 0;
1264 }
1265
1266 static int
1267 mcd_inject(int unit)
1268 {
1269         struct mcd_data *cd = mcd_data + unit;
1270
1271         if (mcd_getstat(unit,1) == -1)    /* detect disk change too */
1272                 return EIO;
1273         if (cd->status & MCDDOOROPEN)
1274                 return mcd_close_tray(unit);
1275         return 0;
1276 }
1277
1278 static int
1279 mcd_hard_reset(int unit)
1280 {
1281         struct mcd_data *cd = mcd_data + unit;
1282         int port = cd->iobase;
1283
1284         outb(port+mcd_reset,MCD_CMDRESET);
1285         cd->curr_mode = MCD_MD_UNKNOWN;
1286         cd->audio_status = CD_AS_AUDIO_INVALID;
1287         return 0;
1288 }
1289
1290 static void
1291 mcd_soft_reset(int unit)
1292 {
1293         struct mcd_data *cd = mcd_data + unit;
1294         int i;
1295
1296         cd->flags &= (MCDINIT|MCDPROBING|MCDNEWMODEL);
1297         cd->curr_mode = MCD_MD_UNKNOWN;
1298         for (i=0; i<MAXPARTITIONS; i++) cd->partflags[i] = 0;
1299         cd->audio_status = CD_AS_AUDIO_INVALID;
1300 }
1301
1302 static int
1303 mcd_setmode(int unit, int mode)
1304 {
1305         struct mcd_data *cd = mcd_data + unit;
1306         int port = cd->iobase;
1307         int retry, st;
1308
1309         if (cd->curr_mode == mode)
1310                 return 0;
1311         if (cd->debug)
1312                 printf("mcd%d: setting mode to %d\n", unit, mode);
1313         for(retry=0; retry<MCD_RETRYS; retry++)
1314         {
1315                 cd->curr_mode = MCD_MD_UNKNOWN;
1316                 outb(port+mcd_command, MCD_CMDSETMODE);
1317                 outb(port+mcd_command, mode);
1318                 if ((st = mcd_getstat(unit, 0)) >= 0) {
1319                         cd->curr_mode = mode;
1320                         return 0;
1321                 }
1322                 if (st == -2) {
1323                         printf("mcd%d: media changed\n", unit);
1324                         break;
1325                 }
1326         }
1327
1328         return -1;
1329 }
1330
1331 static int
1332 mcd_toc_header(int unit, struct ioc_toc_header *th)
1333 {
1334         struct mcd_data *cd = mcd_data + unit;
1335         int r;
1336
1337         if ((r = mcd_volinfo(unit)) != 0)
1338                 return r;
1339
1340         th->starting_track = bcd2bin(cd->volinfo.trk_low);
1341         th->ending_track = bcd2bin(cd->volinfo.trk_high);
1342         th->len = 2 * sizeof(u_char) /* start & end tracks */ +
1343                   (th->ending_track + 1 - th->starting_track + 1) *
1344                   sizeof(struct cd_toc_entry);
1345
1346         return 0;
1347 }
1348
1349 static int
1350 mcd_read_toc(int unit)
1351 {
1352         struct mcd_data *cd = mcd_data + unit;
1353         struct ioc_toc_header th;
1354         struct mcd_qchninfo q;
1355         int rc, trk, idx, retry;
1356
1357         /* Only read TOC if needed */
1358         if (cd->flags & MCDTOC)
1359                 return 0;
1360
1361         if (cd->debug)
1362                 printf("mcd%d: reading toc header\n", unit);
1363
1364         if ((rc = mcd_toc_header(unit, &th)) != 0)
1365                 return rc;
1366
1367         if (mcd_send(unit, MCD_CMDSTOPAUDIO, MCD_RETRYS) < 0)
1368                 return EIO;
1369
1370         if (mcd_setmode(unit, MCD_MD_TOC) != 0)
1371                 return EIO;
1372
1373         if (cd->debug)
1374                 printf("mcd%d: get_toc reading qchannel info\n",unit);
1375
1376         for(trk=th.starting_track; trk<=th.ending_track; trk++)
1377                 cd->toc[trk].idx_no = 0;
1378         trk = th.ending_track - th.starting_track + 1;
1379         for(retry=0; retry<600 && trk>0; retry++)
1380         {
1381                 if (mcd_getqchan(unit, &q) < 0) break;
1382                 idx = bcd2bin(q.idx_no);
1383                 if (idx>=th.starting_track && idx<=th.ending_track && q.trk_no==0) {
1384                         if (cd->toc[idx].idx_no == 0) {
1385                                 cd->toc[idx] = q;
1386                                 trk--;
1387                         }
1388                 }
1389         }
1390
1391         if (mcd_setmode(unit, MCD_MD_COOKED) != 0)
1392                 return EIO;
1393
1394         if (trk != 0)
1395                 return ENXIO;
1396
1397         /* add a fake last+1 */
1398         idx = th.ending_track + 1;
1399         cd->toc[idx].control = cd->toc[idx-1].control;
1400         cd->toc[idx].addr_type = cd->toc[idx-1].addr_type;
1401         cd->toc[idx].trk_no = 0;
1402         cd->toc[idx].idx_no = MCD_LASTPLUS1;
1403         cd->toc[idx].hd_pos_msf[0] = cd->volinfo.vol_msf[0];
1404         cd->toc[idx].hd_pos_msf[1] = cd->volinfo.vol_msf[1];
1405         cd->toc[idx].hd_pos_msf[2] = cd->volinfo.vol_msf[2];
1406
1407         if (cd->debug)
1408         { int i;
1409         for (i = th.starting_track; i <= idx; i++)
1410                 printf("mcd%d: trk %d idx %d pos %d %d %d\n",
1411                         unit, i,
1412                         cd->toc[i].idx_no > 0x99 ? cd->toc[i].idx_no :
1413                         bcd2bin(cd->toc[i].idx_no),
1414                         bcd2bin(cd->toc[i].hd_pos_msf[0]),
1415                         bcd2bin(cd->toc[i].hd_pos_msf[1]),
1416                         bcd2bin(cd->toc[i].hd_pos_msf[2]));
1417         }
1418
1419         cd->flags |= MCDTOC;
1420
1421         return 0;
1422 }
1423
1424 #if 0
1425 static int
1426 mcd_toc_entry(int unit, struct ioc_read_toc_single_entry *te)
1427 {
1428         struct mcd_data *cd = mcd_data + unit;
1429         struct ioc_toc_header th;
1430         int rc, trk;
1431
1432         if (te->address_format != CD_MSF_FORMAT
1433             && te->address_format != CD_LBA_FORMAT)
1434                 return EINVAL;
1435
1436         /* Copy the toc header */
1437         if ((rc = mcd_toc_header(unit, &th)) != 0)
1438                 return rc;
1439
1440         /* verify starting track */
1441         trk = te->track;
1442         if (trk == 0)
1443                 trk = th.starting_track;
1444         else if (trk == MCD_LASTPLUS1)
1445                 trk = th.ending_track + 1;
1446         else if (trk < th.starting_track || trk > th.ending_track + 1)
1447                 return EINVAL;
1448
1449         /* Make sure we have a valid toc */
1450         if ((rc=mcd_read_toc(unit)) != 0)
1451                 return rc;
1452
1453         /* Copy the TOC data. */
1454         if (cd->toc[trk].idx_no == 0)
1455                 return EIO;
1456
1457         te->entry.control = cd->toc[trk].control;
1458         te->entry.addr_type = cd->toc[trk].addr_type;
1459         te->entry.track =
1460                 cd->toc[trk].idx_no > 0x99 ? cd->toc[trk].idx_no :
1461                 bcd2bin(cd->toc[trk].idx_no);
1462         switch (te->address_format) {
1463         case CD_MSF_FORMAT:
1464                 te->entry.addr.msf.unused = 0;
1465                 te->entry.addr.msf.minute = bcd2bin(cd->toc[trk].hd_pos_msf[0]);
1466                 te->entry.addr.msf.second = bcd2bin(cd->toc[trk].hd_pos_msf[1]);
1467                 te->entry.addr.msf.frame = bcd2bin(cd->toc[trk].hd_pos_msf[2]);
1468                 break;
1469         case CD_LBA_FORMAT:
1470                 te->entry.addr.lba = htonl(msf2hsg(cd->toc[trk].hd_pos_msf, 0));
1471                 break;
1472         }
1473         return 0;
1474 }
1475 #endif
1476
1477 static int
1478 mcd_toc_entrys(int unit, struct ioc_read_toc_entry *te)
1479 {
1480         struct mcd_data *cd = mcd_data + unit;
1481         struct cd_toc_entry entries[MCD_MAXTOCS];
1482         struct ioc_toc_header th;
1483         int rc, n, trk, len;
1484
1485         if (   te->data_len < sizeof(entries[0])
1486             || (te->data_len % sizeof(entries[0])) != 0
1487             || (te->address_format != CD_MSF_FORMAT
1488                 && te->address_format != CD_LBA_FORMAT)
1489            )
1490                 return EINVAL;
1491
1492         /* Copy the toc header */
1493         if ((rc = mcd_toc_header(unit, &th)) != 0)
1494                 return rc;
1495
1496         /* verify starting track */
1497         trk = te->starting_track;
1498         if (trk == 0)
1499                 trk = th.starting_track;
1500         else if (trk == MCD_LASTPLUS1)
1501                 trk = th.ending_track + 1;
1502         else if (trk < th.starting_track || trk > th.ending_track + 1)
1503                 return EINVAL;
1504
1505         len = ((th.ending_track + 1 - trk) + 1) *
1506                 sizeof(entries[0]);
1507         if (te->data_len < len)
1508                 len = te->data_len;
1509         if (len > sizeof(entries))
1510                 return EINVAL;
1511
1512         /* Make sure we have a valid toc */
1513         if ((rc=mcd_read_toc(unit)) != 0)
1514                 return rc;
1515
1516         /* Copy the TOC data. */
1517         for (n = 0; len > 0 && trk <= th.ending_track + 1; trk++) {
1518                 if (cd->toc[trk].idx_no == 0)
1519                         continue;
1520                 entries[n].control = cd->toc[trk].control;
1521                 entries[n].addr_type = cd->toc[trk].addr_type;
1522                 entries[n].track =
1523                         cd->toc[trk].idx_no > 0x99 ? cd->toc[trk].idx_no :
1524                         bcd2bin(cd->toc[trk].idx_no);
1525                 switch (te->address_format) {
1526                 case CD_MSF_FORMAT:
1527                         entries[n].addr.msf.unused = 0;
1528                         entries[n].addr.msf.minute = bcd2bin(cd->toc[trk].hd_pos_msf[0]);
1529                         entries[n].addr.msf.second = bcd2bin(cd->toc[trk].hd_pos_msf[1]);
1530                         entries[n].addr.msf.frame = bcd2bin(cd->toc[trk].hd_pos_msf[2]);
1531                         break;
1532                 case CD_LBA_FORMAT:
1533                         entries[n].addr.lba = htonl(msf2hsg(cd->toc[trk].hd_pos_msf, 0));
1534                         break;
1535                 }
1536                 len -= sizeof(struct cd_toc_entry);
1537                 n++;
1538         }
1539
1540         /* copy the data back */
1541         return copyout(entries, te->data, n * sizeof(struct cd_toc_entry));
1542 }
1543
1544 static int
1545 mcd_stop(int unit)
1546 {
1547         struct mcd_data *cd = mcd_data + unit;
1548
1549         /* Verify current status */
1550         if (cd->audio_status != CD_AS_PLAY_IN_PROGRESS &&
1551             cd->audio_status != CD_AS_PLAY_PAUSED &&
1552             cd->audio_status != CD_AS_PLAY_COMPLETED) {
1553                 if (cd->debug)
1554                         printf("mcd%d: stop attempted when not playing, audio status %d\n",
1555                                 unit, cd->audio_status);
1556                 return EINVAL;
1557         }
1558         if (cd->audio_status == CD_AS_PLAY_IN_PROGRESS)
1559                 if (mcd_send(unit, MCD_CMDSTOPAUDIO, MCD_RETRYS) < 0)
1560                         return EIO;
1561         cd->audio_status = CD_AS_PLAY_COMPLETED;
1562         return 0;
1563 }
1564
1565 static int
1566 mcd_getqchan(int unit, struct mcd_qchninfo *q)
1567 {
1568         struct mcd_data *cd = mcd_data + unit;
1569
1570         if (mcd_send(unit, MCD_CMDGETQCHN, MCD_RETRYS) < 0)
1571                 return -1;
1572         if (mcd_get(unit, (char *) q, sizeof(struct mcd_qchninfo)) < 0)
1573                 return -1;
1574         if (cd->debug) {
1575                 printf("mcd%d: getqchan control=0x%x addr_type=0x%x trk=%d ind=%d ttm=%d:%d.%d dtm=%d:%d.%d\n",
1576                 unit,
1577                 q->control, q->addr_type, bcd2bin(q->trk_no),
1578                 bcd2bin(q->idx_no),
1579                 bcd2bin(q->trk_size_msf[0]), bcd2bin(q->trk_size_msf[1]),
1580                 bcd2bin(q->trk_size_msf[2]),
1581                 bcd2bin(q->hd_pos_msf[0]), bcd2bin(q->hd_pos_msf[1]),
1582                 bcd2bin(q->hd_pos_msf[2]));
1583         }
1584         return 0;
1585 }
1586
1587 static int
1588 mcd_subchan(int unit, struct ioc_read_subchannel *sc)
1589 {
1590         struct mcd_data *cd = mcd_data + unit;
1591         struct mcd_qchninfo q;
1592         struct cd_sub_channel_info data;
1593         int lba;
1594
1595         if (cd->debug)
1596                 printf("mcd%d: subchan af=%d, df=%d\n", unit,
1597                         sc->address_format,
1598                         sc->data_format);
1599
1600         if (sc->address_format != CD_MSF_FORMAT &&
1601             sc->address_format != CD_LBA_FORMAT)
1602                 return EINVAL;
1603
1604         if (sc->data_format != CD_CURRENT_POSITION &&
1605             sc->data_format != CD_MEDIA_CATALOG)
1606                 return EINVAL;
1607
1608         if (mcd_setmode(unit, MCD_MD_COOKED) != 0)
1609                 return EIO;
1610
1611         if (mcd_getqchan(unit, &q) < 0)
1612                 return EIO;
1613
1614         data.header.audio_status = cd->audio_status;
1615         data.what.position.data_format = sc->data_format;
1616
1617         switch (sc->data_format) {
1618         case CD_MEDIA_CATALOG:
1619                 data.what.media_catalog.mc_valid = 1;
1620                 data.what.media_catalog.mc_number[0] = '\0';
1621                 break;
1622
1623         case CD_CURRENT_POSITION:
1624                 data.what.position.control = q.control;
1625                 data.what.position.addr_type = q.addr_type;
1626                 data.what.position.track_number = bcd2bin(q.trk_no);
1627                 data.what.position.index_number = bcd2bin(q.idx_no);
1628                 switch (sc->address_format) {
1629                 case CD_MSF_FORMAT:
1630                         data.what.position.reladdr.msf.unused = 0;
1631                         data.what.position.reladdr.msf.minute = bcd2bin(q.trk_size_msf[0]);
1632                         data.what.position.reladdr.msf.second = bcd2bin(q.trk_size_msf[1]);
1633                         data.what.position.reladdr.msf.frame = bcd2bin(q.trk_size_msf[2]);
1634                         data.what.position.absaddr.msf.unused = 0;
1635                         data.what.position.absaddr.msf.minute = bcd2bin(q.hd_pos_msf[0]);
1636                         data.what.position.absaddr.msf.second = bcd2bin(q.hd_pos_msf[1]);
1637                         data.what.position.absaddr.msf.frame = bcd2bin(q.hd_pos_msf[2]);
1638                         break;
1639                 case CD_LBA_FORMAT:
1640                         lba = msf2hsg(q.trk_size_msf, 1);
1641                         /*
1642                          * Pre-gap has index number of 0, and decreasing MSF
1643                          * address.  Must be converted to negative LBA, per
1644                          * SCSI spec.
1645                          */
1646                         if (data.what.position.index_number == 0)
1647                                 lba = -lba;
1648                         data.what.position.reladdr.lba = htonl(lba);
1649                         data.what.position.absaddr.lba = htonl(msf2hsg(q.hd_pos_msf, 0));
1650                         break;
1651                 }
1652                 break;
1653         }
1654
1655         return copyout(&data, sc->data, min(sizeof(struct cd_sub_channel_info), sc->data_len));
1656 }
1657
1658 static int
1659 mcd_playmsf(int unit, struct ioc_play_msf *p)
1660 {
1661         struct mcd_data *cd = mcd_data + unit;
1662         struct mcd_read2 pb;
1663
1664         if (cd->debug)
1665                 printf("mcd%d: playmsf: from %d:%d.%d to %d:%d.%d\n",
1666                     unit,
1667                     p->start_m, p->start_s, p->start_f,
1668                     p->end_m, p->end_s, p->end_f);
1669
1670         if ((p->start_m * 60 * 75 + p->start_s * 75 + p->start_f) >=
1671             (p->end_m * 60 * 75 + p->end_s * 75 + p->end_f) ||
1672             (p->end_m * 60 * 75 + p->end_s * 75 + p->end_f) >
1673             M_msf(cd->volinfo.vol_msf) * 60 * 75 +
1674             S_msf(cd->volinfo.vol_msf) * 75 +
1675             F_msf(cd->volinfo.vol_msf))
1676                 return EINVAL;
1677
1678         pb.start_msf[0] = bin2bcd(p->start_m);
1679         pb.start_msf[1] = bin2bcd(p->start_s);
1680         pb.start_msf[2] = bin2bcd(p->start_f);
1681         pb.end_msf[0] = bin2bcd(p->end_m);
1682         pb.end_msf[1] = bin2bcd(p->end_s);
1683         pb.end_msf[2] = bin2bcd(p->end_f);
1684
1685         if (mcd_setmode(unit, MCD_MD_COOKED) != 0)
1686                 return EIO;
1687
1688         return mcd_play(unit, &pb);
1689 }
1690
1691 static int
1692 mcd_playtracks(int unit, struct ioc_play_track *pt)
1693 {
1694         struct mcd_data *cd = mcd_data + unit;
1695         struct mcd_read2 pb;
1696         int a = pt->start_track;
1697         int z = pt->end_track;
1698         int rc, i;
1699
1700         if ((rc = mcd_read_toc(unit)) != 0)
1701                 return rc;
1702
1703         if (cd->debug)
1704                 printf("mcd%d: playtracks from %d:%d to %d:%d\n", unit,
1705                         a, pt->start_index, z, pt->end_index);
1706
1707         if (   a < bcd2bin(cd->volinfo.trk_low)
1708             || a > bcd2bin(cd->volinfo.trk_high)
1709             || a > z
1710             || z < bcd2bin(cd->volinfo.trk_low)
1711             || z > bcd2bin(cd->volinfo.trk_high))
1712                 return EINVAL;
1713
1714         for (i = 0; i < 3; i++) {
1715                 pb.start_msf[i] = cd->toc[a].hd_pos_msf[i];
1716                 pb.end_msf[i] = cd->toc[z+1].hd_pos_msf[i];
1717         }
1718
1719         if (mcd_setmode(unit, MCD_MD_COOKED) != 0)
1720                 return EIO;
1721
1722         return mcd_play(unit, &pb);
1723 }
1724
1725 static int
1726 mcd_playblocks(int unit, struct ioc_play_blocks *p)
1727 {
1728         struct mcd_data *cd = mcd_data + unit;
1729         struct mcd_read2 pb;
1730
1731         if (cd->debug)
1732                 printf("mcd%d: playblocks: blkno %d length %d\n",
1733                     unit, p->blk, p->len);
1734
1735         if (p->blk > cd->disksize || p->len > cd->disksize ||
1736             p->blk < 0 || p->len < 0 ||
1737             (p->blk + p->len) > cd->disksize)
1738                 return EINVAL;
1739
1740         hsg2msf(p->blk, pb.start_msf);
1741         hsg2msf(p->blk + p->len, pb.end_msf);
1742
1743         if (mcd_setmode(unit, MCD_MD_COOKED) != 0)
1744                 return EIO;
1745
1746         return mcd_play(unit, &pb);
1747 }
1748
1749 static int
1750 mcd_play(int unit, struct mcd_read2 *pb)
1751 {
1752         struct mcd_data *cd = mcd_data + unit;
1753         int com_port = cd->iobase + mcd_command;
1754         int retry, st = -1, status;
1755
1756         cd->lastpb = *pb;
1757         for(retry=0; retry<MCD_RETRYS; retry++) {
1758
1759                 disable_intr();
1760                 outb(com_port, MCD_CMDSINGLESPEEDREAD);
1761                 outb(com_port, pb->start_msf[0]);
1762                 outb(com_port, pb->start_msf[1]);
1763                 outb(com_port, pb->start_msf[2]);
1764                 outb(com_port, pb->end_msf[0]);
1765                 outb(com_port, pb->end_msf[1]);
1766                 outb(com_port, pb->end_msf[2]);
1767                 enable_intr();
1768
1769                 status=mcd_getstat(unit, 0);
1770                 if (status == -1)
1771                         continue;
1772                 else if (status != -2)
1773                         st = 0;
1774                 break;
1775         }
1776
1777         if (status == -2) {
1778                 printf("mcd%d: media changed\n", unit);
1779                 return ENXIO;
1780         }
1781         if (cd->debug)
1782                 printf("mcd%d: mcd_play retry=%d, status=0x%02x\n", unit, retry, status);
1783         if (st < 0)
1784                 return ENXIO;
1785         cd->audio_status = CD_AS_PLAY_IN_PROGRESS;
1786         return 0;
1787 }
1788
1789 static int
1790 mcd_pause(int unit)
1791 {
1792         struct mcd_data *cd = mcd_data + unit;
1793         struct mcd_qchninfo q;
1794         int rc;
1795
1796         /* Verify current status */
1797         if (cd->audio_status != CD_AS_PLAY_IN_PROGRESS &&
1798             cd->audio_status != CD_AS_PLAY_PAUSED) {
1799                 if (cd->debug)
1800                         printf("mcd%d: pause attempted when not playing, audio status %d\n",
1801                                unit, cd->audio_status);
1802                 return EINVAL;
1803         }
1804
1805         /* Get the current position */
1806         if (mcd_getqchan(unit, &q) < 0)
1807                 return EIO;
1808
1809         /* Copy it into lastpb */
1810         cd->lastpb.start_msf[0] = q.hd_pos_msf[0];
1811         cd->lastpb.start_msf[1] = q.hd_pos_msf[1];
1812         cd->lastpb.start_msf[2] = q.hd_pos_msf[2];
1813
1814         /* Stop playing */
1815         if ((rc=mcd_stop(unit)) != 0)
1816                 return rc;
1817
1818         /* Set the proper status and exit */
1819         cd->audio_status = CD_AS_PLAY_PAUSED;
1820         return 0;
1821 }
1822
1823 static int
1824 mcd_resume(int unit)
1825 {
1826         struct mcd_data *cd = mcd_data + unit;
1827
1828         if (cd->audio_status != CD_AS_PLAY_PAUSED)
1829                 return EINVAL;
1830         return mcd_play(unit, &cd->lastpb);
1831 }