summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed/if_ed_pccard.c
blob: c6b93b7b7d2b0355e9428433e0a5b17abf511ebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
/*
 * Copyright (c) 1995, David Greenman
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice unmodified, this list of conditions, and the following
 *    disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * $FreeBSD$
 */

#include "opt_ed.h"

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
#include <sys/kernel.h>
#include <sys/conf.h>
#include <sys/uio.h>

#include <sys/module.h>
#include <sys/bus.h>
#include <machine/bus.h>
#include <sys/rman.h>
#include <machine/resource.h>

#include <net/ethernet.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <net/if_mib.h>
#include <net/if_media.h>

#include <dev/ed/if_edreg.h>
#include <dev/ed/if_edvar.h>
#include <dev/pccard/pccardvar.h>
#include <dev/pccard/pccarddevs.h>
#ifndef ED_NO_MIIBUS
#include <dev/mii/mii.h>
#include <dev/mii/miivar.h>
#endif

#include "card_if.h"
#ifndef ED_NO_MIIBUS
/* "device miibus" required.  See GENERIC if you get errors here. */
#include "miibus_if.h"

MODULE_DEPEND(ed, miibus, 1, 1, 1);
#endif

/*
 *      PC-Card (PCMCIA) specific code.
 */
static int	ed_pccard_match(device_t);
static int	ed_pccard_probe(device_t);
static int	ed_pccard_attach(device_t);
static int	ed_pccard_detach(device_t);

static int	ed_pccard_Linksys(device_t dev);
static int	ed_pccard_ax88190(device_t dev);

static void	ax88190_geteprom(struct ed_softc *);
static int	ed_pccard_memwrite(device_t dev, off_t offset, u_char byte);
#ifndef ED_NO_MIIBUS
static void	ed_pccard_dlink_mii_reset(struct ed_softc *sc);
static u_int	ed_pccard_dlink_mii_readbits(struct ed_softc *sc, int nbits);
static void	ed_pccard_dlink_mii_writebits(struct ed_softc *sc, u_int val,
    int nbits);
#endif

/*
 *      ed_pccard_detach - unload the driver and clear the table.
 *      XXX TODO:
 *      This is usually called when the card is ejected, but
 *      can be caused by a modunload of a controller driver.
 *      The idea is to reset the driver's view of the device
 *      and ensure that any driver entry points such as
 *      read and write do not hang.
 */
static int
ed_pccard_detach(device_t dev)
{
	struct ed_softc *sc = device_get_softc(dev);
	struct ifnet *ifp = &sc->arpcom.ac_if;

	if (sc->gone) {
		device_printf(dev, "already unloaded\n");
		return (0);
	}
	ed_stop(sc);
	ifp->if_flags &= ~IFF_RUNNING;
	ether_ifdetach(ifp);
	sc->gone = 1;
	bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
	ed_release_resources(dev);
	return (0);
}

static const struct ed_product {
	struct pccard_product	prod;
	int enet_maddr;
	unsigned char enet_vendor[3];
	int flags;
#define	NE2000DVF_DL10019	0x0001		/* chip is D-Link DL10019 */
#define	NE2000DVF_AX88190	0x0002		/* chip is ASIX AX88190 */
} ed_pccard_products[] = {
	{ PCMCIA_CARD(EDIMAX, EP4000A, 0),
	  -1, { 0x00, 0xa0, 0x0c } },
	{ PCMCIA_CARD(SYNERGY21, S21810, 0),
	  -1, { 0x00, 0x48, 0x54} },
	{ PCMCIA_CARD(AMBICOM, AMB8002T, 0),
	  -1, { 0x00, 0x10, 0x7a } },
	{ PCMCIA_CARD(PREMAX, PE200, 0),
	  0x07f0, { 0x00, 0x20, 0xe0 } },
	{ PCMCIA_CARD(DIGITAL, DEPCMXX, 0),
	  0x0ff0, { 0x00, 0x00, 0xe8 } },
	{ PCMCIA_CARD(PLANET, SMARTCOM2000, 0),
	  0xff0, { 0x00, 0x00, 0xe8 } },
	{ PCMCIA_CARD(DLINK, DE660, 0),
	  -1, { 0x00, 0x80, 0xc8 } },
	{ PCMCIA_CARD(DLINK, DE660PLUS, 0),
	  -1, { 0x00, 0x80, 0x08 } },
	{ PCMCIA_CARD(RPTI, EP400, 0),
	  -1, { 0x00, 0x40, 0x95 } },
	{ PCMCIA_CARD(RPTI, EP401, 0),
	  -1, { 0x00, 0x40, 0x95 } },
	{ PCMCIA_CARD(ACCTON, EN2212, 0),
	  0x0ff0, { 0x00, 0x00, 0xe8 } },
	{ PCMCIA_CARD(SVEC, COMBOCARD, 0),
	  -1, { 0x00, 0xe0, 0x98 } },
	{ PCMCIA_CARD(SVEC, LANCARD, 0),
	  0x7f0, { 0x00, 0xc0, 0x6c } },
	{ PCMCIA_CARD(EPSON, EEN10B, 0),
	  0xff0, { 0x00, 0x00, 0x48 } },
	{ PCMCIA_CARD(CNET, NE2000, 0),
	  -1, { 0x00, 0x80, 0xad } },
	{ PCMCIA_CARD(ZONET, ZEN, 0),
	  -1, { 0x00, 0x80, 0xad } },

	/*
	 * You have to add new entries which contains
	 * PCMCIA_VENDOR_INVALID and/or PCMCIA_PRODUCT_INVALID 
	 * in front of this comment.
	 */
	{ PCMCIA_CARD(LANTECH, FASTNETTX, 0),
	  -1, { 0x00, 0x04, 0x1c}, NE2000DVF_AX88190 },
	{ PCMCIA_CARD(IBM, INFOMOVER, 0),
	  0x0ff0, { 0x08, 0x00, 0x5a } },
	{ PCMCIA_CARD(IBM, INFOMOVER, 0),
	  0x0ff0, { 0x00, 0x04, 0xac } },
	{ PCMCIA_CARD(IBM, INFOMOVER, 0),
	  0x0ff0, { 0x00, 0x06, 0x29 } },
	{ PCMCIA_CARD(KINGSTON, KNE2, 0),
	  -1, { 0, 0, 0 }, 0 },	/* XXX */
	{ PCMCIA_CARD(LINKSYS, ECARD_1, 0),
	  -1, { 0x00, 0x80, 0xc8 } },
	{ PCMCIA_CARD(LINKSYS, PCM100, 0),
	  -1, { 0x00, 0x04, 0x5a } },
#ifdef BOGUS
	/*
	 * The next three should be detected as linksys, but might fail
	 * the mac sanity check.
	 */
	{ PCMCIA_CARD(PLANEX, FNW3600T, 0), 
	  -1, { 0x00, 0x90, 0xcc }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD(PLANEX, FNW3700T, 0), 
	  -1, { 0x00, 0x90, 0xcc }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD(SVEC, PN650TX, 0),
	  -1, { 0x00, 0xe0, 0x98 }, NE2000DVF_DL10019 },
#endif

	/*
	 * This entry should be here so that above two cards doesn't
	 * match with this.  FNW-3700T won't match above entries due to
	 * MAC address check.
	 */
	{ PCMCIA_CARD(LINKSYS, COMBO_ECARD, 0),
	  -1, { 0x00, 0x90, 0xcc }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD(LINKSYS, ETHERFAST, 0),
	  -1, { 0x00, 0x80, 0xc8 }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD(LINKSYS, ETHERFAST, 0),
	  -1, { 0x00, 0x90, 0xfe }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD2(LINKSYS, ETHERFAST, DLINK_DE650, 0),
	  -1, { 0x00, 0xe0, 0x98 }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD2(LINKSYS, ETHERFAST, MELCO_LPC2_TX, 0),
	  -1, { 0x00, 0x40, 0x26 }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD(LINKSYS, TRUST_COMBO_ECARD, 0), 
	  0x0120, { 0x20, 0x04, 0x49 } },

	/* 
	 * Although the comments above say to put VENDOR/PRODUCT
	 * INVALID IDs above this list, we need to keep this one below
	 * the ECARD_1, or else both will match the same more-generic
	 * entry rather than the more specific one above with proper
	 * vendor and product IDs.
	 */
	{ PCMCIA_CARD(LINKSYS, ECARD_2, 0),
	  -1, { 0x00, 0x80, 0xc8 } },

	/*
	 * D-Link DE-650 has many minor versions:
	 *
	 *   CIS information          Manufacturer Product  Note
	 * 1 "D-Link, DE-650"             INVALID  INVALID  white card
	 * 2 "D-Link, DE-650, Ver 01.00"  INVALID  INVALID  became bare metal
	 * 3 "D-Link, DE-650, Ver 01.00"   0x149    0x265   minor changed look
	 * 4 "D-Link, DE-650, Ver 01.00"   0x149    0x265   collision LED added
	 *
	 * While the 1st and the 2nd types should use the "D-Link DE-650"
	 * entry, the 3rd and the 4th types should use the "Linksys 
	 * EtherCard" entry. Therefore, this enty must be below the 
	 * LINKSYS_ECARD_1.  --itohy
	 */
	{ PCMCIA_CARD(DLINK, DE650, 0),
	  0x0040, { 0x00, 0x80, 0xc8 } },

	/*
	 * IO-DATA PCLA/TE and later version of PCLA/T has valid
	 * vendor/product ID and it is possible to read MAC address
	 * using standard I/O ports.  It also read from CIS offset 0x01c0.
	 * On the other hand, earlier version of PCLA/T doesn't have valid
	 * vendor/product ID and MAC address must be read from CIS offset
	 * 0x0ff0 (i.e., usual ne2000 way to read it doesn't work).
	 * And CIS information of earlier and later version of PCLA/T are
	 * same except fourth element.  So, for now, we place the entry for
	 * PCLA/TE (and later version of PCLA/T) followed by entry
	 * for the earlier version of PCLA/T (or, modify to match all CIS
	 * information and have three or more individual entries).
	 */
	{ PCMCIA_CARD(IODATA, PCLATE, 0),
	  -1, { 0x00, 0xa0, 0xb0 } },

	/*
	 * This entry should be placed after above PCLA-TE entry.
	 * See above comments for detail.
	 */
	{ PCMCIA_CARD(IODATA, PCLAT, 0),
	  0x0ff0, { 0x00, 0xa0, 0xb0 } },
	{ PCMCIA_CARD(DAYNA, COMMUNICARD_E_1, 0),
	  0x0110, { 0x00, 0x80, 0x19 } },
	{ PCMCIA_CARD(DAYNA, COMMUNICARD_E_2, 0),
	  -1, { 0x00, 0x80, 0x19 } },
	{ PCMCIA_CARD(COREGA, ETHER_PCC_TD, 0),
	  -1, { 0x00, 0x00, 0xf4 } },
	{ PCMCIA_CARD(COREGA, ETHER_PCC_T, 0),
	  -1, { 0x00, 0x00, 0xf4 } },
	{ PCMCIA_CARD(COREGA, ETHER_II_PCC_T, 0),
	  -1, { 0x00, 0x00, 0xf4 } },
	{ PCMCIA_CARD(COREGA, ETHER_II_PCC_TD, 0),
	  -1, { 0x00, 0x00, 0xf4 } },
	{ PCMCIA_CARD(COREGA, FAST_ETHER_PCC_TX, 0),
	  -1, { 0x00, 0x00, 0xf4 }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD(COREGA, FETHER_PCC_TXD, 0),
	  -1, { 0x00, 0x90, 0x99 } },
	{ PCMCIA_CARD(COREGA, FETHER_PCC_TXF, 0),
	  -1, { 0x00, 0x90, 0x99 }, NE2000DVF_DL10019 },
	{ PCMCIA_CARD(COMPEX, LINKPORT_ENET_B, 0),
	  0x01c0, { 0x00, 0xa0, 0x0c } },
	{ PCMCIA_CARD(DYNALINK, L10C, 0),
	  0x01c0, { 0x00, 0x00, 0x00 } },
	{ PCMCIA_CARD(SMC, EZCARD, 0),
	  0x01c0, { 0x00, 0xe0, 0x29 } },
	{ PCMCIA_CARD(SOCKET, EA_ETHER, 0),
	  -1, { 0x00, 0xc0, 0x1b } },
	{ PCMCIA_CARD(SOCKET, LP_ETHER_CF, 0),
	  -1, { 0x00, 0xc0, 0x1b } },
	{ PCMCIA_CARD(SOCKET, LP_ETHER, 0),
	  -1, { 0x00, 0xc0, 0x1b } },
	{ PCMCIA_CARD(KINGSTON, KNE2, 0),
	  -1, { 0x00, 0xc0, 0xf0 } },
	{ PCMCIA_CARD(XIRCOM, CFE_10, 0),
	  -1, { 0x00, 0x10, 0xa4 } },
	{ PCMCIA_CARD(MELCO, LPC3_TX,  0),
	  -1, { 0x00, 0x40, 0x26 }, NE2000DVF_AX88190 },
	{ PCMCIA_CARD(BUFFALO, LPC3_CLT,  0),
	  -1, { 0x00, 0x07, 0x40 } },
	{ PCMCIA_CARD(BUFFALO, LPC_CF_CLT,  0),
	  -1, { 0x00, 0x07, 0x40 } },
	{ PCMCIA_CARD(BILLIONTON, LNT10TN, 0),
	  -1, { 0x00, 0x00, 0x00 } },
	{ PCMCIA_CARD(NDC, ND5100_E, 0),
	  -1, { 0x00, 0x80, 0xc6 } },
	{ PCMCIA_CARD(TELECOMDEVICE, TCD_HPC100, 0),
	  -1, { 0x00, 0x40, 0x26 }, NE2000DVF_AX88190 },
	{ PCMCIA_CARD(MACNICA, ME1_JEIDA, 0),
	  0x00b8, { 0x08, 0x00, 0x42 } },
	{ PCMCIA_CARD(ALLIEDTELESIS, LA_PCM, 0),
	  0x0ff0, { 0x00, 0x00, 0xf4 } },
	{ PCMCIA_CARD(DLINK, DFE670TXD, 0),
	  -1, { 0x00, 0x50, 0xba}, NE2000DVF_DL10019},
	{ PCMCIA_CARD(NETGEAR, FA410TXC, 0),
	  -1, { 0x00, 0x48, 0x54 }, NE2000DVF_DL10019},
	{ PCMCIA_CARD(NETGEAR, FA411, 0),
	  -1, { 0x00, 0x40, 0xf4 }, NE2000DVF_AX88190},

#if 0
    /* the rest of these are stolen from the linux pcnet pcmcia device
       driver.  Since I don't know the manfid or cis info strings for
       any of them, they're not compiled in until I do. */
    { "APEX MultiCard",
      0x0000, 0x0000, NULL, NULL, 0,
      0x03f4, { 0x00, 0x20, 0xe5 } },
    { "ASANTE FriendlyNet",
      0x0000, 0x0000, NULL, NULL, 0,
      0x4910, { 0x00, 0x00, 0x94 } },
    { "Danpex EN-6200P2",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0110, { 0x00, 0x40, 0xc7 } },
    { "DataTrek NetCard",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0x20, 0xe8 } },
    { "Dayna CommuniCard E",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0110, { 0x00, 0x80, 0x19 } },
    { "EP-210 Ethernet",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0110, { 0x00, 0x40, 0x33 } },
    { "ELECOM Laneed LD-CDWA",
      0x0000, 0x0000, NULL, NULL, 0,
      0x00b8, { 0x08, 0x00, 0x42 } },
    { "Grey Cell GCS2220",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0000, { 0x00, 0x47, 0x43 } },
    { "Hypertec Ethernet",
      0x0000, 0x0000, NULL, NULL, 0,
      0x01c0, { 0x00, 0x40, 0x4c } },
    { "IBM CCAE",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x08, 0x00, 0x5a } },
    { "IBM CCAE",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0x04, 0xac } },
    { "IBM CCAE",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0x06, 0x29 } },
    { "IBM FME",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0374, { 0x00, 0x04, 0xac } },
    { "IBM FME",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0374, { 0x08, 0x00, 0x5a } },
    { "Katron PE-520",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0110, { 0x00, 0x40, 0xf6 } },
    { "Kingston KNE-PCM/x",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0xc0, 0xf0 } },
    { "Kingston KNE-PCM/x",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0xe2, 0x0c, 0x0f } },
    { "Longshine LCS-8534",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0000, { 0x08, 0x00, 0x00 } },
    { "Maxtech PCN2000",
      0x0000, 0x0000, NULL, NULL, 0,
      0x5000, { 0x00, 0x00, 0xe8 } },
    { "NDC Instant-Link",
      0x0000, 0x0000, NULL, NULL, 0,
      0x003a, { 0x00, 0x80, 0xc6 } },
    { "NE2000 Compatible",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0xa0, 0x0c } },
    { "Network General Sniffer",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0x00, 0x65 } },
    { "Panasonic VEL211",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0x80, 0x45 } },
    { "SCM Ethernet",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0ff0, { 0x00, 0x20, 0xcb } },
    { "Volktek NPL-402CT",
      0x0000, 0x0000, NULL, NULL, 0,
      0x0060, { 0x00, 0x40, 0x05 } },
#endif
	{ { NULL } }
	
};

static int
ed_pccard_match(device_t dev)
{
	const struct ed_product *pp;

	if ((pp = (const struct ed_product *) pccard_product_lookup(dev, 
	    (const struct pccard_product *) ed_pccard_products,
	    sizeof(ed_pccard_products[0]), NULL)) != NULL) {
		device_set_desc(dev, pp->prod.pp_name);
		if (pp->flags & NE2000DVF_DL10019)
			device_set_flags(dev, ED_FLAGS_LINKSYS);
		else if (pp->flags & NE2000DVF_AX88190)
			device_set_flags(dev, ED_FLAGS_AX88190);
		return (0);
	}
	return (EIO);
}

/* 
 * Probe framework for pccards.  Replicates the standard framework,
 * minus the pccard driver registration and ignores the ether address
 * supplied (from the CIS), relying on the probe to find it instead.
 */
static int
ed_pccard_probe(device_t dev)
{
	int	error;
	int	flags = device_get_flags(dev);

	if (ED_FLAGS_GETTYPE(flags) == ED_FLAGS_AX88190) {
		error = ed_pccard_ax88190(dev);
		goto end2;
	}

	error = ed_probe_Novell(dev, 0, flags);
	if (error == 0)
		goto end;
	ed_release_resources(dev);

	error = ed_probe_WD80x3(dev, 0, flags);
	if (error == 0)
		goto end;
	ed_release_resources(dev);
	goto end2;

end:
	if (ED_FLAGS_GETTYPE(flags) & ED_FLAGS_LINKSYS)
		ed_pccard_Linksys(dev);
end2:
	if (error == 0)
		error = ed_alloc_irq(dev, 0, 0);

	ed_release_resources(dev);
	return (error);
}

static int
ed_pccard_attach(device_t dev)
{
	int error;
	int	flags = device_get_flags(dev);
	int i;
	struct ed_softc *sc = device_get_softc(dev);
	u_char sum;
	u_char ether_addr[ETHER_ADDR_LEN];
	
	if (sc->port_used > 0)
		ed_alloc_port(dev, sc->port_rid, sc->port_used);
	if (sc->mem_used)
		ed_alloc_memory(dev, sc->mem_rid, sc->mem_used);
	ed_alloc_irq(dev, sc->irq_rid, 0);
		
	error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
			       edintr, sc, &sc->irq_handle);
	if (error) {
		printf("setup intr failed %d \n", error);
		ed_release_resources(dev);
		return (error);
	}	      

	if (sc->vendor != ED_VENDOR_LINKSYS) {
		pccard_get_ether(dev, ether_addr);
		for (i = 0, sum = 0; i < ETHER_ADDR_LEN; i++)
			sum |= ether_addr[i];
		if (sum)
			bcopy(ether_addr, sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
	}

	error = ed_attach(sc, device_get_unit(dev), flags);
#ifndef ED_NO_MIIBUS
	if (error == 0 && sc->vendor == ED_VENDOR_LINKSYS) {
		/* Probe for an MII bus, but ignore errors. */
		ed_pccard_dlink_mii_reset(sc);
		sc->mii_readbits = ed_pccard_dlink_mii_readbits;
		sc->mii_writebits = ed_pccard_dlink_mii_writebits;
		mii_phy_probe(dev, &sc->miibus, ed_ifmedia_upd,
		    ed_ifmedia_sts);
	}
#endif

	return (error);
}

static void
ax88190_geteprom(struct ed_softc *sc)
{
	int prom[16],i;
	u_char tmp;
	struct {
		unsigned char offset, value;
	} pg_seq[] = {
		{ED_P0_CR, ED_CR_RD2|ED_CR_STP},/* Select Page0 */
		{ED_P0_DCR, 0x01},
		{ED_P0_RBCR0, 0x00},		/* Clear the count regs. */
		{ED_P0_RBCR1, 0x00},
		{ED_P0_IMR, 0x00},		/* Mask completion irq. */
		{ED_P0_ISR, 0xff},
		{ED_P0_RCR, ED_RCR_MON | ED_RCR_INTT}, /* Set To Monitor */
		{ED_P0_TCR, ED_TCR_LB0},	/* loopback mode. */
		{ED_P0_RBCR0, 32},
		{ED_P0_RBCR1, 0x00},
		{ED_P0_RSAR0, 0x00},
		{ED_P0_RSAR1, 0x04},
		{ED_P0_CR ,ED_CR_RD0 | ED_CR_STA},
	};

	/* Reset Card */
	tmp = ed_asic_inb(sc, ED_NOVELL_RESET);
	ed_asic_outb(sc, ED_NOVELL_RESET, tmp);
	DELAY(5000);
	ed_asic_outb(sc, ED_P0_CR, ED_CR_RD2 | ED_CR_STP);
	DELAY(5000);

	/* Card Settings */
	for (i = 0; i < sizeof(pg_seq) / sizeof(pg_seq[0]); i++)
		ed_nic_outb(sc, pg_seq[i].offset, pg_seq[i].value);

	/* Get Data */
	for (i = 0; i < 16; i++)
		prom[i] = ed_asic_inb(sc, 0);
	sc->arpcom.ac_enaddr[0] = prom[0] & 0xff;
	sc->arpcom.ac_enaddr[1] = prom[0] >> 8;
	sc->arpcom.ac_enaddr[2] = prom[1] & 0xff;
	sc->arpcom.ac_enaddr[3] = prom[1] >> 8;
	sc->arpcom.ac_enaddr[4] = prom[2] & 0xff;
	sc->arpcom.ac_enaddr[5] = prom[2] >> 8;
}

static int
ed_pccard_memwrite(device_t dev, off_t offset, u_char byte)
{
	int cis_rid;
	struct resource *cis;

	cis_rid = 0;
	cis = bus_alloc_resource(dev, SYS_RES_MEMORY, &cis_rid, 0, ~0, 
	    4 << 10, RF_ACTIVE | RF_SHAREABLE);
	if (cis == NULL)
		return (ENXIO);
	CARD_SET_RES_FLAGS(device_get_parent(dev), dev, SYS_RES_MEMORY,
	    cis_rid, PCCARD_A_MEM_ATTR);

	bus_space_write_1(rman_get_bustag(cis), rman_get_bushandle(cis),
	    offset, byte);

	bus_deactivate_resource(dev, SYS_RES_MEMORY, cis_rid, cis);
	bus_release_resource(dev, SYS_RES_MEMORY, cis_rid, cis);

	return (0);
}

/*
 * Probe the Ethernet MAC addrees for PCMCIA Linksys EtherFast 10/100 
 * and compatible cards (DL10019C Ethernet controller).
 *
 * Note: The PAO patches try to use more memory for the card, but that
 * seems to fail for my card.  A future optimization would add this back
 * conditionally.
 */
static int
ed_pccard_Linksys(device_t dev)
{
	struct ed_softc *sc = device_get_softc(dev);
	u_char sum;
	int i;

	/*
	 * Linksys registers(offset from ASIC base)
	 *
	 * 0x04-0x09 : Physical Address Register 0-5 (PAR0-PAR5)
	 * 0x0A      : Card ID Register (CIR)
	 * 0x0B      : Check Sum Register (SR)
	 */
	for (sum = 0, i = 0x04; i < 0x0c; i++)
		sum += ed_asic_inb(sc, i);
	if (sum != 0xff)
		return (0);		/* invalid DL10019C */
	for (i = 0; i < ETHER_ADDR_LEN; i++) {
		sc->arpcom.ac_enaddr[i] = ed_asic_inb(sc, 0x04 + i);
	}

	ed_nic_outb(sc, ED_P0_DCR, ED_DCR_WTS | ED_DCR_FT1 | ED_DCR_LS);
	sc->isa16bit = 1;
	sc->vendor = ED_VENDOR_LINKSYS;
	sc->type = ED_TYPE_NE2000;
	sc->type_str = "Linksys";

	return (1);
}

/*
 * Special setup for AX88190
 */
static int
ed_pccard_ax88190(device_t dev)
{
	int	error;
	int	flags = device_get_flags(dev);
	int	iobase;
	struct	ed_softc *sc = device_get_softc(dev);

	/* Allocate the port resource during setup. */
	error = ed_alloc_port(dev, 0, ED_NOVELL_IO_PORTS);
	if (error)
		return (error);

	sc->asic_offset = ED_NOVELL_ASIC_OFFSET;
	sc->nic_offset  = ED_NOVELL_NIC_OFFSET;
	sc->chip_type = ED_CHIP_TYPE_AX88190;

	/*
	 * Set Attribute Memory IOBASE Register
	 */
	iobase = rman_get_start(sc->port_res);
	ed_pccard_memwrite(dev, ED_AX88190_IOBASE0, iobase & 0xff);
	ed_pccard_memwrite(dev, ED_AX88190_IOBASE1, (iobase >> 8) & 0xff);
	ax88190_geteprom(sc);
	ed_release_resources(dev);
	error = ed_probe_Novell(dev, 0, flags);
	if (error == 0) {
		sc->vendor = ED_VENDOR_PCCARD;
		sc->type = ED_TYPE_NE2000;
		sc->type_str = "AX88190";
	}
	return (error);
}

#ifndef ED_NO_MIIBUS
/* MII bit-twiddling routines for cards using Dlink chipset */
#define DLINK_MIISET(sc, x) ed_asic_outb(sc, ED_DLINK_MIIBUS, \
    ed_asic_inb(sc, ED_DLINK_MIIBUS) | (x))
#define DLINK_MIICLR(sc, x) ed_asic_outb(sc, ED_DLINK_MIIBUS, \
    ed_asic_inb(sc, ED_DLINK_MIIBUS) & ~(x))

static void
ed_pccard_dlink_mii_reset(sc)
	struct ed_softc *sc;
{
	ed_asic_outb(sc, ED_DLINK_MIIBUS, 0);
	DELAY(10);
	DLINK_MIISET(sc, ED_DLINK_MII_RESET2);
	DELAY(10);
	DLINK_MIISET(sc, ED_DLINK_MII_RESET1);
	DELAY(10);
	DLINK_MIICLR(sc, ED_DLINK_MII_RESET1);
	DELAY(10);
	DLINK_MIICLR(sc, ED_DLINK_MII_RESET2);
	DELAY(10);
}

static void
ed_pccard_dlink_mii_writebits(sc, val, nbits)
	struct ed_softc *sc;
	u_int val;
	int nbits;
{
	int i;

	DLINK_MIISET(sc, ED_DLINK_MII_DIROUT);

	for (i = nbits - 1; i >= 0; i--) {
		if ((val >> i) & 1)
			DLINK_MIISET(sc, ED_DLINK_MII_DATAOUT);
		else
			DLINK_MIICLR(sc, ED_DLINK_MII_DATAOUT);
		DELAY(10);
		DLINK_MIISET(sc, ED_DLINK_MII_CLK);
		DELAY(10);
		DLINK_MIICLR(sc, ED_DLINK_MII_CLK);
		DELAY(10);
	}
}

static u_int
ed_pccard_dlink_mii_readbits(sc, nbits)
	struct ed_softc *sc;
	int nbits;
{
	int i;
	u_int val = 0;

	DLINK_MIICLR(sc, ED_DLINK_MII_DIROUT);

	for (i = nbits - 1; i >= 0; i--) {
		DLINK_MIISET(sc, ED_DLINK_MII_CLK);
		DELAY(10);
		val <<= 1;
		if (ed_asic_inb(sc, ED_DLINK_MIIBUS) & ED_DLINK_MII_DATATIN)
			val++;
		DLINK_MIICLR(sc, ED_DLINK_MII_CLK);
		DELAY(10);
	}

	return val;
}
#endif

static device_method_t ed_pccard_methods[] = {
	/* Device interface */
	DEVMETHOD(device_probe,		pccard_compat_probe),
	DEVMETHOD(device_attach,	pccard_compat_attach),
	DEVMETHOD(device_detach,	ed_pccard_detach),

#ifndef ED_NO_MIIBUS
	/* Bus interface */
	DEVMETHOD(bus_child_detached,	ed_child_detached),

	/* MII interface */
	DEVMETHOD(miibus_readreg,	ed_miibus_readreg),
	DEVMETHOD(miibus_writereg,	ed_miibus_writereg),
#endif

	/* Card interface */
	DEVMETHOD(card_compat_match,	ed_pccard_match),
	DEVMETHOD(card_compat_probe,	ed_pccard_probe),
	DEVMETHOD(card_compat_attach,	ed_pccard_attach),
	{ 0, 0 }
};

static driver_t ed_pccard_driver = {
	"ed",
	ed_pccard_methods,
	sizeof(struct ed_softc)
};

DRIVER_MODULE(if_ed, pccard, ed_pccard_driver, ed_devclass, 0, 0);
#ifndef ED_NO_MIIBUS
DRIVER_MODULE(miibus, ed, miibus_driver, miibus_devclass, 0, 0);
#endif
OpenPOWER on IntegriCloud