1 /* cops.c: LocalTalk driver for Linux.
4 * - Jay Schulist <Jay.Schulist@spacs.k12.wi.us>
6 * With more than a little help from;
7 * - Alan Cox <Alan.Cox@linux.org>
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.
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";
39 * COPS Localtalk SDK. This provides almost all of the information
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>
52 #include <linux/module.h>
53 #include <linux/version.h>
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>
64 #include <linux/malloc.h>
65 #include <linux/string.h>
66 #include <asm/system.h>
67 #include <asm/bitops.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 */
96 static int board_type
= TANGENT
;
100 static int io
= 0x240; /* Default IO for Dayna */
101 static int irq
= 5; /* Default IRQ */
103 static int io
= 0; /* Default IO for Dayna */
104 static int irq
= 0; /* Default IRQ */
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
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,
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
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
[] = {
168 static struct timer_list cops_timer
;
170 /* use 0 for production, 1 for verification, 2 for debug, 3 for verbose debug */
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. */
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
,
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
)
224 int base_addr
= dev
? dev
->base_addr
: 0;
226 if(base_addr
== 0 && 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. */
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
))
243 if(cops_probe1(dev
, ioaddr
) == 0)
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.
275 /* COPS AutoIRQ routine */
276 dev
->irq
= cops_irq(ioaddr
, board
);
278 return -EINVAL
; /* No IRQ found on this port */
285 /* Fixup for users that don't know that IRQ 2 is really
286 * IRQ 9, or don't know which one to set.
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.
304 /* Reserve any actual interrupt. */
305 if(dev
->irq
&& request_irq(dev
->irq
, &cops_interrupt
, 0, cardname
, dev
))
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
)
317 lp
= (struct cops_local
*)dev
->priv
;
318 memset(lp
, 0, sizeof(struct cops_local
));
320 /* Copy local board variable to lp struct. */
323 /* Fill in the fields of the device structure with LocalTalk values. */
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
;
335 /* Tell the user where the card is and what mode we're in. */
337 printk("%s: %s at %#3x, using IRQ %d, in Dayna mode.\n",
338 dev
->name
, cardname
, ioaddr
, dev
->irq
);
341 printk("%s: %s at %#3x, IRQ %d, in Tangent mode\n",
342 dev
->name
, cardname
, ioaddr
, dev
->irq
);
344 printk("%s: %s at %#3x, using polled IO, in Tangent mode.\n",
345 dev
->name
, cardname
, ioaddr
);
351 static int __init
cops_irq (int ioaddr
, int board
)
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.
364 outb(0, ioaddr
+DAYNA_RESET
);
365 inb(ioaddr
+DAYNA_RESET
);
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 */
382 status
= (inb(ioaddr
+DAYNA_CARD_STATUS
)&3);
388 if((inb(ioaddr
+TANG_CARD_STATUS
)& TANG_TX_READY
) !=0)
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
;
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
);
420 printk(KERN_WARNING
"%s: No irq line set\n", dev
->name
);
425 cops_jumpstart(dev
); /* Start the card up. */
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.
459 cops_nodeid(dev
,lp
->node_acquire
);
464 static void tangent_wait_reset(int ioaddr
)
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
);
491 outb(0, ioaddr
+DAYNA_RESET
); /* Assert the reset port */
492 inb(ioaddr
+DAYNA_RESET
); /* Clear the reset */
497 /* Let card finish initializing, about 1/3 second */
498 while(jiffies
-snap
<HZ
/3)
509 static void cops_load (struct net_device
*dev
)
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
;
517 strcpy(ifr
.ifr_name
,"lt0");
519 /* Get card's firmware code and do some checks on it. */
520 #ifdef CONFIG_COPS_DAYNA
523 ltf
->length
=sizeof(ffdrv_code
);
524 ltf
->data
=ffdrv_code
;
528 #ifdef CONFIG_COPS_TANGENT
529 if(lp
->board
==TANGENT
)
531 ltf
->length
=sizeof(ltdrv_code
);
532 ltf
->data
=ltdrv_code
;
537 printk(KERN_INFO
"%s; unsupported board type.\n", dev
->name
);
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
);
547 if(lp
->board
==TANGENT
&& ltf
->length
!=2501)
549 printk(KERN_WARNING
"%s: Firmware is not length of DRVCODE.BIN.\n", dev
->name
);
556 * We must wait for a status response
557 * with the DAYNA board.
561 if((inb(ioaddr
+DAYNA_CARD_STATUS
)&3)==1)
570 * Upload the firmware and kick. Byte-by-byte works nicely here.
573 length
= ltf
->length
;
576 outb(ltf
->data
[i
], ioaddr
);
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. */
589 if(lp
->board
==TANGENT
)
591 tangent_wait_reset(ioaddr
);
592 inb(ioaddr
); /* Clear initial ready signal. */
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. */
620 outb(2, ioaddr
); /* Output command packet length as 2. */
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. */
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. */
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. */
674 * Poll the Tangent type cards to see if we have work.
676 static void cops_poll(unsigned long ltdev
)
681 struct net_device
*dev
= (struct net_device
*)ltdev
;
683 del_timer(&cops_timer
);
686 return; /* We've been downed */
688 ioaddr
= dev
->base_addr
;
690 status
=inb(ioaddr
+TANG_CARD_STATUS
);
691 if(status
& TANG_RX_READY
)
693 if(status
& TANG_TX_READY
)
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
);
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
;
717 printk(KERN_WARNING
"%s: irq %d for unknown device.\n",
723 ioaddr
= dev
->base_addr
;
724 lp
= (struct cops_local
*)dev
->priv
;
729 outb(0, ioaddr
+ COPS_CLEAR_INT
);
730 status
=inb(ioaddr
+DAYNA_CARD_STATUS
);
731 if((status
&0x03)==DAYNA_RX_REQUEST
)
735 } while(++boguscount
< 20);
740 status
=inb(ioaddr
+TANG_CARD_STATUS
);
741 if(status
& TANG_RX_READY
)
743 if(status
& TANG_TX_READY
)
745 status
=inb(ioaddr
+TANG_CARD_STATUS
);
746 } while((++boguscount
< 20) &&
747 (status
&(TANG_RX_READY
|TANG_TX_READY
)));
755 * We have a good packet(s), get it/them out of the buffers.
757 static void cops_rx(struct net_device
*dev
)
762 struct cops_local
*lp
= (struct cops_local
*)dev
->priv
;
763 int ioaddr
= dev
->base_addr
;
766 cli(); /* Disable interrupts. */
770 outb(0, ioaddr
); /* Send out Zero length. */
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
)
781 if(boguscount
==1000000)
783 printk(KERN_WARNING
"%s: DMA timed out.\n",dev
->name
);
788 /* Get response length. */
790 pkt_len
= inb(ioaddr
) & 0xFF;
792 pkt_len
= inb(ioaddr
) & 0x00FF;
793 pkt_len
|= (inb(ioaddr
) << 8);
795 rsp_type
=inb(ioaddr
);
797 /* Malloc up new buffer. */
798 skb
= dev_alloc_skb(pkt_len
);
801 printk(KERN_NOTICE
"%s: Memory squeeze, dropping packet.\n",
803 lp
->stats
.rx_dropped
++;
804 while(pkt_len
--) /* Discard packet */
809 skb_put(skb
, pkt_len
);
810 skb
->protocol
= htons(ETH_P_LOCALTALK
);
812 insb(ioaddr
, skb
->data
, pkt_len
); /* Eat the Data */
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",
824 lp
->stats
.tx_errors
++;
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];
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
++;
846 skb
->mac
.raw
= skb
->data
; /* Point to entire packet. */
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. */
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
;
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
;
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. */
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",
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
);
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
;
937 * Dummy function to keep the Appletalk layer happy.
940 static void set_multicast_list(struct net_device
*dev
)
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
,
955 printk("%s: cops_hard_header executed. Wow!\n", dev
->name
);
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
;
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
;
986 sa
->sat_addr
.s_net
= aa
->s_net
;
987 sa
->sat_addr
.s_node
= aa
->s_node
;
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
);
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
;
1029 static char lt_name
[16];
1031 static struct net_device cops0_dev
=
1033 lt_name
, /* device name */
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)
1049 printk(KERN_WARNING
"%s: You shouldn't autoprobe with insmod\n",
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");
1060 if((result
= register_netdev(&cops0_dev
)) != 0)
1066 void cleanup_module(void)
1068 /* No need to check MOD_IN_USE, as sys_delete_module() checks. */
1069 unregister_netdev(&cops0_dev
);
1071 kfree_s(cops0_dev
.priv
, sizeof(struct cops_local
));
1073 free_irq(cops0_dev
.irq
, &cops0_dev
);
1074 release_region(cops0_dev
.base_addr
, COPS_IO_EXTENT
);
1080 * compile-command: "gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O2 -c cops.c"
1082 * c-file-offsets: ((substatement-open . 0))