isapnp_machdep.c revision 1.3 1 1.3 soda /* $NetBSD: isapnp_machdep.c,v 1.3 2000/06/09 05:42:01 soda Exp $ */
2 1.1 soda /* $OpenBSD: isapnp_machdep.c,v 1.1 1997/12/27 12:13:11 niklas Exp $ */
3 1.2 soda /* NetBSD: isapnp_machdep.c,v 1.5 1997/10/04 17:32:30 thorpej Exp */
4 1.1 soda
5 1.1 soda /*-
6 1.1 soda * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
7 1.1 soda * All rights reserved.
8 1.1 soda *
9 1.1 soda * This code is derived from software contributed to The NetBSD Foundation
10 1.1 soda * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
11 1.1 soda * NASA Ames Research Center.
12 1.1 soda *
13 1.1 soda * Redistribution and use in source and binary forms, with or without
14 1.1 soda * modification, are permitted provided that the following conditions
15 1.1 soda * are met:
16 1.1 soda * 1. Redistributions of source code must retain the above copyright
17 1.1 soda * notice, this list of conditions and the following disclaimer.
18 1.1 soda * 2. Redistributions in binary form must reproduce the above copyright
19 1.1 soda * notice, this list of conditions and the following disclaimer in the
20 1.1 soda * documentation and/or other materials provided with the distribution.
21 1.1 soda * 3. All advertising materials mentioning features or use of this software
22 1.1 soda * must display the following acknowledgement:
23 1.1 soda * This product includes software developed by the NetBSD
24 1.1 soda * Foundation, Inc. and its contributors.
25 1.1 soda * 4. Neither the name of The NetBSD Foundation nor the names of its
26 1.1 soda * contributors may be used to endorse or promote products derived
27 1.1 soda * from this software without specific prior written permission.
28 1.1 soda *
29 1.1 soda * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
30 1.1 soda * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
31 1.1 soda * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
32 1.1 soda * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
33 1.1 soda * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34 1.1 soda * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35 1.1 soda * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36 1.1 soda * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
37 1.1 soda * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38 1.1 soda * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 1.1 soda * POSSIBILITY OF SUCH DAMAGE.
40 1.1 soda */
41 1.1 soda
42 1.1 soda /*
43 1.1 soda * Copyright (c) 1996 Christos Zoulas. All rights reserved.
44 1.1 soda *
45 1.1 soda * Redistribution and use in source and binary forms, with or without
46 1.1 soda * modification, are permitted provided that the following conditions
47 1.1 soda * are met:
48 1.1 soda * 1. Redistributions of source code must retain the above copyright
49 1.1 soda * notice, this list of conditions and the following disclaimer.
50 1.1 soda * 2. Redistributions in binary form must reproduce the above copyright
51 1.1 soda * notice, this list of conditions and the following disclaimer in the
52 1.1 soda * documentation and/or other materials provided with the distribution.
53 1.1 soda * 3. All advertising materials mentioning features or use of this software
54 1.1 soda * must display the following acknowledgement:
55 1.1 soda * This product includes software developed by Christos Zoulas.
56 1.1 soda * 4. The name of the author may not be used to endorse or promote products
57 1.1 soda * derived from this software without specific prior written permission.
58 1.1 soda *
59 1.1 soda * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
60 1.1 soda * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
61 1.1 soda * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
62 1.1 soda * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
63 1.1 soda * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
64 1.1 soda * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
65 1.1 soda * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
66 1.1 soda * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
67 1.1 soda * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
68 1.1 soda * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
69 1.1 soda */
70 1.1 soda
71 1.1 soda /*
72 1.1 soda * Machine-dependent portions of ISA PnP bus autoconfiguration.
73 1.1 soda *
74 1.1 soda * N.B. This file exists mostly to get around some lameness surrounding
75 1.1 soda * the PnP spec. ISA PnP registers live where some `normal' ISA
76 1.1 soda * devices do, but are e.g. write-only registers where the normal
77 1.1 soda * device has a read-only register. This breaks in the presence of
78 1.1 soda * i/o port accounting. This file takes care of mapping ISA PnP
79 1.1 soda * registers without actually allocating them in extent maps.
80 1.1 soda *
81 1.1 soda * Since this is a machine-dependent file, we make all sorts of
82 1.1 soda * assumptions about bus.h's guts. Beware!
83 1.1 soda */
84 1.1 soda
85 1.1 soda #include <sys/param.h>
86 1.1 soda #include <sys/systm.h>
87 1.1 soda #include <sys/device.h>
88 1.1 soda #include <sys/malloc.h>
89 1.1 soda
90 1.1 soda #include <machine/bus.h>
91 1.1 soda
92 1.1 soda #include <dev/isa/isapnpreg.h>
93 1.1 soda
94 1.1 soda #include <dev/isa/isavar.h>
95 1.1 soda
96 1.1 soda /* isapnp_map():
97 1.1 soda * Map I/O regions used by PnP
98 1.1 soda */
99 1.1 soda int
100 1.1 soda isapnp_map(sc)
101 1.1 soda struct isapnp_softc *sc;
102 1.1 soda {
103 1.3 soda int error;
104 1.3 soda
105 1.3 soda error = bus_space_map(sc->sc_iot, ISAPNP_ADDR, 1, &sc->sc_addr_ioh);
106 1.3 soda if (error != 0)
107 1.3 soda panic("isapnp_map: ISAPNP_ADDR map error %d\n", error);
108 1.3 soda error = bus_space_map(sc->sc_iot, ISAPNP_WRDATA, 1,
109 1.3 soda &sc->sc->sc_wrdata_ioh);
110 1.3 soda if (error != 0)
111 1.3 soda panic("isapnp_map: ISAPNP_WRDATA map error %d\n", error);
112 1.1 soda return (0);
113 1.1 soda }
114 1.1 soda
115 1.1 soda /* isapnp_unmap():
116 1.1 soda * Unmap I/O regions used by PnP
117 1.1 soda */
118 1.1 soda void
119 1.1 soda isapnp_unmap(sc)
120 1.1 soda struct isapnp_softc *sc;
121 1.1 soda {
122 1.1 soda /* Do nothing. */
123 1.1 soda }
124 1.1 soda
125 1.1 soda /* isapnp_map_readport():
126 1.1 soda * Called to map the PnP `read port', which is mapped independently
127 1.1 soda * of the `write' and `addr' ports.
128 1.1 soda *
129 1.1 soda * NOTE: assumes the caller has filled in sc->sc_read_port!
130 1.1 soda */
131 1.1 soda int
132 1.1 soda isapnp_map_readport(sc)
133 1.1 soda struct isapnp_softc *sc;
134 1.1 soda {
135 1.1 soda #ifdef _KERNEL
136 1.1 soda int error;
137 1.1 soda
138 1.1 soda /* Check if some other device has already claimed this port. */
139 1.1 soda if ((error = bus_space_map(sc->sc_iot, sc->sc_read_port, 1, 0,
140 1.1 soda &sc->sc_read_ioh)) != 0)
141 1.1 soda return error;
142 1.1 soda
143 1.1 soda /*
144 1.1 soda * XXX: We unmap the port because it can and will be used by other
145 1.1 soda * devices such as a joystick. We need a better port accounting
146 1.1 soda * scheme with read and write ports.
147 1.1 soda */
148 1.1 soda bus_space_unmap(sc->sc_iot, sc->sc_read_ioh, 1);
149 1.1 soda #endif
150 1.1 soda return 0;
151 1.1 soda }
152 1.1 soda
153 1.1 soda /* isapnp_unmap_readport():
154 1.1 soda * Pretend to unmap a previously mapped `read port'.
155 1.1 soda */
156 1.1 soda void
157 1.1 soda isapnp_unmap_readport(sc)
158 1.1 soda struct isapnp_softc *sc;
159 1.1 soda {
160 1.1 soda /* Do nothing */
161 1.1 soda }
162