ess_pnpbios.c revision 1.21 1 1.21 tsutsui /* $NetBSD: ess_pnpbios.c,v 1.21 2010/05/22 16:35:00 tsutsui Exp $ */
2 1.1 nathanw
3 1.1 nathanw /*-
4 1.1 nathanw * Copyright (c) 2000 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.5 lukem
32 1.5 lukem #include <sys/cdefs.h>
33 1.21 tsutsui __KERNEL_RCSID(0, "$NetBSD: ess_pnpbios.c,v 1.21 2010/05/22 16:35:00 tsutsui 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/errno.h>
38 1.1 nathanw #include <sys/ioctl.h>
39 1.1 nathanw #include <sys/syslog.h>
40 1.1 nathanw #include <sys/device.h>
41 1.1 nathanw #include <sys/proc.h>
42 1.1 nathanw
43 1.1 nathanw #include <machine/bus.h>
44 1.1 nathanw
45 1.1 nathanw #include <sys/audioio.h>
46 1.1 nathanw #include <dev/audio_if.h>
47 1.1 nathanw #include <dev/midi_if.h>
48 1.1 nathanw #include <dev/mulaw.h>
49 1.1 nathanw
50 1.1 nathanw #include <dev/isa/isavar.h>
51 1.1 nathanw #include <dev/isa/isadmavar.h>
52 1.1 nathanw
53 1.1 nathanw #include <i386/pnpbios/pnpbiosvar.h>
54 1.1 nathanw
55 1.1 nathanw #include <dev/isa/essreg.h>
56 1.1 nathanw #include <dev/isa/essvar.h>
57 1.1 nathanw
58 1.18 cegger int ess_pnpbios_match(device_t, cfdata_t, void *);
59 1.18 cegger void ess_pnpbios_attach(device_t, device_t, void *);
60 1.1 nathanw
61 1.21 tsutsui CFATTACH_DECL_NEW(ess_pnpbios, sizeof(struct ess_softc),
62 1.9 thorpej ess_pnpbios_match, ess_pnpbios_attach, NULL, NULL);
63 1.1 nathanw
64 1.1 nathanw int
65 1.20 cegger ess_pnpbios_match(device_t parent, cfdata_t match, void *aux)
66 1.1 nathanw {
67 1.1 nathanw struct pnpbiosdev_attach_args *aa = aux;
68 1.1 nathanw
69 1.6 nathanw if (strcmp(aa->idstr, "ESS0104") && /* 1788 */
70 1.6 nathanw strcmp(aa->idstr, "ESS0114") && /* 1788 */
71 1.6 nathanw strcmp(aa->idstr, "CPQAE27") && /* 1788 */
72 1.6 nathanw strcmp(aa->idstr, "ESS1869") && /* 1869 */
73 1.6 nathanw strcmp(aa->idstr, "CPQB0AB") && /* 1869 */
74 1.6 nathanw strcmp(aa->idstr, "CPQB0AC") && /* 1869 */
75 1.6 nathanw strcmp(aa->idstr, "CPQB0AD") && /* 1869 */
76 1.10 mycroft strcmp(aa->idstr, "CPQB0F1") && /* 1869 */
77 1.19 christos strcmp(aa->idstr, "ESS1878") && /* 1878 */
78 1.10 mycroft strcmp(aa->idstr, "ESS1879")) /* 1879 */
79 1.1 nathanw return (0);
80 1.1 nathanw
81 1.1 nathanw return (1);
82 1.1 nathanw }
83 1.1 nathanw
84 1.1 nathanw void
85 1.20 cegger ess_pnpbios_attach(device_t parent, device_t self, void *aux)
86 1.1 nathanw {
87 1.18 cegger struct ess_softc *sc = device_private(self);
88 1.1 nathanw struct pnpbiosdev_attach_args *aa = aux;
89 1.1 nathanw
90 1.21 tsutsui sc->sc_dev = self;
91 1.21 tsutsui
92 1.1 nathanw if (pnpbios_io_map(aa->pbt, aa->resc, 0, &sc->sc_iot, &sc->sc_ioh)) {
93 1.20 cegger aprint_error(": can't map i/o space\n");
94 1.1 nathanw return;
95 1.1 nathanw }
96 1.1 nathanw
97 1.1 nathanw sc->sc_ic = aa->ic;
98 1.1 nathanw
99 1.1 nathanw /* XXX These are only for setting chip configuration registers. */
100 1.1 nathanw pnpbios_getiobase(aa->pbt, aa->resc, 0, 0, &sc->sc_iobase);
101 1.1 nathanw
102 1.1 nathanw sc->sc_audio1.ist = IST_EDGE;
103 1.1 nathanw sc->sc_audio2.ist = IST_EDGE;
104 1.1 nathanw
105 1.4 thorpej if (pnpbios_getirqnum(aa->pbt, aa->resc, 0, &sc->sc_audio1.irq,
106 1.4 thorpej NULL)) {
107 1.20 cegger aprint_error(": can't get IRQ\n");
108 1.1 nathanw return;
109 1.1 nathanw }
110 1.1 nathanw
111 1.4 thorpej if (pnpbios_getirqnum(aa->pbt, aa->resc, 1, &sc->sc_audio2.irq,
112 1.4 thorpej NULL))
113 1.1 nathanw sc->sc_audio2.irq = -1;
114 1.1 nathanw
115 1.1 nathanw if (pnpbios_getdmachan(aa->pbt, aa->resc, 0, &sc->sc_audio1.drq)) {
116 1.20 cegger aprint_error(": can't get DMA channel\n");
117 1.1 nathanw return;
118 1.1 nathanw }
119 1.1 nathanw
120 1.1 nathanw if (pnpbios_getdmachan(aa->pbt, aa->resc, 1, &sc->sc_audio2.drq))
121 1.1 nathanw sc->sc_audio2.drq = -1;
122 1.1 nathanw
123 1.20 cegger aprint_naive("\n");
124 1.20 cegger aprint_normal("\n");
125 1.1 nathanw pnpbios_print_devres(self, aa);
126 1.1 nathanw
127 1.20 cegger aprint_normal_dev(self, "");
128 1.1 nathanw
129 1.1 nathanw if (!essmatch(sc)) {
130 1.20 cegger aprint_error_dev(self, "essmatch failed\n");
131 1.3 nathanw pnpbios_io_unmap(aa->pbt, aa->resc, 0, sc->sc_iot, sc->sc_ioh);
132 1.1 nathanw return;
133 1.1 nathanw }
134 1.1 nathanw
135 1.11 drochner essattach(sc, 0);
136 1.1 nathanw }
137