if_ne_pcmcia.c revision 1.160.30.1 1 1.160.30.1 martin /* $NetBSD: if_ne_pcmcia.c,v 1.160.30.1 2020/04/08 14:08:11 martin Exp $ */
2 1.2 thorpej
3 1.2 thorpej /*
4 1.2 thorpej * Copyright (c) 1997 Marc Horowitz. All rights reserved.
5 1.2 thorpej *
6 1.2 thorpej * Redistribution and use in source and binary forms, with or without
7 1.2 thorpej * modification, are permitted provided that the following conditions
8 1.2 thorpej * are met:
9 1.2 thorpej * 1. Redistributions of source code must retain the above copyright
10 1.2 thorpej * notice, this list of conditions and the following disclaimer.
11 1.2 thorpej * 2. Redistributions in binary form must reproduce the above copyright
12 1.2 thorpej * notice, this list of conditions and the following disclaimer in the
13 1.2 thorpej * documentation and/or other materials provided with the distribution.
14 1.2 thorpej * 3. All advertising materials mentioning features or use of this software
15 1.2 thorpej * must display the following acknowledgement:
16 1.2 thorpej * This product includes software developed by Marc Horowitz.
17 1.2 thorpej * 4. The name of the author may not be used to endorse or promote products
18 1.2 thorpej * derived from this software without specific prior written permission.
19 1.2 thorpej *
20 1.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.2 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.2 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.2 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.2 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.2 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.2 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.2 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.2 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.2 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.2 thorpej */
31 1.83 lukem
32 1.83 lukem #include <sys/cdefs.h>
33 1.160.30.1 martin __KERNEL_RCSID(0, "$NetBSD: if_ne_pcmcia.c,v 1.160.30.1 2020/04/08 14:08:11 martin Exp $");
34 1.2 thorpej
35 1.2 thorpej #include <sys/param.h>
36 1.2 thorpej #include <sys/systm.h>
37 1.2 thorpej #include <sys/select.h>
38 1.2 thorpej #include <sys/device.h>
39 1.2 thorpej #include <sys/socket.h>
40 1.2 thorpej
41 1.2 thorpej #include <net/if_types.h>
42 1.2 thorpej #include <net/if.h>
43 1.5 thorpej #include <net/if_media.h>
44 1.2 thorpej #include <net/if_ether.h>
45 1.2 thorpej
46 1.150 ad #include <sys/bus.h>
47 1.150 ad #include <sys/intr.h>
48 1.2 thorpej
49 1.2 thorpej #include <dev/pcmcia/pcmciareg.h>
50 1.2 thorpej #include <dev/pcmcia/pcmciavar.h>
51 1.15 christos #include <dev/pcmcia/pcmciadevs.h>
52 1.2 thorpej
53 1.2 thorpej #include <dev/ic/dp8390reg.h>
54 1.2 thorpej #include <dev/ic/dp8390var.h>
55 1.2 thorpej
56 1.2 thorpej #include <dev/ic/ne2000reg.h>
57 1.2 thorpej #include <dev/ic/ne2000var.h>
58 1.2 thorpej
59 1.22 thorpej #include <dev/ic/rtl80x9reg.h>
60 1.22 thorpej #include <dev/ic/rtl80x9var.h>
61 1.22 thorpej
62 1.75 thorpej #include <dev/ic/dl10019var.h>
63 1.75 thorpej
64 1.80 enami #include <dev/ic/ax88190reg.h>
65 1.80 enami #include <dev/ic/ax88190var.h>
66 1.80 enami
67 1.152 cube int ne_pcmcia_match(device_t, cfdata_t , void *);
68 1.138 perry int ne_pcmcia_validate_config(struct pcmcia_config_entry *);
69 1.152 cube void ne_pcmcia_attach(device_t, device_t, void *);
70 1.152 cube int ne_pcmcia_detach(device_t, int);
71 1.2 thorpej
72 1.138 perry int ne_pcmcia_enable(struct dp8390_softc *);
73 1.138 perry void ne_pcmcia_disable(struct dp8390_softc *);
74 1.2 thorpej
75 1.2 thorpej struct ne_pcmcia_softc {
76 1.2 thorpej struct ne2000_softc sc_ne2000; /* real "ne2000" softc */
77 1.2 thorpej
78 1.129 mycroft void *sc_ih; /* interrupt handle */
79 1.129 mycroft
80 1.2 thorpej struct pcmcia_function *sc_pf; /* our PCMCIA function */
81 1.129 mycroft int sc_state;
82 1.129 mycroft #define NE_PCMCIA_ATTACHED 3
83 1.2 thorpej };
84 1.2 thorpej
85 1.138 perry u_int8_t *ne_pcmcia_get_enaddr(struct ne_pcmcia_softc *, int,
86 1.138 perry u_int8_t [ETHER_ADDR_LEN]);
87 1.138 perry u_int8_t *ne_pcmcia_dl10019_get_enaddr(struct ne_pcmcia_softc *,
88 1.138 perry u_int8_t [ETHER_ADDR_LEN]);
89 1.52 itojun
90 1.152 cube CFATTACH_DECL_NEW(ne_pcmcia, sizeof(struct ne_pcmcia_softc),
91 1.99 thorpej ne_pcmcia_match, ne_pcmcia_attach, ne_pcmcia_detach, dp8390_activate);
92 1.2 thorpej
93 1.67 jdolecek static const struct ne2000dev {
94 1.4 enami int32_t manufacturer;
95 1.4 enami int32_t product;
96 1.140 christos const char *cis_info[4];
97 1.2 thorpej int function;
98 1.2 thorpej int enet_maddr;
99 1.2 thorpej unsigned char enet_vendor[3];
100 1.39 enami int flags;
101 1.39 enami #define NE2000DVF_DL10019 0x0001 /* chip is D-Link DL10019 */
102 1.55 enami #define NE2000DVF_AX88190 0x0002 /* chip is ASIX AX88190 */
103 1.2 thorpej } ne2000devs[] = {
104 1.117 mycroft { PCMCIA_VENDOR_EDIMAX, PCMCIA_PRODUCT_EDIMAX_EP4000A,
105 1.123 mycroft PCMCIA_CIS_INVALID,
106 1.144 christos 0, -1, { 0x00, 0xa0, 0x0c }, 0 },
107 1.85 aymeric
108 1.146 jmcneill { PCMCIA_VENDOR_EDIMAX, PCMCIA_PRODUCT_EDIMAX_EP4101,
109 1.146 jmcneill PCMCIA_CIS_INVALID,
110 1.146 jmcneill 0, -1, { 0x00, 0x90, 0xcc }, NE2000DVF_AX88190 },
111 1.146 jmcneill
112 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
113 1.69 aymeric PCMCIA_CIS_SYNERGY21_S21810,
114 1.144 christos 0, -1, { 0x00, 0x48, 0x54 }, 0 },
115 1.69 aymeric
116 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
117 1.37 is PCMCIA_CIS_AMBICOM_AMB8002T,
118 1.144 christos 0, -1, { 0x00, 0x10, 0x7a }, 0 },
119 1.37 is
120 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
121 1.119 mycroft PCMCIA_CIS_AMBICOM_AMB8110,
122 1.119 mycroft 0, -1, { 0x00, 0x10, 0x7a }, NE2000DVF_AX88190 },
123 1.119 mycroft
124 1.119 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
125 1.15 christos PCMCIA_CIS_PREMAX_PE200,
126 1.144 christos 0, 0x07f0, { 0x00, 0x20, 0xe0 }, 0 },
127 1.15 christos
128 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
129 1.118 mycroft PCMCIA_CIS_PREMAX_PE200,
130 1.144 christos 0, -1, { 0x00, 0x20, 0xe0 }, 0 },
131 1.118 mycroft
132 1.118 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
133 1.19 veego PCMCIA_CIS_PLANET_SMARTCOM2000,
134 1.144 christos 0, 0xff0, { 0x00, 0x00, 0xe8 }, 0 },
135 1.19 veego
136 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
137 1.19 veego PCMCIA_CIS_DLINK_DE660,
138 1.144 christos 0, -1, { 0x00, 0x80, 0xc8 }, 0 },
139 1.79 christos
140 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
141 1.79 christos PCMCIA_CIS_DLINK_DE660PLUS,
142 1.144 christos 0, -1, { 0x00, 0x80, 0xc8 }, 0 },
143 1.59 tron
144 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
145 1.59 tron PCMCIA_CIS_RPTI_EP400,
146 1.144 christos 0, 0x110, { 0x00, 0x40, 0x95 }, 0 },
147 1.19 veego
148 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
149 1.19 veego PCMCIA_CIS_RPTI_EP401,
150 1.144 christos 0, -1, { 0x00, 0x40, 0x95 }, 0 },
151 1.19 veego
152 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
153 1.19 veego PCMCIA_CIS_ACCTON_EN2212,
154 1.144 christos 0, 0x0ff0, { 0x00, 0x00, 0xe8 }, 0 },
155 1.117 mycroft
156 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
157 1.96 bouyer PCMCIA_CIS_ACCTON_EN2216,
158 1.144 christos 0, -1, { 0x00, 0x00, 0xe8 }, 0 },
159 1.29 thorpej
160 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
161 1.29 thorpej PCMCIA_CIS_SVEC_COMBOCARD,
162 1.144 christos 0, -1, { 0x00, 0xe0, 0x98 }, 0 },
163 1.34 augustss
164 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
165 1.31 marc PCMCIA_CIS_SVEC_LANCARD,
166 1.144 christos 0, 0x7f0, { 0x00, 0xc0, 0x6c }, 0 },
167 1.19 veego
168 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_EPSON_EEN10B,
169 1.45 danw PCMCIA_CIS_EPSON_EEN10B,
170 1.144 christos 0, 0xff0, { 0x00, 0x00, 0x48 }, 0 },
171 1.77 christos
172 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
173 1.108 uwe PCMCIA_CIS_TAMARACK_ETHERNET,
174 1.144 christos 0, -1, { 0x00, 0x00, 0x00 }, 0 },
175 1.108 uwe
176 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
177 1.77 christos PCMCIA_CIS_CNET_NE2000,
178 1.144 christos 0, -1, { 0x00, 0x80, 0xad }, 0 },
179 1.81 christos
180 1.119 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
181 1.119 mycroft PCMCIA_CIS_GENIUS_ME3000II,
182 1.144 christos 0, -1, { 0x00, 0x40, 0x95 }, 0 },
183 1.119 mycroft
184 1.119 mycroft
185 1.19 veego /*
186 1.19 veego * You have to add new entries which contains
187 1.139 perry * PCMCIA_VENDOR_INVALID and/or PCMCIA_PRODUCT_INVALID
188 1.19 veego * in front of this comment.
189 1.19 veego *
190 1.19 veego * There are cards which use a generic vendor and product id but needs
191 1.19 veego * a different handling depending on the cis_info, so ne2000_match
192 1.19 veego * needs a table where the exceptions comes first and then the normal
193 1.19 veego * product and vendor entries.
194 1.19 veego */
195 1.19 veego
196 1.117 mycroft { PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_INFOMOVER,
197 1.123 mycroft PCMCIA_CIS_INVALID,
198 1.144 christos 0, 0x0ff0, { 0xff, 0xff, 0xff }, 0 },
199 1.15 christos
200 1.117 mycroft { PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_ECARD_1,
201 1.123 mycroft PCMCIA_CIS_INVALID,
202 1.144 christos 0, -1, { 0x00, 0x80, 0xc8 }, 0 },
203 1.24 itohy
204 1.117 mycroft { PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_COMBO_ECARD,
205 1.123 mycroft PCMCIA_CIS_INVALID,
206 1.123 mycroft 0, -1, { 0xff, 0xff, 0xff }, NE2000DVF_DL10019 },
207 1.46 mycroft
208 1.117 mycroft { PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_COMBO_ECARD,
209 1.123 mycroft PCMCIA_CIS_INVALID,
210 1.123 mycroft 0, -1, { 0xff, 0xff, 0xff }, NE2000DVF_AX88190 },
211 1.56 enami
212 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
213 1.86 is PCMCIA_CIS_LANTECH_FASTNETTX,
214 1.86 is 0, -1, { 0x00, 0x04, 0x1c }, NE2000DVF_AX88190 },
215 1.86 is
216 1.117 mycroft { PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_ETHERFAST,
217 1.123 mycroft PCMCIA_CIS_INVALID,
218 1.117 mycroft 0, -1, { 0xff, 0xff, 0xff }, NE2000DVF_DL10019 },
219 1.46 mycroft
220 1.117 mycroft { PCMCIA_VENDOR_NETGEAR, PCMCIA_PRODUCT_NETGEAR_FA410TXC,
221 1.123 mycroft PCMCIA_CIS_INVALID,
222 1.123 mycroft 0, -1, { 0xff, 0xff, 0xff }, NE2000DVF_DL10019 },
223 1.123 mycroft
224 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
225 1.110 cube PCMCIA_CIS_DLINK_DFE670TXD,
226 1.117 mycroft 0, -1, { 0xff, 0xff, 0xff }, NE2000DVF_DL10019 },
227 1.110 cube
228 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
229 1.65 msaitoh PCMCIA_CIS_MELCO_LPC2_TX,
230 1.65 msaitoh 0, -1, { 0x00, 0x40, 0x26 }, NE2000DVF_DL10019 },
231 1.65 msaitoh
232 1.117 mycroft { PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_COMBO_ECARD,
233 1.123 mycroft PCMCIA_CIS_INVALID,
234 1.144 christos 0, -1, { 0x00, 0x80, 0xc8 }, 0 },
235 1.17 thorpej
236 1.117 mycroft { PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_TRUST_COMBO_ECARD,
237 1.123 mycroft PCMCIA_CIS_INVALID,
238 1.144 christos 0, 0x0120, { 0x20, 0x04, 0x49 }, 0 },
239 1.20 jtk
240 1.20 jtk /* Although the comments above say to put VENDOR/PRODUCT INVALID IDs
241 1.20 jtk above this list, we need to keep this one below the ECARD_1, or else
242 1.20 jtk both will match the same more-generic entry rather than the more
243 1.20 jtk specific one above with proper vendor and product IDs. */
244 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
245 1.20 jtk PCMCIA_CIS_LINKSYS_ECARD_2,
246 1.144 christos 0, -1, { 0x00, 0x80, 0xc8 }, 0 },
247 1.24 itohy
248 1.24 itohy /*
249 1.24 itohy * D-Link DE-650 has many minor versions:
250 1.24 itohy *
251 1.24 itohy * CIS information Manufacturer Product Note
252 1.24 itohy * 1 "D-Link, DE-650" INVALID INVALID white card
253 1.24 itohy * 2 "D-Link, DE-650, Ver 01.00" INVALID INVALID became bare metal
254 1.24 itohy * 3 "D-Link, DE-650, Ver 01.00" 0x149 0x265 minor change in look
255 1.24 itohy * 4 "D-Link, DE-650, Ver 01.00" 0x149 0x265 collision LED added
256 1.24 itohy *
257 1.24 itohy * While the 1st and the 2nd types should use the "D-Link DE-650" entry,
258 1.24 itohy * the 3rd and the 4th types should use the "Linksys EtherCard" entry.
259 1.160.30.1 martin * Therefore, this entry must be below the LINKSYS_ECARD_1. --itohy
260 1.24 itohy */
261 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
262 1.24 itohy PCMCIA_CIS_DLINK_DE650,
263 1.144 christos 0, 0x0040, { 0x00, 0x80, 0xc8 }, 0 },
264 1.15 christos
265 1.44 enami /*
266 1.44 enami * IO-DATA PCLA/TE and later version of PCLA/T has valid
267 1.44 enami * vendor/product ID and it is possible to read MAC address
268 1.44 enami * using standard I/O ports. It also read from CIS offset 0x01c0.
269 1.44 enami * On the other hand, earlier version of PCLA/T doesn't have valid
270 1.44 enami * vendor/product ID and MAC address must be read from CIS offset
271 1.44 enami * 0x0ff0 (i.e., usual ne2000 way to read it doesn't work).
272 1.44 enami * And CIS information of earlier and later version of PCLA/T are
273 1.44 enami * same except fourth element. So, for now, we place the entry for
274 1.44 enami * PCLA/TE (and later version of PCLA/T) followed by entry
275 1.44 enami * for the earlier version of PCLA/T (or, modify to match all CIS
276 1.44 enami * information and have three or more individual entries).
277 1.44 enami */
278 1.117 mycroft { PCMCIA_VENDOR_IODATA, PCMCIA_PRODUCT_IODATA_PCLATE,
279 1.123 mycroft PCMCIA_CIS_INVALID,
280 1.144 christos 0, -1, { 0xff, 0xff, 0xff }, 0 },
281 1.44 enami
282 1.145 jmcneill { PCMCIA_VENDOR_IODATA3, PCMCIA_PRODUCT_IODATA3_PCETTXR,
283 1.145 jmcneill PCMCIA_CIS_IODATA3_PCETTXR,
284 1.145 jmcneill 0, -1, { 0x00, 0xa0, 0xb0 }, NE2000DVF_DL10019 },
285 1.145 jmcneill
286 1.44 enami /*
287 1.44 enami * This entry should be placed after above PCLA-TE entry.
288 1.44 enami * See above comments for detail.
289 1.44 enami */
290 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
291 1.15 christos PCMCIA_CIS_IODATA_PCLAT,
292 1.144 christos 0, 0x0ff0, { 0x00, 0xa0, 0xb0 }, 0 },
293 1.15 christos
294 1.117 mycroft { PCMCIA_VENDOR_DAYNA, PCMCIA_PRODUCT_DAYNA_COMMUNICARD_E_1,
295 1.123 mycroft PCMCIA_CIS_INVALID,
296 1.144 christos 0, 0x0110, { 0x00, 0x80, 0x19 }, 0 },
297 1.18 dbj
298 1.117 mycroft { PCMCIA_VENDOR_DAYNA, PCMCIA_PRODUCT_DAYNA_COMMUNICARD_E_2,
299 1.123 mycroft PCMCIA_CIS_INVALID,
300 1.144 christos 0, -1, { 0x00, 0x80, 0x19 }, 0 },
301 1.28 thorpej
302 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
303 1.159 nonaka PCMCIA_CIS_COREGA_ETHER_CF_TD,
304 1.159 nonaka 0, -1, { 0x00, 0x00, 0xf4 }, 0 },
305 1.159 nonaka
306 1.159 nonaka { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
307 1.38 enami PCMCIA_CIS_COREGA_ETHER_PCC_T,
308 1.144 christos 0, -1, { 0x00, 0x00, 0xf4 }, 0 },
309 1.82 mjl
310 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
311 1.82 mjl PCMCIA_CIS_COREGA_ETHER_PCC_TD,
312 1.144 christos 0, -1, { 0x00, 0x00, 0xf4 }, 0 },
313 1.107 hamajima
314 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
315 1.107 hamajima PCMCIA_CIS_COREGA_ETHER_PCC_TL,
316 1.144 christos 0, -1, { 0x00, 0x00, 0xf4 }, 0 },
317 1.38 enami
318 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
319 1.38 enami PCMCIA_CIS_COREGA_ETHER_II_PCC_T,
320 1.144 christos 0, -1, { 0x00, 0x00, 0xf4 }, 0 },
321 1.91 itojun
322 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
323 1.91 itojun PCMCIA_CIS_COREGA_ETHER_II_PCC_TD,
324 1.144 christos 0, -1, { 0x00, 0x00, 0xf4 }, 0 },
325 1.42 jun
326 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
327 1.42 jun PCMCIA_CIS_COREGA_FAST_ETHER_PCC_TX,
328 1.42 jun 0, -1, { 0x00, 0x00, 0xf4 }, NE2000DVF_DL10019 },
329 1.73 ichiro
330 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
331 1.73 ichiro PCMCIA_CIS_COREGA_FETHER_PCC_TXF,
332 1.73 ichiro 0, -1, { 0x00, 0x90, 0x99 }, NE2000DVF_DL10019 },
333 1.71 ichiro
334 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
335 1.71 ichiro PCMCIA_CIS_COREGA_FETHER_PCC_TXD,
336 1.144 christos 0, -1, { 0x00, 0x90, 0x99 }, 0 },
337 1.40 jun
338 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
339 1.114 itohy PCMCIA_CIS_COREGA_FETHER_II_PCC_TXD,
340 1.123 mycroft 0, -1, { 0x00, 0x90, 0x99 }, NE2000DVF_AX88190 },
341 1.114 itohy
342 1.155 jnemeth { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
343 1.155 jnemeth PCMCIA_CIS_COREGA_LAPCCTXD,
344 1.155 jnemeth 0, -1, { 0x00, 0x90, 0x99 }, 0 },
345 1.155 jnemeth
346 1.117 mycroft { PCMCIA_VENDOR_COMPEX, PCMCIA_PRODUCT_COMPEX_LINKPORT_ENET_B,
347 1.123 mycroft PCMCIA_CIS_INVALID,
348 1.144 christos 0, 0x01c0, { 0xff, 0xff, 0xff }, 0 },
349 1.35 christos
350 1.117 mycroft { PCMCIA_VENDOR_SMC, PCMCIA_PRODUCT_SMC_EZCARD,
351 1.123 mycroft PCMCIA_CIS_INVALID,
352 1.144 christos 0, 0x01c0, { 0x00, 0xe0, 0x29 }, 0 },
353 1.100 kanaoka
354 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
355 1.100 kanaoka PCMCIA_CIS_SMC_8041,
356 1.144 christos 0, -1, { 0x00, 0x04, 0xe2 }, 0 },
357 1.43 jun
358 1.117 mycroft { PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_EA_ETHER,
359 1.123 mycroft PCMCIA_CIS_INVALID,
360 1.144 christos 0, -1, { 0x00, 0xc0, 0x1b }, 0 },
361 1.72 jhawk
362 1.117 mycroft { PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_LP_ETHER_CF,
363 1.123 mycroft PCMCIA_CIS_INVALID,
364 1.144 christos 0, -1, { 0x00, 0xc0, 0x1b }, 0 },
365 1.102 martin
366 1.117 mycroft { PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_LP_ETH_10_100_CF,
367 1.123 mycroft PCMCIA_CIS_INVALID,
368 1.102 martin 0, -1, { 0x00, 0xe0, 0x98 }, NE2000DVF_DL10019 },
369 1.66 toddpw
370 1.117 mycroft { PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_LP_ETHER,
371 1.123 mycroft PCMCIA_CIS_INVALID,
372 1.144 christos 0, -1, { 0x00, 0xc0, 0x1b }, 0 },
373 1.28 thorpej
374 1.117 mycroft { PCMCIA_VENDOR_KINGSTON, PCMCIA_PRODUCT_KINGSTON_KNE2,
375 1.123 mycroft PCMCIA_CIS_INVALID,
376 1.144 christos 0, -1, { 0x00, 0xc0, 0xf0 }, 0 },
377 1.76 toddpw
378 1.117 mycroft { PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CFE_10,
379 1.123 mycroft PCMCIA_CIS_INVALID,
380 1.144 christos 0, -1, { 0x00, 0x10, 0xa4 }, 0 },
381 1.54 enami
382 1.117 mycroft { PCMCIA_VENDOR_MELCO, PCMCIA_PRODUCT_MELCO_LPC3_TX,
383 1.123 mycroft PCMCIA_CIS_INVALID,
384 1.117 mycroft 0, -1, { 0xff, 0xff, 0xff }, NE2000DVF_AX88190 },
385 1.116 mycroft
386 1.123 mycroft { PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_LPC_CF_CLT,
387 1.123 mycroft PCMCIA_CIS_INVALID,
388 1.144 christos 0, -1, { 0x00, 0x07, 0x40 }, 0 },
389 1.58 uch
390 1.123 mycroft { PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_LPC3_CLT,
391 1.123 mycroft PCMCIA_CIS_INVALID,
392 1.144 christos 0, -1, { 0x00, 0x07, 0x40 }, 0 },
393 1.121 enami
394 1.117 mycroft { PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_LPC4_CLX,
395 1.123 mycroft PCMCIA_CIS_INVALID,
396 1.123 mycroft 0, -1, { 0x00, 0x40, 0xfa }, NE2000DVF_AX88190 },
397 1.104 christos
398 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
399 1.58 uch PCMCIA_CIS_BILLIONTON_LNT10TN,
400 1.144 christos 0, -1, { 0x00, 0x00, 0x00 }, 0 },
401 1.101 christos
402 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
403 1.101 christos PCMCIA_CIS_BILLIONTON_CFLT10N,
404 1.144 christos 0, -1, { 0x00, 0x00, 0x00 }, 0 },
405 1.60 scw
406 1.117 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
407 1.60 scw PCMCIA_CIS_NDC_ND5100_E,
408 1.144 christos 0, -1, { 0x00, 0x80, 0xc6 }, 0 },
409 1.65 msaitoh
410 1.117 mycroft { PCMCIA_VENDOR_TELECOMDEVICE, PCMCIA_PRODUCT_TELECOMDEVICE_TCD_HPC100,
411 1.123 mycroft PCMCIA_CIS_INVALID,
412 1.65 msaitoh 0, -1, { 0x00, 0x40, 0x26 }, NE2000DVF_AX88190 },
413 1.65 msaitoh
414 1.117 mycroft { PCMCIA_VENDOR_MACNICA, PCMCIA_PRODUCT_MACNICA_ME1_JEIDA,
415 1.123 mycroft PCMCIA_CIS_INVALID,
416 1.144 christos 0, 0x00b8, { 0x08, 0x00, 0x42 }, 0 },
417 1.90 chris
418 1.117 mycroft { PCMCIA_VENDOR_NETGEAR, PCMCIA_PRODUCT_NETGEAR_FA411,
419 1.123 mycroft PCMCIA_CIS_INVALID,
420 1.144 christos 0, -1, { 0x00, 0x40, 0xf4 }, 0 },
421 1.94 christos
422 1.123 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
423 1.94 christos PCMCIA_CIS_DYNALINK_L10C,
424 1.144 christos 0, -1, { 0x00, 0x00, 0x00 }, 0 },
425 1.55 enami
426 1.123 mycroft { PCMCIA_VENDOR_ALLIEDTELESIS, PCMCIA_PRODUCT_ALLIEDTELESIS_LA_PCM,
427 1.123 mycroft PCMCIA_CIS_INVALID,
428 1.144 christos 0, 0x0ff0, { 0x00, 0x00, 0xf4 }, 0 },
429 1.123 mycroft
430 1.123 mycroft { PCMCIA_VENDOR_NEXTCOM, PCMCIA_PRODUCT_NEXTCOM_NEXTHAWK,
431 1.123 mycroft PCMCIA_CIS_INVALID,
432 1.144 christos 0, -1, { 0x00, 0x40, 0xb4 }, 0 },
433 1.123 mycroft
434 1.142 christos { PCMCIA_VENDOR_BELKIN, PCMCIA_PRODUCT_BELKIN_F5D5020,
435 1.142 christos PCMCIA_CIS_BELKIN_F5D5020,
436 1.142 christos 0, -1, { 0x00, 0x30, 0xbd } , NE2000DVF_AX88190 },
437 1.142 christos
438 1.2 thorpej #if 0
439 1.2 thorpej /* the rest of these are stolen from the linux pcnet pcmcia device
440 1.2 thorpej driver. Since I don't know the manfid or cis info strings for
441 1.2 thorpej any of them, they're not compiled in until I do. */
442 1.2 thorpej { "APEX MultiCard",
443 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
444 1.144 christos 0x03f4, { 0x00, 0x20, 0xe5 }, 0 },
445 1.2 thorpej { "ASANTE FriendlyNet",
446 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
447 1.144 christos 0x4910, { 0x00, 0x00, 0x94 }, 0 },
448 1.2 thorpej { "Danpex EN-6200P2",
449 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
450 1.144 christos 0x0110, { 0x00, 0x40, 0xc7 }, 0 },
451 1.2 thorpej { "DataTrek NetCard",
452 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
453 1.144 christos 0x0ff0, { 0x00, 0x20, 0xe8 }, 0 },
454 1.2 thorpej { "EP-210 Ethernet",
455 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
456 1.144 christos 0x0110, { 0x00, 0x40, 0x33 }, 0 },
457 1.2 thorpej { "ELECOM Laneed LD-CDWA",
458 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
459 1.144 christos 0x00b8, { 0x08, 0x00, 0x42 }, 0 },
460 1.2 thorpej { "Grey Cell GCS2220",
461 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
462 1.144 christos 0x0000, { 0x00, 0x47, 0x43 }, 0 },
463 1.2 thorpej { "Hypertec Ethernet",
464 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
465 1.144 christos 0x01c0, { 0x00, 0x40, 0x4c }, 0 },
466 1.2 thorpej { "IBM CCAE",
467 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
468 1.144 christos 0x0ff0, { 0x08, 0x00, 0x5a }, 0 },
469 1.2 thorpej { "IBM CCAE",
470 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
471 1.144 christos 0x0ff0, { 0x00, 0x04, 0xac }, 0 },
472 1.2 thorpej { "IBM CCAE",
473 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
474 1.144 christos 0x0ff0, { 0x00, 0x06, 0x29 }, 0 },
475 1.2 thorpej { "IBM FME",
476 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
477 1.144 christos 0x0374, { 0x00, 0x04, 0xac }, 0 },
478 1.2 thorpej { "IBM FME",
479 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
480 1.144 christos 0x0374, { 0x08, 0x00, 0x5a }, 0 },
481 1.2 thorpej { "Katron PE-520",
482 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
483 1.144 christos 0x0110, { 0x00, 0x40, 0xf6 }, 0 },
484 1.2 thorpej { "Kingston KNE-PCM/x",
485 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
486 1.144 christos 0x0ff0, { 0x00, 0xc0, 0xf0 }, 0 },
487 1.2 thorpej { "Kingston KNE-PCM/x",
488 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
489 1.144 christos 0x0ff0, { 0xe2, 0x0c, 0x0f }, 0 },
490 1.2 thorpej { "Longshine LCS-8534",
491 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
492 1.144 christos 0x0000, { 0x08, 0x00, 0x00 }, 0 },
493 1.2 thorpej { "Maxtech PCN2000",
494 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
495 1.144 christos 0x5000, { 0x00, 0x00, 0xe8 }, 0 },
496 1.2 thorpej { "NDC Instant-Link",
497 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
498 1.144 christos 0x003a, { 0x00, 0x80, 0xc6 }, 0 },
499 1.2 thorpej { "NE2000 Compatible",
500 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
501 1.144 christos 0x0ff0, { 0x00, 0xa0, 0x0c }, 0 },
502 1.2 thorpej { "Network General Sniffer",
503 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
504 1.144 christos 0x0ff0, { 0x00, 0x00, 0x65 }, 0 },
505 1.2 thorpej { "Panasonic VEL211",
506 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
507 1.144 christos 0x0ff0, { 0x00, 0x80, 0x45 }, 0 },
508 1.2 thorpej { "SCM Ethernet",
509 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
510 1.144 christos 0x0ff0, { 0x00, 0x20, 0xcb }, 0 },
511 1.2 thorpej { "Volktek NPL-402CT",
512 1.2 thorpej 0x0000, 0x0000, NULL, NULL, 0,
513 1.144 christos 0x0060, { 0x00, 0x40, 0x05 }, 0 },
514 1.2 thorpej #endif
515 1.2 thorpej };
516 1.2 thorpej
517 1.2 thorpej #define NE2000_NDEVS (sizeof(ne2000devs) / sizeof(ne2000devs[0]))
518 1.2 thorpej
519 1.136 christos static const struct ne2000dev *
520 1.136 christos ne2000_match(struct pcmcia_card *card, int fct, int n)
521 1.136 christos {
522 1.136 christos size_t i;
523 1.136 christos
524 1.137 enami /*
525 1.137 enami * See if it matches by manufacturer & product.
526 1.137 enami */
527 1.137 enami if (card->manufacturer == ne2000devs[n].manufacturer &&
528 1.137 enami card->manufacturer != PCMCIA_VENDOR_INVALID &&
529 1.137 enami card->product == ne2000devs[n].product &&
530 1.136 christos card->product != PCMCIA_PRODUCT_INVALID)
531 1.137 enami goto match;
532 1.136 christos
533 1.137 enami /*
534 1.137 enami * Otherwise, try to match by CIS strings.
535 1.137 enami */
536 1.136 christos for (i = 0; i < 2; i++)
537 1.136 christos if (card->cis1_info[i] == NULL ||
538 1.136 christos ne2000devs[n].cis_info[i] == NULL ||
539 1.136 christos strcmp(card->cis1_info[i], ne2000devs[n].cis_info[i]) != 0)
540 1.137 enami return (NULL);
541 1.136 christos
542 1.137 enami match:
543 1.137 enami /*
544 1.137 enami * Finally, see if function number matches.
545 1.137 enami */
546 1.137 enami return (fct == ne2000devs[n].function ? &ne2000devs[n] : NULL);
547 1.136 christos }
548 1.136 christos
549 1.2 thorpej
550 1.2 thorpej int
551 1.152 cube ne_pcmcia_match(device_t parent, cfdata_t match, void *aux)
552 1.2 thorpej {
553 1.2 thorpej struct pcmcia_attach_args *pa = aux;
554 1.2 thorpej int i;
555 1.2 thorpej
556 1.2 thorpej for (i = 0; i < NE2000_NDEVS; i++) {
557 1.2 thorpej if (ne2000_match(pa->card, pa->pf->number, i))
558 1.2 thorpej return (1);
559 1.2 thorpej }
560 1.2 thorpej
561 1.2 thorpej return (0);
562 1.2 thorpej }
563 1.2 thorpej
564 1.129 mycroft int
565 1.152 cube ne_pcmcia_validate_config(struct pcmcia_config_entry *cfe)
566 1.129 mycroft {
567 1.129 mycroft if (cfe->iftype != PCMCIA_IFTYPE_IO ||
568 1.129 mycroft cfe->num_iospace < 1 || cfe->num_iospace > 2)
569 1.129 mycroft return (EINVAL);
570 1.129 mycroft /* Some cards have a memory space, but we don't use it. */
571 1.129 mycroft cfe->num_memspace = 0;
572 1.129 mycroft return (0);
573 1.129 mycroft }
574 1.129 mycroft
575 1.2 thorpej void
576 1.152 cube ne_pcmcia_attach(device_t parent, device_t self, void *aux)
577 1.2 thorpej {
578 1.152 cube struct ne_pcmcia_softc *psc = device_private(self);
579 1.2 thorpej struct ne2000_softc *nsc = &psc->sc_ne2000;
580 1.2 thorpej struct dp8390_softc *dsc = &nsc->sc_dp8390;
581 1.2 thorpej struct pcmcia_attach_args *pa = aux;
582 1.2 thorpej struct pcmcia_config_entry *cfe;
583 1.106 mycroft const struct ne2000dev *ne_dev;
584 1.53 enami int i;
585 1.55 enami u_int8_t myea[6], *enaddr;
586 1.129 mycroft int error;
587 1.22 thorpej
588 1.153 uwe aprint_naive("\n");
589 1.153 uwe
590 1.152 cube dsc->sc_dev = self;
591 1.2 thorpej psc->sc_pf = pa->pf;
592 1.2 thorpej
593 1.129 mycroft error = pcmcia_function_configure(pa->pf, ne_pcmcia_validate_config);
594 1.129 mycroft if (error) {
595 1.152 cube aprint_error_dev(self, "configure failed, error=%d\n", error);
596 1.129 mycroft return;
597 1.2 thorpej }
598 1.2 thorpej
599 1.129 mycroft cfe = pa->pf->cfe;
600 1.129 mycroft dsc->sc_regt = cfe->iospace[0].handle.iot;
601 1.129 mycroft dsc->sc_regh = cfe->iospace[0].handle.ioh;
602 1.2 thorpej
603 1.127 mycroft if (cfe->num_iospace == 1) {
604 1.129 mycroft nsc->sc_asict = dsc->sc_regt;
605 1.127 mycroft if (bus_space_subregion(dsc->sc_regt, dsc->sc_regh,
606 1.129 mycroft NE2000_ASIC_OFFSET, NE2000_ASIC_NPORTS, &nsc->sc_asich)) {
607 1.152 cube aprint_error_dev(self,
608 1.152 cube "can't get subregion for asic\n");
609 1.129 mycroft goto fail;
610 1.127 mycroft }
611 1.127 mycroft } else {
612 1.129 mycroft nsc->sc_asict = cfe->iospace[1].handle.iot;
613 1.129 mycroft nsc->sc_asich = cfe->iospace[1].handle.ioh;
614 1.128 mycroft }
615 1.128 mycroft
616 1.129 mycroft error = ne_pcmcia_enable(dsc);
617 1.130 mycroft if (error)
618 1.129 mycroft goto fail;
619 1.127 mycroft
620 1.128 mycroft /* Set up power management hooks. */
621 1.128 mycroft dsc->sc_enable = ne_pcmcia_enable;
622 1.128 mycroft dsc->sc_disable = ne_pcmcia_disable;
623 1.128 mycroft
624 1.2 thorpej /*
625 1.2 thorpej * Read the station address from the board.
626 1.2 thorpej */
627 1.46 mycroft i = 0;
628 1.46 mycroft again:
629 1.55 enami enaddr = NULL; /* Ask ASIC by default */
630 1.46 mycroft for (; i < NE2000_NDEVS; i++) {
631 1.53 enami ne_dev = ne2000_match(pa->card, pa->pf->number, i);
632 1.53 enami if (ne_dev != NULL) {
633 1.2 thorpej if (ne_dev->enet_maddr >= 0) {
634 1.139 perry enaddr = ne_pcmcia_get_enaddr(psc,
635 1.53 enami ne_dev->enet_maddr, myea);
636 1.53 enami if (enaddr == NULL)
637 1.53 enami continue;
638 1.2 thorpej }
639 1.106 mycroft goto found;
640 1.2 thorpej }
641 1.39 enami }
642 1.152 cube aprint_error_dev(self, "can't match ethernet vendor code\n");
643 1.111 cube if (enaddr != NULL)
644 1.152 cube aprint_error_dev(self,
645 1.152 cube "ethernet vendor code %02x:%02x:%02x\n",
646 1.152 cube enaddr[0], enaddr[1], enaddr[2]);
647 1.129 mycroft goto fail2;
648 1.39 enami
649 1.106 mycroft found:
650 1.39 enami if ((ne_dev->flags & NE2000DVF_DL10019) != 0) {
651 1.74 thorpej u_int8_t type;
652 1.74 thorpej
653 1.53 enami enaddr = ne_pcmcia_dl10019_get_enaddr(psc, myea);
654 1.53 enami if (enaddr == NULL) {
655 1.47 mycroft ++i;
656 1.47 mycroft goto again;
657 1.39 enami }
658 1.74 thorpej
659 1.75 thorpej dsc->sc_mediachange = dl10019_mediachange;
660 1.75 thorpej dsc->sc_mediastatus = dl10019_mediastatus;
661 1.75 thorpej dsc->init_card = dl10019_init_card;
662 1.75 thorpej dsc->stop_card = dl10019_stop_card;
663 1.75 thorpej dsc->sc_media_init = dl10019_media_init;
664 1.75 thorpej dsc->sc_media_fini = dl10019_media_fini;
665 1.75 thorpej
666 1.74 thorpej /* Determine if this is a DL10019 or a DL10022. */
667 1.74 thorpej type = bus_space_read_1(nsc->sc_asict, nsc->sc_asich, 0x0f);
668 1.74 thorpej if (type == 0x91 || type == 0x99) {
669 1.74 thorpej nsc->sc_type = NE2000_TYPE_DL10022;
670 1.74 thorpej } else {
671 1.74 thorpej nsc->sc_type = NE2000_TYPE_DL10019;
672 1.74 thorpej }
673 1.2 thorpej }
674 1.2 thorpej
675 1.55 enami if ((ne_dev->flags & NE2000DVF_AX88190) != 0) {
676 1.123 mycroft u_int8_t test;
677 1.123 mycroft
678 1.135 mycroft /* XXX This is highly bogus. */
679 1.135 mycroft if ((pa->pf->ccr_mask & (1 << PCMCIA_CCR_IOBASE0)) == 0) {
680 1.64 msaitoh ++i;
681 1.64 msaitoh goto again;
682 1.64 msaitoh }
683 1.80 enami
684 1.80 enami dsc->sc_mediachange = ax88190_mediachange;
685 1.80 enami dsc->sc_mediastatus = ax88190_mediastatus;
686 1.80 enami dsc->init_card = ax88190_init_card;
687 1.80 enami dsc->stop_card = ax88190_stop_card;
688 1.80 enami dsc->sc_media_init = ax88190_media_init;
689 1.80 enami dsc->sc_media_fini = ax88190_media_fini;
690 1.80 enami
691 1.123 mycroft test = bus_space_read_1(nsc->sc_asict, nsc->sc_asich, 0x05);
692 1.123 mycroft if (test != 0) {
693 1.104 christos nsc->sc_type = NE2000_TYPE_AX88790;
694 1.104 christos } else {
695 1.104 christos nsc->sc_type = NE2000_TYPE_AX88190;
696 1.104 christos }
697 1.55 enami }
698 1.55 enami
699 1.117 mycroft if (enaddr != NULL &&
700 1.117 mycroft ne_dev->enet_vendor[0] != 0xff) {
701 1.2 thorpej /*
702 1.2 thorpej * Make sure this is what we expect.
703 1.2 thorpej */
704 1.2 thorpej if (enaddr[0] != ne_dev->enet_vendor[0] ||
705 1.2 thorpej enaddr[1] != ne_dev->enet_vendor[1] ||
706 1.2 thorpej enaddr[2] != ne_dev->enet_vendor[2]) {
707 1.46 mycroft ++i;
708 1.46 mycroft goto again;
709 1.2 thorpej }
710 1.2 thorpej }
711 1.2 thorpej
712 1.22 thorpej /*
713 1.109 wiz * Check for a Realtek 8019.
714 1.22 thorpej */
715 1.151 dholland if (nsc->sc_type == NE2000_TYPE_UNKNOWN) {
716 1.75 thorpej bus_space_write_1(dsc->sc_regt, dsc->sc_regh, ED_P0_CR,
717 1.75 thorpej ED_CR_PAGE_0 | ED_CR_STP);
718 1.75 thorpej if (bus_space_read_1(dsc->sc_regt, dsc->sc_regh,
719 1.75 thorpej NERTL_RTL0_8019ID0) == RTL0_8019ID0 &&
720 1.75 thorpej bus_space_read_1(dsc->sc_regt, dsc->sc_regh,
721 1.75 thorpej NERTL_RTL0_8019ID1) == RTL0_8019ID1) {
722 1.75 thorpej dsc->sc_mediachange = rtl80x9_mediachange;
723 1.75 thorpej dsc->sc_mediastatus = rtl80x9_mediastatus;
724 1.95 simonb dsc->init_card = rtl80x9_init_card;
725 1.75 thorpej dsc->sc_media_init = rtl80x9_media_init;
726 1.75 thorpej }
727 1.22 thorpej }
728 1.22 thorpej
729 1.68 thorpej if (ne2000_attach(nsc, enaddr))
730 1.129 mycroft goto fail2;
731 1.2 thorpej
732 1.158 christos if (!pmf_device_register(self, ne2000_suspend, ne2000_resume)) {
733 1.158 christos aprint_error_dev(self, "cannot set power mgmt handler\n");
734 1.158 christos }
735 1.156 uwe /* pmf(9) power hooks */
736 1.157 tsutsui if (pmf_device_register(self, ne2000_suspend, ne2000_resume)) {
737 1.156 uwe #if 0 /* XXX: notyet: if_stop is NULL! */
738 1.156 uwe pmf_class_network_register(self, &dsc->sc_ec.ec_if);
739 1.156 uwe #endif
740 1.157 tsutsui } else
741 1.157 tsutsui aprint_error_dev(self, "unable to establish power handler\n");
742 1.156 uwe
743 1.129 mycroft psc->sc_state = NE_PCMCIA_ATTACHED;
744 1.129 mycroft ne_pcmcia_disable(dsc);
745 1.52 itojun return;
746 1.52 itojun
747 1.129 mycroft fail2:
748 1.129 mycroft ne_pcmcia_disable(dsc);
749 1.129 mycroft fail:
750 1.129 mycroft pcmcia_function_unconfigure(pa->pf);
751 1.25 thorpej }
752 1.25 thorpej
753 1.25 thorpej int
754 1.152 cube ne_pcmcia_detach(device_t self, int flags)
755 1.25 thorpej {
756 1.152 cube struct ne_pcmcia_softc *psc = device_private(self);
757 1.127 mycroft struct pcmcia_function *pf = psc->sc_pf;
758 1.53 enami int error;
759 1.26 thorpej
760 1.129 mycroft if (psc->sc_state != NE_PCMCIA_ATTACHED)
761 1.53 enami return (0);
762 1.53 enami
763 1.158 christos pmf_device_deregister(self);
764 1.53 enami error = ne2000_detach(&psc->sc_ne2000, flags);
765 1.129 mycroft if (error)
766 1.53 enami return (error);
767 1.53 enami
768 1.129 mycroft pcmcia_function_unconfigure(pf);
769 1.53 enami
770 1.53 enami return (0);
771 1.2 thorpej }
772 1.2 thorpej
773 1.2 thorpej int
774 1.152 cube ne_pcmcia_enable(struct dp8390_softc *dsc)
775 1.2 thorpej {
776 1.2 thorpej struct ne_pcmcia_softc *psc = (struct ne_pcmcia_softc *)dsc;
777 1.135 mycroft int error;
778 1.2 thorpej
779 1.2 thorpej /* set up the interrupt */
780 1.2 thorpej psc->sc_ih = pcmcia_intr_establish(psc->sc_pf, IPL_NET, dp8390_intr,
781 1.2 thorpej dsc);
782 1.130 mycroft if (!psc->sc_ih)
783 1.135 mycroft return (EIO);
784 1.2 thorpej
785 1.135 mycroft error = pcmcia_function_enable(psc->sc_pf);
786 1.135 mycroft if (error) {
787 1.135 mycroft pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
788 1.135 mycroft psc->sc_ih = 0;
789 1.104 christos }
790 1.55 enami
791 1.135 mycroft return (error);
792 1.2 thorpej }
793 1.2 thorpej
794 1.2 thorpej void
795 1.152 cube ne_pcmcia_disable(struct dp8390_softc *dsc)
796 1.2 thorpej {
797 1.2 thorpej struct ne_pcmcia_softc *psc = (struct ne_pcmcia_softc *)dsc;
798 1.2 thorpej
799 1.2 thorpej pcmcia_function_disable(psc->sc_pf);
800 1.2 thorpej pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
801 1.129 mycroft psc->sc_ih = 0;
802 1.52 itojun }
803 1.52 itojun
804 1.53 enami u_int8_t *
805 1.152 cube ne_pcmcia_get_enaddr(struct ne_pcmcia_softc *psc, int maddr,
806 1.152 cube u_int8_t myea[ETHER_ADDR_LEN])
807 1.52 itojun {
808 1.53 enami struct ne2000_softc *nsc = &psc->sc_ne2000;
809 1.53 enami struct dp8390_softc *dsc = &nsc->sc_dp8390;
810 1.53 enami struct pcmcia_mem_handle pcmh;
811 1.84 soren bus_size_t offset;
812 1.53 enami u_int8_t *enaddr = NULL;
813 1.53 enami int j, mwindow;
814 1.53 enami
815 1.53 enami if (maddr < 0)
816 1.53 enami return (NULL);
817 1.53 enami
818 1.53 enami if (pcmcia_mem_alloc(psc->sc_pf, ETHER_ADDR_LEN * 2, &pcmh)) {
819 1.152 cube aprint_error_dev(dsc->sc_dev,
820 1.152 cube "can't alloc mem for enet addr\n");
821 1.53 enami goto fail_1;
822 1.53 enami }
823 1.53 enami if (pcmcia_mem_map(psc->sc_pf, PCMCIA_MEM_ATTR, maddr,
824 1.53 enami ETHER_ADDR_LEN * 2, &pcmh, &offset, &mwindow)) {
825 1.152 cube aprint_error_dev(dsc->sc_dev, "can't map mem for enet addr\n");
826 1.53 enami goto fail_2;
827 1.52 itojun }
828 1.53 enami for (j = 0; j < ETHER_ADDR_LEN; j++)
829 1.53 enami myea[j] = bus_space_read_1(pcmh.memt, pcmh.memh,
830 1.53 enami offset + (j * 2));
831 1.53 enami enaddr = myea;
832 1.53 enami
833 1.53 enami pcmcia_mem_unmap(psc->sc_pf, mwindow);
834 1.53 enami fail_2:
835 1.53 enami pcmcia_mem_free(psc->sc_pf, &pcmh);
836 1.53 enami fail_1:
837 1.53 enami return (enaddr);
838 1.53 enami }
839 1.53 enami
840 1.53 enami u_int8_t *
841 1.152 cube ne_pcmcia_dl10019_get_enaddr(struct ne_pcmcia_softc *psc,
842 1.152 cube u_int8_t myea[ETHER_ADDR_LEN])
843 1.53 enami {
844 1.53 enami struct ne2000_softc *nsc = &psc->sc_ne2000;
845 1.53 enami u_int8_t sum;
846 1.53 enami int j;
847 1.53 enami
848 1.53 enami #define PAR0 0x04
849 1.53 enami for (j = 0, sum = 0; j < 8; j++)
850 1.53 enami sum += bus_space_read_1(nsc->sc_asict, nsc->sc_asich,
851 1.53 enami PAR0 + j);
852 1.53 enami if (sum != 0xff)
853 1.53 enami return (NULL);
854 1.53 enami for (j = 0; j < ETHER_ADDR_LEN; j++)
855 1.53 enami myea[j] = bus_space_read_1(nsc->sc_asict,
856 1.53 enami nsc->sc_asich, PAR0 + j);
857 1.53 enami #undef PAR0
858 1.53 enami return (myea);
859 1.55 enami }
860