ess_pnpbios.c revision 1.4.8.2 1 1.4.8.2 bouyer /* $NetBSD: ess_pnpbios.c,v 1.4.8.2 2000/11/20 20:09:36 bouyer Exp $ */
2 1.4.8.2 bouyer
3 1.4.8.2 bouyer /*-
4 1.4.8.2 bouyer * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 1.4.8.2 bouyer * All rights reserved.
6 1.4.8.2 bouyer *
7 1.4.8.2 bouyer * This code is derived from software contributed to The NetBSD Foundation
8 1.4.8.2 bouyer * by Nathan J. Williams.
9 1.4.8.2 bouyer *
10 1.4.8.2 bouyer * Redistribution and use in source and binary forms, with or without
11 1.4.8.2 bouyer * modification, are permitted provided that the following conditions
12 1.4.8.2 bouyer * are met:
13 1.4.8.2 bouyer * 1. Redistributions of source code must retain the above copyright
14 1.4.8.2 bouyer * notice, this list of conditions and the following disclaimer.
15 1.4.8.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
16 1.4.8.2 bouyer * notice, this list of conditions and the following disclaimer in the
17 1.4.8.2 bouyer * documentation and/or other materials provided with the distribution.
18 1.4.8.2 bouyer * 3. All advertising materials mentioning features or use of this software
19 1.4.8.2 bouyer * must display the following acknowledgement:
20 1.4.8.2 bouyer * This product includes software developed by the NetBSD
21 1.4.8.2 bouyer * Foundation, Inc. and its contributors.
22 1.4.8.2 bouyer * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.4.8.2 bouyer * contributors may be used to endorse or promote products derived
24 1.4.8.2 bouyer * from this software without specific prior written permission.
25 1.4.8.2 bouyer *
26 1.4.8.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.4.8.2 bouyer * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.4.8.2 bouyer * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.4.8.2 bouyer * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.4.8.2 bouyer * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.4.8.2 bouyer * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.4.8.2 bouyer * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.4.8.2 bouyer * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.4.8.2 bouyer * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.4.8.2 bouyer * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.4.8.2 bouyer * POSSIBILITY OF SUCH DAMAGE.
37 1.4.8.2 bouyer */
38 1.4.8.2 bouyer
39 1.4.8.2 bouyer #include <sys/param.h>
40 1.4.8.2 bouyer #include <sys/systm.h>
41 1.4.8.2 bouyer #include <sys/errno.h>
42 1.4.8.2 bouyer #include <sys/ioctl.h>
43 1.4.8.2 bouyer #include <sys/syslog.h>
44 1.4.8.2 bouyer #include <sys/device.h>
45 1.4.8.2 bouyer #include <sys/proc.h>
46 1.4.8.2 bouyer
47 1.4.8.2 bouyer #include <machine/bus.h>
48 1.4.8.2 bouyer
49 1.4.8.2 bouyer #include <sys/audioio.h>
50 1.4.8.2 bouyer #include <dev/audio_if.h>
51 1.4.8.2 bouyer #include <dev/midi_if.h>
52 1.4.8.2 bouyer #include <dev/mulaw.h>
53 1.4.8.2 bouyer
54 1.4.8.2 bouyer #include <dev/isa/isavar.h>
55 1.4.8.2 bouyer #include <dev/isa/isadmavar.h>
56 1.4.8.2 bouyer
57 1.4.8.2 bouyer #include <i386/pnpbios/pnpbiosvar.h>
58 1.4.8.2 bouyer
59 1.4.8.2 bouyer #include <dev/isa/essreg.h>
60 1.4.8.2 bouyer #include <dev/isa/essvar.h>
61 1.4.8.2 bouyer
62 1.4.8.2 bouyer int ess_pnpbios_match __P((struct device *, struct cfdata *, void *));
63 1.4.8.2 bouyer void ess_pnpbios_attach __P((struct device *, struct device *, void *));
64 1.4.8.2 bouyer
65 1.4.8.2 bouyer struct cfattach ess_pnpbios_ca = {
66 1.4.8.2 bouyer sizeof(struct ess_softc), ess_pnpbios_match, ess_pnpbios_attach
67 1.4.8.2 bouyer };
68 1.4.8.2 bouyer
69 1.4.8.2 bouyer int
70 1.4.8.2 bouyer ess_pnpbios_match(parent, match, aux)
71 1.4.8.2 bouyer struct device *parent;
72 1.4.8.2 bouyer struct cfdata *match;
73 1.4.8.2 bouyer void *aux;
74 1.4.8.2 bouyer {
75 1.4.8.2 bouyer struct pnpbiosdev_attach_args *aa = aux;
76 1.4.8.2 bouyer
77 1.4.8.2 bouyer if (strcmp(aa->idstr, "ESS0104") && strcmp(aa->idstr, "ESS1869"))
78 1.4.8.2 bouyer return (0);
79 1.4.8.2 bouyer
80 1.4.8.2 bouyer return (1);
81 1.4.8.2 bouyer }
82 1.4.8.2 bouyer
83 1.4.8.2 bouyer void
84 1.4.8.2 bouyer ess_pnpbios_attach(parent, self, aux)
85 1.4.8.2 bouyer struct device *parent, *self;
86 1.4.8.2 bouyer void *aux;
87 1.4.8.2 bouyer {
88 1.4.8.2 bouyer struct ess_softc *sc = (void *)self;
89 1.4.8.2 bouyer struct pnpbiosdev_attach_args *aa = aux;
90 1.4.8.2 bouyer
91 1.4.8.2 bouyer if (pnpbios_io_map(aa->pbt, aa->resc, 0, &sc->sc_iot, &sc->sc_ioh)) {
92 1.4.8.2 bouyer printf(": can't map i/o space\n");
93 1.4.8.2 bouyer return;
94 1.4.8.2 bouyer }
95 1.4.8.2 bouyer
96 1.4.8.2 bouyer sc->sc_ic = aa->ic;
97 1.4.8.2 bouyer
98 1.4.8.2 bouyer /* XXX These are only for setting chip configuration registers. */
99 1.4.8.2 bouyer pnpbios_getiobase(aa->pbt, aa->resc, 0, 0, &sc->sc_iobase);
100 1.4.8.2 bouyer
101 1.4.8.2 bouyer sc->sc_audio1.ist = IST_EDGE;
102 1.4.8.2 bouyer sc->sc_audio2.ist = IST_EDGE;
103 1.4.8.2 bouyer
104 1.4.8.2 bouyer if (pnpbios_getirqnum(aa->pbt, aa->resc, 0, &sc->sc_audio1.irq,
105 1.4.8.2 bouyer NULL)) {
106 1.4.8.2 bouyer printf(": can't get IRQ\n");
107 1.4.8.2 bouyer return;
108 1.4.8.2 bouyer }
109 1.4.8.2 bouyer
110 1.4.8.2 bouyer if (pnpbios_getirqnum(aa->pbt, aa->resc, 1, &sc->sc_audio2.irq,
111 1.4.8.2 bouyer NULL))
112 1.4.8.2 bouyer sc->sc_audio2.irq = -1;
113 1.4.8.2 bouyer
114 1.4.8.2 bouyer if (pnpbios_getdmachan(aa->pbt, aa->resc, 0, &sc->sc_audio1.drq)) {
115 1.4.8.2 bouyer printf(": can't get DMA channel\n");
116 1.4.8.2 bouyer return;
117 1.4.8.2 bouyer }
118 1.4.8.2 bouyer
119 1.4.8.2 bouyer if (pnpbios_getdmachan(aa->pbt, aa->resc, 1, &sc->sc_audio2.drq))
120 1.4.8.2 bouyer sc->sc_audio2.drq = -1;
121 1.4.8.2 bouyer
122 1.4.8.2 bouyer printf("\n");
123 1.4.8.2 bouyer pnpbios_print_devres(self, aa);
124 1.4.8.2 bouyer
125 1.4.8.2 bouyer printf("%s", self->dv_xname);
126 1.4.8.2 bouyer
127 1.4.8.2 bouyer if (!essmatch(sc)) {
128 1.4.8.2 bouyer printf("%s: essmatch failed\n", sc->sc_dev.dv_xname);
129 1.4.8.2 bouyer pnpbios_io_unmap(aa->pbt, aa->resc, 0, sc->sc_iot, sc->sc_ioh);
130 1.4.8.2 bouyer return;
131 1.4.8.2 bouyer }
132 1.4.8.2 bouyer
133 1.4.8.2 bouyer essattach(sc);
134 1.4.8.2 bouyer }
135 1.4.8.2 bouyer
136