* add p cc
[mascara-docs.git] / i386 / linux / linux-2.3.21 / drivers / net / cops.c
blob5f9c727a3c1fd70ee403b5f5d08f828061f560d9
1 /* cops.c: LocalTalk driver for Linux.
3 * Authors:
4 * - Jay Schulist <Jay.Schulist@spacs.k12.wi.us>
6 * With more than a little help from;
7 * - Alan Cox <Alan.Cox@linux.org>
9 * Derived from:
10 * - skeleton.c: A network driver outline for linux.
11 * Written 1993-94 by Donald Becker.
12 * - ltpc.c: A driver for the LocalTalk PC card.
13 * Written by Bradford W. Johnson.
15 * Copyright 1993 United States Government as represented by the
16 * Director, National Security Agency.
18 * This software may be used and distributed according to the terms
19 * of the GNU Public License, incorporated herein by reference.
21 * Changes:
22 * 19970608 Alan Cox Allowed dual card type support
23 * Can set board type in insmod
24 * Hooks for cops_setup routine
25 * (not yet implemented).
26 * 19971101 Jay Schulist Fixes for multiple lt* devices.
27 * 19980607 Steven Hirsch Fixed the badly broken support
28 * for Tangent type cards. Only
29 * tested on Daystar LT200. Some
30 * cleanup of formatting and program
31 * logic. Added emacs 'local-vars'
32 * setup for Jay's brace style.
35 static const char *version =
36 "cops.c:v0.04 6/7/98 Jay Schulist <Jay.Schulist@spacs.k12.wi.us>\n";
38 * Sources:
39 * COPS Localtalk SDK. This provides almost all of the information
40 * needed.
44 * insmod/modprobe configurable stuff.
45 * - IO Port, choose one your card supports or 0 if you dare.
46 * - IRQ, also choose one your card supports or nothing and let
47 * the driver figure it out.
50 #include <linux/config.h>
51 #ifdef MODULE
52 #include <linux/module.h>
53 #include <linux/version.h>
54 #endif
56 #include <linux/kernel.h>
57 #include <linux/sched.h>
58 #include <linux/types.h>
59 #include <linux/fcntl.h>
60 #include <linux/interrupt.h>
61 #include <linux/ptrace.h>
62 #include <linux/ioport.h>
63 #include <linux/in.h>
64 #include <linux/malloc.h>
65 #include <linux/string.h>
66 #include <asm/system.h>
67 #include <asm/bitops.h>
68 #include <asm/io.h>
69 #include <asm/dma.h>
70 #include <linux/errno.h>
71 #include <linux/init.h>
73 #include <linux/netdevice.h>
74 #include <linux/etherdevice.h>
75 #include <linux/skbuff.h>
77 #include <linux/if_arp.h>
78 #include <linux/if_ltalk.h> /* For ltalk_setup() */
79 #include <linux/delay.h> /* For udelay() */
80 #include <linux/atalk.h>
82 #include "cops.h" /* Our Stuff */
83 #include "cops_ltdrv.h" /* Firmware code for Tangent type cards. */
84 #include "cops_ffdrv.h" /* Firmware code for Dayna type cards. */
87 * The name of the card. Is used for messages and in the requests for
88 * io regions, irqs and dma channels
91 static const char *cardname = "cops";
93 #ifdef CONFIG_COPS_DAYNA
94 static int board_type = DAYNA; /* Module exported */
95 #else
96 static int board_type = TANGENT;
97 #endif
99 #ifdef MODULE
100 static int io = 0x240; /* Default IO for Dayna */
101 static int irq = 5; /* Default IRQ */
102 #else
103 static int io = 0; /* Default IO for Dayna */
104 static int irq = 0; /* Default IRQ */
105 #endif
108 * COPS Autoprobe information.
109 * Right now if port address is right but IRQ is not 5 this will
110 * return a 5 no matter what since we will still get a status response.
111 * Need one more additional check to narrow down after we have gotten
112 * the ioaddr. But since only other possible IRQs is 3 and 4 so no real
113 * hurry on this. I *STRONGLY* recommend using IRQ 5 for your card with
114 * this driver.
116 * This driver has 2 modes and they are: Dayna mode and Tangent mode.
117 * Each mode corresponds with the type of card. It has been found
118 * that there are 2 main types of cards and all other cards are
119 * the same and just have different names or only have minor differences
120 * such as more IO ports. As this driver is tested it will
121 * become more clear on exactly what cards are supported. The driver
122 * defaults to using Dayna mode. To change the drivers mode, simply
123 * select Dayna or Tangent mode when configuring the kernel.
125 * This driver should support:
126 * TANGENT driver mode:
127 * Tangent ATB-II, Novell NL-1000, Daystar Digital LT-200,
128 * COPS LT-1
129 * DAYNA driver mode:
130 * Dayna DL2000/DaynaTalk PC (Half Length), COPS LT-95,
131 * Farallon PhoneNET PC III, Farallon PhoneNET PC II
132 * Other cards possibly supported mode unkown though:
133 * Dayna DL2000 (Full length), COPS LT/M (Micro-Channel)
135 * Cards NOT supported by this driver but supported by the ltpc.c
136 * driver written by Bradford W. Johnson <johns393@maroon.tc.umn.edu>
137 * Farallon PhoneNET PC
138 * Original Apple LocalTalk PC card
140 * N.B.
142 * The Daystar Digital LT200 boards do not support interrupt-driven
143 * IO. You must specify 'irq=0xff' as a module parameter to invoke
144 * polled mode. I also believe that the port probing logic is quite
145 * dangerous at best and certainly hopeless for a polled card. Best to
146 * specify both. - Steve H.
151 * Zero terminated list of IO ports to probe.
154 static unsigned int cops_portlist[] = {
155 0x240, 0x340, 0x200, 0x210, 0x220, 0x230, 0x260,
156 0x2A0, 0x300, 0x310, 0x320, 0x330, 0x350, 0x360,
161 * Zero terminated list of IRQ ports to probe.
164 static int cops_irqlist[] = {
165 5, 4, 3, 0
168 static struct timer_list cops_timer;
170 /* use 0 for production, 1 for verification, 2 for debug, 3 for verbose debug */
171 #ifndef COPS_DEBUG
172 #define COPS_DEBUG 1
173 #endif
174 static unsigned int cops_debug = COPS_DEBUG;
176 /* The number of low I/O ports used by the card. */
177 #define COPS_IO_EXTENT 8
179 /* Information that needs to be kept for each board. */
181 struct cops_local
183 struct enet_statistics stats;
184 int board; /* Holds what board type is. */
185 int nodeid; /* Set to 1 once have nodeid. */
186 unsigned char node_acquire; /* Node ID when acquired. */
187 struct at_addr node_addr; /* Full node addres */
190 /* Index to functions, as function prototypes. */
191 extern int cops_probe (struct net_device *dev);
192 static int cops_probe1 (struct net_device *dev, int ioaddr);
193 static int cops_irq (int ioaddr, int board);
195 static int cops_open (struct net_device *dev);
196 static int cops_jumpstart (struct net_device *dev);
197 static void cops_reset (struct net_device *dev, int sleep);
198 static void cops_load (struct net_device *dev);
199 static int cops_nodeid (struct net_device *dev, int nodeid);
201 static void cops_interrupt (int irq, void *dev_id, struct pt_regs *regs);
202 static void cops_poll (unsigned long ltdev);
203 static void cops_rx (struct net_device *dev);
204 static int cops_send_packet (struct sk_buff *skb, struct net_device *dev);
205 static void set_multicast_list (struct net_device *dev);
206 static int cops_hard_header (struct sk_buff *skb, struct net_device *dev,
207 unsigned short type, void *daddr, void *saddr,
208 unsigned len);
210 static int cops_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
211 static int cops_close (struct net_device *dev);
212 static struct enet_statistics *cops_get_stats (struct net_device *dev);
216 * Check for a network adaptor of this type, and return '0' iff one exists.
217 * If dev->base_addr == 0, probe all likely locations.
218 * If dev->base_addr in [1..0x1ff], always return failure.
219 * otherwise go with what we pass in.
221 int __init cops_probe(struct net_device *dev)
223 int i;
224 int base_addr = dev ? dev->base_addr : 0;
226 if(base_addr == 0 && io)
227 base_addr=io;
229 if(base_addr > 0x1ff) /* Check a single specified location. */
230 return cops_probe1(dev, base_addr);
231 else if(base_addr != 0) /* Don't probe at all. */
232 return -ENXIO;
234 /* FIXME Does this really work for cards which generate irq?
235 * It's definitely N.G. for polled Tangent. sh
236 * Dayna cards don't autoprobe well at all, but if your card is
237 * at IRQ 5 & IO 0x240 we find it every time. ;) JS
239 for(i=0; cops_portlist[i]; i++) {
240 int ioaddr = cops_portlist[i];
241 if(check_region(ioaddr, COPS_IO_EXTENT))
242 continue;
243 if(cops_probe1(dev, ioaddr) == 0)
244 return 0;
247 return -ENODEV;
251 * This is the real probe routine. Linux has a history of friendly device
252 * probes on the ISA bus. A good device probes avoids doing writes, and
253 * verifies that the correct device exists and functions.
255 static int __init cops_probe1(struct net_device *dev, int ioaddr)
257 struct cops_local *lp;
258 static unsigned version_printed = 0;
260 int board = board_type;
262 if(cops_debug && version_printed++ == 0)
263 printk("%s", version);
266 * Since this board has jumpered interrupts, allocate the interrupt
267 * vector now. There is no point in waiting since no other device
268 * can use the interrupt, and this marks the irq as busy. Jumpered
269 * interrupts are typically not reported by the boards, and we must
270 * used AutoIRQ to find them.
272 switch (dev->irq)
274 case 0:
275 /* COPS AutoIRQ routine */
276 dev->irq = cops_irq(ioaddr, board);
277 if(!dev->irq)
278 return -EINVAL; /* No IRQ found on this port */
279 break;
281 case 1:
282 return -EINVAL;
283 break;
285 /* Fixup for users that don't know that IRQ 2 is really
286 * IRQ 9, or don't know which one to set.
288 case 2:
289 dev->irq = 9;
290 break;
292 /* Polled operation requested. Although irq of zero passed as
293 * a parameter tells the init routines to probe, we'll
294 * overload it to denote polled operation at runtime.
296 case 0xff:
297 dev->irq = 0;
298 break;
300 default:
301 break;
304 /* Reserve any actual interrupt. */
305 if(dev->irq && request_irq(dev->irq, &cops_interrupt, 0, cardname, dev))
306 return -EINVAL;
308 /* Grab the region so no one else tries to probe our ioports. */
309 request_region(ioaddr, COPS_IO_EXTENT, cardname);
310 dev->base_addr = ioaddr;
312 /* Initialize the private device structure. */
313 dev->priv = kmalloc(sizeof(struct cops_local), GFP_KERNEL);
314 if(dev->priv == NULL)
315 return -ENOMEM;
317 lp = (struct cops_local *)dev->priv;
318 memset(lp, 0, sizeof(struct cops_local));
320 /* Copy local board variable to lp struct. */
321 lp->board = board;
323 /* Fill in the fields of the device structure with LocalTalk values. */
324 ltalk_setup(dev);
326 dev->hard_start_xmit = &cops_send_packet;
327 dev->hard_header = cops_hard_header;
328 dev->get_stats = cops_get_stats;
329 dev->open = cops_open;
330 dev->stop = cops_close;
331 dev->do_ioctl = &cops_ioctl;
332 dev->set_multicast_list = &set_multicast_list;
333 dev->mc_list = NULL;
335 /* Tell the user where the card is and what mode we're in. */
336 if(board==DAYNA)
337 printk("%s: %s at %#3x, using IRQ %d, in Dayna mode.\n",
338 dev->name, cardname, ioaddr, dev->irq);
339 if(board==TANGENT) {
340 if(dev->irq)
341 printk("%s: %s at %#3x, IRQ %d, in Tangent mode\n",
342 dev->name, cardname, ioaddr, dev->irq);
343 else
344 printk("%s: %s at %#3x, using polled IO, in Tangent mode.\n",
345 dev->name, cardname, ioaddr);
348 return 0;
351 static int __init cops_irq (int ioaddr, int board)
352 { /*
353 * This does not use the IRQ to determine where the IRQ is. We just
354 * assume that when we get a correct status response that it's the IRQ.
355 * This really just verifies the IO port but since we only have access
356 * to such a small number of IRQs (5, 4, 3) this is not bad.
357 * This will probably not work for more than one card.
359 int irqaddr=0;
360 int i, x, status;
362 if(board==DAYNA)
364 outb(0, ioaddr+DAYNA_RESET);
365 inb(ioaddr+DAYNA_RESET);
366 udelay(333333);
368 if(board==TANGENT)
370 inb(ioaddr);
371 outb(0, ioaddr);
372 outb(0, ioaddr+TANG_RESET);
375 for(i=0; cops_irqlist[i] !=0; i++)
377 irqaddr = cops_irqlist[i];
378 for(x = 0xFFFF; x>0; x --) /* wait for response */
380 if(board==DAYNA)
382 status = (inb(ioaddr+DAYNA_CARD_STATUS)&3);
383 if(status == 1)
384 return irqaddr;
386 if(board==TANGENT)
388 if((inb(ioaddr+TANG_CARD_STATUS)& TANG_TX_READY) !=0)
389 return irqaddr;
393 return 0; /* no IRQ found */
397 * Open/initialize the board. This is called (in the current kernel)
398 * sometime after booting when the 'ifconfig' program is run.
400 static int cops_open(struct net_device *dev)
402 struct cops_local *lp = (struct cops_local *)dev->priv;
404 if(dev->irq==0)
407 * I don't know if the Dayna-style boards support polled
408 * operation. For now, only allow it for Tangent.
410 if(lp->board==TANGENT) /* Poll 20 times per second */
412 init_timer(&cops_timer);
413 cops_timer.function = cops_poll;
414 cops_timer.data = (unsigned long)dev;
415 cops_timer.expires = jiffies + 5;
416 add_timer(&cops_timer);
418 else
420 printk(KERN_WARNING "%s: No irq line set\n", dev->name);
421 return -EAGAIN;
425 cops_jumpstart(dev); /* Start the card up. */
427 dev->tbusy = 0;
428 dev->interrupt = 0;
429 dev->start = 1;
431 #ifdef MODULE
432 MOD_INC_USE_COUNT;
433 #endif
435 return 0;
439 * This allows for a dynamic start/restart of the entire card.
441 static int cops_jumpstart(struct net_device *dev)
443 struct cops_local *lp = (struct cops_local *)dev->priv;
446 * Once the card has the firmware loaded and has acquired
447 * the nodeid, if it is reset it will lose it all.
449 cops_reset(dev,1); /* Need to reset card before load firmware. */
450 cops_load(dev); /* Load the firmware. */
453 * If atalkd already gave us a nodeid we will use that
454 * one again, else we wait for atalkd to give us a nodeid
455 * in cops_ioctl. This may cause a problem if someone steals
456 * our nodeid while we are resetting.
458 if(lp->nodeid == 1)
459 cops_nodeid(dev,lp->node_acquire);
461 return 0;
464 static void tangent_wait_reset(int ioaddr)
466 int timeout=0;
468 while(timeout++ < 5 && (inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
469 mdelay(1); /* Wait 1 second */
473 * Reset the LocalTalk board.
475 static void cops_reset(struct net_device *dev, int sleep)
477 struct cops_local *lp = (struct cops_local *)dev->priv;
478 int ioaddr=dev->base_addr;
480 if(lp->board==TANGENT)
482 inb(ioaddr); /* Clear request latch. */
483 outb(0,ioaddr); /* Clear the TANG_TX_READY flop. */
484 outb(0, ioaddr+TANG_RESET); /* Reset the adapter. */
486 tangent_wait_reset(ioaddr);
487 outb(0, ioaddr+TANG_CLEAR_INT);
489 if(lp->board==DAYNA)
491 outb(0, ioaddr+DAYNA_RESET); /* Assert the reset port */
492 inb(ioaddr+DAYNA_RESET); /* Clear the reset */
493 if(sleep)
495 long snap=jiffies;
497 /* Let card finish initializing, about 1/3 second */
498 while(jiffies-snap<HZ/3)
499 schedule();
501 else
502 udelay(333333);
504 dev->tbusy=0;
506 return;
509 static void cops_load (struct net_device *dev)
511 struct ifreq ifr;
512 struct ltfirmware *ltf= (struct ltfirmware *)&ifr.ifr_data;
513 struct cops_local *lp=(struct cops_local *)dev->priv;
514 int ioaddr=dev->base_addr;
515 int length, i = 0;
517 strcpy(ifr.ifr_name,"lt0");
519 /* Get card's firmware code and do some checks on it. */
520 #ifdef CONFIG_COPS_DAYNA
521 if(lp->board==DAYNA)
523 ltf->length=sizeof(ffdrv_code);
524 ltf->data=ffdrv_code;
526 else
527 #endif
528 #ifdef CONFIG_COPS_TANGENT
529 if(lp->board==TANGENT)
531 ltf->length=sizeof(ltdrv_code);
532 ltf->data=ltdrv_code;
534 else
535 #endif
537 printk(KERN_INFO "%s; unsupported board type.\n", dev->name);
538 return;
541 /* Check to make sure firmware is correct length. */
542 if(lp->board==DAYNA && ltf->length!=5983)
544 printk(KERN_WARNING "%s: Firmware is not length of FFDRV.BIN.\n", dev->name);
545 return;
547 if(lp->board==TANGENT && ltf->length!=2501)
549 printk(KERN_WARNING "%s: Firmware is not length of DRVCODE.BIN.\n", dev->name);
550 return;
553 if(lp->board==DAYNA)
556 * We must wait for a status response
557 * with the DAYNA board.
559 while(++i<65536)
561 if((inb(ioaddr+DAYNA_CARD_STATUS)&3)==1)
562 break;
565 if(i==65536)
566 return;
570 * Upload the firmware and kick. Byte-by-byte works nicely here.
572 i=0;
573 length = ltf->length;
574 while(length--)
576 outb(ltf->data[i], ioaddr);
577 i++;
580 if(cops_debug > 1)
581 printk("%s: Uploaded firmware - %d bytes of %d bytes.\n",
582 dev->name, i, ltf->length);
584 if(lp->board==DAYNA) /* Tell Dayna to run the firmware code. */
585 outb(1, ioaddr+DAYNA_INT_CARD);
586 else /* Tell Tang to run the firmware code. */
587 inb(ioaddr);
589 if(lp->board==TANGENT)
591 tangent_wait_reset(ioaddr);
592 inb(ioaddr); /* Clear initial ready signal. */
595 return;
599 * Get the LocalTalk Nodeid from the card. We can suggest
600 * any nodeid 1-254. The card will try and get that exact
601 * address else we can specify 0 as the nodeid and the card
602 * will autoprobe for a nodeid.
604 static int cops_nodeid (struct net_device *dev, int nodeid)
606 struct cops_local *lp = (struct cops_local *) dev->priv;
607 int ioaddr = dev->base_addr;
609 if(lp->board == DAYNA)
611 /* Empty any pending adapter responses. */
612 while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0)
614 outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupts. */
615 if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
616 cops_rx(dev); /* Kick any packets waiting. */
617 schedule();
620 outb(2, ioaddr); /* Output command packet length as 2. */
621 outb(0, ioaddr);
622 outb(LAP_INIT, ioaddr); /* Send LAP_INIT command byte. */
623 outb(nodeid, ioaddr); /* Suggest node address. */
626 if(lp->board == TANGENT)
628 /* Empty any pending adapter responses. */
629 while(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
631 outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupt. */
632 cops_rx(dev); /* Kick out packets waiting. */
633 schedule();
636 /* Not sure what Tangent does if nodeid picked is used. */
637 if(nodeid == 0) /* Seed. */
638 nodeid = jiffies&0xFF; /* Get a random try */
639 outb(2, ioaddr); /* Command length LSB */
640 outb(0, ioaddr); /* Command length MSB */
641 outb(LAP_INIT, ioaddr); /* Send LAP_INIT byte */
642 outb(nodeid, ioaddr); /* LAP address hint. */
643 outb(0xFF, ioaddr); /* Int. level to use */
646 lp->node_acquire=0; /* Set nodeid holder to 0. */
647 while(lp->node_acquire==0) /* Get *True* nodeid finally. */
649 outb(0, ioaddr+COPS_CLEAR_INT); /* Clear any interrupt. */
651 if(lp->board == DAYNA)
653 if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
654 cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
656 if(lp->board == TANGENT)
658 if(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
659 cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
661 schedule();
664 if(cops_debug > 1)
665 printk(KERN_DEBUG "%s: Node ID %d has been acquired.\n",
666 dev->name, lp->node_acquire);
668 lp->nodeid=1; /* Set got nodeid to 1. */
670 return 0;
674 * Poll the Tangent type cards to see if we have work.
676 static void cops_poll(unsigned long ltdev)
678 int ioaddr, status;
679 int boguscount = 0;
681 struct net_device *dev = (struct net_device *)ltdev;
683 del_timer(&cops_timer);
685 if(dev == NULL)
686 return; /* We've been downed */
688 ioaddr = dev->base_addr;
689 do {
690 status=inb(ioaddr+TANG_CARD_STATUS);
691 if(status & TANG_RX_READY)
692 cops_rx(dev);
693 if(status & TANG_TX_READY)
694 dev->tbusy = 0;
695 status = inb(ioaddr+TANG_CARD_STATUS);
696 } while((++boguscount < 20) && (status&(TANG_RX_READY|TANG_TX_READY)));
698 cops_timer.expires = jiffies+5;
699 add_timer(&cops_timer);
701 return;
705 * The typical workload of the driver:
706 * Handle the network interface interrupts.
708 static void cops_interrupt(int irq, void *dev_id, struct pt_regs * regs)
710 struct net_device *dev = dev_id;
711 struct cops_local *lp;
712 int ioaddr, status;
713 int boguscount = 0;
715 if(dev == NULL)
717 printk(KERN_WARNING "%s: irq %d for unknown device.\n",
718 cardname, irq);
719 return;
721 dev->interrupt = 1;
723 ioaddr = dev->base_addr;
724 lp = (struct cops_local *)dev->priv;
726 if(lp->board==DAYNA)
728 do {
729 outb(0, ioaddr + COPS_CLEAR_INT);
730 status=inb(ioaddr+DAYNA_CARD_STATUS);
731 if((status&0x03)==DAYNA_RX_REQUEST)
732 cops_rx(dev);
733 dev->tbusy = 0;
734 mark_bh(NET_BH);
735 } while(++boguscount < 20);
737 else
739 do {
740 status=inb(ioaddr+TANG_CARD_STATUS);
741 if(status & TANG_RX_READY)
742 cops_rx(dev);
743 if(status & TANG_TX_READY)
744 dev->tbusy = 0;
745 status=inb(ioaddr+TANG_CARD_STATUS);
746 } while((++boguscount < 20) &&
747 (status&(TANG_RX_READY|TANG_TX_READY)));
750 dev->interrupt = 0;
751 return;
755 * We have a good packet(s), get it/them out of the buffers.
757 static void cops_rx(struct net_device *dev)
759 int pkt_len = 0;
760 int rsp_type = 0;
761 struct sk_buff *skb;
762 struct cops_local *lp = (struct cops_local *)dev->priv;
763 int ioaddr = dev->base_addr;
764 int boguscount = 0;
766 cli(); /* Disable interrupts. */
768 if(lp->board==DAYNA)
770 outb(0, ioaddr); /* Send out Zero length. */
771 outb(0, ioaddr);
772 outb(DATA_READ, ioaddr); /* Send read command out. */
774 /* Wait for DMA to turn around. */
775 while(++boguscount<1000000)
777 if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_READY)
778 break;
781 if(boguscount==1000000)
783 printk(KERN_WARNING "%s: DMA timed out.\n",dev->name);
784 return;
788 /* Get response length. */
789 if(lp->board==DAYNA)
790 pkt_len = inb(ioaddr) & 0xFF;
791 else
792 pkt_len = inb(ioaddr) & 0x00FF;
793 pkt_len |= (inb(ioaddr) << 8);
794 /* Input IO code. */
795 rsp_type=inb(ioaddr);
797 /* Malloc up new buffer. */
798 skb = dev_alloc_skb(pkt_len);
799 if(skb == NULL)
801 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n",
802 dev->name);
803 lp->stats.rx_dropped++;
804 while(pkt_len--) /* Discard packet */
805 inb(ioaddr);
806 return;
808 skb->dev = dev;
809 skb_put(skb, pkt_len);
810 skb->protocol = htons(ETH_P_LOCALTALK);
812 insb(ioaddr, skb->data, pkt_len); /* Eat the Data */
814 if(lp->board==DAYNA)
815 outb(1, ioaddr+DAYNA_INT_CARD); /* Interrupt the card */
817 sti(); /* Restore interrupts. */
819 /* Check for bad response length */
820 if(pkt_len < 0 || pkt_len > MAX_LLAP_SIZE)
822 printk(KERN_NOTICE "%s: Bad packet length of %d bytes.\n",
823 dev->name, pkt_len);
824 lp->stats.tx_errors++;
825 kfree_skb(skb);
826 return;
829 /* Set nodeid and then get out. */
830 if(rsp_type == LAP_INIT_RSP)
831 { /* Nodeid taken from received packet. */
832 lp->node_acquire = skb->data[0];
833 kfree_skb(skb);
834 return;
837 /* One last check to make sure we have a good packet. */
838 if(rsp_type != LAP_RESPONSE)
840 printk("%s: Bad packet type %d.\n", dev->name, rsp_type);
841 lp->stats.tx_errors++;
842 kfree_skb(skb);
843 return;
846 skb->mac.raw = skb->data; /* Point to entire packet. */
847 skb_pull(skb,3);
848 skb->h.raw = skb->data; /* Point to data (Skip header). */
850 /* Update the counters. */
851 lp->stats.rx_packets++;
852 lp->stats.rx_bytes += skb->len;
854 /* Send packet to a higher place. */
855 netif_rx(skb);
857 return;
861 * Make the card transmit a LocalTalk packet.
863 static int cops_send_packet(struct sk_buff *skb, struct net_device *dev)
865 struct cops_local *lp = (struct cops_local *)dev->priv;
866 int ioaddr = dev->base_addr;
868 if(dev->tbusy)
871 * If we get here, some higher level has decided we are broken.
872 * There should really be a "kick me" function call instead.
874 int tickssofar = jiffies - dev->trans_start;
875 if(tickssofar < 5)
876 return 1;
877 lp->stats.tx_errors++;
878 if(lp->board==TANGENT)
880 if((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
881 printk(KERN_WARNING "%s: No TX complete interrupt.\n", dev->name);
883 printk(KERN_WARNING "%s: Transmit timed out.\n", dev->name);
884 cops_jumpstart(dev); /* Restart the card. */
885 dev->tbusy=0;
886 dev->trans_start = jiffies;
890 * Block a timer-based transmit from overlapping. This could better be
891 * done with atomic_swap(1, dev->tbusy), but set_bit() works as well.
893 if(test_and_set_bit(0, (void*) &dev->tbusy) != 0)
894 printk(KERN_WARNING "%s: Transmitter access conflict.\n",
895 dev->name);
896 else
898 cli(); /* Disable interrupts. */
899 if(lp->board == DAYNA) /* Wait for adapter transmit buffer. */
900 while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0);
901 if(lp->board == TANGENT) /* Wait for adapter transmit buffer. */
902 while((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0);
904 /* Output IO length. */
905 outb(skb->len, ioaddr);
906 if(lp->board == DAYNA)
907 outb(skb->len >> 8, ioaddr);
908 else
909 outb((skb->len >> 8)&0x0FF, ioaddr);
911 /* Output IO code. */
912 outb(LAP_WRITE, ioaddr);
914 if(lp->board == DAYNA) /* Check the transmit buffer again. */
915 while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0);
917 outsb(ioaddr, skb->data, skb->len); /* Send out the data. */
919 if(lp->board==DAYNA) /* Dayna requires you kick the card */
920 outb(1, ioaddr+DAYNA_INT_CARD);
922 sti(); /* Restore interrupts. */
924 /* Done sending packet, update counters and cleanup. */
925 lp->stats.tx_packets++;
926 lp->stats.tx_bytes += skb->len;
927 dev->trans_start = jiffies;
930 dev_kfree_skb (skb);
931 dev->tbusy = 0;
933 return 0;
937 * Dummy function to keep the Appletalk layer happy.
940 static void set_multicast_list(struct net_device *dev)
942 if(cops_debug >= 3)
943 printk("%s: set_multicast_list executed\n", dev->name);
947 * Another Dummy function to keep the Appletalk layer happy.
950 static int cops_hard_header(struct sk_buff *skb, struct net_device *dev,
951 unsigned short type, void *daddr, void *saddr,
952 unsigned len)
954 if(cops_debug >= 3)
955 printk("%s: cops_hard_header executed. Wow!\n", dev->name);
956 return 0;
960 * System ioctls for the COPS LocalTalk card.
963 static int cops_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
965 struct cops_local *lp = (struct cops_local *)dev->priv;
966 struct sockaddr_at *sa=(struct sockaddr_at *)&ifr->ifr_addr;
967 struct at_addr *aa=(struct at_addr *)&lp->node_addr;
969 switch(cmd)
971 case SIOCSIFADDR:
972 /* Get and set the nodeid and network # atalkd wants. */
973 cops_nodeid(dev, sa->sat_addr.s_node);
974 aa->s_net = sa->sat_addr.s_net;
975 aa->s_node = lp->node_acquire;
977 /* Set broardcast address. */
978 dev->broadcast[0] = 0xFF;
980 /* Set hardware address. */
981 dev->dev_addr[0] = aa->s_node;
982 dev->addr_len = 1;
983 return 0;
985 case SIOCGIFADDR:
986 sa->sat_addr.s_net = aa->s_net;
987 sa->sat_addr.s_node = aa->s_node;
988 return 0;
990 default:
991 return -EOPNOTSUPP;
996 * The inverse routine to cops_open().
999 static int cops_close(struct net_device *dev)
1001 struct cops_local *lp = (struct cops_local *)dev->priv;
1003 /* If we were running polled, yank the timer.
1005 if(lp->board==TANGENT && dev->irq==0)
1006 del_timer(&cops_timer);
1008 dev->tbusy = 1;
1009 dev->start = 0;
1011 #ifdef MODULE
1012 MOD_DEC_USE_COUNT;
1013 #endif
1015 return 0;
1019 * Get the current statistics.
1020 * This may be called with the card open or closed.
1022 static struct enet_statistics *cops_get_stats(struct net_device *dev)
1024 struct cops_local *lp = (struct cops_local *)dev->priv;
1025 return &lp->stats;
1028 #ifdef MODULE
1029 static char lt_name[16];
1031 static struct net_device cops0_dev =
1033 lt_name, /* device name */
1034 0, 0, 0, 0,
1035 0x0, 0, /* I/O address, IRQ */
1036 0, 0, 0, NULL, cops_probe
1040 MODULE_PARM(io, "i");
1041 MODULE_PARM(irq, "i");
1042 MODULE_PARM(board_type, "i");
1044 int init_module(void)
1046 int result, err;
1048 if(io == 0)
1049 printk(KERN_WARNING "%s: You shouldn't autoprobe with insmod\n",
1050 cardname);
1052 /* Copy the parameters from insmod into the device structure. */
1053 cops0_dev.base_addr = io;
1054 cops0_dev.irq = irq;
1056 err=dev_alloc_name(&cops0_dev, "lt%d");
1057 if(err < 0)
1058 return err;
1060 if((result = register_netdev(&cops0_dev)) != 0)
1061 return result;
1063 return 0;
1066 void cleanup_module(void)
1068 /* No need to check MOD_IN_USE, as sys_delete_module() checks. */
1069 unregister_netdev(&cops0_dev);
1070 if(cops0_dev.priv)
1071 kfree_s(cops0_dev.priv, sizeof(struct cops_local));
1072 if(cops0_dev.irq)
1073 free_irq(cops0_dev.irq, &cops0_dev);
1074 release_region(cops0_dev.base_addr, COPS_IO_EXTENT);
1076 #endif /* MODULE */
1079 * Local variables:
1080 * compile-command: "gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O2 -c cops.c"
1081 * c-basic-offset: 4
1082 * c-file-offsets: ((substatement-open . 0))
1083 * End: