fdcvar.h revision 1.6 1 1.6 tsutsui /* $NetBSD: fdcvar.h,v 1.6 2008/07/05 08:46:25 tsutsui Exp $ */
2 1.1 soda
3 1.1 soda /*-
4 1.1 soda * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 1.1 soda * All rights reserved.
6 1.1 soda *
7 1.1 soda * This code is derived from software contributed to The NetBSD Foundation
8 1.1 soda * by Charles M. Hannum.
9 1.1 soda *
10 1.1 soda * Redistribution and use in source and binary forms, with or without
11 1.1 soda * modification, are permitted provided that the following conditions
12 1.1 soda * are met:
13 1.1 soda * 1. Redistributions of source code must retain the above copyright
14 1.1 soda * notice, this list of conditions and the following disclaimer.
15 1.1 soda * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 soda * notice, this list of conditions and the following disclaimer in the
17 1.1 soda * documentation and/or other materials provided with the distribution.
18 1.1 soda *
19 1.1 soda * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 soda * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 soda * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 soda * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 soda * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 soda * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 soda * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 soda * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 soda * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 soda * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 soda * POSSIBILITY OF SUCH DAMAGE.
30 1.1 soda */
31 1.1 soda
32 1.1 soda /*-
33 1.1 soda * Copyright (c) 1990 The Regents of the University of California.
34 1.1 soda * All rights reserved.
35 1.1 soda *
36 1.1 soda * This code is derived from software contributed to Berkeley by
37 1.1 soda * Don Ahn.
38 1.1 soda *
39 1.1 soda * Redistribution and use in source and binary forms, with or without
40 1.1 soda * modification, are permitted provided that the following conditions
41 1.1 soda * are met:
42 1.1 soda * 1. Redistributions of source code must retain the above copyright
43 1.1 soda * notice, this list of conditions and the following disclaimer.
44 1.1 soda * 2. Redistributions in binary form must reproduce the above copyright
45 1.1 soda * notice, this list of conditions and the following disclaimer in the
46 1.1 soda * documentation and/or other materials provided with the distribution.
47 1.2 agc * 3. Neither the name of the University nor the names of its contributors
48 1.1 soda * may be used to endorse or promote products derived from this software
49 1.1 soda * without specific prior written permission.
50 1.1 soda *
51 1.1 soda * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 1.1 soda * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 1.1 soda * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 1.1 soda * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 1.1 soda * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 1.1 soda * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 1.1 soda * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 1.1 soda * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 1.1 soda * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 1.1 soda * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 1.1 soda * SUCH DAMAGE.
62 1.1 soda *
63 1.1 soda * @(#)fd.c 7.4 (Berkeley) 5/25/91
64 1.1 soda */
65 1.1 soda
66 1.1 soda /*
67 1.1 soda * Floppy formatting facilities merged from FreeBSD fd.c driver:
68 1.1 soda * Id: fd.c,v 1.53 1995/03/12 22:40:56 joerg Exp
69 1.1 soda * which carries the same copyright/redistribution notice as shown above with
70 1.1 soda * the addition of the following statement before the "Redistribution and
71 1.1 soda * use ..." clause:
72 1.1 soda *
73 1.1 soda * Copyright (c) 1993, 1994 by
74 1.1 soda * jc (at) irbs.UUCP (John Capo)
75 1.1 soda * vak (at) zebub.msk.su (Serge Vakulenko)
76 1.1 soda * ache (at) astral.msk.su (Andrew A. Chernov)
77 1.1 soda *
78 1.1 soda * Copyright (c) 1993, 1994, 1995 by
79 1.1 soda * joerg_wunsch (at) uriah.sax.de (Joerg Wunsch)
80 1.1 soda * dufault (at) hda.com (Peter Dufault)
81 1.1 soda */
82 1.1 soda
83 1.1 soda enum fdc_state {
84 1.1 soda DEVIDLE = 0,
85 1.1 soda MOTORWAIT,
86 1.1 soda DOSEEK,
87 1.1 soda SEEKWAIT,
88 1.1 soda SEEKTIMEDOUT,
89 1.1 soda SEEKCOMPLETE,
90 1.1 soda DOIO,
91 1.1 soda IOCOMPLETE,
92 1.1 soda IOTIMEDOUT,
93 1.1 soda DORESET,
94 1.1 soda RESETCOMPLETE,
95 1.1 soda RESETTIMEDOUT,
96 1.1 soda DORECAL,
97 1.1 soda RECALWAIT,
98 1.1 soda RECALTIMEDOUT,
99 1.1 soda RECALCOMPLETE,
100 1.1 soda };
101 1.1 soda
102 1.1 soda /* software state, per controller */
103 1.1 soda struct fdc_softc {
104 1.6 tsutsui device_t sc_dev; /* boilerplate */
105 1.1 soda void *sc_ih;
106 1.1 soda
107 1.1 soda bus_space_tag_t sc_iot; /* I/O space identifier */
108 1.1 soda bus_space_handle_t sc_ioh; /* I/O handle */
109 1.1 soda
110 1.1 soda struct callout sc_timo_ch; /* timeout callout */
111 1.1 soda struct callout sc_intr_ch; /* pseudo-intr callout */
112 1.1 soda
113 1.1 soda bus_size_t sc_maxiosize;
114 1.1 soda
115 1.1 soda struct fd_softc *sc_fd[4]; /* pointers to children */
116 1.1 soda TAILQ_HEAD(drivehead, fd_softc) sc_drives;
117 1.1 soda enum fdc_state sc_state;
118 1.1 soda int sc_errors; /* number of retries so far */
119 1.1 soda u_char sc_status[7]; /* copy of registers */
120 1.1 soda
121 1.1 soda /* DMA functions set from MD code */
122 1.4 christos void (*sc_dma_start)(struct fdc_softc *, void *, size_t, int);
123 1.1 soda void (*sc_dma_abort)(struct fdc_softc *);
124 1.1 soda void (*sc_dma_done)(struct fdc_softc *);
125 1.1 soda };
126 1.1 soda
127 1.1 soda #define FDCDMA_START(fdc, addr, len, datain) \
128 1.1 soda (*(fdc)->sc_dma_start)(fdc, addr, len, datain)
129 1.1 soda #define FDCDMA_ABORT(fdc) (*(fdc)->sc_dma_abort)(fdc)
130 1.1 soda #define FDCDMA_DONE(fdc) (*(fdc)->sc_dma_done)(fdc)
131 1.1 soda
132 1.1 soda int out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x);
133 1.1 soda
134 1.1 soda void fdcattach(struct fdc_softc *);
135 1.1 soda int fdcintr(void *);
136