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