ess_isa.c revision 1.12 1 1.12 drochner /* $NetBSD: ess_isa.c,v 1.12 2004/09/14 20:20:47 drochner Exp $ */
2 1.1 nathanw
3 1.1 nathanw /*-
4 1.1 nathanw * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 1.1 nathanw * All rights reserved.
6 1.1 nathanw *
7 1.1 nathanw * This code is derived from software contributed to The NetBSD Foundation
8 1.1 nathanw * by Nathan J. Williams.
9 1.1 nathanw *
10 1.1 nathanw * Redistribution and use in source and binary forms, with or without
11 1.1 nathanw * modification, are permitted provided that the following conditions
12 1.1 nathanw * are met:
13 1.1 nathanw * 1. Redistributions of source code must retain the above copyright
14 1.1 nathanw * notice, this list of conditions and the following disclaimer.
15 1.1 nathanw * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 nathanw * notice, this list of conditions and the following disclaimer in the
17 1.1 nathanw * documentation and/or other materials provided with the distribution.
18 1.1 nathanw * 3. All advertising materials mentioning features or use of this software
19 1.1 nathanw * must display the following acknowledgement:
20 1.1 nathanw * This product includes software developed by the NetBSD
21 1.1 nathanw * Foundation, Inc. and its contributors.
22 1.1 nathanw * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 nathanw * contributors may be used to endorse or promote products derived
24 1.1 nathanw * from this software without specific prior written permission.
25 1.1 nathanw *
26 1.1 nathanw * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 nathanw * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 nathanw * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 nathanw * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 nathanw * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 nathanw * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 nathanw * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 nathanw * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 nathanw * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 nathanw * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 nathanw * POSSIBILITY OF SUCH DAMAGE.
37 1.1 nathanw */
38 1.1 nathanw
39 1.6 lukem #include <sys/cdefs.h>
40 1.12 drochner __KERNEL_RCSID(0, "$NetBSD: ess_isa.c,v 1.12 2004/09/14 20:20:47 drochner Exp $");
41 1.1 nathanw
42 1.1 nathanw #include <sys/param.h>
43 1.1 nathanw #include <sys/systm.h>
44 1.1 nathanw #include <sys/device.h>
45 1.1 nathanw
46 1.1 nathanw #include <machine/cpu.h>
47 1.1 nathanw #include <machine/bus.h>
48 1.1 nathanw
49 1.1 nathanw #include <dev/isa/isavar.h>
50 1.1 nathanw
51 1.1 nathanw #include <dev/isa/essreg.h>
52 1.1 nathanw #include <dev/isa/essvar.h>
53 1.1 nathanw
54 1.11 drochner #include "joy_ess.h"
55 1.11 drochner
56 1.1 nathanw #ifdef ESS_ISA_DEBUG
57 1.1 nathanw #define DPRINTF(x) printf x
58 1.1 nathanw #else
59 1.1 nathanw #define DPRINTF(x)
60 1.1 nathanw #endif
61 1.1 nathanw
62 1.1 nathanw int ess_isa_probe __P((struct device *, struct cfdata *, void *));
63 1.1 nathanw void ess_isa_attach __P((struct device *, struct device *, void *));
64 1.1 nathanw
65 1.10 thorpej CFATTACH_DECL(ess_isa, sizeof(struct ess_softc),
66 1.10 thorpej ess_isa_probe, ess_isa_attach, NULL, NULL);
67 1.1 nathanw
68 1.1 nathanw int
69 1.1 nathanw ess_isa_probe(parent, match, aux)
70 1.1 nathanw struct device *parent;
71 1.1 nathanw struct cfdata *match;
72 1.1 nathanw void *aux;
73 1.1 nathanw {
74 1.1 nathanw int ret;
75 1.1 nathanw struct isa_attach_args *ia = aux;
76 1.1 nathanw struct ess_softc probesc, *sc= &probesc;
77 1.7 thorpej
78 1.7 thorpej if (ia->ia_nio < 1)
79 1.7 thorpej return (0);
80 1.7 thorpej if (ia->ia_nirq < 1)
81 1.7 thorpej return (0);
82 1.7 thorpej if (ia->ia_ndrq < 1)
83 1.7 thorpej return (0);
84 1.7 thorpej
85 1.7 thorpej if (ISA_DIRECT_CONFIG(ia))
86 1.7 thorpej return (0);
87 1.7 thorpej
88 1.1 nathanw memset(sc, 0, sizeof *sc);
89 1.1 nathanw
90 1.1 nathanw sc->sc_ic = ia->ia_ic;
91 1.1 nathanw sc->sc_iot = ia->ia_iot;
92 1.7 thorpej sc->sc_iobase = ia->ia_io[0].ir_addr;
93 1.7 thorpej if (bus_space_map(sc->sc_iot, sc->sc_iobase, ESS_NPORT, 0,
94 1.7 thorpej &sc->sc_ioh)) {
95 1.7 thorpej DPRINTF(("ess_isa_probe: Couldn't map I/O region at %x, "
96 1.7 thorpej "size %x\n", sc->sc_iobase, ESS_NPORT));
97 1.7 thorpej return 0;
98 1.1 nathanw }
99 1.1 nathanw
100 1.7 thorpej sc->sc_audio1.irq = ia->ia_irq[0].ir_irq;
101 1.2 mycroft sc->sc_audio1.ist = IST_EDGE;
102 1.7 thorpej sc->sc_audio1.drq = ia->ia_drq[0].ir_drq;
103 1.3 mycroft sc->sc_audio2.irq = -1;
104 1.7 thorpej sc->sc_audio2.drq = (ia->ia_ndrq > 1) ? ia->ia_drq[1].ir_drq : -1;
105 1.1 nathanw
106 1.1 nathanw ret = essmatch(sc);
107 1.1 nathanw
108 1.1 nathanw bus_space_unmap(sc->sc_iot, sc->sc_ioh, ESS_NPORT);
109 1.1 nathanw
110 1.4 mycroft if (ret) {
111 1.1 nathanw DPRINTF(("ess_isa_probe succeeded (score %d)\n", ret));
112 1.7 thorpej ia->ia_nio = 1;
113 1.7 thorpej ia->ia_io[0].ir_size = ESS_NPORT;
114 1.7 thorpej
115 1.7 thorpej ia->ia_nirq = 1;
116 1.7 thorpej
117 1.7 thorpej if (ia->ia_ndrq > 1 &&
118 1.12 drochner ia->ia_drq[1].ir_drq != ISA_UNKNOWN_DRQ)
119 1.7 thorpej ia->ia_ndrq = 2;
120 1.7 thorpej else
121 1.7 thorpej ia->ia_ndrq = 1;
122 1.7 thorpej
123 1.7 thorpej ia->ia_niomem = 0;
124 1.4 mycroft } else
125 1.5 augustss DPRINTF(("ess_isa_probe failed\n"));
126 1.1 nathanw
127 1.1 nathanw return ret;
128 1.1 nathanw }
129 1.1 nathanw
130 1.1 nathanw void ess_isa_attach(parent, self, aux)
131 1.1 nathanw struct device *parent, *self;
132 1.1 nathanw void *aux;
133 1.1 nathanw {
134 1.1 nathanw struct ess_softc *sc = (void *)self;
135 1.1 nathanw struct isa_attach_args *ia = aux;
136 1.11 drochner int enablejoy = 0;
137 1.1 nathanw
138 1.1 nathanw printf("\n");
139 1.1 nathanw
140 1.1 nathanw sc->sc_ic = ia->ia_ic;
141 1.1 nathanw sc->sc_iot = ia->ia_iot;
142 1.7 thorpej sc->sc_iobase = ia->ia_io[0].ir_addr;
143 1.7 thorpej if (bus_space_map(sc->sc_iot, sc->sc_iobase, ESS_NPORT, 0,
144 1.7 thorpej &sc->sc_ioh)) {
145 1.7 thorpej DPRINTF(("ess_isa_attach: Couldn't map I/O region at %x, "
146 1.7 thorpej "size %x\n", sc->sc_iobase, ESS_NPORT));
147 1.7 thorpej return;
148 1.1 nathanw }
149 1.1 nathanw
150 1.7 thorpej sc->sc_audio1.irq = ia->ia_irq[0].ir_irq;
151 1.2 mycroft sc->sc_audio1.ist = IST_EDGE;
152 1.7 thorpej sc->sc_audio1.drq = ia->ia_drq[0].ir_drq;
153 1.3 mycroft sc->sc_audio2.irq = -1;
154 1.7 thorpej sc->sc_audio2.drq = ia->ia_ndrq > 1 ? ia->ia_drq[1].ir_drq : -1;
155 1.1 nathanw
156 1.11 drochner #if NJOY_ESS > 0
157 1.11 drochner if (sc->sc_dev.dv_cfdata->cf_flags & 1) {
158 1.11 drochner sc->sc_joy_iot = ia->ia_iot;
159 1.11 drochner if (!bus_space_map(sc->sc_joy_iot, 0x201, 1, 0,
160 1.11 drochner &sc->sc_joy_ioh))
161 1.11 drochner enablejoy = 1;
162 1.11 drochner }
163 1.11 drochner #endif
164 1.11 drochner
165 1.3 mycroft printf("%s", sc->sc_dev.dv_xname);
166 1.1 nathanw
167 1.11 drochner essattach(sc, enablejoy);
168 1.1 nathanw }
169