if_ep_pcmcia.c revision 1.51 1 /* $NetBSD: if_ep_pcmcia.c,v 1.51 2004/08/10 18:39:08 mycroft Exp $ */
2
3 /*-
4 * Copyright (c) 1998, 2000, 2004 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 * NASA Ames Research Center, and by Charles M. Hannum.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the NetBSD
22 * Foundation, Inc. and its contributors.
23 * 4. Neither the name of The NetBSD Foundation nor the names of its
24 * contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40 /*
41 * Copyright (c) 1997 Marc Horowitz. All rights reserved.
42 *
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
45 * are met:
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. All advertising materials mentioning features or use of this software
52 * must display the following acknowledgement:
53 * This product includes software developed by Marc Horowitz.
54 * 4. The name of the author may not be used to endorse or promote products
55 * derived from this software without specific prior written permission.
56 *
57 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
58 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
59 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
60 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
61 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
62 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
63 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
64 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
65 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
66 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
67 */
68
69 #include <sys/cdefs.h>
70 __KERNEL_RCSID(0, "$NetBSD: if_ep_pcmcia.c,v 1.51 2004/08/10 18:39:08 mycroft Exp $");
71
72 #include <sys/param.h>
73 #include <sys/systm.h>
74 #include <sys/mbuf.h>
75 #include <sys/socket.h>
76 #include <sys/ioctl.h>
77 #include <sys/errno.h>
78 #include <sys/syslog.h>
79 #include <sys/select.h>
80 #include <sys/device.h>
81
82 #include <net/if.h>
83 #include <net/if_dl.h>
84 #include <net/if_ether.h>
85 #include <net/if_media.h>
86
87 #include <machine/cpu.h>
88 #include <machine/bus.h>
89 #include <machine/intr.h>
90
91 #include <dev/mii/miivar.h>
92
93 #include <dev/ic/elink3var.h>
94 #include <dev/ic/elink3reg.h>
95
96 #include <dev/pcmcia/pcmciareg.h>
97 #include <dev/pcmcia/pcmciavar.h>
98 #include <dev/pcmcia/pcmciadevs.h>
99
100 int ep_pcmcia_match __P((struct device *, struct cfdata *, void *));
101 void ep_pcmcia_attach __P((struct device *, struct device *, void *));
102 int ep_pcmcia_detach __P((struct device *, int));
103
104 int ep_pcmcia_get_enaddr __P((struct pcmcia_tuple *, void *));
105 int ep_pcmcia_enable __P((struct ep_softc *));
106 void ep_pcmcia_disable __P((struct ep_softc *));
107
108 void ep_pcmcia_disable1 __P((struct ep_softc *));
109
110 struct ep_pcmcia_softc {
111 struct ep_softc sc_ep; /* real "ep" softc */
112
113 /* PCMCIA-specific goo */
114 struct pcmcia_io_handle sc_pcioh; /* PCMCIA i/o space info */
115 int sc_io_window; /* our i/o window */
116 struct pcmcia_function *sc_pf; /* our PCMCIA function */
117 };
118
119 CFATTACH_DECL(ep_pcmcia, sizeof(struct ep_pcmcia_softc),
120 ep_pcmcia_match, ep_pcmcia_attach, ep_pcmcia_detach, ep_activate);
121
122 const struct ep_pcmcia_product {
123 struct pcmcia_product epp_product;
124 u_short epp_chipset; /* 3Com chipset used */
125 int epp_flags; /* initial softc flags */
126 } ep_pcmcia_products[] = {
127 { { PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C562,
128 PCMCIA_CIS_INVALID },
129 ELINK_CHIPSET_3C509, 0 },
130
131 { { PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C589,
132 PCMCIA_CIS_INVALID },
133 ELINK_CHIPSET_3C509, 0 },
134
135 { { PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556,
136 PCMCIA_CIS_INVALID },
137 ELINK_CHIPSET_3C509, 0 },
138
139 { { PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556INT,
140 PCMCIA_CIS_INVALID },
141 ELINK_CHIPSET_3C509, 0 },
142
143 { { PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C574,
144 PCMCIA_CIS_INVALID },
145 ELINK_CHIPSET_ROADRUNNER, ELINK_FLAGS_MII },
146
147 { { PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CCFEM556BI,
148 PCMCIA_CIS_INVALID },
149 ELINK_CHIPSET_ROADRUNNER, ELINK_FLAGS_MII },
150
151 { { PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C1,
152 PCMCIA_CIS_INVALID },
153 ELINK_CHIPSET_3C509, 0 },
154 };
155 const size_t ep_pcmcia_nproducts =
156 sizeof(ep_pcmcia_products) / sizeof(ep_pcmcia_products[0]);
157
158 int
159 ep_pcmcia_match(parent, match, aux)
160 struct device *parent;
161 struct cfdata *match;
162 void *aux;
163 {
164 struct pcmcia_attach_args *pa = aux;
165
166 /* This is to differentiate the serial function of some cards. */
167 if (pa->pf->function != PCMCIA_FUNCTION_NETWORK)
168 return (0);
169
170 if (pcmcia_product_lookup(pa, ep_pcmcia_products, ep_pcmcia_nproducts,
171 sizeof(ep_pcmcia_products[0]), NULL))
172 return (1);
173 return (0);
174 }
175
176 int
177 ep_pcmcia_enable(sc)
178 struct ep_softc *sc;
179 {
180 struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *) sc;
181 struct pcmcia_function *pf = psc->sc_pf;
182 int error;
183
184 /* establish the interrupt. */
185 sc->sc_ih = pcmcia_intr_establish(pf, IPL_NET, epintr, sc);
186 if (!sc->sc_ih)
187 return (EIO);
188
189 error = pcmcia_function_enable(pf);
190 if (error) {
191 pcmcia_intr_disestablish(pf, sc->sc_ih);
192 sc->sc_ih = 0;
193 return (error);
194 }
195
196 if ((psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3C562) ||
197 (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556) ||
198 (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556INT)) {
199 int reg;
200
201 /* turn off the serial-disable bit */
202
203 reg = pcmcia_ccr_read(pf, PCMCIA_CCR_OPTION);
204 if (reg & 0x08) {
205 reg &= ~0x08;
206 pcmcia_ccr_write(pf, PCMCIA_CCR_OPTION, reg);
207 }
208
209 }
210
211 return (0);
212 }
213
214 void
215 ep_pcmcia_disable(sc)
216 struct ep_softc *sc;
217 {
218 struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *) sc;
219
220 pcmcia_function_disable(psc->sc_pf);
221 pcmcia_intr_disestablish(psc->sc_pf, sc->sc_ih);
222 sc->sc_ih = 0;
223 }
224
225 void
226 ep_pcmcia_attach(parent, self, aux)
227 struct device *parent, *self;
228 void *aux;
229 {
230 struct ep_pcmcia_softc *psc = (void *) self;
231 struct ep_softc *sc = &psc->sc_ep;
232 struct pcmcia_attach_args *pa = aux;
233 struct pcmcia_config_entry *cfe;
234 const struct ep_pcmcia_product *epp;
235 u_int8_t myla[ETHER_ADDR_LEN];
236 u_int8_t *enaddr = NULL;
237 int i;
238 int error;
239
240 aprint_normal("\n");
241 psc->sc_pf = pa->pf;
242
243 SIMPLEQ_FOREACH(cfe, &pa->pf->cfe_head, cfe_list) {
244 if (cfe->num_memspace != 0)
245 continue;
246 if (cfe->num_iospace != 1)
247 continue;
248
249 if (pa->product == PCMCIA_PRODUCT_3COM_3C562) {
250 /*
251 * the 3c562 can only use 0x??00-0x??7f
252 * according to the Linux driver
253 */
254
255 /*
256 * 3c562 i/o may decodes address line not only A0-3
257 * but also A7. Anyway, we must sweep at most
258 * [0x0000, 0x0100). The address higher is given by a
259 * pcmcia bridge. But pcmcia bus-space allocation
260 * function implies cards will decode 10-bit address
261 * line. So we must search [0x0000, 0x0400).
262 *
263 * XXX: We must not check the bunch of I/O space range
264 * [0x400*n, 0x300 + 0x400*n) because they are
265 * reserved for legacy ISA devices and their alias
266 * images on PC/AT architecture.
267 */
268 for (i = 0x0300; i < 0x0380; i += 0x10) {
269 if (pcmcia_io_alloc(pa->pf, i,
270 cfe->iospace[0].length,
271 cfe->iospace[0].length,
272 &psc->sc_pcioh) == 0)
273 break;
274 }
275 if (i != 0x0380)
276 break;
277 } else {
278 if (pcmcia_io_alloc(pa->pf, cfe->iospace[0].start,
279 cfe->iospace[0].length, cfe->iospace[0].length,
280 &psc->sc_pcioh) == 0)
281 break;
282 }
283 }
284 if (!cfe) {
285 aprint_error("%s: failed to allocate I/O space\n",
286 self->dv_xname);
287 goto ioalloc_failed;
288 }
289
290 sc->sc_iot = psc->sc_pcioh.iot;
291 sc->sc_ioh = psc->sc_pcioh.ioh;
292
293 /* Enable the card. */
294 pcmcia_function_init(pa->pf, cfe);
295
296 if (pcmcia_io_map(pa->pf, ((cfe->flags & PCMCIA_CFE_IO16) ?
297 PCMCIA_WIDTH_AUTO : PCMCIA_WIDTH_IO8), &psc->sc_pcioh,
298 &psc->sc_io_window)) {
299 aprint_error("%s: can't map i/o space\n", self->dv_xname);
300 goto iomap_failed;
301 }
302
303 error = ep_pcmcia_enable(sc);
304 if (error)
305 goto enable_failed;
306 sc->enabled = 1;
307
308 switch (pa->product) {
309 case PCMCIA_PRODUCT_3COM_3C562:
310 /*
311 * 3c562a-c use this; 3c562d does it in the regular way.
312 * we might want to check the revision and produce a warning
313 * in the future.
314 */
315 /* FALLTHROUGH */
316 case PCMCIA_PRODUCT_3COM_3C574:
317 case PCMCIA_PRODUCT_3COM_3CCFEM556BI:
318 /*
319 * Apparently, some 3c574s do it this way, as well.
320 */
321 if (pcmcia_scan_cis(parent, ep_pcmcia_get_enaddr, myla))
322 enaddr = myla;
323 break;
324 }
325
326 epp = pcmcia_product_lookup(pa, ep_pcmcia_products, ep_pcmcia_nproducts,
327 sizeof(ep_pcmcia_products[0]), NULL);
328 if (!epp)
329 panic("ep_pcmcia_attach: impossible");
330
331 sc->bustype = ELINK_BUS_PCMCIA;
332 sc->ep_flags = epp->epp_flags;
333
334 sc->enable = ep_pcmcia_enable;
335 sc->disable = ep_pcmcia_disable;
336
337 if (epconfig(sc, epp->epp_chipset, enaddr))
338 aprint_error("%s: couldn't configure controller\n",
339 self->dv_xname);
340
341 sc->enabled = 0;
342 ep_pcmcia_disable(sc);
343 return;
344
345 enable_failed:
346 pcmcia_io_unmap(psc->sc_pf, psc->sc_io_window);
347 iomap_failed:
348 pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
349 ioalloc_failed:
350 psc->sc_io_window = -1;
351 }
352
353 int
354 ep_pcmcia_detach(self, flags)
355 struct device *self;
356 int flags;
357 {
358 struct ep_pcmcia_softc *psc = (struct ep_pcmcia_softc *)self;
359 int rv;
360
361 if (psc->sc_io_window == -1)
362 /* Nothing to detach. */
363 return (0);
364
365 rv = ep_detach(self, flags);
366 if (rv != 0)
367 return (rv);
368
369 /* Unmap our i/o window. */
370 pcmcia_io_unmap(psc->sc_pf, psc->sc_io_window);
371
372 /* Free our i/o space. */
373 pcmcia_io_free(psc->sc_pf, &psc->sc_pcioh);
374
375 return (0);
376 }
377
378 int
379 ep_pcmcia_get_enaddr(tuple, arg)
380 struct pcmcia_tuple *tuple;
381 void *arg;
382 {
383 u_int8_t *myla = arg;
384 int i;
385
386 /* this is 3c562a-c magic */
387 if (tuple->code == 0x88) {
388 if (tuple->length < ETHER_ADDR_LEN)
389 return (0);
390
391 for (i = 0; i < ETHER_ADDR_LEN; i += 2) {
392 myla[i] = pcmcia_tuple_read_1(tuple, i + 1);
393 myla[i + 1] = pcmcia_tuple_read_1(tuple, i);
394 }
395
396 return (1);
397 }
398 return (0);
399 }
400