Wed Jan 18 00:11:43 2012 UTC ()
Improve module dependencies, clean up old #if 0 code.


(jakllsch)
diff -r1.2 -r1.3 src/sys/dev/isa/lm_isa_common.c

cvs diff -r1.2 -r1.3 src/sys/dev/isa/lm_isa_common.c (switch to unified diff)

--- src/sys/dev/isa/lm_isa_common.c 2012/01/17 17:17:15 1.2
+++ src/sys/dev/isa/lm_isa_common.c 2012/01/18 00:11:43 1.3
@@ -1,172 +1,164 @@ @@ -1,172 +1,164 @@
1/* $NetBSD: lm_isa_common.c,v 1.2 2012/01/17 17:17:15 jakllsch Exp $ */ 1/* $NetBSD: lm_isa_common.c,v 1.3 2012/01/18 00:11:43 jakllsch Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2000 The NetBSD Foundation, Inc. 4 * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Bill Squier. 8 * by Bill Squier.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the 16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution. 17 * documentation and/or other materials provided with the distribution.
18 * 18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33__KERNEL_RCSID(0, "$NetBSD: lm_isa_common.c,v 1.2 2012/01/17 17:17:15 jakllsch Exp $"); 33__KERNEL_RCSID(0, "$NetBSD: lm_isa_common.c,v 1.3 2012/01/18 00:11:43 jakllsch Exp $");
34 34
35#include <sys/param.h> 35#include <sys/param.h>
36#include <sys/systm.h> 36#include <sys/systm.h>
37#include <sys/kernel.h> 37#include <sys/kernel.h>
38#include <sys/device.h> 38#include <sys/device.h>
39#include <sys/module.h> 39#include <sys/module.h>
40#include <sys/conf.h> 40#include <sys/conf.h>
41 41
42#include <sys/bus.h> 42#include <sys/bus.h>
43 43
44#include <dev/isa/isareg.h> 44#include <dev/isa/isareg.h>
45#include <dev/isa/isavar.h> 45#include <dev/isa/isavar.h>
46 46
47#include <dev/ic/nslm7xvar.h> 47#include <dev/ic/nslm7xvar.h>
48 48
49int lm_isa_match(device_t, cfdata_t, void *); 49int lm_isa_match(device_t, cfdata_t, void *);
50void lm_isa_attach(device_t, device_t, void *); 50void lm_isa_attach(device_t, device_t, void *);
51int lm_isa_detach(device_t, int); 51int lm_isa_detach(device_t, int);
52 52
53static uint8_t lm_isa_readreg(struct lm_softc *, int); 53static uint8_t lm_isa_readreg(struct lm_softc *, int);
54static void lm_isa_writereg(struct lm_softc *, int, int); 54static void lm_isa_writereg(struct lm_softc *, int, int);
55 55
56struct lm_isa_softc { 56struct lm_isa_softc {
57 struct lm_softc lmsc; 57 struct lm_softc lmsc;
58 bus_space_tag_t lm_iot; 58 bus_space_tag_t lm_iot;
59 bus_space_handle_t lm_ioh; 59 bus_space_handle_t lm_ioh;
60}; 60};
61 61
62#if 0 
63CFATTACH_DECL_NEW(lm_isa, sizeof(struct lm_isa_softc), 
64 lm_isa_match, lm_isa_attach, lm_isa_detach, NULL); 
65 
66CFATTACH_DECL_NEW(lm_wbsio, sizeof(struct lm_isa_softc), 
67 lm_isa_match, lm_isa_attach, lm_isa_detach, NULL); 
68#endif 
69 
70int 62int
71lm_isa_match(device_t parent, cfdata_t match, void *aux) 63lm_isa_match(device_t parent, cfdata_t match, void *aux)
72{ 64{
73 bus_space_handle_t ioh; 65 bus_space_handle_t ioh;
74 struct isa_attach_args *ia = aux; 66 struct isa_attach_args *ia = aux;
75 struct lm_isa_softc sc; 67 struct lm_isa_softc sc;
76 int rv; 68 int rv;
77 69
78 /* Must supply an address */ 70 /* Must supply an address */
79 if (ia->ia_nio < 1) 71 if (ia->ia_nio < 1)
80 return 0; 72 return 0;
81 73
82 if (ISA_DIRECT_CONFIG(ia)) 74 if (ISA_DIRECT_CONFIG(ia))
83 return 0; 75 return 0;
84 76
85 if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT) 77 if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
86 return 0; 78 return 0;
87 79
88 if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 8, 0, &ioh)) 80 if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 8, 0, &ioh))
89 return 0; 81 return 0;
90 82
91 83
92 /* Bus independent probe */ 84 /* Bus independent probe */
93 sc.lm_iot = ia->ia_iot; 85 sc.lm_iot = ia->ia_iot;
94 sc.lm_ioh = ioh; 86 sc.lm_ioh = ioh;
95 sc.lmsc.lm_writereg = lm_isa_writereg; 87 sc.lmsc.lm_writereg = lm_isa_writereg;
96 sc.lmsc.lm_readreg = lm_isa_readreg; 88 sc.lmsc.lm_readreg = lm_isa_readreg;
97 rv = lm_probe(&sc.lmsc); 89 rv = lm_probe(&sc.lmsc);
98 90
99 bus_space_unmap(ia->ia_iot, ioh, 8); 91 bus_space_unmap(ia->ia_iot, ioh, 8);
100 92
101 if (rv) { 93 if (rv) {
102 ia->ia_nio = 1; 94 ia->ia_nio = 1;
103 ia->ia_io[0].ir_size = 8; 95 ia->ia_io[0].ir_size = 8;
104 96
105 ia->ia_niomem = 0; 97 ia->ia_niomem = 0;
106 ia->ia_nirq = 0; 98 ia->ia_nirq = 0;
107 ia->ia_ndrq = 0; 99 ia->ia_ndrq = 0;
108 } 100 }
109 101
110 return rv; 102 return rv;
111} 103}
112 104
113 105
114void 106void
115lm_isa_attach(device_t parent, device_t self, void *aux) 107lm_isa_attach(device_t parent, device_t self, void *aux)
116{ 108{
117 struct lm_isa_softc *sc = device_private(self); 109 struct lm_isa_softc *sc = device_private(self);
118 struct isa_attach_args *ia = aux; 110 struct isa_attach_args *ia = aux;
119 111
120 sc->lm_iot = ia->ia_iot; 112 sc->lm_iot = ia->ia_iot;
121 113
122 if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 8, 0, 114 if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 8, 0,
123 &sc->lm_ioh)) { 115 &sc->lm_ioh)) {
124 aprint_error(": can't map i/o space\n"); 116 aprint_error(": can't map i/o space\n");
125 return; 117 return;
126 } 118 }
127 119
128 /* Bus-independent attachment */ 120 /* Bus-independent attachment */
129 sc->lmsc.sc_dev = self; 121 sc->lmsc.sc_dev = self;
130 sc->lmsc.lm_writereg = lm_isa_writereg; 122 sc->lmsc.lm_writereg = lm_isa_writereg;
131 sc->lmsc.lm_readreg = lm_isa_readreg; 123 sc->lmsc.lm_readreg = lm_isa_readreg;
132 124
133 lm_attach(&sc->lmsc); 125 lm_attach(&sc->lmsc);
134} 126}
135 127
136int 128int
137lm_isa_detach(device_t self, int flags) 129lm_isa_detach(device_t self, int flags)
138{ 130{
139 struct lm_isa_softc *sc = device_private(self); 131 struct lm_isa_softc *sc = device_private(self);
140 132
141 lm_detach(&sc->lmsc); 133 lm_detach(&sc->lmsc);
142 bus_space_unmap(sc->lm_iot, sc->lm_ioh, 8); 134 bus_space_unmap(sc->lm_iot, sc->lm_ioh, 8);
143 return 0; 135 return 0;
144} 136}
145 137
146static uint8_t 138static uint8_t
147lm_isa_readreg(struct lm_softc *lmsc, int reg) 139lm_isa_readreg(struct lm_softc *lmsc, int reg)
148{ 140{
149 struct lm_isa_softc *sc = (struct lm_isa_softc *)lmsc; 141 struct lm_isa_softc *sc = (struct lm_isa_softc *)lmsc;
150 142
151 bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_ADDR, reg); 143 bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_ADDR, reg);
152 return bus_space_read_1(sc->lm_iot, sc->lm_ioh, LMC_DATA); 144 return bus_space_read_1(sc->lm_iot, sc->lm_ioh, LMC_DATA);
153} 145}
154 146
155static void 147static void
156lm_isa_writereg(struct lm_softc *lmsc, int reg, int val) 148lm_isa_writereg(struct lm_softc *lmsc, int reg, int val)
157{ 149{
158 struct lm_isa_softc *sc = (struct lm_isa_softc *)lmsc; 150 struct lm_isa_softc *sc = (struct lm_isa_softc *)lmsc;
159 151
160 bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_ADDR, reg); 152 bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_ADDR, reg);
161 bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_DATA, val); 153 bus_space_write_1(sc->lm_iot, sc->lm_ioh, LMC_DATA, val);
162} 154}
163 155
164MODULE(MODULE_CLASS_DRIVER, lm_isa_common, NULL); 156MODULE(MODULE_CLASS_DRIVER, lm_isa_common, "lm");
165 157
166static int 158static int
167lm_isa_common_modcmd(modcmd_t cmd, void *priv) 159lm_isa_common_modcmd(modcmd_t cmd, void *priv)
168{ 160{
169 if ((cmd == MODULE_CMD_INIT) || (cmd == MODULE_CMD_FINI)) 161 if ((cmd == MODULE_CMD_INIT) || (cmd == MODULE_CMD_FINI))
170 return 0; 162 return 0;
171 return ENOTTY; 163 return ENOTTY;
172} 164}