Home | History | Annotate | Line # | Download | only in isa
fd.c revision 1.99.8.1
      1  1.99.8.1      yamt /*	$NetBSD: fd.c,v 1.99.8.1 2012/04/17 00:07:38 yamt Exp $	*/
      2       1.1   thorpej 
      3       1.1   thorpej /*-
      4      1.86        ad  * Copyright (c) 1998, 2003, 2008 The NetBSD Foundation, Inc.
      5       1.1   thorpej  * All rights reserved.
      6       1.1   thorpej  *
      7       1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1   thorpej  * by Charles M. Hannum.
      9       1.1   thorpej  *
     10       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     11       1.1   thorpej  * modification, are permitted provided that the following conditions
     12       1.1   thorpej  * are met:
     13       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     14       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     15       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     18       1.1   thorpej  *
     19       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1   thorpej  */
     31       1.1   thorpej 
     32       1.1   thorpej /*-
     33       1.1   thorpej  * Copyright (c) 1990 The Regents of the University of California.
     34       1.1   thorpej  * All rights reserved.
     35       1.1   thorpej  *
     36       1.1   thorpej  * This code is derived from software contributed to Berkeley by
     37       1.1   thorpej  * Don Ahn.
     38       1.1   thorpej  *
     39       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     40       1.1   thorpej  * modification, are permitted provided that the following conditions
     41       1.1   thorpej  * are met:
     42       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     43       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     44       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     45       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     46       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     47      1.46       agc  * 3. Neither the name of the University nor the names of its contributors
     48       1.1   thorpej  *    may be used to endorse or promote products derived from this software
     49       1.1   thorpej  *    without specific prior written permission.
     50       1.1   thorpej  *
     51       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     52       1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     53       1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     54       1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     55       1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     56       1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     57       1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     58       1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     59       1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     60       1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     61       1.1   thorpej  * SUCH DAMAGE.
     62       1.1   thorpej  *
     63       1.1   thorpej  *	@(#)fd.c	7.4 (Berkeley) 5/25/91
     64       1.1   thorpej  */
     65       1.1   thorpej 
     66       1.1   thorpej /*
     67       1.1   thorpej  * Floppy formatting facilities merged from FreeBSD fd.c driver:
     68       1.1   thorpej  *	Id: fd.c,v 1.53 1995/03/12 22:40:56 joerg Exp
     69       1.1   thorpej  * which carries the same copyright/redistribution notice as shown above with
     70       1.1   thorpej  * the addition of the following statement before the "Redistribution and
     71       1.1   thorpej  * use ..." clause:
     72       1.1   thorpej  *
     73       1.1   thorpej  * Copyright (c) 1993, 1994 by
     74       1.1   thorpej  *  jc (at) irbs.UUCP (John Capo)
     75       1.1   thorpej  *  vak (at) zebub.msk.su (Serge Vakulenko)
     76       1.1   thorpej  *  ache (at) astral.msk.su (Andrew A. Chernov)
     77       1.1   thorpej  *
     78       1.1   thorpej  * Copyright (c) 1993, 1994, 1995 by
     79       1.1   thorpej  *  joerg_wunsch (at) uriah.sax.de (Joerg Wunsch)
     80       1.1   thorpej  *  dufault (at) hda.com (Peter Dufault)
     81       1.1   thorpej  */
     82      1.19     lukem 
     83      1.19     lukem #include <sys/cdefs.h>
     84  1.99.8.1      yamt __KERNEL_RCSID(0, "$NetBSD: fd.c,v 1.99.8.1 2012/04/17 00:07:38 yamt Exp $");
     85       1.1   thorpej 
     86       1.1   thorpej #include "opt_ddb.h"
     87       1.1   thorpej 
     88       1.1   thorpej /*
     89       1.1   thorpej  * XXX This driver should be properly MI'd some day, but this allows us
     90       1.1   thorpej  * XXX to eliminate a lot of code duplication for now.
     91       1.1   thorpej  */
     92      1.16   thorpej #if !defined(alpha) && !defined(algor) && !defined(atari) && \
     93      1.23    simonb     !defined(bebox) && !defined(evbmips) && !defined(i386) && \
     94      1.83   mlelstv     !defined(prep) && !defined(sandpoint) && !defined(x86_64) && \
     95      1.96        he     !defined(mvmeppc) && !defined(ofppc)
     96       1.1   thorpej #error platform not supported by this driver, yet
     97       1.1   thorpej #endif
     98       1.1   thorpej 
     99       1.1   thorpej #include <sys/param.h>
    100       1.1   thorpej #include <sys/systm.h>
    101       1.1   thorpej #include <sys/callout.h>
    102       1.1   thorpej #include <sys/kernel.h>
    103       1.1   thorpej #include <sys/file.h>
    104       1.1   thorpej #include <sys/ioctl.h>
    105       1.1   thorpej #include <sys/device.h>
    106       1.1   thorpej #include <sys/disklabel.h>
    107       1.1   thorpej #include <sys/disk.h>
    108       1.1   thorpej #include <sys/buf.h>
    109      1.55      yamt #include <sys/bufq.h>
    110       1.1   thorpej #include <sys/malloc.h>
    111       1.1   thorpej #include <sys/uio.h>
    112       1.1   thorpej #include <sys/syslog.h>
    113       1.1   thorpej #include <sys/queue.h>
    114       1.1   thorpej #include <sys/proc.h>
    115       1.1   thorpej #include <sys/fdio.h>
    116      1.16   thorpej #include <sys/conf.h>
    117      1.81    dyoung #include <sys/vnode.h>
    118       1.1   thorpej #include <sys/rnd.h>
    119       1.1   thorpej 
    120      1.73   jnemeth #include <prop/proplib.h>
    121      1.73   jnemeth 
    122       1.1   thorpej #include <dev/cons.h>
    123       1.1   thorpej 
    124      1.77        ad #include <sys/cpu.h>
    125      1.77        ad #include <sys/bus.h>
    126      1.16   thorpej 
    127      1.53  drochner #include "locators.h"
    128      1.53  drochner 
    129      1.14       leo #if defined(atari)
    130      1.14       leo /*
    131      1.14       leo  * On the atari, it is configured as fdcisa
    132      1.14       leo  */
    133      1.14       leo #define	FDCCF_DRIVE		FDCISACF_DRIVE
    134      1.14       leo #define	FDCCF_DRIVE_DEFAULT	FDCISACF_DRIVE_DEFAULT
    135      1.14       leo 
    136      1.14       leo #define	fd_cd	fdisa_cd
    137      1.16   thorpej #endif /* atari */
    138      1.14       leo 
    139      1.77        ad #include <sys/intr.h>
    140       1.1   thorpej 
    141       1.1   thorpej #include <dev/isa/isavar.h>
    142       1.1   thorpej #include <dev/isa/isadmavar.h>
    143       1.3   thorpej 
    144       1.1   thorpej #include <dev/isa/fdreg.h>
    145       1.3   thorpej #include <dev/isa/fdcvar.h>
    146       1.1   thorpej 
    147      1.86        ad #if defined(i386) || defined(x86_64)
    148       1.5  jdolecek 
    149       1.1   thorpej #include <dev/ic/mc146818reg.h>			/* for NVRAM access */
    150       1.1   thorpej #include <i386/isa/nvram.h>
    151       1.5  jdolecek 
    152      1.86        ad #if defined(i386)
    153       1.5  jdolecek #include "mca.h"
    154       1.5  jdolecek #if NMCA > 0
    155       1.5  jdolecek #include <machine/mca_machdep.h>		/* for MCA_system */
    156       1.5  jdolecek #endif
    157      1.86        ad #endif
    158       1.5  jdolecek 
    159      1.86        ad #endif /* i386 || x86_64 */
    160      1.16   thorpej 
    161      1.33  jmcneill #include <dev/isa/fdvar.h>
    162      1.33  jmcneill 
    163       1.1   thorpej #define FDUNIT(dev)	(minor(dev) / 8)
    164       1.1   thorpej #define FDTYPE(dev)	(minor(dev) % 8)
    165       1.1   thorpej 
    166      1.71   reinoud /* (mis)use device use flag to identify format operation */
    167      1.71   reinoud #define B_FORMAT B_DEVPRIVATE
    168       1.1   thorpej 
    169       1.1   thorpej /* controller driver configuration */
    170      1.57     perry int fdprint(void *, const char *);
    171       1.1   thorpej 
    172       1.5  jdolecek #if NMCA > 0
    173       1.5  jdolecek /* MCA - specific entries */
    174      1.13  jdolecek const struct fd_type mca_fd_types[] = {
    175       1.5  jdolecek 	{ 18,2,36,2,0xff,0x0f,0x1b,0x6c,80,2880,1,FDC_500KBPS,0xf6,1, "1.44MB"    }, /* 1.44MB diskette - XXX try 16ms step rate */
    176       1.5  jdolecek 	{  9,2,18,2,0xff,0x4f,0x2a,0x50,80,1440,1,FDC_250KBPS,0xf6,1, "720KB"    }, /* 3.5 inch 720kB diskette - XXX try 24ms step rate */
    177       1.5  jdolecek };
    178       1.5  jdolecek #endif /* NMCA > 0 */
    179       1.5  jdolecek 
    180       1.1   thorpej /* The order of entries in the following table is important -- BEWARE! */
    181      1.14       leo 
    182      1.14       leo #if defined(atari)
    183      1.14       leo const struct fd_type fd_types[] = {
    184      1.14       leo 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,1,FDC_250KBPS,0xf6,1, "360KB/PC" }, /* 360kB PC diskettes */
    185      1.14       leo 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,80,1440,1,FDC_250KBPS,0xf6,1, "720KB"    }, /* 3.5 inch 720kB diskette */
    186      1.14       leo 	{ 18,2,36,2,0xff,0xcf,0x1b,0x6c,80,2880,1,FDC_500KBPS,0xf6,1, "1.44MB"   }, /* 1.44MB diskette */
    187      1.14       leo };
    188      1.14       leo #else
    189      1.13  jdolecek const struct fd_type fd_types[] = {
    190      1.14       leo 	{ 18,2,36,2,0xff,0xcf,0x1b,0x6c,80,2880,1,FDC_500KBPS,0xf6,1, "1.44MB"   }, /* 1.44MB diskette */
    191       1.1   thorpej 	{ 15,2,30,2,0xff,0xdf,0x1b,0x54,80,2400,1,FDC_500KBPS,0xf6,1, "1.2MB"    }, /* 1.2 MB AT-diskettes */
    192       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x23,0x50,40, 720,2,FDC_300KBPS,0xf6,1, "360KB/AT" }, /* 360kB in 1.2MB drive */
    193       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,1,FDC_250KBPS,0xf6,1, "360KB/PC" }, /* 360kB PC diskettes */
    194       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,80,1440,1,FDC_250KBPS,0xf6,1, "720KB"    }, /* 3.5 inch 720kB diskette */
    195       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x23,0x50,80,1440,1,FDC_300KBPS,0xf6,1, "720KB/x"  }, /* 720kB in 1.2MB drive */
    196       1.1   thorpej 	{  9,2,18,2,0xff,0xdf,0x2a,0x50,40, 720,2,FDC_250KBPS,0xf6,1, "360KB/x"  }, /* 360kB in 720kB drive */
    197       1.1   thorpej };
    198      1.14       leo #endif /* defined(atari) */
    199       1.1   thorpej 
    200      1.79    dyoung void fdcfinishattach(device_t);
    201      1.92    cegger int fdprobe(device_t, cfdata_t, void *);
    202      1.79    dyoung void fdattach(device_t, device_t, void *);
    203      1.81    dyoung static int fddetach(device_t, int);
    204      1.81    dyoung static int fdcintr1(struct fdc_softc *);
    205      1.81    dyoung static void fdcintrcb(void *);
    206      1.95    dyoung static bool fdcsuspend(device_t, const pmf_qual_t *);
    207      1.95    dyoung static bool fdcresume(device_t, const pmf_qual_t *);
    208       1.1   thorpej 
    209       1.3   thorpej extern struct cfdriver fd_cd;
    210       1.3   thorpej 
    211      1.41       leo #ifdef atari
    212      1.82      cube CFATTACH_DECL_NEW(fdisa, sizeof(struct fd_softc),
    213      1.81    dyoung     fdprobe, fdattach, fddetach, NULL);
    214      1.41       leo #else
    215      1.82      cube CFATTACH_DECL_NEW(fd, sizeof(struct fd_softc),
    216      1.81    dyoung     fdprobe, fdattach, fddetach, NULL);
    217      1.41       leo #endif
    218       1.1   thorpej 
    219      1.25   gehenna dev_type_open(fdopen);
    220      1.25   gehenna dev_type_close(fdclose);
    221      1.25   gehenna dev_type_read(fdread);
    222      1.25   gehenna dev_type_write(fdwrite);
    223      1.25   gehenna dev_type_ioctl(fdioctl);
    224      1.25   gehenna dev_type_strategy(fdstrategy);
    225      1.25   gehenna 
    226      1.25   gehenna const struct bdevsw fd_bdevsw = {
    227      1.25   gehenna 	fdopen, fdclose, fdstrategy, fdioctl, nodump, nosize, D_DISK
    228      1.25   gehenna };
    229      1.25   gehenna 
    230      1.25   gehenna const struct cdevsw fd_cdevsw = {
    231      1.25   gehenna 	fdopen, fdclose, fdread, fdwrite, fdioctl,
    232      1.30  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter, D_DISK
    233      1.25   gehenna };
    234      1.25   gehenna 
    235      1.57     perry void fdgetdisklabel(struct fd_softc *);
    236      1.57     perry int fd_get_parms(struct fd_softc *);
    237      1.57     perry void fdstart(struct fd_softc *);
    238       1.1   thorpej 
    239      1.68  christos struct dkdriver fddkdriver = { fdstrategy, NULL };
    240       1.1   thorpej 
    241      1.86        ad #if defined(i386) || defined(x86_64)
    242      1.79    dyoung const struct fd_type *fd_nvtotype(const char *, int, int);
    243      1.86        ad #endif /* i386 || x86_64 */
    244      1.57     perry void fd_set_motor(struct fdc_softc *fdc, int reset);
    245      1.57     perry void fd_motor_off(void *arg);
    246      1.57     perry void fd_motor_on(void *arg);
    247      1.57     perry int fdcresult(struct fdc_softc *fdc);
    248      1.57     perry void fdcstart(struct fdc_softc *fdc);
    249      1.79    dyoung void fdcstatus(device_t, int, const char *);
    250      1.57     perry void fdctimeout(void *arg);
    251      1.57     perry void fdcretry(struct fdc_softc *fdc);
    252      1.57     perry void fdfinish(struct fd_softc *fd, struct buf *bp);
    253      1.80    dyoung static const struct fd_type *fd_dev_to_type(struct fd_softc *, dev_t);
    254      1.61  christos int fdformat(dev_t, struct ne7_fd_formb *, struct lwp *);
    255      1.73   jnemeth static void fd_set_properties(struct fd_softc *fd);
    256       1.1   thorpej 
    257      1.79    dyoung void	fd_mountroot_hook(device_t);
    258       1.1   thorpej 
    259       1.1   thorpej /*
    260       1.1   thorpej  * Arguments passed between fdcattach and fdprobe.
    261       1.1   thorpej  */
    262       1.1   thorpej struct fdc_attach_args {
    263       1.1   thorpej 	int fa_drive;
    264      1.13  jdolecek 	const struct fd_type *fa_deftype;
    265       1.1   thorpej };
    266       1.1   thorpej 
    267       1.1   thorpej /*
    268       1.1   thorpej  * Print the location of a disk drive (called just before attaching the
    269       1.1   thorpej  * the drive).  If `fdc' is not NULL, the drive was found but was not
    270       1.1   thorpej  * in the system config file; print the drive name as well.
    271       1.1   thorpej  * Return QUIET (config_find ignores this if the device was configured) to
    272       1.1   thorpej  * avoid printing `fdN not configured' messages.
    273       1.1   thorpej  */
    274       1.1   thorpej int
    275      1.79    dyoung fdprint(void *aux, const char *fdc)
    276       1.1   thorpej {
    277      1.80    dyoung 	struct fdc_attach_args *fa = aux;
    278       1.1   thorpej 
    279       1.1   thorpej 	if (!fdc)
    280      1.32   thorpej 		aprint_normal(" drive %d", fa->fa_drive);
    281       1.1   thorpej 	return QUIET;
    282       1.1   thorpej }
    283       1.1   thorpej 
    284      1.81    dyoung static bool
    285      1.95    dyoung fdcresume(device_t self, const pmf_qual_t *qual)
    286      1.81    dyoung {
    287      1.81    dyoung 	struct fdc_softc *fdc = device_private(self);
    288      1.81    dyoung 
    289      1.90   mlelstv 	mutex_enter(&fdc->sc_mtx);
    290      1.81    dyoung 	(void)fdcintr1(fdc);
    291      1.90   mlelstv 	mutex_exit(&fdc->sc_mtx);
    292      1.81    dyoung 	return true;
    293      1.81    dyoung }
    294      1.81    dyoung 
    295      1.81    dyoung static bool
    296      1.95    dyoung fdcsuspend(device_t self, const pmf_qual_t *qual)
    297      1.81    dyoung {
    298      1.81    dyoung 	struct fdc_softc *fdc = device_private(self);
    299      1.81    dyoung 	int drive;
    300      1.81    dyoung 	struct fd_softc *fd;
    301      1.81    dyoung 
    302      1.81    dyoung 	mutex_enter(&fdc->sc_mtx);
    303      1.81    dyoung 	while (fdc->sc_state != DEVIDLE)
    304      1.81    dyoung 		cv_wait(&fdc->sc_cv, &fdc->sc_mtx);
    305      1.81    dyoung 	for (drive = 0; drive < 4; drive++) {
    306      1.81    dyoung 		if ((fd = fdc->sc_fd[drive]) == NULL)
    307      1.81    dyoung 			continue;
    308      1.81    dyoung 		fd->sc_flags &= ~(FD_MOTOR|FD_MOTOR_WAIT);
    309      1.81    dyoung 	}
    310      1.81    dyoung 	fd_set_motor(fdc, 0);
    311      1.81    dyoung 	mutex_exit(&fdc->sc_mtx);
    312      1.81    dyoung 	return true;
    313      1.81    dyoung }
    314      1.81    dyoung 
    315      1.81    dyoung void
    316      1.81    dyoung fdc_childdet(device_t self, device_t child)
    317      1.81    dyoung {
    318      1.81    dyoung 	struct fdc_softc *fdc = device_private(self);
    319      1.81    dyoung 	struct fd_softc *fd = device_private(child);
    320      1.81    dyoung 	int drive = fd->sc_drive;
    321      1.81    dyoung 
    322      1.81    dyoung 	KASSERT(fdc->sc_fd[drive] == fd); /* but the kid is not my son */
    323      1.81    dyoung 	fdc->sc_fd[drive] = NULL;
    324      1.81    dyoung }
    325      1.81    dyoung 
    326      1.81    dyoung int
    327      1.81    dyoung fdcdetach(device_t self, int flags)
    328      1.81    dyoung {
    329      1.81    dyoung 	int rc;
    330      1.81    dyoung 	struct fdc_softc *fdc = device_private(self);
    331      1.81    dyoung 
    332      1.81    dyoung 	if ((rc = config_detach_children(self, flags)) != 0)
    333      1.81    dyoung 		return rc;
    334      1.81    dyoung 
    335      1.81    dyoung 	pmf_device_deregister(self);
    336      1.81    dyoung 
    337      1.81    dyoung 	isa_dmamap_destroy(fdc->sc_ic, fdc->sc_drq);
    338      1.81    dyoung 	isa_drq_free(fdc->sc_ic, fdc->sc_drq);
    339      1.81    dyoung 
    340      1.81    dyoung 	callout_destroy(&fdc->sc_intr_ch);
    341      1.81    dyoung 	callout_destroy(&fdc->sc_timo_ch);
    342      1.81    dyoung 
    343      1.81    dyoung 	cv_destroy(&fdc->sc_cv);
    344      1.81    dyoung 	mutex_destroy(&fdc->sc_mtx);
    345      1.81    dyoung 
    346      1.81    dyoung 	return 0;
    347      1.81    dyoung }
    348      1.81    dyoung 
    349       1.1   thorpej void
    350      1.79    dyoung fdcattach(struct fdc_softc *fdc)
    351       1.1   thorpej {
    352      1.81    dyoung 	mutex_init(&fdc->sc_mtx, MUTEX_DEFAULT, IPL_BIO);
    353      1.98  pgoyette 	cv_init(&fdc->sc_cv, "fdcwake");
    354      1.74        ad 	callout_init(&fdc->sc_timo_ch, 0);
    355      1.74        ad 	callout_init(&fdc->sc_intr_ch, 0);
    356       1.1   thorpej 
    357       1.1   thorpej 	fdc->sc_state = DEVIDLE;
    358       1.1   thorpej 	TAILQ_INIT(&fdc->sc_drives);
    359       1.1   thorpej 
    360       1.1   thorpej 	fdc->sc_maxiosize = isa_dmamaxsize(fdc->sc_ic, fdc->sc_drq);
    361      1.42      fvdl 
    362      1.42      fvdl 	if (isa_drq_alloc(fdc->sc_ic, fdc->sc_drq) != 0) {
    363      1.82      cube 		aprint_normal_dev(fdc->sc_dev, "can't reserve drq %d\n",
    364      1.79    dyoung 		    fdc->sc_drq);
    365      1.42      fvdl 		return;
    366      1.42      fvdl 	}
    367       1.1   thorpej 
    368       1.1   thorpej 	if (isa_dmamap_create(fdc->sc_ic, fdc->sc_drq, fdc->sc_maxiosize,
    369       1.1   thorpej 	    BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW)) {
    370      1.82      cube 		aprint_normal_dev(fdc->sc_dev, "can't set up ISA DMA map\n");
    371       1.1   thorpej 		return;
    372       1.1   thorpej 	}
    373      1.49   mycroft 
    374      1.82      cube 	config_interrupts(fdc->sc_dev, fdcfinishattach);
    375      1.81    dyoung 
    376      1.82      cube 	if (!pmf_device_register(fdc->sc_dev, fdcsuspend, fdcresume)) {
    377      1.82      cube 		aprint_error_dev(fdc->sc_dev,
    378      1.81    dyoung 		    "cannot set power mgmt handler\n");
    379      1.81    dyoung 	}
    380      1.49   mycroft }
    381      1.56  drochner 
    382      1.49   mycroft void
    383      1.79    dyoung fdcfinishattach(device_t self)
    384      1.49   mycroft {
    385      1.79    dyoung 	struct fdc_softc *fdc = device_private(self);
    386      1.49   mycroft 	bus_space_tag_t iot = fdc->sc_iot;
    387      1.49   mycroft 	bus_space_handle_t ioh = fdc->sc_ioh;
    388      1.49   mycroft 	struct fdc_attach_args fa;
    389      1.49   mycroft 
    390      1.56  drochner 	/*
    391      1.15   tsutsui 	 * Reset the controller to get it into a known state. Not all
    392      1.15   tsutsui 	 * probes necessarily need do this to discover the controller up
    393      1.15   tsutsui 	 * front, so don't assume anything.
    394      1.15   tsutsui 	 */
    395      1.15   tsutsui 
    396      1.15   tsutsui 	bus_space_write_1(iot, ioh, fdout, 0);
    397      1.15   tsutsui 	delay(100);
    398      1.15   tsutsui 	bus_space_write_1(iot, ioh, fdout, FDO_FRST);
    399      1.56  drochner 
    400      1.15   tsutsui 	/* see if it can handle a command */
    401      1.15   tsutsui 	if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0) {
    402      1.82      cube 		aprint_normal_dev(fdc->sc_dev, "can't reset controller\n");
    403      1.15   tsutsui 		return;
    404      1.15   tsutsui 	}
    405      1.15   tsutsui 	out_fdc(iot, ioh, 0xdf);
    406      1.15   tsutsui 	out_fdc(iot, ioh, 2);
    407       1.1   thorpej 
    408      1.86        ad #if defined(i386) || defined(x86_64)
    409       1.1   thorpej 	/*
    410       1.1   thorpej 	 * The NVRAM info only tells us about the first two disks on the
    411       1.1   thorpej 	 * `primary' floppy controller.
    412       1.1   thorpej 	 */
    413      1.66   thorpej 	/* XXX device_unit() abuse */
    414      1.86        ad 	if (device_unit(fdc->sc_dev) == 0) {
    415      1.86        ad 		int type = mc146818_read(NULL, NVRAM_DISKETTE); /* XXX softc */
    416      1.86        ad 		fdc->sc_known = 1;
    417      1.86        ad 		fdc->sc_knownfds[0] = fd_nvtotype(device_xname(fdc->sc_dev),
    418      1.86        ad 		    type, 0);
    419      1.86        ad 		if (fdc->sc_knownfds[0] != NULL)
    420      1.86        ad 			fdc->sc_present |= 1;
    421      1.86        ad 		fdc->sc_knownfds[1] = fd_nvtotype(device_xname(fdc->sc_dev),
    422      1.86        ad 		    type, 1);
    423      1.86        ad 		if (fdc->sc_knownfds[1] != NULL)
    424      1.86        ad 			fdc->sc_present |= 2;
    425      1.86        ad 	}
    426      1.86        ad #endif /* i386 || x86_64 */
    427       1.1   thorpej 
    428       1.1   thorpej 	/* physical limit: four drives per controller. */
    429      1.48   mycroft 	fdc->sc_state = PROBING;
    430       1.1   thorpej 	for (fa.fa_drive = 0; fa.fa_drive < 4; fa.fa_drive++) {
    431      1.33  jmcneill 		if (fdc->sc_known) {
    432      1.33  jmcneill 			if (fdc->sc_present & (1 << fa.fa_drive)) {
    433      1.33  jmcneill 				fa.fa_deftype = fdc->sc_knownfds[fa.fa_drive];
    434      1.82      cube 				config_found(fdc->sc_dev, (void *)&fa,
    435      1.33  jmcneill 				    fdprint);
    436      1.33  jmcneill 			}
    437      1.33  jmcneill 		} else {
    438      1.86        ad #if defined(atari)
    439      1.33  jmcneill 			/*
    440      1.33  jmcneill 			 * Atari has a different ordening, defaults to 1.44
    441      1.33  jmcneill 			 */
    442      1.33  jmcneill 			fa.fa_deftype = &fd_types[2];
    443       1.1   thorpej #else
    444      1.33  jmcneill 			/*
    445      1.33  jmcneill 			 * Default to 1.44MB on Alpha and BeBox.  How do we tell
    446      1.33  jmcneill 			 * on these platforms?
    447      1.33  jmcneill 			 */
    448      1.33  jmcneill 			fa.fa_deftype = &fd_types[0];
    449      1.86        ad #endif
    450      1.82      cube 			(void)config_found_ia(fdc->sc_dev, "fdc", (void *)&fa, fdprint);
    451      1.33  jmcneill 		}
    452       1.1   thorpej 	}
    453      1.48   mycroft 	fdc->sc_state = DEVIDLE;
    454       1.1   thorpej }
    455       1.1   thorpej 
    456       1.1   thorpej int
    457      1.82      cube fdprobe(device_t parent, cfdata_t match, void *aux)
    458       1.1   thorpej {
    459      1.79    dyoung 	struct fdc_softc *fdc = device_private(parent);
    460      1.92    cegger 	cfdata_t cf = match;
    461       1.1   thorpej 	struct fdc_attach_args *fa = aux;
    462       1.1   thorpej 	int drive = fa->fa_drive;
    463       1.1   thorpej 	bus_space_tag_t iot = fdc->sc_iot;
    464       1.1   thorpej 	bus_space_handle_t ioh = fdc->sc_ioh;
    465       1.1   thorpej 	int n;
    466       1.1   thorpej 
    467       1.1   thorpej 	if (cf->cf_loc[FDCCF_DRIVE] != FDCCF_DRIVE_DEFAULT &&
    468       1.1   thorpej 	    cf->cf_loc[FDCCF_DRIVE] != drive)
    469       1.1   thorpej 		return 0;
    470       1.1   thorpej 	/*
    471       1.1   thorpej 	 * XXX
    472       1.1   thorpej 	 * This is to work around some odd interactions between this driver
    473       1.1   thorpej 	 * and SMC Ethernet cards.
    474       1.1   thorpej 	 */
    475       1.1   thorpej 	if (cf->cf_loc[FDCCF_DRIVE] == FDCCF_DRIVE_DEFAULT && drive >= 2)
    476       1.1   thorpej 		return 0;
    477      1.33  jmcneill 
    478      1.33  jmcneill 	/* Use PNP information if available */
    479      1.33  jmcneill 	if (fdc->sc_known)
    480      1.33  jmcneill 		return 1;
    481       1.1   thorpej 
    482      1.81    dyoung 	mutex_enter(&fdc->sc_mtx);
    483      1.48   mycroft 	/* toss any interrupt status */
    484      1.48   mycroft 	for (n = 0; n < 4; n++) {
    485      1.48   mycroft 		out_fdc(iot, ioh, NE7CMD_SENSEI);
    486      1.48   mycroft 		(void) fdcresult(fdc);
    487      1.48   mycroft 	}
    488       1.1   thorpej 	/* select drive and turn on motor */
    489       1.1   thorpej 	bus_space_write_1(iot, ioh, fdout, drive | FDO_FRST | FDO_MOEN(drive));
    490       1.1   thorpej 	/* wait for motor to spin up */
    491      1.81    dyoung 	/* XXX check sc_probe */
    492      1.81    dyoung 	(void) cv_timedwait(&fdc->sc_cv, &fdc->sc_mtx, hz / 4);
    493       1.1   thorpej 	out_fdc(iot, ioh, NE7CMD_RECAL);
    494       1.1   thorpej 	out_fdc(iot, ioh, drive);
    495      1.47   mycroft 	/* wait for recalibrate, up to 2s */
    496      1.81    dyoung 	/* XXX check sc_probe */
    497      1.81    dyoung 	if (cv_timedwait(&fdc->sc_cv, &fdc->sc_mtx, 2 * hz) != EWOULDBLOCK){
    498      1.52   thorpej #ifdef FD_DEBUG
    499      1.52   thorpej 		/* XXX */
    500      1.52   thorpej 		printf("fdprobe: got intr\n");
    501      1.52   thorpej #endif
    502      1.52   thorpej 	}
    503       1.1   thorpej 	out_fdc(iot, ioh, NE7CMD_SENSEI);
    504       1.1   thorpej 	n = fdcresult(fdc);
    505       1.1   thorpej #ifdef FD_DEBUG
    506       1.1   thorpej 	{
    507       1.1   thorpej 		int i;
    508       1.1   thorpej 		printf("fdprobe: status");
    509       1.1   thorpej 		for (i = 0; i < n; i++)
    510       1.1   thorpej 			printf(" %x", fdc->sc_status[i]);
    511       1.1   thorpej 		printf("\n");
    512       1.1   thorpej 	}
    513       1.1   thorpej #endif
    514       1.1   thorpej 	/* turn off motor */
    515       1.1   thorpej 	bus_space_write_1(iot, ioh, fdout, FDO_FRST);
    516      1.81    dyoung 	mutex_exit(&fdc->sc_mtx);
    517       1.1   thorpej 
    518      1.51    keihan #if defined(bebox)	/* XXX What is this about? --thorpej (at) NetBSD.org */
    519       1.1   thorpej 	if (n != 2 || (fdc->sc_status[1] != 0))
    520       1.1   thorpej 		return 0;
    521       1.1   thorpej #else
    522       1.1   thorpej 	if (n != 2 || (fdc->sc_status[0] & 0xf8) != 0x20)
    523       1.1   thorpej 		return 0;
    524       1.1   thorpej #endif /* bebox */
    525       1.1   thorpej 
    526       1.1   thorpej 	return 1;
    527       1.1   thorpej }
    528       1.1   thorpej 
    529       1.1   thorpej /*
    530       1.1   thorpej  * Controller is working, and drive responded.  Attach it.
    531       1.1   thorpej  */
    532       1.1   thorpej void
    533      1.79    dyoung fdattach(device_t parent, device_t self, void *aux)
    534       1.1   thorpej {
    535      1.79    dyoung 	struct fdc_softc *fdc = device_private(parent);
    536      1.79    dyoung 	struct fd_softc *fd = device_private(self);
    537       1.1   thorpej 	struct fdc_attach_args *fa = aux;
    538      1.13  jdolecek 	const struct fd_type *type = fa->fa_deftype;
    539       1.1   thorpej 	int drive = fa->fa_drive;
    540       1.1   thorpej 
    541      1.82      cube 	fd->sc_dev = self;
    542      1.82      cube 
    543      1.74        ad 	callout_init(&fd->sc_motoron_ch, 0);
    544      1.74        ad 	callout_init(&fd->sc_motoroff_ch, 0);
    545       1.1   thorpej 
    546       1.1   thorpej 	/* XXX Allow `flags' to override device type? */
    547       1.1   thorpej 
    548       1.1   thorpej 	if (type)
    549      1.82      cube 		aprint_normal(": %s, %d cyl, %d head, %d sec\n", type->name,
    550       1.1   thorpej 		    type->cyls, type->heads, type->sectrac);
    551       1.1   thorpej 	else
    552      1.82      cube 		aprint_normal(": density unknown\n");
    553       1.1   thorpej 
    554      1.60      yamt 	bufq_alloc(&fd->sc_q, "disksort", BUFQ_SORT_CYLINDER);
    555       1.1   thorpej 	fd->sc_cylin = -1;
    556       1.1   thorpej 	fd->sc_drive = drive;
    557       1.1   thorpej 	fd->sc_deftype = type;
    558       1.1   thorpej 	fdc->sc_fd[drive] = fd;
    559       1.1   thorpej 
    560       1.1   thorpej 	/*
    561       1.1   thorpej 	 * Initialize and attach the disk structure.
    562       1.1   thorpej 	 */
    563      1.82      cube 	disk_init(&fd->sc_dk, device_xname(fd->sc_dev), &fddkdriver);
    564       1.1   thorpej 	disk_attach(&fd->sc_dk);
    565       1.1   thorpej 
    566       1.1   thorpej 	/*
    567       1.1   thorpej 	 * Establish a mountroot hook.
    568       1.1   thorpej 	 */
    569      1.81    dyoung 	fd->sc_roothook =
    570      1.82      cube 	    mountroothook_establish(fd_mountroot_hook, fd->sc_dev);
    571       1.1   thorpej 
    572      1.82      cube 	rnd_attach_source(&fd->rnd_source, device_xname(fd->sc_dev),
    573       1.1   thorpej 			  RND_TYPE_DISK, 0);
    574      1.73   jnemeth 
    575      1.73   jnemeth 	fd_set_properties(fd);
    576      1.81    dyoung 
    577      1.81    dyoung 	if (!pmf_device_register(self, NULL, NULL))
    578      1.81    dyoung 		aprint_error_dev(self, "cannot set power mgmt handler\n");
    579      1.81    dyoung }
    580      1.81    dyoung 
    581      1.81    dyoung static int
    582      1.81    dyoung fddetach(device_t self, int flags)
    583      1.81    dyoung {
    584      1.81    dyoung 	struct fd_softc *fd = device_private(self);
    585      1.81    dyoung 	int bmaj, cmaj, i, mn;
    586      1.81    dyoung 
    587      1.81    dyoung 	fd_motor_off(fd);
    588      1.81    dyoung 
    589      1.81    dyoung 	/* locate the major number */
    590      1.81    dyoung 	bmaj = bdevsw_lookup_major(&fd_bdevsw);
    591      1.81    dyoung 	cmaj = cdevsw_lookup_major(&fd_cdevsw);
    592      1.81    dyoung 
    593      1.81    dyoung 	/* Nuke the vnodes for any open instances. */
    594      1.81    dyoung 	for (i = 0; i < MAXPARTITIONS; i++) {
    595      1.81    dyoung 		mn = DISKMINOR(device_unit(self), i);
    596      1.81    dyoung 		vdevgone(bmaj, mn, mn, VBLK);
    597      1.81    dyoung 		vdevgone(cmaj, mn, mn, VCHR);
    598      1.81    dyoung 	}
    599      1.81    dyoung 
    600      1.81    dyoung 	pmf_device_deregister(self);
    601      1.81    dyoung 
    602      1.81    dyoung #if 0 /* XXX need to undo at detach? */
    603      1.81    dyoung 	fd_set_properties(fd);
    604      1.81    dyoung #endif
    605  1.99.8.1      yamt 
    606      1.81    dyoung 	rnd_detach_source(&fd->rnd_source);
    607      1.81    dyoung 
    608      1.81    dyoung 	disk_detach(&fd->sc_dk);
    609      1.87    plunky 	disk_destroy(&fd->sc_dk);
    610      1.81    dyoung 
    611      1.81    dyoung 	/* Kill off any queued buffers. */
    612      1.81    dyoung 	bufq_drain(fd->sc_q);
    613      1.81    dyoung 
    614      1.81    dyoung 	bufq_free(fd->sc_q);
    615      1.81    dyoung 
    616      1.81    dyoung 	callout_destroy(&fd->sc_motoroff_ch);
    617      1.81    dyoung 	callout_destroy(&fd->sc_motoron_ch);
    618      1.81    dyoung 
    619      1.81    dyoung 	return 0;
    620       1.1   thorpej }
    621       1.1   thorpej 
    622      1.86        ad #if defined(i386) || defined(x86_64)
    623       1.1   thorpej /*
    624       1.1   thorpej  * Translate nvram type into internal data structure.  Return NULL for
    625       1.1   thorpej  * none/unknown/unusable.
    626       1.1   thorpej  */
    627      1.13  jdolecek const struct fd_type *
    628      1.79    dyoung fd_nvtotype(const char *fdc, int nvraminfo, int drive)
    629       1.1   thorpej {
    630       1.1   thorpej 	int type;
    631       1.1   thorpej 
    632       1.1   thorpej 	type = (drive == 0 ? nvraminfo : nvraminfo << 4) & 0xf0;
    633       1.1   thorpej 	switch (type) {
    634       1.1   thorpej 	case NVRAM_DISKETTE_NONE:
    635       1.1   thorpej 		return NULL;
    636       1.1   thorpej 	case NVRAM_DISKETTE_12M:
    637       1.1   thorpej 		return &fd_types[1];
    638       1.1   thorpej 	case NVRAM_DISKETTE_TYPE5:
    639       1.1   thorpej 	case NVRAM_DISKETTE_TYPE6:
    640       1.1   thorpej 		/* XXX We really ought to handle 2.88MB format. */
    641       1.1   thorpej 	case NVRAM_DISKETTE_144M:
    642       1.5  jdolecek #if NMCA > 0
    643       1.5  jdolecek 		if (MCA_system)
    644       1.5  jdolecek 			return &mca_fd_types[0];
    645       1.5  jdolecek 		else
    646       1.5  jdolecek #endif /* NMCA > 0 */
    647       1.5  jdolecek 			return &fd_types[0];
    648       1.1   thorpej 	case NVRAM_DISKETTE_360K:
    649       1.1   thorpej 		return &fd_types[3];
    650       1.1   thorpej 	case NVRAM_DISKETTE_720K:
    651       1.5  jdolecek #if NMCA > 0
    652       1.5  jdolecek 		if (MCA_system)
    653       1.5  jdolecek 			return &mca_fd_types[1];
    654       1.5  jdolecek 		else
    655       1.5  jdolecek #endif /* NMCA > 0 */
    656       1.5  jdolecek 			return &fd_types[4];
    657       1.1   thorpej 	default:
    658       1.1   thorpej 		printf("%s: drive %d: unknown device type 0x%x\n",
    659       1.1   thorpej 		    fdc, drive, type);
    660       1.1   thorpej 		return NULL;
    661       1.1   thorpej 	}
    662       1.1   thorpej }
    663      1.86        ad #endif /* i386 || x86_64 */
    664       1.1   thorpej 
    665      1.80    dyoung static const struct fd_type *
    666      1.79    dyoung fd_dev_to_type(struct fd_softc *fd, dev_t dev)
    667       1.1   thorpej {
    668      1.26   thorpej 	u_int type = FDTYPE(dev);
    669       1.1   thorpej 
    670      1.79    dyoung 	if (type > __arraycount(fd_types))
    671       1.1   thorpej 		return NULL;
    672       1.1   thorpej 	return type ? &fd_types[type - 1] : fd->sc_deftype;
    673       1.1   thorpej }
    674       1.1   thorpej 
    675       1.1   thorpej void
    676      1.79    dyoung fdstrategy(struct buf *bp)
    677       1.1   thorpej {
    678      1.82      cube 	struct fd_softc *fd = device_lookup_private(&fd_cd, FDUNIT(bp->b_dev));
    679      1.82      cube 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    680       1.1   thorpej 	int sz;
    681       1.1   thorpej 
    682       1.1   thorpej 	/* Valid unit, controller, and request? */
    683       1.1   thorpej 	if (bp->b_blkno < 0 ||
    684       1.1   thorpej 	    ((bp->b_bcount % FDC_BSIZE) != 0 &&
    685       1.1   thorpej 	     (bp->b_flags & B_FORMAT) == 0)) {
    686       1.1   thorpej 		bp->b_error = EINVAL;
    687      1.75        ad 		goto done;
    688       1.1   thorpej 	}
    689       1.1   thorpej 
    690       1.1   thorpej 	/* If it's a null transfer, return immediately. */
    691       1.1   thorpej 	if (bp->b_bcount == 0)
    692       1.1   thorpej 		goto done;
    693       1.1   thorpej 
    694       1.1   thorpej 	sz = howmany(bp->b_bcount, FDC_BSIZE);
    695       1.1   thorpej 
    696       1.1   thorpej 	if (bp->b_blkno + sz > fd->sc_type->size) {
    697       1.1   thorpej 		sz = fd->sc_type->size - bp->b_blkno;
    698       1.1   thorpej 		if (sz == 0) {
    699       1.1   thorpej 			/* If exactly at end of disk, return EOF. */
    700       1.1   thorpej 			goto done;
    701       1.1   thorpej 		}
    702       1.1   thorpej 		if (sz < 0) {
    703       1.1   thorpej 			/* If past end of disk, return EINVAL. */
    704       1.1   thorpej 			bp->b_error = EINVAL;
    705      1.75        ad 			goto done;
    706       1.1   thorpej 		}
    707       1.1   thorpej 		/* Otherwise, truncate request. */
    708       1.1   thorpej 		bp->b_bcount = sz << DEV_BSHIFT;
    709       1.1   thorpej 	}
    710       1.1   thorpej 
    711       1.1   thorpej 	bp->b_rawblkno = bp->b_blkno;
    712      1.15   tsutsui  	bp->b_cylinder =
    713      1.15   tsutsui 	    bp->b_blkno / (FDC_BSIZE / DEV_BSIZE) / fd->sc_type->seccyl;
    714       1.1   thorpej 
    715       1.1   thorpej #ifdef FD_DEBUG
    716      1.59  christos 	printf("fdstrategy: b_blkno %llu b_bcount %d blkno %llu cylin %d "
    717      1.59  christos 	    "sz %d\n", (unsigned long long)bp->b_blkno, bp->b_bcount,
    718      1.59  christos 	    (unsigned long long)fd->sc_blkno, bp->b_cylinder, sz);
    719       1.1   thorpej #endif
    720       1.1   thorpej 
    721       1.1   thorpej 	/* Queue transfer on drive, activate drive and controller if idle. */
    722      1.81    dyoung 	mutex_enter(&fdc->sc_mtx);
    723      1.91      yamt 	bufq_put(fd->sc_q, bp);
    724       1.2   thorpej 	callout_stop(&fd->sc_motoroff_ch);		/* a good idea */
    725       1.1   thorpej 	if (fd->sc_active == 0)
    726       1.1   thorpej 		fdstart(fd);
    727       1.1   thorpej #ifdef DIAGNOSTIC
    728       1.1   thorpej 	else {
    729       1.1   thorpej 		if (fdc->sc_state == DEVIDLE) {
    730       1.1   thorpej 			printf("fdstrategy: controller inactive\n");
    731       1.1   thorpej 			fdcstart(fdc);
    732       1.1   thorpej 		}
    733       1.1   thorpej 	}
    734       1.1   thorpej #endif
    735      1.81    dyoung 	mutex_exit(&fdc->sc_mtx);
    736       1.1   thorpej 	return;
    737       1.1   thorpej 
    738       1.1   thorpej done:
    739       1.1   thorpej 	/* Toss transfer; we're done early. */
    740       1.1   thorpej 	bp->b_resid = bp->b_bcount;
    741       1.1   thorpej 	biodone(bp);
    742       1.1   thorpej }
    743       1.1   thorpej 
    744       1.1   thorpej void
    745      1.79    dyoung fdstart(struct fd_softc *fd)
    746       1.1   thorpej {
    747      1.82      cube 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    748      1.22  jdolecek 	int active = !TAILQ_EMPTY(&fdc->sc_drives);
    749       1.1   thorpej 
    750      1.81    dyoung 	KASSERT(mutex_owned(&fdc->sc_mtx));
    751       1.1   thorpej 	/* Link into controller queue. */
    752       1.1   thorpej 	fd->sc_active = 1;
    753       1.1   thorpej 	TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
    754       1.1   thorpej 
    755       1.1   thorpej 	/* If controller not already active, start it. */
    756       1.1   thorpej 	if (!active)
    757       1.1   thorpej 		fdcstart(fdc);
    758       1.1   thorpej }
    759       1.1   thorpej 
    760       1.1   thorpej void
    761      1.79    dyoung fdfinish(struct fd_softc *fd, struct buf *bp)
    762       1.1   thorpej {
    763      1.82      cube 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    764       1.1   thorpej 
    765       1.1   thorpej 	/*
    766       1.1   thorpej 	 * Move this drive to the end of the queue to give others a `fair'
    767       1.1   thorpej 	 * chance.  We only force a switch if N operations are completed while
    768       1.1   thorpej 	 * another drive is waiting to be serviced, since there is a long motor
    769       1.1   thorpej 	 * startup delay whenever we switch.
    770       1.1   thorpej 	 */
    771      1.91      yamt 	(void)bufq_get(fd->sc_q);
    772      1.22  jdolecek 	if (TAILQ_NEXT(fd, sc_drivechain) && ++fd->sc_ops >= 8) {
    773       1.1   thorpej 		fd->sc_ops = 0;
    774       1.1   thorpej 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
    775      1.91      yamt 		if (bufq_peek(fd->sc_q) != NULL)
    776       1.1   thorpej 			TAILQ_INSERT_TAIL(&fdc->sc_drives, fd, sc_drivechain);
    777       1.1   thorpej 		else
    778       1.1   thorpej 			fd->sc_active = 0;
    779       1.1   thorpej 	}
    780       1.1   thorpej 	bp->b_resid = fd->sc_bcount;
    781       1.1   thorpej 	fd->sc_skip = 0;
    782       1.1   thorpej 
    783       1.1   thorpej 	rnd_add_uint32(&fd->rnd_source, bp->b_blkno);
    784       1.1   thorpej 
    785       1.1   thorpej 	biodone(bp);
    786       1.1   thorpej 	/* turn off motor 5s from now */
    787       1.2   thorpej 	callout_reset(&fd->sc_motoroff_ch, 5 * hz, fd_motor_off, fd);
    788       1.1   thorpej 	fdc->sc_state = DEVIDLE;
    789       1.1   thorpej }
    790       1.1   thorpej 
    791       1.1   thorpej int
    792      1.70  christos fdread(dev_t dev, struct uio *uio, int flags)
    793       1.1   thorpej {
    794       1.1   thorpej 
    795       1.1   thorpej 	return (physio(fdstrategy, NULL, dev, B_READ, minphys, uio));
    796       1.1   thorpej }
    797       1.1   thorpej 
    798       1.1   thorpej int
    799      1.70  christos fdwrite(dev_t dev, struct uio *uio, int flags)
    800       1.1   thorpej {
    801       1.1   thorpej 
    802       1.1   thorpej 	return (physio(fdstrategy, NULL, dev, B_WRITE, minphys, uio));
    803       1.1   thorpej }
    804       1.1   thorpej 
    805       1.1   thorpej void
    806      1.79    dyoung fd_set_motor(struct fdc_softc *fdc, int reset)
    807       1.1   thorpej {
    808       1.1   thorpej 	struct fd_softc *fd;
    809       1.1   thorpej 	u_char status;
    810       1.1   thorpej 	int n;
    811       1.1   thorpej 
    812      1.22  jdolecek 	if ((fd = TAILQ_FIRST(&fdc->sc_drives)) != NULL)
    813       1.1   thorpej 		status = fd->sc_drive;
    814       1.1   thorpej 	else
    815       1.1   thorpej 		status = 0;
    816       1.1   thorpej 	if (!reset)
    817       1.1   thorpej 		status |= FDO_FRST | FDO_FDMAEN;
    818       1.1   thorpej 	for (n = 0; n < 4; n++)
    819       1.1   thorpej 		if ((fd = fdc->sc_fd[n]) && (fd->sc_flags & FD_MOTOR))
    820       1.1   thorpej 			status |= FDO_MOEN(n);
    821       1.1   thorpej 	bus_space_write_1(fdc->sc_iot, fdc->sc_ioh, fdout, status);
    822       1.1   thorpej }
    823       1.1   thorpej 
    824       1.1   thorpej void
    825      1.79    dyoung fd_motor_off(void *arg)
    826       1.1   thorpej {
    827       1.1   thorpej 	struct fd_softc *fd = arg;
    828      1.79    dyoung 	struct fdc_softc *fdc;
    829       1.1   thorpej 
    830      1.82      cube 	fdc = device_private(device_parent(fd->sc_dev));
    831      1.79    dyoung 
    832      1.81    dyoung 	mutex_enter(&fdc->sc_mtx);
    833       1.1   thorpej 	fd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
    834      1.79    dyoung 	fd_set_motor(fdc, 0);
    835      1.81    dyoung 	mutex_exit(&fdc->sc_mtx);
    836       1.1   thorpej }
    837       1.1   thorpej 
    838       1.1   thorpej void
    839      1.79    dyoung fd_motor_on(void *arg)
    840       1.1   thorpej {
    841       1.1   thorpej 	struct fd_softc *fd = arg;
    842      1.82      cube 	struct fdc_softc *fdc = device_private(device_parent(fd->sc_dev));
    843       1.1   thorpej 
    844      1.81    dyoung 	mutex_enter(&fdc->sc_mtx);
    845       1.1   thorpej 	fd->sc_flags &= ~FD_MOTOR_WAIT;
    846      1.79    dyoung 	if (TAILQ_FIRST(&fdc->sc_drives) == fd && fdc->sc_state == MOTORWAIT)
    847      1.81    dyoung 		(void)fdcintr1(fdc);
    848      1.81    dyoung 	mutex_exit(&fdc->sc_mtx);
    849       1.1   thorpej }
    850       1.1   thorpej 
    851       1.1   thorpej int
    852      1.79    dyoung fdcresult(struct fdc_softc *fdc)
    853       1.1   thorpej {
    854       1.1   thorpej 	bus_space_tag_t iot = fdc->sc_iot;
    855       1.1   thorpej 	bus_space_handle_t ioh = fdc->sc_ioh;
    856       1.1   thorpej 	u_char i;
    857      1.26   thorpej 	u_int j = 100000,
    858      1.26   thorpej 	      n = 0;
    859       1.1   thorpej 
    860       1.1   thorpej 	for (; j; j--) {
    861       1.1   thorpej 		i = bus_space_read_1(iot, ioh, fdsts) &
    862       1.1   thorpej 		    (NE7_DIO | NE7_RQM | NE7_CB);
    863       1.1   thorpej 		if (i == NE7_RQM)
    864       1.1   thorpej 			return n;
    865       1.1   thorpej 		if (i == (NE7_DIO | NE7_RQM | NE7_CB)) {
    866       1.1   thorpej 			if (n >= sizeof(fdc->sc_status)) {
    867       1.1   thorpej 				log(LOG_ERR, "fdcresult: overrun\n");
    868       1.1   thorpej 				return -1;
    869       1.1   thorpej 			}
    870       1.1   thorpej 			fdc->sc_status[n++] =
    871       1.1   thorpej 			    bus_space_read_1(iot, ioh, fddata);
    872       1.1   thorpej 		}
    873       1.1   thorpej 		delay(10);
    874       1.1   thorpej 	}
    875       1.1   thorpej 	log(LOG_ERR, "fdcresult: timeout\n");
    876       1.1   thorpej 	return -1;
    877       1.1   thorpej }
    878       1.1   thorpej 
    879       1.1   thorpej int
    880      1.79    dyoung out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x)
    881       1.1   thorpej {
    882      1.47   mycroft 	u_char i;
    883      1.47   mycroft 	u_int j = 100000;
    884       1.1   thorpej 
    885      1.47   mycroft 	for (; j; j--) {
    886      1.47   mycroft 		i = bus_space_read_1(iot, ioh, fdsts) &
    887      1.47   mycroft 		    (NE7_DIO | NE7_RQM);
    888      1.47   mycroft 		if (i == NE7_RQM) {
    889      1.47   mycroft 			bus_space_write_1(iot, ioh, fddata, x);
    890      1.47   mycroft 			return 0;
    891      1.47   mycroft 		}
    892      1.47   mycroft 		delay(10);
    893      1.47   mycroft 	}
    894      1.47   mycroft 	return -1;
    895       1.1   thorpej }
    896       1.1   thorpej 
    897       1.1   thorpej int
    898      1.70  christos fdopen(dev_t dev, int flags, int mode, struct lwp *l)
    899       1.1   thorpej {
    900       1.1   thorpej 	struct fd_softc *fd;
    901      1.13  jdolecek 	const struct fd_type *type;
    902       1.1   thorpej 
    903      1.82      cube 	fd = device_lookup_private(&fd_cd, FDUNIT(dev));
    904       1.7   thorpej 	if (fd == NULL)
    905       1.7   thorpej 		return (ENXIO);
    906       1.7   thorpej 
    907       1.1   thorpej 	type = fd_dev_to_type(fd, dev);
    908       1.1   thorpej 	if (type == NULL)
    909       1.1   thorpej 		return ENXIO;
    910       1.1   thorpej 
    911       1.1   thorpej 	if ((fd->sc_flags & FD_OPEN) != 0 &&
    912       1.1   thorpej 	    memcmp(fd->sc_type, type, sizeof(*type)))
    913       1.1   thorpej 		return EBUSY;
    914       1.1   thorpej 
    915       1.1   thorpej 	fd->sc_type_copy = *type;
    916       1.1   thorpej 	fd->sc_type = &fd->sc_type_copy;
    917       1.1   thorpej 	fd->sc_cylin = -1;
    918       1.1   thorpej 	fd->sc_flags |= FD_OPEN;
    919       1.1   thorpej 
    920      1.73   jnemeth 	fd_set_properties(fd);
    921      1.73   jnemeth 
    922       1.1   thorpej 	return 0;
    923       1.1   thorpej }
    924       1.1   thorpej 
    925       1.1   thorpej int
    926      1.70  christos fdclose(dev_t dev, int flags, int mode, struct lwp *l)
    927       1.1   thorpej {
    928      1.82      cube 	struct fd_softc *fd =
    929      1.82      cube 	    device_lookup_private(&fd_cd, FDUNIT(dev));
    930       1.1   thorpej 
    931       1.1   thorpej 	fd->sc_flags &= ~FD_OPEN;
    932       1.1   thorpej 	fd->sc_opts &= ~(FDOPT_NORETRY|FDOPT_SILENT);
    933       1.1   thorpej 	return 0;
    934       1.1   thorpej }
    935       1.1   thorpej 
    936       1.1   thorpej void
    937      1.79    dyoung fdcstart(struct fdc_softc *fdc)
    938       1.1   thorpej {
    939       1.1   thorpej 
    940      1.81    dyoung 	KASSERT(mutex_owned(&fdc->sc_mtx));
    941      1.81    dyoung 
    942      1.82      cube 	if (!device_is_active(fdc->sc_dev))
    943      1.81    dyoung 		return;
    944      1.81    dyoung 
    945       1.1   thorpej #ifdef DIAGNOSTIC
    946       1.1   thorpej 	/* only got here if controller's drive queue was inactive; should
    947       1.1   thorpej 	   be in idle state */
    948       1.1   thorpej 	if (fdc->sc_state != DEVIDLE) {
    949       1.1   thorpej 		printf("fdcstart: not idle\n");
    950       1.1   thorpej 		return;
    951       1.1   thorpej 	}
    952       1.1   thorpej #endif
    953      1.81    dyoung 	(void)fdcintr1(fdc);
    954       1.1   thorpej }
    955       1.1   thorpej 
    956      1.88  christos static void
    957      1.88  christos fdcpstatus(int n, struct fdc_softc *fdc)
    958       1.1   thorpej {
    959       1.1   thorpej 	char bits[64];
    960       1.1   thorpej 
    961       1.1   thorpej 	switch (n) {
    962       1.1   thorpej 	case 0:
    963       1.1   thorpej 		printf("\n");
    964       1.1   thorpej 		break;
    965       1.1   thorpej 	case 2:
    966      1.88  christos 		snprintb(bits, sizeof(bits), NE7_ST0BITS, fdc->sc_status[0]);
    967      1.88  christos 		printf(" (st0 %s cyl %d)\n", bits, fdc->sc_status[1]);
    968       1.1   thorpej 		break;
    969       1.1   thorpej 	case 7:
    970      1.88  christos 		snprintb(bits, sizeof(bits), NE7_ST0BITS, fdc->sc_status[0]);
    971      1.88  christos 		printf(" (st0 %s", bits);
    972      1.88  christos 		snprintb(bits, sizeof(bits), NE7_ST1BITS, fdc->sc_status[1]);
    973      1.88  christos 		printf(" st1 %s", bits);
    974      1.88  christos 		snprintb(bits, sizeof(bits), NE7_ST2BITS, fdc->sc_status[2]);
    975      1.88  christos 		printf(" st2 %s", bits);
    976       1.1   thorpej 		printf(" cyl %d head %d sec %d)\n",
    977       1.1   thorpej 		    fdc->sc_status[3], fdc->sc_status[4], fdc->sc_status[5]);
    978       1.1   thorpej 		break;
    979       1.1   thorpej #ifdef DIAGNOSTIC
    980       1.1   thorpej 	default:
    981       1.1   thorpej 		printf("\nfdcstatus: weird size");
    982       1.1   thorpej 		break;
    983       1.1   thorpej #endif
    984       1.1   thorpej 	}
    985       1.1   thorpej }
    986       1.1   thorpej 
    987       1.1   thorpej void
    988      1.88  christos fdcstatus(device_t dv, int n, const char *s)
    989      1.88  christos {
    990      1.88  christos 	struct fdc_softc *fdc = device_private(device_parent(dv));
    991      1.88  christos 
    992      1.88  christos 	if (n == 0) {
    993      1.88  christos 		out_fdc(fdc->sc_iot, fdc->sc_ioh, NE7CMD_SENSEI);
    994      1.88  christos 		(void) fdcresult(fdc);
    995      1.88  christos 		n = 2;
    996      1.88  christos 	}
    997      1.88  christos 	fdcpstatus(n, fdc);
    998      1.88  christos 
    999      1.88  christos 	aprint_normal_dev(dv, "%s", s);
   1000      1.88  christos 
   1001      1.88  christos }
   1002      1.88  christos 
   1003      1.88  christos void
   1004      1.79    dyoung fdctimeout(void *arg)
   1005       1.1   thorpej {
   1006       1.1   thorpej 	struct fdc_softc *fdc = arg;
   1007      1.22  jdolecek 	struct fd_softc *fd = TAILQ_FIRST(&fdc->sc_drives);
   1008       1.1   thorpej 
   1009      1.81    dyoung 	mutex_enter(&fdc->sc_mtx);
   1010       1.1   thorpej #ifdef DEBUG
   1011      1.15   tsutsui 	log(LOG_ERR, "fdctimeout: state %d\n", fdc->sc_state);
   1012       1.1   thorpej #endif
   1013      1.82      cube 	fdcstatus(fd->sc_dev, 0, "timeout");
   1014       1.1   thorpej 
   1015      1.91      yamt 	if (bufq_peek(fd->sc_q) != NULL)
   1016       1.1   thorpej 		fdc->sc_state++;
   1017       1.1   thorpej 	else
   1018       1.1   thorpej 		fdc->sc_state = DEVIDLE;
   1019       1.1   thorpej 
   1020      1.81    dyoung 	(void)fdcintr1(fdc);
   1021      1.81    dyoung 	mutex_exit(&fdc->sc_mtx);
   1022       1.1   thorpej }
   1023       1.1   thorpej 
   1024      1.81    dyoung static int
   1025      1.81    dyoung fdcintr1(struct fdc_softc *fdc)
   1026       1.1   thorpej {
   1027       1.1   thorpej #define	st0	fdc->sc_status[0]
   1028       1.1   thorpej #define	cyl	fdc->sc_status[1]
   1029       1.1   thorpej 	struct fd_softc *fd;
   1030       1.1   thorpej 	struct buf *bp;
   1031       1.1   thorpej 	bus_space_tag_t iot = fdc->sc_iot;
   1032       1.1   thorpej 	bus_space_handle_t ioh = fdc->sc_ioh;
   1033       1.1   thorpej 	int read, head, sec, i, nblks;
   1034       1.1   thorpej 	struct fd_type *type;
   1035       1.1   thorpej 	struct ne7_fd_formb *finfo = NULL;
   1036      1.48   mycroft 
   1037      1.81    dyoung 	KASSERT(mutex_owned(&fdc->sc_mtx));
   1038      1.48   mycroft 	if (fdc->sc_state == PROBING) {
   1039      1.52   thorpej #ifdef DEBUG
   1040      1.52   thorpej 		printf("fdcintr: got probe interrupt\n");
   1041      1.52   thorpej #endif
   1042      1.81    dyoung 		fdc->sc_probe++;
   1043      1.81    dyoung 		goto out;
   1044      1.48   mycroft 	}
   1045       1.1   thorpej 
   1046       1.1   thorpej loop:
   1047       1.1   thorpej 	/* Is there a drive for the controller to do a transfer with? */
   1048      1.22  jdolecek 	fd = TAILQ_FIRST(&fdc->sc_drives);
   1049       1.1   thorpej 	if (fd == NULL) {
   1050       1.1   thorpej 		fdc->sc_state = DEVIDLE;
   1051      1.81    dyoung  		goto out;
   1052       1.1   thorpej 	}
   1053       1.1   thorpej 
   1054       1.1   thorpej 	/* Is there a transfer to this drive?  If not, deactivate drive. */
   1055      1.91      yamt 	bp = bufq_peek(fd->sc_q);
   1056       1.1   thorpej 	if (bp == NULL) {
   1057       1.1   thorpej 		fd->sc_ops = 0;
   1058       1.1   thorpej 		TAILQ_REMOVE(&fdc->sc_drives, fd, sc_drivechain);
   1059       1.1   thorpej 		fd->sc_active = 0;
   1060       1.1   thorpej 		goto loop;
   1061       1.1   thorpej 	}
   1062       1.1   thorpej 
   1063       1.1   thorpej 	if (bp->b_flags & B_FORMAT)
   1064       1.1   thorpej 		finfo = (struct ne7_fd_formb *)bp->b_data;
   1065       1.1   thorpej 
   1066       1.1   thorpej 	switch (fdc->sc_state) {
   1067       1.1   thorpej 	case DEVIDLE:
   1068       1.1   thorpej 		fdc->sc_errors = 0;
   1069       1.1   thorpej 		fd->sc_skip = 0;
   1070       1.1   thorpej 		fd->sc_bcount = bp->b_bcount;
   1071       1.1   thorpej 		fd->sc_blkno = bp->b_blkno / (FDC_BSIZE / DEV_BSIZE);
   1072       1.2   thorpej 		callout_stop(&fd->sc_motoroff_ch);
   1073       1.1   thorpej 		if ((fd->sc_flags & FD_MOTOR_WAIT) != 0) {
   1074       1.1   thorpej 			fdc->sc_state = MOTORWAIT;
   1075       1.1   thorpej 			return 1;
   1076       1.1   thorpej 		}
   1077       1.1   thorpej 		if ((fd->sc_flags & FD_MOTOR) == 0) {
   1078       1.1   thorpej 			/* Turn on the motor, being careful about pairing. */
   1079       1.1   thorpej 			struct fd_softc *ofd = fdc->sc_fd[fd->sc_drive ^ 1];
   1080       1.1   thorpej 			if (ofd && ofd->sc_flags & FD_MOTOR) {
   1081       1.2   thorpej 				callout_stop(&ofd->sc_motoroff_ch);
   1082       1.1   thorpej 				ofd->sc_flags &= ~(FD_MOTOR | FD_MOTOR_WAIT);
   1083       1.1   thorpej 			}
   1084       1.1   thorpej 			fd->sc_flags |= FD_MOTOR | FD_MOTOR_WAIT;
   1085       1.1   thorpej 			fd_set_motor(fdc, 0);
   1086       1.1   thorpej 			fdc->sc_state = MOTORWAIT;
   1087       1.1   thorpej 			/* Allow .25s for motor to stabilize. */
   1088       1.2   thorpej 			callout_reset(&fd->sc_motoron_ch, hz / 4,
   1089       1.1   thorpej 			    fd_motor_on, fd);
   1090       1.1   thorpej 			return 1;
   1091       1.1   thorpej 		}
   1092       1.1   thorpej 		/* Make sure the right drive is selected. */
   1093       1.1   thorpej 		fd_set_motor(fdc, 0);
   1094       1.1   thorpej 
   1095       1.1   thorpej 		/* fall through */
   1096       1.1   thorpej 	case DOSEEK:
   1097       1.1   thorpej 	doseek:
   1098       1.1   thorpej 		if (fd->sc_cylin == bp->b_cylinder)
   1099       1.1   thorpej 			goto doio;
   1100       1.1   thorpej 
   1101       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SPECIFY);/* specify command */
   1102       1.1   thorpej 		out_fdc(iot, ioh, fd->sc_type->steprate);
   1103       1.1   thorpej 		out_fdc(iot, ioh, 6);		/* XXX head load time == 6ms */
   1104       1.1   thorpej 
   1105       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SEEK);	/* seek function */
   1106      1.15   tsutsui 		out_fdc(iot, ioh, fd->sc_drive); /* drive number */
   1107       1.1   thorpej 		out_fdc(iot, ioh, bp->b_cylinder * fd->sc_type->step);
   1108       1.1   thorpej 
   1109       1.1   thorpej 		fd->sc_cylin = -1;
   1110       1.1   thorpej 		fdc->sc_state = SEEKWAIT;
   1111       1.1   thorpej 
   1112      1.67     blymn 		iostat_seek(fd->sc_dk.dk_stats);
   1113       1.1   thorpej 		disk_busy(&fd->sc_dk);
   1114       1.1   thorpej 
   1115       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, 4 * hz, fdctimeout, fdc);
   1116       1.1   thorpej 		return 1;
   1117       1.1   thorpej 
   1118       1.1   thorpej 	case DOIO:
   1119       1.1   thorpej 	doio:
   1120       1.1   thorpej 		type = fd->sc_type;
   1121       1.1   thorpej 		if (finfo)
   1122       1.1   thorpej 			fd->sc_skip = (char *)&(finfo->fd_formb_cylno(0)) -
   1123       1.1   thorpej 				      (char *)finfo;
   1124       1.1   thorpej 		sec = fd->sc_blkno % type->seccyl;
   1125       1.1   thorpej 		nblks = type->seccyl - sec;
   1126       1.1   thorpej 		nblks = min(nblks, fd->sc_bcount / FDC_BSIZE);
   1127       1.1   thorpej 		nblks = min(nblks, fdc->sc_maxiosize / FDC_BSIZE);
   1128       1.1   thorpej 		fd->sc_nblks = nblks;
   1129       1.1   thorpej 		fd->sc_nbytes = finfo ? bp->b_bcount : nblks * FDC_BSIZE;
   1130       1.1   thorpej 		head = sec / type->sectrac;
   1131       1.1   thorpej 		sec -= head * type->sectrac;
   1132       1.1   thorpej #ifdef DIAGNOSTIC
   1133      1.15   tsutsui 		{
   1134      1.15   tsutsui 			int block;
   1135      1.15   tsutsui 			block = (fd->sc_cylin * type->heads + head)
   1136      1.15   tsutsui 			    * type->sectrac + sec;
   1137      1.15   tsutsui 			if (block != fd->sc_blkno) {
   1138      1.35      tron 				printf("fdcintr: block %d != blkno "
   1139      1.35      tron 				    "%" PRId64 "\n", block, fd->sc_blkno);
   1140       1.1   thorpej #ifdef DDB
   1141      1.15   tsutsui 				 Debugger();
   1142       1.1   thorpej #endif
   1143      1.15   tsutsui 			}
   1144      1.15   tsutsui 		}
   1145       1.1   thorpej #endif
   1146       1.1   thorpej 		read = bp->b_flags & B_READ ? DMAMODE_READ : DMAMODE_WRITE;
   1147       1.1   thorpej 		isa_dmastart(fdc->sc_ic, fdc->sc_drq,
   1148      1.72  christos 		    (char *)bp->b_data + fd->sc_skip, fd->sc_nbytes,
   1149       1.1   thorpej 		    NULL, read | DMAMODE_DEMAND, BUS_DMA_NOWAIT);
   1150       1.1   thorpej 		bus_space_write_1(iot, fdc->sc_fdctlioh, 0, type->rate);
   1151       1.1   thorpej #ifdef FD_DEBUG
   1152       1.1   thorpej 		printf("fdcintr: %s drive %d track %d head %d sec %d nblks %d\n",
   1153       1.1   thorpej 			read ? "read" : "write", fd->sc_drive, fd->sc_cylin,
   1154       1.1   thorpej 			head, sec, nblks);
   1155       1.1   thorpej #endif
   1156       1.1   thorpej 		if (finfo) {
   1157       1.1   thorpej 			/* formatting */
   1158       1.1   thorpej 			if (out_fdc(iot, ioh, NE7CMD_FORMAT) < 0) {
   1159       1.1   thorpej 				fdc->sc_errors = 4;
   1160       1.1   thorpej 				fdcretry(fdc);
   1161       1.1   thorpej 				goto loop;
   1162       1.1   thorpej 			}
   1163       1.1   thorpej 			out_fdc(iot, ioh, (head << 2) | fd->sc_drive);
   1164       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_secshift);
   1165       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_nsecs);
   1166       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_gaplen);
   1167       1.1   thorpej 			out_fdc(iot, ioh, finfo->fd_formb_fillbyte);
   1168       1.1   thorpej 		} else {
   1169       1.1   thorpej 			if (read)
   1170       1.1   thorpej 				out_fdc(iot, ioh, NE7CMD_READ);	/* READ */
   1171       1.1   thorpej 			else
   1172       1.1   thorpej 				out_fdc(iot, ioh, NE7CMD_WRITE); /* WRITE */
   1173       1.1   thorpej 			out_fdc(iot, ioh, (head << 2) | fd->sc_drive);
   1174       1.1   thorpej 			out_fdc(iot, ioh, fd->sc_cylin); /* track */
   1175       1.1   thorpej 			out_fdc(iot, ioh, head);
   1176       1.1   thorpej 			out_fdc(iot, ioh, sec + 1);	 /* sector +1 */
   1177       1.1   thorpej 			out_fdc(iot, ioh, type->secsize);/* sector size */
   1178       1.1   thorpej 			out_fdc(iot, ioh, type->sectrac);/* sectors/track */
   1179       1.1   thorpej 			out_fdc(iot, ioh, type->gap1);	 /* gap1 size */
   1180       1.1   thorpej 			out_fdc(iot, ioh, type->datalen);/* data length */
   1181       1.1   thorpej 		}
   1182       1.1   thorpej 		fdc->sc_state = IOCOMPLETE;
   1183       1.1   thorpej 
   1184       1.1   thorpej 		disk_busy(&fd->sc_dk);
   1185       1.1   thorpej 
   1186       1.1   thorpej 		/* allow 2 seconds for operation */
   1187       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, 2 * hz, fdctimeout, fdc);
   1188       1.1   thorpej 		return 1;				/* will return later */
   1189       1.1   thorpej 
   1190       1.1   thorpej 	case SEEKWAIT:
   1191       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1192       1.1   thorpej 		fdc->sc_state = SEEKCOMPLETE;
   1193       1.1   thorpej 		/* allow 1/50 second for heads to settle */
   1194      1.81    dyoung 		callout_reset(&fdc->sc_intr_ch, hz / 50, fdcintrcb, fdc);
   1195       1.1   thorpej 		return 1;
   1196       1.1   thorpej 
   1197       1.1   thorpej 	case SEEKCOMPLETE:
   1198      1.31       mrg 		/* no data on seek */
   1199      1.31       mrg 		disk_unbusy(&fd->sc_dk, 0, 0);
   1200       1.1   thorpej 
   1201       1.1   thorpej 		/* Make sure seek really happened. */
   1202       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SENSEI);
   1203       1.1   thorpej 		if (fdcresult(fdc) != 2 || (st0 & 0xf8) != 0x20 ||
   1204       1.1   thorpej 		    cyl != bp->b_cylinder * fd->sc_type->step) {
   1205       1.1   thorpej #ifdef FD_DEBUG
   1206      1.84    cegger 			fdcstatus(fd->sc_dev, 2, "seek failed");
   1207       1.1   thorpej #endif
   1208       1.1   thorpej 			fdcretry(fdc);
   1209       1.1   thorpej 			goto loop;
   1210       1.1   thorpej 		}
   1211       1.1   thorpej 		fd->sc_cylin = bp->b_cylinder;
   1212       1.1   thorpej 		goto doio;
   1213       1.1   thorpej 
   1214       1.1   thorpej 	case IOTIMEDOUT:
   1215       1.1   thorpej 		isa_dmaabort(fdc->sc_ic, fdc->sc_drq);
   1216       1.1   thorpej 	case SEEKTIMEDOUT:
   1217       1.1   thorpej 	case RECALTIMEDOUT:
   1218       1.1   thorpej 	case RESETTIMEDOUT:
   1219       1.1   thorpej 		fdcretry(fdc);
   1220       1.1   thorpej 		goto loop;
   1221       1.1   thorpej 
   1222       1.1   thorpej 	case IOCOMPLETE: /* IO DONE, post-analyze */
   1223       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1224       1.1   thorpej 
   1225      1.31       mrg 		disk_unbusy(&fd->sc_dk, (bp->b_bcount - bp->b_resid),
   1226      1.31       mrg 		    (bp->b_flags & B_READ));
   1227       1.1   thorpej 
   1228       1.1   thorpej 		if (fdcresult(fdc) != 7 || (st0 & 0xf8) != 0) {
   1229       1.1   thorpej 			isa_dmaabort(fdc->sc_ic, fdc->sc_drq);
   1230       1.1   thorpej #ifdef FD_DEBUG
   1231      1.84    cegger 			fdcstatus(fd->sc_dev, 7, bp->b_flags & B_READ ?
   1232       1.1   thorpej 			    "read failed" : "write failed");
   1233      1.59  christos 			printf("blkno %llu nblks %d\n",
   1234      1.59  christos 			    (unsigned long long)fd->sc_blkno, fd->sc_nblks);
   1235       1.1   thorpej #endif
   1236       1.1   thorpej 			fdcretry(fdc);
   1237       1.1   thorpej 			goto loop;
   1238       1.1   thorpej 		}
   1239       1.1   thorpej 		isa_dmadone(fdc->sc_ic, fdc->sc_drq);
   1240       1.1   thorpej 		if (fdc->sc_errors) {
   1241       1.1   thorpej 			diskerr(bp, "fd", "soft error (corrected)", LOG_PRINTF,
   1242      1.79    dyoung 			    fd->sc_skip / FDC_BSIZE, NULL);
   1243       1.1   thorpej 			printf("\n");
   1244       1.1   thorpej 			fdc->sc_errors = 0;
   1245       1.1   thorpej 		}
   1246       1.1   thorpej 		fd->sc_blkno += fd->sc_nblks;
   1247       1.1   thorpej 		fd->sc_skip += fd->sc_nbytes;
   1248       1.1   thorpej 		fd->sc_bcount -= fd->sc_nbytes;
   1249       1.1   thorpej 		if (!finfo && fd->sc_bcount > 0) {
   1250       1.1   thorpej 			bp->b_cylinder = fd->sc_blkno / fd->sc_type->seccyl;
   1251       1.1   thorpej 			goto doseek;
   1252       1.1   thorpej 		}
   1253       1.1   thorpej 		fdfinish(fd, bp);
   1254       1.1   thorpej 		goto loop;
   1255       1.1   thorpej 
   1256       1.1   thorpej 	case DORESET:
   1257       1.1   thorpej 		/* try a reset, keep motor on */
   1258       1.1   thorpej 		fd_set_motor(fdc, 1);
   1259       1.1   thorpej 		delay(100);
   1260       1.1   thorpej 		fd_set_motor(fdc, 0);
   1261       1.1   thorpej 		fdc->sc_state = RESETCOMPLETE;
   1262       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, hz / 2, fdctimeout, fdc);
   1263       1.1   thorpej 		return 1;			/* will return later */
   1264       1.1   thorpej 
   1265       1.1   thorpej 	case RESETCOMPLETE:
   1266       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1267       1.1   thorpej 		/* clear the controller output buffer */
   1268       1.1   thorpej 		for (i = 0; i < 4; i++) {
   1269       1.1   thorpej 			out_fdc(iot, ioh, NE7CMD_SENSEI);
   1270       1.1   thorpej 			(void) fdcresult(fdc);
   1271       1.1   thorpej 		}
   1272       1.1   thorpej 
   1273       1.1   thorpej 		/* fall through */
   1274       1.1   thorpej 	case DORECAL:
   1275      1.15   tsutsui 		out_fdc(iot, ioh, NE7CMD_RECAL); /* recalibrate function */
   1276       1.1   thorpej 		out_fdc(iot, ioh, fd->sc_drive);
   1277       1.1   thorpej 		fdc->sc_state = RECALWAIT;
   1278       1.1   thorpej 		callout_reset(&fdc->sc_timo_ch, 5 * hz, fdctimeout, fdc);
   1279       1.1   thorpej 		return 1;			/* will return later */
   1280       1.1   thorpej 
   1281       1.1   thorpej 	case RECALWAIT:
   1282       1.1   thorpej 		callout_stop(&fdc->sc_timo_ch);
   1283       1.1   thorpej 		fdc->sc_state = RECALCOMPLETE;
   1284       1.1   thorpej 		/* allow 1/30 second for heads to settle */
   1285      1.81    dyoung 		callout_reset(&fdc->sc_intr_ch, hz / 30, fdcintrcb, fdc);
   1286       1.1   thorpej 		return 1;			/* will return later */
   1287       1.1   thorpej 
   1288       1.1   thorpej 	case RECALCOMPLETE:
   1289       1.1   thorpej 		out_fdc(iot, ioh, NE7CMD_SENSEI);
   1290       1.1   thorpej 		if (fdcresult(fdc) != 2 || (st0 & 0xf8) != 0x20 || cyl != 0) {
   1291       1.1   thorpej #ifdef FD_DEBUG
   1292      1.84    cegger 			fdcstatus(fd->sc_dev, 2, "recalibrate failed");
   1293       1.1   thorpej #endif
   1294       1.1   thorpej 			fdcretry(fdc);
   1295       1.1   thorpej 			goto loop;
   1296       1.1   thorpej 		}
   1297       1.1   thorpej 		fd->sc_cylin = 0;
   1298       1.1   thorpej 		goto doseek;
   1299       1.1   thorpej 
   1300       1.1   thorpej 	case MOTORWAIT:
   1301       1.1   thorpej 		if (fd->sc_flags & FD_MOTOR_WAIT)
   1302       1.1   thorpej 			return 1;		/* time's not up yet */
   1303       1.1   thorpej 		goto doseek;
   1304       1.1   thorpej 
   1305       1.1   thorpej 	default:
   1306      1.82      cube 		fdcstatus(fd->sc_dev, 0, "stray interrupt");
   1307       1.1   thorpej 		return 1;
   1308       1.1   thorpej 	}
   1309       1.1   thorpej #undef	st0
   1310       1.1   thorpej #undef	cyl
   1311      1.81    dyoung 
   1312      1.81    dyoung out:
   1313      1.81    dyoung 	cv_signal(&fdc->sc_cv);
   1314      1.81    dyoung 	return 1;
   1315      1.81    dyoung }
   1316      1.81    dyoung 
   1317      1.81    dyoung static void
   1318      1.81    dyoung fdcintrcb(void *arg)
   1319      1.81    dyoung {
   1320      1.81    dyoung 	(void)fdcintr(arg);
   1321      1.81    dyoung }
   1322      1.81    dyoung 
   1323      1.81    dyoung int
   1324      1.81    dyoung fdcintr(void *arg)
   1325      1.81    dyoung {
   1326      1.81    dyoung 	int rc;
   1327      1.81    dyoung 	struct fdc_softc *fdc = arg;
   1328      1.81    dyoung 
   1329      1.81    dyoung 	mutex_enter(&fdc->sc_mtx);
   1330      1.81    dyoung 	rc = fdcintr1(fdc);
   1331      1.81    dyoung 	mutex_exit(&fdc->sc_mtx);
   1332      1.81    dyoung 	return rc;
   1333       1.1   thorpej }
   1334       1.1   thorpej 
   1335       1.1   thorpej void
   1336      1.79    dyoung fdcretry(struct fdc_softc *fdc)
   1337       1.1   thorpej {
   1338       1.1   thorpej 	struct fd_softc *fd;
   1339       1.1   thorpej 	struct buf *bp;
   1340       1.1   thorpej 
   1341      1.22  jdolecek 	fd = TAILQ_FIRST(&fdc->sc_drives);
   1342      1.91      yamt 	bp = bufq_peek(fd->sc_q);
   1343       1.1   thorpej 
   1344       1.1   thorpej 	if (fd->sc_opts & FDOPT_NORETRY)
   1345       1.1   thorpej 	    goto fail;
   1346       1.1   thorpej 	switch (fdc->sc_errors) {
   1347       1.1   thorpej 	case 0:
   1348       1.1   thorpej 		/* try again */
   1349       1.1   thorpej 		fdc->sc_state = DOSEEK;
   1350       1.1   thorpej 		break;
   1351       1.1   thorpej 
   1352       1.1   thorpej 	case 1: case 2: case 3:
   1353       1.1   thorpej 		/* didn't work; try recalibrating */
   1354       1.1   thorpej 		fdc->sc_state = DORECAL;
   1355       1.1   thorpej 		break;
   1356       1.1   thorpej 
   1357       1.1   thorpej 	case 4:
   1358       1.1   thorpej 		/* still no go; reset the bastard */
   1359       1.1   thorpej 		fdc->sc_state = DORESET;
   1360       1.1   thorpej 		break;
   1361       1.1   thorpej 
   1362       1.1   thorpej 	default:
   1363       1.1   thorpej 	fail:
   1364       1.1   thorpej 		if ((fd->sc_opts & FDOPT_SILENT) == 0) {
   1365       1.1   thorpej 			diskerr(bp, "fd", "hard error", LOG_PRINTF,
   1366      1.79    dyoung 				fd->sc_skip / FDC_BSIZE, NULL);
   1367      1.88  christos 			fdcpstatus(7, fdc);
   1368       1.1   thorpej 		}
   1369       1.1   thorpej 
   1370       1.1   thorpej 		bp->b_error = EIO;
   1371       1.1   thorpej 		fdfinish(fd, bp);
   1372       1.1   thorpej 	}
   1373       1.1   thorpej 	fdc->sc_errors++;
   1374       1.1   thorpej }
   1375       1.1   thorpej 
   1376       1.1   thorpej int
   1377      1.79    dyoung fdioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
   1378       1.1   thorpej {
   1379      1.82      cube 	struct fd_softc *fd =
   1380      1.82      cube 	    device_lookup_private(&fd_cd, FDUNIT(dev));
   1381       1.1   thorpej 	struct fdformat_parms *form_parms;
   1382       1.1   thorpej 	struct fdformat_cmd *form_cmd;
   1383       1.8   nathanw 	struct ne7_fd_formb *fd_formb;
   1384       1.1   thorpej 	struct disklabel buffer;
   1385       1.1   thorpej 	int error;
   1386       1.1   thorpej 	unsigned int scratch;
   1387       1.1   thorpej 	int il[FD_MAX_NSEC + 1];
   1388      1.80    dyoung 	int i, j;
   1389      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1390      1.11      fvdl 	struct disklabel newlabel;
   1391      1.11      fvdl #endif
   1392       1.1   thorpej 
   1393      1.93      haad 	error = disk_ioctl(&fd->sc_dk, cmd, addr, flag, l);
   1394      1.93      haad 	if (error != EPASSTHROUGH)
   1395      1.93      haad 		return (error);
   1396      1.93      haad 
   1397       1.1   thorpej 	switch (cmd) {
   1398       1.1   thorpej 	case DIOCGDINFO:
   1399      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1400      1.11      fvdl 	case ODIOCGDINFO:
   1401      1.11      fvdl #endif
   1402       1.1   thorpej 		memset(&buffer, 0, sizeof(buffer));
   1403       1.1   thorpej 
   1404       1.1   thorpej 		buffer.d_type = DTYPE_FLOPPY;
   1405       1.1   thorpej 		buffer.d_secsize = FDC_BSIZE;
   1406      1.89   tsutsui 		buffer.d_nsectors = fd->sc_type->sectrac;
   1407      1.89   tsutsui 		buffer.d_ntracks = fd->sc_type->heads;
   1408      1.89   tsutsui 		buffer.d_ncylinders = fd->sc_type->cyls;
   1409      1.89   tsutsui 		buffer.d_secpercyl = fd->sc_type->seccyl;
   1410      1.89   tsutsui 		buffer.d_secperunit = fd->sc_type->size;
   1411       1.1   thorpej 
   1412       1.1   thorpej 		if (readdisklabel(dev, fdstrategy, &buffer, NULL) != NULL)
   1413       1.1   thorpej 			return EINVAL;
   1414       1.1   thorpej 
   1415      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1416      1.11      fvdl 		if (cmd == ODIOCGDINFO) {
   1417      1.11      fvdl 			if (buffer.d_npartitions > OLDMAXPARTITIONS)
   1418      1.12      fvdl 				return ENOTTY;
   1419      1.11      fvdl 			memcpy(addr, &buffer, sizeof (struct olddisklabel));
   1420      1.11      fvdl 		} else
   1421      1.11      fvdl #endif
   1422       1.1   thorpej 		*(struct disklabel *)addr = buffer;
   1423       1.1   thorpej 		return 0;
   1424       1.1   thorpej 
   1425       1.1   thorpej 	case DIOCWLABEL:
   1426       1.1   thorpej 		if ((flag & FWRITE) == 0)
   1427       1.1   thorpej 			return EBADF;
   1428       1.1   thorpej 		/* XXX do something */
   1429       1.1   thorpej 		return 0;
   1430       1.1   thorpej 
   1431       1.1   thorpej 	case DIOCWDINFO:
   1432      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1433      1.11      fvdl 	case ODIOCWDINFO:
   1434      1.11      fvdl #endif
   1435      1.11      fvdl 	{
   1436      1.11      fvdl 		struct disklabel *lp;
   1437      1.11      fvdl 
   1438       1.1   thorpej 		if ((flag & FWRITE) == 0)
   1439       1.1   thorpej 			return EBADF;
   1440      1.11      fvdl #ifdef __HAVE_OLD_DISKLABEL
   1441      1.11      fvdl 		if (cmd == ODIOCWDINFO) {
   1442      1.11      fvdl 			memset(&newlabel, 0, sizeof newlabel);
   1443      1.11      fvdl 			memcpy(&newlabel, addr, sizeof (struct olddisklabel));
   1444      1.11      fvdl 			lp = &newlabel;
   1445      1.11      fvdl 		} else
   1446      1.11      fvdl #endif
   1447      1.11      fvdl 		lp = (struct disklabel *)addr;
   1448       1.1   thorpej 
   1449      1.11      fvdl 		error = setdisklabel(&buffer, lp, 0, NULL);
   1450       1.1   thorpej 		if (error)
   1451       1.1   thorpej 			return error;
   1452       1.1   thorpej 
   1453       1.1   thorpej 		error = writedisklabel(dev, fdstrategy, &buffer, NULL);
   1454       1.1   thorpej 		return error;
   1455      1.11      fvdl 	}
   1456       1.1   thorpej 
   1457       1.1   thorpej 	case FDIOCGETFORMAT:
   1458       1.1   thorpej 		form_parms = (struct fdformat_parms *)addr;
   1459       1.1   thorpej 		form_parms->fdformat_version = FDFORMAT_VERSION;
   1460       1.1   thorpej 		form_parms->nbps = 128 * (1 << fd->sc_type->secsize);
   1461       1.1   thorpej 		form_parms->ncyl = fd->sc_type->cyls;
   1462       1.1   thorpej 		form_parms->nspt = fd->sc_type->sectrac;
   1463       1.1   thorpej 		form_parms->ntrk = fd->sc_type->heads;
   1464       1.1   thorpej 		form_parms->stepspercyl = fd->sc_type->step;
   1465       1.1   thorpej 		form_parms->gaplen = fd->sc_type->gap2;
   1466       1.1   thorpej 		form_parms->fillbyte = fd->sc_type->fillbyte;
   1467       1.1   thorpej 		form_parms->interleave = fd->sc_type->interleave;
   1468       1.1   thorpej 		switch (fd->sc_type->rate) {
   1469       1.1   thorpej 		case FDC_500KBPS:
   1470       1.1   thorpej 			form_parms->xfer_rate = 500 * 1024;
   1471       1.1   thorpej 			break;
   1472       1.1   thorpej 		case FDC_300KBPS:
   1473       1.1   thorpej 			form_parms->xfer_rate = 300 * 1024;
   1474       1.1   thorpej 			break;
   1475       1.1   thorpej 		case FDC_250KBPS:
   1476       1.1   thorpej 			form_parms->xfer_rate = 250 * 1024;
   1477       1.1   thorpej 			break;
   1478       1.1   thorpej 		default:
   1479       1.1   thorpej 			return EINVAL;
   1480       1.1   thorpej 		}
   1481       1.1   thorpej 		return 0;
   1482       1.1   thorpej 
   1483       1.1   thorpej 	case FDIOCSETFORMAT:
   1484       1.1   thorpej 		if((flag & FWRITE) == 0)
   1485       1.1   thorpej 			return EBADF;	/* must be opened for writing */
   1486       1.1   thorpej 		form_parms = (struct fdformat_parms *)addr;
   1487       1.1   thorpej 		if (form_parms->fdformat_version != FDFORMAT_VERSION)
   1488       1.1   thorpej 			return EINVAL;	/* wrong version of formatting prog */
   1489       1.1   thorpej 
   1490       1.1   thorpej 		scratch = form_parms->nbps >> 7;
   1491       1.1   thorpej 		if ((form_parms->nbps & 0x7f) || ffs(scratch) == 0 ||
   1492       1.1   thorpej 		    scratch & ~(1 << (ffs(scratch)-1)))
   1493       1.1   thorpej 			/* not a power-of-two multiple of 128 */
   1494       1.1   thorpej 			return EINVAL;
   1495       1.1   thorpej 
   1496       1.1   thorpej 		switch (form_parms->xfer_rate) {
   1497       1.1   thorpej 		case 500 * 1024:
   1498       1.1   thorpej 			fd->sc_type->rate = FDC_500KBPS;
   1499       1.1   thorpej 			break;
   1500       1.1   thorpej 		case 300 * 1024:
   1501       1.1   thorpej 			fd->sc_type->rate = FDC_300KBPS;
   1502       1.1   thorpej 			break;
   1503       1.1   thorpej 		case 250 * 1024:
   1504       1.1   thorpej 			fd->sc_type->rate = FDC_250KBPS;
   1505       1.1   thorpej 			break;
   1506       1.1   thorpej 		default:
   1507       1.1   thorpej 			return EINVAL;
   1508       1.1   thorpej 		}
   1509       1.1   thorpej 
   1510       1.1   thorpej 		if (form_parms->nspt > FD_MAX_NSEC ||
   1511       1.1   thorpej 		    form_parms->fillbyte > 0xff ||
   1512       1.1   thorpej 		    form_parms->interleave > 0xff)
   1513       1.1   thorpej 			return EINVAL;
   1514       1.1   thorpej 		fd->sc_type->sectrac = form_parms->nspt;
   1515       1.1   thorpej 		if (form_parms->ntrk != 2 && form_parms->ntrk != 1)
   1516       1.1   thorpej 			return EINVAL;
   1517       1.1   thorpej 		fd->sc_type->heads = form_parms->ntrk;
   1518       1.1   thorpej 		fd->sc_type->seccyl = form_parms->nspt * form_parms->ntrk;
   1519       1.1   thorpej 		fd->sc_type->secsize = ffs(scratch)-1;
   1520       1.1   thorpej 		fd->sc_type->gap2 = form_parms->gaplen;
   1521       1.1   thorpej 		fd->sc_type->cyls = form_parms->ncyl;
   1522       1.1   thorpej 		fd->sc_type->size = fd->sc_type->seccyl * form_parms->ncyl *
   1523      1.15   tsutsui 		    form_parms->nbps / DEV_BSIZE;
   1524       1.1   thorpej 		fd->sc_type->step = form_parms->stepspercyl;
   1525       1.1   thorpej 		fd->sc_type->fillbyte = form_parms->fillbyte;
   1526       1.1   thorpej 		fd->sc_type->interleave = form_parms->interleave;
   1527       1.1   thorpej 		return 0;
   1528       1.1   thorpej 
   1529       1.1   thorpej 	case FDIOCFORMAT_TRACK:
   1530       1.1   thorpej 		if((flag & FWRITE) == 0)
   1531       1.1   thorpej 			return EBADF;	/* must be opened for writing */
   1532       1.1   thorpej 		form_cmd = (struct fdformat_cmd *)addr;
   1533       1.1   thorpej 		if (form_cmd->formatcmd_version != FDFORMAT_VERSION)
   1534       1.1   thorpej 			return EINVAL;	/* wrong version of formatting prog */
   1535       1.1   thorpej 
   1536       1.1   thorpej 		if (form_cmd->head >= fd->sc_type->heads ||
   1537       1.1   thorpej 		    form_cmd->cylinder >= fd->sc_type->cyls) {
   1538       1.1   thorpej 			return EINVAL;
   1539       1.1   thorpej 		}
   1540       1.1   thorpej 
   1541      1.56  drochner 		fd_formb = malloc(sizeof(struct ne7_fd_formb),
   1542       1.8   nathanw 		    M_TEMP, M_NOWAIT);
   1543       1.8   nathanw 		if (fd_formb == 0)
   1544       1.8   nathanw 			return ENOMEM;
   1545       1.8   nathanw 
   1546       1.8   nathanw 		fd_formb->head = form_cmd->head;
   1547       1.8   nathanw 		fd_formb->cyl = form_cmd->cylinder;
   1548       1.8   nathanw 		fd_formb->transfer_rate = fd->sc_type->rate;
   1549       1.8   nathanw 		fd_formb->fd_formb_secshift = fd->sc_type->secsize;
   1550       1.8   nathanw 		fd_formb->fd_formb_nsecs = fd->sc_type->sectrac;
   1551       1.8   nathanw 		fd_formb->fd_formb_gaplen = fd->sc_type->gap2;
   1552       1.8   nathanw 		fd_formb->fd_formb_fillbyte = fd->sc_type->fillbyte;
   1553       1.1   thorpej 
   1554       1.1   thorpej 		memset(il, 0, sizeof il);
   1555       1.8   nathanw 		for (j = 0, i = 1; i <= fd_formb->fd_formb_nsecs; i++) {
   1556       1.8   nathanw 			while (il[(j%fd_formb->fd_formb_nsecs)+1])
   1557       1.1   thorpej 				j++;
   1558       1.8   nathanw 			il[(j%fd_formb->fd_formb_nsecs)+1] = i;
   1559       1.1   thorpej 			j += fd->sc_type->interleave;
   1560       1.1   thorpej 		}
   1561       1.8   nathanw 		for (i = 0; i < fd_formb->fd_formb_nsecs; i++) {
   1562       1.8   nathanw 			fd_formb->fd_formb_cylno(i) = form_cmd->cylinder;
   1563       1.8   nathanw 			fd_formb->fd_formb_headno(i) = form_cmd->head;
   1564       1.8   nathanw 			fd_formb->fd_formb_secno(i) = il[i+1];
   1565       1.8   nathanw 			fd_formb->fd_formb_secsize(i) = fd->sc_type->secsize;
   1566       1.1   thorpej 		}
   1567       1.1   thorpej 
   1568      1.61  christos 		error = fdformat(dev, fd_formb, l);
   1569       1.8   nathanw 		free(fd_formb, M_TEMP);
   1570       1.8   nathanw 		return error;
   1571       1.1   thorpej 
   1572       1.1   thorpej 	case FDIOCGETOPTS:		/* get drive options */
   1573       1.1   thorpej 		*(int *)addr = fd->sc_opts;
   1574       1.1   thorpej 		return 0;
   1575       1.1   thorpej 
   1576       1.1   thorpej 	case FDIOCSETOPTS:		/* set drive options */
   1577       1.1   thorpej 		fd->sc_opts = *(int *)addr;
   1578       1.1   thorpej 		return 0;
   1579       1.1   thorpej 
   1580       1.1   thorpej 	default:
   1581       1.1   thorpej 		return ENOTTY;
   1582       1.1   thorpej 	}
   1583       1.1   thorpej 
   1584       1.1   thorpej #ifdef DIAGNOSTIC
   1585       1.1   thorpej 	panic("fdioctl: impossible");
   1586       1.1   thorpej #endif
   1587       1.1   thorpej }
   1588       1.1   thorpej 
   1589       1.1   thorpej int
   1590      1.79    dyoung fdformat(dev_t dev, struct ne7_fd_formb *finfo, struct lwp *l)
   1591       1.1   thorpej {
   1592      1.63      yamt 	int rv = 0;
   1593      1.82      cube 	struct fd_softc *fd =
   1594      1.82      cube 	    device_lookup_private(&fd_cd, FDUNIT(dev));
   1595       1.1   thorpej 	struct fd_type *type = fd->sc_type;
   1596       1.1   thorpej 	struct buf *bp;
   1597       1.1   thorpej 
   1598       1.1   thorpej 	/* set up a buffer header for fdstrategy() */
   1599      1.78        ad 	bp = getiobuf(NULL, false);
   1600      1.37        pk 	if (bp == NULL)
   1601       1.1   thorpej 		return ENOBUFS;
   1602      1.37        pk 
   1603      1.78        ad 	bp->b_cflags = BC_BUSY;
   1604      1.78        ad 	bp->b_flags = B_PHYS | B_FORMAT;
   1605      1.61  christos 	bp->b_proc = l->l_proc;
   1606       1.1   thorpej 	bp->b_dev = dev;
   1607       1.1   thorpej 
   1608       1.1   thorpej 	/*
   1609       1.1   thorpej 	 * calculate a fake blkno, so fdstrategy() would initiate a
   1610       1.1   thorpej 	 * seek to the requested cylinder
   1611       1.1   thorpej 	 */
   1612       1.1   thorpej 	bp->b_blkno = (finfo->cyl * (type->sectrac * type->heads)
   1613       1.1   thorpej 		       + finfo->head * type->sectrac) * FDC_BSIZE / DEV_BSIZE;
   1614       1.1   thorpej 
   1615       1.1   thorpej 	bp->b_bcount = sizeof(struct fd_idfield_data) * finfo->fd_formb_nsecs;
   1616      1.72  christos 	bp->b_data = (void *)finfo;
   1617       1.1   thorpej 
   1618      1.97       chs #ifdef FD_DEBUG
   1619      1.54      yamt 	printf("fdformat: blkno %" PRIx64 " count %x\n",
   1620      1.36    kleink 	    bp->b_blkno, bp->b_bcount);
   1621       1.1   thorpej #endif
   1622       1.1   thorpej 
   1623       1.1   thorpej 	/* now do the format */
   1624       1.1   thorpej 	fdstrategy(bp);
   1625       1.1   thorpej 
   1626       1.1   thorpej 	/* ...and wait for it to complete */
   1627      1.37        pk 	rv = biowait(bp);
   1628      1.63      yamt 	putiobuf(bp);
   1629       1.1   thorpej 	return rv;
   1630       1.1   thorpej }
   1631       1.1   thorpej 
   1632       1.1   thorpej /*
   1633       1.1   thorpej  * Mountroot hook: prompt the user to enter the root file system
   1634       1.1   thorpej  * floppy.
   1635       1.1   thorpej  */
   1636       1.1   thorpej void
   1637      1.79    dyoung fd_mountroot_hook(device_t dev)
   1638       1.1   thorpej {
   1639       1.1   thorpej 	int c;
   1640       1.1   thorpej 
   1641       1.1   thorpej 	printf("Insert filesystem floppy and press return.");
   1642       1.1   thorpej 	cnpollc(1);
   1643       1.1   thorpej 	for (;;) {
   1644       1.1   thorpej 		c = cngetc();
   1645       1.1   thorpej 		if ((c == '\r') || (c == '\n')) {
   1646       1.1   thorpej 			printf("\n");
   1647       1.1   thorpej 			break;
   1648       1.1   thorpej 		}
   1649       1.1   thorpej 	}
   1650       1.1   thorpej 	cnpollc(0);
   1651       1.1   thorpej }
   1652      1.73   jnemeth 
   1653      1.73   jnemeth static void
   1654      1.73   jnemeth fd_set_properties(struct fd_softc *fd)
   1655      1.73   jnemeth {
   1656      1.73   jnemeth 	prop_dictionary_t disk_info, odisk_info, geom;
   1657      1.73   jnemeth 	const struct fd_type *fdt;
   1658      1.73   jnemeth 	int secsize;
   1659      1.73   jnemeth 
   1660      1.73   jnemeth 	fdt = fd->sc_type;
   1661      1.73   jnemeth 	if (fdt == NULL) {
   1662      1.73   jnemeth 		fdt = fd->sc_deftype;
   1663      1.73   jnemeth 		if (fdt == NULL)
   1664      1.73   jnemeth 			return;
   1665      1.73   jnemeth 	}
   1666      1.73   jnemeth 
   1667      1.73   jnemeth 	disk_info = prop_dictionary_create();
   1668      1.73   jnemeth 
   1669      1.73   jnemeth 	geom = prop_dictionary_create();
   1670      1.73   jnemeth 
   1671      1.73   jnemeth 	prop_dictionary_set_uint64(geom, "sectors-per-unit",
   1672      1.73   jnemeth 	    fdt->size);
   1673      1.73   jnemeth 
   1674      1.73   jnemeth 	switch (fdt->secsize) {
   1675      1.73   jnemeth 	case 2:
   1676      1.73   jnemeth 		secsize = 512;
   1677      1.73   jnemeth 		break;
   1678      1.73   jnemeth 	case 3:
   1679      1.73   jnemeth 		secsize = 1024;
   1680      1.73   jnemeth 		break;
   1681      1.73   jnemeth 	default:
   1682      1.73   jnemeth 		secsize = 0;
   1683      1.73   jnemeth 	}
   1684      1.73   jnemeth 
   1685      1.73   jnemeth 	prop_dictionary_set_uint32(geom, "sector-size",
   1686      1.73   jnemeth 	    secsize);
   1687      1.73   jnemeth 
   1688      1.73   jnemeth 	prop_dictionary_set_uint16(geom, "sectors-per-track",
   1689      1.73   jnemeth 	    fdt->sectrac);
   1690      1.73   jnemeth 
   1691      1.73   jnemeth 	prop_dictionary_set_uint16(geom, "tracks-per-cylinder",
   1692      1.73   jnemeth 	    fdt->heads);
   1693      1.73   jnemeth 
   1694      1.73   jnemeth 	prop_dictionary_set_uint64(geom, "cylinders-per-unit",
   1695      1.73   jnemeth 	    fdt->cyls);
   1696      1.73   jnemeth 
   1697      1.73   jnemeth 	prop_dictionary_set(disk_info, "geometry", geom);
   1698      1.73   jnemeth 	prop_object_release(geom);
   1699      1.73   jnemeth 
   1700      1.82      cube 	prop_dictionary_set(device_properties(fd->sc_dev),
   1701      1.73   jnemeth 	    "disk-info", disk_info);
   1702      1.73   jnemeth 
   1703      1.73   jnemeth 	/*
   1704      1.73   jnemeth 	 * Don't release disk_info here; we keep a reference to it.
   1705      1.73   jnemeth 	 * disk_detach() will release it when we go away.
   1706      1.73   jnemeth 	 */
   1707      1.73   jnemeth 
   1708      1.73   jnemeth 	odisk_info = fd->sc_dk.dk_info;
   1709      1.73   jnemeth 	fd->sc_dk.dk_info = disk_info;
   1710      1.73   jnemeth 	if (odisk_info)
   1711      1.73   jnemeth 		prop_object_release(odisk_info);
   1712      1.73   jnemeth }
   1713