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.vanheusden.com/sna/
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
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
65 * 22-Jul-05 JF Converted to dma-mapping.
68 * 1. Multi/Broadcast packet handling (this may have fixed itself)
69 * 2. Write a sktrisa module that includes the old ISA support (done)
70 * 3. Allow modules to load their own microcode
71 * 4. Speed up the BUD process -- freezing the kernel for 3+sec is
73 * 5. Still a few remaining stalls when the cable is unplugged.
77 static const char version
[] = "tms380tr.c: v1.10 30/12/2002 by Christoph Goos, Adam Fritzler\n";
80 #include <linux/module.h>
81 #include <linux/kernel.h>
82 #include <linux/types.h>
83 #include <linux/fcntl.h>
84 #include <linux/interrupt.h>
85 #include <linux/ptrace.h>
86 #include <linux/ioport.h>
88 #include <linux/string.h>
89 #include <linux/time.h>
90 #include <linux/errno.h>
91 #include <linux/init.h>
92 #include <linux/dma-mapping.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 /* Index to functions, as function prototypes.
118 * Alphabetical by function name.
123 static int tms380tr_bringup_diags(struct net_device
*dev
);
125 static void tms380tr_cancel_tx_queue(struct net_local
* tp
);
126 static int tms380tr_chipset_init(struct net_device
*dev
);
127 static void tms380tr_chk_irq(struct net_device
*dev
);
128 static void tms380tr_chk_outstanding_cmds(struct net_device
*dev
);
129 static void tms380tr_chk_src_addr(unsigned char *frame
, unsigned char *hw_addr
);
130 static unsigned char tms380tr_chk_ssb(struct net_local
*tp
, unsigned short IrqType
);
131 int tms380tr_close(struct net_device
*dev
);
132 static void tms380tr_cmd_status_irq(struct net_device
*dev
);
134 static void tms380tr_disable_interrupts(struct net_device
*dev
);
135 #if TMS380TR_DEBUG > 0
136 static void tms380tr_dump(unsigned char *Data
, int length
);
139 static void tms380tr_enable_interrupts(struct net_device
*dev
);
140 static void tms380tr_exec_cmd(struct net_device
*dev
, unsigned short Command
);
141 static void tms380tr_exec_sifcmd(struct net_device
*dev
, unsigned int WriteValue
);
144 static struct net_device_stats
*tms380tr_get_stats(struct net_device
*dev
);
146 static netdev_tx_t
tms380tr_hardware_send_packet(struct sk_buff
*skb
,
147 struct net_device
*dev
);
149 static int tms380tr_init_adapter(struct net_device
*dev
);
150 static void tms380tr_init_ipb(struct net_local
*tp
);
151 static void tms380tr_init_net_local(struct net_device
*dev
);
152 static void tms380tr_init_opb(struct net_device
*dev
);
155 int tms380tr_open(struct net_device
*dev
);
156 static void tms380tr_open_adapter(struct net_device
*dev
);
159 static void tms380tr_rcv_status_irq(struct net_device
*dev
);
160 static int tms380tr_read_ptr(struct net_device
*dev
);
161 static void tms380tr_read_ram(struct net_device
*dev
, unsigned char *Data
,
162 unsigned short Address
, int Length
);
163 static int tms380tr_reset_adapter(struct net_device
*dev
);
164 static void tms380tr_reset_interrupt(struct net_device
*dev
);
165 static void tms380tr_ring_status_irq(struct net_device
*dev
);
167 static netdev_tx_t
tms380tr_send_packet(struct sk_buff
*skb
,
168 struct net_device
*dev
);
169 static void tms380tr_set_multicast_list(struct net_device
*dev
);
170 static int tms380tr_set_mac_address(struct net_device
*dev
, void *addr
);
172 static void tms380tr_timer_chk(unsigned long data
);
173 static void tms380tr_timer_end_wait(unsigned long data
);
174 static void tms380tr_tx_status_irq(struct net_device
*dev
);
176 static void tms380tr_update_rcv_stats(struct net_local
*tp
,
177 unsigned char DataPtr
[], unsigned int Length
);
179 void tms380tr_wait(unsigned long time
);
180 static void tms380tr_write_rpl_status(RPL
*rpl
, unsigned int Status
);
181 static void tms380tr_write_tpl_status(TPL
*tpl
, unsigned int Status
);
183 #define SIFREADB(reg) \
184 (((struct net_local *)netdev_priv(dev))->sifreadb(dev, reg))
185 #define SIFWRITEB(val, reg) \
186 (((struct net_local *)netdev_priv(dev))->sifwriteb(dev, val, reg))
187 #define SIFREADW(reg) \
188 (((struct net_local *)netdev_priv(dev))->sifreadw(dev, reg))
189 #define SIFWRITEW(val, reg) \
190 (((struct net_local *)netdev_priv(dev))->sifwritew(dev, val, reg))
194 #if 0 /* TMS380TR_DEBUG > 0 */
195 static int madgemc_sifprobe(struct net_device
*dev
)
197 unsigned char old
, chk1
, chk2
;
199 old
= SIFREADB(SIFADR
); /* Get the old SIFADR value */
201 chk1
= 0; /* Begin with check value 0 */
203 madgemc_setregpage(dev
, 0);
204 /* Write new SIFADR value */
205 SIFWRITEB(chk1
, SIFADR
);
206 chk2
= SIFREADB(SIFADR
);
210 madgemc_setregpage(dev
, 1);
211 /* Read, invert and write */
212 chk2
= SIFREADB(SIFADD
);
216 madgemc_setregpage(dev
, 0);
218 SIFWRITEB(chk2
, SIFADR
);
220 /* Read, invert and compare */
221 madgemc_setregpage(dev
, 1);
222 chk2
= SIFREADB(SIFADD
);
223 madgemc_setregpage(dev
, 0);
227 return -1; /* No adapter */
229 } while(chk1
!= 0); /* Repeat 128 times (all byte values) */
231 madgemc_setregpage(dev
, 0); /* sanity */
232 /* Restore the SIFADR value */
233 SIFWRITEB(old
, SIFADR
);
240 * Open/initialize the board. This is called sometime after
241 * booting when the 'ifconfig' program is run.
243 * This routine should set everything up anew at each open, even
244 * registers that "should" only need to be set once at boot, so that
245 * there is non-reboot way to recover if something goes wrong.
247 int tms380tr_open(struct net_device
*dev
)
249 struct net_local
*tp
= netdev_priv(dev
);
252 /* init the spinlock */
253 spin_lock_init(&tp
->lock
);
254 init_timer(&tp
->timer
);
256 /* Reset the hardware here. Don't forget to set the station address. */
261 unsigned long flags
=claim_dma_lock();
262 disable_dma(dev
->dma
);
263 set_dma_mode(dev
->dma
, DMA_MODE_CASCADE
);
264 enable_dma(dev
->dma
);
265 release_dma_lock(flags
);
269 err
= tms380tr_chipset_init(dev
);
272 printk(KERN_INFO
"%s: Chipset initialization error\n",
277 tp
->timer
.expires
= jiffies
+ 30*HZ
;
278 tp
->timer
.function
= tms380tr_timer_end_wait
;
279 tp
->timer
.data
= (unsigned long)dev
;
280 add_timer(&tp
->timer
);
282 printk(KERN_DEBUG
"%s: Adapter RAM size: %dK\n",
283 dev
->name
, tms380tr_read_ptr(dev
));
285 tms380tr_enable_interrupts(dev
);
286 tms380tr_open_adapter(dev
);
288 netif_start_queue(dev
);
290 /* Wait for interrupt from hardware. If interrupt does not come,
291 * there will be a timeout from the timer.
294 interruptible_sleep_on(&tp
->wait_for_tok_int
);
295 del_timer(&tp
->timer
);
297 /* If AdapterVirtOpenFlag is 1, the adapter is now open for use */
298 if(tp
->AdapterVirtOpenFlag
== 0)
300 tms380tr_disable_interrupts(dev
);
304 tp
->StartTime
= jiffies
;
306 /* Start function control timer */
307 tp
->timer
.expires
= jiffies
+ 2*HZ
;
308 tp
->timer
.function
= tms380tr_timer_chk
;
309 tp
->timer
.data
= (unsigned long)dev
;
310 add_timer(&tp
->timer
);
316 * Timeout function while waiting for event
318 static void tms380tr_timer_end_wait(unsigned long data
)
320 struct net_device
*dev
= (struct net_device
*)data
;
321 struct net_local
*tp
= netdev_priv(dev
);
326 wake_up_interruptible(&tp
->wait_for_tok_int
);
331 * Initialize the chipset
333 static int tms380tr_chipset_init(struct net_device
*dev
)
335 struct net_local
*tp
= netdev_priv(dev
);
338 tms380tr_init_ipb(tp
);
339 tms380tr_init_opb(dev
);
340 tms380tr_init_net_local(dev
);
342 if(tms380tr_debug
> 3)
343 printk(KERN_DEBUG
"%s: Resetting adapter...\n", dev
->name
);
344 err
= tms380tr_reset_adapter(dev
);
348 if(tms380tr_debug
> 3)
349 printk(KERN_DEBUG
"%s: Bringup diags...\n", dev
->name
);
350 err
= tms380tr_bringup_diags(dev
);
354 if(tms380tr_debug
> 3)
355 printk(KERN_DEBUG
"%s: Init adapter...\n", dev
->name
);
356 err
= tms380tr_init_adapter(dev
);
360 if(tms380tr_debug
> 3)
361 printk(KERN_DEBUG
"%s: Done!\n", dev
->name
);
366 * Initializes the net_local structure.
368 static void tms380tr_init_net_local(struct net_device
*dev
)
370 struct net_local
*tp
= netdev_priv(dev
);
385 tp
->AdapterOpenFlag
= 0;
386 tp
->AdapterVirtOpenFlag
= 0;
388 tp
->OpenCommandIssued
= 0;
389 tp
->ReOpenInProgress
= 0;
390 tp
->HaltInProgress
= 0;
391 tp
->TransmitHaltScheduled
= 0;
392 tp
->LobeWireFaultLogged
= 0;
393 tp
->LastOpenStatus
= 0;
394 tp
->MaxPacketSize
= DEFAULT_PACKET_SIZE
;
396 /* Create circular chain of transmit lists */
397 for (i
= 0; i
< TPL_NUM
; i
++)
399 tp
->Tpl
[i
].NextTPLAddr
= htonl(((char *)(&tp
->Tpl
[(i
+1) % TPL_NUM
]) - (char *)tp
) + tp
->dmabuffer
); /* DMA buffer may be MMU driven */
400 tp
->Tpl
[i
].Status
= 0;
401 tp
->Tpl
[i
].FrameSize
= 0;
402 tp
->Tpl
[i
].FragList
[0].DataCount
= 0;
403 tp
->Tpl
[i
].FragList
[0].DataAddr
= 0;
404 tp
->Tpl
[i
].NextTPLPtr
= &tp
->Tpl
[(i
+1) % TPL_NUM
];
405 tp
->Tpl
[i
].MData
= NULL
;
406 tp
->Tpl
[i
].TPLIndex
= i
;
407 tp
->Tpl
[i
].DMABuff
= 0;
408 tp
->Tpl
[i
].BusyFlag
= 0;
411 tp
->TplFree
= tp
->TplBusy
= &tp
->Tpl
[0];
413 /* Create circular chain of receive lists */
414 for (i
= 0; i
< RPL_NUM
; i
++)
416 tp
->Rpl
[i
].NextRPLAddr
= htonl(((char *)(&tp
->Rpl
[(i
+1) % RPL_NUM
]) - (char *)tp
) + tp
->dmabuffer
); /* DMA buffer may be MMU driven */
417 tp
->Rpl
[i
].Status
= (RX_VALID
| RX_START_FRAME
| RX_END_FRAME
| RX_FRAME_IRQ
);
418 tp
->Rpl
[i
].FrameSize
= 0;
419 tp
->Rpl
[i
].FragList
[0].DataCount
= cpu_to_be16((unsigned short)tp
->MaxPacketSize
);
421 /* Alloc skb and point adapter to data area */
422 tp
->Rpl
[i
].Skb
= dev_alloc_skb(tp
->MaxPacketSize
);
423 tp
->Rpl
[i
].DMABuff
= 0;
425 /* skb == NULL ? then use local buffer */
426 if(tp
->Rpl
[i
].Skb
== NULL
)
428 tp
->Rpl
[i
].SkbStat
= SKB_UNAVAILABLE
;
429 tp
->Rpl
[i
].FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[i
] - (char *)tp
) + tp
->dmabuffer
);
430 tp
->Rpl
[i
].MData
= tp
->LocalRxBuffers
[i
];
432 else /* SKB != NULL */
434 tp
->Rpl
[i
].Skb
->dev
= dev
;
435 skb_put(tp
->Rpl
[i
].Skb
, tp
->MaxPacketSize
);
437 /* data unreachable for DMA ? then use local buffer */
438 dmabuf
= dma_map_single(tp
->pdev
, tp
->Rpl
[i
].Skb
->data
, tp
->MaxPacketSize
, DMA_FROM_DEVICE
);
439 if(tp
->dmalimit
&& (dmabuf
+ tp
->MaxPacketSize
> tp
->dmalimit
))
441 tp
->Rpl
[i
].SkbStat
= SKB_DATA_COPY
;
442 tp
->Rpl
[i
].FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[i
] - (char *)tp
) + tp
->dmabuffer
);
443 tp
->Rpl
[i
].MData
= tp
->LocalRxBuffers
[i
];
445 else /* DMA directly in skb->data */
447 tp
->Rpl
[i
].SkbStat
= SKB_DMA_DIRECT
;
448 tp
->Rpl
[i
].FragList
[0].DataAddr
= htonl(dmabuf
);
449 tp
->Rpl
[i
].MData
= tp
->Rpl
[i
].Skb
->data
;
450 tp
->Rpl
[i
].DMABuff
= dmabuf
;
454 tp
->Rpl
[i
].NextRPLPtr
= &tp
->Rpl
[(i
+1) % RPL_NUM
];
455 tp
->Rpl
[i
].RPLIndex
= i
;
458 tp
->RplHead
= &tp
->Rpl
[0];
459 tp
->RplTail
= &tp
->Rpl
[RPL_NUM
-1];
460 tp
->RplTail
->Status
= (RX_START_FRAME
| RX_END_FRAME
| RX_FRAME_IRQ
);
464 * Initializes the initialisation parameter block.
466 static void tms380tr_init_ipb(struct net_local
*tp
)
468 tp
->ipb
.Init_Options
= BURST_MODE
;
469 tp
->ipb
.CMD_Status_IV
= 0;
472 tp
->ipb
.Ring_Status_IV
= 0;
473 tp
->ipb
.SCB_Clear_IV
= 0;
474 tp
->ipb
.Adapter_CHK_IV
= 0;
475 tp
->ipb
.RX_Burst_Size
= BURST_SIZE
;
476 tp
->ipb
.TX_Burst_Size
= BURST_SIZE
;
477 tp
->ipb
.DMA_Abort_Thrhld
= DMA_RETRIES
;
478 tp
->ipb
.SCB_Addr
= 0;
479 tp
->ipb
.SSB_Addr
= 0;
483 * Initializes the open parameter block.
485 static void tms380tr_init_opb(struct net_device
*dev
)
487 struct net_local
*tp
;
489 unsigned short RplSize
= RPL_SIZE
;
490 unsigned short TplSize
= TPL_SIZE
;
491 unsigned short BufferSize
= BUFFER_SIZE
;
494 tp
= netdev_priv(dev
);
496 tp
->ocpl
.OPENOptions
= 0;
497 tp
->ocpl
.OPENOptions
|= ENABLE_FULL_DUPLEX_SELECTION
;
498 tp
->ocpl
.FullDuplex
= 0;
499 tp
->ocpl
.FullDuplex
|= OPEN_FULL_DUPLEX_OFF
;
504 * We go ahead and put it in the OPB even though on
505 * most of the generic adapters this isn't required.
506 * Its simpler this way. -- ASF
509 tp
->ocpl
.NodeAddr
[i
] = ((unsigned char *)dev
->dev_addr
)[i
];
511 tp
->ocpl
.GroupAddr
= 0;
512 tp
->ocpl
.FunctAddr
= 0;
513 tp
->ocpl
.RxListSize
= cpu_to_be16((unsigned short)RplSize
);
514 tp
->ocpl
.TxListSize
= cpu_to_be16((unsigned short)TplSize
);
515 tp
->ocpl
.BufSize
= cpu_to_be16((unsigned short)BufferSize
);
516 tp
->ocpl
.Reserved
= 0;
517 tp
->ocpl
.TXBufMin
= TX_BUF_MIN
;
518 tp
->ocpl
.TXBufMax
= TX_BUF_MAX
;
520 Addr
= htonl(((char *)tp
->ProductID
- (char *)tp
) + tp
->dmabuffer
);
522 tp
->ocpl
.ProdIDAddr
[0] = LOWORD(Addr
);
523 tp
->ocpl
.ProdIDAddr
[1] = HIWORD(Addr
);
527 * Send OPEN command to adapter
529 static void tms380tr_open_adapter(struct net_device
*dev
)
531 struct net_local
*tp
= netdev_priv(dev
);
533 if(tp
->OpenCommandIssued
)
536 tp
->OpenCommandIssued
= 1;
537 tms380tr_exec_cmd(dev
, OC_OPEN
);
541 * Clear the adapter's interrupt flag. Clear system interrupt enable
542 * (SINTEN): disable adapter to system interrupts.
544 static void tms380tr_disable_interrupts(struct net_device
*dev
)
546 SIFWRITEB(0, SIFACL
);
550 * Set the adapter's interrupt flag. Set system interrupt enable
551 * (SINTEN): enable adapter to system interrupts.
553 static void tms380tr_enable_interrupts(struct net_device
*dev
)
555 SIFWRITEB(ACL_SINTEN
, SIFACL
);
559 * Put command in command queue, try to execute it.
561 static void tms380tr_exec_cmd(struct net_device
*dev
, unsigned short Command
)
563 struct net_local
*tp
= netdev_priv(dev
);
565 tp
->CMDqueue
|= Command
;
566 tms380tr_chk_outstanding_cmds(dev
);
569 static void tms380tr_timeout(struct net_device
*dev
)
572 * If we get here, some higher level has decided we are broken.
573 * There should really be a "kick me" function call instead.
575 * Resetting the token ring adapter takes a long time so just
576 * fake transmission time and go on trying. Our own timeout
577 * routine is in tms380tr_timer_chk()
579 dev
->trans_start
= jiffies
; /* prevent tx timeout */
580 netif_wake_queue(dev
);
584 * Gets skb from system, queues it and checks if it can be sent
586 static netdev_tx_t
tms380tr_send_packet(struct sk_buff
*skb
,
587 struct net_device
*dev
)
589 struct net_local
*tp
= netdev_priv(dev
);
592 rc
= tms380tr_hardware_send_packet(skb
, dev
);
593 if(tp
->TplFree
->NextTPLPtr
->BusyFlag
)
594 netif_stop_queue(dev
);
599 * Move frames into adapter tx queue
601 static netdev_tx_t
tms380tr_hardware_send_packet(struct sk_buff
*skb
,
602 struct net_device
*dev
)
609 dma_addr_t dmabuf
, newbuf
;
610 struct net_local
*tp
= netdev_priv(dev
);
612 /* Try to get a free TPL from the chain.
614 * NOTE: We *must* always leave one unused TPL in the chain,
615 * because otherwise the adapter might send frames twice.
617 spin_lock_irqsave(&tp
->lock
, flags
);
618 if(tp
->TplFree
->NextTPLPtr
->BusyFlag
) { /* No free TPL */
619 if (tms380tr_debug
> 0)
620 printk(KERN_DEBUG
"%s: No free TPL\n", dev
->name
);
621 spin_unlock_irqrestore(&tp
->lock
, flags
);
622 return NETDEV_TX_BUSY
;
627 /* Is buffer reachable for Busmaster-DMA? */
630 dmabuf
= dma_map_single(tp
->pdev
, skb
->data
, length
, DMA_TO_DEVICE
);
631 if(tp
->dmalimit
&& (dmabuf
+ length
> tp
->dmalimit
)) {
632 /* Copy frame to local buffer */
633 dma_unmap_single(tp
->pdev
, dmabuf
, length
, DMA_TO_DEVICE
);
635 i
= tp
->TplFree
->TPLIndex
;
636 buf
= tp
->LocalTxBuffers
[i
];
637 skb_copy_from_linear_data(skb
, buf
, length
);
638 newbuf
= ((char *)buf
- (char *)tp
) + tp
->dmabuffer
;
641 /* Send direct from skb->data */
645 /* Source address in packet? */
646 tms380tr_chk_src_addr(buf
, dev
->dev_addr
);
647 tp
->LastSendTime
= jiffies
;
648 tpl
= tp
->TplFree
; /* Get the "free" TPL */
649 tpl
->BusyFlag
= 1; /* Mark TPL as busy */
650 tp
->TplFree
= tpl
->NextTPLPtr
;
652 /* Save the skb for delayed return of skb to system */
654 tpl
->DMABuff
= dmabuf
;
655 tpl
->FragList
[0].DataCount
= cpu_to_be16((unsigned short)length
);
656 tpl
->FragList
[0].DataAddr
= htonl(newbuf
);
658 /* Write the data length in the transmit list. */
659 tpl
->FrameSize
= cpu_to_be16((unsigned short)length
);
662 /* Transmit the frame and set the status values. */
663 tms380tr_write_tpl_status(tpl
, TX_VALID
| TX_START_FRAME
664 | TX_END_FRAME
| TX_PASS_SRC_ADDR
667 /* Let adapter send the frame. */
668 tms380tr_exec_sifcmd(dev
, CMD_TX_VALID
);
669 spin_unlock_irqrestore(&tp
->lock
, flags
);
675 * Write the given value to the 'Status' field of the specified TPL.
676 * NOTE: This function should be used whenever the status of any TPL must be
677 * modified by the driver, because the compiler may otherwise change the
678 * order of instructions such that writing the TPL status may be executed at
679 * an undesirable time. When this function is used, the status is always
680 * written when the function is called.
682 static void tms380tr_write_tpl_status(TPL
*tpl
, unsigned int Status
)
684 tpl
->Status
= Status
;
687 static void tms380tr_chk_src_addr(unsigned char *frame
, unsigned char *hw_addr
)
691 if((((unsigned long)frame
[8]) & ~0x80) != 0) /* Compare 4 bytes */
693 if((unsigned short)frame
[12] != 0) /* Compare 2 bytes */
696 SRBit
= frame
[8] & 0x80;
697 memcpy(&frame
[8], hw_addr
, 6);
702 * The timer routine: Check if adapter still open and working, reopen if not.
704 static void tms380tr_timer_chk(unsigned long data
)
706 struct net_device
*dev
= (struct net_device
*)data
;
707 struct net_local
*tp
= netdev_priv(dev
);
709 if(tp
->HaltInProgress
)
712 tms380tr_chk_outstanding_cmds(dev
);
713 if(time_before(tp
->LastSendTime
+ SEND_TIMEOUT
, jiffies
) &&
714 (tp
->TplFree
!= tp
->TplBusy
))
716 /* Anything to send, but stalled too long */
717 tp
->LastSendTime
= jiffies
;
718 tms380tr_exec_cmd(dev
, OC_CLOSE
); /* Does reopen automatically */
721 tp
->timer
.expires
= jiffies
+ 2*HZ
;
722 add_timer(&tp
->timer
);
724 if(tp
->AdapterOpenFlag
|| tp
->ReOpenInProgress
)
726 tp
->ReOpenInProgress
= 1;
727 tms380tr_open_adapter(dev
);
731 * The typical workload of the driver: Handle the network interface interrupts.
733 irqreturn_t
tms380tr_interrupt(int irq
, void *dev_id
)
735 struct net_device
*dev
= dev_id
;
736 struct net_local
*tp
;
737 unsigned short irq_type
;
740 tp
= netdev_priv(dev
);
742 irq_type
= SIFREADW(SIFSTS
);
744 while(irq_type
& STS_SYSTEM_IRQ
) {
746 irq_type
&= STS_IRQ_MASK
;
748 if(!tms380tr_chk_ssb(tp
, irq_type
)) {
749 printk(KERN_DEBUG
"%s: DATA LATE occurred\n", dev
->name
);
754 case STS_IRQ_RECEIVE_STATUS
:
755 tms380tr_reset_interrupt(dev
);
756 tms380tr_rcv_status_irq(dev
);
759 case STS_IRQ_TRANSMIT_STATUS
:
760 /* Check if TRANSMIT.HALT command is complete */
761 if(tp
->ssb
.Parm
[0] & COMMAND_COMPLETE
) {
762 tp
->TransmitCommandActive
= 0;
763 tp
->TransmitHaltScheduled
= 0;
765 /* Issue a new transmit command. */
766 tms380tr_exec_cmd(dev
, OC_TRANSMIT
);
769 tms380tr_reset_interrupt(dev
);
770 tms380tr_tx_status_irq(dev
);
773 case STS_IRQ_COMMAND_STATUS
:
774 /* The SSB contains status of last command
775 * other than receive/transmit.
777 tms380tr_cmd_status_irq(dev
);
780 case STS_IRQ_SCB_CLEAR
:
781 /* The SCB is free for another command. */
783 tms380tr_chk_outstanding_cmds(dev
);
786 case STS_IRQ_RING_STATUS
:
787 tms380tr_ring_status_irq(dev
);
790 case STS_IRQ_ADAPTER_CHECK
:
791 tms380tr_chk_irq(dev
);
794 case STS_IRQ_LLC_STATUS
:
795 printk(KERN_DEBUG
"tms380tr: unexpected LLC status IRQ\n");
799 printk(KERN_DEBUG
"tms380tr: unexpected Timer IRQ\n");
802 case STS_IRQ_RECEIVE_PENDING
:
803 printk(KERN_DEBUG
"tms380tr: unexpected Receive Pending IRQ\n");
807 printk(KERN_DEBUG
"Unknown Token Ring IRQ (0x%04x)\n", irq_type
);
811 /* Reset system interrupt if not already done. */
812 if(irq_type
!= STS_IRQ_TRANSMIT_STATUS
&&
813 irq_type
!= STS_IRQ_RECEIVE_STATUS
) {
814 tms380tr_reset_interrupt(dev
);
817 irq_type
= SIFREADW(SIFSTS
);
820 return IRQ_RETVAL(handled
);
824 * Reset the INTERRUPT SYSTEM bit and issue SSB CLEAR command.
826 static void tms380tr_reset_interrupt(struct net_device
*dev
)
828 struct net_local
*tp
= netdev_priv(dev
);
832 * [Workaround for "Data Late"]
833 * Set all fields of the SSB to well-defined values so we can
834 * check if the adapter has written the SSB.
837 ssb
->STS
= (unsigned short) -1;
838 ssb
->Parm
[0] = (unsigned short) -1;
839 ssb
->Parm
[1] = (unsigned short) -1;
840 ssb
->Parm
[2] = (unsigned short) -1;
842 /* Free SSB by issuing SSB_CLEAR command after reading IRQ code
843 * and clear STS_SYSTEM_IRQ bit: enable adapter for further interrupts.
845 tms380tr_exec_sifcmd(dev
, CMD_SSB_CLEAR
| CMD_CLEAR_SYSTEM_IRQ
);
849 * Check if the SSB has actually been written by the adapter.
851 static unsigned char tms380tr_chk_ssb(struct net_local
*tp
, unsigned short IrqType
)
853 SSB
*ssb
= &tp
->ssb
; /* The address of the SSB. */
855 /* C 0 1 2 INTERRUPT CODE
856 * - - - - --------------
857 * 1 1 1 1 TRANSMIT STATUS
858 * 1 1 1 1 RECEIVE STATUS
859 * 1 ? ? 0 COMMAND STATUS
861 * 1 1 0 0 RING STATUS
862 * 0 0 0 0 ADAPTER CHECK
864 * 0 = SSB field not affected by interrupt
865 * 1 = SSB field is affected by interrupt
867 * C = SSB ADDRESS +0: COMMAND
868 * 0 = SSB ADDRESS +2: STATUS 0
869 * 1 = SSB ADDRESS +4: STATUS 1
870 * 2 = SSB ADDRESS +6: STATUS 2
873 /* Check if this interrupt does use the SSB. */
875 if(IrqType
!= STS_IRQ_TRANSMIT_STATUS
&&
876 IrqType
!= STS_IRQ_RECEIVE_STATUS
&&
877 IrqType
!= STS_IRQ_COMMAND_STATUS
&&
878 IrqType
!= STS_IRQ_RING_STATUS
)
880 return 1; /* SSB not involved. */
883 /* Note: All fields of the SSB have been set to all ones (-1) after it
884 * has last been used by the software (see DriverIsr()).
886 * Check if the affected SSB fields are still unchanged.
889 if(ssb
->STS
== (unsigned short) -1)
890 return 0; /* Command field not yet available. */
891 if(IrqType
== STS_IRQ_COMMAND_STATUS
)
892 return 1; /* Status fields not always affected. */
893 if(ssb
->Parm
[0] == (unsigned short) -1)
894 return 0; /* Status 1 field not yet available. */
895 if(IrqType
== STS_IRQ_RING_STATUS
)
896 return 1; /* Status 2 & 3 fields not affected. */
898 /* Note: At this point, the interrupt is either TRANSMIT or RECEIVE. */
899 if(ssb
->Parm
[1] == (unsigned short) -1)
900 return 0; /* Status 2 field not yet available. */
901 if(ssb
->Parm
[2] == (unsigned short) -1)
902 return 0; /* Status 3 field not yet available. */
904 return 1; /* All SSB fields have been written by the adapter. */
908 * Evaluates the command results status in the SSB status field.
910 static void tms380tr_cmd_status_irq(struct net_device
*dev
)
912 struct net_local
*tp
= netdev_priv(dev
);
913 unsigned short ssb_cmd
, ssb_parm_0
;
914 unsigned short ssb_parm_1
;
915 char *open_err
= "Open error -";
916 char *code_err
= "Open code -";
918 /* Copy the ssb values to local variables */
919 ssb_cmd
= tp
->ssb
.STS
;
920 ssb_parm_0
= tp
->ssb
.Parm
[0];
921 ssb_parm_1
= tp
->ssb
.Parm
[1];
926 if(!tp
->ReOpenInProgress
)
927 wake_up_interruptible(&tp
->wait_for_tok_int
);
929 tp
->OpenCommandIssued
= 0;
932 if((ssb_parm_0
& 0x00FF) == GOOD_COMPLETION
)
934 /* Success, the adapter is open. */
935 tp
->LobeWireFaultLogged
= 0;
936 tp
->AdapterOpenFlag
= 1;
937 tp
->AdapterVirtOpenFlag
= 1;
938 tp
->TransmitCommandActive
= 0;
939 tms380tr_exec_cmd(dev
, OC_TRANSMIT
);
940 tms380tr_exec_cmd(dev
, OC_RECEIVE
);
942 if(tp
->ReOpenInProgress
)
943 tp
->ReOpenInProgress
= 0;
947 else /* The adapter did not open. */
949 if(ssb_parm_0
& NODE_ADDR_ERROR
)
950 printk(KERN_INFO
"%s: Node address error\n",
952 if(ssb_parm_0
& LIST_SIZE_ERROR
)
953 printk(KERN_INFO
"%s: List size error\n",
955 if(ssb_parm_0
& BUF_SIZE_ERROR
)
956 printk(KERN_INFO
"%s: Buffer size error\n",
958 if(ssb_parm_0
& TX_BUF_COUNT_ERROR
)
959 printk(KERN_INFO
"%s: Tx buffer count error\n",
961 if(ssb_parm_0
& INVALID_OPEN_OPTION
)
962 printk(KERN_INFO
"%s: Invalid open option\n",
964 if(ssb_parm_0
& OPEN_ERROR
)
966 /* Show the open phase. */
967 switch(ssb_parm_0
& OPEN_PHASES_MASK
)
969 case LOBE_MEDIA_TEST
:
970 if(!tp
->LobeWireFaultLogged
)
972 tp
->LobeWireFaultLogged
= 1;
973 printk(KERN_INFO
"%s: %s Lobe wire fault (check cable !).\n", dev
->name
, open_err
);
975 tp
->ReOpenInProgress
= 1;
976 tp
->AdapterOpenFlag
= 0;
977 tp
->AdapterVirtOpenFlag
= 1;
978 tms380tr_open_adapter(dev
);
981 case PHYSICAL_INSERTION
:
982 printk(KERN_INFO
"%s: %s Physical insertion.\n", dev
->name
, open_err
);
985 case ADDRESS_VERIFICATION
:
986 printk(KERN_INFO
"%s: %s Address verification.\n", dev
->name
, open_err
);
989 case PARTICIPATION_IN_RING_POLL
:
990 printk(KERN_INFO
"%s: %s Participation in ring poll.\n", dev
->name
, open_err
);
993 case REQUEST_INITIALISATION
:
994 printk(KERN_INFO
"%s: %s Request initialisation.\n", dev
->name
, open_err
);
997 case FULLDUPLEX_CHECK
:
998 printk(KERN_INFO
"%s: %s Full duplex check.\n", dev
->name
, open_err
);
1002 printk(KERN_INFO
"%s: %s Unknown open phase\n", dev
->name
, open_err
);
1006 /* Show the open errors. */
1007 switch(ssb_parm_0
& OPEN_ERROR_CODES_MASK
)
1009 case OPEN_FUNCTION_FAILURE
:
1010 printk(KERN_INFO
"%s: %s OPEN_FUNCTION_FAILURE", dev
->name
, code_err
);
1011 tp
->LastOpenStatus
=
1012 OPEN_FUNCTION_FAILURE
;
1015 case OPEN_SIGNAL_LOSS
:
1016 printk(KERN_INFO
"%s: %s OPEN_SIGNAL_LOSS\n", dev
->name
, code_err
);
1017 tp
->LastOpenStatus
=
1022 printk(KERN_INFO
"%s: %s OPEN_TIMEOUT\n", dev
->name
, code_err
);
1023 tp
->LastOpenStatus
=
1027 case OPEN_RING_FAILURE
:
1028 printk(KERN_INFO
"%s: %s OPEN_RING_FAILURE\n", dev
->name
, code_err
);
1029 tp
->LastOpenStatus
=
1033 case OPEN_RING_BEACONING
:
1034 printk(KERN_INFO
"%s: %s OPEN_RING_BEACONING\n", dev
->name
, code_err
);
1035 tp
->LastOpenStatus
=
1036 OPEN_RING_BEACONING
;
1039 case OPEN_DUPLICATE_NODEADDR
:
1040 printk(KERN_INFO
"%s: %s OPEN_DUPLICATE_NODEADDR\n", dev
->name
, code_err
);
1041 tp
->LastOpenStatus
=
1042 OPEN_DUPLICATE_NODEADDR
;
1045 case OPEN_REQUEST_INIT
:
1046 printk(KERN_INFO
"%s: %s OPEN_REQUEST_INIT\n", dev
->name
, code_err
);
1047 tp
->LastOpenStatus
=
1051 case OPEN_REMOVE_RECEIVED
:
1052 printk(KERN_INFO
"%s: %s OPEN_REMOVE_RECEIVED", dev
->name
, code_err
);
1053 tp
->LastOpenStatus
=
1054 OPEN_REMOVE_RECEIVED
;
1057 case OPEN_FULLDUPLEX_SET
:
1058 printk(KERN_INFO
"%s: %s OPEN_FULLDUPLEX_SET\n", dev
->name
, code_err
);
1059 tp
->LastOpenStatus
=
1060 OPEN_FULLDUPLEX_SET
;
1064 printk(KERN_INFO
"%s: %s Unknown open err code", dev
->name
, code_err
);
1065 tp
->LastOpenStatus
=
1066 OPEN_FUNCTION_FAILURE
;
1071 tp
->AdapterOpenFlag
= 0;
1072 tp
->AdapterVirtOpenFlag
= 0;
1079 if(ssb_cmd
!= READ_ERROR_LOG
)
1082 /* Add values from the error log table to the MAC
1083 * statistics counters and update the errorlogtable
1086 tp
->MacStat
.line_errors
+= tp
->errorlogtable
.Line_Error
;
1087 tp
->MacStat
.burst_errors
+= tp
->errorlogtable
.Burst_Error
;
1088 tp
->MacStat
.A_C_errors
+= tp
->errorlogtable
.ARI_FCI_Error
;
1089 tp
->MacStat
.lost_frames
+= tp
->errorlogtable
.Lost_Frame_Error
;
1090 tp
->MacStat
.recv_congest_count
+= tp
->errorlogtable
.Rx_Congest_Error
;
1091 tp
->MacStat
.rx_errors
+= tp
->errorlogtable
.Rx_Congest_Error
;
1092 tp
->MacStat
.frame_copied_errors
+= tp
->errorlogtable
.Frame_Copied_Error
;
1093 tp
->MacStat
.token_errors
+= tp
->errorlogtable
.Token_Error
;
1094 tp
->MacStat
.dummy1
+= tp
->errorlogtable
.DMA_Bus_Error
;
1095 tp
->MacStat
.dummy1
+= tp
->errorlogtable
.DMA_Parity_Error
;
1096 tp
->MacStat
.abort_delimiters
+= tp
->errorlogtable
.AbortDelimeters
;
1097 tp
->MacStat
.frequency_errors
+= tp
->errorlogtable
.Frequency_Error
;
1098 tp
->MacStat
.internal_errors
+= tp
->errorlogtable
.Internal_Error
;
1103 * The inverse routine to tms380tr_open().
1105 int tms380tr_close(struct net_device
*dev
)
1107 struct net_local
*tp
= netdev_priv(dev
);
1108 netif_stop_queue(dev
);
1110 del_timer(&tp
->timer
);
1112 /* Flush the Tx and disable Rx here. */
1114 tp
->HaltInProgress
= 1;
1115 tms380tr_exec_cmd(dev
, OC_CLOSE
);
1116 tp
->timer
.expires
= jiffies
+ 1*HZ
;
1117 tp
->timer
.function
= tms380tr_timer_end_wait
;
1118 tp
->timer
.data
= (unsigned long)dev
;
1119 add_timer(&tp
->timer
);
1121 tms380tr_enable_interrupts(dev
);
1124 interruptible_sleep_on(&tp
->wait_for_tok_int
);
1125 tp
->TransmitCommandActive
= 0;
1127 del_timer(&tp
->timer
);
1128 tms380tr_disable_interrupts(dev
);
1133 unsigned long flags
=claim_dma_lock();
1134 disable_dma(dev
->dma
);
1135 release_dma_lock(flags
);
1139 SIFWRITEW(0xFF00, SIFCMD
);
1141 if(dev
->dma
> 0) /* what the? */
1142 SIFWRITEB(0xff, POSREG
);
1144 tms380tr_cancel_tx_queue(tp
);
1150 * Get the current statistics. This may be called with the card open
1153 static struct net_device_stats
*tms380tr_get_stats(struct net_device
*dev
)
1155 struct net_local
*tp
= netdev_priv(dev
);
1157 return (struct net_device_stats
*)&tp
->MacStat
;
1161 * Set or clear the multicast filter for this adapter.
1163 static void tms380tr_set_multicast_list(struct net_device
*dev
)
1165 struct net_local
*tp
= netdev_priv(dev
);
1166 unsigned int OpenOptions
;
1168 OpenOptions
= tp
->ocpl
.OPENOptions
&
1169 ~(PASS_ADAPTER_MAC_FRAMES
1170 | PASS_ATTENTION_FRAMES
1171 | PASS_BEACON_MAC_FRAMES
1172 | COPY_ALL_MAC_FRAMES
1173 | COPY_ALL_NON_MAC_FRAMES
);
1175 tp
->ocpl
.FunctAddr
= 0;
1177 if(dev
->flags
& IFF_PROMISC
)
1178 /* Enable promiscuous mode */
1179 OpenOptions
|= COPY_ALL_NON_MAC_FRAMES
|
1180 COPY_ALL_MAC_FRAMES
;
1183 if(dev
->flags
& IFF_ALLMULTI
)
1185 /* Disable promiscuous mode, use normal mode. */
1186 tp
->ocpl
.FunctAddr
= 0xFFFFFFFF;
1190 struct netdev_hw_addr
*ha
;
1192 netdev_for_each_mc_addr(ha
, dev
) {
1193 ((char *)(&tp
->ocpl
.FunctAddr
))[0] |=
1195 ((char *)(&tp
->ocpl
.FunctAddr
))[1] |=
1197 ((char *)(&tp
->ocpl
.FunctAddr
))[2] |=
1199 ((char *)(&tp
->ocpl
.FunctAddr
))[3] |=
1203 tms380tr_exec_cmd(dev
, OC_SET_FUNCT_ADDR
);
1206 tp
->ocpl
.OPENOptions
= OpenOptions
;
1207 tms380tr_exec_cmd(dev
, OC_MODIFY_OPEN_PARMS
);
1211 * Wait for some time (microseconds)
1213 void tms380tr_wait(unsigned long time
)
1218 tmp
= jiffies
+ time
/(1000000/HZ
);
1220 tmp
= schedule_timeout_interruptible(tmp
);
1221 } while(time_after(tmp
, jiffies
));
1223 mdelay(time
/ 1000);
1228 * Write a command value to the SIFCMD register
1230 static void tms380tr_exec_sifcmd(struct net_device
*dev
, unsigned int WriteValue
)
1233 unsigned short SifStsValue
;
1234 unsigned long loop_counter
;
1236 WriteValue
= ((WriteValue
^ CMD_SYSTEM_IRQ
) | CMD_INTERRUPT_ADAPTER
);
1237 cmd
= (unsigned short)WriteValue
;
1238 loop_counter
= 0,5 * 800000;
1240 SifStsValue
= SIFREADW(SIFSTS
);
1241 } while((SifStsValue
& CMD_INTERRUPT_ADAPTER
) && loop_counter
--);
1242 SIFWRITEW(cmd
, SIFCMD
);
1246 * Processes adapter hardware reset, halts adapter and downloads firmware,
1247 * clears the halt bit.
1249 static int tms380tr_reset_adapter(struct net_device
*dev
)
1251 struct net_local
*tp
= netdev_priv(dev
);
1252 unsigned short *fw_ptr
;
1253 unsigned short count
, c
, count2
;
1254 const struct firmware
*fw_entry
= NULL
;
1256 if (request_firmware(&fw_entry
, "tms380tr.bin", tp
->pdev
) != 0) {
1257 printk(KERN_ALERT
"%s: firmware %s is missing, cannot start.\n",
1258 dev
->name
, "tms380tr.bin");
1262 fw_ptr
= (unsigned short *)fw_entry
->data
;
1263 count2
= fw_entry
->size
/ 2;
1265 /* Hardware adapter reset */
1266 SIFWRITEW(ACL_ARESET
, SIFACL
);
1269 c
= SIFREADW(SIFACL
);
1272 if(dev
->dma
== 0) /* For PCI adapters */
1274 c
&= ~(ACL_NSELOUT0
| ACL_NSELOUT1
); /* Clear bits */
1276 c
|= (*tp
->setnselout
)(dev
);
1279 /* In case a command is pending - forget it */
1282 c
&= ~ACL_ARESET
; /* Clear adapter reset bit */
1283 c
|= ACL_CPHALT
; /* Halt adapter CPU, allow download */
1286 c
&= ~ACL_PSDMAEN
; /* Clear pseudo dma bit */
1287 SIFWRITEW(c
, SIFACL
);
1291 /* Download firmware via DIO interface: */
1293 if (count2
< 3) continue;
1295 /* Download first address part */
1296 SIFWRITEW(*fw_ptr
, SIFADX
);
1299 /* Download second address part */
1300 SIFWRITEW(*fw_ptr
, SIFADD
);
1304 if((count
= *fw_ptr
) != 0) /* Load loop counter */
1306 fw_ptr
++; /* Download block data */
1308 if (count
> count2
) continue;
1310 for(; count
> 0; count
--)
1312 SIFWRITEW(*fw_ptr
, SIFINC
);
1317 else /* Stop, if last block downloaded */
1319 c
= SIFREADW(SIFACL
);
1320 c
&= (~ACL_CPHALT
| ACL_SINTEN
);
1322 /* Clear CPHALT and start BUD */
1323 SIFWRITEW(c
, SIFACL
);
1324 release_firmware(fw_entry
);
1327 } while(count
== 0);
1329 release_firmware(fw_entry
);
1330 printk(KERN_INFO
"%s: Adapter Download Failed\n", dev
->name
);
1334 MODULE_FIRMWARE("tms380tr.bin");
1337 * Starts bring up diagnostics of token ring adapter and evaluates
1338 * diagnostic results.
1340 static int tms380tr_bringup_diags(struct net_device
*dev
)
1342 int loop_cnt
, retry_cnt
;
1343 unsigned short Status
;
1345 tms380tr_wait(HALF_SECOND
);
1346 tms380tr_exec_sifcmd(dev
, EXEC_SOFT_RESET
);
1347 tms380tr_wait(HALF_SECOND
);
1349 retry_cnt
= BUD_MAX_RETRIES
; /* maximal number of retrys */
1353 if(tms380tr_debug
> 3)
1354 printk(KERN_DEBUG
"BUD-Status: ");
1355 loop_cnt
= BUD_MAX_LOOPCNT
; /* maximum: three seconds*/
1356 do { /* Inspect BUD results */
1358 tms380tr_wait(HALF_SECOND
);
1359 Status
= SIFREADW(SIFSTS
);
1362 if(tms380tr_debug
> 3)
1363 printk(KERN_DEBUG
" %04X\n", Status
);
1364 /* BUD successfully completed */
1365 if(Status
== STS_INITIALIZE
)
1367 /* Unrecoverable hardware error, BUD not completed? */
1368 } while((loop_cnt
> 0) && ((Status
& (STS_ERROR
| STS_TEST
))
1369 != (STS_ERROR
| STS_TEST
)));
1371 /* Error preventing completion of BUD */
1374 printk(KERN_INFO
"%s: Adapter Software Reset.\n",
1376 tms380tr_exec_sifcmd(dev
, EXEC_SOFT_RESET
);
1377 tms380tr_wait(HALF_SECOND
);
1379 } while(retry_cnt
> 0);
1381 Status
= SIFREADW(SIFSTS
);
1383 printk(KERN_INFO
"%s: Hardware error\n", dev
->name
);
1384 /* Hardware error occurred! */
1386 if (Status
& 0x0010)
1387 printk(KERN_INFO
"%s: BUD Error: Timeout\n", dev
->name
);
1388 else if ((Status
& 0x000f) > 6)
1389 printk(KERN_INFO
"%s: BUD Error: Illegal Failure\n", dev
->name
);
1391 printk(KERN_INFO
"%s: Bring Up Diagnostics Error (%04X) occurred\n", dev
->name
, Status
& 0x000f);
1397 * Copy initialisation data to adapter memory, beginning at address
1398 * 1:0A00; Starting DMA test and evaluating result bits.
1400 static int tms380tr_init_adapter(struct net_device
*dev
)
1402 struct net_local
*tp
= netdev_priv(dev
);
1404 const unsigned char SCB_Test
[6] = {0x00, 0x00, 0xC1, 0xE2, 0xD4, 0x8B};
1405 const unsigned char SSB_Test
[8] = {0xFF, 0xFF, 0xD1, 0xD7,
1406 0xC5, 0xD9, 0xC3, 0xD4};
1407 void *ptr
= (void *)&tp
->ipb
;
1408 unsigned short *ipb_ptr
= (unsigned short *)ptr
;
1409 unsigned char *cb_ptr
= (unsigned char *) &tp
->scb
;
1410 unsigned char *sb_ptr
= (unsigned char *) &tp
->ssb
;
1411 unsigned short Status
;
1412 int i
, loop_cnt
, retry_cnt
;
1414 /* Normalize: byte order low/high, word order high/low! (only IPB!) */
1415 tp
->ipb
.SCB_Addr
= SWAPW(((char *)&tp
->scb
- (char *)tp
) + tp
->dmabuffer
);
1416 tp
->ipb
.SSB_Addr
= SWAPW(((char *)&tp
->ssb
- (char *)tp
) + tp
->dmabuffer
);
1418 if(tms380tr_debug
> 3)
1420 printk(KERN_DEBUG
"%s: buffer (real): %lx\n", dev
->name
, (long) &tp
->scb
);
1421 printk(KERN_DEBUG
"%s: buffer (virt): %lx\n", dev
->name
, (long) ((char *)&tp
->scb
- (char *)tp
) + (long) tp
->dmabuffer
);
1422 printk(KERN_DEBUG
"%s: buffer (DMA) : %lx\n", dev
->name
, (long) tp
->dmabuffer
);
1423 printk(KERN_DEBUG
"%s: buffer (tp) : %lx\n", dev
->name
, (long) tp
);
1425 /* Maximum: three initialization retries */
1426 retry_cnt
= INIT_MAX_RETRIES
;
1431 /* Transfer initialization block */
1432 SIFWRITEW(0x0001, SIFADX
);
1434 /* To address 0001:0A00 of adapter RAM */
1435 SIFWRITEW(0x0A00, SIFADD
);
1437 /* Write 11 words to adapter RAM */
1438 for(i
= 0; i
< 11; i
++)
1439 SIFWRITEW(ipb_ptr
[i
], SIFINC
);
1441 /* Execute SCB adapter command */
1442 tms380tr_exec_sifcmd(dev
, CMD_EXECUTE
);
1444 loop_cnt
= INIT_MAX_LOOPCNT
; /* Maximum: 11 seconds */
1446 /* While remaining retries, no error and not completed */
1450 tms380tr_wait(HALF_SECOND
);
1452 /* Mask interesting status bits */
1453 Status
= SIFREADW(SIFSTS
);
1455 } while(((Status
&(STS_INITIALIZE
| STS_ERROR
| STS_TEST
)) != 0) &&
1456 ((Status
& STS_ERROR
) == 0) && (loop_cnt
!= 0));
1458 if((Status
& (STS_INITIALIZE
| STS_ERROR
| STS_TEST
)) == 0)
1460 /* Initialization completed without error */
1462 do { /* Test if contents of SCB is valid */
1463 if(SCB_Test
[i
] != *(cb_ptr
+ i
))
1465 printk(KERN_INFO
"%s: DMA failed\n", dev
->name
);
1466 /* DMA data error: wrong data in SCB */
1473 do { /* Test if contents of SSB is valid */
1474 if(SSB_Test
[i
] != *(sb_ptr
+ i
))
1475 /* DMA data error: wrong data in SSB */
1480 return 1; /* Adapter successfully initialized */
1484 if((Status
& STS_ERROR
) != 0)
1486 /* Initialization error occurred */
1487 Status
= SIFREADW(SIFSTS
);
1488 Status
&= STS_ERROR_MASK
;
1489 /* ShowInitialisationErrorCode(Status); */
1490 printk(KERN_INFO
"%s: Status error: %d\n", dev
->name
, Status
);
1491 return -1; /* Unrecoverable error */
1497 /* Reset adapter and try init again */
1498 tms380tr_exec_sifcmd(dev
, EXEC_SOFT_RESET
);
1499 tms380tr_wait(HALF_SECOND
);
1503 } while(retry_cnt
> 0);
1505 printk(KERN_INFO
"%s: Retry exceeded\n", dev
->name
);
1510 * Check for outstanding commands in command queue and tries to execute
1511 * command immediately. Corresponding command flag in command queue is cleared.
1513 static void tms380tr_chk_outstanding_cmds(struct net_device
*dev
)
1515 struct net_local
*tp
= netdev_priv(dev
);
1516 unsigned long Addr
= 0;
1518 if(tp
->CMDqueue
== 0)
1519 return; /* No command execution */
1521 /* If SCB in use: no command */
1522 if(tp
->ScbInUse
== 1)
1525 /* Check if adapter is opened, avoiding COMMAND_REJECT
1526 * interrupt by the adapter!
1528 if(tp
->AdapterOpenFlag
== 0)
1530 if(tp
->CMDqueue
& OC_OPEN
)
1532 /* Execute OPEN command */
1533 tp
->CMDqueue
^= OC_OPEN
;
1535 Addr
= htonl(((char *)&tp
->ocpl
- (char *)tp
) + tp
->dmabuffer
);
1536 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1537 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1541 /* No OPEN command queued, but adapter closed. Note:
1542 * We'll try to re-open the adapter in DriverPoll()
1544 return; /* No adapter command issued */
1548 /* Adapter is open; evaluate command queue: try to execute
1549 * outstanding commands (depending on priority!) CLOSE
1552 if(tp
->CMDqueue
& OC_CLOSE
)
1554 tp
->CMDqueue
^= OC_CLOSE
;
1555 tp
->AdapterOpenFlag
= 0;
1556 tp
->scb
.Parm
[0] = 0; /* Parm[0], Parm[1] are ignored */
1557 tp
->scb
.Parm
[1] = 0; /* but should be set to zero! */
1558 tp
->scb
.CMD
= CLOSE
;
1559 if(!tp
->HaltInProgress
)
1560 tp
->CMDqueue
|= OC_OPEN
; /* re-open adapter */
1562 tp
->CMDqueue
= 0; /* no more commands */
1566 if(tp
->CMDqueue
& OC_RECEIVE
)
1568 tp
->CMDqueue
^= OC_RECEIVE
;
1569 Addr
= htonl(((char *)tp
->RplHead
- (char *)tp
) + tp
->dmabuffer
);
1570 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1571 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1572 tp
->scb
.CMD
= RECEIVE
;
1576 if(tp
->CMDqueue
& OC_TRANSMIT_HALT
)
1578 /* NOTE: TRANSMIT.HALT must be checked
1581 tp
->CMDqueue
^= OC_TRANSMIT_HALT
;
1582 tp
->scb
.CMD
= TRANSMIT_HALT
;
1584 /* Parm[0] and Parm[1] are ignored
1585 * but should be set to zero!
1587 tp
->scb
.Parm
[0] = 0;
1588 tp
->scb
.Parm
[1] = 0;
1592 if(tp
->CMDqueue
& OC_TRANSMIT
)
1594 /* NOTE: TRANSMIT must be
1595 * checked after TRANSMIT.HALT
1597 if(tp
->TransmitCommandActive
)
1599 if(!tp
->TransmitHaltScheduled
)
1601 tp
->TransmitHaltScheduled
= 1;
1602 tms380tr_exec_cmd(dev
, OC_TRANSMIT_HALT
) ;
1604 tp
->TransmitCommandActive
= 0;
1608 tp
->CMDqueue
^= OC_TRANSMIT
;
1609 tms380tr_cancel_tx_queue(tp
);
1610 Addr
= htonl(((char *)tp
->TplBusy
- (char *)tp
) + tp
->dmabuffer
);
1611 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1612 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1613 tp
->scb
.CMD
= TRANSMIT
;
1614 tp
->TransmitCommandActive
= 1;
1618 if(tp
->CMDqueue
& OC_MODIFY_OPEN_PARMS
)
1620 tp
->CMDqueue
^= OC_MODIFY_OPEN_PARMS
;
1621 tp
->scb
.Parm
[0] = tp
->ocpl
.OPENOptions
; /* new OPEN options*/
1622 tp
->scb
.Parm
[0] |= ENABLE_FULL_DUPLEX_SELECTION
;
1623 tp
->scb
.Parm
[1] = 0; /* is ignored but should be zero */
1624 tp
->scb
.CMD
= MODIFY_OPEN_PARMS
;
1628 if(tp
->CMDqueue
& OC_SET_FUNCT_ADDR
)
1630 tp
->CMDqueue
^= OC_SET_FUNCT_ADDR
;
1631 tp
->scb
.Parm
[0] = LOWORD(tp
->ocpl
.FunctAddr
);
1632 tp
->scb
.Parm
[1] = HIWORD(tp
->ocpl
.FunctAddr
);
1633 tp
->scb
.CMD
= SET_FUNCT_ADDR
;
1637 if(tp
->CMDqueue
& OC_SET_GROUP_ADDR
)
1639 tp
->CMDqueue
^= OC_SET_GROUP_ADDR
;
1640 tp
->scb
.Parm
[0] = LOWORD(tp
->ocpl
.GroupAddr
);
1641 tp
->scb
.Parm
[1] = HIWORD(tp
->ocpl
.GroupAddr
);
1642 tp
->scb
.CMD
= SET_GROUP_ADDR
;
1646 if(tp
->CMDqueue
& OC_READ_ERROR_LOG
)
1648 tp
->CMDqueue
^= OC_READ_ERROR_LOG
;
1649 Addr
= htonl(((char *)&tp
->errorlogtable
- (char *)tp
) + tp
->dmabuffer
);
1650 tp
->scb
.Parm
[0] = LOWORD(Addr
);
1651 tp
->scb
.Parm
[1] = HIWORD(Addr
);
1652 tp
->scb
.CMD
= READ_ERROR_LOG
;
1656 printk(KERN_WARNING
"CheckForOutstandingCommand: unknown Command\n");
1669 tp
->ScbInUse
= 1; /* Set semaphore: SCB in use. */
1671 /* Execute SCB and generate IRQ when done. */
1672 tms380tr_exec_sifcmd(dev
, CMD_EXECUTE
| CMD_SCB_REQUEST
);
1676 * IRQ conditions: signal loss on the ring, transmit or receive of beacon
1677 * frames (disabled if bit 1 of OPEN option is set); report error MAC
1678 * frame transmit (disabled if bit 2 of OPEN option is set); open or short
1679 * circuit fault on the lobe is detected; remove MAC frame received;
1680 * error counter overflow (255); opened adapter is the only station in ring.
1681 * After some of the IRQs the adapter is closed!
1683 static void tms380tr_ring_status_irq(struct net_device
*dev
)
1685 struct net_local
*tp
= netdev_priv(dev
);
1687 tp
->CurrentRingStatus
= be16_to_cpu((unsigned short)tp
->ssb
.Parm
[0]);
1689 /* First: fill up statistics */
1690 if(tp
->ssb
.Parm
[0] & SIGNAL_LOSS
)
1692 printk(KERN_INFO
"%s: Signal Loss\n", dev
->name
);
1693 tp
->MacStat
.line_errors
++;
1696 /* Adapter is closed, but initialized */
1697 if(tp
->ssb
.Parm
[0] & LOBE_WIRE_FAULT
)
1699 printk(KERN_INFO
"%s: Lobe Wire Fault, Reopen Adapter\n",
1701 tp
->MacStat
.line_errors
++;
1704 if(tp
->ssb
.Parm
[0] & RING_RECOVERY
)
1705 printk(KERN_INFO
"%s: Ring Recovery\n", dev
->name
);
1707 /* Counter overflow: read error log */
1708 if(tp
->ssb
.Parm
[0] & COUNTER_OVERFLOW
)
1710 printk(KERN_INFO
"%s: Counter Overflow\n", dev
->name
);
1711 tms380tr_exec_cmd(dev
, OC_READ_ERROR_LOG
);
1714 /* Adapter is closed, but initialized */
1715 if(tp
->ssb
.Parm
[0] & REMOVE_RECEIVED
)
1716 printk(KERN_INFO
"%s: Remove Received, Reopen Adapter\n",
1719 /* Adapter is closed, but initialized */
1720 if(tp
->ssb
.Parm
[0] & AUTO_REMOVAL_ERROR
)
1721 printk(KERN_INFO
"%s: Auto Removal Error, Reopen Adapter\n",
1724 if(tp
->ssb
.Parm
[0] & HARD_ERROR
)
1725 printk(KERN_INFO
"%s: Hard Error\n", dev
->name
);
1727 if(tp
->ssb
.Parm
[0] & SOFT_ERROR
)
1728 printk(KERN_INFO
"%s: Soft Error\n", dev
->name
);
1730 if(tp
->ssb
.Parm
[0] & TRANSMIT_BEACON
)
1731 printk(KERN_INFO
"%s: Transmit Beacon\n", dev
->name
);
1733 if(tp
->ssb
.Parm
[0] & SINGLE_STATION
)
1734 printk(KERN_INFO
"%s: Single Station\n", dev
->name
);
1736 /* Check if adapter has been closed */
1737 if(tp
->ssb
.Parm
[0] & ADAPTER_CLOSED
)
1739 printk(KERN_INFO
"%s: Adapter closed (Reopening),"
1740 "CurrentRingStat %x\n",
1741 dev
->name
, tp
->CurrentRingStatus
);
1742 tp
->AdapterOpenFlag
= 0;
1743 tms380tr_open_adapter(dev
);
1748 * Issued if adapter has encountered an unrecoverable hardware
1749 * or software error.
1751 static void tms380tr_chk_irq(struct net_device
*dev
)
1754 unsigned short AdapterCheckBlock
[4];
1755 struct net_local
*tp
= netdev_priv(dev
);
1757 tp
->AdapterOpenFlag
= 0; /* Adapter closed now */
1759 /* Page number of adapter memory */
1760 SIFWRITEW(0x0001, SIFADX
);
1761 /* Address offset */
1762 SIFWRITEW(CHECKADDR
, SIFADR
);
1764 /* Reading 8 byte adapter check block. */
1765 for(i
= 0; i
< 4; i
++)
1766 AdapterCheckBlock
[i
] = SIFREADW(SIFINC
);
1768 if(tms380tr_debug
> 3)
1770 printk(KERN_DEBUG
"%s: AdapterCheckBlock: ", dev
->name
);
1771 for (i
= 0; i
< 4; i
++)
1772 printk("%04X", AdapterCheckBlock
[i
]);
1776 switch(AdapterCheckBlock
[0])
1779 printk(KERN_INFO
"%s: DIO parity error\n", dev
->name
);
1782 case DMA_READ_ABORT
:
1783 printk(KERN_INFO
"%s DMA read operation aborted:\n",
1785 switch (AdapterCheckBlock
[1])
1788 printk(KERN_INFO
"Timeout\n");
1789 printk(KERN_INFO
"Address: %04X %04X\n",
1790 AdapterCheckBlock
[2],
1791 AdapterCheckBlock
[3]);
1795 printk(KERN_INFO
"Parity error\n");
1796 printk(KERN_INFO
"Address: %04X %04X\n",
1797 AdapterCheckBlock
[2],
1798 AdapterCheckBlock
[3]);
1802 printk(KERN_INFO
"Bus error\n");
1803 printk(KERN_INFO
"Address: %04X %04X\n",
1804 AdapterCheckBlock
[2],
1805 AdapterCheckBlock
[3]);
1809 printk(KERN_INFO
"Unknown error.\n");
1814 case DMA_WRITE_ABORT
:
1815 printk(KERN_INFO
"%s: DMA write operation aborted:\n",
1817 switch (AdapterCheckBlock
[1])
1820 printk(KERN_INFO
"Timeout\n");
1821 printk(KERN_INFO
"Address: %04X %04X\n",
1822 AdapterCheckBlock
[2],
1823 AdapterCheckBlock
[3]);
1827 printk(KERN_INFO
"Parity error\n");
1828 printk(KERN_INFO
"Address: %04X %04X\n",
1829 AdapterCheckBlock
[2],
1830 AdapterCheckBlock
[3]);
1834 printk(KERN_INFO
"Bus error\n");
1835 printk(KERN_INFO
"Address: %04X %04X\n",
1836 AdapterCheckBlock
[2],
1837 AdapterCheckBlock
[3]);
1841 printk(KERN_INFO
"Unknown error.\n");
1846 case ILLEGAL_OP_CODE
:
1847 printk(KERN_INFO
"%s: Illegal operation code in firmware\n",
1849 /* Parm[0-3]: adapter internal register R13-R15 */
1853 printk(KERN_INFO
"%s: Adapter internal bus parity error\n",
1855 /* Parm[0-3]: adapter internal register R13-R15 */
1858 case RAM_DATA_ERROR
:
1859 printk(KERN_INFO
"%s: RAM data error\n", dev
->name
);
1860 /* Parm[0-1]: MSW/LSW address of RAM location. */
1863 case RAM_PARITY_ERROR
:
1864 printk(KERN_INFO
"%s: RAM parity error\n", dev
->name
);
1865 /* Parm[0-1]: MSW/LSW address of RAM location. */
1869 printk(KERN_INFO
"%s: Internal DMA underrun detected\n",
1874 printk(KERN_INFO
"%s: Unrecognized interrupt detected\n",
1876 /* Parm[0-3]: adapter internal register R13-R15 */
1879 case INVALID_ERROR_IRQ
:
1880 printk(KERN_INFO
"%s: Unrecognized error interrupt detected\n",
1882 /* Parm[0-3]: adapter internal register R13-R15 */
1886 printk(KERN_INFO
"%s: Unrecognized XOP request detected\n",
1888 /* Parm[0-3]: adapter internal register R13-R15 */
1892 printk(KERN_INFO
"%s: Unknown status", dev
->name
);
1896 if(tms380tr_chipset_init(dev
) == 1)
1898 /* Restart of firmware successful */
1899 tp
->AdapterOpenFlag
= 1;
1904 * Internal adapter pointer to RAM data are copied from adapter into
1907 static int tms380tr_read_ptr(struct net_device
*dev
)
1909 struct net_local
*tp
= netdev_priv(dev
);
1910 unsigned short adapterram
;
1912 tms380tr_read_ram(dev
, (unsigned char *)&tp
->intptrs
.BurnedInAddrPtr
,
1913 ADAPTER_INT_PTRS
, 16);
1914 tms380tr_read_ram(dev
, (unsigned char *)&adapterram
,
1915 cpu_to_be16((unsigned short)tp
->intptrs
.AdapterRAMPtr
), 2);
1916 return be16_to_cpu(adapterram
);
1920 * Reads a number of bytes from adapter to system memory.
1922 static void tms380tr_read_ram(struct net_device
*dev
, unsigned char *Data
,
1923 unsigned short Address
, int Length
)
1926 unsigned short old_sifadx
, old_sifadr
, InWord
;
1928 /* Save the current values */
1929 old_sifadx
= SIFREADW(SIFADX
);
1930 old_sifadr
= SIFREADW(SIFADR
);
1932 /* Page number of adapter memory */
1933 SIFWRITEW(0x0001, SIFADX
);
1934 /* Address offset in adapter RAM */
1935 SIFWRITEW(Address
, SIFADR
);
1937 /* Copy len byte from adapter memory to system data area. */
1941 InWord
= SIFREADW(SIFINC
);
1943 *(Data
+ i
) = HIBYTE(InWord
); /* Write first byte */
1944 if(++i
== Length
) /* All is done break */
1947 *(Data
+ i
) = LOBYTE(InWord
); /* Write second byte */
1948 if (++i
== Length
) /* All is done break */
1952 /* Restore original values */
1953 SIFWRITEW(old_sifadx
, SIFADX
);
1954 SIFWRITEW(old_sifadr
, SIFADR
);
1958 * Cancel all queued packets in the transmission queue.
1960 static void tms380tr_cancel_tx_queue(struct net_local
* tp
)
1965 * NOTE: There must not be an active TRANSMIT command pending, when
1966 * this function is called.
1968 if(tp
->TransmitCommandActive
)
1976 /* "Remove" TPL from busy list. */
1977 tp
->TplBusy
= tpl
->NextTPLPtr
;
1978 tms380tr_write_tpl_status(tpl
, 0); /* Clear VALID bit */
1979 tpl
->BusyFlag
= 0; /* "free" TPL */
1981 printk(KERN_INFO
"Cancel tx (%08lXh).\n", (unsigned long)tpl
);
1983 dma_unmap_single(tp
->pdev
, tpl
->DMABuff
, tpl
->Skb
->len
, DMA_TO_DEVICE
);
1984 dev_kfree_skb_any(tpl
->Skb
);
1989 * This function is called whenever a transmit interrupt is generated by the
1990 * adapter. For a command complete interrupt, it is checked if we have to
1991 * issue a new transmit command or not.
1993 static void tms380tr_tx_status_irq(struct net_device
*dev
)
1995 struct net_local
*tp
= netdev_priv(dev
);
1996 unsigned char HighByte
, HighAc
, LowAc
;
1999 /* NOTE: At this point the SSB from TRANSMIT STATUS is no longer
2000 * available, because the CLEAR SSB command has already been issued.
2002 * Process all complete transmissions.
2008 if(!tpl
->BusyFlag
|| (tpl
->Status
2009 & (TX_VALID
| TX_FRAME_COMPLETE
))
2010 != TX_FRAME_COMPLETE
)
2015 /* "Remove" TPL from busy list. */
2016 tp
->TplBusy
= tpl
->NextTPLPtr
;
2018 /* Check the transmit status field only for directed frames*/
2019 if(DIRECTED_FRAME(tpl
) && (tpl
->Status
& TX_ERROR
) == 0)
2021 HighByte
= GET_TRANSMIT_STATUS_HIGH_BYTE(tpl
->Status
);
2022 HighAc
= GET_FRAME_STATUS_HIGH_AC(HighByte
);
2023 LowAc
= GET_FRAME_STATUS_LOW_AC(HighByte
);
2025 if((HighAc
!= LowAc
) || (HighAc
== AC_NOT_RECOGNIZED
))
2027 printk(KERN_DEBUG
"%s: (DA=%08lX not recognized)\n",
2029 *(unsigned long *)&tpl
->MData
[2+2]);
2033 if(tms380tr_debug
> 3)
2034 printk(KERN_DEBUG
"%s: Directed frame tx'd\n",
2040 if(!DIRECTED_FRAME(tpl
))
2042 if(tms380tr_debug
> 3)
2043 printk(KERN_DEBUG
"%s: Broadcast frame tx'd\n",
2048 tp
->MacStat
.tx_packets
++;
2050 dma_unmap_single(tp
->pdev
, tpl
->DMABuff
, tpl
->Skb
->len
, DMA_TO_DEVICE
);
2051 dev_kfree_skb_irq(tpl
->Skb
);
2052 tpl
->BusyFlag
= 0; /* "free" TPL */
2055 if(!tp
->TplFree
->NextTPLPtr
->BusyFlag
)
2056 netif_wake_queue(dev
);
2060 * Called if a frame receive interrupt is generated by the adapter.
2061 * Check if the frame is valid and indicate it to system.
2063 static void tms380tr_rcv_status_irq(struct net_device
*dev
)
2065 struct net_local
*tp
= netdev_priv(dev
);
2066 unsigned char *ReceiveDataPtr
;
2067 struct sk_buff
*skb
;
2068 unsigned int Length
, Length2
;
2073 /* NOTE: At this point the SSB from RECEIVE STATUS is no longer
2074 * available, because the CLEAR SSB command has already been issued.
2076 * Process all complete receives.
2082 if(rpl
->Status
& RX_VALID
)
2083 break; /* RPL still in use by adapter */
2085 /* Forward RPLHead pointer to next list. */
2086 SaveHead
= tp
->RplHead
;
2087 tp
->RplHead
= rpl
->NextRPLPtr
;
2089 /* Get the frame size (Byte swap for Intel).
2090 * Do this early (see workaround comment below)
2092 Length
= be16_to_cpu(rpl
->FrameSize
);
2094 /* Check if the Frame_Start, Frame_End and
2095 * Frame_Complete bits are set.
2097 if((rpl
->Status
& VALID_SINGLE_BUFFER_FRAME
)
2098 == VALID_SINGLE_BUFFER_FRAME
)
2100 ReceiveDataPtr
= rpl
->MData
;
2102 /* Workaround for delayed write of FrameSize on ISA
2103 * (FrameSize is false but valid-bit is reset)
2104 * Frame size is set to zero when the RPL is freed.
2105 * Length2 is there because there have also been
2106 * cases where the FrameSize was partially written
2108 Length2
= be16_to_cpu(rpl
->FrameSize
);
2110 if(Length
== 0 || Length
!= Length2
)
2112 tp
->RplHead
= SaveHead
;
2113 break; /* Return to tms380tr_interrupt */
2115 tms380tr_update_rcv_stats(tp
,ReceiveDataPtr
,Length
);
2117 if(tms380tr_debug
> 3)
2118 printk(KERN_DEBUG
"%s: Packet Length %04X (%d)\n",
2119 dev
->name
, Length
, Length
);
2121 /* Indicate the received frame to system the
2122 * adapter does the Source-Routing padding for
2123 * us. See: OpenOptions in tms380tr_init_opb()
2126 if(rpl
->SkbStat
== SKB_UNAVAILABLE
)
2128 /* Try again to allocate skb */
2129 skb
= dev_alloc_skb(tp
->MaxPacketSize
);
2132 /* Update Stats ?? */
2136 skb_put(skb
, tp
->MaxPacketSize
);
2137 rpl
->SkbStat
= SKB_DATA_COPY
;
2138 ReceiveDataPtr
= rpl
->MData
;
2142 if(skb
&& (rpl
->SkbStat
== SKB_DATA_COPY
||
2143 rpl
->SkbStat
== SKB_DMA_DIRECT
))
2145 if(rpl
->SkbStat
== SKB_DATA_COPY
)
2146 skb_copy_to_linear_data(skb
, ReceiveDataPtr
,
2149 /* Deliver frame to system */
2151 skb_trim(skb
,Length
);
2152 skb
->protocol
= tr_type_trans(skb
,dev
);
2156 else /* Invalid frame */
2158 if(rpl
->Skb
!= NULL
)
2159 dev_kfree_skb_irq(rpl
->Skb
);
2162 if(rpl
->Status
& RX_START_FRAME
)
2163 /* Frame start bit is set -> overflow. */
2164 tp
->MacStat
.rx_errors
++;
2167 dma_unmap_single(tp
->pdev
, rpl
->DMABuff
, tp
->MaxPacketSize
, DMA_TO_DEVICE
);
2170 /* Allocate new skb for rpl */
2171 rpl
->Skb
= dev_alloc_skb(tp
->MaxPacketSize
);
2172 /* skb == NULL ? then use local buffer */
2173 if(rpl
->Skb
== NULL
)
2175 rpl
->SkbStat
= SKB_UNAVAILABLE
;
2176 rpl
->FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[rpl
->RPLIndex
] - (char *)tp
) + tp
->dmabuffer
);
2177 rpl
->MData
= tp
->LocalRxBuffers
[rpl
->RPLIndex
];
2179 else /* skb != NULL */
2181 rpl
->Skb
->dev
= dev
;
2182 skb_put(rpl
->Skb
, tp
->MaxPacketSize
);
2184 /* Data unreachable for DMA ? then use local buffer */
2185 dmabuf
= dma_map_single(tp
->pdev
, rpl
->Skb
->data
, tp
->MaxPacketSize
, DMA_FROM_DEVICE
);
2186 if(tp
->dmalimit
&& (dmabuf
+ tp
->MaxPacketSize
> tp
->dmalimit
))
2188 rpl
->SkbStat
= SKB_DATA_COPY
;
2189 rpl
->FragList
[0].DataAddr
= htonl(((char *)tp
->LocalRxBuffers
[rpl
->RPLIndex
] - (char *)tp
) + tp
->dmabuffer
);
2190 rpl
->MData
= tp
->LocalRxBuffers
[rpl
->RPLIndex
];
2194 /* DMA directly in skb->data */
2195 rpl
->SkbStat
= SKB_DMA_DIRECT
;
2196 rpl
->FragList
[0].DataAddr
= htonl(dmabuf
);
2197 rpl
->MData
= rpl
->Skb
->data
;
2198 rpl
->DMABuff
= dmabuf
;
2202 rpl
->FragList
[0].DataCount
= cpu_to_be16((unsigned short)tp
->MaxPacketSize
);
2205 /* Pass the last RPL back to the adapter */
2206 tp
->RplTail
->FrameSize
= 0;
2208 /* Reset the CSTAT field in the list. */
2209 tms380tr_write_rpl_status(tp
->RplTail
, RX_VALID
| RX_FRAME_IRQ
);
2211 /* Current RPL becomes last one in list. */
2212 tp
->RplTail
= tp
->RplTail
->NextRPLPtr
;
2214 /* Inform adapter about RPL valid. */
2215 tms380tr_exec_sifcmd(dev
, CMD_RX_VALID
);
2220 * This function should be used whenever the status of any RPL must be
2221 * modified by the driver, because the compiler may otherwise change the
2222 * order of instructions such that writing the RPL status may be executed
2223 * at an undesirable time. When this function is used, the status is
2224 * always written when the function is called.
2226 static void tms380tr_write_rpl_status(RPL
*rpl
, unsigned int Status
)
2228 rpl
->Status
= Status
;
2232 * The function updates the statistic counters in mac->MacStat.
2233 * It differtiates between directed and broadcast/multicast ( ==functional)
2236 static void tms380tr_update_rcv_stats(struct net_local
*tp
, unsigned char DataPtr
[],
2237 unsigned int Length
)
2239 tp
->MacStat
.rx_packets
++;
2240 tp
->MacStat
.rx_bytes
+= Length
;
2242 /* Test functional bit */
2243 if(DataPtr
[2] & GROUP_BIT
)
2244 tp
->MacStat
.multicast
++;
2247 static int tms380tr_set_mac_address(struct net_device
*dev
, void *addr
)
2249 struct net_local
*tp
= netdev_priv(dev
);
2250 struct sockaddr
*saddr
= addr
;
2252 if (tp
->AdapterOpenFlag
|| tp
->AdapterVirtOpenFlag
) {
2253 printk(KERN_WARNING
"%s: Cannot set MAC/LAA address while card is open\n", dev
->name
);
2256 memcpy(dev
->dev_addr
, saddr
->sa_data
, dev
->addr_len
);
2260 #if TMS380TR_DEBUG > 0
2262 * Dump Packet (data)
2264 static void tms380tr_dump(unsigned char *Data
, int length
)
2268 for (i
= 0, j
= 0; i
< length
/ 8; i
++, j
+= 8)
2270 printk(KERN_DEBUG
"%02x %02x %02x %02x %02x %02x %02x %02x\n",
2271 Data
[j
+0],Data
[j
+1],Data
[j
+2],Data
[j
+3],
2272 Data
[j
+4],Data
[j
+5],Data
[j
+6],Data
[j
+7]);
2277 void tmsdev_term(struct net_device
*dev
)
2279 struct net_local
*tp
;
2281 tp
= netdev_priv(dev
);
2282 dma_unmap_single(tp
->pdev
, tp
->dmabuffer
, sizeof(struct net_local
),
2286 const struct net_device_ops tms380tr_netdev_ops
= {
2287 .ndo_open
= tms380tr_open
,
2288 .ndo_stop
= tms380tr_close
,
2289 .ndo_start_xmit
= tms380tr_send_packet
,
2290 .ndo_tx_timeout
= tms380tr_timeout
,
2291 .ndo_get_stats
= tms380tr_get_stats
,
2292 .ndo_set_multicast_list
= tms380tr_set_multicast_list
,
2293 .ndo_set_mac_address
= tms380tr_set_mac_address
,
2295 EXPORT_SYMBOL(tms380tr_netdev_ops
);
2297 int tmsdev_init(struct net_device
*dev
, struct device
*pdev
)
2299 struct net_local
*tms_local
;
2301 memset(netdev_priv(dev
), 0, sizeof(struct net_local
));
2302 tms_local
= netdev_priv(dev
);
2303 init_waitqueue_head(&tms_local
->wait_for_tok_int
);
2305 tms_local
->dmalimit
= *pdev
->dma_mask
;
2308 tms_local
->pdev
= pdev
;
2309 tms_local
->dmabuffer
= dma_map_single(pdev
, (void *)tms_local
,
2310 sizeof(struct net_local
), DMA_BIDIRECTIONAL
);
2311 if (tms_local
->dmabuffer
+ sizeof(struct net_local
) >
2312 tms_local
->dmalimit
)
2314 printk(KERN_INFO
"%s: Memory not accessible for DMA\n",
2320 dev
->netdev_ops
= &tms380tr_netdev_ops
;
2321 dev
->watchdog_timeo
= HZ
;
2326 EXPORT_SYMBOL(tms380tr_open
);
2327 EXPORT_SYMBOL(tms380tr_close
);
2328 EXPORT_SYMBOL(tms380tr_interrupt
);
2329 EXPORT_SYMBOL(tmsdev_init
);
2330 EXPORT_SYMBOL(tmsdev_term
);
2331 EXPORT_SYMBOL(tms380tr_wait
);
2335 static struct module
*TMS380_module
= NULL
;
2337 int init_module(void)
2339 printk(KERN_DEBUG
"%s", version
);
2341 TMS380_module
= &__this_module
;
2345 void cleanup_module(void)
2347 TMS380_module
= NULL
;
2351 MODULE_LICENSE("GPL");