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