1 /* at1700.c: A network device driver for the Allied Telesis AT1700.
3 Written 1993-98 by Donald Becker.
5 Copyright 1993 United States Government as represented by the
6 Director, National Security Agency.
8 This software may be used and distributed according to the terms
9 of the GNU Public License, incorporated herein by reference.
11 The author may be reached as becker@CESDIS.gsfc.nasa.gov, or C/O
12 Center of Excellence in Space Data and Information Sciences
13 Code 930.5, Goddard Space Flight Center, Greenbelt MD 20771
15 This is a device driver for the Allied Telesis AT1700, and
16 Fujitsu FMV-181/182/181A/182A/183/184/183A/184A, which are
17 straight-forward Fujitsu MB86965 implementations.
19 Modification for Fujitsu FMV-18X cards is done by Yutaka Tamiya
20 (tamy@flab.fujitsu.co.jp).
23 The Fujitsu MB86965 datasheet.
25 After the initial version of this driver was written Gerry Sawkins of
26 ATI provided their EEPROM configuration code header file.
27 Thanks to NIIBE Yutaka <gniibe@mri.co.jp> for bug fixes.
29 MCA bus (AT1720) support by Rene Schmit <rene@bss.lu>
32 The MB86965 has a design flaw that makes all probes unreliable. Not
33 only is it difficult to detect, it also moves around in I/O space in
34 response to inb()s from other device probes!
37 static const char *version
=
38 "at1700.c:v1.15 4/7/98 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n";
40 #include <linux/config.h>
41 #include <linux/module.h>
43 #include <linux/kernel.h>
44 #include <linux/sched.h>
45 #include <linux/types.h>
46 #include <linux/fcntl.h>
47 #include <linux/interrupt.h>
48 #include <linux/ptrace.h>
49 #include <linux/ioport.h>
51 #include <linux/malloc.h>
52 #include <linux/string.h>
53 #include <linux/init.h>
54 #include <asm/system.h>
55 #include <asm/bitops.h>
58 #include <linux/errno.h>
60 #include <linux/netdevice.h>
61 #include <linux/etherdevice.h>
62 #include <linux/skbuff.h>
64 #include <linux/mca.h>
66 /* Tunable parameters. */
68 /* When to switch from the 64-entry multicast filter to Rx-all-multicast. */
69 #define MC_FILTERBREAK 64
71 /* These unusual address orders are used to verify the CONFIG register. */
73 static int fmv18x_probe_list
[] = {
74 0x220, 0x240, 0x260, 0x280, 0x2a0, 0x2c0, 0x300, 0x340, 0
81 static int at1700_probe_list
[] = {
82 0x260, 0x280, 0x2a0, 0x240, 0x340, 0x320, 0x380, 0x300, 0
89 static int at1700_ioaddr_pattern
[] = {
90 0x00, 0x04, 0x01, 0x05, 0x02, 0x06, 0x03, 0x07
93 static int at1700_mca_probe_list
[] = {
94 0x400, 0x1400, 0x2400, 0x3400, 0x4400, 0x5400, 0x6400, 0x7400, 0
97 static int at1700_irq_pattern
[] = {
98 0x00, 0x00, 0x00, 0x30, 0x70, 0xb0, 0x00, 0x00,
99 0x00, 0xf0, 0x34, 0x74, 0xb4, 0x00, 0x00, 0xf4, 0x00
103 /* use 0 for production, 1 for verification, >2 for debug */
107 static unsigned int net_debug
= NET_DEBUG
;
109 typedef unsigned char uchar
;
111 /* Information that need to be kept for each board. */
113 struct enet_statistics stats
;
114 unsigned char mc_filter
[8];
115 uint jumpered
:1; /* Set iff the board has jumper config. */
116 uint tx_started
:1; /* Packets are on the Tx queue. */
117 uint tx_queue_ready
:1; /* Tx queue is ready to be sent. */
118 uint rx_started
:1; /* Packets are Rxing. */
120 uchar tx_queue
; /* Number of packet on the Tx queue. */
121 char mca_slot
; /* -1 means ISA */
122 ushort tx_queue_len
; /* Current length of the Tx queue. */
126 /* Offsets from the base address. */
130 #define TX_INTR 2 /* Bit-mapped interrupt enable registers. */
134 #define CONFIG_0 6 /* Misc. configuration settings. */
136 /* Run-time register bank 2 definitions. */
137 #define DATAPORT 8 /* Word-wide DMA or programmed-I/O dataport. */
139 #define COL16CNTL 11 /* Controll Reg for 16 collisions */
141 /* Configuration registers only on the '865A/B chips. */
142 #define EEPROM_Ctrl 16
143 #define EEPROM_Data 17
144 #define CARDSTATUS 16 /* FMV-18x Card Status */
145 #define CARDSTATUS1 17 /* FMV-18x Card Status */
146 #define IOCONFIG 18 /* Either read the jumper, or move the I/O. */
148 #define SAPROM 20 /* The station address PROM, if no EEPROM. */
149 #define RESET 31 /* Write to reset some parts of the chip. */
150 #define AT1700_IO_EXTENT 32
151 /* Index to functions, as function prototypes. */
153 extern int at1700_probe(struct net_device
*dev
);
155 static int at1700_probe1(struct net_device
*dev
, int ioaddr
);
156 static int read_eeprom(int ioaddr
, int location
);
157 static int net_open(struct net_device
*dev
);
158 static int net_send_packet(struct sk_buff
*skb
, struct net_device
*dev
);
159 static void net_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
);
160 static void net_rx(struct net_device
*dev
);
161 static int net_close(struct net_device
*dev
);
162 static struct enet_statistics
*net_get_stats(struct net_device
*dev
);
163 static void set_rx_mode(struct net_device
*dev
);
167 struct at1720_mca_adapters_struct
{
171 /* rEnE : maybe there are others I don't know off... */
173 struct at1720_mca_adapters_struct at1720_mca_adapters
[] = {
174 { "Allied Telesys AT1720AT", 0x6410 },
175 { "Allied Telesys AT1720BT", 0x6413 },
176 { "Allied Telesys AT1720T", 0x6416 },
181 /* Check for a network adaptor of this type, and return '0' iff one exists.
182 If dev->base_addr == 0, probe all likely locations.
183 If dev->base_addr == 1, always return failure.
184 If dev->base_addr == 2, allocate space for the device and return success
185 (detachable devices only).
189 /* Support for a alternate probe manager, which will eliminate the
190 boilerplate below. */
191 struct netdev_entry at1700_drv
=
192 {"at1700", at1700_probe1
, AT1700_IO_EXTENT
, at1700_probe_list
};
195 int at1700_probe(struct net_device
*dev
)
198 int base_addr
= dev
? dev
->base_addr
: 0;
200 if (base_addr
> 0x1ff) /* Check a single specified location. */
201 return at1700_probe1(dev
, base_addr
);
202 else if (base_addr
!= 0) /* Don't probe at all. */
205 for (i
= 0; at1700_probe_list
[i
]; i
++) {
206 int ioaddr
= at1700_probe_list
[i
];
207 if (check_region(ioaddr
, AT1700_IO_EXTENT
))
209 if (at1700_probe1(dev
, ioaddr
) == 0)
216 /* The Fujitsu datasheet suggests that the NIC be probed for by checking its
217 "signature", the default bit pattern after a reset. This *doesn't* work --
218 there is no way to reset the bus interface without a complete power-cycle!
220 It turns out that ATI came to the same conclusion I did: the only thing
221 that can be done is checking a few bits and then diving right into an
224 int at1700_probe1(struct net_device
*dev
, int ioaddr
)
226 char fmv_irqmap
[4] = {3, 7, 10, 15};
227 char fmv_irqmap_pnp
[8] = {3, 4, 5, 7, 9, 10, 11, 15};
228 char at1700_irqmap
[8] = {3, 4, 5, 9, 10, 11, 14, 15};
229 unsigned int i
, irq
, is_fmv18x
= 0, is_at1700
= 0;
232 /* Resetting the chip doesn't reset the ISA interface, so don't bother.
233 That means we have to be careful with the register values we probe for.
236 printk("at1700 probe at %#x, eeprom is %4.4x %4.4x %4.4x ctrl %4.4x.\n",
237 ioaddr
, read_eeprom(ioaddr
, 4), read_eeprom(ioaddr
, 5),
238 read_eeprom(ioaddr
, 6), inw(ioaddr
+ EEPROM_Ctrl
));
242 /* rEnE (rene@bss.lu): got this from 3c509 driver source , adapted for AT1720 */
244 /* Based on Erik Nygren's (nygren@mit.edu) 3c529 patch, heavily
245 modified by Chris Beauregard (cpbeaure@csclub.uwaterloo.ca)
246 to support standard MCA probing. */
248 /* redone for multi-card detection by ZP Gu (zpg@castle.net) */
249 /* now works as a module */
256 for (j
= 0; at1720_mca_adapters
[j
].name
!= NULL
; j
++) {
258 while (slot
!= MCA_NOTFOUND
) {
260 slot
= mca_find_unused_adapter( at1720_mca_adapters
[j
].id
, slot
);
261 if (slot
== MCA_NOTFOUND
) break;
263 /* if we get this far, an adapter has been detected and is
266 pos3
= mca_read_stored_pos( slot
, 3 );
267 pos4
= mca_read_stored_pos( slot
, 4 );
269 for (l_i
= 0; l_i
< 0x09; l_i
++)
270 if (( pos3
& 0x07) == at1700_ioaddr_pattern
[l_i
])
272 ioaddr
= at1700_mca_probe_list
[l_i
];
274 for (irq
= 0; irq
< 0x10; irq
++)
275 if (((((pos4
>>4) & 0x0f) | (pos3
& 0xf0)) & 0xff) == at1700_irq_pattern
[irq
])
278 /* probing for a card at a particular IO/IRQ */
280 ((dev
->irq
&& dev
->irq
!= irq
) ||
281 (dev
->base_addr
&& dev
->base_addr
!= ioaddr
))) {
282 slot
++; /* probing next slot */
290 mca_set_adapter_name( slot
, at1720_mca_adapters
[j
].name
);
291 mca_mark_as_used(slot
);
296 /* if we get here, we didn't find an MCA adapter - try ISA */
300 /* We must check for the EEPROM-config boards first, else accessing
301 IOCONFIG0 will move the board! */
302 if (at1700_probe_list
[inb(ioaddr
+ IOCONFIG1
) & 0x07] == ioaddr
303 && read_eeprom(ioaddr
, 4) == 0x0000
304 && (read_eeprom(ioaddr
, 5) & 0xff00) == 0xF400)
306 else if (inb(ioaddr
+ SAPROM
) == 0x00
307 && inb(ioaddr
+ SAPROM
+ 1) == 0x00
308 && inb(ioaddr
+ SAPROM
+ 2) == 0x0e)
317 /* Reset the internal state machines. */
318 outb(0, ioaddr
+ RESET
);
320 /* Allocate a new 'dev' if needed. */
322 dev
= init_etherdev(0, sizeof(struct net_local
));
325 irq
= at1700_irqmap
[(read_eeprom(ioaddr
, 12)&0x04)
326 | (read_eeprom(ioaddr
, 0)>>14)];
328 /* Check PnP mode for FMV-183/184/183A/184A. */
329 /* This PnP routine is very poor. IO and IRQ should be known. */
330 if (inb(ioaddr
+ CARDSTATUS1
) & 0x20) {
332 for (i
= 0; i
< 8; i
++) {
333 if (irq
== fmv_irqmap_pnp
[i
])
339 if (fmv18x_probe_list
[inb(ioaddr
+ IOCONFIG
) & 0x07] != ioaddr
)
341 irq
= fmv_irqmap
[(inb(ioaddr
+ IOCONFIG
)>>6) & 0x03];
345 /* Grab the region so that we can find another board if the IRQ request
347 request_region(ioaddr
, AT1700_IO_EXTENT
, dev
->name
);
349 printk("%s: %s found at %#3x, IRQ %d, address ", dev
->name
,
350 is_at1700
? "AT1700" : "FMV-18X", ioaddr
, irq
);
352 dev
->base_addr
= ioaddr
;
356 for(i
= 0; i
< 3; i
++) {
357 unsigned short eeprom_val
= read_eeprom(ioaddr
, 4+i
);
358 printk("%04x", eeprom_val
);
359 ((unsigned short *)dev
->dev_addr
)[i
] = ntohs(eeprom_val
);
362 for(i
= 0; i
< 6; i
++) {
363 unsigned char val
= inb(ioaddr
+ SAPROM
+ i
);
365 dev
->dev_addr
[i
] = val
;
369 /* The EEPROM word 12 bit 0x0400 means use regular 100 ohm 10baseT signals,
370 rather than 150 ohm shielded twisted pair compensation.
371 0x0000 == auto-sense the interface
372 0x0800 == use TP interface
373 0x1800 == use coax interface
376 const char *porttype
[] = {"auto-sense", "10baseT", "auto-sense", "10base2"};
378 ushort setup_value
= read_eeprom(ioaddr
, 12);
379 dev
->if_port
= setup_value
>> 8;
381 ushort setup_value
= inb(ioaddr
+ CARDSTATUS
);
382 switch (setup_value
& 0x07) {
383 case 0x01: /* 10base5 */
384 case 0x02: /* 10base2 */
385 dev
->if_port
= 0x18; break;
386 case 0x04: /* 10baseT */
387 dev
->if_port
= 0x08; break;
388 default: /* auto-sense */
389 dev
->if_port
= 0x00; break;
392 printk(" %s interface.\n", porttype
[(dev
->if_port
>>3) & 3]);
395 /* Set the configuration register 0 to 32K 100ns. byte-wide memory, 16 bit
396 bus access, two 4K Tx queues, and disabled Tx and Rx. */
397 outb(0xda, ioaddr
+ CONFIG_0
);
399 /* Set the station address in bank zero. */
400 outb(0x00, ioaddr
+ CONFIG_1
);
401 for (i
= 0; i
< 6; i
++)
402 outb(dev
->dev_addr
[i
], ioaddr
+ 8 + i
);
404 /* Switch to bank 1 and set the multicast table to accept none. */
405 outb(0x04, ioaddr
+ CONFIG_1
);
406 for (i
= 0; i
< 8; i
++)
407 outb(0x00, ioaddr
+ 8 + i
);
410 /* Switch to bank 2 */
411 /* Lock our I/O address, and set manual processing mode for 16 collisions. */
412 outb(0x08, ioaddr
+ CONFIG_1
);
413 outb(dev
->if_port
, ioaddr
+ MODE13
);
414 outb(0x00, ioaddr
+ COL16CNTL
);
419 /* Initialize the device structure. */
420 dev
->priv
= kmalloc(sizeof(struct net_local
), GFP_KERNEL
);
421 if (dev
->priv
== NULL
)
423 memset(dev
->priv
, 0, sizeof(struct net_local
));
425 dev
->open
= net_open
;
426 dev
->stop
= net_close
;
427 dev
->hard_start_xmit
= net_send_packet
;
428 dev
->get_stats
= net_get_stats
;
429 dev
->set_multicast_list
= &set_rx_mode
;
431 /* Fill in the fields of 'dev' with ethernet-generic values. */
435 struct net_local
*lp
= (struct net_local
*)dev
->priv
;
436 lp
->jumpered
= is_fmv18x
;
438 /* Snarf the interrupt vector now. */
439 if (request_irq(irq
, &net_interrupt
, 0, dev
->name
, dev
)) {
440 printk (" AT1700 at %#3x is unusable due to a conflict on"
441 "IRQ %d.\n", ioaddr
, irq
);
451 /* EEPROM_Ctrl bits. */
452 #define EE_SHIFT_CLK 0x40 /* EEPROM shift clock, in reg. 16. */
453 #define EE_CS 0x20 /* EEPROM chip select, in reg. 16. */
454 #define EE_DATA_WRITE 0x80 /* EEPROM chip data in, in reg. 17. */
455 #define EE_DATA_READ 0x80 /* EEPROM chip data out, in reg. 17. */
457 /* Delay between EEPROM clock transitions. */
458 #define eeprom_delay() do {} while (0);
460 /* The EEPROM commands include the alway-set leading bit. */
461 #define EE_WRITE_CMD (5 << 6)
462 #define EE_READ_CMD (6 << 6)
463 #define EE_ERASE_CMD (7 << 6)
465 static int read_eeprom(int ioaddr
, int location
)
468 unsigned short retval
= 0;
469 int ee_addr
= ioaddr
+ EEPROM_Ctrl
;
470 int ee_daddr
= ioaddr
+ EEPROM_Data
;
471 int read_cmd
= location
| EE_READ_CMD
;
473 /* Shift the read command bits out. */
474 for (i
= 9; i
>= 0; i
--) {
475 short dataval
= (read_cmd
& (1 << i
)) ? EE_DATA_WRITE
: 0;
476 outb(EE_CS
, ee_addr
);
477 outb(dataval
, ee_daddr
);
479 outb(EE_CS
| EE_SHIFT_CLK
, ee_addr
); /* EEPROM clock tick. */
482 outb(EE_DATA_WRITE
, ee_daddr
);
483 for (i
= 16; i
> 0; i
--) {
484 outb(EE_CS
, ee_addr
);
486 outb(EE_CS
| EE_SHIFT_CLK
, ee_addr
);
488 retval
= (retval
<< 1) | ((inb(ee_daddr
) & EE_DATA_READ
) ? 1 : 0);
491 /* Terminate the EEPROM access. */
492 outb(EE_CS
, ee_addr
);
494 outb(EE_SHIFT_CLK
, ee_addr
);
501 static int net_open(struct net_device
*dev
)
503 struct net_local
*lp
= (struct net_local
*)dev
->priv
;
504 int ioaddr
= dev
->base_addr
;
506 /* Set the configuration register 0 to 32K 100ns. byte-wide memory, 16 bit
507 bus access, and two 4K Tx queues. */
508 outb(0x5a, ioaddr
+ CONFIG_0
);
510 /* Powerup, switch to register bank 2, and enable the Rx and Tx. */
511 outb(0xe8, ioaddr
+ CONFIG_1
);
514 lp
->tx_queue_ready
= 1;
517 lp
->tx_queue_len
= 0;
519 /* Turn on hardware Tx and Rx interrupts. */
520 outb(0x82, ioaddr
+ TX_INTR
);
521 outb(0x81, ioaddr
+ RX_INTR
);
523 /* Enable the IRQ on boards of fmv18x it is feasible. */
525 outb(0x80, ioaddr
+ IOCONFIG1
);
538 net_send_packet(struct sk_buff
*skb
, struct net_device
*dev
)
540 struct net_local
*lp
= (struct net_local
*)dev
->priv
;
541 int ioaddr
= dev
->base_addr
;
544 /* If we get here, some higher level has decided we are broken.
545 There should really be a "kick me" function call instead. */
546 int tickssofar
= jiffies
- dev
->trans_start
;
549 printk("%s: transmit timed out with status %04x, %s?\n", dev
->name
,
550 inw(ioaddr
+ STATUS
), inb(ioaddr
+ TX_STATUS
) & 0x80
551 ? "IRQ conflict" : "network cable problem");
552 printk("%s: timeout registers: %04x %04x %04x %04x %04x %04x %04x %04x.\n",
553 dev
->name
, inw(ioaddr
+ 0), inw(ioaddr
+ 2), inw(ioaddr
+ 4),
554 inw(ioaddr
+ 6), inw(ioaddr
+ 8), inw(ioaddr
+ 10),
555 inw(ioaddr
+ 12), inw(ioaddr
+ 14));
556 lp
->stats
.tx_errors
++;
557 /* ToDo: We should try to restart the adaptor... */
558 outw(0xffff, ioaddr
+ 24);
559 outw(0xffff, ioaddr
+ TX_STATUS
);
560 outw(0xe85a, ioaddr
+ CONFIG_0
);
561 outw(0x8182, ioaddr
+ TX_INTR
);
562 outb(0x00, ioaddr
+ TX_START
);
563 outb(0x03, ioaddr
+ COL16CNTL
);
565 dev
->trans_start
= jiffies
;
567 lp
->tx_queue_ready
= 1;
570 lp
->tx_queue_len
= 0;
573 /* Block a timer-based transmit from overlapping. This could better be
574 done with atomic_swap(1, dev->tbusy), but set_bit() works as well. */
575 if (test_and_set_bit(0, (void*)&dev
->tbusy
) != 0)
576 printk("%s: Transmitter access conflict.\n", dev
->name
);
578 short length
= ETH_ZLEN
< skb
->len
? skb
->len
: ETH_ZLEN
;
579 unsigned char *buf
= skb
->data
;
581 /* We may not start transmitting unless we finish transferring
582 a packet into the Tx queue. During executing the following
583 codes we possibly catch a Tx interrupt. Thus we flag off
584 tx_queue_ready, so that we prevent the interrupt routine
585 (net_interrupt) to start transmitting. */
586 lp
->tx_queue_ready
= 0;
588 outw(length
, ioaddr
+ DATAPORT
);
589 outsw(ioaddr
+ DATAPORT
, buf
, (length
+ 1) >> 1);
592 lp
->tx_queue_len
+= length
+ 2;
594 lp
->tx_queue_ready
= 1;
596 if (lp
->tx_started
== 0) {
597 /* If the Tx is idle, always trigger a transmit. */
598 outb(0x80 | lp
->tx_queue
, ioaddr
+ TX_START
);
600 lp
->tx_queue_len
= 0;
601 dev
->trans_start
= jiffies
;
604 } else if (lp
->tx_queue_len
< 4096 - 1502)
605 /* Yes, there is room for one more packet. */
613 /* The typical workload of the driver:
614 Handle the network interface interrupts. */
616 net_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
618 struct net_device
*dev
= dev_id
;
619 struct net_local
*lp
;
623 printk ("at1700_interrupt(): irq %d for unknown device.\n", irq
);
628 ioaddr
= dev
->base_addr
;
629 lp
= (struct net_local
*)dev
->priv
;
630 status
= inw(ioaddr
+ TX_STATUS
);
631 outw(status
, ioaddr
+ TX_STATUS
);
634 printk("%s: Interrupt with status %04x.\n", dev
->name
, status
);
635 if (lp
->rx_started
== 0 &&
636 (status
& 0xff00 || (inb(ioaddr
+ RX_MODE
) & 0x40) == 0)) {
638 We cannot execute net_rx more than once at the same time for
639 the same device. During executing net_rx, we possibly catch a
640 Tx interrupt. Thus we flag on rx_started, so that we prevent
641 the interrupt routine (net_interrupt) to dive into net_rx
644 outb(0x00, ioaddr
+ RX_INTR
); /* Disable RX intr. */
646 outb(0x81, ioaddr
+ RX_INTR
); /* Enable RX intr. */
649 if (status
& 0x00ff) {
651 /* More than 16 collisions occurred */
653 printk("%s: 16 Collision occur during Txing.\n", dev
->name
);
654 /* Cancel sending a packet. */
655 outb(0x03, ioaddr
+ COL16CNTL
);
656 lp
->stats
.collisions
++;
659 lp
->stats
.tx_packets
++;
660 /* The Tx queue has any packets and is not being
661 transferred a packet from the host, start
663 if (lp
->tx_queue
&& lp
->tx_queue_ready
) {
664 outb(0x80 | lp
->tx_queue
, ioaddr
+ TX_START
);
666 lp
->tx_queue_len
= 0;
667 dev
->trans_start
= jiffies
;
669 mark_bh(NET_BH
); /* Inform upper layers. */
673 mark_bh(NET_BH
); /* Inform upper layers. */
682 /* We have a good packet(s), get it/them out of the buffers. */
684 net_rx(struct net_device
*dev
)
686 struct net_local
*lp
= (struct net_local
*)dev
->priv
;
687 int ioaddr
= dev
->base_addr
;
690 while ((inb(ioaddr
+ RX_MODE
) & 0x40) == 0) {
691 ushort status
= inw(ioaddr
+ DATAPORT
);
692 ushort pkt_len
= inw(ioaddr
+ DATAPORT
);
695 printk("%s: Rxing packet mode %02x status %04x.\n",
696 dev
->name
, inb(ioaddr
+ RX_MODE
), status
);
697 #ifndef final_version
699 outb(0x05, ioaddr
+ 14);
704 if ((status
& 0xF0) != 0x20) { /* There was an error. */
705 lp
->stats
.rx_errors
++;
706 if (status
& 0x08) lp
->stats
.rx_length_errors
++;
707 if (status
& 0x04) lp
->stats
.rx_frame_errors
++;
708 if (status
& 0x02) lp
->stats
.rx_crc_errors
++;
709 if (status
& 0x01) lp
->stats
.rx_over_errors
++;
711 /* Malloc up new buffer. */
714 if (pkt_len
> 1550) {
715 printk("%s: The AT1700 claimed a very large packet, size %d.\n",
717 /* Prime the FIFO and then flush the packet. */
718 inw(ioaddr
+ DATAPORT
); inw(ioaddr
+ DATAPORT
);
719 outb(0x05, ioaddr
+ 14);
720 lp
->stats
.rx_errors
++;
723 skb
= dev_alloc_skb(pkt_len
+3);
725 printk("%s: Memory squeeze, dropping packet (len %d).\n",
727 /* Prime the FIFO and then flush the packet. */
728 inw(ioaddr
+ DATAPORT
); inw(ioaddr
+ DATAPORT
);
729 outb(0x05, ioaddr
+ 14);
730 lp
->stats
.rx_dropped
++;
736 insw(ioaddr
+ DATAPORT
, skb_put(skb
,pkt_len
), (pkt_len
+ 1) >> 1);
737 skb
->protocol
=eth_type_trans(skb
, dev
);
739 lp
->stats
.rx_packets
++;
741 if (--boguscount
<= 0)
745 /* If any worth-while packets have been received, dev_rint()
746 has done a mark_bh(NET_BH) for us and will work on them
747 when we get to the bottom-half routine. */
750 for (i
= 0; i
< 20; i
++) {
751 if ((inb(ioaddr
+ RX_MODE
) & 0x40) == 0x40)
753 inw(ioaddr
+ DATAPORT
); /* dummy status read */
754 outb(0x05, ioaddr
+ 14);
758 printk("%s: Exint Rx packet with mode %02x after %d ticks.\n",
759 dev
->name
, inb(ioaddr
+ RX_MODE
), i
);
764 /* The inverse routine to net_open(). */
765 static int net_close(struct net_device
*dev
)
767 struct net_local
*lp
= (struct net_local
*)dev
->priv
;
768 int ioaddr
= dev
->base_addr
;
773 /* Set configuration register 0 to disable Tx and Rx. */
774 outb(0xda, ioaddr
+ CONFIG_0
);
776 /* No statistic counters on the chip to update. */
778 /* Disable the IRQ on boards of fmv18x where it is feasible. */
780 outb(0x00, ioaddr
+ IOCONFIG1
);
781 free_irq(dev
->irq
, dev
);
784 /* Power-down the chip. Green, green, green! */
785 outb(0x00, ioaddr
+ CONFIG_1
);
792 /* Get the current statistics.
793 This may be called with the card open or closed.
794 There are no on-chip counters, so this function is trivial.
796 static struct enet_statistics
*
797 net_get_stats(struct net_device
*dev
)
799 struct net_local
*lp
= (struct net_local
*)dev
->priv
;
804 Set the multicast/promiscuous mode for this adaptor.
807 /* The little-endian AUTODIN II ethernet CRC calculation.
808 N.B. Do not use for bulk data, use a table-based routine instead.
809 This is common code and should be moved to net/core/crc.c */
810 static unsigned const ethernet_polynomial_le
= 0xedb88320U
;
811 static inline unsigned ether_crc_le(int length
, unsigned char *data
)
813 unsigned int crc
= 0xffffffff; /* Initial value. */
814 while(--length
>= 0) {
815 unsigned char current_octet
= *data
++;
817 for (bit
= 8; --bit
>= 0; current_octet
>>= 1) {
818 if ((crc
^ current_octet
) & 1) {
820 crc
^= ethernet_polynomial_le
;
829 set_rx_mode(struct net_device
*dev
)
831 int ioaddr
= dev
->base_addr
;
832 struct net_local
*lp
= (struct net_local
*)dev
->priv
;
833 unsigned char mc_filter
[8]; /* Multicast hash filter */
837 if (dev
->flags
& IFF_PROMISC
) {
838 /* Unconditionally log net taps. */
839 printk("%s: Promiscuous mode enabled.\n", dev
->name
);
840 memset(mc_filter
, 0xff, sizeof(mc_filter
));
841 outb(3, ioaddr
+ RX_MODE
); /* Enable promiscuous mode */
842 } else if (dev
->mc_count
> MC_FILTERBREAK
843 || (dev
->flags
& IFF_ALLMULTI
)) {
844 /* Too many to filter perfectly -- accept all multicasts. */
845 memset(mc_filter
, 0xff, sizeof(mc_filter
));
846 outb(2, ioaddr
+ RX_MODE
); /* Use normal mode. */
847 } else if (dev
->mc_count
== 0) {
848 memset(mc_filter
, 0x00, sizeof(mc_filter
));
849 outb(1, ioaddr
+ RX_MODE
); /* Ignore almost all multicasts. */
851 struct dev_mc_list
*mclist
;
854 memset(mc_filter
, 0, sizeof(mc_filter
));
855 for (i
= 0, mclist
= dev
->mc_list
; mclist
&& i
< dev
->mc_count
;
856 i
++, mclist
= mclist
->next
)
857 set_bit(ether_crc_le(ETH_ALEN
, mclist
->dmi_addr
) >> 26,
863 if (memcmp(mc_filter
, lp
->mc_filter
, sizeof(mc_filter
))) {
864 int saved_bank
= inw(ioaddr
+ CONFIG_0
);
865 /* Switch to bank 1 and set the multicast table. */
866 outw((saved_bank
& ~0x0C00) | 0x0480, ioaddr
+ CONFIG_0
);
867 for (i
= 0; i
< 8; i
++)
868 outb(mc_filter
[i
], ioaddr
+ 8 + i
);
869 memcpy(lp
->mc_filter
, mc_filter
, sizeof(mc_filter
));
870 outw(saved_bank
, ioaddr
+ CONFIG_0
);
872 restore_flags(flags
);
877 static char devicename
[9] = { 0, };
878 static struct net_device dev_at1700
= {
879 devicename
, /* device name is inserted by linux/drivers/net/net_init.c */
882 0, 0, 0, NULL
, at1700_probe
};
884 static int io
= 0x260;
887 MODULE_PARM(io
, "i");
888 MODULE_PARM(irq
, "i");
889 MODULE_PARM(net_debug
, "i");
891 int init_module(void)
894 printk("at1700: You should not use auto-probing with insmod!\n");
895 dev_at1700
.base_addr
= io
;
896 dev_at1700
.irq
= irq
;
897 if (register_netdev(&dev_at1700
) != 0) {
898 printk("at1700: register_netdev() returned non-zero.\n");
908 struct net_local
*lp
= dev_at1700
.priv
;
911 mca_mark_as_unused(lp
->mca_slot
);
914 unregister_netdev(&dev_at1700
);
915 kfree(dev_at1700
.priv
);
916 dev_at1700
.priv
= NULL
;
918 /* If we don't do this, we can't re-insmod it later. */
919 free_irq(dev_at1700
.irq
, NULL
);
920 release_region(dev_at1700
.base_addr
, AT1700_IO_EXTENT
);
926 * compile-command: "gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -c at1700.c"
927 * alt-compile-command: "gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -c at1700.c"