ess_isa.c revision 1.23 1 1.23 cegger /* $NetBSD: ess_isa.c,v 1.23 2009/09/29 11:01:39 cegger 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 *
19 1.1 nathanw * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 nathanw * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 nathanw * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 nathanw * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 nathanw * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 nathanw * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 nathanw * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 nathanw * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 nathanw * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 nathanw * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 nathanw * POSSIBILITY OF SUCH DAMAGE.
30 1.1 nathanw */
31 1.1 nathanw
32 1.6 lukem #include <sys/cdefs.h>
33 1.23 cegger __KERNEL_RCSID(0, "$NetBSD: ess_isa.c,v 1.23 2009/09/29 11:01:39 cegger Exp $");
34 1.1 nathanw
35 1.1 nathanw #include <sys/param.h>
36 1.1 nathanw #include <sys/systm.h>
37 1.1 nathanw #include <sys/device.h>
38 1.1 nathanw
39 1.19 ad #include <sys/cpu.h>
40 1.19 ad #include <sys/bus.h>
41 1.1 nathanw
42 1.1 nathanw #include <dev/isa/isavar.h>
43 1.1 nathanw
44 1.1 nathanw #include <dev/isa/essreg.h>
45 1.1 nathanw #include <dev/isa/essvar.h>
46 1.1 nathanw
47 1.11 drochner #include "joy_ess.h"
48 1.11 drochner
49 1.1 nathanw #ifdef ESS_ISA_DEBUG
50 1.1 nathanw #define DPRINTF(x) printf x
51 1.1 nathanw #else
52 1.17 reinoud #define DPRINTF(x) {}
53 1.1 nathanw #endif
54 1.1 nathanw
55 1.22 cegger int ess_isa_probe(device_t, cfdata_t, void *);
56 1.22 cegger void ess_isa_attach(device_t, device_t, void *);
57 1.1 nathanw
58 1.10 thorpej CFATTACH_DECL(ess_isa, sizeof(struct ess_softc),
59 1.10 thorpej ess_isa_probe, ess_isa_attach, NULL, NULL);
60 1.1 nathanw
61 1.1 nathanw int
62 1.22 cegger ess_isa_probe(device_t parent, cfdata_t match, void *aux)
63 1.1 nathanw {
64 1.13 kent int ret;
65 1.13 kent struct isa_attach_args *ia;
66 1.13 kent struct ess_softc probesc, *sc;
67 1.7 thorpej
68 1.13 kent ia = aux;
69 1.13 kent sc= &probesc;
70 1.7 thorpej if (ia->ia_nio < 1)
71 1.13 kent return 0;
72 1.7 thorpej if (ia->ia_nirq < 1)
73 1.13 kent return 0;
74 1.7 thorpej if (ia->ia_ndrq < 1)
75 1.13 kent return 0;
76 1.7 thorpej
77 1.7 thorpej if (ISA_DIRECT_CONFIG(ia))
78 1.13 kent return 0;
79 1.7 thorpej
80 1.1 nathanw memset(sc, 0, sizeof *sc);
81 1.1 nathanw
82 1.1 nathanw sc->sc_ic = ia->ia_ic;
83 1.1 nathanw sc->sc_iot = ia->ia_iot;
84 1.7 thorpej sc->sc_iobase = ia->ia_io[0].ir_addr;
85 1.7 thorpej if (bus_space_map(sc->sc_iot, sc->sc_iobase, ESS_NPORT, 0,
86 1.7 thorpej &sc->sc_ioh)) {
87 1.7 thorpej DPRINTF(("ess_isa_probe: Couldn't map I/O region at %x, "
88 1.7 thorpej "size %x\n", sc->sc_iobase, ESS_NPORT));
89 1.7 thorpej return 0;
90 1.1 nathanw }
91 1.1 nathanw
92 1.7 thorpej sc->sc_audio1.irq = ia->ia_irq[0].ir_irq;
93 1.2 mycroft sc->sc_audio1.ist = IST_EDGE;
94 1.7 thorpej sc->sc_audio1.drq = ia->ia_drq[0].ir_drq;
95 1.3 mycroft sc->sc_audio2.irq = -1;
96 1.7 thorpej sc->sc_audio2.drq = (ia->ia_ndrq > 1) ? ia->ia_drq[1].ir_drq : -1;
97 1.1 nathanw
98 1.1 nathanw ret = essmatch(sc);
99 1.13 kent
100 1.1 nathanw bus_space_unmap(sc->sc_iot, sc->sc_ioh, ESS_NPORT);
101 1.1 nathanw
102 1.4 mycroft if (ret) {
103 1.1 nathanw DPRINTF(("ess_isa_probe succeeded (score %d)\n", ret));
104 1.7 thorpej ia->ia_nio = 1;
105 1.7 thorpej ia->ia_io[0].ir_size = ESS_NPORT;
106 1.7 thorpej
107 1.7 thorpej ia->ia_nirq = 1;
108 1.7 thorpej
109 1.7 thorpej if (ia->ia_ndrq > 1 &&
110 1.12 drochner ia->ia_drq[1].ir_drq != ISA_UNKNOWN_DRQ)
111 1.7 thorpej ia->ia_ndrq = 2;
112 1.7 thorpej else
113 1.7 thorpej ia->ia_ndrq = 1;
114 1.7 thorpej
115 1.7 thorpej ia->ia_niomem = 0;
116 1.4 mycroft } else
117 1.5 augustss DPRINTF(("ess_isa_probe failed\n"));
118 1.13 kent
119 1.1 nathanw return ret;
120 1.1 nathanw }
121 1.1 nathanw
122 1.13 kent void
123 1.22 cegger ess_isa_attach(device_t parent, device_t self, void *aux)
124 1.1 nathanw {
125 1.13 kent struct ess_softc *sc;
126 1.13 kent struct isa_attach_args *ia;
127 1.13 kent int enablejoy;
128 1.13 kent
129 1.22 cegger sc = device_private(self);
130 1.13 kent ia = aux;
131 1.13 kent enablejoy = 0;
132 1.23 cegger
133 1.23 cegger aprint_naive("\n");
134 1.23 cegger aprint_normal("\n");
135 1.1 nathanw
136 1.1 nathanw sc->sc_ic = ia->ia_ic;
137 1.1 nathanw sc->sc_iot = ia->ia_iot;
138 1.7 thorpej sc->sc_iobase = ia->ia_io[0].ir_addr;
139 1.7 thorpej if (bus_space_map(sc->sc_iot, sc->sc_iobase, ESS_NPORT, 0,
140 1.7 thorpej &sc->sc_ioh)) {
141 1.7 thorpej DPRINTF(("ess_isa_attach: Couldn't map I/O region at %x, "
142 1.7 thorpej "size %x\n", sc->sc_iobase, ESS_NPORT));
143 1.7 thorpej return;
144 1.1 nathanw }
145 1.1 nathanw
146 1.7 thorpej sc->sc_audio1.irq = ia->ia_irq[0].ir_irq;
147 1.2 mycroft sc->sc_audio1.ist = IST_EDGE;
148 1.7 thorpej sc->sc_audio1.drq = ia->ia_drq[0].ir_drq;
149 1.3 mycroft sc->sc_audio2.irq = -1;
150 1.7 thorpej sc->sc_audio2.drq = ia->ia_ndrq > 1 ? ia->ia_drq[1].ir_drq : -1;
151 1.1 nathanw
152 1.11 drochner #if NJOY_ESS > 0
153 1.23 cegger if (device_cfdata(self)->cf_flags & 1) {
154 1.11 drochner sc->sc_joy_iot = ia->ia_iot;
155 1.11 drochner if (!bus_space_map(sc->sc_joy_iot, 0x201, 1, 0,
156 1.11 drochner &sc->sc_joy_ioh))
157 1.11 drochner enablejoy = 1;
158 1.11 drochner }
159 1.11 drochner #endif
160 1.11 drochner
161 1.23 cegger aprint_normal_dev(self, "");
162 1.1 nathanw
163 1.11 drochner essattach(sc, enablejoy);
164 1.1 nathanw }
165