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#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
115
116#define DRV_NAME "nmclan_cs"
117#define DRV_VERSION "0.16"
118
119
120
121
122
123
124#define MULTI_TX 0
125#define RESET_ON_TIMEOUT 1
126#define TX_INTERRUPTABLE 1
127#define RESET_XILINX 0
128
129
130
131
132
133#include <linux/module.h>
134#include <linux/kernel.h>
135#include <linux/ptrace.h>
136#include <linux/slab.h>
137#include <linux/string.h>
138#include <linux/timer.h>
139#include <linux/interrupt.h>
140#include <linux/in.h>
141#include <linux/delay.h>
142#include <linux/ethtool.h>
143#include <linux/netdevice.h>
144#include <linux/etherdevice.h>
145#include <linux/skbuff.h>
146#include <linux/if_arp.h>
147#include <linux/ioport.h>
148#include <linux/bitops.h>
149
150#include <pcmcia/cisreg.h>
151#include <pcmcia/cistpl.h>
152#include <pcmcia/ds.h>
153
154#include <asm/uaccess.h>
155#include <asm/io.h>
156
157
158
159
160
161#define MACE_LADRF_LEN 8
162
163
164
165#define MACE_MAX_IR_ITERATIONS 10
166#define MACE_MAX_RX_ITERATIONS 12
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182#define AM2150_MAX_TX_FRAMES 4
183#define AM2150_MAX_RX_FRAMES 12
184
185
186#define AM2150_RCV 0x00
187#define AM2150_XMT 0x04
188#define AM2150_XMT_SKIP 0x09
189#define AM2150_RCV_NEXT 0x0A
190#define AM2150_RCV_FRAME_COUNT 0x0B
191#define AM2150_MACE_BANK 0x0C
192#define AM2150_MACE_BASE 0x10
193
194
195#define MACE_RCVFIFO 0
196#define MACE_XMTFIFO 1
197#define MACE_XMTFC 2
198#define MACE_XMTFS 3
199#define MACE_XMTRC 4
200#define MACE_RCVFC 5
201#define MACE_RCVFS 6
202#define MACE_FIFOFC 7
203#define MACE_IR 8
204#define MACE_IMR 9
205#define MACE_PR 10
206#define MACE_BIUCC 11
207#define MACE_FIFOCC 12
208#define MACE_MACCC 13
209#define MACE_PLSCC 14
210#define MACE_PHYCC 15
211#define MACE_CHIPIDL 16
212#define MACE_CHIPIDH 17
213#define MACE_IAC 18
214
215#define MACE_LADRF 20
216#define MACE_PADR 21
217
218
219#define MACE_MPC 24
220
221#define MACE_RNTPC 26
222#define MACE_RCVCC 27
223
224#define MACE_UTR 29
225#define MACE_RTR1 30
226#define MACE_RTR2 31
227
228
229#define MACE_XMTRC_EXDEF 0x80
230#define MACE_XMTRC_XMTRC 0x0F
231
232#define MACE_XMTFS_XMTSV 0x80
233#define MACE_XMTFS_UFLO 0x40
234#define MACE_XMTFS_LCOL 0x20
235#define MACE_XMTFS_MORE 0x10
236#define MACE_XMTFS_ONE 0x08
237#define MACE_XMTFS_DEFER 0x04
238#define MACE_XMTFS_LCAR 0x02
239#define MACE_XMTFS_RTRY 0x01
240
241#define MACE_RCVFS_RCVSTS 0xF000
242#define MACE_RCVFS_OFLO 0x8000
243#define MACE_RCVFS_CLSN 0x4000
244#define MACE_RCVFS_FRAM 0x2000
245#define MACE_RCVFS_FCS 0x1000
246
247#define MACE_FIFOFC_RCVFC 0xF0
248#define MACE_FIFOFC_XMTFC 0x0F
249
250#define MACE_IR_JAB 0x80
251#define MACE_IR_BABL 0x40
252#define MACE_IR_CERR 0x20
253#define MACE_IR_RCVCCO 0x10
254#define MACE_IR_RNTPCO 0x08
255#define MACE_IR_MPCO 0x04
256#define MACE_IR_RCVINT 0x02
257#define MACE_IR_XMTINT 0x01
258
259#define MACE_MACCC_PROM 0x80
260#define MACE_MACCC_DXMT2PD 0x40
261#define MACE_MACCC_EMBA 0x20
262#define MACE_MACCC_RESERVED 0x10
263#define MACE_MACCC_DRCVPA 0x08
264#define MACE_MACCC_DRCVBC 0x04
265#define MACE_MACCC_ENXMT 0x02
266#define MACE_MACCC_ENRCV 0x01
267
268#define MACE_PHYCC_LNKFL 0x80
269#define MACE_PHYCC_DLNKTST 0x40
270#define MACE_PHYCC_REVPOL 0x20
271#define MACE_PHYCC_DAPC 0x10
272#define MACE_PHYCC_LRT 0x08
273#define MACE_PHYCC_ASEL 0x04
274#define MACE_PHYCC_RWAKE 0x02
275#define MACE_PHYCC_AWAKE 0x01
276
277#define MACE_IAC_ADDRCHG 0x80
278#define MACE_IAC_PHYADDR 0x04
279#define MACE_IAC_LOGADDR 0x02
280
281#define MACE_UTR_RTRE 0x80
282#define MACE_UTR_RTRD 0x40
283#define MACE_UTR_RPA 0x20
284#define MACE_UTR_FCOLL 0x10
285#define MACE_UTR_RCVFCSE 0x08
286#define MACE_UTR_LOOP_INCL_MENDEC 0x06
287#define MACE_UTR_LOOP_NO_MENDEC 0x04
288#define MACE_UTR_LOOP_EXTERNAL 0x02
289#define MACE_UTR_LOOP_NONE 0x00
290#define MACE_UTR_RESERVED 0x01
291
292
293#define MACEBANK(win_num) outb((win_num), ioaddr + AM2150_MACE_BANK)
294
295#define MACE_IMR_DEFAULT \
296 (0xFF - \
297 ( \
298 MACE_IR_CERR | \
299 MACE_IR_RCVCCO | \
300 MACE_IR_RNTPCO | \
301 MACE_IR_MPCO | \
302 MACE_IR_RCVINT | \
303 MACE_IR_XMTINT \
304 ) \
305 )
306#undef MACE_IMR_DEFAULT
307#define MACE_IMR_DEFAULT 0x00
308
309#define TX_TIMEOUT ((400*HZ)/1000)
310
311
312
313
314
315typedef struct _mace_statistics {
316
317 int xmtsv;
318 int uflo;
319 int lcol;
320 int more;
321 int one;
322 int defer;
323 int lcar;
324 int rtry;
325
326
327 int exdef;
328 int xmtrc;
329
330
331 int oflo;
332 int clsn;
333 int fram;
334 int fcs;
335
336
337 int rfs_rntpc;
338
339
340 int rfs_rcvcc;
341
342
343 int jab;
344 int babl;
345 int cerr;
346 int rcvcco;
347 int rntpco;
348 int mpco;
349
350
351 int mpc;
352
353
354 int rntpc;
355
356
357 int rcvcc;
358} mace_statistics;
359
360typedef struct _mace_private {
361 struct pcmcia_device *p_dev;
362 struct net_device_stats linux_stats;
363 mace_statistics mace_stats;
364
365
366 int multicast_ladrf[MACE_LADRF_LEN];
367 int multicast_num_addrs;
368
369 char tx_free_frames;
370 char tx_irq_disabled;
371
372 spinlock_t bank_lock;
373} mace_private;
374
375
376
377
378
379static const char *if_names[]={
380 "Auto", "10baseT", "BNC",
381};
382
383
384
385
386
387
388
389MODULE_DESCRIPTION("New Media PCMCIA ethernet driver");
390MODULE_LICENSE("GPL");
391
392#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
393
394
395INT_MODULE_PARM(if_port, 0);
396
397
398
399
400
401
402static int nmclan_config(struct pcmcia_device *link);
403static void nmclan_release(struct pcmcia_device *link);
404
405static void nmclan_reset(struct net_device *dev);
406static int mace_config(struct net_device *dev, struct ifmap *map);
407static int mace_open(struct net_device *dev);
408static int mace_close(struct net_device *dev);
409static netdev_tx_t mace_start_xmit(struct sk_buff *skb,
410 struct net_device *dev);
411static void mace_tx_timeout(struct net_device *dev);
412static irqreturn_t mace_interrupt(int irq, void *dev_id);
413static struct net_device_stats *mace_get_stats(struct net_device *dev);
414static int mace_rx(struct net_device *dev, unsigned char RxCnt);
415static void restore_multicast_list(struct net_device *dev);
416static void set_multicast_list(struct net_device *dev);
417static const struct ethtool_ops netdev_ethtool_ops;
418
419
420static void nmclan_detach(struct pcmcia_device *p_dev);
421
422static const struct net_device_ops mace_netdev_ops = {
423 .ndo_open = mace_open,
424 .ndo_stop = mace_close,
425 .ndo_start_xmit = mace_start_xmit,
426 .ndo_tx_timeout = mace_tx_timeout,
427 .ndo_set_config = mace_config,
428 .ndo_get_stats = mace_get_stats,
429 .ndo_set_rx_mode = set_multicast_list,
430 .ndo_change_mtu = eth_change_mtu,
431 .ndo_set_mac_address = eth_mac_addr,
432 .ndo_validate_addr = eth_validate_addr,
433};
434
435static int nmclan_probe(struct pcmcia_device *link)
436{
437 mace_private *lp;
438 struct net_device *dev;
439
440 dev_dbg(&link->dev, "nmclan_attach()\n");
441
442
443 dev = alloc_etherdev(sizeof(mace_private));
444 if (!dev)
445 return -ENOMEM;
446 lp = netdev_priv(dev);
447 lp->p_dev = link;
448 link->priv = dev;
449
450 spin_lock_init(&lp->bank_lock);
451 link->resource[0]->end = 32;
452 link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
453 link->config_flags |= CONF_ENABLE_IRQ;
454 link->config_index = 1;
455 link->config_regs = PRESENT_OPTION;
456
457 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
458
459 dev->netdev_ops = &mace_netdev_ops;
460 dev->ethtool_ops = &netdev_ethtool_ops;
461 dev->watchdog_timeo = TX_TIMEOUT;
462
463 return nmclan_config(link);
464}
465
466static void nmclan_detach(struct pcmcia_device *link)
467{
468 struct net_device *dev = link->priv;
469
470 dev_dbg(&link->dev, "nmclan_detach\n");
471
472 unregister_netdev(dev);
473
474 nmclan_release(link);
475
476 free_netdev(dev);
477}
478
479
480
481
482
483
484
485
486static int mace_read(mace_private *lp, unsigned int ioaddr, int reg)
487{
488 int data = 0xFF;
489 unsigned long flags;
490
491 switch (reg >> 4) {
492 case 0:
493 data = inb(ioaddr + AM2150_MACE_BASE + reg);
494 break;
495 case 1:
496 spin_lock_irqsave(&lp->bank_lock, flags);
497 MACEBANK(1);
498 data = inb(ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
499 MACEBANK(0);
500 spin_unlock_irqrestore(&lp->bank_lock, flags);
501 break;
502 }
503 return data & 0xFF;
504}
505
506
507
508
509
510
511
512
513static void mace_write(mace_private *lp, unsigned int ioaddr, int reg,
514 int data)
515{
516 unsigned long flags;
517
518 switch (reg >> 4) {
519 case 0:
520 outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + reg);
521 break;
522 case 1:
523 spin_lock_irqsave(&lp->bank_lock, flags);
524 MACEBANK(1);
525 outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
526 MACEBANK(0);
527 spin_unlock_irqrestore(&lp->bank_lock, flags);
528 break;
529 }
530}
531
532
533
534
535
536static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr)
537{
538 int i;
539 int ct = 0;
540
541
542 mace_write(lp, ioaddr, MACE_BIUCC, 1);
543 while (mace_read(lp, ioaddr, MACE_BIUCC) & 0x01) {
544 ;
545 if(++ct > 500)
546 {
547 pr_err("reset failed, card removed?\n");
548 return -1;
549 }
550 udelay(1);
551 }
552 mace_write(lp, ioaddr, MACE_BIUCC, 0);
553
554
555 mace_write(lp, ioaddr, MACE_FIFOCC, 0x0F);
556
557 mace_write(lp,ioaddr, MACE_RCVFC, 0);
558 mace_write(lp, ioaddr, MACE_IMR, 0xFF);
559
560
561
562
563
564
565
566
567
568
569
570
571
572 switch (if_port) {
573 case 1:
574 mace_write(lp, ioaddr, MACE_PLSCC, 0x02);
575 break;
576 case 2:
577 mace_write(lp, ioaddr, MACE_PLSCC, 0x00);
578 break;
579 default:
580 mace_write(lp, ioaddr, MACE_PHYCC, 4);
581
582
583
584 break;
585 }
586
587 mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_PHYADDR);
588
589 ct = 0;
590 while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
591 {
592 if(++ ct > 500)
593 {
594 pr_err("ADDRCHG timeout, card removed?\n");
595 return -1;
596 }
597 }
598
599 for (i = 0; i < ETH_ALEN; i++)
600 mace_write(lp, ioaddr, MACE_PADR, enet_addr[i]);
601
602
603
604
605 mace_write(lp, ioaddr, MACE_MACCC, 0x00);
606 return 0;
607}
608
609static int nmclan_config(struct pcmcia_device *link)
610{
611 struct net_device *dev = link->priv;
612 mace_private *lp = netdev_priv(dev);
613 u8 *buf;
614 size_t len;
615 int i, ret;
616 unsigned int ioaddr;
617
618 dev_dbg(&link->dev, "nmclan_config\n");
619
620 link->io_lines = 5;
621 ret = pcmcia_request_io(link);
622 if (ret)
623 goto failed;
624 ret = pcmcia_request_irq(link, mace_interrupt);
625 if (ret)
626 goto failed;
627 ret = pcmcia_enable_device(link);
628 if (ret)
629 goto failed;
630
631 dev->irq = link->irq;
632 dev->base_addr = link->resource[0]->start;
633
634 ioaddr = dev->base_addr;
635
636
637 len = pcmcia_get_tuple(link, 0x80, &buf);
638 if (!buf || len < ETH_ALEN) {
639 kfree(buf);
640 goto failed;
641 }
642 memcpy(dev->dev_addr, buf, ETH_ALEN);
643 kfree(buf);
644
645
646 {
647 char sig[2];
648
649 sig[0] = mace_read(lp, ioaddr, MACE_CHIPIDL);
650 sig[1] = mace_read(lp, ioaddr, MACE_CHIPIDH);
651 if ((sig[0] == 0x40) && ((sig[1] & 0x0F) == 0x09)) {
652 dev_dbg(&link->dev, "nmclan_cs configured: mace id=%x %x\n",
653 sig[0], sig[1]);
654 } else {
655 pr_notice("mace id not found: %x %x should be 0x40 0x?9\n",
656 sig[0], sig[1]);
657 return -ENODEV;
658 }
659 }
660
661 if(mace_init(lp, ioaddr, dev->dev_addr) == -1)
662 goto failed;
663
664
665 if (if_port <= 2)
666 dev->if_port = if_port;
667 else
668 pr_notice("invalid if_port requested\n");
669
670 SET_NETDEV_DEV(dev, &link->dev);
671
672 i = register_netdev(dev);
673 if (i != 0) {
674 pr_notice("register_netdev() failed\n");
675 goto failed;
676 }
677
678 netdev_info(dev, "nmclan: port %#3lx, irq %d, %s port, hw_addr %pM\n",
679 dev->base_addr, dev->irq, if_names[dev->if_port], dev->dev_addr);
680 return 0;
681
682failed:
683 nmclan_release(link);
684 return -ENODEV;
685}
686
687static void nmclan_release(struct pcmcia_device *link)
688{
689 dev_dbg(&link->dev, "nmclan_release\n");
690 pcmcia_disable_device(link);
691}
692
693static int nmclan_suspend(struct pcmcia_device *link)
694{
695 struct net_device *dev = link->priv;
696
697 if (link->open)
698 netif_device_detach(dev);
699
700 return 0;
701}
702
703static int nmclan_resume(struct pcmcia_device *link)
704{
705 struct net_device *dev = link->priv;
706
707 if (link->open) {
708 nmclan_reset(dev);
709 netif_device_attach(dev);
710 }
711
712 return 0;
713}
714
715
716
717
718
719
720static void nmclan_reset(struct net_device *dev)
721{
722 mace_private *lp = netdev_priv(dev);
723
724#if RESET_XILINX
725 struct pcmcia_device *link = &lp->link;
726 u8 OrigCorValue;
727
728
729 pcmcia_read_config_byte(link, CISREG_COR, &OrigCorValue);
730
731
732 dev_dbg(&link->dev, "nmclan_reset: OrigCorValue=0x%x, resetting...\n",
733 OrigCorValue);
734 pcmcia_write_config_byte(link, CISREG_COR, COR_SOFT_RESET);
735
736
737
738 pcmcia_write_config_byte(link, CISREG_COR,
739 (COR_LEVEL_REQ | (OrigCorValue & COR_CONFIG_MASK)));
740
741 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
742
743#endif
744
745
746 lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
747
748
749 mace_init(lp, dev->base_addr, dev->dev_addr);
750 mace_write(lp, dev->base_addr, MACE_IMR, MACE_IMR_DEFAULT);
751
752
753 restore_multicast_list(dev);
754}
755
756
757
758
759
760
761
762static int mace_config(struct net_device *dev, struct ifmap *map)
763{
764 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
765 if (map->port <= 2) {
766 dev->if_port = map->port;
767 netdev_info(dev, "switched to %s port\n", if_names[dev->if_port]);
768 } else
769 return -EINVAL;
770 }
771 return 0;
772}
773
774
775
776
777
778static int mace_open(struct net_device *dev)
779{
780 unsigned int ioaddr = dev->base_addr;
781 mace_private *lp = netdev_priv(dev);
782 struct pcmcia_device *link = lp->p_dev;
783
784 if (!pcmcia_dev_present(link))
785 return -ENODEV;
786
787 link->open++;
788
789 MACEBANK(0);
790
791 netif_start_queue(dev);
792 nmclan_reset(dev);
793
794 return 0;
795}
796
797
798
799
800
801static int mace_close(struct net_device *dev)
802{
803 unsigned int ioaddr = dev->base_addr;
804 mace_private *lp = netdev_priv(dev);
805 struct pcmcia_device *link = lp->p_dev;
806
807 dev_dbg(&link->dev, "%s: shutting down ethercard.\n", dev->name);
808
809
810 outb(0xFF, ioaddr + AM2150_MACE_BASE + MACE_IMR);
811
812 link->open--;
813 netif_stop_queue(dev);
814
815 return 0;
816}
817
818static void netdev_get_drvinfo(struct net_device *dev,
819 struct ethtool_drvinfo *info)
820{
821 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
822 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
823 snprintf(info->bus_info, sizeof(info->bus_info),
824 "PCMCIA 0x%lx", dev->base_addr);
825}
826
827static const struct ethtool_ops netdev_ethtool_ops = {
828 .get_drvinfo = netdev_get_drvinfo,
829};
830
831
832
833
834
835
836
837
838
839
840
841
842static void mace_tx_timeout(struct net_device *dev)
843{
844 mace_private *lp = netdev_priv(dev);
845 struct pcmcia_device *link = lp->p_dev;
846
847 netdev_notice(dev, "transmit timed out -- ");
848#if RESET_ON_TIMEOUT
849 pr_cont("resetting card\n");
850 pcmcia_reset_card(link->socket);
851#else
852 pr_cont("NOT resetting card\n");
853#endif
854 dev->trans_start = jiffies;
855 netif_wake_queue(dev);
856}
857
858static netdev_tx_t mace_start_xmit(struct sk_buff *skb,
859 struct net_device *dev)
860{
861 mace_private *lp = netdev_priv(dev);
862 unsigned int ioaddr = dev->base_addr;
863
864 netif_stop_queue(dev);
865
866 pr_debug("%s: mace_start_xmit(length = %ld) called.\n",
867 dev->name, (long)skb->len);
868
869#if (!TX_INTERRUPTABLE)
870
871 outb(MACE_IMR_DEFAULT | MACE_IR_XMTINT,
872 ioaddr + AM2150_MACE_BASE + MACE_IMR);
873 lp->tx_irq_disabled=1;
874#endif
875
876 {
877
878
879
880
881
882
883 lp->linux_stats.tx_bytes += skb->len;
884 lp->tx_free_frames--;
885
886
887
888 outw(skb->len, ioaddr + AM2150_XMT);
889
890 outsw(ioaddr + AM2150_XMT, skb->data, skb->len >> 1);
891 if (skb->len & 1) {
892
893 outb(skb->data[skb->len-1], ioaddr + AM2150_XMT);
894 }
895
896#if MULTI_TX
897 if (lp->tx_free_frames > 0)
898 netif_start_queue(dev);
899#endif
900 }
901
902#if (!TX_INTERRUPTABLE)
903
904 lp->tx_irq_disabled=0;
905 outb(MACE_IMR_DEFAULT, ioaddr + AM2150_MACE_BASE + MACE_IMR);
906#endif
907
908 dev_kfree_skb(skb);
909
910 return NETDEV_TX_OK;
911}
912
913
914
915
916
917static irqreturn_t mace_interrupt(int irq, void *dev_id)
918{
919 struct net_device *dev = (struct net_device *) dev_id;
920 mace_private *lp = netdev_priv(dev);
921 unsigned int ioaddr;
922 int status;
923 int IntrCnt = MACE_MAX_IR_ITERATIONS;
924
925 if (dev == NULL) {
926 pr_debug("mace_interrupt(): irq 0x%X for unknown device.\n",
927 irq);
928 return IRQ_NONE;
929 }
930
931 ioaddr = dev->base_addr;
932
933 if (lp->tx_irq_disabled) {
934 const char *msg;
935 if (lp->tx_irq_disabled)
936 msg = "Interrupt with tx_irq_disabled";
937 else
938 msg = "Re-entering the interrupt handler";
939 netdev_notice(dev, "%s [isr=%02X, imr=%02X]\n",
940 msg,
941 inb(ioaddr + AM2150_MACE_BASE + MACE_IR),
942 inb(ioaddr + AM2150_MACE_BASE + MACE_IMR));
943
944 return IRQ_NONE;
945 }
946
947 if (!netif_device_present(dev)) {
948 netdev_dbg(dev, "interrupt from dead card\n");
949 return IRQ_NONE;
950 }
951
952 do {
953
954 status = inb(ioaddr + AM2150_MACE_BASE + MACE_IR);
955 if (!(status & ~MACE_IMR_DEFAULT) && IntrCnt == MACE_MAX_IR_ITERATIONS)
956 return IRQ_NONE;
957
958 pr_debug("mace_interrupt: irq 0x%X status 0x%X.\n", irq, status);
959
960 if (status & MACE_IR_RCVINT) {
961 mace_rx(dev, MACE_MAX_RX_ITERATIONS);
962 }
963
964 if (status & MACE_IR_XMTINT) {
965 unsigned char fifofc;
966 unsigned char xmtrc;
967 unsigned char xmtfs;
968
969 fifofc = inb(ioaddr + AM2150_MACE_BASE + MACE_FIFOFC);
970 if ((fifofc & MACE_FIFOFC_XMTFC)==0) {
971 lp->linux_stats.tx_errors++;
972 outb(0xFF, ioaddr + AM2150_XMT_SKIP);
973 }
974
975
976 xmtrc = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTRC);
977 if (xmtrc & MACE_XMTRC_EXDEF) lp->mace_stats.exdef++;
978 lp->mace_stats.xmtrc += (xmtrc & MACE_XMTRC_XMTRC);
979
980 if (
981 (xmtfs = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTFS)) &
982 MACE_XMTFS_XMTSV
983 ) {
984 lp->mace_stats.xmtsv++;
985
986 if (xmtfs & ~MACE_XMTFS_XMTSV) {
987 if (xmtfs & MACE_XMTFS_UFLO) {
988
989
990 lp->mace_stats.uflo++;
991 }
992 if (xmtfs & MACE_XMTFS_LCOL) {
993
994 lp->mace_stats.lcol++;
995 }
996 if (xmtfs & MACE_XMTFS_MORE) {
997
998 lp->mace_stats.more++;
999 }
1000 if (xmtfs & MACE_XMTFS_ONE) {
1001
1002 lp->mace_stats.one++;
1003 }
1004 if (xmtfs & MACE_XMTFS_DEFER) {
1005
1006 lp->mace_stats.defer++;
1007 }
1008 if (xmtfs & MACE_XMTFS_LCAR) {
1009
1010 lp->mace_stats.lcar++;
1011 }
1012 if (xmtfs & MACE_XMTFS_RTRY) {
1013
1014 lp->mace_stats.rtry++;
1015 }
1016 }
1017
1018 }
1019
1020 lp->linux_stats.tx_packets++;
1021 lp->tx_free_frames++;
1022 netif_wake_queue(dev);
1023 }
1024
1025 if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) {
1026 if (status & MACE_IR_JAB) {
1027
1028 lp->mace_stats.jab++;
1029 }
1030 if (status & MACE_IR_BABL) {
1031
1032 lp->mace_stats.babl++;
1033 }
1034 if (status & MACE_IR_CERR) {
1035
1036
1037
1038 lp->mace_stats.cerr++;
1039 }
1040 if (status & MACE_IR_RCVCCO) {
1041
1042 lp->mace_stats.rcvcco++;
1043 }
1044 if (status & MACE_IR_RNTPCO) {
1045
1046 lp->mace_stats.rntpco++;
1047 }
1048 if (status & MACE_IR_MPCO) {
1049
1050 lp->mace_stats.mpco++;
1051 }
1052 }
1053
1054 } while ((status & ~MACE_IMR_DEFAULT) && (--IntrCnt));
1055
1056 return IRQ_HANDLED;
1057}
1058
1059
1060
1061
1062
1063static int mace_rx(struct net_device *dev, unsigned char RxCnt)
1064{
1065 mace_private *lp = netdev_priv(dev);
1066 unsigned int ioaddr = dev->base_addr;
1067 unsigned char rx_framecnt;
1068 unsigned short rx_status;
1069
1070 while (
1071 ((rx_framecnt = inb(ioaddr + AM2150_RCV_FRAME_COUNT)) > 0) &&
1072 (rx_framecnt <= 12) &&
1073 (RxCnt--)
1074 ) {
1075 rx_status = inw(ioaddr + AM2150_RCV);
1076
1077 pr_debug("%s: in mace_rx(), framecnt 0x%X, rx_status"
1078 " 0x%X.\n", dev->name, rx_framecnt, rx_status);
1079
1080 if (rx_status & MACE_RCVFS_RCVSTS) {
1081 lp->linux_stats.rx_errors++;
1082 if (rx_status & MACE_RCVFS_OFLO) {
1083 lp->mace_stats.oflo++;
1084 }
1085 if (rx_status & MACE_RCVFS_CLSN) {
1086 lp->mace_stats.clsn++;
1087 }
1088 if (rx_status & MACE_RCVFS_FRAM) {
1089 lp->mace_stats.fram++;
1090 }
1091 if (rx_status & MACE_RCVFS_FCS) {
1092 lp->mace_stats.fcs++;
1093 }
1094 } else {
1095 short pkt_len = (rx_status & ~MACE_RCVFS_RCVSTS) - 4;
1096
1097 struct sk_buff *skb;
1098
1099 lp->mace_stats.rfs_rntpc += inb(ioaddr + AM2150_RCV);
1100
1101 lp->mace_stats.rfs_rcvcc += inb(ioaddr + AM2150_RCV);
1102
1103
1104 pr_debug(" receiving packet size 0x%X rx_status"
1105 " 0x%X.\n", pkt_len, rx_status);
1106
1107 skb = netdev_alloc_skb(dev, pkt_len + 2);
1108
1109 if (skb != NULL) {
1110 skb_reserve(skb, 2);
1111 insw(ioaddr + AM2150_RCV, skb_put(skb, pkt_len), pkt_len>>1);
1112 if (pkt_len & 1)
1113 *(skb_tail_pointer(skb) - 1) = inb(ioaddr + AM2150_RCV);
1114 skb->protocol = eth_type_trans(skb, dev);
1115
1116 netif_rx(skb);
1117
1118 lp->linux_stats.rx_packets++;
1119 lp->linux_stats.rx_bytes += pkt_len;
1120 outb(0xFF, ioaddr + AM2150_RCV_NEXT);
1121 continue;
1122 } else {
1123 pr_debug("%s: couldn't allocate a sk_buff of size"
1124 " %d.\n", dev->name, pkt_len);
1125 lp->linux_stats.rx_dropped++;
1126 }
1127 }
1128 outb(0xFF, ioaddr + AM2150_RCV_NEXT);
1129 }
1130
1131 return 0;
1132}
1133
1134
1135
1136
1137static void pr_linux_stats(struct net_device_stats *pstats)
1138{
1139 pr_debug("pr_linux_stats\n");
1140 pr_debug(" rx_packets=%-7ld tx_packets=%ld\n",
1141 (long)pstats->rx_packets, (long)pstats->tx_packets);
1142 pr_debug(" rx_errors=%-7ld tx_errors=%ld\n",
1143 (long)pstats->rx_errors, (long)pstats->tx_errors);
1144 pr_debug(" rx_dropped=%-7ld tx_dropped=%ld\n",
1145 (long)pstats->rx_dropped, (long)pstats->tx_dropped);
1146 pr_debug(" multicast=%-7ld collisions=%ld\n",
1147 (long)pstats->multicast, (long)pstats->collisions);
1148
1149 pr_debug(" rx_length_errors=%-7ld rx_over_errors=%ld\n",
1150 (long)pstats->rx_length_errors, (long)pstats->rx_over_errors);
1151 pr_debug(" rx_crc_errors=%-7ld rx_frame_errors=%ld\n",
1152 (long)pstats->rx_crc_errors, (long)pstats->rx_frame_errors);
1153 pr_debug(" rx_fifo_errors=%-7ld rx_missed_errors=%ld\n",
1154 (long)pstats->rx_fifo_errors, (long)pstats->rx_missed_errors);
1155
1156 pr_debug(" tx_aborted_errors=%-7ld tx_carrier_errors=%ld\n",
1157 (long)pstats->tx_aborted_errors, (long)pstats->tx_carrier_errors);
1158 pr_debug(" tx_fifo_errors=%-7ld tx_heartbeat_errors=%ld\n",
1159 (long)pstats->tx_fifo_errors, (long)pstats->tx_heartbeat_errors);
1160 pr_debug(" tx_window_errors=%ld\n",
1161 (long)pstats->tx_window_errors);
1162}
1163
1164
1165
1166
1167static void pr_mace_stats(mace_statistics *pstats)
1168{
1169 pr_debug("pr_mace_stats\n");
1170
1171 pr_debug(" xmtsv=%-7d uflo=%d\n",
1172 pstats->xmtsv, pstats->uflo);
1173 pr_debug(" lcol=%-7d more=%d\n",
1174 pstats->lcol, pstats->more);
1175 pr_debug(" one=%-7d defer=%d\n",
1176 pstats->one, pstats->defer);
1177 pr_debug(" lcar=%-7d rtry=%d\n",
1178 pstats->lcar, pstats->rtry);
1179
1180
1181 pr_debug(" exdef=%-7d xmtrc=%d\n",
1182 pstats->exdef, pstats->xmtrc);
1183
1184
1185 pr_debug(" oflo=%-7d clsn=%d\n",
1186 pstats->oflo, pstats->clsn);
1187 pr_debug(" fram=%-7d fcs=%d\n",
1188 pstats->fram, pstats->fcs);
1189
1190
1191
1192 pr_debug(" rfs_rntpc=%-7d rfs_rcvcc=%d\n",
1193 pstats->rfs_rntpc, pstats->rfs_rcvcc);
1194
1195
1196 pr_debug(" jab=%-7d babl=%d\n",
1197 pstats->jab, pstats->babl);
1198 pr_debug(" cerr=%-7d rcvcco=%d\n",
1199 pstats->cerr, pstats->rcvcco);
1200 pr_debug(" rntpco=%-7d mpco=%d\n",
1201 pstats->rntpco, pstats->mpco);
1202
1203
1204 pr_debug(" mpc=%d\n", pstats->mpc);
1205
1206
1207 pr_debug(" rntpc=%d\n", pstats->rntpc);
1208
1209
1210 pr_debug(" rcvcc=%d\n", pstats->rcvcc);
1211
1212}
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227static void update_stats(unsigned int ioaddr, struct net_device *dev)
1228{
1229 mace_private *lp = netdev_priv(dev);
1230
1231 lp->mace_stats.rcvcc += mace_read(lp, ioaddr, MACE_RCVCC);
1232 lp->mace_stats.rntpc += mace_read(lp, ioaddr, MACE_RNTPC);
1233 lp->mace_stats.mpc += mace_read(lp, ioaddr, MACE_MPC);
1234
1235
1236
1237
1238
1239
1240
1241 lp->linux_stats.collisions =
1242 lp->mace_stats.rcvcco * 256 + lp->mace_stats.rcvcc;
1243
1244
1245
1246
1247
1248
1249 lp->linux_stats.rx_length_errors =
1250 lp->mace_stats.rntpco * 256 + lp->mace_stats.rntpc;
1251
1252 lp->linux_stats.rx_crc_errors = lp->mace_stats.fcs;
1253 lp->linux_stats.rx_frame_errors = lp->mace_stats.fram;
1254 lp->linux_stats.rx_fifo_errors = lp->mace_stats.oflo;
1255 lp->linux_stats.rx_missed_errors =
1256 lp->mace_stats.mpco * 256 + lp->mace_stats.mpc;
1257
1258
1259 lp->linux_stats.tx_aborted_errors = lp->mace_stats.rtry;
1260 lp->linux_stats.tx_carrier_errors = lp->mace_stats.lcar;
1261
1262 lp->linux_stats.tx_fifo_errors = lp->mace_stats.uflo;
1263 lp->linux_stats.tx_heartbeat_errors = lp->mace_stats.cerr;
1264
1265}
1266
1267
1268
1269
1270
1271static struct net_device_stats *mace_get_stats(struct net_device *dev)
1272{
1273 mace_private *lp = netdev_priv(dev);
1274
1275 update_stats(dev->base_addr, dev);
1276
1277 pr_debug("%s: updating the statistics.\n", dev->name);
1278 pr_linux_stats(&lp->linux_stats);
1279 pr_mace_stats(&lp->mace_stats);
1280
1281 return &lp->linux_stats;
1282}
1283
1284
1285
1286
1287
1288
1289#ifdef BROKEN_MULTICAST
1290
1291static void updateCRC(int *CRC, int bit)
1292{
1293 static const int poly[]={
1294 1,1,1,0, 1,1,0,1,
1295 1,0,1,1, 1,0,0,0,
1296 1,0,0,0, 0,0,1,1,
1297 0,0,1,0, 0,0,0,0
1298 };
1299
1300
1301 int j;
1302
1303
1304 for (j = 32; j > 0; j--)
1305 CRC[j] = CRC[j-1];
1306 CRC[0] = 0;
1307
1308
1309 if (bit ^ CRC[32])
1310 for (j = 0; j < 32; j++)
1311 CRC[j] ^= poly[j];
1312}
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323static void BuildLAF(int *ladrf, int *adr)
1324{
1325 int CRC[33]={1};
1326
1327 int i, byte;
1328 int hashcode;
1329
1330 CRC[32]=0;
1331
1332 for (byte = 0; byte < 6; byte++)
1333 for (i = 0; i < 8; i++)
1334 updateCRC(CRC, (adr[byte] >> i) & 1);
1335
1336 hashcode = 0;
1337 for (i = 0; i < 6; i++)
1338 hashcode = (hashcode << 1) + CRC[i];
1339
1340 byte = hashcode >> 3;
1341 ladrf[byte] |= (1 << (hashcode & 7));
1342
1343#ifdef PCMCIA_DEBUG
1344 if (0)
1345 printk(KERN_DEBUG " adr =%pM\n", adr);
1346 printk(KERN_DEBUG " hashcode = %d(decimal), ladrf[0:63] =", hashcode);
1347 for (i = 0; i < 8; i++)
1348 pr_cont(" %02X", ladrf[i]);
1349 pr_cont("\n");
1350#endif
1351}
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362static void restore_multicast_list(struct net_device *dev)
1363{
1364 mace_private *lp = netdev_priv(dev);
1365 int num_addrs = lp->multicast_num_addrs;
1366 int *ladrf = lp->multicast_ladrf;
1367 unsigned int ioaddr = dev->base_addr;
1368 int i;
1369
1370 pr_debug("%s: restoring Rx mode to %d addresses.\n",
1371 dev->name, num_addrs);
1372
1373 if (num_addrs > 0) {
1374
1375 pr_debug("Attempt to restore multicast list detected.\n");
1376
1377 mace_write(lp, ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_LOGADDR);
1378
1379 while (mace_read(lp, ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
1380 ;
1381
1382 for (i = 0; i < MACE_LADRF_LEN; i++)
1383 mace_write(lp, ioaddr, MACE_LADRF, ladrf[i]);
1384
1385 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_RCVFCSE | MACE_UTR_LOOP_EXTERNAL);
1386 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1387
1388 } else if (num_addrs < 0) {
1389
1390
1391 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1392 mace_write(lp, ioaddr, MACE_MACCC,
1393 MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1394 );
1395
1396 } else {
1397
1398
1399 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1400 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1401
1402 }
1403}
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419static void set_multicast_list(struct net_device *dev)
1420{
1421 mace_private *lp = netdev_priv(dev);
1422 int adr[ETH_ALEN] = {0};
1423 struct netdev_hw_addr *ha;
1424
1425#ifdef PCMCIA_DEBUG
1426 {
1427 static int old;
1428 if (netdev_mc_count(dev) != old) {
1429 old = netdev_mc_count(dev);
1430 pr_debug("%s: setting Rx mode to %d addresses.\n",
1431 dev->name, old);
1432 }
1433 }
1434#endif
1435
1436
1437 lp->multicast_num_addrs = netdev_mc_count(dev);
1438
1439
1440 if (num_addrs > 0) {
1441
1442 memset(lp->multicast_ladrf, 0, MACE_LADRF_LEN);
1443 netdev_for_each_mc_addr(ha, dev) {
1444 memcpy(adr, ha->addr, ETH_ALEN);
1445 BuildLAF(lp->multicast_ladrf, adr);
1446 }
1447 }
1448
1449 restore_multicast_list(dev);
1450
1451}
1452
1453#endif
1454
1455static void restore_multicast_list(struct net_device *dev)
1456{
1457 unsigned int ioaddr = dev->base_addr;
1458 mace_private *lp = netdev_priv(dev);
1459
1460 pr_debug("%s: restoring Rx mode to %d addresses.\n", dev->name,
1461 lp->multicast_num_addrs);
1462
1463 if (dev->flags & IFF_PROMISC) {
1464
1465 mace_write(lp,ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1466 mace_write(lp, ioaddr, MACE_MACCC,
1467 MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
1468 );
1469 } else {
1470
1471 mace_write(lp, ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
1472 mace_write(lp, ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
1473 }
1474}
1475
1476static void set_multicast_list(struct net_device *dev)
1477{
1478 mace_private *lp = netdev_priv(dev);
1479
1480#ifdef PCMCIA_DEBUG
1481 {
1482 static int old;
1483 if (netdev_mc_count(dev) != old) {
1484 old = netdev_mc_count(dev);
1485 pr_debug("%s: setting Rx mode to %d addresses.\n",
1486 dev->name, old);
1487 }
1488 }
1489#endif
1490
1491 lp->multicast_num_addrs = netdev_mc_count(dev);
1492 restore_multicast_list(dev);
1493
1494}
1495
1496static const struct pcmcia_device_id nmclan_ids[] = {
1497 PCMCIA_DEVICE_PROD_ID12("New Media Corporation", "Ethernet", 0x085a850b, 0x00b2e941),
1498 PCMCIA_DEVICE_PROD_ID12("Portable Add-ons", "Ethernet+", 0xebf1d60, 0xad673aaf),
1499 PCMCIA_DEVICE_NULL,
1500};
1501MODULE_DEVICE_TABLE(pcmcia, nmclan_ids);
1502
1503static struct pcmcia_driver nmclan_cs_driver = {
1504 .owner = THIS_MODULE,
1505 .name = "nmclan_cs",
1506 .probe = nmclan_probe,
1507 .remove = nmclan_detach,
1508 .id_table = nmclan_ids,
1509 .suspend = nmclan_suspend,
1510 .resume = nmclan_resume,
1511};
1512module_pcmcia_driver(nmclan_cs_driver);
1513