fdc_isa.c revision 1.21 1 1.21 jmcneill /* $NetBSD: fdc_isa.c,v 1.21 2022/04/18 10:09:07 jmcneill 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.8 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.3 lukem
66 1.3 lukem #include <sys/cdefs.h>
67 1.21 jmcneill __KERNEL_RCSID(0, "$NetBSD: fdc_isa.c,v 1.21 2022/04/18 10:09:07 jmcneill Exp $");
68 1.1 thorpej
69 1.1 thorpej #include <sys/param.h>
70 1.1 thorpej #include <sys/systm.h>
71 1.1 thorpej #include <sys/callout.h>
72 1.1 thorpej #include <sys/device.h>
73 1.1 thorpej #include <sys/buf.h>
74 1.1 thorpej #include <sys/queue.h>
75 1.1 thorpej
76 1.15 ad #include <sys/bus.h>
77 1.15 ad #include <sys/intr.h>
78 1.1 thorpej
79 1.1 thorpej #include <dev/isa/isavar.h>
80 1.1 thorpej #include <dev/isa/isadmavar.h>
81 1.1 thorpej
82 1.1 thorpej #include <dev/isa/fdreg.h>
83 1.1 thorpej #include <dev/isa/fdcvar.h>
84 1.1 thorpej
85 1.17 cube static int fdc_isa_probe(device_t, cfdata_t, void *);
86 1.16 dyoung static void fdc_isa_attach(device_t, device_t, void *);
87 1.16 dyoung static int fdc_isa_detach(device_t, int);
88 1.1 thorpej
89 1.2 thorpej struct fdc_isa_softc {
90 1.2 thorpej struct fdc_softc sc_fdc; /* base fdc device */
91 1.2 thorpej
92 1.2 thorpej bus_space_handle_t sc_baseioh; /* base I/O handle */
93 1.2 thorpej };
94 1.2 thorpej
95 1.17 cube CFATTACH_DECL2_NEW(fdc_isa, sizeof(struct fdc_isa_softc),
96 1.16 dyoung fdc_isa_probe, fdc_isa_attach, fdc_isa_detach, NULL, NULL, fdc_childdet);
97 1.1 thorpej
98 1.1 thorpej #ifdef NEWCONFIG
99 1.1 thorpej void fdc_isa_forceintr(void *);
100 1.1 thorpej #endif
101 1.1 thorpej
102 1.16 dyoung static int
103 1.17 cube fdc_isa_probe(device_t parent, cfdata_t match, void *aux)
104 1.1 thorpej {
105 1.1 thorpej struct isa_attach_args *ia = aux;
106 1.1 thorpej bus_space_tag_t iot;
107 1.2 thorpej bus_space_handle_t ioh, ctl_ioh, base_ioh;
108 1.4 thorpej int rv, iobase;
109 1.1 thorpej
110 1.1 thorpej iot = ia->ia_iot;
111 1.1 thorpej rv = 0;
112 1.1 thorpej
113 1.4 thorpej if (ia->ia_nio < 1)
114 1.4 thorpej return (0);
115 1.4 thorpej if (ia->ia_nirq < 1)
116 1.4 thorpej return (0);
117 1.4 thorpej if (ia->ia_ndrq < 1)
118 1.4 thorpej return (0);
119 1.4 thorpej
120 1.4 thorpej if (ISA_DIRECT_CONFIG(ia))
121 1.4 thorpej return (0);
122 1.4 thorpej
123 1.1 thorpej /* Disallow wildcarded I/O addresses. */
124 1.11 drochner if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
125 1.4 thorpej return (0);
126 1.4 thorpej
127 1.4 thorpej /* Don't allow wildcarded IRQ/DRQ. */
128 1.11 drochner if (ia->ia_irq[0].ir_irq == ISA_UNKNOWN_IRQ)
129 1.4 thorpej return (0);
130 1.4 thorpej
131 1.11 drochner if (ia->ia_drq[0].ir_drq == ISA_UNKNOWN_DRQ)
132 1.1 thorpej return (0);
133 1.1 thorpej
134 1.21 jmcneill /* ISA chipset tag is required for DMA support. */
135 1.21 jmcneill if (ia->ia_ic == NULL)
136 1.21 jmcneill return (0);
137 1.21 jmcneill
138 1.1 thorpej /* Map the I/O space. */
139 1.4 thorpej iobase = ia->ia_io[0].ir_addr;
140 1.4 thorpej if (bus_space_map(iot, iobase, 6 /* FDC_NPORT */, 0, &base_ioh))
141 1.1 thorpej return (0);
142 1.1 thorpej
143 1.2 thorpej if (bus_space_subregion(iot, base_ioh, 2, 4, &ioh)) {
144 1.2 thorpej bus_space_unmap(iot, base_ioh, 6);
145 1.2 thorpej return (0);
146 1.2 thorpej }
147 1.2 thorpej
148 1.4 thorpej if (bus_space_map(iot, iobase + fdctl + 2, 1, 0, &ctl_ioh)) {
149 1.2 thorpej bus_space_unmap(iot, base_ioh, 6);
150 1.1 thorpej return (0);
151 1.1 thorpej }
152 1.1 thorpej
153 1.1 thorpej /* Not needed for the rest of the probe. */
154 1.1 thorpej bus_space_unmap(iot, ctl_ioh, 1);
155 1.1 thorpej
156 1.1 thorpej /* reset */
157 1.1 thorpej bus_space_write_1(iot, ioh, fdout, 0);
158 1.1 thorpej delay(100);
159 1.1 thorpej bus_space_write_1(iot, ioh, fdout, FDO_FRST);
160 1.1 thorpej
161 1.1 thorpej /* see if it can handle a command */
162 1.1 thorpej if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0)
163 1.1 thorpej goto out;
164 1.1 thorpej out_fdc(iot, ioh, 0xdf);
165 1.1 thorpej out_fdc(iot, ioh, 2);
166 1.1 thorpej
167 1.4 thorpej rv = 1;
168 1.4 thorpej ia->ia_nio = 1;
169 1.4 thorpej ia->ia_io[0].ir_size = FDC_NPORT;
170 1.1 thorpej
171 1.4 thorpej ia->ia_nirq = 1;
172 1.4 thorpej ia->ia_ndrq = 1;
173 1.1 thorpej
174 1.4 thorpej ia->ia_niomem = 0;
175 1.1 thorpej
176 1.1 thorpej out:
177 1.2 thorpej bus_space_unmap(iot, base_ioh, 6 /* FDC_NPORT */);
178 1.1 thorpej return (rv);
179 1.1 thorpej }
180 1.1 thorpej
181 1.16 dyoung static int
182 1.16 dyoung fdc_isa_detach(device_t self, int flags)
183 1.1 thorpej {
184 1.16 dyoung int rc;
185 1.16 dyoung struct fdc_isa_softc *isc = device_private(self);
186 1.16 dyoung struct fdc_softc *fdc = &isc->sc_fdc;
187 1.16 dyoung
188 1.16 dyoung if ((rc = fdcdetach(self, flags)) != 0)
189 1.16 dyoung return rc;
190 1.16 dyoung
191 1.16 dyoung isa_intr_disestablish(fdc->sc_ic, fdc->sc_ih);
192 1.16 dyoung
193 1.16 dyoung bus_space_unmap(fdc->sc_iot, fdc->sc_fdctlioh, 1);
194 1.16 dyoung
195 1.16 dyoung bus_space_unmap(fdc->sc_iot, isc->sc_baseioh, 6 /* FDC_NPORT */);
196 1.16 dyoung
197 1.16 dyoung return 0;
198 1.16 dyoung }
199 1.16 dyoung
200 1.16 dyoung static void
201 1.16 dyoung fdc_isa_attach(device_t parent, device_t self, void *aux)
202 1.16 dyoung {
203 1.16 dyoung struct fdc_isa_softc *isc = device_private(self);
204 1.16 dyoung struct fdc_softc *fdc = &isc->sc_fdc;
205 1.1 thorpej struct isa_attach_args *ia = aux;
206 1.1 thorpej
207 1.17 cube aprint_naive("\n");
208 1.17 cube aprint_normal("\n");
209 1.1 thorpej
210 1.17 cube fdc->sc_dev = self;
211 1.1 thorpej fdc->sc_iot = ia->ia_iot;
212 1.1 thorpej fdc->sc_ic = ia->ia_ic;
213 1.4 thorpej fdc->sc_drq = ia->ia_drq[0].ir_drq;
214 1.1 thorpej
215 1.4 thorpej if (bus_space_map(fdc->sc_iot, ia->ia_io[0].ir_addr,
216 1.4 thorpej 6 /* FDC_NPORT */, 0, &isc->sc_baseioh)) {
217 1.17 cube aprint_normal_dev(fdc->sc_dev, "unable to map I/O space\n");
218 1.2 thorpej return;
219 1.2 thorpej }
220 1.2 thorpej
221 1.2 thorpej if (bus_space_subregion(fdc->sc_iot, isc->sc_baseioh, 2, 4,
222 1.1 thorpej &fdc->sc_ioh)) {
223 1.17 cube aprint_normal_dev(fdc->sc_dev,
224 1.16 dyoung "unable to subregion I/O space\n");
225 1.1 thorpej return;
226 1.1 thorpej }
227 1.1 thorpej
228 1.4 thorpej if (bus_space_map(fdc->sc_iot, ia->ia_io[0].ir_addr + fdctl + 2, 1, 0,
229 1.1 thorpej &fdc->sc_fdctlioh)) {
230 1.17 cube aprint_normal_dev(fdc->sc_dev,
231 1.16 dyoung "unable to map CTL I/O space\n");
232 1.1 thorpej return;
233 1.1 thorpej }
234 1.1 thorpej
235 1.4 thorpej fdc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
236 1.4 thorpej IST_EDGE, IPL_BIO, fdcintr, fdc);
237 1.1 thorpej
238 1.10 mycroft fdcattach(fdc);
239 1.1 thorpej }
240