2 * tms380tr.c: A network driver library for Texas Instruments TMS380-based
5 * Originally sktr.c: Written 1997 by Christoph Goos
7 * A fine result of the Linux Systems Network Architecture Project.
8 * http://www.linux-sna.org
10 * This software may be used and distributed according to the terms
11 * of the GNU General Public License, incorporated herein by reference.
13 * The following modules are currently available for card support:
14 * - tmspci (Generic PCI card support)
15 * - abyss (Madge PCI support)
16 * - tmsisa (SysKonnect TR4/16 ISA)
19 * - The hardware related parts of this driver are take from
20 * the SysKonnect Token Ring driver for Windows NT.
21 * - I used the IBM Token Ring driver 'ibmtr.c' as a base for this
22 * driver, as well as the 'skeleton.c' driver by Donald Becker.
23 * - Also various other drivers in the linux source tree were taken
24 * as samples for some tasks.
25 * - TI TMS380 Second-Generation Token Ring User's Guide
26 * - TI datasheets for respective chips
27 * - David Hein at Texas Instruments
28 * - Various Madge employees
31 * JS Jay Schulist jschlst@samba.org
32 * CG Christoph Goos cgoos@syskonnect.de
33 * AF Adam Fritzler mid@auk.cx
34 * MLP Mike Phillips phillim@amtrak.com
35 * JF Jochen Friedrich jochen@scram.de
37 * Modification History:
38 * 29-Aug-97 CG Created
39 * 04-Apr-98 CG Fixed problems caused by tok_timer_check
40 * 10-Apr-98 CG Fixed lockups at cable disconnection
41 * 27-May-98 JS Formated to Linux Kernel Format
42 * 31-May-98 JS Hacked in PCI support
43 * 16-Jun-98 JS Modulized for multiple cards with one driver
44 * Sep-99 AF Renamed to tms380tr (supports more than SK's)
45 * 23-Sep-99 AF Added Compaq and Thomas-Conrad PCI support
46 * Fixed a bug causing double copies on PCI
47 * Fixed for new multicast stuff (2.2/2.3)
48 * 25-Sep-99 AF Uped TPL_NUM from 3 to 9
49 * Removed extraneous 'No free TPL'
50 * 22-Dec-99 AF Added Madge PCI Mk2 support and generalized
51 * parts of the initilization procedure.
52 * 30-Dec-99 AF Turned tms380tr into a library ala 8390.
53 * Madge support is provided in the abyss module
54 * Generic PCI support is in the tmspci module.
55 * 30-Nov-00 JF Updated PCI code to support IO MMU via
56 * pci_map_static(). Alpha uses this MMU for ISA
58 * 14-Jan-01 JF Fix DMA on ifdown/ifup sequences. Some
60 * 13-Jan-02 JF Add spinlock to fix race condition.
61 * 09-Nov-02 JF Fixed printks to not SPAM the console during
63 * 30-Dec-02 JF Removed incorrect __init from
67 * 1. Multi/Broadcast packet handling (this may have fixed itself)
68 * 2. Write a sktrisa module that includes the old ISA support (done)
69 * 3. Allow modules to load their own microcode
70 * 4. Speed up the BUD process -- freezing the kernel for 3+sec is
72 * 5. Still a few remaining stalls when the cable is unplugged.
76 static const char version
[] = "tms380tr.c: v1.10 30/12/2002 by Christoph Goos, Adam Fritzler\n";
79 #include <linux/module.h>
80 #include <linux/kernel.h>
81 #include <linux/types.h>
82 #include <linux/fcntl.h>
83 #include <linux/interrupt.h>
84 #include <linux/ptrace.h>
85 #include <linux/ioport.h>
87 #include <linux/slab.h>
88 #include <linux/string.h>
89 #include <linux/time.h>
90 #include <linux/errno.h>
91 #include <linux/init.h>
92 #include <linux/pci.h>
93 #include <linux/delay.h>
94 #include <linux/netdevice.h>
95 #include <linux/etherdevice.h>
96 #include <linux/skbuff.h>
97 #include <linux/trdevice.h>
98 #include <linux/firmware.h>
99 #include <linux/bitops.h>
101 #include <asm/system.h>
105 #include <asm/uaccess.h>
107 #include "tms380tr.h" /* Our Stuff */
109 /* Use 0 for production, 1 for verification, 2 for debug, and
110 * 3 for very verbose debug.
112 #ifndef TMS380TR_DEBUG
113 #define TMS380TR_DEBUG 0
115 static unsigned int tms380tr_debug
= TMS380TR_DEBUG
;
117 static struct device tms_device
;
119 /* Index to functions, as function prototypes.
120 * Alphabetical by function name.
125 static int tms380tr_bringup_diags(struct net_device
*dev
);
127 static void tms380tr_cancel_tx_queue(struct net_local
* tp
);
128 static int tms380tr_chipset_init(struct net_device
*dev
);
129 static void tms380tr_chk_irq(struct net_device
*dev
);
130 static void tms380tr_chk_outstanding_cmds(struct net_device
*dev
);
131 static void tms380tr_chk_src_addr(unsigned char *frame
, unsigned char *hw_addr
);
132 static unsigned char tms380tr_chk_ssb(struct net_local
*tp
, unsigned short IrqType
);
133 int tms380tr_close(struct net_device
*dev
);
134 static void tms380tr_cmd_status_irq(struct net_device
*dev
);
136 static void tms380tr_disable_interrupts(struct net_device
*dev
);
137 #if TMS380TR_DEBUG > 0
138 static void tms380tr_dump(unsigned char *Data
, int length
);
141 static void tms380tr_enable_interrupts(struct net_device
*dev
);
142 static void tms380tr_exec_cmd(struct net_device
*dev
, unsigned short Command
);
143 static void tms380tr_exec_sifcmd(struct net_device
*dev
, unsigned int WriteValue
);
146 static struct net_device_stats
*tms380tr_get_stats(struct net_device
*dev
);
148 static int tms380tr_hardware_send_packet(struct sk_buff
*skb
,
149 struct net_device
*dev
);
151 static int tms380tr_init_adapter(struct net_device
*dev
);
152 static void tms380tr_init_ipb(struct net_local
*tp
);
153 static void tms380tr_init_net_local(struct net_device
*dev
);
154 static void tms380tr_init_opb(struct net_device
*dev
);
157 int tms380tr_open(struct net_device
*dev
);
158 static void tms380tr_open_adapter(struct net_device
*dev
);
161 static void tms380tr_rcv_status_irq(struct net_device
*dev
);
162 static int tms380tr_read_ptr(struct net_device
*dev
);
163 static void tms380tr_read_ram(struct net_device
*dev
, unsigned char *Data
,
164 unsigned short Address
, int Length
);
165 static int tms380tr_reset_adapter(struct net_device
*dev
);
166 static void tms380tr_reset_interrupt(struct net_device
*dev
);
167 static void tms380tr_ring_status_irq(struct net_device
*dev
);
169 static int tms380tr_send_packet(struct sk_buff
*skb
, struct net_device
*dev
);
170 static void tms380tr_set_multicast_list(struct net_device
*dev
);
171 static int tms380tr_set_mac_address(struct net_device
*dev
, void *addr
);
173 static void tms380tr_timer_chk(unsigned long data
);
174 static void tms380tr_timer_end_wait(unsigned long data
);
175 static void tms380tr_tx_status_irq(struct net_device
*dev
);
177 static void tms380tr_update_rcv_stats(struct net_local
*tp
,
178 unsigned char DataPtr
[], unsigned int Length
);
180 void tms380tr_wait(unsigned long time
);
181 static void tms380tr_write_rpl_status(RPL
*rpl
, unsigned int Status
);
182 static void tms380tr_write_tpl_status(TPL
*tpl
, unsigned int Status
);
184 #define SIFREADB(reg) (((struct net_local *)dev->priv)->sifreadb(dev, reg))
185 #define SIFWRITEB(val, reg) (((struct net_local *)dev->priv)->sifwriteb(dev, val, reg))
186 #define SIFREADW(reg) (((struct net_local *)dev->priv)->sifreadw(dev, reg))
187 #define SIFWRITEW(val, reg) (((struct net_local *)dev->priv)->sifwritew(dev, val, reg))
191 #if 0 /* TMS380TR_DEBUG > 0 */
192 static int madgemc_sifprobe(struct net_device
*dev
)
194 unsigned char old
, chk1
, chk2
;
196 old
= SIFREADB(SIFADR
); /* Get the old SIFADR value */
198 chk1
= 0; /* Begin with check value 0 */
200 madgemc_setregpage(dev
, 0);
201 /* Write new SIFADR value */
202 SIFWRITEB(chk1
, SIFADR
);
203 chk2
= SIFREADB(SIFADR
);
207 madgemc_setregpage(dev
, 1);
208 /* Read, invert and write */
209 chk2
= SIFREADB(SIFADD
);
213 madgemc_setregpage(dev
, 0);
215 SIFWRITEB(chk2
, SIFADR
);
217 /* Read, invert and compare */
218 madgemc_setregpage(dev
, 1);
219 chk2
= SIFREADB(SIFADD
);
220 madgemc_setregpage(dev
, 0);
224 return (-1); /* No adapter */
226 } while(chk1
!= 0); /* Repeat 128 times (all byte values) */
228 madgemc_setregpage(dev
, 0); /* sanity */
229 /* Restore the SIFADR value */
230 SIFWRITEB(old
, SIFADR
);
237 * Open/initialize the board. This is called sometime after
238 * booting when the 'ifconfig' program is run.
240 * This routine should set everything up anew at each open, even
241 * registers that "should" only need to be set once at boot, so that
242 * there is non-reboot way to recover if something goes wrong.
244 int tms380tr_open(struct net_device
*dev
)
246 struct net_local
*tp
= netdev_priv(dev
);
249 /* init the spinlock */
250 spin_lock_init(&tp
->lock
);
251 init_timer(&tp
->timer
);
253 /* Reset the hardware here. Don't forget to set the station address. */
258 unsigned long flags
=claim_dma_lock();
259 disable_dma(dev
->dma
);
260 set_dma_mode(dev
->dma
, DMA_MODE_CASCADE
);
261 enable_dma(dev
->dma
);
262 release_dma_lock(flags
);
266 err
= tms380tr_chipset_init(dev
);
269 printk(KERN_INFO
"%s: Chipset initialization error\n",
274 tp
->timer
.expires
= jiffies
+ 30*HZ
;
275 tp
->timer
.function
= tms380tr_timer_end_wait
;
276 tp
->timer
.data
= (unsigned long)dev
;
277 add_timer(&tp
->timer
);
279 printk(KERN_DEBUG
"%s: Adapter RAM size: %dK\n",
280 dev
->name
, tms380tr_read_ptr(dev
));
282 tms380tr_enable_interrupts(dev
);
283 tms380tr_open_adapter(dev
);
285 netif_start_queue(dev
);
287 /* Wait for interrupt from hardware. If interrupt does not come,
288 * there will be a timeout from the timer.
291 interruptible_sleep_on(&tp
->wait_for_tok_int
);
292 del_timer(&tp
->timer
);
294 /* If AdapterVirtOpenFlag is 1, the adapter is now open for use */
295 if(tp
->AdapterVirtOpenFlag
== 0)
297 tms380tr_disable_interrupts(dev
);
301 tp
->StartTime
= jiffies
;
303 /* Start function control timer */
304 tp
->timer
.expires
= jiffies
+ 2*HZ
;
305 tp
->timer
.function
= tms380tr_timer_chk
;
306 tp
->timer
.data
= (unsigned long)dev
;
307 add_timer(&tp
->timer
);
313 * Timeout function while waiting for event
315 static void tms380tr_timer_end_wait(unsigned long data
)
317 struct net_device
*dev
= (struct net_device
*)data
;
318 struct net_local
*tp
= netdev_priv(dev
);
323 wake_up_interruptible(&tp
->wait_for_tok_int
);
330 * Initialize the chipset
332 static int tms380tr_chipset_init(struct net_device
*dev
)
334 struct net_local
*tp
= netdev_priv(dev
);
337 tms380tr_init_ipb(tp
);
338 tms380tr_init_opb(dev
);
339 tms380tr_init_net_local(dev
);
341 if(tms380tr_debug
> 3)
342 printk(KERN_DEBUG
"%s: Resetting adapter...\n", dev
->name
);
343 err
= tms380tr_reset_adapter(dev
);
347 if(tms380tr_debug
> 3)
348 printk(KERN_DEBUG
"%s: Bringup diags...\n", dev
->name
);
349 err
= tms380tr_bringup_diags(dev
);
353 if(tms380tr_debug
> 3)
354 printk(KERN_DEBUG
"%s: Init adapter...\n", dev
->name
);
355 err
= tms380tr_init_adapter(dev
);
359 if(tms380tr_debug
> 3)
360 printk(KERN_DEBUG
"%s: Done!\n", dev
->name
);
365 * Initializes the net_local structure.
367 static void tms380tr_init_net_local(struct net_device
*dev
)
369 struct net_local
*tp
= netdev_priv(dev
);
384 tp
->AdapterOpenFlag
= 0;
385 tp
->AdapterVirtOpenFlag
= 0;
387 tp
->OpenCommandIssued
= 0;
388 tp
->ReOpenInProgress
= 0;
389 tp
->HaltInProgress
= 0;
390 tp
->TransmitHaltScheduled
= 0;
391 tp
->LobeWireFaultLogged
= 0;
392 tp
->LastOpenStatus
= 0;
393 tp
->MaxPacketSize
= DEFAULT_PACKET_SIZE
;
395 /* Create circular chain of transmit lists */
396 for (i
= 0; i
< TPL_NUM
; i
++)
398 tp
->Tpl
[i
].NextTPLAddr
= htonl(((char *)(&tp
->Tpl
[(i
+1) % TPL_NUM
]) - (char *)tp
) + tp
->dmabuffer
); /* DMA buffer may be MMU driven */
399 tp
->Tpl
[i
].Status
= 0;
400 tp
->Tpl
[i
].FrameSize
= 0;
401 tp
->Tpl
[i
].FragList
[0].DataCount
= 0;
402 tp
->Tpl
[i
].FragList
[0].DataAddr
= 0;
403 tp
->Tpl
[i
].NextTPLPtr
= &tp
->Tpl
[(i
+1) % TPL_NUM
];
404 tp
->Tpl
[i
].MData
= NULL
;
405 tp
->Tpl
[i
].TPLIndex
= i
;
406 tp
->Tpl
[i
].DMABuff
= 0;
407 tp
->Tpl
[i
].BusyFlag
= 0;
410 tp
->TplFree
= tp
->TplBusy
= &tp
->Tpl
[0];
412 /* Create circular chain of receive lists */
413 for (i
= 0; i
< RPL_NUM
; i
++)
415 tp
->Rpl
[i
].NextRPLAddr
= htonl(((char *)(&tp
->Rpl
[(i
+1) % RPL_NUM
]) - (char *)tp
) + tp
->dmabuffer
); /* DMA buffer may be MMU driven */
416 tp
->Rpl
[i
].Status
= (RX_VALID
| RX_START_FRAME
| RX_END_FRAME
| RX_FRAME_IRQ
);
417 tp
->Rpl
[i
].FrameSize
= 0;
418 tp
->Rpl
[i
].FragList
[0].DataCount
= cpu_to_be16((unsigned short)tp
->MaxPacketSize
);
420 /* Alloc skb and point adapter to data area */
421 tp
->Rpl
[i
].Skb
= dev_alloc_skb(tp
->MaxPacketSize
);
422 tp
->Rpl
[i
].DMABuff
= 0;
424 /* skb == NULL ? then use local buffer */
425 if(tp
->Rpl
[i
].Skb
== NULL
)
427 tp
->Rpl
[i
].SkbStat
= SKB_UNAVAILABLE
;
428 tp
->Rpl
[i
].FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[i
] - (char *)tp
) + tp
->dmabuffer
);
429 tp
->Rpl
[i
].MData
= tp
->LocalRxBuffers
[i
];
431 else /* SKB != NULL */
433 tp
->Rpl
[i
].Skb
->dev
= dev
;
434 skb_put(tp
->Rpl
[i
].Skb
, tp
->MaxPacketSize
);
436 /* data unreachable for DMA ? then use local buffer */
437 dmabuf
= pci_map_single(tp
->pdev
, tp
->Rpl
[i
].Skb
->data
, tp
->MaxPacketSize
, PCI_DMA_FROMDEVICE
);
438 if(tp
->dmalimit
&& (dmabuf
+ tp
->MaxPacketSize
> tp
->dmalimit
))
440 tp
->Rpl
[i
].SkbStat
= SKB_DATA_COPY
;
441 tp
->Rpl
[i
].FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[i
] - (char *)tp
) + tp
->dmabuffer
);
442 tp
->Rpl
[i
].MData
= tp
->LocalRxBuffers
[i
];
444 else /* DMA directly in skb->data */
446 tp
->Rpl
[i
].SkbStat
= SKB_DMA_DIRECT
;
447 tp
->Rpl
[i
].FragList
[0].DataAddr
= htonl(dmabuf
);
448 tp
->Rpl
[i
].MData
= tp
->Rpl
[i
].Skb
->data
;
449 tp
->Rpl
[i
].DMABuff
= dmabuf
;
453 tp
->Rpl
[i
].NextRPLPtr
= &tp
->Rpl
[(i
+1) % RPL_NUM
];
454 tp
->Rpl
[i
].RPLIndex
= i
;
457 tp
->RplHead
= &tp
->Rpl
[0];
458 tp
->RplTail
= &tp
->Rpl
[RPL_NUM
-1];
459 tp
->RplTail
->Status
= (RX_START_FRAME
| RX_END_FRAME
| RX_FRAME_IRQ
);
465 * Initializes the initialisation parameter block.
467 static void tms380tr_init_ipb(struct net_local
*tp
)
469 tp
->ipb
.Init_Options
= BURST_MODE
;
470 tp
->ipb
.CMD_Status_IV
= 0;
473 tp
->ipb
.Ring_Status_IV
= 0;
474 tp
->ipb
.SCB_Clear_IV
= 0;
475 tp
->ipb
.Adapter_CHK_IV
= 0;
476 tp
->ipb
.RX_Burst_Size
= BURST_SIZE
;
477 tp
->ipb
.TX_Burst_Size
= BURST_SIZE
;
478 tp
->ipb
.DMA_Abort_Thrhld
= DMA_RETRIES
;
479 tp
->ipb
.SCB_Addr
= 0;
480 tp
->ipb
.SSB_Addr
= 0;
486 * Initializes the open parameter block.
488 static void tms380tr_init_opb(struct net_device
*dev
)
490 struct net_local
*tp
;
492 unsigned short RplSize
= RPL_SIZE
;
493 unsigned short TplSize
= TPL_SIZE
;
494 unsigned short BufferSize
= BUFFER_SIZE
;
497 tp
= netdev_priv(dev
);
499 tp
->ocpl
.OPENOptions
= 0;
500 tp
->ocpl
.OPENOptions
|= ENABLE_FULL_DUPLEX_SELECTION
;
501 tp
->ocpl
.FullDuplex
= 0;
502 tp
->ocpl
.FullDuplex
|= OPEN_FULL_DUPLEX_OFF
;
507 * We go ahead and put it in the OPB even though on
508 * most of the generic adapters this isn't required.
509 * Its simpler this way. -- ASF
512 tp
->ocpl
.NodeAddr
[i
] = ((unsigned char *)dev
->dev_addr
)[i
];
514 tp
->ocpl
.GroupAddr
= 0;
515 tp
->ocpl
.FunctAddr
= 0;
516 tp
->ocpl
.RxListSize
= cpu_to_be16((unsigned short)RplSize
);
517 tp
->ocpl
.TxListSize
= cpu_to_be16((unsigned short)TplSize
);
518 tp
->ocpl
.BufSize
= cpu_to_be16((unsigned short)BufferSize
);
519 tp
->ocpl
.Reserved
= 0;
520 tp
->ocpl
.TXBufMin
= TX_BUF_MIN
;
521 tp
->ocpl
.TXBufMax
= TX_BUF_MAX
;
523 Addr
= htonl(((char *)tp
->ProductID
- (char *)tp
) + tp
->dmabuffer
);
525 tp
->ocpl
.ProdIDAddr
[0] = LOWORD(Addr
);
526 tp
->ocpl
.ProdIDAddr
[1] = HIWORD(Addr
);
532 * Send OPEN command to adapter
534 static void tms380tr_open_adapter(struct net_device
*dev
)
536 struct net_local
*tp
= netdev_priv(dev
);
538 if(tp
->OpenCommandIssued
)
541 tp
->OpenCommandIssued
= 1;
542 tms380tr_exec_cmd(dev
, OC_OPEN
);
548 * Clear the adapter's interrupt flag. Clear system interrupt enable
549 * (SINTEN): disable adapter to system interrupts.
551 static void tms380tr_disable_interrupts(struct net_device
*dev
)
553 SIFWRITEB(0, SIFACL
);
559 * Set the adapter's interrupt flag. Set system interrupt enable
560 * (SINTEN): enable adapter to system interrupts.
562 static void tms380tr_enable_interrupts(struct net_device
*dev
)
564 SIFWRITEB(ACL_SINTEN
, SIFACL
);
570 * Put command in command queue, try to execute it.
572 static void tms380tr_exec_cmd(struct net_device
*dev
, unsigned short Command
)
574 struct net_local
*tp
= netdev_priv(dev
);
576 tp
->CMDqueue
|= Command
;
577 tms380tr_chk_outstanding_cmds(dev
);
582 static void tms380tr_timeout(struct net_device
*dev
)
585 * If we get here, some higher level has decided we are broken.
586 * There should really be a "kick me" function call instead.
588 * Resetting the token ring adapter takes a long time so just
589 * fake transmission time and go on trying. Our own timeout
590 * routine is in tms380tr_timer_chk()
592 dev
->trans_start
= jiffies
;
593 netif_wake_queue(dev
);
597 * Gets skb from system, queues it and checks if it can be sent
599 static int tms380tr_send_packet(struct sk_buff
*skb
, struct net_device
*dev
)
601 struct net_local
*tp
= netdev_priv(dev
);
604 err
= tms380tr_hardware_send_packet(skb
, dev
);
605 if(tp
->TplFree
->NextTPLPtr
->BusyFlag
)
606 netif_stop_queue(dev
);
611 * Move frames into adapter tx queue
613 static int tms380tr_hardware_send_packet(struct sk_buff
*skb
, struct net_device
*dev
)
620 dma_addr_t dmabuf
, newbuf
;
621 struct net_local
*tp
= netdev_priv(dev
);
623 /* Try to get a free TPL from the chain.
625 * NOTE: We *must* always leave one unused TPL in the chain,
626 * because otherwise the adapter might send frames twice.
628 spin_lock_irqsave(&tp
->lock
, flags
);
629 if(tp
->TplFree
->NextTPLPtr
->BusyFlag
) { /* No free TPL */
630 if (tms380tr_debug
> 0)
631 printk(KERN_DEBUG
"%s: No free TPL\n", dev
->name
);
632 spin_unlock_irqrestore(&tp
->lock
, flags
);
638 /* Is buffer reachable for Busmaster-DMA? */
641 dmabuf
= pci_map_single(tp
->pdev
, skb
->data
, length
, PCI_DMA_TODEVICE
);
642 if(tp
->dmalimit
&& (dmabuf
+ length
> tp
->dmalimit
)) {
643 /* Copy frame to local buffer */
644 pci_unmap_single(tp
->pdev
, dmabuf
, length
, PCI_DMA_TODEVICE
);
646 i
= tp
->TplFree
->TPLIndex
;
647 buf
= tp
->LocalTxBuffers
[i
];
648 memcpy(buf
, skb
->data
, length
);
649 newbuf
= ((char *)buf
- (char *)tp
) + tp
->dmabuffer
;
652 /* Send direct from skb->data */
656 /* Source address in packet? */
657 tms380tr_chk_src_addr(buf
, dev
->dev_addr
);
658 tp
->LastSendTime
= jiffies
;
659 tpl
= tp
->TplFree
; /* Get the "free" TPL */
660 tpl
->BusyFlag
= 1; /* Mark TPL as busy */
661 tp
->TplFree
= tpl
->NextTPLPtr
;
663 /* Save the skb for delayed return of skb to system */
665 tpl
->DMABuff
= dmabuf
;
666 tpl
->FragList
[0].DataCount
= cpu_to_be16((unsigned short)length
);
667 tpl
->FragList
[0].DataAddr
= htonl(newbuf
);
669 /* Write the data length in the transmit list. */
670 tpl
->FrameSize
= cpu_to_be16((unsigned short)length
);
673 /* Transmit the frame and set the status values. */
674 tms380tr_write_tpl_status(tpl
, TX_VALID
| TX_START_FRAME
675 | TX_END_FRAME
| TX_PASS_SRC_ADDR
678 /* Let adapter send the frame. */
679 tms380tr_exec_sifcmd(dev
, CMD_TX_VALID
);
680 spin_unlock_irqrestore(&tp
->lock
, flags
);
686 * Write the given value to the 'Status' field of the specified TPL.
687 * NOTE: This function should be used whenever the status of any TPL must be
688 * modified by the driver, because the compiler may otherwise change the
689 * order of instructions such that writing the TPL status may be executed at
690 * an undesireable time. When this function is used, the status is always
691 * written when the function is called.
693 static void tms380tr_write_tpl_status(TPL
*tpl
, unsigned int Status
)
695 tpl
->Status
= Status
;
698 static void tms380tr_chk_src_addr(unsigned char *frame
, unsigned char *hw_addr
)
702 if((((unsigned long)frame
[8]) & ~0x80) != 0) /* Compare 4 bytes */
704 if((unsigned short)frame
[12] != 0) /* Compare 2 bytes */
707 SRBit
= frame
[8] & 0x80;
708 memcpy(&frame
[8], hw_addr
, 6);
715 * The timer routine: Check if adapter still open and working, reopen if not.
717 static void tms380tr_timer_chk(unsigned long data
)
719 struct net_device
*dev
= (struct net_device
*)data
;
720 struct net_local
*tp
= netdev_priv(dev
);
722 if(tp
->HaltInProgress
)
725 tms380tr_chk_outstanding_cmds(dev
);
726 if(time_before(tp
->LastSendTime
+ SEND_TIMEOUT
, jiffies
)
727 && (tp
->TplFree
!= tp
->TplBusy
))
729 /* Anything to send, but stalled too long */
730 tp
->LastSendTime
= jiffies
;
731 tms380tr_exec_cmd(dev
, OC_CLOSE
); /* Does reopen automatically */
734 tp
->timer
.expires
= jiffies
+ 2*HZ
;
735 add_timer(&tp
->timer
);
737 if(tp
->AdapterOpenFlag
|| tp
->ReOpenInProgress
)
739 tp
->ReOpenInProgress
= 1;
740 tms380tr_open_adapter(dev
);
746 * The typical workload of the driver: Handle the network interface interrupts.
748 irqreturn_t
tms380tr_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
750 struct net_device
*dev
= dev_id
;
751 struct net_local
*tp
;
752 unsigned short irq_type
;
756 printk(KERN_INFO
"%s: irq %d for unknown device.\n", dev
->name
, irq
);
760 tp
= netdev_priv(dev
);
762 irq_type
= SIFREADW(SIFSTS
);
764 while(irq_type
& STS_SYSTEM_IRQ
) {
766 irq_type
&= STS_IRQ_MASK
;
768 if(!tms380tr_chk_ssb(tp
, irq_type
)) {
769 printk(KERN_DEBUG
"%s: DATA LATE occurred\n", dev
->name
);
774 case STS_IRQ_RECEIVE_STATUS
:
775 tms380tr_reset_interrupt(dev
);
776 tms380tr_rcv_status_irq(dev
);
779 case STS_IRQ_TRANSMIT_STATUS
:
780 /* Check if TRANSMIT.HALT command is complete */
781 if(tp
->ssb
.Parm
[0] & COMMAND_COMPLETE
) {
782 tp
->TransmitCommandActive
= 0;
783 tp
->TransmitHaltScheduled
= 0;
785 /* Issue a new transmit command. */
786 tms380tr_exec_cmd(dev
, OC_TRANSMIT
);
789 tms380tr_reset_interrupt(dev
);
790 tms380tr_tx_status_irq(dev
);
793 case STS_IRQ_COMMAND_STATUS
:
794 /* The SSB contains status of last command
795 * other than receive/transmit.
797 tms380tr_cmd_status_irq(dev
);
800 case STS_IRQ_SCB_CLEAR
:
801 /* The SCB is free for another command. */
803 tms380tr_chk_outstanding_cmds(dev
);
806 case STS_IRQ_RING_STATUS
:
807 tms380tr_ring_status_irq(dev
);
810 case STS_IRQ_ADAPTER_CHECK
:
811 tms380tr_chk_irq(dev
);
814 case STS_IRQ_LLC_STATUS
:
815 printk(KERN_DEBUG
"tms380tr: unexpected LLC status IRQ\n");
819 printk(KERN_DEBUG
"tms380tr: unexpected Timer IRQ\n");
822 case STS_IRQ_RECEIVE_PENDING
:
823 printk(KERN_DEBUG
"tms380tr: unexpected Receive Pending IRQ\n");
827 printk(KERN_DEBUG
"Unknown Token Ring IRQ (0x%04x)\n", irq_type
);
831 /* Reset system interrupt if not already done. */
832 if(irq_type
!= STS_IRQ_TRANSMIT_STATUS
833 && irq_type
!= STS_IRQ_RECEIVE_STATUS
) {
834 tms380tr_reset_interrupt(dev
);
837 irq_type
= SIFREADW(SIFSTS
);
840 return IRQ_RETVAL(handled
);
844 * Reset the INTERRUPT SYSTEM bit and issue SSB CLEAR command.
846 static void tms380tr_reset_interrupt(struct net_device
*dev
)
848 struct net_local
*tp
= netdev_priv(dev
);
852 * [Workaround for "Data Late"]
853 * Set all fields of the SSB to well-defined values so we can
854 * check if the adapter has written the SSB.
857 ssb
->STS
= (unsigned short) -1;
858 ssb
->Parm
[0] = (unsigned short) -1;
859 ssb
->Parm
[1] = (unsigned short) -1;
860 ssb
->Parm
[2] = (unsigned short) -1;
862 /* Free SSB by issuing SSB_CLEAR command after reading IRQ code
863 * and clear STS_SYSTEM_IRQ bit: enable adapter for further interrupts.
865 tms380tr_exec_sifcmd(dev
, CMD_SSB_CLEAR
| CMD_CLEAR_SYSTEM_IRQ
);
871 * Check if the SSB has actually been written by the adapter.
873 static unsigned char tms380tr_chk_ssb(struct net_local
*tp
, unsigned short IrqType
)
875 SSB
*ssb
= &tp
->ssb
; /* The address of the SSB. */
877 /* C 0 1 2 INTERRUPT CODE
878 * - - - - --------------
879 * 1 1 1 1 TRANSMIT STATUS
880 * 1 1 1 1 RECEIVE STATUS
881 * 1 ? ? 0 COMMAND STATUS
883 * 1 1 0 0 RING STATUS
884 * 0 0 0 0 ADAPTER CHECK
886 * 0 = SSB field not affected by interrupt
887 * 1 = SSB field is affected by interrupt
889 * C = SSB ADDRESS +0: COMMAND
890 * 0 = SSB ADDRESS +2: STATUS 0
891 * 1 = SSB ADDRESS +4: STATUS 1
892 * 2 = SSB ADDRESS +6: STATUS 2
895 /* Check if this interrupt does use the SSB. */
897 if(IrqType
!= STS_IRQ_TRANSMIT_STATUS
898 && IrqType
!= STS_IRQ_RECEIVE_STATUS
899 && IrqType
!= STS_IRQ_COMMAND_STATUS
900 && IrqType
!= STS_IRQ_RING_STATUS
)
902 return (1); /* SSB not involved. */
905 /* Note: All fields of the SSB have been set to all ones (-1) after it
906 * has last been used by the software (see DriverIsr()).
908 * Check if the affected SSB fields are still unchanged.
911 if(ssb
->STS
== (unsigned short) -1)
912 return (0); /* Command field not yet available. */
913 if(IrqType
== STS_IRQ_COMMAND_STATUS
)
914 return (1); /* Status fields not always affected. */
915 if(ssb
->Parm
[0] == (unsigned short) -1)
916 return (0); /* Status 1 field not yet available. */
917 if(IrqType
== STS_IRQ_RING_STATUS
)
918 return (1); /* Status 2 & 3 fields not affected. */
920 /* Note: At this point, the interrupt is either TRANSMIT or RECEIVE. */
921 if(ssb
->Parm
[1] == (unsigned short) -1)
922 return (0); /* Status 2 field not yet available. */
923 if(ssb
->Parm
[2] == (unsigned short) -1)
924 return (0); /* Status 3 field not yet available. */
926 return (1); /* All SSB fields have been written by the adapter. */
930 * Evaluates the command results status in the SSB status field.
932 static void tms380tr_cmd_status_irq(struct net_device
*dev
)
934 struct net_local
*tp
= netdev_priv(dev
);
935 unsigned short ssb_cmd
, ssb_parm_0
;
936 unsigned short ssb_parm_1
;
937 char *open_err
= "Open error -";
938 char *code_err
= "Open code -";
940 /* Copy the ssb values to local variables */
941 ssb_cmd
= tp
->ssb
.STS
;
942 ssb_parm_0
= tp
->ssb
.Parm
[0];
943 ssb_parm_1
= tp
->ssb
.Parm
[1];
948 if(!tp
->ReOpenInProgress
)
949 wake_up_interruptible(&tp
->wait_for_tok_int
);
951 tp
->OpenCommandIssued
= 0;
954 if((ssb_parm_0
& 0x00FF) == GOOD_COMPLETION
)
956 /* Success, the adapter is open. */
957 tp
->LobeWireFaultLogged
= 0;
958 tp
->AdapterOpenFlag
= 1;
959 tp
->AdapterVirtOpenFlag
= 1;
960 tp
->TransmitCommandActive
= 0;
961 tms380tr_exec_cmd(dev
, OC_TRANSMIT
);
962 tms380tr_exec_cmd(dev
, OC_RECEIVE
);
964 if(tp
->ReOpenInProgress
)
965 tp
->ReOpenInProgress
= 0;
969 else /* The adapter did not open. */
971 if(ssb_parm_0
& NODE_ADDR_ERROR
)
972 printk(KERN_INFO
"%s: Node address error\n",
974 if(ssb_parm_0
& LIST_SIZE_ERROR
)
975 printk(KERN_INFO
"%s: List size error\n",
977 if(ssb_parm_0
& BUF_SIZE_ERROR
)
978 printk(KERN_INFO
"%s: Buffer size error\n",
980 if(ssb_parm_0
& TX_BUF_COUNT_ERROR
)
981 printk(KERN_INFO
"%s: Tx buffer count error\n",
983 if(ssb_parm_0
& INVALID_OPEN_OPTION
)
984 printk(KERN_INFO
"%s: Invalid open option\n",
986 if(ssb_parm_0
& OPEN_ERROR
)
988 /* Show the open phase. */
989 switch(ssb_parm_0
& OPEN_PHASES_MASK
)
991 case LOBE_MEDIA_TEST
:
992 if(!tp
->LobeWireFaultLogged
)
994 tp
->LobeWireFaultLogged
= 1;
995 printk(KERN_INFO
"%s: %s Lobe wire fault (check cable !).\n", dev
->name
, open_err
);
997 tp
->ReOpenInProgress
= 1;
998 tp
->AdapterOpenFlag
= 0;
999 tp
->AdapterVirtOpenFlag
= 1;
1000 tms380tr_open_adapter(dev
);
1003 case PHYSICAL_INSERTION
:
1004 printk(KERN_INFO
"%s: %s Physical insertion.\n", dev
->name
, open_err
);
1007 case ADDRESS_VERIFICATION
:
1008 printk(KERN_INFO
"%s: %s Address verification.\n", dev
->name
, open_err
);
1011 case PARTICIPATION_IN_RING_POLL
:
1012 printk(KERN_INFO
"%s: %s Participation in ring poll.\n", dev
->name
, open_err
);
1015 case REQUEST_INITIALISATION
:
1016 printk(KERN_INFO
"%s: %s Request initialisation.\n", dev
->name
, open_err
);
1019 case FULLDUPLEX_CHECK
:
1020 printk(KERN_INFO
"%s: %s Full duplex check.\n", dev
->name
, open_err
);
1024 printk(KERN_INFO
"%s: %s Unknown open phase\n", dev
->name
, open_err
);
1028 /* Show the open errors. */
1029 switch(ssb_parm_0
& OPEN_ERROR_CODES_MASK
)
1031 case OPEN_FUNCTION_FAILURE
:
1032 printk(KERN_INFO
"%s: %s OPEN_FUNCTION_FAILURE", dev
->name
, code_err
);
1033 tp
->LastOpenStatus
=
1034 OPEN_FUNCTION_FAILURE
;
1037 case OPEN_SIGNAL_LOSS
:
1038 printk(KERN_INFO
"%s: %s OPEN_SIGNAL_LOSS\n", dev
->name
, code_err
);
1039 tp
->LastOpenStatus
=
1044 printk(KERN_INFO
"%s: %s OPEN_TIMEOUT\n", dev
->name
, code_err
);
1045 tp
->LastOpenStatus
=
1049 case OPEN_RING_FAILURE
:
1050 printk(KERN_INFO
"%s: %s OPEN_RING_FAILURE\n", dev
->name
, code_err
);
1051 tp
->LastOpenStatus
=
1055 case OPEN_RING_BEACONING
:
1056 printk(KERN_INFO
"%s: %s OPEN_RING_BEACONING\n", dev
->name
, code_err
);
1057 tp
->LastOpenStatus
=
1058 OPEN_RING_BEACONING
;
1061 case OPEN_DUPLICATE_NODEADDR
:
1062 printk(KERN_INFO
"%s: %s OPEN_DUPLICATE_NODEADDR\n", dev
->name
, code_err
);
1063 tp
->LastOpenStatus
=
1064 OPEN_DUPLICATE_NODEADDR
;
1067 case OPEN_REQUEST_INIT
:
1068 printk(KERN_INFO
"%s: %s OPEN_REQUEST_INIT\n", dev
->name
, code_err
);
1069 tp
->LastOpenStatus
=
1073 case OPEN_REMOVE_RECEIVED
:
1074 printk(KERN_INFO
"%s: %s OPEN_REMOVE_RECEIVED", dev
->name
, code_err
);
1075 tp
->LastOpenStatus
=
1076 OPEN_REMOVE_RECEIVED
;
1079 case OPEN_FULLDUPLEX_SET
:
1080 printk(KERN_INFO
"%s: %s OPEN_FULLDUPLEX_SET\n", dev
->name
, code_err
);
1081 tp
->LastOpenStatus
=
1082 OPEN_FULLDUPLEX_SET
;
1086 printk(KERN_INFO
"%s: %s Unknown open err code", dev
->name
, code_err
);
1087 tp
->LastOpenStatus
=
1088 OPEN_FUNCTION_FAILURE
;
1093 tp
->AdapterOpenFlag
= 0;
1094 tp
->AdapterVirtOpenFlag
= 0;
1101 if(ssb_cmd
!= READ_ERROR_LOG
)
1104 /* Add values from the error log table to the MAC
1105 * statistics counters and update the errorlogtable
1108 tp
->MacStat
.line_errors
+= tp
->errorlogtable
.Line_Error
;
1109 tp
->MacStat
.burst_errors
+= tp
->errorlogtable
.Burst_Error
;
1110 tp
->MacStat
.A_C_errors
+= tp
->errorlogtable
.ARI_FCI_Error
;
1111 tp
->MacStat
.lost_frames
+= tp
->errorlogtable
.Lost_Frame_Error
;
1112 tp
->MacStat
.recv_congest_count
+= tp
->errorlogtable
.Rx_Congest_Error
;
1113 tp
->MacStat
.rx_errors
+= tp
->errorlogtable
.Rx_Congest_Error
;
1114 tp
->MacStat
.frame_copied_errors
+= tp
->errorlogtable
.Frame_Copied_Error
;
1115 tp
->MacStat
.token_errors
+= tp
->errorlogtable
.Token_Error
;
1116 tp
->MacStat
.dummy1
+= tp
->errorlogtable
.DMA_Bus_Error
;
1117 tp
->MacStat
.dummy1
+= tp
->errorlogtable
.DMA_Parity_Error
;
1118 tp
->MacStat
.abort_delimiters
+= tp
->errorlogtable
.AbortDelimeters
;
1119 tp
->MacStat
.frequency_errors
+= tp
->errorlogtable
.Frequency_Error
;
1120 tp
->MacStat
.internal_errors
+= tp
->errorlogtable
.Internal_Error
;
1127 * The inverse routine to tms380tr_open().
1129 int tms380tr_close(struct net_device
*dev
)
1131 struct net_local
*tp
= netdev_priv(dev
);
1132 netif_stop_queue(dev
);
1134 del_timer(&tp
->timer
);
1136 /* Flush the Tx and disable Rx here. */
1138 tp
->HaltInProgress
= 1;
1139 tms380tr_exec_cmd(dev
, OC_CLOSE
);
1140 tp
->timer
.expires
= jiffies
+ 1*HZ
;
1141 tp
->timer
.function
= tms380tr_timer_end_wait
;
1142 tp
->timer
.data
= (unsigned long)dev
;
1143 add_timer(&tp
->timer
);
1145 tms380tr_enable_interrupts(dev
);
1148 interruptible_sleep_on(&tp
->wait_for_tok_int
);
1149 tp
->TransmitCommandActive
= 0;
1151 del_timer(&tp
->timer
);
1152 tms380tr_disable_interrupts(dev
);
1157 unsigned long flags
=claim_dma_lock();
1158 disable_dma(dev
->dma
);
1159 release_dma_lock(flags
);
1163 SIFWRITEW(0xFF00, SIFCMD
);
1165 if(dev
->dma
> 0) /* what the? */
1166 SIFWRITEB(0xff, POSREG
);
1168 tms380tr_cancel_tx_queue(tp
);
1174 * Get the current statistics. This may be called with the card open
1177 static struct net_device_stats
*tms380tr_get_stats(struct net_device
*dev
)
1179 struct net_local
*tp
= netdev_priv(dev
);
1181 return ((struct net_device_stats
*)&tp
->MacStat
);
1185 * Set or clear the multicast filter for this adapter.
1187 static void tms380tr_set_multicast_list(struct net_device
*dev
)
1189 struct net_local
*tp
= netdev_priv(dev
);
1190 unsigned int OpenOptions
;
1192 OpenOptions
= tp
->ocpl
.OPENOptions
&
1193 ~(PASS_ADAPTER_MAC_FRAMES
1194 | PASS_ATTENTION_FRAMES
1195 | PASS_BEACON_MAC_FRAMES
1196 | COPY_ALL_MAC_FRAMES
1197 | COPY_ALL_NON_MAC_FRAMES
);
1199 tp
->ocpl
.FunctAddr
= 0;
1201 if(dev
->flags
& IFF_PROMISC
)
1202 /* Enable promiscuous mode */
1203 OpenOptions
|= COPY_ALL_NON_MAC_FRAMES
|
1204 COPY_ALL_MAC_FRAMES
;
1207 if(dev
->flags
& IFF_ALLMULTI
)
1209 /* Disable promiscuous mode, use normal mode. */
1210 tp
->ocpl
.FunctAddr
= 0xFFFFFFFF;
1215 struct dev_mc_list
*mclist
= dev
->mc_list
;
1216 for (i
=0; i
< dev
->mc_count
; i
++)
1218 ((char *)(&tp
->ocpl
.FunctAddr
))[0] |=
1219 mclist
->dmi_addr
[2];
1220 ((char *)(&tp
->ocpl
.FunctAddr
))[1] |=
1221 mclist
->dmi_addr
[3];
1222 ((char *)(&tp
->ocpl
.FunctAddr
))[2] |=
1223 mclist
->dmi_addr
[4];
1224 ((char *)(&tp
->ocpl
.FunctAddr
))[3] |=
1225 mclist
->dmi_addr
[5];
1226 mclist
= mclist
->next
;
1229 tms380tr_exec_cmd(dev
, OC_SET_FUNCT_ADDR
);
1232 tp
->ocpl
.OPENOptions
= OpenOptions
;
1233 tms380tr_exec_cmd(dev
, OC_MODIFY_OPEN_PARMS
);
1238 * Wait for some time (microseconds)
1240 void tms380tr_wait(unsigned long time
)
1245 tmp
= jiffies
+ time
/(1000000/HZ
);
1247 current
->state
= TASK_INTERRUPTIBLE
;
1248 tmp
= schedule_timeout(tmp
);
1249 } while(time_after(tmp
, jiffies
));
1257 * Write a command value to the SIFCMD register
1259 static void tms380tr_exec_sifcmd(struct net_device
*dev
, unsigned int WriteValue
)
1262 unsigned short SifStsValue
;
1263 unsigned long loop_counter
;
1265 WriteValue
= ((WriteValue
^ CMD_SYSTEM_IRQ
) | CMD_INTERRUPT_ADAPTER
);
1266 cmd
= (unsigned short)WriteValue
;
1267 loop_counter
= 0,5 * 800000;
1269 SifStsValue
= SIFREADW(SIFSTS
);
1270 } while((SifStsValue
& CMD_INTERRUPT_ADAPTER
) && loop_counter
--);
1271 SIFWRITEW(cmd
, SIFCMD
);
1277 * Processes adapter hardware reset, halts adapter and downloads firmware,
1278 * clears the halt bit.
1280 static int tms380tr_reset_adapter(struct net_device
*dev
)
1282 struct net_local
*tp
= netdev_priv(dev
);
1283 unsigned short *fw_ptr
;
1284 unsigned short count
, c
, count2
;
1285 const struct firmware
*fw_entry
= NULL
;
1287 strncpy(tms_device
.bus_id
,dev
->name
, BUS_ID_SIZE
);
1289 if (request_firmware(&fw_entry
, "tms380tr.bin", &tms_device
) != 0) {
1290 printk(KERN_ALERT
"%s: firmware %s is missing, cannot start.\n",
1291 dev
->name
, "tms380tr.bin");
1295 fw_ptr
= (unsigned short *)fw_entry
->data
;
1296 count2
= fw_entry
->size
/ 2;
1298 /* Hardware adapter reset */
1299 SIFWRITEW(ACL_ARESET
, SIFACL
);
1302 c
= SIFREADW(SIFACL
);
1305 if(dev
->dma
== 0) /* For PCI adapters */
1307 c
&= ~(ACL_NSELOUT0
| ACL_NSELOUT1
); /* Clear bits */
1309 c
|= (*tp
->setnselout
)(dev
);
1312 /* In case a command is pending - forget it */
1315 c
&= ~ACL_ARESET
; /* Clear adapter reset bit */
1316 c
|= ACL_CPHALT
; /* Halt adapter CPU, allow download */
1319 c
&= ~ACL_PSDMAEN
; /* Clear pseudo dma bit */
1320 SIFWRITEW(c
, SIFACL
);
1324 /* Download firmware via DIO interface: */
1326 if (count2
< 3) continue;
1328 /* Download first address part */
1329 SIFWRITEW(*fw_ptr
, SIFADX
);
1332 /* Download second address part */
1333 SIFWRITEW(*fw_ptr
, SIFADD
);
1337 if((count
= *fw_ptr
) != 0) /* Load loop counter */
1339 fw_ptr
++; /* Download block data */
1341 if (count
> count2
) continue;
1343 for(; count
> 0; count
--)
1345 SIFWRITEW(*fw_ptr
, SIFINC
);
1350 else /* Stop, if last block downloaded */
1352 c
= SIFREADW(SIFACL
);
1353 c
&= (~ACL_CPHALT
| ACL_SINTEN
);
1355 /* Clear CPHALT and start BUD */
1356 SIFWRITEW(c
, SIFACL
);
1358 release_firmware(fw_entry
);
1361 } while(count
== 0);
1364 release_firmware(fw_entry
);
1365 printk(KERN_INFO
"%s: Adapter Download Failed\n", dev
->name
);
1370 * Starts bring up diagnostics of token ring adapter and evaluates
1371 * diagnostic results.
1373 static int tms380tr_bringup_diags(struct net_device
*dev
)
1375 int loop_cnt
, retry_cnt
;
1376 unsigned short Status
;
1378 tms380tr_wait(HALF_SECOND
);
1379 tms380tr_exec_sifcmd(dev
, EXEC_SOFT_RESET
);
1380 tms380tr_wait(HALF_SECOND
);
1382 retry_cnt
= BUD_MAX_RETRIES
; /* maximal number of retrys */
1386 if(tms380tr_debug
> 3)
1387 printk(KERN_DEBUG
"BUD-Status: ");
1388 loop_cnt
= BUD_MAX_LOOPCNT
; /* maximum: three seconds*/
1389 do { /* Inspect BUD results */
1391 tms380tr_wait(HALF_SECOND
);
1392 Status
= SIFREADW(SIFSTS
);
1395 if(tms380tr_debug
> 3)
1396 printk(KERN_DEBUG
" %04X \n", Status
);
1397 /* BUD successfully completed */
1398 if(Status
== STS_INITIALIZE
)
1400 /* Unrecoverable hardware error, BUD not completed? */
1401 } while((loop_cnt
> 0) && ((Status
& (STS_ERROR
| STS_TEST
))
1402 != (STS_ERROR
| STS_TEST
)));
1404 /* Error preventing completion of BUD */
1407 printk(KERN_INFO
"%s: Adapter Software Reset.\n",
1409 tms380tr_exec_sifcmd(dev
, EXEC_SOFT_RESET
);
1410 tms380tr_wait(HALF_SECOND
);
1412 } while(retry_cnt
> 0);
1414 Status
= SIFREADW(SIFSTS
);
1416 printk(KERN_INFO
"%s: Hardware error\n", dev
->name
);
1417 /* Hardware error occurred! */
1419 if (Status
& 0x0010)
1420 printk(KERN_INFO
"%s: BUD Error: Timeout\n", dev
->name
);
1421 else if ((Status
& 0x000f) > 6)
1422 printk(KERN_INFO
"%s: BUD Error: Illegal Failure\n", dev
->name
);
1424 printk(KERN_INFO
"%s: Bring Up Diagnostics Error (%04X) occurred\n", dev
->name
, Status
& 0x000f);
1430 * Copy initialisation data to adapter memory, beginning at address
1431 * 1:0A00; Starting DMA test and evaluating result bits.
1433 static int tms380tr_init_adapter(struct net_device
*dev
)
1435 struct net_local
*tp
= netdev_priv(dev
);
1437 const unsigned char SCB_Test
[6] = {0x00, 0x00, 0xC1, 0xE2, 0xD4, 0x8B};
1438 const unsigned char SSB_Test
[8] = {0xFF, 0xFF, 0xD1, 0xD7,
1439 0xC5, 0xD9, 0xC3, 0xD4};
1440 void *ptr
= (void *)&tp
->ipb
;
1441 unsigned short *ipb_ptr
= (unsigned short *)ptr
;
1442 unsigned char *cb_ptr
= (unsigned char *) &tp
->scb
;
1443 unsigned char *sb_ptr
= (unsigned char *) &tp
->ssb
;
1444 unsigned short Status
;
1445 int i
, loop_cnt
, retry_cnt
;
1447 /* Normalize: byte order low/high, word order high/low! (only IPB!) */
1448 tp
->ipb
.SCB_Addr
= SWAPW(((char *)&tp
->scb
- (char *)tp
) + tp
->dmabuffer
);
1449 tp
->ipb
.SSB_Addr
= SWAPW(((char *)&tp
->ssb
- (char *)tp
) + tp
->dmabuffer
);
1451 if(tms380tr_debug
> 3)
1453 printk(KERN_DEBUG
"%s: buffer (real): %lx\n", dev
->name
, (long) &tp
->scb
);
1454 printk(KERN_DEBUG
"%s: buffer (virt): %lx\n", dev
->name
, (long) ((char *)&tp
->scb
- (char *)tp
) + (long) tp
->dmabuffer
);
1455 printk(KERN_DEBUG
"%s: buffer (DMA) : %lx\n", dev
->name
, (long) tp
->dmabuffer
);
1456 printk(KERN_DEBUG
"%s: buffer (tp) : %lx\n", dev
->name
, (long) tp
);
1458 /* Maximum: three initialization retries */
1459 retry_cnt
= INIT_MAX_RETRIES
;
1464 /* Transfer initialization block */
1465 SIFWRITEW(0x0001, SIFADX
);
1467 /* To address 0001:0A00 of adapter RAM */
1468 SIFWRITEW(0x0A00, SIFADD
);
1470 /* Write 11 words to adapter RAM */
1471 for(i
= 0; i
< 11; i
++)
1472 SIFWRITEW(ipb_ptr
[i
], SIFINC
);
1474 /* Execute SCB adapter command */
1475 tms380tr_exec_sifcmd(dev
, CMD_EXECUTE
);
1477 loop_cnt
= INIT_MAX_LOOPCNT
; /* Maximum: 11 seconds */
1479 /* While remaining retries, no error and not completed */
1483 tms380tr_wait(HALF_SECOND
);
1485 /* Mask interesting status bits */
1486 Status
= SIFREADW(SIFSTS
);
1488 } while(((Status
&(STS_INITIALIZE
| STS_ERROR
| STS_TEST
)) != 0)
1489 && ((Status
& STS_ERROR
) == 0) && (loop_cnt
!= 0));
1491 if((Status
& (STS_INITIALIZE
| STS_ERROR
| STS_TEST
)) == 0)
1493 /* Initialization completed without error */
1495 do { /* Test if contents of SCB is valid */
1496 if(SCB_Test
[i
] != *(cb_ptr
+ i
))
1498 printk(KERN_INFO
"%s: DMA failed\n", dev
->name
);
1499 /* DMA data error: wrong data in SCB */
1506 do { /* Test if contents of SSB is valid */
1507 if(SSB_Test
[i
] != *(sb_ptr
+ i
))
1508 /* DMA data error: wrong data in SSB */
1513 return (1); /* Adapter successfully initialized */
1517 if((Status
& STS_ERROR
) != 0)
1519 /* Initialization error occurred */
1520 Status
= SIFREADW(SIFSTS
);
1521 Status
&= STS_ERROR_MASK
;
1522 /* ShowInitialisationErrorCode(Status); */
1523 printk(KERN_INFO
"%s: Status error: %d\n", dev
->name
, Status
);
1524 return (-1); /* Unrecoverable error */
1530 /* Reset adapter and try init again */
1531 tms380tr_exec_sifcmd(dev
, EXEC_SOFT_RESET
);
1532 tms380tr_wait(HALF_SECOND
);
1536 } while(retry_cnt
> 0);
1538 printk(KERN_INFO
"%s: Retry exceeded\n", dev
->name
);
1543 * Check for outstanding commands in command queue and tries to execute
1544 * command immediately. Corresponding command flag in command queue is cleared.
1546 static void tms380tr_chk_outstanding_cmds(struct net_device
*dev
)
1548 struct net_local
*tp
= netdev_priv(dev
);
1549 unsigned long Addr
= 0;
1551 if(tp
->CMDqueue
== 0)
1552 return; /* No command execution */
1554 /* If SCB in use: no command */
1555 if(tp
->ScbInUse
== 1)
1558 /* Check if adapter is opened, avoiding COMMAND_REJECT
1559 * interrupt by the adapter!
1561 if(tp
->AdapterOpenFlag
== 0)
1563 if(tp
->CMDqueue
& OC_OPEN
)
1565 /* Execute OPEN command */
1566 tp
->CMDqueue
^= OC_OPEN
;
1568 Addr
= htonl(((char *)&tp
->ocpl
- (char *)tp
) + tp
->dmabuffer
);
1569 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1570 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1574 /* No OPEN command queued, but adapter closed. Note:
1575 * We'll try to re-open the adapter in DriverPoll()
1577 return; /* No adapter command issued */
1581 /* Adapter is open; evaluate command queue: try to execute
1582 * outstanding commands (depending on priority!) CLOSE
1585 if(tp
->CMDqueue
& OC_CLOSE
)
1587 tp
->CMDqueue
^= OC_CLOSE
;
1588 tp
->AdapterOpenFlag
= 0;
1589 tp
->scb
.Parm
[0] = 0; /* Parm[0], Parm[1] are ignored */
1590 tp
->scb
.Parm
[1] = 0; /* but should be set to zero! */
1591 tp
->scb
.CMD
= CLOSE
;
1592 if(!tp
->HaltInProgress
)
1593 tp
->CMDqueue
|= OC_OPEN
; /* re-open adapter */
1595 tp
->CMDqueue
= 0; /* no more commands */
1599 if(tp
->CMDqueue
& OC_RECEIVE
)
1601 tp
->CMDqueue
^= OC_RECEIVE
;
1602 Addr
= htonl(((char *)tp
->RplHead
- (char *)tp
) + tp
->dmabuffer
);
1603 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1604 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1605 tp
->scb
.CMD
= RECEIVE
;
1609 if(tp
->CMDqueue
& OC_TRANSMIT_HALT
)
1611 /* NOTE: TRANSMIT.HALT must be checked
1614 tp
->CMDqueue
^= OC_TRANSMIT_HALT
;
1615 tp
->scb
.CMD
= TRANSMIT_HALT
;
1617 /* Parm[0] and Parm[1] are ignored
1618 * but should be set to zero!
1620 tp
->scb
.Parm
[0] = 0;
1621 tp
->scb
.Parm
[1] = 0;
1625 if(tp
->CMDqueue
& OC_TRANSMIT
)
1627 /* NOTE: TRANSMIT must be
1628 * checked after TRANSMIT.HALT
1630 if(tp
->TransmitCommandActive
)
1632 if(!tp
->TransmitHaltScheduled
)
1634 tp
->TransmitHaltScheduled
= 1;
1635 tms380tr_exec_cmd(dev
, OC_TRANSMIT_HALT
) ;
1637 tp
->TransmitCommandActive
= 0;
1641 tp
->CMDqueue
^= OC_TRANSMIT
;
1642 tms380tr_cancel_tx_queue(tp
);
1643 Addr
= htonl(((char *)tp
->TplBusy
- (char *)tp
) + tp
->dmabuffer
);
1644 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1645 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1646 tp
->scb
.CMD
= TRANSMIT
;
1647 tp
->TransmitCommandActive
= 1;
1651 if(tp
->CMDqueue
& OC_MODIFY_OPEN_PARMS
)
1653 tp
->CMDqueue
^= OC_MODIFY_OPEN_PARMS
;
1654 tp
->scb
.Parm
[0] = tp
->ocpl
.OPENOptions
; /* new OPEN options*/
1655 tp
->scb
.Parm
[0] |= ENABLE_FULL_DUPLEX_SELECTION
;
1656 tp
->scb
.Parm
[1] = 0; /* is ignored but should be zero */
1657 tp
->scb
.CMD
= MODIFY_OPEN_PARMS
;
1661 if(tp
->CMDqueue
& OC_SET_FUNCT_ADDR
)
1663 tp
->CMDqueue
^= OC_SET_FUNCT_ADDR
;
1664 tp
->scb
.Parm
[0] = LOWORD(tp
->ocpl
.FunctAddr
);
1665 tp
->scb
.Parm
[1] = HIWORD(tp
->ocpl
.FunctAddr
);
1666 tp
->scb
.CMD
= SET_FUNCT_ADDR
;
1670 if(tp
->CMDqueue
& OC_SET_GROUP_ADDR
)
1672 tp
->CMDqueue
^= OC_SET_GROUP_ADDR
;
1673 tp
->scb
.Parm
[0] = LOWORD(tp
->ocpl
.GroupAddr
);
1674 tp
->scb
.Parm
[1] = HIWORD(tp
->ocpl
.GroupAddr
);
1675 tp
->scb
.CMD
= SET_GROUP_ADDR
;
1679 if(tp
->CMDqueue
& OC_READ_ERROR_LOG
)
1681 tp
->CMDqueue
^= OC_READ_ERROR_LOG
;
1682 Addr
= htonl(((char *)&tp
->errorlogtable
- (char *)tp
) + tp
->dmabuffer
);
1683 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1684 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1685 tp
->scb
.CMD
= READ_ERROR_LOG
;
1689 printk(KERN_WARNING
"CheckForOutstandingCommand: unknown Command\n");
1702 tp
->ScbInUse
= 1; /* Set semaphore: SCB in use. */
1704 /* Execute SCB and generate IRQ when done. */
1705 tms380tr_exec_sifcmd(dev
, CMD_EXECUTE
| CMD_SCB_REQUEST
);
1711 * IRQ conditions: signal loss on the ring, transmit or receive of beacon
1712 * frames (disabled if bit 1 of OPEN option is set); report error MAC
1713 * frame transmit (disabled if bit 2 of OPEN option is set); open or short
1714 * circuit fault on the lobe is detected; remove MAC frame received;
1715 * error counter overflow (255); opened adapter is the only station in ring.
1716 * After some of the IRQs the adapter is closed!
1718 static void tms380tr_ring_status_irq(struct net_device
*dev
)
1720 struct net_local
*tp
= netdev_priv(dev
);
1722 tp
->CurrentRingStatus
= be16_to_cpu((unsigned short)tp
->ssb
.Parm
[0]);
1724 /* First: fill up statistics */
1725 if(tp
->ssb
.Parm
[0] & SIGNAL_LOSS
)
1727 printk(KERN_INFO
"%s: Signal Loss\n", dev
->name
);
1728 tp
->MacStat
.line_errors
++;
1731 /* Adapter is closed, but initialized */
1732 if(tp
->ssb
.Parm
[0] & LOBE_WIRE_FAULT
)
1734 printk(KERN_INFO
"%s: Lobe Wire Fault, Reopen Adapter\n",
1736 tp
->MacStat
.line_errors
++;
1739 if(tp
->ssb
.Parm
[0] & RING_RECOVERY
)
1740 printk(KERN_INFO
"%s: Ring Recovery\n", dev
->name
);
1742 /* Counter overflow: read error log */
1743 if(tp
->ssb
.Parm
[0] & COUNTER_OVERFLOW
)
1745 printk(KERN_INFO
"%s: Counter Overflow\n", dev
->name
);
1746 tms380tr_exec_cmd(dev
, OC_READ_ERROR_LOG
);
1749 /* Adapter is closed, but initialized */
1750 if(tp
->ssb
.Parm
[0] & REMOVE_RECEIVED
)
1751 printk(KERN_INFO
"%s: Remove Received, Reopen Adapter\n",
1754 /* Adapter is closed, but initialized */
1755 if(tp
->ssb
.Parm
[0] & AUTO_REMOVAL_ERROR
)
1756 printk(KERN_INFO
"%s: Auto Removal Error, Reopen Adapter\n",
1759 if(tp
->ssb
.Parm
[0] & HARD_ERROR
)
1760 printk(KERN_INFO
"%s: Hard Error\n", dev
->name
);
1762 if(tp
->ssb
.Parm
[0] & SOFT_ERROR
)
1763 printk(KERN_INFO
"%s: Soft Error\n", dev
->name
);
1765 if(tp
->ssb
.Parm
[0] & TRANSMIT_BEACON
)
1766 printk(KERN_INFO
"%s: Transmit Beacon\n", dev
->name
);
1768 if(tp
->ssb
.Parm
[0] & SINGLE_STATION
)
1769 printk(KERN_INFO
"%s: Single Station\n", dev
->name
);
1771 /* Check if adapter has been closed */
1772 if(tp
->ssb
.Parm
[0] & ADAPTER_CLOSED
)
1774 printk(KERN_INFO
"%s: Adapter closed (Reopening),"
1775 "CurrentRingStat %x\n",
1776 dev
->name
, tp
->CurrentRingStatus
);
1777 tp
->AdapterOpenFlag
= 0;
1778 tms380tr_open_adapter(dev
);
1785 * Issued if adapter has encountered an unrecoverable hardware
1786 * or software error.
1788 static void tms380tr_chk_irq(struct net_device
*dev
)
1791 unsigned short AdapterCheckBlock
[4];
1792 struct net_local
*tp
= netdev_priv(dev
);
1794 tp
->AdapterOpenFlag
= 0; /* Adapter closed now */
1796 /* Page number of adapter memory */
1797 SIFWRITEW(0x0001, SIFADX
);
1798 /* Address offset */
1799 SIFWRITEW(CHECKADDR
, SIFADR
);
1801 /* Reading 8 byte adapter check block. */
1802 for(i
= 0; i
< 4; i
++)
1803 AdapterCheckBlock
[i
] = SIFREADW(SIFINC
);
1805 if(tms380tr_debug
> 3)
1807 printk(KERN_DEBUG
"%s: AdapterCheckBlock: ", dev
->name
);
1808 for (i
= 0; i
< 4; i
++)
1809 printk("%04X", AdapterCheckBlock
[i
]);
1813 switch(AdapterCheckBlock
[0])
1816 printk(KERN_INFO
"%s: DIO parity error\n", dev
->name
);
1819 case DMA_READ_ABORT
:
1820 printk(KERN_INFO
"%s DMA read operation aborted:\n",
1822 switch (AdapterCheckBlock
[1])
1825 printk(KERN_INFO
"Timeout\n");
1826 printk(KERN_INFO
"Address: %04X %04X\n",
1827 AdapterCheckBlock
[2],
1828 AdapterCheckBlock
[3]);
1832 printk(KERN_INFO
"Parity error\n");
1833 printk(KERN_INFO
"Address: %04X %04X\n",
1834 AdapterCheckBlock
[2],
1835 AdapterCheckBlock
[3]);
1839 printk(KERN_INFO
"Bus error\n");
1840 printk(KERN_INFO
"Address: %04X %04X\n",
1841 AdapterCheckBlock
[2],
1842 AdapterCheckBlock
[3]);
1846 printk(KERN_INFO
"Unknown error.\n");
1851 case DMA_WRITE_ABORT
:
1852 printk(KERN_INFO
"%s: DMA write operation aborted: \n",
1854 switch (AdapterCheckBlock
[1])
1857 printk(KERN_INFO
"Timeout\n");
1858 printk(KERN_INFO
"Address: %04X %04X\n",
1859 AdapterCheckBlock
[2],
1860 AdapterCheckBlock
[3]);
1864 printk(KERN_INFO
"Parity error\n");
1865 printk(KERN_INFO
"Address: %04X %04X\n",
1866 AdapterCheckBlock
[2],
1867 AdapterCheckBlock
[3]);
1871 printk(KERN_INFO
"Bus error\n");
1872 printk(KERN_INFO
"Address: %04X %04X\n",
1873 AdapterCheckBlock
[2],
1874 AdapterCheckBlock
[3]);
1878 printk(KERN_INFO
"Unknown error.\n");
1883 case ILLEGAL_OP_CODE
:
1884 printk(KERN_INFO
"%s: Illegal operation code in firmware\n",
1886 /* Parm[0-3]: adapter internal register R13-R15 */
1890 printk(KERN_INFO
"%s: Adapter internal bus parity error\n",
1892 /* Parm[0-3]: adapter internal register R13-R15 */
1895 case RAM_DATA_ERROR
:
1896 printk(KERN_INFO
"%s: RAM data error\n", dev
->name
);
1897 /* Parm[0-1]: MSW/LSW address of RAM location. */
1900 case RAM_PARITY_ERROR
:
1901 printk(KERN_INFO
"%s: RAM parity error\n", dev
->name
);
1902 /* Parm[0-1]: MSW/LSW address of RAM location. */
1906 printk(KERN_INFO
"%s: Internal DMA underrun detected\n",
1911 printk(KERN_INFO
"%s: Unrecognized interrupt detected\n",
1913 /* Parm[0-3]: adapter internal register R13-R15 */
1916 case INVALID_ERROR_IRQ
:
1917 printk(KERN_INFO
"%s: Unrecognized error interrupt detected\n",
1919 /* Parm[0-3]: adapter internal register R13-R15 */
1923 printk(KERN_INFO
"%s: Unrecognized XOP request detected\n",
1925 /* Parm[0-3]: adapter internal register R13-R15 */
1929 printk(KERN_INFO
"%s: Unknown status", dev
->name
);
1933 if(tms380tr_chipset_init(dev
) == 1)
1935 /* Restart of firmware successful */
1936 tp
->AdapterOpenFlag
= 1;
1943 * Internal adapter pointer to RAM data are copied from adapter into
1946 static int tms380tr_read_ptr(struct net_device
*dev
)
1948 struct net_local
*tp
= netdev_priv(dev
);
1949 unsigned short adapterram
;
1951 tms380tr_read_ram(dev
, (unsigned char *)&tp
->intptrs
.BurnedInAddrPtr
,
1952 ADAPTER_INT_PTRS
, 16);
1953 tms380tr_read_ram(dev
, (unsigned char *)&adapterram
,
1954 cpu_to_be16((unsigned short)tp
->intptrs
.AdapterRAMPtr
), 2);
1955 return be16_to_cpu(adapterram
);
1959 * Reads a number of bytes from adapter to system memory.
1961 static void tms380tr_read_ram(struct net_device
*dev
, unsigned char *Data
,
1962 unsigned short Address
, int Length
)
1965 unsigned short old_sifadx
, old_sifadr
, InWord
;
1967 /* Save the current values */
1968 old_sifadx
= SIFREADW(SIFADX
);
1969 old_sifadr
= SIFREADW(SIFADR
);
1971 /* Page number of adapter memory */
1972 SIFWRITEW(0x0001, SIFADX
);
1973 /* Address offset in adapter RAM */
1974 SIFWRITEW(Address
, SIFADR
);
1976 /* Copy len byte from adapter memory to system data area. */
1980 InWord
= SIFREADW(SIFINC
);
1982 *(Data
+ i
) = HIBYTE(InWord
); /* Write first byte */
1983 if(++i
== Length
) /* All is done break */
1986 *(Data
+ i
) = LOBYTE(InWord
); /* Write second byte */
1987 if (++i
== Length
) /* All is done break */
1991 /* Restore original values */
1992 SIFWRITEW(old_sifadx
, SIFADX
);
1993 SIFWRITEW(old_sifadr
, SIFADR
);
1999 * Cancel all queued packets in the transmission queue.
2001 static void tms380tr_cancel_tx_queue(struct net_local
* tp
)
2006 * NOTE: There must not be an active TRANSMIT command pending, when
2007 * this function is called.
2009 if(tp
->TransmitCommandActive
)
2017 /* "Remove" TPL from busy list. */
2018 tp
->TplBusy
= tpl
->NextTPLPtr
;
2019 tms380tr_write_tpl_status(tpl
, 0); /* Clear VALID bit */
2020 tpl
->BusyFlag
= 0; /* "free" TPL */
2022 printk(KERN_INFO
"Cancel tx (%08lXh).\n", (unsigned long)tpl
);
2024 pci_unmap_single(tp
->pdev
, tpl
->DMABuff
, tpl
->Skb
->len
, PCI_DMA_TODEVICE
);
2025 dev_kfree_skb_any(tpl
->Skb
);
2032 * This function is called whenever a transmit interrupt is generated by the
2033 * adapter. For a command complete interrupt, it is checked if we have to
2034 * issue a new transmit command or not.
2036 static void tms380tr_tx_status_irq(struct net_device
*dev
)
2038 struct net_local
*tp
= netdev_priv(dev
);
2039 unsigned char HighByte
, HighAc
, LowAc
;
2042 /* NOTE: At this point the SSB from TRANSMIT STATUS is no longer
2043 * available, because the CLEAR SSB command has already been issued.
2045 * Process all complete transmissions.
2051 if(!tpl
->BusyFlag
|| (tpl
->Status
2052 & (TX_VALID
| TX_FRAME_COMPLETE
))
2053 != TX_FRAME_COMPLETE
)
2058 /* "Remove" TPL from busy list. */
2059 tp
->TplBusy
= tpl
->NextTPLPtr
;
2061 /* Check the transmit status field only for directed frames*/
2062 if(DIRECTED_FRAME(tpl
) && (tpl
->Status
& TX_ERROR
) == 0)
2064 HighByte
= GET_TRANSMIT_STATUS_HIGH_BYTE(tpl
->Status
);
2065 HighAc
= GET_FRAME_STATUS_HIGH_AC(HighByte
);
2066 LowAc
= GET_FRAME_STATUS_LOW_AC(HighByte
);
2068 if((HighAc
!= LowAc
) || (HighAc
== AC_NOT_RECOGNIZED
))
2070 printk(KERN_DEBUG
"%s: (DA=%08lX not recognized)\n",
2072 *(unsigned long *)&tpl
->MData
[2+2]);
2076 if(tms380tr_debug
> 3)
2077 printk(KERN_DEBUG
"%s: Directed frame tx'd\n",
2083 if(!DIRECTED_FRAME(tpl
))
2085 if(tms380tr_debug
> 3)
2086 printk(KERN_DEBUG
"%s: Broadcast frame tx'd\n",
2091 tp
->MacStat
.tx_packets
++;
2093 pci_unmap_single(tp
->pdev
, tpl
->DMABuff
, tpl
->Skb
->len
, PCI_DMA_TODEVICE
);
2094 dev_kfree_skb_irq(tpl
->Skb
);
2095 tpl
->BusyFlag
= 0; /* "free" TPL */
2098 if(!tp
->TplFree
->NextTPLPtr
->BusyFlag
)
2099 netif_wake_queue(dev
);
2104 * Called if a frame receive interrupt is generated by the adapter.
2105 * Check if the frame is valid and indicate it to system.
2107 static void tms380tr_rcv_status_irq(struct net_device
*dev
)
2109 struct net_local
*tp
= netdev_priv(dev
);
2110 unsigned char *ReceiveDataPtr
;
2111 struct sk_buff
*skb
;
2112 unsigned int Length
, Length2
;
2117 /* NOTE: At this point the SSB from RECEIVE STATUS is no longer
2118 * available, because the CLEAR SSB command has already been issued.
2120 * Process all complete receives.
2126 if(rpl
->Status
& RX_VALID
)
2127 break; /* RPL still in use by adapter */
2129 /* Forward RPLHead pointer to next list. */
2130 SaveHead
= tp
->RplHead
;
2131 tp
->RplHead
= rpl
->NextRPLPtr
;
2133 /* Get the frame size (Byte swap for Intel).
2134 * Do this early (see workaround comment below)
2136 Length
= be16_to_cpu((unsigned short)rpl
->FrameSize
);
2138 /* Check if the Frame_Start, Frame_End and
2139 * Frame_Complete bits are set.
2141 if((rpl
->Status
& VALID_SINGLE_BUFFER_FRAME
)
2142 == VALID_SINGLE_BUFFER_FRAME
)
2144 ReceiveDataPtr
= rpl
->MData
;
2146 /* Workaround for delayed write of FrameSize on ISA
2147 * (FrameSize is false but valid-bit is reset)
2148 * Frame size is set to zero when the RPL is freed.
2149 * Length2 is there because there have also been
2150 * cases where the FrameSize was partially written
2152 Length2
= be16_to_cpu((unsigned short)rpl
->FrameSize
);
2154 if(Length
== 0 || Length
!= Length2
)
2156 tp
->RplHead
= SaveHead
;
2157 break; /* Return to tms380tr_interrupt */
2159 tms380tr_update_rcv_stats(tp
,ReceiveDataPtr
,Length
);
2161 if(tms380tr_debug
> 3)
2162 printk(KERN_DEBUG
"%s: Packet Length %04X (%d)\n",
2163 dev
->name
, Length
, Length
);
2165 /* Indicate the received frame to system the
2166 * adapter does the Source-Routing padding for
2167 * us. See: OpenOptions in tms380tr_init_opb()
2170 if(rpl
->SkbStat
== SKB_UNAVAILABLE
)
2172 /* Try again to allocate skb */
2173 skb
= dev_alloc_skb(tp
->MaxPacketSize
);
2176 /* Update Stats ?? */
2181 skb_put(skb
, tp
->MaxPacketSize
);
2182 rpl
->SkbStat
= SKB_DATA_COPY
;
2183 ReceiveDataPtr
= rpl
->MData
;
2187 if(skb
&& (rpl
->SkbStat
== SKB_DATA_COPY
2188 || rpl
->SkbStat
== SKB_DMA_DIRECT
))
2190 if(rpl
->SkbStat
== SKB_DATA_COPY
)
2191 memcpy(skb
->data
, ReceiveDataPtr
, Length
);
2193 /* Deliver frame to system */
2195 skb_trim(skb
,Length
);
2196 skb
->protocol
= tr_type_trans(skb
,dev
);
2198 dev
->last_rx
= jiffies
;
2201 else /* Invalid frame */
2203 if(rpl
->Skb
!= NULL
)
2204 dev_kfree_skb_irq(rpl
->Skb
);
2207 if(rpl
->Status
& RX_START_FRAME
)
2208 /* Frame start bit is set -> overflow. */
2209 tp
->MacStat
.rx_errors
++;
2212 pci_unmap_single(tp
->pdev
, rpl
->DMABuff
, tp
->MaxPacketSize
, PCI_DMA_TODEVICE
);
2215 /* Allocate new skb for rpl */
2216 rpl
->Skb
= dev_alloc_skb(tp
->MaxPacketSize
);
2217 /* skb == NULL ? then use local buffer */
2218 if(rpl
->Skb
== NULL
)
2220 rpl
->SkbStat
= SKB_UNAVAILABLE
;
2221 rpl
->FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[rpl
->RPLIndex
] - (char *)tp
) + tp
->dmabuffer
);
2222 rpl
->MData
= tp
->LocalRxBuffers
[rpl
->RPLIndex
];
2224 else /* skb != NULL */
2226 rpl
->Skb
->dev
= dev
;
2227 skb_put(rpl
->Skb
, tp
->MaxPacketSize
);
2229 /* Data unreachable for DMA ? then use local buffer */
2230 dmabuf
= pci_map_single(tp
->pdev
, rpl
->Skb
->data
, tp
->MaxPacketSize
, PCI_DMA_FROMDEVICE
);
2231 if(tp
->dmalimit
&& (dmabuf
+ tp
->MaxPacketSize
> tp
->dmalimit
))
2233 rpl
->SkbStat
= SKB_DATA_COPY
;
2234 rpl
->FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[rpl
->RPLIndex
] - (char *)tp
) + tp
->dmabuffer
);
2235 rpl
->MData
= tp
->LocalRxBuffers
[rpl
->RPLIndex
];
2239 /* DMA directly in skb->data */
2240 rpl
->SkbStat
= SKB_DMA_DIRECT
;
2241 rpl
->FragList
[0].DataAddr
= htonl(dmabuf
);
2242 rpl
->MData
= rpl
->Skb
->data
;
2243 rpl
->DMABuff
= dmabuf
;
2247 rpl
->FragList
[0].DataCount
= cpu_to_be16((unsigned short)tp
->MaxPacketSize
);
2250 /* Pass the last RPL back to the adapter */
2251 tp
->RplTail
->FrameSize
= 0;
2253 /* Reset the CSTAT field in the list. */
2254 tms380tr_write_rpl_status(tp
->RplTail
, RX_VALID
| RX_FRAME_IRQ
);
2256 /* Current RPL becomes last one in list. */
2257 tp
->RplTail
= tp
->RplTail
->NextRPLPtr
;
2259 /* Inform adapter about RPL valid. */
2260 tms380tr_exec_sifcmd(dev
, CMD_RX_VALID
);
2267 * This function should be used whenever the status of any RPL must be
2268 * modified by the driver, because the compiler may otherwise change the
2269 * order of instructions such that writing the RPL status may be executed
2270 * at an undesireable time. When this function is used, the status is
2271 * always written when the function is called.
2273 static void tms380tr_write_rpl_status(RPL
*rpl
, unsigned int Status
)
2275 rpl
->Status
= Status
;
2281 * The function updates the statistic counters in mac->MacStat.
2282 * It differtiates between directed and broadcast/multicast ( ==functional)
2285 static void tms380tr_update_rcv_stats(struct net_local
*tp
, unsigned char DataPtr
[],
2286 unsigned int Length
)
2288 tp
->MacStat
.rx_packets
++;
2289 tp
->MacStat
.rx_bytes
+= Length
;
2291 /* Test functional bit */
2292 if(DataPtr
[2] & GROUP_BIT
)
2293 tp
->MacStat
.multicast
++;
2298 static int tms380tr_set_mac_address(struct net_device
*dev
, void *addr
)
2300 struct net_local
*tp
= netdev_priv(dev
);
2301 struct sockaddr
*saddr
= addr
;
2303 if (tp
->AdapterOpenFlag
|| tp
->AdapterVirtOpenFlag
) {
2304 printk(KERN_WARNING
"%s: Cannot set MAC/LAA address while card is open\n", dev
->name
);
2307 memcpy(dev
->dev_addr
, saddr
->sa_data
, dev
->addr_len
);
2311 #if TMS380TR_DEBUG > 0
2313 * Dump Packet (data)
2315 static void tms380tr_dump(unsigned char *Data
, int length
)
2319 for (i
= 0, j
= 0; i
< length
/ 8; i
++, j
+= 8)
2321 printk(KERN_DEBUG
"%02x %02x %02x %02x %02x %02x %02x %02x\n",
2322 Data
[j
+0],Data
[j
+1],Data
[j
+2],Data
[j
+3],
2323 Data
[j
+4],Data
[j
+5],Data
[j
+6],Data
[j
+7]);
2330 void tmsdev_term(struct net_device
*dev
)
2332 struct net_local
*tp
;
2334 tp
= netdev_priv(dev
);
2335 pci_unmap_single(tp
->pdev
, tp
->dmabuffer
, sizeof(struct net_local
),
2336 PCI_DMA_BIDIRECTIONAL
);
2339 int tmsdev_init(struct net_device
*dev
, unsigned long dmalimit
,
2340 struct pci_dev
*pdev
)
2342 struct net_local
*tms_local
;
2344 memset(dev
->priv
, 0, sizeof(struct net_local
));
2345 tms_local
= netdev_priv(dev
);
2346 init_waitqueue_head(&tms_local
->wait_for_tok_int
);
2347 tms_local
->dmalimit
= dmalimit
;
2348 tms_local
->pdev
= pdev
;
2349 tms_local
->dmabuffer
= pci_map_single(pdev
, (void *)tms_local
,
2350 sizeof(struct net_local
), PCI_DMA_BIDIRECTIONAL
);
2351 if (tms_local
->dmabuffer
+ sizeof(struct net_local
) > dmalimit
)
2353 printk(KERN_INFO
"%s: Memory not accessible for DMA\n",
2359 /* These can be overridden by the card driver if needed */
2360 dev
->open
= tms380tr_open
;
2361 dev
->stop
= tms380tr_close
;
2362 dev
->do_ioctl
= NULL
;
2363 dev
->hard_start_xmit
= tms380tr_send_packet
;
2364 dev
->tx_timeout
= tms380tr_timeout
;
2365 dev
->watchdog_timeo
= HZ
;
2366 dev
->get_stats
= tms380tr_get_stats
;
2367 dev
->set_multicast_list
= &tms380tr_set_multicast_list
;
2368 dev
->set_mac_address
= tms380tr_set_mac_address
;
2375 EXPORT_SYMBOL(tms380tr_open
);
2376 EXPORT_SYMBOL(tms380tr_close
);
2377 EXPORT_SYMBOL(tms380tr_interrupt
);
2378 EXPORT_SYMBOL(tmsdev_init
);
2379 EXPORT_SYMBOL(tmsdev_term
);
2380 EXPORT_SYMBOL(tms380tr_wait
);
2382 struct module
*TMS380_module
= NULL
;
2384 int init_module(void)
2386 printk(KERN_DEBUG
"%s", version
);
2388 TMS380_module
= &__this_module
;
2392 void cleanup_module(void)
2394 TMS380_module
= NULL
;
2398 MODULE_LICENSE("GPL");
2403 * compile-command: "gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer -I/usr/src/linux/drivers/net/tokenring/ -c tms380tr.c"
2404 * alt-compile-command: "gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer -I/usr/src/linux/drivers/net/tokenring/ -c tms380tr.c"