Home | History | Annotate | Line # | Download | only in isa
mcd.c revision 1.26
      1  1.26  mycroft /*	$NetBSD: mcd.c,v 1.26 1995/01/03 01:31:45 mycroft Exp $	*/
      2  1.20      cgd 
      3   1.1      cgd /*
      4   1.6  mycroft  * Copyright (c) 1993, 1994 Charles Hannum.
      5   1.1      cgd  * Copyright 1993 by Holger Veit (data part)
      6   1.1      cgd  * Copyright 1993 by Brian Moore (audio part)
      7   1.1      cgd  * All rights reserved.
      8   1.1      cgd  *
      9   1.1      cgd  * Redistribution and use in source and binary forms, with or without
     10   1.1      cgd  * modification, are permitted provided that the following conditions
     11   1.1      cgd  * are met:
     12   1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     13   1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     14   1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     16   1.1      cgd  *    documentation and/or other materials provided with the distribution.
     17   1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     18   1.1      cgd  *    must display the following acknowledgement:
     19   1.1      cgd  *	This software was developed by Holger Veit and Brian Moore
     20   1.1      cgd  *      for use with "386BSD" and similar operating systems.
     21   1.1      cgd  *    "Similar operating systems" includes mainly non-profit oriented
     22   1.1      cgd  *    systems for research and education, including but not restricted to
     23   1.1      cgd  *    "NetBSD", "FreeBSD", "Mach" (by CMU).
     24   1.1      cgd  * 4. Neither the name of the developer(s) nor the name "386BSD"
     25   1.1      cgd  *    may be used to endorse or promote products derived from this
     26   1.1      cgd  *    software without specific prior written permission.
     27   1.1      cgd  *
     28   1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPER(S) ``AS IS'' AND ANY
     29   1.1      cgd  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     31   1.1      cgd  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE DEVELOPER(S) BE
     32   1.1      cgd  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
     33   1.1      cgd  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
     34   1.1      cgd  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     35   1.1      cgd  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
     36   1.1      cgd  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
     37   1.1      cgd  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     38   1.1      cgd  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     39   1.1      cgd  */
     40   1.2      cgd 
     41   1.6  mycroft /*static char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore";*/
     42   1.1      cgd 
     43   1.3  mycroft #include <sys/types.h>
     44   1.3  mycroft #include <sys/param.h>
     45   1.3  mycroft #include <sys/systm.h>
     46   1.6  mycroft #include <sys/kernel.h>
     47   1.6  mycroft #include <sys/proc.h>
     48   1.3  mycroft #include <sys/conf.h>
     49   1.3  mycroft #include <sys/file.h>
     50   1.3  mycroft #include <sys/buf.h>
     51   1.3  mycroft #include <sys/stat.h>
     52   1.3  mycroft #include <sys/uio.h>
     53   1.3  mycroft #include <sys/ioctl.h>
     54   1.3  mycroft #include <sys/cdio.h>
     55   1.3  mycroft #include <sys/errno.h>
     56   1.3  mycroft #include <sys/disklabel.h>
     57   1.6  mycroft #include <sys/device.h>
     58  1.21  mycroft #include <sys/disk.h>
     59   1.3  mycroft 
     60   1.6  mycroft #include <machine/cpu.h>
     61   1.3  mycroft #include <machine/pio.h>
     62   1.3  mycroft 
     63   1.8  mycroft #include <i386/isa/isavar.h>
     64   1.3  mycroft #include <i386/isa/mcdreg.h>
     65   1.1      cgd 
     66   1.6  mycroft #ifndef MCDDEBUG
     67   1.1      cgd #define MCD_TRACE(fmt,a,b,c,d)
     68   1.1      cgd #else
     69   1.6  mycroft #define MCD_TRACE(fmt,a,b,c,d)	{if (sc->debug) {printf("%s: st=%02x: ", sc->sc_dev.dv_xname, sc->status); printf(fmt,a,b,c,d);}}
     70   1.1      cgd #endif
     71   1.1      cgd 
     72  1.21  mycroft #define	MCDPART(dev)	DISKPART(dev)
     73  1.21  mycroft #define	MCDUNIT(dev)	DISKUNIT(dev)
     74   1.1      cgd 
     75   1.1      cgd /* status */
     76   1.1      cgd #define	MCDAUDIOBSY	MCD_ST_AUDIOBSY		/* playing audio */
     77   1.1      cgd #define MCDDSKCHNG	MCD_ST_DSKCHNG		/* sensed change of disk */
     78   1.1      cgd #define MCDDSKIN	MCD_ST_DSKIN		/* sensed disk in drive */
     79   1.1      cgd #define MCDDOOROPEN	MCD_ST_DOOROPEN		/* sensed door open */
     80   1.1      cgd 
     81   1.1      cgd /* toc */
     82   1.1      cgd #define MCD_MAXTOCS	104	/* from the Linux driver */
     83   1.1      cgd #define MCD_LASTPLUS1	170	/* special toc entry */
     84   1.1      cgd 
     85   1.1      cgd struct mcd_mbx {
     86  1.21  mycroft 	struct mcd_softc *softc;
     87   1.1      cgd 	short		retry;
     88   1.1      cgd 	short		nblk;
     89   1.1      cgd 	int		sz;
     90   1.1      cgd 	u_long		skip;
     91   1.1      cgd 	struct buf	*bp;
     92   1.1      cgd 	int		p_offset;
     93   1.1      cgd 	short		count;
     94  1.14  mycroft 	short		state;
     95  1.21  mycroft #define MCD_S_BEGIN	0
     96  1.21  mycroft #define MCD_S_WAITSTAT	1
     97  1.21  mycroft #define MCD_S_WAITMODE	2
     98  1.21  mycroft #define MCD_S_WAITREAD	3
     99   1.1      cgd };
    100   1.1      cgd 
    101   1.6  mycroft struct mcd_softc {
    102   1.6  mycroft 	struct	device sc_dev;
    103  1.21  mycroft 	struct	dkdevice sc_dk;
    104   1.9  mycroft 	struct	intrhand sc_ih;
    105   1.6  mycroft 
    106  1.24  mycroft 	int	iobase;
    107   1.1      cgd 	short	config;
    108   1.1      cgd 	short	flags;
    109  1.21  mycroft #define MCDOPEN		0x0001	/* device opened */
    110  1.21  mycroft #define MCDVALID	0x0002	/* parameters loaded */
    111  1.21  mycroft #define MCDLABEL	0x0004	/* label is read */
    112  1.21  mycroft #define	MCDVOLINFO	0x0008	/* already read volinfo */
    113  1.21  mycroft #define	MCDTOC		0x0010	/* already read toc */
    114  1.21  mycroft #define	MCDMBXBSY	0x0020	/* local mbx is busy */
    115   1.1      cgd 	short	status;
    116   1.1      cgd 	int	blksize;
    117   1.1      cgd 	u_long	disksize;
    118   1.6  mycroft 	struct	mcd_volinfo volinfo;
    119   1.6  mycroft 	struct	mcd_qchninfo toc[MCD_MAXTOCS];
    120   1.1      cgd 	short	audio_status;
    121   1.6  mycroft 	struct	mcd_read2 lastpb;
    122   1.1      cgd 	short	debug;
    123  1.21  mycroft 	struct	buf buf_queue;
    124   1.6  mycroft 	struct	mcd_mbx mbx;
    125   1.8  mycroft };
    126   1.1      cgd 
    127   1.1      cgd /* prototypes */
    128  1.21  mycroft int mcdopen __P((dev_t, int, int, struct proc *));
    129  1.21  mycroft int mcdclose __P((dev_t, int, int));
    130   1.6  mycroft int mcd_start __P((struct mcd_softc *));
    131  1.22      cgd int mcdioctl __P((dev_t, u_long, caddr_t, int, struct proc *));
    132   1.6  mycroft int mcd_getdisklabel __P((struct mcd_softc *));
    133   1.6  mycroft int mcdsize __P((dev_t));
    134   1.6  mycroft void mcd_configure __P((struct mcd_softc *));
    135  1.24  mycroft int mcd_waitrdy __P((int, int));
    136   1.6  mycroft int mcd_getreply __P((struct mcd_softc *, int));
    137   1.6  mycroft int mcd_getstat __P((struct mcd_softc *, int));
    138   1.6  mycroft void mcd_setflags __P((struct mcd_softc *));
    139   1.6  mycroft int mcd_get __P((struct mcd_softc *, char *, int));
    140   1.6  mycroft int mcd_send __P((struct mcd_softc *, int, int));
    141   1.6  mycroft int bcd2bin __P((bcd_t));
    142   1.6  mycroft bcd_t bin2bcd __P((int));
    143   1.6  mycroft void hsg2msf __P((int, bcd_t *));
    144   1.6  mycroft int msf2hsg __P((bcd_t *));
    145   1.6  mycroft int mcd_volinfo __P((struct mcd_softc *));
    146   1.9  mycroft int mcdintr __P((struct mcd_softc *));
    147  1.13      cgd int mcd_setmode __P((struct mcd_softc *, int));
    148  1.14  mycroft void mcd_doread __P((void *));
    149   1.6  mycroft int mcd_toc_header __P((struct mcd_softc *, struct ioc_toc_header *));
    150   1.6  mycroft int mcd_read_toc __P((struct mcd_softc *));
    151   1.6  mycroft int mcd_toc_entry __P((struct mcd_softc *, struct ioc_read_toc_entry *));
    152   1.6  mycroft int mcd_stop __P((struct mcd_softc *));
    153   1.6  mycroft int mcd_getqchan __P((struct mcd_softc *, struct mcd_qchninfo *));
    154   1.6  mycroft int mcd_subchan __P((struct mcd_softc *, struct ioc_read_subchannel *));
    155   1.6  mycroft int mcd_playtracks __P((struct mcd_softc *, struct ioc_play_track *));
    156   1.6  mycroft int mcd_play __P((struct mcd_softc *, struct mcd_read2 *));
    157   1.6  mycroft int mcd_pause __P((struct mcd_softc *));
    158   1.6  mycroft int mcd_resume __P((struct mcd_softc *));
    159   1.1      cgd 
    160  1.23  mycroft int mcdprobe __P((struct device *, void *, void *));
    161  1.23  mycroft void mcdattach __P((struct device *, struct device *, void *));
    162  1.23  mycroft void mcdstrategy __P((struct buf *));
    163   1.8  mycroft 
    164   1.8  mycroft struct cfdriver mcdcd = {
    165   1.8  mycroft 	NULL, "mcd", mcdprobe, mcdattach, DV_DISK, sizeof(struct mcd_softc)
    166   1.6  mycroft };
    167  1.23  mycroft struct dkdriver mcddkdriver = { mcdstrategy };
    168   1.1      cgd 
    169   1.1      cgd #define mcd_put(port,byte)	outb(port,byte)
    170   1.1      cgd 
    171   1.6  mycroft #define MCD_RETRIES	5
    172   1.6  mycroft #define MCD_RDRETRIES	8
    173   1.1      cgd 
    174   1.1      cgd #define MCDBLK	2048	/* for cooked mode */
    175   1.1      cgd #define MCDRBLK	2352	/* for raw mode */
    176   1.1      cgd 
    177   1.1      cgd /* several delays */
    178   1.1      cgd #define RDELAY_WAITSTAT	300
    179   1.1      cgd #define RDELAY_WAITMODE	300
    180   1.1      cgd #define RDELAY_WAITREAD	800
    181   1.1      cgd 
    182   1.1      cgd #define DELAY_STATUS	10000l		/* 10000 * 1us */
    183   1.1      cgd #define DELAY_GETREPLY	200000l		/* 200000 * 2us */
    184   1.1      cgd #define DELAY_SEEKREAD	20000l		/* 20000 * 1us */
    185   1.1      cgd 
    186   1.8  mycroft void
    187   1.8  mycroft mcdattach(parent, self, aux)
    188   1.8  mycroft 	struct device *parent, *self;
    189   1.8  mycroft 	void *aux;
    190   1.1      cgd {
    191   1.8  mycroft 	struct mcd_softc *sc = (void *)self;
    192   1.8  mycroft 	struct isa_attach_args *ia = aux;
    193   1.1      cgd 
    194   1.6  mycroft #ifdef notyet
    195   1.6  mycroft 	/* Wire controller for interrupts and DMA. */
    196   1.8  mycroft 	mcd_configure(sc);
    197   1.1      cgd #endif
    198   1.6  mycroft 
    199  1.11  mycroft 	printf("\n");
    200  1.11  mycroft 
    201   1.8  mycroft 	sc->flags = 0;
    202  1.23  mycroft 	sc->sc_dk.dk_driver = &mcddkdriver;
    203   1.9  mycroft 
    204   1.9  mycroft 	sc->sc_ih.ih_fun = mcdintr;
    205   1.9  mycroft 	sc->sc_ih.ih_arg = sc;
    206   1.9  mycroft 	sc->sc_ih.ih_level = IPL_BIO;
    207  1.26  mycroft 	intr_establish(ia->ia_irq, IST_EDGE, &sc->sc_ih);
    208   1.1      cgd }
    209   1.1      cgd 
    210   1.6  mycroft int
    211  1.21  mycroft mcdopen(dev, flag, fmt, p)
    212   1.6  mycroft 	dev_t dev;
    213  1.21  mycroft 	int flag, fmt;
    214  1.21  mycroft 	struct proc *p;
    215   1.1      cgd {
    216  1.21  mycroft 	int unit, part;
    217   1.6  mycroft 	struct mcd_softc *sc;
    218   1.1      cgd 
    219   1.6  mycroft 	unit = MCDUNIT(dev);
    220   1.8  mycroft 	if (unit >= mcdcd.cd_ndevs)
    221   1.1      cgd 		return ENXIO;
    222   1.8  mycroft 	sc = mcdcd.cd_devs[unit];
    223   1.8  mycroft 	if (!sc)
    224   1.6  mycroft 		return ENXIO;
    225   1.1      cgd 
    226   1.6  mycroft 	part = MCDPART(dev);
    227   1.1      cgd 
    228  1.21  mycroft 	/* If it's been invalidated forget the label. */
    229  1.21  mycroft 	if ((sc->flags & MCDVALID) == 0) {
    230  1.21  mycroft 		sc->flags &= ~(MCDLABEL | MCDVOLINFO | MCDTOC);
    231  1.21  mycroft 
    232  1.21  mycroft 		/* If any partition still open, then don't allow fresh open. */
    233  1.21  mycroft 		if (sc->sc_dk.dk_openmask != 0)
    234  1.21  mycroft 			return ENXIO;
    235  1.21  mycroft 	}
    236   1.1      cgd 
    237   1.6  mycroft 	if (mcd_getstat(sc, 1) < 0)
    238   1.1      cgd 		return ENXIO;
    239   1.1      cgd 
    240   1.1      cgd 	if (mcdsize(dev) < 0) {
    241   1.6  mycroft 		printf("%s: failed to get disk size\n", sc->sc_dev.dv_xname);
    242   1.1      cgd 		return ENXIO;
    243  1.21  mycroft 	}
    244  1.21  mycroft 
    245  1.21  mycroft 	sc->flags |= MCDVALID;
    246  1.21  mycroft 
    247  1.21  mycroft 	/* XXX Get a default disklabel. */
    248  1.21  mycroft 	mcd_getdisklabel(sc);
    249   1.6  mycroft 
    250   1.6  mycroft 	MCD_TRACE("open: partition=%d disksize=%d blksize=%d\n", part,
    251   1.6  mycroft 	    sc->disksize, sc->blksize, 0);
    252   1.1      cgd 
    253   1.6  mycroft 	if (part != RAW_PART &&
    254  1.21  mycroft 	    (part >= sc->sc_dk.dk_label.d_npartitions ||
    255  1.21  mycroft 	     sc->sc_dk.dk_label.d_partitions[part].p_fstype == FS_UNUSED))
    256   1.6  mycroft 		return ENXIO;
    257   1.1      cgd 
    258  1.21  mycroft 	/* Insure only one open at a time. */
    259  1.21  mycroft 	switch (fmt) {
    260  1.21  mycroft 	case S_IFCHR:
    261  1.21  mycroft 		sc->sc_dk.dk_copenmask |= (1 << part);
    262  1.21  mycroft 		break;
    263  1.21  mycroft 	case S_IFBLK:
    264  1.21  mycroft 		sc->sc_dk.dk_bopenmask |= (1 << part);
    265  1.21  mycroft 		break;
    266  1.21  mycroft 	}
    267  1.21  mycroft 	sc->sc_dk.dk_openmask = sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    268  1.21  mycroft 
    269   1.6  mycroft 	return 0;
    270   1.1      cgd }
    271   1.1      cgd 
    272   1.6  mycroft int
    273  1.21  mycroft mcdclose(dev, flag, fmt)
    274   1.6  mycroft 	dev_t dev;
    275  1.21  mycroft 	int flag, fmt;
    276   1.1      cgd {
    277  1.21  mycroft 	struct mcd_softc *sc = mcdcd.cd_devs[MCDUNIT(dev)];
    278  1.21  mycroft 	int part = MCDPART(dev);
    279   1.1      cgd 
    280  1.21  mycroft 	MCD_TRACE("close: partition=%d\n", part, 0, 0, 0);
    281   1.6  mycroft 
    282   1.6  mycroft 	/* Get status. */
    283   1.6  mycroft 	mcd_getstat(sc, 1);
    284   1.6  mycroft 
    285  1.21  mycroft 	switch (fmt) {
    286  1.21  mycroft 	case S_IFCHR:
    287  1.21  mycroft 		sc->sc_dk.dk_copenmask &= ~(1 << part);
    288  1.21  mycroft 		break;
    289  1.21  mycroft 	case S_IFBLK:
    290  1.21  mycroft 		sc->sc_dk.dk_bopenmask &= ~(1 << part);
    291  1.21  mycroft 		break;
    292  1.21  mycroft 	}
    293  1.21  mycroft 	sc->sc_dk.dk_openmask = sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    294   1.1      cgd 
    295   1.1      cgd 	return 0;
    296   1.1      cgd }
    297   1.1      cgd 
    298   1.6  mycroft void
    299   1.6  mycroft mcdstrategy(bp)
    300   1.6  mycroft 	struct buf *bp;
    301   1.1      cgd {
    302   1.8  mycroft 	struct mcd_softc *sc = mcdcd.cd_devs[MCDUNIT(bp->b_dev)];
    303   1.1      cgd 	struct buf *qp;
    304   1.1      cgd 	int s;
    305   1.1      cgd 
    306   1.6  mycroft 	/* Test validity. */
    307   1.6  mycroft 	MCD_TRACE("strategy: buf=0x%lx blkno=%ld bcount=%ld\n", bp,
    308   1.6  mycroft 	    bp->b_blkno, bp->b_bcount, 0);
    309   1.6  mycroft 	if (bp->b_blkno < 0) {
    310   1.6  mycroft 		printf("%s: strategy: blkno=%d bcount=%d\n",
    311   1.6  mycroft 		    sc->sc_dev.dv_xname, bp->b_blkno, bp->b_bcount);
    312   1.1      cgd 		bp->b_error = EINVAL;
    313   1.1      cgd 		goto bad;
    314   1.1      cgd 	}
    315   1.1      cgd 
    316   1.6  mycroft 	/* If device invalidated (e.g. media change, door open), error. */
    317   1.6  mycroft 	if (!(sc->flags & MCDVALID)) {
    318   1.6  mycroft 		MCD_TRACE("strategy: drive not valid\n", 0, 0, 0, 0);
    319   1.1      cgd 		bp->b_error = EIO;
    320   1.1      cgd 		goto bad;
    321   1.1      cgd 	}
    322   1.1      cgd 
    323   1.6  mycroft 	/* Check for read only. */
    324   1.1      cgd 	if (!(bp->b_flags & B_READ)) {
    325   1.1      cgd 		bp->b_error = EROFS;
    326   1.1      cgd 		goto bad;
    327   1.1      cgd 	}
    328   1.1      cgd 
    329   1.6  mycroft 	/* No data to read. */
    330   1.1      cgd 	if (bp->b_bcount == 0)
    331   1.1      cgd 		goto done;
    332   1.1      cgd 
    333   1.6  mycroft 	/* For non raw access, check partition limits. */
    334   1.6  mycroft 	if (MCDPART(bp->b_dev) != RAW_PART) {
    335   1.6  mycroft 		if (!(sc->flags & MCDLABEL)) {
    336   1.1      cgd 			bp->b_error = EIO;
    337   1.1      cgd 			goto bad;
    338   1.1      cgd 		}
    339   1.6  mycroft 		/* Adjust transfer if necessary. */
    340  1.21  mycroft 		if (bounds_check_with_label(bp, &sc->sc_dk.dk_label, 0) <= 0)
    341   1.1      cgd 			goto done;
    342   1.1      cgd 	}
    343   1.1      cgd 
    344   1.6  mycroft 	/* Queue it. */
    345  1.21  mycroft 	qp = &sc->buf_queue;
    346   1.1      cgd 	s = splbio();
    347   1.6  mycroft 	disksort(qp, bp);
    348   1.1      cgd 	splx(s);
    349   1.1      cgd 
    350   1.6  mycroft 	/* Now check whether we can perform processing. */
    351   1.6  mycroft 	mcd_start(sc);
    352   1.1      cgd 	return;
    353   1.1      cgd 
    354   1.1      cgd bad:
    355   1.1      cgd 	bp->b_flags |= B_ERROR;
    356   1.1      cgd done:
    357   1.1      cgd 	bp->b_resid = bp->b_bcount;
    358   1.1      cgd 	biodone(bp);
    359   1.1      cgd }
    360   1.1      cgd 
    361   1.6  mycroft int
    362   1.6  mycroft mcd_start(sc)
    363   1.6  mycroft 	struct mcd_softc *sc;
    364   1.1      cgd {
    365  1.21  mycroft 	struct buf *bp, *qp = &sc->buf_queue;
    366  1.21  mycroft 	int part;
    367  1.21  mycroft 	int s;
    368   1.1      cgd 
    369  1.21  mycroft loop:
    370  1.21  mycroft 	s = splbio();
    371  1.21  mycroft 
    372  1.17  mycroft 	if (sc->flags & MCDMBXBSY) {
    373  1.17  mycroft 		splx(s);
    374   1.1      cgd 		return;
    375  1.17  mycroft 	}
    376   1.1      cgd 
    377  1.21  mycroft 	if ((bp = qp->b_actf) == 0) {
    378   1.6  mycroft 		/* Nothing to do; */
    379   1.1      cgd 		splx(s);
    380   1.1      cgd 		return;
    381   1.1      cgd 	}
    382   1.1      cgd 
    383  1.21  mycroft 	/* Block found to process; dequeue. */
    384  1.21  mycroft 	MCD_TRACE("start: found block bp=0x%x\n", bp, 0, 0, 0);
    385  1.21  mycroft 	qp->b_actf = bp->b_actf;
    386  1.21  mycroft 	splx(s);
    387  1.21  mycroft 
    388   1.6  mycroft 	/* Changed media? */
    389   1.6  mycroft 	if (!(sc->flags	& MCDVALID)) {
    390   1.6  mycroft 		MCD_TRACE("start: drive not valid\n", 0, 0, 0, 0);
    391  1.21  mycroft 		sc->flags &= ~(MCDLABEL | MCDVOLINFO | MCDTOC);
    392  1.21  mycroft 		bp->b_error = EIO;
    393  1.21  mycroft 		bp->b_flags |= B_ERROR;
    394  1.21  mycroft 		biodone(bp);
    395  1.21  mycroft 		goto loop;
    396   1.1      cgd 	}
    397   1.1      cgd 
    398   1.6  mycroft 	sc->flags |= MCDMBXBSY;
    399  1.21  mycroft 	sc->mbx.softc = sc;
    400   1.6  mycroft 	sc->mbx.retry = MCD_RETRIES;
    401   1.6  mycroft 	sc->mbx.bp = bp;
    402  1.21  mycroft 	part = MCDPART(bp->b_dev);
    403  1.21  mycroft 	if (part == RAW_PART)
    404  1.21  mycroft 		sc->mbx.p_offset = 0;
    405  1.21  mycroft 	else
    406  1.21  mycroft 		sc->mbx.p_offset =
    407  1.21  mycroft 		    sc->sc_dk.dk_label.d_partitions[part].p_offset;
    408   1.6  mycroft 
    409   1.6  mycroft 	/* Calling the read routine. */
    410  1.14  mycroft 	sc->mbx.state = MCD_S_BEGIN;
    411  1.14  mycroft 	mcd_doread(&sc->mbx);
    412   1.6  mycroft 	/* triggers mcd_start, when successful finished. */
    413   1.6  mycroft }
    414   1.6  mycroft 
    415   1.6  mycroft int
    416   1.6  mycroft mcdioctl(dev, cmd, addr, flags, p)
    417   1.6  mycroft 	dev_t dev;
    418  1.22      cgd 	u_long cmd;
    419   1.6  mycroft 	caddr_t addr;
    420   1.6  mycroft 	int flags;
    421   1.6  mycroft 	struct proc *p;
    422   1.1      cgd {
    423   1.8  mycroft 	struct mcd_softc *sc = mcdcd.cd_devs[MCDUNIT(dev)];
    424   1.1      cgd 
    425   1.6  mycroft 	if (!(sc->flags & MCDVALID))
    426   1.1      cgd 		return EIO;
    427  1.21  mycroft 
    428   1.6  mycroft 	MCD_TRACE("ioctl: cmd=0x%x\n", cmd, 0, 0, 0);
    429   1.1      cgd 
    430   1.1      cgd 	switch (cmd) {
    431   1.1      cgd 	case DIOCSBAD:
    432   1.1      cgd 		return EINVAL;
    433   1.1      cgd 	case CDIOCPLAYTRACKS:
    434  1.21  mycroft 		return mcd_playtracks(sc, (struct ioc_play_track *)addr);
    435   1.1      cgd 	case CDIOCPLAYBLOCKS:
    436  1.21  mycroft 		return mcd_play(sc, (struct mcd_read2 *)addr);
    437   1.1      cgd 	case CDIOCREADSUBCHANNEL:
    438  1.21  mycroft 		return mcd_subchan(sc, (struct ioc_read_subchannel *)addr);
    439   1.1      cgd 	case CDIOREADTOCHEADER:
    440  1.21  mycroft 		return mcd_toc_header(sc, (struct ioc_toc_header *)addr);
    441   1.1      cgd 	case CDIOREADTOCENTRYS:
    442  1.21  mycroft 		return mcd_toc_entry(sc, (struct ioc_read_toc_entry *)addr);
    443   1.1      cgd 	case CDIOCSETPATCH:
    444   1.1      cgd 	case CDIOCGETVOL:
    445   1.1      cgd 	case CDIOCSETVOL:
    446   1.1      cgd 	case CDIOCSETMONO:
    447  1.18  mycroft 	case CDIOCSETSTEREO:
    448   1.1      cgd 	case CDIOCSETMUTE:
    449   1.1      cgd 	case CDIOCSETLEFT:
    450   1.1      cgd 	case CDIOCSETRIGHT:
    451   1.1      cgd 		return EINVAL;
    452   1.1      cgd 	case CDIOCRESUME:
    453   1.6  mycroft 		return mcd_resume(sc);
    454   1.1      cgd 	case CDIOCPAUSE:
    455   1.6  mycroft 		return mcd_pause(sc);
    456   1.1      cgd 	case CDIOCSTART:
    457   1.1      cgd 		return EINVAL;
    458   1.1      cgd 	case CDIOCSTOP:
    459   1.6  mycroft 		return mcd_stop(sc);
    460   1.1      cgd 	case CDIOCEJECT:
    461   1.1      cgd 		return EINVAL;
    462   1.1      cgd 	case CDIOCSETDEBUG:
    463   1.6  mycroft 		sc->debug = 1;
    464   1.1      cgd 		return 0;
    465   1.1      cgd 	case CDIOCCLRDEBUG:
    466   1.6  mycroft 		sc->debug = 0;
    467   1.1      cgd 		return 0;
    468   1.1      cgd 	case CDIOCRESET:
    469   1.1      cgd 		return EINVAL;
    470   1.1      cgd 	default:
    471  1.21  mycroft #if 0
    472  1.21  mycroft 	case DIOCGDINFO:
    473  1.21  mycroft 	case DIOCGPART:
    474  1.21  mycroft 	case DIOCWDINFO:
    475  1.21  mycroft 	case DIOCSDINFO:
    476  1.21  mycroft 	case DIOCWLABEL:
    477  1.21  mycroft #endif
    478   1.1      cgd 		return ENOTTY;
    479   1.1      cgd 	}
    480   1.6  mycroft #ifdef DIAGNOSTIC
    481   1.6  mycroft 	panic("mcdioctl: impossible");
    482   1.6  mycroft #endif
    483   1.1      cgd }
    484   1.1      cgd 
    485   1.6  mycroft /*
    486   1.6  mycroft  * This could have been taken from scsi/cd.c, but it is not clear
    487   1.6  mycroft  * whether the scsi cd driver is linked in.
    488   1.1      cgd  */
    489   1.6  mycroft int
    490   1.6  mycroft mcd_getdisklabel(sc)
    491   1.6  mycroft 	struct mcd_softc *sc;
    492   1.1      cgd {
    493   1.1      cgd 
    494   1.6  mycroft 	if (sc->flags & MCDLABEL)
    495  1.21  mycroft 		return 0;
    496   1.1      cgd 
    497  1.21  mycroft 	bzero(&sc->sc_dk.dk_label, sizeof(struct disklabel));
    498  1.21  mycroft 	bzero(&sc->sc_dk.dk_cpulabel, sizeof(struct cpu_disklabel));
    499  1.21  mycroft 	strncpy(sc->sc_dk.dk_label.d_typename, "Mitsumi CD ROM", 16);
    500  1.21  mycroft 	strncpy(sc->sc_dk.dk_label.d_packname, "unknown", 16);
    501  1.21  mycroft 	sc->sc_dk.dk_label.d_secsize 	= sc->blksize;
    502  1.21  mycroft 	sc->sc_dk.dk_label.d_nsectors	= 100;
    503  1.21  mycroft 	sc->sc_dk.dk_label.d_ntracks	= 1;
    504  1.21  mycroft 	sc->sc_dk.dk_label.d_ncylinders	= (sc->disksize /100) + 1;
    505  1.21  mycroft 	sc->sc_dk.dk_label.d_secpercyl	= 100;
    506  1.21  mycroft 	sc->sc_dk.dk_label.d_secperunit	= sc->disksize;
    507  1.21  mycroft 	sc->sc_dk.dk_label.d_rpm	= 300;
    508  1.21  mycroft 	sc->sc_dk.dk_label.d_interleave	= 1;
    509  1.21  mycroft 	sc->sc_dk.dk_label.d_flags	= D_REMOVABLE;
    510  1.21  mycroft 	sc->sc_dk.dk_label.d_npartitions= RAW_PART + 1;
    511  1.21  mycroft 	sc->sc_dk.dk_label.d_partitions[0].p_offset = 0;
    512  1.21  mycroft 	sc->sc_dk.dk_label.d_partitions[0].p_size = sc->disksize;
    513  1.21  mycroft 	sc->sc_dk.dk_label.d_partitions[0].p_fstype = 9;
    514  1.21  mycroft 	sc->sc_dk.dk_label.d_partitions[RAW_PART].p_offset = 0;
    515  1.21  mycroft 	sc->sc_dk.dk_label.d_partitions[RAW_PART].p_size = sc->disksize;
    516  1.21  mycroft 	sc->sc_dk.dk_label.d_partitions[RAW_PART].p_fstype = 9;
    517   1.1      cgd 
    518   1.6  mycroft 	sc->flags |= MCDLABEL;
    519   1.1      cgd 	return 0;
    520   1.1      cgd }
    521   1.1      cgd 
    522   1.6  mycroft int
    523   1.6  mycroft mcdsize(dev)
    524   1.6  mycroft 	dev_t dev;
    525   1.1      cgd {
    526   1.1      cgd 	int size;
    527   1.8  mycroft 	struct mcd_softc *sc = mcdcd.cd_devs[MCDUNIT(dev)];
    528   1.1      cgd 
    529   1.6  mycroft 	if (mcd_volinfo(sc) >= 0) {
    530   1.6  mycroft 		sc->blksize = MCDBLK;
    531   1.6  mycroft 		size = msf2hsg(sc->volinfo.vol_msf);
    532   1.6  mycroft 		sc->disksize = size * (MCDBLK / DEV_BSIZE);
    533   1.1      cgd 		return 0;
    534   1.1      cgd 	}
    535   1.1      cgd 	return -1;
    536  1.15  mycroft }
    537  1.15  mycroft 
    538  1.15  mycroft int
    539  1.15  mycroft mcddump()
    540  1.15  mycroft {
    541  1.15  mycroft 
    542  1.15  mycroft 	/* Not implemented. */
    543  1.15  mycroft 	return EINVAL;
    544   1.1      cgd }
    545   1.1      cgd 
    546   1.1      cgd /***************************************************************
    547   1.1      cgd  * lower level of driver starts here
    548   1.1      cgd  **************************************************************/
    549   1.1      cgd 
    550   1.6  mycroft #ifdef notyet
    551   1.1      cgd static char irqs[] = {
    552   1.6  mycroft 	0x00, 0x00, 0x10, 0x20, 0x00, 0x30, 0x00, 0x00,
    553   1.6  mycroft 	0x00, 0x10, 0x40, 0x50, 0x00, 0x00, 0x00, 0x00
    554   1.1      cgd };
    555   1.1      cgd 
    556   1.1      cgd static char drqs[] = {
    557   1.6  mycroft 	0x00, 0x01, 0x00, 0x03, 0x00, 0x05, 0x06, 0x07
    558   1.1      cgd };
    559   1.1      cgd #endif
    560   1.1      cgd 
    561   1.6  mycroft void
    562   1.6  mycroft mcd_configure(sc)
    563   1.6  mycroft 	struct mcd_softc *sc;
    564   1.1      cgd {
    565   1.6  mycroft 
    566   1.6  mycroft 	outb(sc->iobase + mcd_config, sc->config);
    567   1.1      cgd }
    568   1.1      cgd 
    569   1.6  mycroft int
    570  1.23  mycroft mcdprobe(parent, match, aux)
    571  1.23  mycroft 	struct device *parent;
    572  1.23  mycroft 	void *match, *aux;
    573   1.8  mycroft {
    574  1.23  mycroft 	struct mcd_softc *sc = match;
    575   1.8  mycroft 	struct isa_attach_args *ia = aux;
    576  1.24  mycroft 	int iobase = ia->ia_iobase;
    577   1.1      cgd 	int i;
    578  1.17  mycroft 	int st, check, version;
    579   1.6  mycroft 
    580   1.6  mycroft #ifdef notyet
    581   1.6  mycroft 	/* Get irq/drq configuration word. */
    582   1.8  mycroft 	sc->config = irqs[ia->ia_irq];
    583   1.1      cgd #endif
    584   1.6  mycroft 	sc->iobase = iobase;
    585   1.1      cgd 
    586   1.6  mycroft 	/* Send a reset. */
    587   1.6  mycroft 	outb(iobase + mcd_reset, 0);
    588  1.17  mycroft 	delay(1000000);
    589   1.6  mycroft 	/* Get any pending status and throw away. */
    590   1.6  mycroft 	for (i = 10; i; i--)
    591   1.6  mycroft 		inb(iobase + mcd_status);
    592   1.7  mycroft 	delay(1000);
    593   1.1      cgd 
    594   1.6  mycroft 	/* Send get status command. */
    595   1.6  mycroft 	outb(iobase + mcd_command, MCD_CMDGETSTAT);
    596  1.17  mycroft 	st = mcd_getreply(sc, DELAY_GETREPLY);
    597   1.1      cgd 
    598  1.17  mycroft 	if (st < 0) {
    599   1.1      cgd #ifdef DEBUG
    600   1.6  mycroft 		printf("Mitsumi drive NOT detected\n");
    601   1.1      cgd #endif
    602   1.6  mycroft 		return 0;
    603   1.1      cgd 	}
    604   1.1      cgd 
    605   1.1      cgd /*
    606   1.1      cgd  * The following code uses the 0xDC command, it returns a M from the
    607   1.6  mycroft  * second byte and a number in the third.
    608   1.6  mycroft  * (I hope you have the right drive for that, most drives don't do!)
    609   1.6  mycroft  * Whole code entirely rewriten by veit (at) gmd.de, the changes accessed
    610   1.6  mycroft  * the drive in an illegal way. Proper way is to use the timeout
    611   1.6  mycroft  * driven routines mcd_getreply etc. rather than arbitrary delays.
    612   1.1      cgd  */
    613   1.1      cgd 
    614   1.8  mycroft 	delay(2000);
    615   1.6  mycroft 	outb(iobase + mcd_command, MCD_CMDCONTINFO);
    616  1.17  mycroft 	st = mcd_getreply(sc, DELAY_GETREPLY);
    617   1.6  mycroft 
    618  1.17  mycroft 	if (st < 0) {
    619   1.1      cgd #ifdef DEBUG
    620   1.6  mycroft 		printf("Mitsumi drive error\n");
    621   1.1      cgd #endif
    622   1.1      cgd 		return 0;
    623   1.1      cgd 	}
    624   1.6  mycroft 	check = mcd_getreply(sc, DELAY_GETREPLY);
    625   1.6  mycroft 	if (check < 0)
    626   1.6  mycroft 		return 0;
    627  1.17  mycroft 	version = mcd_getreply(sc, DELAY_GETREPLY);
    628  1.17  mycroft 	if (version < 0)
    629  1.17  mycroft 		return 0;
    630   1.6  mycroft 	/* Flush junk. */
    631   1.6  mycroft 	(void) mcd_getreply(sc, DELAY_GETREPLY);
    632   1.1      cgd 
    633   1.6  mycroft 	/*
    634   1.6  mycroft 	 * The following is code which is not guaranteed to work for all
    635   1.6  mycroft 	 * drives, because the meaning of the expected 'M' is not clear
    636   1.6  mycroft 	 * (M_itsumi is an obvious assumption, but I don't trust that).
    637   1.6  mycroft 	 * Also, the original hack had a bogus condition that always
    638   1.6  mycroft 	 * returned true.
    639   1.6  mycroft 	 */
    640  1.17  mycroft 	if (check != 'D' && check != 'M') {
    641  1.17  mycroft 		printf("%s: unrecognized drive version %c%02x; will try to use it anyway\n",
    642  1.17  mycroft 		    sc->sc_dev.dv_xname, check, version);
    643   1.1      cgd 	}
    644   1.6  mycroft 
    645   1.6  mycroft #ifdef DEBUG
    646   1.6  mycroft 	printf("Mitsumi drive detected\n");
    647   1.6  mycroft #endif
    648   1.8  mycroft 	ia->ia_iosize = 4;
    649   1.8  mycroft 	ia->ia_msize = 0;
    650   1.8  mycroft 	return 1;
    651   1.1      cgd }
    652   1.1      cgd 
    653   1.6  mycroft int
    654   1.6  mycroft mcd_waitrdy(iobase, dly)
    655  1.24  mycroft 	int iobase;
    656   1.6  mycroft 	int dly;
    657   1.1      cgd {
    658   1.1      cgd 	int i;
    659   1.1      cgd 
    660   1.6  mycroft 	/* Wait until xfer port senses data ready. */
    661   1.6  mycroft 	for (i = dly; i; i--) {
    662   1.6  mycroft 		if ((inb(iobase + mcd_xfer) & MCD_ST_BUSY) == 0)
    663   1.1      cgd 			return 0;
    664   1.7  mycroft 		delay(1);
    665   1.1      cgd 	}
    666   1.1      cgd 	return -1;
    667   1.1      cgd }
    668   1.1      cgd 
    669   1.6  mycroft int
    670   1.6  mycroft mcd_getreply(sc, dly)
    671   1.6  mycroft 	struct mcd_softc *sc;
    672   1.6  mycroft 	int dly;
    673   1.6  mycroft {
    674  1.24  mycroft 	int iobase = sc->iobase;
    675   1.6  mycroft 
    676   1.6  mycroft 	/* Wait data to become ready. */
    677   1.6  mycroft 	if (mcd_waitrdy(iobase, dly) < 0) {
    678   1.6  mycroft 		printf("%s: timeout in getreply\n", sc->sc_dev.dv_xname);
    679   1.1      cgd 		return -1;
    680   1.1      cgd 	}
    681   1.1      cgd 
    682   1.6  mycroft 	/* Get the data. */
    683   1.6  mycroft 	return inb(iobase + mcd_status);
    684   1.1      cgd }
    685   1.1      cgd 
    686   1.6  mycroft int
    687   1.6  mycroft mcd_getstat(sc, sflg)
    688   1.6  mycroft 	struct mcd_softc *sc;
    689   1.6  mycroft 	int sflg;
    690   1.1      cgd {
    691   1.6  mycroft 	int i;
    692  1.24  mycroft 	int iobase = sc->iobase;
    693   1.1      cgd 
    694   1.6  mycroft 	/* Get the status. */
    695   1.1      cgd 	if (sflg)
    696   1.6  mycroft 		outb(iobase + mcd_command, MCD_CMDGETSTAT);
    697   1.6  mycroft 	i = mcd_getreply(sc, DELAY_GETREPLY);
    698   1.6  mycroft 	if (i < 0) {
    699   1.6  mycroft 		printf("%s: timeout in getstat\n", sc->sc_dev.dv_xname);
    700   1.6  mycroft 		return -1;
    701   1.6  mycroft 	}
    702   1.1      cgd 
    703   1.6  mycroft 	sc->status = i;
    704   1.1      cgd 
    705   1.6  mycroft 	mcd_setflags(sc);
    706   1.6  mycroft 	return sc->status;
    707   1.1      cgd }
    708   1.1      cgd 
    709   1.6  mycroft void
    710   1.6  mycroft mcd_setflags(sc)
    711   1.6  mycroft 	struct mcd_softc *sc;
    712   1.1      cgd {
    713   1.6  mycroft 
    714   1.6  mycroft 	/* Check flags. */
    715   1.6  mycroft 	if (sc->status & (MCDDSKCHNG | MCDDOOROPEN)) {
    716   1.6  mycroft 		MCD_TRACE("getstat: sensed DSKCHNG or DOOROPEN\n", 0, 0, 0, 0);
    717   1.6  mycroft 		sc->flags &= ~MCDVALID;
    718   1.1      cgd 	}
    719   1.1      cgd 
    720   1.6  mycroft 	if (sc->status & MCDAUDIOBSY)
    721   1.6  mycroft 		sc->audio_status = CD_AS_PLAY_IN_PROGRESS;
    722   1.6  mycroft 	else if (sc->audio_status == CD_AS_PLAY_IN_PROGRESS)
    723   1.6  mycroft 		sc->audio_status = CD_AS_PLAY_COMPLETED;
    724   1.1      cgd }
    725   1.1      cgd 
    726   1.6  mycroft int
    727   1.6  mycroft mcd_get(sc, buf, nmax)
    728   1.6  mycroft 	struct mcd_softc *sc;
    729   1.6  mycroft 	char *buf;
    730   1.6  mycroft 	int nmax;
    731   1.1      cgd {
    732   1.6  mycroft 	int i, k;
    733   1.1      cgd 
    734   1.6  mycroft 	for (i = 0; i < nmax; i++) {
    735   1.6  mycroft 		/* Wait for data. */
    736   1.6  mycroft 		if ((k = mcd_getreply(sc, DELAY_GETREPLY)) < 0) {
    737   1.6  mycroft 			printf("%s: timeout in get\n", sc->sc_dev.dv_xname);
    738   1.1      cgd 			return -1;
    739   1.1      cgd 		}
    740   1.1      cgd 		buf[i] = k;
    741   1.1      cgd 	}
    742   1.1      cgd 	return i;
    743   1.1      cgd }
    744   1.1      cgd 
    745   1.6  mycroft int
    746   1.6  mycroft mcd_send(sc, cmd, nretries)
    747   1.6  mycroft 	struct mcd_softc *sc;
    748   1.6  mycroft 	int cmd, nretries;
    749   1.1      cgd {
    750   1.6  mycroft 	int i, k;
    751  1.24  mycroft 	int iobase = sc->iobase;
    752   1.1      cgd 
    753   1.6  mycroft 	MCD_TRACE("send: cmd=0x%x\n", cmd, 0, 0, 0);
    754   1.6  mycroft 
    755   1.6  mycroft 	for (i = nretries; i; i--) {
    756   1.6  mycroft 		outb(iobase + mcd_command, cmd);
    757   1.6  mycroft 		if ((k = mcd_getstat(sc, 0)) != -1)
    758   1.1      cgd 			break;
    759   1.1      cgd 	}
    760   1.6  mycroft 	if (!i) {
    761   1.6  mycroft 		printf("%s: send: retry count exceeded\n", sc->sc_dev.dv_xname);
    762   1.1      cgd 		return -1;
    763   1.1      cgd 	}
    764   1.6  mycroft 
    765   1.6  mycroft 	MCD_TRACE("send: status=0x%x\n", k, 0, 0, 0);
    766   1.6  mycroft 
    767   1.1      cgd 	return 0;
    768   1.1      cgd }
    769   1.1      cgd 
    770   1.6  mycroft int
    771   1.6  mycroft bcd2bin(b)
    772   1.6  mycroft 	bcd_t b;
    773   1.1      cgd {
    774   1.6  mycroft 
    775   1.1      cgd 	return (b >> 4) * 10 + (b & 15);
    776   1.1      cgd }
    777   1.1      cgd 
    778   1.6  mycroft bcd_t
    779   1.6  mycroft bin2bcd(b)
    780   1.6  mycroft 	int b;
    781   1.1      cgd {
    782   1.6  mycroft 
    783   1.1      cgd 	return ((b / 10) << 4) | (b % 10);
    784   1.1      cgd }
    785   1.1      cgd 
    786   1.6  mycroft void
    787   1.6  mycroft hsg2msf(hsg, msf)
    788   1.6  mycroft 	int hsg;
    789   1.6  mycroft 	bcd_t *msf;
    790   1.1      cgd {
    791   1.6  mycroft 
    792   1.1      cgd 	hsg += 150;
    793   1.1      cgd 	M_msf(msf) = bin2bcd(hsg / 4500);
    794   1.1      cgd 	hsg %= 4500;
    795   1.1      cgd 	S_msf(msf) = bin2bcd(hsg / 75);
    796   1.1      cgd 	F_msf(msf) = bin2bcd(hsg % 75);
    797   1.1      cgd }
    798   1.1      cgd 
    799   1.6  mycroft int
    800   1.6  mycroft msf2hsg(msf)
    801   1.6  mycroft 	bcd_t *msf;
    802   1.1      cgd {
    803   1.6  mycroft 
    804   1.1      cgd 	return (bcd2bin(M_msf(msf)) * 60 +
    805   1.1      cgd 		bcd2bin(S_msf(msf))) * 75 +
    806   1.1      cgd 		bcd2bin(F_msf(msf)) - 150;
    807   1.1      cgd }
    808   1.1      cgd 
    809   1.6  mycroft int
    810   1.6  mycroft mcd_volinfo(sc)
    811   1.6  mycroft 	struct mcd_softc *sc;
    812   1.1      cgd {
    813   1.1      cgd 
    814   1.6  mycroft 	MCD_TRACE("volinfo: enter\n", 0, 0, 0, 0);
    815   1.1      cgd 
    816   1.6  mycroft 	/* Get the status, in case the disc has been changed. */
    817   1.6  mycroft 	if (mcd_getstat(sc, 1) < 0)
    818   1.6  mycroft 		return EIO;
    819   1.1      cgd 
    820   1.6  mycroft 	/* Just return if we already have it. */
    821   1.6  mycroft 	if (sc->flags & MCDVOLINFO)
    822   1.6  mycroft 		return 0;
    823   1.1      cgd 
    824   1.6  mycroft 	/* Send volume info command. */
    825   1.6  mycroft 	if (mcd_send(sc, MCD_CMDGETVOLINFO, MCD_RETRIES) < 0)
    826   1.1      cgd 		return -1;
    827   1.1      cgd 
    828   1.6  mycroft 	/* Get the data. */
    829   1.6  mycroft 	if (mcd_get(sc, (char*) &sc->volinfo, sizeof(struct mcd_volinfo)) < 0) {
    830   1.6  mycroft 		printf("%s: volinfo: error reading data\n",
    831   1.6  mycroft 		    sc->sc_dev.dv_xname);
    832   1.1      cgd 		return -1;
    833   1.1      cgd 	}
    834   1.1      cgd 
    835   1.6  mycroft 	if (sc->volinfo.trk_low != 0 || sc->volinfo.trk_high != 0) {
    836   1.6  mycroft 		/* Volinfo is OK. */
    837   1.6  mycroft 		sc->flags |= MCDVOLINFO;
    838   1.1      cgd 		return 0;
    839   1.1      cgd 	}
    840   1.1      cgd 
    841   1.1      cgd 	return -1;
    842   1.1      cgd }
    843   1.1      cgd 
    844   1.6  mycroft int
    845   1.9  mycroft mcdintr(sc)
    846   1.9  mycroft 	struct mcd_softc *sc;
    847   1.1      cgd {
    848  1.24  mycroft 	int iobase = sc->iobase;
    849   1.1      cgd 
    850   1.6  mycroft 	MCD_TRACE("stray interrupt xfer=0x%x\n", inb(iobase + mcd_xfer),
    851   1.6  mycroft 	    0, 0, 0);
    852   1.1      cgd 
    853   1.6  mycroft 	/* Just read out status and ignore the rest. */
    854   1.6  mycroft 	if (inb(iobase + mcd_xfer) != 0xff)
    855   1.6  mycroft 		(void) inb(iobase + mcd_status);
    856  1.10  mycroft 
    857  1.10  mycroft 	return -1;
    858   1.1      cgd }
    859   1.1      cgd 
    860   1.6  mycroft /*
    861   1.6  mycroft  * State machine to process read requests.
    862   1.6  mycroft  * Initialize with MCD_S_BEGIN: calculate sizes, and read status
    863   1.1      cgd  * MCD_S_WAITSTAT: wait for status reply, set mode
    864   1.1      cgd  * MCD_S_WAITMODE: waits for status reply from set mode, set read command
    865   1.6  mycroft  * MCD_S_WAITREAD: wait for read ready, read data.
    866   1.1      cgd  */
    867   1.6  mycroft void
    868  1.14  mycroft mcd_doread(arg)
    869  1.13      cgd 	void *arg;
    870  1.13      cgd {
    871  1.14  mycroft 	struct mcd_mbx *mbx = arg;
    872  1.21  mycroft 	struct mcd_softc *sc = mbx->softc;
    873  1.24  mycroft 	int iobase = sc->iobase;
    874   1.6  mycroft 	struct buf *bp = mbx->bp;
    875   1.1      cgd 
    876  1.21  mycroft 	int i, k;
    877   1.1      cgd 	struct mcd_read2 rbuf;
    878   1.6  mycroft 	int blkno;
    879   1.1      cgd 	caddr_t	addr;
    880   1.1      cgd 
    881   1.1      cgd loop:
    882  1.14  mycroft 	switch (mbx->state) {
    883   1.1      cgd 	case MCD_S_BEGIN:
    884   1.6  mycroft 		/* Get status. */
    885   1.6  mycroft 		outb(iobase + mcd_command, MCD_CMDGETSTAT);
    886  1.14  mycroft 
    887   1.1      cgd 		mbx->count = RDELAY_WAITSTAT;
    888  1.14  mycroft 		mbx->state = MCD_S_WAITSTAT;
    889  1.14  mycroft 		timeout(mcd_doread, mbx, hz / 100);
    890   1.1      cgd 		return;
    891   1.6  mycroft 
    892   1.1      cgd 	case MCD_S_WAITSTAT:
    893  1.14  mycroft 		untimeout(mcd_doread, mbx);
    894  1.14  mycroft 		if (mbx->count-- < 0) {
    895  1.14  mycroft 			printf("%s: timeout getting status\n",
    896  1.14  mycroft 			    sc->sc_dev.dv_xname);
    897  1.14  mycroft 			goto readerr;
    898  1.14  mycroft 		}
    899  1.14  mycroft 		if (inb(iobase + mcd_xfer) & MCD_ST_BUSY) {
    900  1.14  mycroft 			timeout(mcd_doread, mbx, hz / 100);
    901  1.14  mycroft 			return;
    902  1.14  mycroft 		}
    903  1.14  mycroft 		mcd_setflags(sc);
    904  1.14  mycroft 		MCD_TRACE("doread: got WAITSTAT delay=%d\n",
    905  1.14  mycroft 		    RDELAY_WAITSTAT - mbx->count, 0, 0, 0);
    906   1.1      cgd 
    907  1.14  mycroft 		/* Reject, if audio active. */
    908  1.14  mycroft 		if (sc->status & MCDAUDIOBSY) {
    909  1.14  mycroft 			printf("%s: audio is active\n",
    910  1.14  mycroft 			    sc->sc_dev.dv_xname);
    911  1.14  mycroft 			goto readerr;
    912  1.14  mycroft 		}
    913   1.1      cgd 
    914  1.14  mycroft 		mcd_put(iobase + mcd_command, MCD_CMDSETMODE);
    915  1.21  mycroft 		mcd_put(iobase + mcd_command, MCD_MD_COOKED);
    916  1.14  mycroft 
    917  1.21  mycroft 		mbx->sz = sc->blksize;
    918  1.14  mycroft 		mbx->count = RDELAY_WAITMODE;
    919  1.14  mycroft 		mbx->state = MCD_S_WAITMODE;
    920  1.14  mycroft 		timeout(mcd_doread, mbx, hz / 100);
    921  1.14  mycroft 		return;
    922  1.14  mycroft 
    923   1.1      cgd 	case MCD_S_WAITMODE:
    924  1.14  mycroft 		untimeout(mcd_doread, mbx);
    925   1.1      cgd 		if (mbx->count-- < 0) {
    926   1.6  mycroft 			printf("%s: timeout setting mode\n",
    927   1.6  mycroft 			    sc->sc_dev.dv_xname);
    928   1.1      cgd 			goto readerr;
    929   1.1      cgd 		}
    930   1.6  mycroft 		if (inb(iobase + mcd_xfer) & MCD_ST_BUSY) {
    931  1.14  mycroft 			timeout(mcd_doread, mbx, hz / 100);
    932   1.1      cgd 			return;
    933   1.1      cgd 		}
    934   1.6  mycroft 		mcd_setflags(sc);
    935   1.6  mycroft 		MCD_TRACE("doread: got WAITMODE delay=%d\n",
    936   1.6  mycroft 		    RDELAY_WAITMODE - mbx->count, 0, 0, 0);
    937  1.14  mycroft 
    938   1.6  mycroft 		/* For first block. */
    939   1.6  mycroft 		mbx->nblk = (bp->b_bcount + (mbx->sz - 1)) / mbx->sz;
    940   1.1      cgd 		mbx->skip = 0;
    941   1.1      cgd 
    942  1.14  mycroft 	nextblock:
    943   1.6  mycroft 		blkno = (bp->b_blkno / (mbx->sz / DEV_BSIZE)) + mbx->p_offset +
    944   1.6  mycroft 		    (mbx->skip / mbx->sz);
    945   1.1      cgd 
    946   1.6  mycroft 		MCD_TRACE("doread: read blkno=%d for bp=0x%x\n", blkno, bp, 0,
    947   1.6  mycroft 		    0);
    948   1.1      cgd 
    949   1.6  mycroft 		/* Build parameter block. */
    950   1.6  mycroft 		hsg2msf(blkno, rbuf.start_msf);
    951   1.1      cgd 
    952   1.6  mycroft 		/* Send the read command. */
    953   1.6  mycroft 		mcd_put(iobase + mcd_command, MCD_CMDREAD2);
    954   1.6  mycroft 		mcd_put(iobase + mcd_command, rbuf.start_msf[0]);
    955   1.6  mycroft 		mcd_put(iobase + mcd_command, rbuf.start_msf[1]);
    956   1.6  mycroft 		mcd_put(iobase + mcd_command, rbuf.start_msf[2]);
    957   1.6  mycroft 		mcd_put(iobase + mcd_command, 0);
    958   1.6  mycroft 		mcd_put(iobase + mcd_command, 0);
    959   1.6  mycroft 		mcd_put(iobase + mcd_command, 1);
    960  1.14  mycroft 
    961   1.1      cgd 		mbx->count = RDELAY_WAITREAD;
    962  1.14  mycroft 		mbx->state = MCD_S_WAITREAD;
    963  1.14  mycroft 		timeout(mcd_doread, mbx, hz / 100);
    964   1.1      cgd 		return;
    965   1.6  mycroft 
    966   1.1      cgd 	case MCD_S_WAITREAD:
    967  1.14  mycroft 		untimeout(mcd_doread, mbx);
    968  1.14  mycroft 		if (mbx->count-- < 0) {
    969   1.6  mycroft 			printf("%s: timeout reading data\n",
    970   1.6  mycroft 			    sc->sc_dev.dv_xname);
    971   1.1      cgd 			goto readerr;
    972   1.1      cgd 		}
    973  1.14  mycroft 
    974  1.14  mycroft 		k = inb(iobase + mcd_xfer);
    975  1.14  mycroft 		if ((k & 2) == 0) {	/* XXX MCD_ST_AUDIOBSY? */
    976  1.14  mycroft 			MCD_TRACE("doread: got data delay=%d\n",
    977  1.14  mycroft 			    RDELAY_WAITREAD - mbx->count, 0, 0, 0);
    978  1.14  mycroft 			/* Data is ready. */
    979  1.16  mycroft 			addr = bp->b_data + mbx->skip;
    980  1.14  mycroft 			outb(iobase + mcd_ctl2, 0x04);	/* XXX */
    981  1.14  mycroft 			for (i = 0; i < mbx->sz; i++)
    982  1.14  mycroft 				*addr++	= inb(iobase + mcd_rdata);
    983  1.14  mycroft 			outb(iobase + mcd_ctl2, 0x0c);	/* XXX */
    984  1.14  mycroft 
    985  1.14  mycroft 			if (--mbx->nblk > 0) {
    986  1.14  mycroft 				mbx->skip += mbx->sz;
    987  1.14  mycroft 				goto nextblock;
    988  1.14  mycroft 			}
    989  1.14  mycroft 
    990  1.14  mycroft 			/* Return buffer. */
    991  1.14  mycroft 			bp->b_resid = 0;
    992  1.14  mycroft 			biodone(bp);
    993  1.14  mycroft 
    994  1.14  mycroft 			sc->flags &= ~MCDMBXBSY;
    995  1.14  mycroft 			mcd_start(sc);
    996  1.14  mycroft 			return;
    997  1.14  mycroft 		}
    998  1.14  mycroft 		if ((k & MCD_ST_BUSY) == 0)
    999  1.14  mycroft 			mcd_getstat(sc, 0);
   1000  1.14  mycroft 		timeout(mcd_doread, mbx, hz / 100);
   1001  1.14  mycroft 		return;
   1002   1.1      cgd 	}
   1003   1.1      cgd 
   1004   1.1      cgd readerr:
   1005   1.1      cgd 	if (mbx->retry-- > 0) {
   1006   1.6  mycroft 		printf("%s: retrying\n", sc->sc_dev.dv_xname);
   1007  1.14  mycroft 		mbx->state = MCD_S_BEGIN;
   1008   1.1      cgd 		goto loop;
   1009   1.1      cgd 	}
   1010   1.1      cgd 
   1011   1.6  mycroft 	/* Invalidate the buffer. */
   1012   1.1      cgd 	bp->b_flags |= B_ERROR;
   1013   1.1      cgd 	bp->b_resid = bp->b_bcount;
   1014   1.1      cgd 	biodone(bp);
   1015   1.6  mycroft 	mcd_start(sc);
   1016   1.1      cgd 
   1017   1.6  mycroft #ifdef notyet
   1018   1.6  mycroft 	printf("%s: unit timeout; resetting\n", sc->sc_dev.dv_xname);
   1019   1.6  mycroft 	outb(mbx->iobase + mcd_reset, MCD_CMDRESET);
   1020   1.7  mycroft 	delay(300000);
   1021   1.6  mycroft 	(void)mcd_getstat(sc, 1);
   1022   1.6  mycroft 	(void)mcd_getstat(sc, 1);
   1023   1.6  mycroft 	/*sc->status &= ~MCDDSKCHNG; */
   1024   1.6  mycroft 	sc->debug = 1; /* preventive set debug mode */
   1025   1.1      cgd #endif
   1026   1.1      cgd }
   1027   1.1      cgd 
   1028   1.6  mycroft int
   1029   1.6  mycroft mcd_setmode(sc, mode)
   1030   1.6  mycroft 	struct mcd_softc *sc;
   1031   1.6  mycroft 	int mode;
   1032   1.1      cgd {
   1033  1.24  mycroft 	int iobase = sc->iobase;
   1034   1.1      cgd 	int retry;
   1035   1.1      cgd 
   1036   1.6  mycroft 	printf("%s: setting mode to %d\n", sc->sc_dev.dv_xname, mode);
   1037   1.6  mycroft 	for (retry = MCD_RETRIES; retry; retry--) {
   1038   1.6  mycroft 		outb(iobase + mcd_command, MCD_CMDSETMODE);
   1039   1.6  mycroft 		outb(iobase + mcd_command, mode);
   1040   1.6  mycroft 		if (mcd_getstat(sc, 0) != -1)
   1041   1.6  mycroft 			return 0;
   1042   1.1      cgd 	}
   1043   1.1      cgd 
   1044   1.1      cgd 	return -1;
   1045   1.1      cgd }
   1046   1.1      cgd 
   1047   1.6  mycroft int
   1048   1.6  mycroft mcd_toc_header(sc, th)
   1049   1.6  mycroft 	struct mcd_softc *sc;
   1050   1.6  mycroft 	struct ioc_toc_header *th;
   1051   1.1      cgd {
   1052   1.1      cgd 
   1053   1.6  mycroft 	if (mcd_volinfo(sc) < 0)
   1054   1.1      cgd 		return ENXIO;
   1055   1.1      cgd 
   1056   1.6  mycroft 	th->len = msf2hsg(sc->volinfo.vol_msf);
   1057   1.6  mycroft 	th->starting_track = bcd2bin(sc->volinfo.trk_low);
   1058   1.6  mycroft 	th->ending_track = bcd2bin(sc->volinfo.trk_high);
   1059   1.1      cgd 
   1060   1.1      cgd 	return 0;
   1061   1.1      cgd }
   1062   1.1      cgd 
   1063   1.6  mycroft int
   1064   1.6  mycroft mcd_read_toc(sc)
   1065   1.6  mycroft 	struct mcd_softc *sc;
   1066   1.1      cgd {
   1067   1.1      cgd 	struct ioc_toc_header th;
   1068   1.1      cgd 	struct mcd_qchninfo q;
   1069   1.1      cgd 	int rc, trk, idx, retry;
   1070   1.1      cgd 
   1071   1.6  mycroft 	/* Only read TOC if needed. */
   1072   1.6  mycroft 	if (sc->flags & MCDTOC)
   1073   1.6  mycroft 		return 0;
   1074   1.1      cgd 
   1075   1.6  mycroft 	if (sc->debug)
   1076   1.6  mycroft 		printf("%s: read_toc: reading toc header\n",
   1077   1.6  mycroft 		    sc->sc_dev.dv_xname);
   1078   1.6  mycroft 	if (mcd_toc_header(sc, &th) != 0)
   1079   1.1      cgd 		return ENXIO;
   1080   1.1      cgd 
   1081   1.6  mycroft 	if (sc->debug)
   1082   1.6  mycroft 		printf("%s: read_toc: stopping play\n", sc->sc_dev.dv_xname);
   1083   1.6  mycroft 	if ((rc = mcd_stop(sc)) != 0)
   1084   1.1      cgd 		return rc;
   1085   1.1      cgd 
   1086   1.6  mycroft 	/* Try setting the mode twice. */
   1087   1.6  mycroft 	if (mcd_setmode(sc, MCD_MD_TOC) != 0)
   1088   1.1      cgd 		return EIO;
   1089   1.6  mycroft 	if (mcd_setmode(sc, MCD_MD_TOC) != 0)
   1090   1.1      cgd 		return EIO;
   1091   1.1      cgd 
   1092   1.6  mycroft 	if (sc->debug)
   1093   1.6  mycroft 		printf("%s: read_toc: reading qchannel info\n",
   1094   1.6  mycroft 		    sc->sc_dev.dv_xname);
   1095   1.6  mycroft 	for (trk = th.starting_track; trk <= th.ending_track; trk++)
   1096   1.6  mycroft 		sc->toc[trk].idx_no = 0;
   1097   1.1      cgd 	trk = th.ending_track - th.starting_track + 1;
   1098   1.6  mycroft 	for (retry = 300; retry && trk > 0; retry--) {
   1099   1.6  mycroft 		if (mcd_getqchan(sc, &q) < 0)
   1100   1.6  mycroft 			break;
   1101   1.1      cgd 		idx = bcd2bin(q.idx_no);
   1102   1.6  mycroft 		if (idx > 0 && idx < MCD_MAXTOCS && q.trk_no == 0 &&
   1103   1.6  mycroft 		    sc->toc[idx].idx_no == 0) {
   1104   1.6  mycroft 			sc->toc[idx] = q;
   1105   1.6  mycroft 			trk--;
   1106   1.6  mycroft 		}
   1107   1.1      cgd 	}
   1108   1.1      cgd 
   1109   1.6  mycroft 	if (mcd_setmode(sc, MCD_MD_COOKED) != 0)
   1110   1.1      cgd 		return EIO;
   1111   1.1      cgd 
   1112   1.6  mycroft 	if (trk != 0)
   1113   1.6  mycroft 		return ENXIO;
   1114   1.1      cgd 
   1115   1.6  mycroft 	/* Add a fake last+1. */
   1116   1.1      cgd 	idx = th.ending_track + 1;
   1117   1.6  mycroft 	sc->toc[idx].ctrl_adr = sc->toc[idx-1].ctrl_adr;
   1118   1.6  mycroft 	sc->toc[idx].trk_no = 0;
   1119   1.6  mycroft 	sc->toc[idx].idx_no = 0xaa;
   1120   1.6  mycroft 	sc->toc[idx].hd_pos_msf[0] = sc->volinfo.vol_msf[0];
   1121   1.6  mycroft 	sc->toc[idx].hd_pos_msf[1] = sc->volinfo.vol_msf[1];
   1122   1.6  mycroft 	sc->toc[idx].hd_pos_msf[2] = sc->volinfo.vol_msf[2];
   1123   1.1      cgd 
   1124   1.6  mycroft 	sc->flags |= MCDTOC;
   1125   1.1      cgd 	return 0;
   1126   1.1      cgd }
   1127   1.1      cgd 
   1128   1.6  mycroft int
   1129   1.6  mycroft mcd_toc_entry(sc, te)
   1130   1.6  mycroft 	struct mcd_softc *sc;
   1131   1.6  mycroft 	struct ioc_read_toc_entry *te;
   1132   1.1      cgd {
   1133   1.6  mycroft 	struct ret_toc {
   1134   1.1      cgd 		struct ioc_toc_header th;
   1135   1.1      cgd 		struct cd_toc_entry rt;
   1136   1.1      cgd 	} ret_toc;
   1137   1.1      cgd 	struct ioc_toc_header th;
   1138   1.1      cgd 	int rc, i;
   1139   1.1      cgd 
   1140   1.6  mycroft 	/* Make sure we have a valid TOC. */
   1141   1.6  mycroft 	if ((rc = mcd_read_toc(sc)) != 0)
   1142   1.1      cgd 		return rc;
   1143   1.1      cgd 
   1144   1.6  mycroft 	/* Find the TOC to copy. */
   1145   1.1      cgd 	i = te->starting_track;
   1146   1.1      cgd 	if (i == MCD_LASTPLUS1)
   1147   1.6  mycroft 		i = bcd2bin(sc->volinfo.trk_high) + 1;
   1148   1.1      cgd 
   1149   1.6  mycroft 	/* Verify starting track. */
   1150   1.6  mycroft 	if (i < bcd2bin(sc->volinfo.trk_low) ||
   1151   1.6  mycroft 	    i > bcd2bin(sc->volinfo.trk_high) + 1)
   1152   1.1      cgd 		return EINVAL;
   1153   1.1      cgd 
   1154   1.6  mycroft 	/* Do we have room? */
   1155   1.1      cgd 	if (te->data_len < sizeof(struct ioc_toc_header) +
   1156   1.6  mycroft 	    sizeof(struct cd_toc_entry))
   1157   1.6  mycroft 		return EINVAL;
   1158   1.1      cgd 
   1159   1.6  mycroft 	/* Copy the TOC header. */
   1160   1.6  mycroft 	if (mcd_toc_header(sc, &th) < 0)
   1161   1.6  mycroft 		return EIO;
   1162   1.1      cgd 	ret_toc.th = th;
   1163   1.1      cgd 
   1164   1.6  mycroft 	/* Copy the TOC data. */
   1165   1.6  mycroft 	ret_toc.rt.control = sc->toc[i].ctrl_adr;
   1166   1.1      cgd 	ret_toc.rt.addr_type = te->address_format;
   1167   1.1      cgd 	ret_toc.rt.track = i;
   1168   1.6  mycroft 	if (te->address_format == CD_MSF_FORMAT) {
   1169   1.6  mycroft 		ret_toc.rt.addr[1] = sc->toc[i].hd_pos_msf[0];
   1170   1.6  mycroft 		ret_toc.rt.addr[2] = sc->toc[i].hd_pos_msf[1];
   1171   1.6  mycroft 		ret_toc.rt.addr[3] = sc->toc[i].hd_pos_msf[2];
   1172   1.1      cgd 	}
   1173   1.1      cgd 
   1174   1.6  mycroft 	/* Copy the data back. */
   1175   1.6  mycroft 	copyout(&ret_toc, te->data,
   1176   1.6  mycroft 	    sizeof(struct cd_toc_entry) + sizeof(struct ioc_toc_header));
   1177   1.1      cgd 
   1178   1.1      cgd 	return 0;
   1179   1.1      cgd }
   1180   1.1      cgd 
   1181   1.6  mycroft int
   1182   1.6  mycroft mcd_stop(sc)
   1183   1.6  mycroft 	struct mcd_softc *sc;
   1184   1.1      cgd {
   1185   1.1      cgd 
   1186   1.6  mycroft 	if (mcd_send(sc, MCD_CMDSTOPAUDIO, MCD_RETRIES) < 0)
   1187   1.1      cgd 		return ENXIO;
   1188   1.6  mycroft 	sc->audio_status = CD_AS_PLAY_COMPLETED;
   1189   1.1      cgd 	return 0;
   1190   1.1      cgd }
   1191   1.1      cgd 
   1192   1.6  mycroft int
   1193   1.6  mycroft mcd_getqchan(sc, q)
   1194   1.6  mycroft 	struct mcd_softc *sc;
   1195   1.6  mycroft 	struct mcd_qchninfo *q;
   1196   1.1      cgd {
   1197   1.1      cgd 
   1198   1.6  mycroft 	if (mcd_send(sc, MCD_CMDGETQCHN, MCD_RETRIES) < 0)
   1199   1.1      cgd 		return -1;
   1200   1.6  mycroft 	if (mcd_get(sc, (char *) q, sizeof(struct mcd_qchninfo)) < 0)
   1201   1.1      cgd 		return -1;
   1202   1.6  mycroft 	if (sc->debug)
   1203   1.6  mycroft 		printf("%s: getqchan: ctl=%d t=%d i=%d ttm=%d:%d.%d dtm=%d:%d.%d\n",
   1204   1.6  mycroft 		    sc->sc_dev.dv_xname, q->ctrl_adr, q->trk_no, q->idx_no,
   1205   1.6  mycroft 		    q->trk_size_msf[0], q->trk_size_msf[1], q->trk_size_msf[2],
   1206   1.6  mycroft 		    q->trk_size_msf[0], q->trk_size_msf[1], q->trk_size_msf[2]);
   1207   1.1      cgd 	return 0;
   1208   1.1      cgd }
   1209   1.1      cgd 
   1210   1.6  mycroft int
   1211   1.6  mycroft mcd_subchan(sc, ch)
   1212   1.6  mycroft 	struct mcd_softc *sc;
   1213   1.6  mycroft 	struct ioc_read_subchannel *ch;
   1214   1.1      cgd {
   1215   1.1      cgd 	struct mcd_qchninfo q;
   1216   1.1      cgd 	struct cd_sub_channel_info data;
   1217   1.1      cgd 
   1218   1.6  mycroft 	if (sc->debug)
   1219   1.6  mycroft 		printf("%s: subchan: af=%d df=%d\n", sc->sc_dev.dv_xname,
   1220   1.6  mycroft 		    ch->address_format, ch->data_format);
   1221   1.1      cgd 
   1222   1.6  mycroft 	if (ch->address_format != CD_MSF_FORMAT)
   1223   1.6  mycroft 		return EIO;
   1224   1.6  mycroft 	if (ch->data_format != CD_CURRENT_POSITION)
   1225   1.6  mycroft 		return EIO;
   1226   1.6  mycroft 	if (mcd_getqchan(sc, &q) < 0)
   1227   1.6  mycroft 		return EIO;
   1228   1.1      cgd 
   1229   1.6  mycroft 	data.header.audio_status = sc->audio_status;
   1230   1.1      cgd 	data.what.position.data_format = CD_MSF_FORMAT;
   1231   1.1      cgd 	data.what.position.track_number = bcd2bin(q.trk_no);
   1232   1.1      cgd 
   1233   1.6  mycroft 	if (copyout(&data, ch->data, sizeof(struct cd_sub_channel_info)) != 0)
   1234   1.1      cgd 		return EFAULT;
   1235   1.1      cgd 	return 0;
   1236   1.1      cgd }
   1237   1.1      cgd 
   1238   1.6  mycroft int
   1239   1.6  mycroft mcd_playtracks(sc, pt)
   1240   1.6  mycroft 	struct mcd_softc *sc;
   1241   1.6  mycroft 	struct ioc_play_track *pt;
   1242   1.1      cgd {
   1243   1.1      cgd 	struct mcd_read2 pb;
   1244   1.1      cgd 	int a = pt->start_track;
   1245   1.1      cgd 	int z = pt->end_track;
   1246   1.1      cgd 	int rc;
   1247   1.1      cgd 
   1248   1.6  mycroft 	if ((rc = mcd_read_toc(sc)) != 0)
   1249   1.6  mycroft 		return rc;
   1250   1.1      cgd 
   1251   1.6  mycroft 	printf("%s: playtracks: from %d:%d to %d:%d\n", sc->sc_dev.dv_xname,
   1252   1.6  mycroft 	    a, pt->start_index, z, pt->end_index);
   1253   1.1      cgd 
   1254   1.6  mycroft 	if (a < sc->volinfo.trk_low || a > sc->volinfo.trk_high || a > z ||
   1255   1.6  mycroft 	    z < sc->volinfo.trk_low || z > sc->volinfo.trk_high)
   1256   1.1      cgd 		return EINVAL;
   1257   1.1      cgd 
   1258   1.6  mycroft 	pb.start_msf[0] = sc->toc[a].hd_pos_msf[0];
   1259   1.6  mycroft 	pb.start_msf[1] = sc->toc[a].hd_pos_msf[1];
   1260   1.6  mycroft 	pb.start_msf[2] = sc->toc[a].hd_pos_msf[2];
   1261   1.6  mycroft 	pb.end_msf[0] = sc->toc[z+1].hd_pos_msf[0];
   1262   1.6  mycroft 	pb.end_msf[1] = sc->toc[z+1].hd_pos_msf[1];
   1263   1.6  mycroft 	pb.end_msf[2] = sc->toc[z+1].hd_pos_msf[2];
   1264   1.6  mycroft 
   1265   1.6  mycroft 	return mcd_play(sc, &pb);
   1266   1.6  mycroft }
   1267   1.6  mycroft 
   1268   1.6  mycroft int
   1269   1.6  mycroft mcd_play(sc, pb)
   1270   1.6  mycroft 	struct mcd_softc *sc;
   1271   1.6  mycroft 	struct mcd_read2 *pb;
   1272   1.1      cgd {
   1273  1.24  mycroft 	int iobase = sc->iobase;
   1274   1.1      cgd 	int retry, st;
   1275   1.1      cgd 
   1276   1.6  mycroft 	sc->lastpb = *pb;
   1277   1.6  mycroft 	for (retry = MCD_RETRIES; retry; retry--) {
   1278   1.6  mycroft 		outb(iobase + mcd_command, MCD_CMDREAD2);
   1279   1.6  mycroft 		outb(iobase + mcd_command, pb->start_msf[0]);
   1280   1.6  mycroft 		outb(iobase + mcd_command, pb->start_msf[1]);
   1281   1.6  mycroft 		outb(iobase + mcd_command, pb->start_msf[2]);
   1282   1.6  mycroft 		outb(iobase + mcd_command, pb->end_msf[0]);
   1283   1.6  mycroft 		outb(iobase + mcd_command, pb->end_msf[1]);
   1284   1.6  mycroft 		outb(iobase + mcd_command, pb->end_msf[2]);
   1285   1.6  mycroft 		if ((st = mcd_getstat(sc, 0)) != -1)
   1286   1.6  mycroft 			break;
   1287   1.6  mycroft 	}
   1288   1.6  mycroft 	if (sc->debug)
   1289   1.6  mycroft 		printf("%s: play: retry=%d status=%d\n", sc->sc_dev.dv_xname,
   1290   1.6  mycroft 		    retry, st);
   1291   1.6  mycroft 	if (!retry)
   1292   1.6  mycroft 		return ENXIO;
   1293   1.6  mycroft 
   1294   1.6  mycroft 	sc->audio_status = CD_AS_PLAY_IN_PROGRESS;
   1295   1.1      cgd 	return 0;
   1296   1.1      cgd }
   1297   1.1      cgd 
   1298   1.6  mycroft int
   1299   1.6  mycroft mcd_pause(sc)
   1300   1.6  mycroft 	struct mcd_softc *sc;
   1301   1.1      cgd {
   1302   1.1      cgd 	struct mcd_qchninfo q;
   1303   1.1      cgd 	int rc;
   1304   1.1      cgd 
   1305   1.6  mycroft 	/* Verify current status. */
   1306   1.6  mycroft 	if (sc->audio_status != CD_AS_PLAY_IN_PROGRESS)	{
   1307   1.6  mycroft 		printf("%s: pause: attempted when not playing\n",
   1308   1.6  mycroft 		    sc->sc_dev.dv_xname);
   1309   1.1      cgd 		return EINVAL;
   1310   1.1      cgd 	}
   1311   1.1      cgd 
   1312   1.6  mycroft 	/* Get the current position. */
   1313   1.6  mycroft 	if (mcd_getqchan(sc, &q) < 0)
   1314   1.6  mycroft 		return EIO;
   1315   1.1      cgd 
   1316   1.6  mycroft 	/* Copy it into lastpb. */
   1317   1.6  mycroft 	sc->lastpb.start_msf[0] = q.hd_pos_msf[0];
   1318   1.6  mycroft 	sc->lastpb.start_msf[1] = q.hd_pos_msf[1];
   1319   1.6  mycroft 	sc->lastpb.start_msf[2] = q.hd_pos_msf[2];
   1320   1.1      cgd 
   1321   1.6  mycroft 	/* Stop playing. */
   1322   1.6  mycroft 	if ((rc = mcd_stop(sc)) != 0)
   1323   1.6  mycroft 		return rc;
   1324   1.1      cgd 
   1325   1.6  mycroft 	/* Set the proper status and exit. */
   1326   1.6  mycroft 	sc->audio_status = CD_AS_PLAY_PAUSED;
   1327   1.1      cgd 	return 0;
   1328   1.1      cgd }
   1329   1.1      cgd 
   1330   1.6  mycroft int
   1331   1.6  mycroft mcd_resume(sc)
   1332   1.6  mycroft 	struct mcd_softc *sc;
   1333   1.1      cgd {
   1334   1.1      cgd 
   1335   1.6  mycroft 	if (sc->audio_status != CD_AS_PLAY_PAUSED)
   1336   1.6  mycroft 		return EINVAL;
   1337   1.6  mycroft 	return mcd_play(sc, &sc->lastpb);
   1338   1.1      cgd }
   1339