1 1.10 martin /* $NetBSD: fdcvar.h,v 1.10 2008/04/28 20:23:52 martin Exp $ */ 2 1.1 thorpej 3 1.1 thorpej /*- 4 1.1 thorpej * Copyright (c) 1998 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.3 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.8 dyoung #include <sys/mutex.h> 67 1.8 dyoung #include <sys/condvar.h> 68 1.8 dyoung 69 1.1 thorpej /* 70 1.1 thorpej * Floppy formatting facilities merged from FreeBSD fd.c driver: 71 1.1 thorpej * Id: fd.c,v 1.53 1995/03/12 22:40:56 joerg Exp 72 1.1 thorpej * which carries the same copyright/redistribution notice as shown above with 73 1.1 thorpej * the addition of the following statement before the "Redistribution and 74 1.1 thorpej * use ..." clause: 75 1.1 thorpej * 76 1.1 thorpej * Copyright (c) 1993, 1994 by 77 1.1 thorpej * jc (at) irbs.UUCP (John Capo) 78 1.1 thorpej * vak (at) zebub.msk.su (Serge Vakulenko) 79 1.1 thorpej * ache (at) astral.msk.su (Andrew A. Chernov) 80 1.1 thorpej * 81 1.1 thorpej * Copyright (c) 1993, 1994, 1995 by 82 1.1 thorpej * joerg_wunsch (at) uriah.sax.de (Joerg Wunsch) 83 1.1 thorpej * dufault (at) hda.com (Peter Dufault) 84 1.1 thorpej */ 85 1.1 thorpej 86 1.1 thorpej enum fdc_state { 87 1.4 mycroft PROBING = -1, 88 1.1 thorpej DEVIDLE = 0, 89 1.1 thorpej MOTORWAIT, 90 1.1 thorpej DOSEEK, 91 1.1 thorpej SEEKWAIT, 92 1.1 thorpej SEEKTIMEDOUT, 93 1.1 thorpej SEEKCOMPLETE, 94 1.1 thorpej DOIO, 95 1.1 thorpej IOCOMPLETE, 96 1.1 thorpej IOTIMEDOUT, 97 1.1 thorpej DORESET, 98 1.1 thorpej RESETCOMPLETE, 99 1.1 thorpej RESETTIMEDOUT, 100 1.1 thorpej DORECAL, 101 1.1 thorpej RECALWAIT, 102 1.1 thorpej RECALTIMEDOUT, 103 1.1 thorpej RECALCOMPLETE, 104 1.1 thorpej }; 105 1.1 thorpej 106 1.1 thorpej /* software state, per controller */ 107 1.1 thorpej struct fdc_softc { 108 1.9 cube device_t sc_dev; /* boilerplate */ 109 1.1 thorpej void *sc_ih; 110 1.1 thorpej 111 1.1 thorpej bus_space_tag_t sc_iot; /* ISA i/o space identifier */ 112 1.1 thorpej bus_space_handle_t sc_ioh; /* ISA io handle */ 113 1.1 thorpej isa_chipset_tag_t sc_ic; /* ISA chipset info */ 114 1.1 thorpej 115 1.1 thorpej struct callout sc_timo_ch; /* timeout callout */ 116 1.1 thorpej struct callout sc_intr_ch; /* pseudo-intr callout */ 117 1.1 thorpej 118 1.1 thorpej /* 119 1.1 thorpej * XXX We have port overlap with the first IDE controller. 120 1.1 thorpej * Until we have a reasonable solution for handling overlap 121 1.1 thorpej * like this, we kludge access to our control register at 122 1.1 thorpej * offset 7. 123 1.1 thorpej */ 124 1.1 thorpej bus_space_handle_t sc_fdctlioh; 125 1.1 thorpej #define sc_fdinioh sc_fdctlioh 126 1.1 thorpej 127 1.1 thorpej int sc_drq; 128 1.1 thorpej bus_size_t sc_maxiosize; 129 1.1 thorpej 130 1.1 thorpej struct fd_softc *sc_fd[4]; /* pointers to children */ 131 1.1 thorpej TAILQ_HEAD(drivehead, fd_softc) sc_drives; 132 1.1 thorpej enum fdc_state sc_state; 133 1.1 thorpej int sc_errors; /* number of retries so far */ 134 1.1 thorpej u_char sc_status[7]; /* copy of registers */ 135 1.2 jmcneill 136 1.2 jmcneill int sc_known; /* direct configuration if non-zero */ 137 1.2 jmcneill int sc_present; /* bitmap of available fds */ 138 1.2 jmcneill const struct fd_type *sc_knownfds[4]; /* drive info known fds */ 139 1.8 dyoung kmutex_t sc_mtx; 140 1.8 dyoung kcondvar_t sc_cv; 141 1.8 dyoung int sc_probe; 142 1.1 thorpej }; 143 1.1 thorpej 144 1.6 perry int out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x); 145 1.1 thorpej 146 1.6 perry void fdcattach(struct fdc_softc *); 147 1.8 dyoung void fdc_childdet(device_t, device_t); 148 1.8 dyoung int fdcdetach(device_t self, int flags); 149 1.6 perry int fdcintr(void *); 150