5 * Copyright Information:
6 * Copyright SysKonnect 1998,1999.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * The information in this file is provided "AS IS" without warranty.
16 * A Linux device driver supporting the SysKonnect FDDI PCI controller
20 * CG Christoph Goos (cgoos@syskonnect.de)
25 * Address all question to:
28 * The technical manual for the adapters is available from SysKonnect's
29 * web pages: www.syskonnect.com
30 * Goto "Support" and search Knowledge Base for "manual".
32 * Driver Architecture:
33 * The driver architecture is based on the DEC FDDI driver by
34 * Lawrence V. Stefani and several ethernet drivers.
35 * I also used an existing Windows NT miniport driver.
36 * All hardware dependent fuctions are handled by the SysKonnect
38 * The only headerfiles that are directly related to this source
39 * are skfddi.c, h/types.h, h/osdef1st.h, h/targetos.h.
40 * The others belong to the SysKonnect FDDI Hardware Module and
41 * should better not be changed.
43 * Modification History:
44 * Date Name Description
45 * 02-Mar-98 CG Created.
47 * 10-Mar-99 CG Support for 2.2.x added.
48 * 25-Mar-99 CG Corrected IRQ routing for SMP (APIC)
49 * 26-Oct-99 CG Fixed compilation error on 2.2.13
50 * 12-Nov-99 CG Source code release
51 * 22-Nov-99 CG Included in kernel source.
52 * 07-May-00 DM 64 bit fixes, new dma interface
53 * 31-Jul-03 DB Audit copy_*_user in skfp_ioctl
54 * Daniele Bellucci <bellucda@tiscali.it>
55 * 03-Dec-03 SH Convert to PCI device model
57 * Compilation options (-Dxxx):
58 * DRIVERDEBUG print lots of messages to log file
59 * DUMPPACKETS print received/transmitted packets to logfile
61 * Tested cpu architectures:
66 /* Version information string - should be updated prior to */
67 /* each new release!!! */
68 #define VERSION "2.07"
70 static const char *boot_msg
=
71 "SysKonnect FDDI PCI Adapter driver v" VERSION
" for\n"
72 " SK-55xx/SK-58xx adapters (SK-NET FDDI-FP/UP/LP)";
76 #include <linux/module.h>
77 #include <linux/kernel.h>
78 #include <linux/errno.h>
79 #include <linux/ioport.h>
80 #include <linux/slab.h>
81 #include <linux/interrupt.h>
82 #include <linux/pci.h>
83 #include <linux/netdevice.h>
84 #include <linux/fddidevice.h>
85 #include <linux/skbuff.h>
86 #include <linux/bitops.h>
88 #include <asm/byteorder.h>
90 #include <asm/uaccess.h>
93 #undef ADDR // undo Linux definition
97 #include "h/smtstate.h"
100 // Define module-wide (static) routines
101 static int skfp_driver_init(struct net_device
*dev
);
102 static int skfp_open(struct net_device
*dev
);
103 static int skfp_close(struct net_device
*dev
);
104 static irqreturn_t
skfp_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
);
105 static struct net_device_stats
*skfp_ctl_get_stats(struct net_device
*dev
);
106 static void skfp_ctl_set_multicast_list(struct net_device
*dev
);
107 static void skfp_ctl_set_multicast_list_wo_lock(struct net_device
*dev
);
108 static int skfp_ctl_set_mac_address(struct net_device
*dev
, void *addr
);
109 static int skfp_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
110 static int skfp_send_pkt(struct sk_buff
*skb
, struct net_device
*dev
);
111 static void send_queued_packets(struct s_smc
*smc
);
112 static void CheckSourceAddress(unsigned char *frame
, unsigned char *hw_addr
);
113 static void ResetAdapter(struct s_smc
*smc
);
116 // Functions needed by the hardware module
117 void *mac_drv_get_space(struct s_smc
*smc
, u_int size
);
118 void *mac_drv_get_desc_mem(struct s_smc
*smc
, u_int size
);
119 unsigned long mac_drv_virt2phys(struct s_smc
*smc
, void *virt
);
120 unsigned long dma_master(struct s_smc
*smc
, void *virt
, int len
, int flag
);
121 void dma_complete(struct s_smc
*smc
, volatile union s_fp_descr
*descr
,
123 void mac_drv_tx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_txd
*txd
);
124 void llc_restart_tx(struct s_smc
*smc
);
125 void mac_drv_rx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
126 int frag_count
, int len
);
127 void mac_drv_requeue_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
129 void mac_drv_fill_rxd(struct s_smc
*smc
);
130 void mac_drv_clear_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
132 int mac_drv_rx_init(struct s_smc
*smc
, int len
, int fc
, char *look_ahead
,
134 void dump_data(unsigned char *Data
, int length
);
136 // External functions from the hardware module
137 extern u_int
mac_drv_check_space(void);
138 extern void read_address(struct s_smc
*smc
, u_char
* mac_addr
);
139 extern void card_stop(struct s_smc
*smc
);
140 extern int mac_drv_init(struct s_smc
*smc
);
141 extern void hwm_tx_frag(struct s_smc
*smc
, char far
* virt
, u_long phys
,
142 int len
, int frame_status
);
143 extern int hwm_tx_init(struct s_smc
*smc
, u_char fc
, int frag_count
,
144 int frame_len
, int frame_status
);
145 extern int init_smt(struct s_smc
*smc
, u_char
* mac_addr
);
146 extern void fddi_isr(struct s_smc
*smc
);
147 extern void hwm_rx_frag(struct s_smc
*smc
, char far
* virt
, u_long phys
,
148 int len
, int frame_status
);
149 extern void mac_drv_rx_mode(struct s_smc
*smc
, int mode
);
150 extern void mac_drv_clear_rx_queue(struct s_smc
*smc
);
151 extern void enable_tx_irq(struct s_smc
*smc
, u_short queue
);
153 static struct pci_device_id skfddi_pci_tbl
[] = {
154 { PCI_VENDOR_ID_SK
, PCI_DEVICE_ID_SK_FP
, PCI_ANY_ID
, PCI_ANY_ID
, },
155 { } /* Terminating entry */
157 MODULE_DEVICE_TABLE(pci
, skfddi_pci_tbl
);
158 MODULE_LICENSE("GPL");
159 MODULE_AUTHOR("Mirko Lindner <mlindner@syskonnect.de>");
161 // Define module-wide (static) variables
163 static int num_boards
; /* total number of adapters configured */
166 #define PRINTK(s, args...) printk(s, ## args)
168 #define PRINTK(s, args...)
169 #endif // DRIVERDEBUG
177 * Probes for supported FDDI PCI controllers
183 * pdev - pointer to PCI device information
185 * Functional Description:
186 * This is now called by PCI driver registration process
187 * for each board found.
190 * 0 - This device (fddi0, fddi1, etc) configured successfully
191 * -ENODEV - No devices present, or no SysKonnect FDDI PCI device
192 * present for this device name
196 * Device structures for FDDI adapters (fddi0, fddi1, etc) are
197 * initialized and the board resources are read and stored in
198 * the device structure.
200 static int skfp_init_one(struct pci_dev
*pdev
,
201 const struct pci_device_id
*ent
)
203 struct net_device
*dev
;
204 struct s_smc
*smc
; /* board pointer */
208 PRINTK(KERN_INFO
"entering skfp_init_one\n");
211 printk("%s\n", boot_msg
);
213 err
= pci_enable_device(pdev
);
217 err
= pci_request_regions(pdev
, "skfddi");
221 pci_set_master(pdev
);
224 if (!(pci_resource_flags(pdev
, 0) & IORESOURCE_MEM
)) {
225 printk(KERN_ERR
"skfp: region is not an MMIO resource\n");
230 mem
= ioremap(pci_resource_start(pdev
, 0), 0x4000);
232 if (!(pci_resource_flags(pdev
, 1) & IO_RESOURCE_IO
)) {
233 printk(KERN_ERR
"skfp: region is not PIO resource\n");
238 mem
= ioport_map(pci_resource_start(pdev
, 1), FP_IO_LEN
);
241 printk(KERN_ERR
"skfp: Unable to map register, "
242 "FDDI adapter will be disabled.\n");
247 dev
= alloc_fddidev(sizeof(struct s_smc
));
249 printk(KERN_ERR
"skfp: Unable to allocate fddi device, "
250 "FDDI adapter will be disabled.\n");
255 dev
->irq
= pdev
->irq
;
256 dev
->get_stats
= &skfp_ctl_get_stats
;
257 dev
->open
= &skfp_open
;
258 dev
->stop
= &skfp_close
;
259 dev
->hard_start_xmit
= &skfp_send_pkt
;
260 dev
->set_multicast_list
= &skfp_ctl_set_multicast_list
;
261 dev
->set_mac_address
= &skfp_ctl_set_mac_address
;
262 dev
->do_ioctl
= &skfp_ioctl
;
263 dev
->header_cache_update
= NULL
; /* not supported */
265 SET_MODULE_OWNER(dev
);
266 SET_NETDEV_DEV(dev
, &pdev
->dev
);
268 /* Initialize board structure with bus-specific info */
269 smc
= netdev_priv(dev
);
271 smc
->os
.bus_type
= SK_BUS_TYPE_PCI
;
272 smc
->os
.pdev
= *pdev
;
273 smc
->os
.QueueSkb
= MAX_TX_QUEUE_LEN
;
274 smc
->os
.MaxFrameSize
= MAX_FRAME_SIZE
;
278 smc
->os
.ResetRequested
= FALSE
;
279 skb_queue_head_init(&smc
->os
.SendSkbQueue
);
281 dev
->base_addr
= (unsigned long)mem
;
283 err
= skfp_driver_init(dev
);
287 err
= register_netdev(dev
);
292 pci_set_drvdata(pdev
, dev
);
294 if ((pdev
->subsystem_device
& 0xff00) == 0x5500 ||
295 (pdev
->subsystem_device
& 0xff00) == 0x5800)
296 printk("%s: SysKonnect FDDI PCI adapter"
297 " found (SK-%04X)\n", dev
->name
,
298 pdev
->subsystem_device
);
300 printk("%s: FDDI PCI adapter found\n", dev
->name
);
304 if (smc
->os
.SharedMemAddr
)
305 pci_free_consistent(pdev
, smc
->os
.SharedMemSize
,
306 smc
->os
.SharedMemAddr
,
307 smc
->os
.SharedMemDMA
);
308 pci_free_consistent(pdev
, MAX_FRAME_SIZE
,
309 smc
->os
.LocalRxBuffer
, smc
->os
.LocalRxBufferDMA
);
319 pci_release_regions(pdev
);
321 pci_disable_device(pdev
);
326 * Called for each adapter board from pci_unregister_driver
328 static void __devexit
skfp_remove_one(struct pci_dev
*pdev
)
330 struct net_device
*p
= pci_get_drvdata(pdev
);
331 struct s_smc
*lp
= netdev_priv(p
);
333 unregister_netdev(p
);
335 if (lp
->os
.SharedMemAddr
) {
336 pci_free_consistent(&lp
->os
.pdev
,
337 lp
->os
.SharedMemSize
,
338 lp
->os
.SharedMemAddr
,
339 lp
->os
.SharedMemDMA
);
340 lp
->os
.SharedMemAddr
= NULL
;
342 if (lp
->os
.LocalRxBuffer
) {
343 pci_free_consistent(&lp
->os
.pdev
,
345 lp
->os
.LocalRxBuffer
,
346 lp
->os
.LocalRxBufferDMA
);
347 lp
->os
.LocalRxBuffer
= NULL
;
352 ioport_unmap(lp
->hw
.iop
);
354 pci_release_regions(pdev
);
357 pci_disable_device(pdev
);
358 pci_set_drvdata(pdev
, NULL
);
362 * ====================
363 * = skfp_driver_init =
364 * ====================
367 * Initializes remaining adapter board structure information
368 * and makes sure adapter is in a safe state prior to skfp_open().
374 * dev - pointer to device information
376 * Functional Description:
377 * This function allocates additional resources such as the host memory
378 * blocks needed by the adapter.
379 * The adapter is also reset. The OS must call skfp_open() to open
380 * the adapter and bring it on-line.
383 * 0 - initialization succeeded
384 * -1 - initialization failed
386 static int skfp_driver_init(struct net_device
*dev
)
388 struct s_smc
*smc
= netdev_priv(dev
);
389 skfddi_priv
*bp
= &smc
->os
;
392 PRINTK(KERN_INFO
"entering skfp_driver_init\n");
394 // set the io address in private structures
395 bp
->base_addr
= dev
->base_addr
;
397 // Get the interrupt level from the PCI Configuration Table
398 smc
->hw
.irq
= dev
->irq
;
400 spin_lock_init(&bp
->DriverLock
);
402 // Allocate invalid frame
403 bp
->LocalRxBuffer
= pci_alloc_consistent(&bp
->pdev
, MAX_FRAME_SIZE
, &bp
->LocalRxBufferDMA
);
404 if (!bp
->LocalRxBuffer
) {
405 printk("could not allocate mem for ");
406 printk("LocalRxBuffer: %d byte\n", MAX_FRAME_SIZE
);
410 // Determine the required size of the 'shared' memory area.
411 bp
->SharedMemSize
= mac_drv_check_space();
412 PRINTK(KERN_INFO
"Memory for HWM: %ld\n", bp
->SharedMemSize
);
413 if (bp
->SharedMemSize
> 0) {
414 bp
->SharedMemSize
+= 16; // for descriptor alignment
416 bp
->SharedMemAddr
= pci_alloc_consistent(&bp
->pdev
,
419 if (!bp
->SharedMemSize
) {
420 printk("could not allocate mem for ");
421 printk("hardware module: %ld byte\n",
425 bp
->SharedMemHeap
= 0; // Nothing used yet.
428 bp
->SharedMemAddr
= NULL
;
429 bp
->SharedMemHeap
= 0;
430 } // SharedMemSize > 0
432 memset(bp
->SharedMemAddr
, 0, bp
->SharedMemSize
);
434 card_stop(smc
); // Reset adapter.
436 PRINTK(KERN_INFO
"mac_drv_init()..\n");
437 if (mac_drv_init(smc
) != 0) {
438 PRINTK(KERN_INFO
"mac_drv_init() failed.\n");
441 read_address(smc
, NULL
);
442 PRINTK(KERN_INFO
"HW-Addr: %02x %02x %02x %02x %02x %02x\n",
443 smc
->hw
.fddi_canon_addr
.a
[0],
444 smc
->hw
.fddi_canon_addr
.a
[1],
445 smc
->hw
.fddi_canon_addr
.a
[2],
446 smc
->hw
.fddi_canon_addr
.a
[3],
447 smc
->hw
.fddi_canon_addr
.a
[4],
448 smc
->hw
.fddi_canon_addr
.a
[5]);
449 memcpy(dev
->dev_addr
, smc
->hw
.fddi_canon_addr
.a
, 6);
451 smt_reset_defaults(smc
, 0);
456 if (bp
->SharedMemAddr
) {
457 pci_free_consistent(&bp
->pdev
,
461 bp
->SharedMemAddr
= NULL
;
463 if (bp
->LocalRxBuffer
) {
464 pci_free_consistent(&bp
->pdev
, MAX_FRAME_SIZE
,
465 bp
->LocalRxBuffer
, bp
->LocalRxBufferDMA
);
466 bp
->LocalRxBuffer
= NULL
;
469 } // skfp_driver_init
484 * dev - pointer to device information
486 * Functional Description:
487 * This function brings the adapter to an operational state.
490 * 0 - Adapter was successfully opened
491 * -EAGAIN - Could not register IRQ
493 static int skfp_open(struct net_device
*dev
)
495 struct s_smc
*smc
= netdev_priv(dev
);
498 PRINTK(KERN_INFO
"entering skfp_open\n");
499 /* Register IRQ - support shared interrupts by passing device ptr */
500 err
= request_irq(dev
->irq
, (void *) skfp_interrupt
, SA_SHIRQ
,
506 * Set current address to factory MAC address
508 * Note: We've already done this step in skfp_driver_init.
509 * However, it's possible that a user has set a node
510 * address override, then closed and reopened the
511 * adapter. Unless we reset the device address field
512 * now, we'll continue to use the existing modified
515 read_address(smc
, NULL
);
516 memcpy(dev
->dev_addr
, smc
->hw
.fddi_canon_addr
.a
, 6);
522 /* Clear local multicast address tables */
523 mac_clear_multicast(smc
);
525 /* Disable promiscuous filter settings */
526 mac_drv_rx_mode(smc
, RX_DISABLE_PROMISC
);
528 netif_start_queue(dev
);
539 * Closes the device/module.
545 * dev - pointer to device information
547 * Functional Description:
548 * This routine closes the adapter and brings it to a safe state.
549 * The interrupt service routine is deregistered with the OS.
550 * The adapter can be opened again with another call to skfp_open().
556 * No further requests for this adapter are made after this routine is
557 * called. skfp_open() can be called to reset and reinitialize the
560 static int skfp_close(struct net_device
*dev
)
562 struct s_smc
*smc
= netdev_priv(dev
);
563 skfddi_priv
*bp
= &smc
->os
;
566 smt_reset_defaults(smc
, 1);
568 mac_drv_clear_tx_queue(smc
);
569 mac_drv_clear_rx_queue(smc
);
571 netif_stop_queue(dev
);
572 /* Deregister (free) IRQ */
573 free_irq(dev
->irq
, dev
);
575 skb_queue_purge(&bp
->SendSkbQueue
);
576 bp
->QueueSkb
= MAX_TX_QUEUE_LEN
;
588 * Interrupt processing routine
594 * irq - interrupt vector
595 * dev_id - pointer to device information
596 * regs - pointer to registers structure
598 * Functional Description:
599 * This routine calls the interrupt processing routine for this adapter. It
600 * disables and reenables adapter interrupts, as appropriate. We can support
601 * shared interrupts since the incoming dev_id pointer provides our device
602 * structure context. All the real work is done in the hardware module.
608 * The interrupt acknowledgement at the hardware level (eg. ACKing the PIC
609 * on Intel-based systems) is done by the operating system outside this
612 * System interrupts are enabled through this call.
615 * Interrupts are disabled, then reenabled at the adapter.
618 irqreturn_t
skfp_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
620 struct net_device
*dev
= (struct net_device
*) dev_id
;
621 struct s_smc
*smc
; /* private board structure pointer */
625 printk("%s: irq %d for unknown device\n", dev
->name
, irq
);
629 smc
= netdev_priv(dev
);
632 // IRQs enabled or disabled ?
633 if (inpd(ADDR(B0_IMSK
)) == 0) {
634 // IRQs are disabled: must be shared interrupt
637 // Note: At this point, IRQs are enabled.
638 if ((inpd(ISR_A
) & smc
->hw
.is_imask
) == 0) { // IRQ?
639 // Adapter did not issue an IRQ: must be shared interrupt
642 CLI_FBI(); // Disable IRQs from our adapter.
643 spin_lock(&bp
->DriverLock
);
645 // Call interrupt handler in hardware module (HWM).
648 if (smc
->os
.ResetRequested
) {
650 smc
->os
.ResetRequested
= FALSE
;
652 spin_unlock(&bp
->DriverLock
);
653 STI_FBI(); // Enable IRQs from our adapter.
660 * ======================
661 * = skfp_ctl_get_stats =
662 * ======================
665 * Get statistics for FDDI adapter
668 * Pointer to FDDI statistics structure
671 * dev - pointer to device information
673 * Functional Description:
674 * Gets current MIB objects from adapter, then
675 * returns FDDI statistics structure as defined
678 * Note: Since the FDDI statistics structure is
679 * still new and the device structure doesn't
680 * have an FDDI-specific get statistics handler,
681 * we'll return the FDDI statistics structure as
682 * a pointer to an Ethernet statistics structure.
683 * That way, at least the first part of the statistics
684 * structure can be decoded properly.
685 * We'll have to pay attention to this routine as the
686 * device structure becomes more mature and LAN media
690 struct net_device_stats
*skfp_ctl_get_stats(struct net_device
*dev
)
692 struct s_smc
*bp
= netdev_priv(dev
);
694 /* Fill the bp->stats structure with driver-maintained counters */
696 bp
->os
.MacStat
.port_bs_flag
[0] = 0x1234;
697 bp
->os
.MacStat
.port_bs_flag
[1] = 0x5678;
698 // goos: need to fill out fddi statistic
700 /* Get FDDI SMT MIB objects */
702 /* Fill the bp->stats structure with the SMT MIB object values */
704 memcpy(bp
->stats
.smt_station_id
, &bp
->cmd_rsp_virt
->smt_mib_get
.smt_station_id
, sizeof(bp
->cmd_rsp_virt
->smt_mib_get
.smt_station_id
));
705 bp
->stats
.smt_op_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_op_version_id
;
706 bp
->stats
.smt_hi_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_hi_version_id
;
707 bp
->stats
.smt_lo_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_lo_version_id
;
708 memcpy(bp
->stats
.smt_user_data
, &bp
->cmd_rsp_virt
->smt_mib_get
.smt_user_data
, sizeof(bp
->cmd_rsp_virt
->smt_mib_get
.smt_user_data
));
709 bp
->stats
.smt_mib_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_mib_version_id
;
710 bp
->stats
.smt_mac_cts
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_mac_ct
;
711 bp
->stats
.smt_non_master_cts
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_non_master_ct
;
712 bp
->stats
.smt_master_cts
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_master_ct
;
713 bp
->stats
.smt_available_paths
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_available_paths
;
714 bp
->stats
.smt_config_capabilities
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_config_capabilities
;
715 bp
->stats
.smt_config_policy
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_config_policy
;
716 bp
->stats
.smt_connection_policy
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_connection_policy
;
717 bp
->stats
.smt_t_notify
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_t_notify
;
718 bp
->stats
.smt_stat_rpt_policy
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_stat_rpt_policy
;
719 bp
->stats
.smt_trace_max_expiration
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_trace_max_expiration
;
720 bp
->stats
.smt_bypass_present
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_bypass_present
;
721 bp
->stats
.smt_ecm_state
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_ecm_state
;
722 bp
->stats
.smt_cf_state
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_cf_state
;
723 bp
->stats
.smt_remote_disconnect_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_remote_disconnect_flag
;
724 bp
->stats
.smt_station_status
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_station_status
;
725 bp
->stats
.smt_peer_wrap_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_peer_wrap_flag
;
726 bp
->stats
.smt_time_stamp
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_msg_time_stamp
.ls
;
727 bp
->stats
.smt_transition_time_stamp
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_transition_time_stamp
.ls
;
728 bp
->stats
.mac_frame_status_functions
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_status_functions
;
729 bp
->stats
.mac_t_max_capability
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_max_capability
;
730 bp
->stats
.mac_tvx_capability
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_tvx_capability
;
731 bp
->stats
.mac_available_paths
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_available_paths
;
732 bp
->stats
.mac_current_path
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_current_path
;
733 memcpy(bp
->stats
.mac_upstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_upstream_nbr
, FDDI_K_ALEN
);
734 memcpy(bp
->stats
.mac_downstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_downstream_nbr
, FDDI_K_ALEN
);
735 memcpy(bp
->stats
.mac_old_upstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_old_upstream_nbr
, FDDI_K_ALEN
);
736 memcpy(bp
->stats
.mac_old_downstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_old_downstream_nbr
, FDDI_K_ALEN
);
737 bp
->stats
.mac_dup_address_test
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_dup_address_test
;
738 bp
->stats
.mac_requested_paths
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_requested_paths
;
739 bp
->stats
.mac_downstream_port_type
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_downstream_port_type
;
740 memcpy(bp
->stats
.mac_smt_address
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_smt_address
, FDDI_K_ALEN
);
741 bp
->stats
.mac_t_req
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_req
;
742 bp
->stats
.mac_t_neg
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_neg
;
743 bp
->stats
.mac_t_max
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_max
;
744 bp
->stats
.mac_tvx_value
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_tvx_value
;
745 bp
->stats
.mac_frame_error_threshold
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_error_threshold
;
746 bp
->stats
.mac_frame_error_ratio
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_error_ratio
;
747 bp
->stats
.mac_rmt_state
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_rmt_state
;
748 bp
->stats
.mac_da_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_da_flag
;
749 bp
->stats
.mac_una_da_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_unda_flag
;
750 bp
->stats
.mac_frame_error_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_error_flag
;
751 bp
->stats
.mac_ma_unitdata_available
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_ma_unitdata_available
;
752 bp
->stats
.mac_hardware_present
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_hardware_present
;
753 bp
->stats
.mac_ma_unitdata_enable
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_ma_unitdata_enable
;
754 bp
->stats
.path_tvx_lower_bound
= bp
->cmd_rsp_virt
->smt_mib_get
.path_tvx_lower_bound
;
755 bp
->stats
.path_t_max_lower_bound
= bp
->cmd_rsp_virt
->smt_mib_get
.path_t_max_lower_bound
;
756 bp
->stats
.path_max_t_req
= bp
->cmd_rsp_virt
->smt_mib_get
.path_max_t_req
;
757 memcpy(bp
->stats
.path_configuration
, &bp
->cmd_rsp_virt
->smt_mib_get
.path_configuration
, sizeof(bp
->cmd_rsp_virt
->smt_mib_get
.path_configuration
));
758 bp
->stats
.port_my_type
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_my_type
[0];
759 bp
->stats
.port_my_type
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_my_type
[1];
760 bp
->stats
.port_neighbor_type
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_neighbor_type
[0];
761 bp
->stats
.port_neighbor_type
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_neighbor_type
[1];
762 bp
->stats
.port_connection_policies
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_policies
[0];
763 bp
->stats
.port_connection_policies
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_policies
[1];
764 bp
->stats
.port_mac_indicated
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_indicated
[0];
765 bp
->stats
.port_mac_indicated
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_indicated
[1];
766 bp
->stats
.port_current_path
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_current_path
[0];
767 bp
->stats
.port_current_path
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_current_path
[1];
768 memcpy(&bp
->stats
.port_requested_paths
[0 * 3], &bp
->cmd_rsp_virt
->smt_mib_get
.port_requested_paths
[0], 3);
769 memcpy(&bp
->stats
.port_requested_paths
[1 * 3], &bp
->cmd_rsp_virt
->smt_mib_get
.port_requested_paths
[1], 3);
770 bp
->stats
.port_mac_placement
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_placement
[0];
771 bp
->stats
.port_mac_placement
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_placement
[1];
772 bp
->stats
.port_available_paths
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_available_paths
[0];
773 bp
->stats
.port_available_paths
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_available_paths
[1];
774 bp
->stats
.port_pmd_class
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pmd_class
[0];
775 bp
->stats
.port_pmd_class
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pmd_class
[1];
776 bp
->stats
.port_connection_capabilities
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_capabilities
[0];
777 bp
->stats
.port_connection_capabilities
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_capabilities
[1];
778 bp
->stats
.port_bs_flag
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_bs_flag
[0];
779 bp
->stats
.port_bs_flag
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_bs_flag
[1];
780 bp
->stats
.port_ler_estimate
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_estimate
[0];
781 bp
->stats
.port_ler_estimate
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_estimate
[1];
782 bp
->stats
.port_ler_cutoff
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_cutoff
[0];
783 bp
->stats
.port_ler_cutoff
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_cutoff
[1];
784 bp
->stats
.port_ler_alarm
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_alarm
[0];
785 bp
->stats
.port_ler_alarm
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_alarm
[1];
786 bp
->stats
.port_connect_state
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connect_state
[0];
787 bp
->stats
.port_connect_state
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connect_state
[1];
788 bp
->stats
.port_pcm_state
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pcm_state
[0];
789 bp
->stats
.port_pcm_state
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pcm_state
[1];
790 bp
->stats
.port_pc_withhold
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pc_withhold
[0];
791 bp
->stats
.port_pc_withhold
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pc_withhold
[1];
792 bp
->stats
.port_ler_flag
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_flag
[0];
793 bp
->stats
.port_ler_flag
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_flag
[1];
794 bp
->stats
.port_hardware_present
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_hardware_present
[0];
795 bp
->stats
.port_hardware_present
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_hardware_present
[1];
798 /* Fill the bp->stats structure with the FDDI counter values */
800 bp
->stats
.mac_frame_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.frame_cnt
.ls
;
801 bp
->stats
.mac_copied_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.copied_cnt
.ls
;
802 bp
->stats
.mac_transmit_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.transmit_cnt
.ls
;
803 bp
->stats
.mac_error_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.error_cnt
.ls
;
804 bp
->stats
.mac_lost_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lost_cnt
.ls
;
805 bp
->stats
.port_lct_fail_cts
[0] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lct_rejects
[0].ls
;
806 bp
->stats
.port_lct_fail_cts
[1] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lct_rejects
[1].ls
;
807 bp
->stats
.port_lem_reject_cts
[0] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lem_rejects
[0].ls
;
808 bp
->stats
.port_lem_reject_cts
[1] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lem_rejects
[1].ls
;
809 bp
->stats
.port_lem_cts
[0] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.link_errors
[0].ls
;
810 bp
->stats
.port_lem_cts
[1] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.link_errors
[1].ls
;
813 return ((struct net_device_stats
*) &bp
->os
.MacStat
);
818 * ==============================
819 * = skfp_ctl_set_multicast_list =
820 * ==============================
823 * Enable/Disable LLC frame promiscuous mode reception
824 * on the adapter and/or update multicast address table.
830 * dev - pointer to device information
832 * Functional Description:
833 * This function acquires the driver lock and only calls
834 * skfp_ctl_set_multicast_list_wo_lock then.
835 * This routine follows a fairly simple algorithm for setting the
836 * adapter filters and CAM:
838 * if IFF_PROMISC flag is set
839 * enable promiscuous mode
841 * disable promiscuous mode
842 * if number of multicast addresses <= max. multicast number
843 * add mc addresses to adapter table
845 * enable promiscuous mode
846 * update adapter filters
849 * Multicast addresses are presented in canonical (LSB) format.
852 * On-board adapter filters are updated.
854 static void skfp_ctl_set_multicast_list(struct net_device
*dev
)
856 struct s_smc
*smc
= netdev_priv(dev
);
857 skfddi_priv
*bp
= &smc
->os
;
860 spin_lock_irqsave(&bp
->DriverLock
, Flags
);
861 skfp_ctl_set_multicast_list_wo_lock(dev
);
862 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
864 } // skfp_ctl_set_multicast_list
868 static void skfp_ctl_set_multicast_list_wo_lock(struct net_device
*dev
)
870 struct s_smc
*smc
= netdev_priv(dev
);
871 struct dev_mc_list
*dmi
; /* ptr to multicast addr entry */
874 /* Enable promiscuous mode, if necessary */
875 if (dev
->flags
& IFF_PROMISC
) {
876 mac_drv_rx_mode(smc
, RX_ENABLE_PROMISC
);
877 PRINTK(KERN_INFO
"PROMISCUOUS MODE ENABLED\n");
879 /* Else, update multicast address table */
881 mac_drv_rx_mode(smc
, RX_DISABLE_PROMISC
);
882 PRINTK(KERN_INFO
"PROMISCUOUS MODE DISABLED\n");
884 // Reset all MC addresses
885 mac_clear_multicast(smc
);
886 mac_drv_rx_mode(smc
, RX_DISABLE_ALLMULTI
);
888 if (dev
->flags
& IFF_ALLMULTI
) {
889 mac_drv_rx_mode(smc
, RX_ENABLE_ALLMULTI
);
890 PRINTK(KERN_INFO
"ENABLE ALL MC ADDRESSES\n");
891 } else if (dev
->mc_count
> 0) {
892 if (dev
->mc_count
<= FPMAX_MULTICAST
) {
893 /* use exact filtering */
895 // point to first multicast addr
898 for (i
= 0; i
< dev
->mc_count
; i
++) {
899 mac_add_multicast(smc
,
900 (struct fddi_addr
*)dmi
->dmi_addr
,
903 PRINTK(KERN_INFO
"ENABLE MC ADDRESS:");
904 PRINTK(" %02x %02x %02x ",
908 PRINTK("%02x %02x %02x\n",
915 } else { // more MC addresses than HW supports
917 mac_drv_rx_mode(smc
, RX_ENABLE_ALLMULTI
);
918 PRINTK(KERN_INFO
"ENABLE ALL MC ADDRESSES\n");
920 } else { // no MC addresses
922 PRINTK(KERN_INFO
"DISABLE ALL MC ADDRESSES\n");
925 /* Update adapter filters */
926 mac_update_multicast(smc
);
929 } // skfp_ctl_set_multicast_list_wo_lock
933 * ===========================
934 * = skfp_ctl_set_mac_address =
935 * ===========================
938 * set new mac address on adapter and update dev_addr field in device table.
944 * dev - pointer to device information
945 * addr - pointer to sockaddr structure containing unicast address to set
948 * The address pointed to by addr->sa_data is a valid unicast
949 * address and is presented in canonical (LSB) format.
951 static int skfp_ctl_set_mac_address(struct net_device
*dev
, void *addr
)
953 struct s_smc
*smc
= netdev_priv(dev
);
954 struct sockaddr
*p_sockaddr
= (struct sockaddr
*) addr
;
955 skfddi_priv
*bp
= &smc
->os
;
959 memcpy(dev
->dev_addr
, p_sockaddr
->sa_data
, FDDI_K_ALEN
);
960 spin_lock_irqsave(&bp
->DriverLock
, Flags
);
962 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
964 return (0); /* always return zero */
965 } // skfp_ctl_set_mac_address
975 * Perform IOCTL call functions here. Some are privileged operations and the
976 * effective uid is checked in those cases.
984 * dev - pointer to device information
985 * rq - pointer to ioctl request structure
991 static int skfp_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
993 struct s_smc
*smc
= netdev_priv(dev
);
994 skfddi_priv
*lp
= &smc
->os
;
995 struct s_skfp_ioctl ioc
;
998 if (copy_from_user(&ioc
, rq
->ifr_data
, sizeof(struct s_skfp_ioctl
)))
1002 case SKFP_GET_STATS
: /* Get the driver statistics */
1003 ioc
.len
= sizeof(lp
->MacStat
);
1004 status
= copy_to_user(ioc
.data
, skfp_ctl_get_stats(dev
), ioc
.len
)
1007 case SKFP_CLR_STATS
: /* Zero out the driver statistics */
1008 if (!capable(CAP_NET_ADMIN
)) {
1009 memset(&lp
->MacStat
, 0, sizeof(lp
->MacStat
));
1015 printk("ioctl for %s: unknow cmd: %04x\n", dev
->name
, ioc
.cmd
);
1016 status
= -EOPNOTSUPP
;
1025 * =====================
1027 * =====================
1030 * Queues a packet for transmission and try to transmit it.
1036 * skb - pointer to sk_buff to queue for transmission
1037 * dev - pointer to device information
1039 * Functional Description:
1040 * Here we assume that an incoming skb transmit request
1041 * is contained in a single physically contiguous buffer
1042 * in which the virtual address of the start of packet
1043 * (skb->data) can be converted to a physical address
1044 * by using pci_map_single().
1046 * We have an internal queue for packets we can not send
1047 * immediately. Packets in this queue can be given to the
1048 * adapter if transmit buffers are freed.
1050 * We can't free the skb until after it's been DMA'd
1051 * out by the adapter, so we'll keep it in the driver and
1052 * return it in mac_drv_tx_complete.
1055 * 0 - driver has queued and/or sent packet
1056 * 1 - caller should requeue the sk_buff for later transmission
1059 * The entire packet is stored in one physically
1060 * contiguous buffer which is not cached and whose
1061 * 32-bit physical address can be determined.
1063 * It's vital that this routine is NOT reentered for the
1064 * same board and that the OS is not in another section of
1065 * code (eg. skfp_interrupt) for the same board on a
1071 static int skfp_send_pkt(struct sk_buff
*skb
, struct net_device
*dev
)
1073 struct s_smc
*smc
= netdev_priv(dev
);
1074 skfddi_priv
*bp
= &smc
->os
;
1076 PRINTK(KERN_INFO
"skfp_send_pkt\n");
1079 * Verify that incoming transmit request is OK
1081 * Note: The packet size check is consistent with other
1082 * Linux device drivers, although the correct packet
1083 * size should be verified before calling the
1087 if (!(skb
->len
>= FDDI_K_LLC_ZLEN
&& skb
->len
<= FDDI_K_LLC_LEN
)) {
1088 bp
->MacStat
.gen
.tx_errors
++; /* bump error counter */
1089 // dequeue packets from xmt queue and send them
1090 netif_start_queue(dev
);
1092 return (0); /* return "success" */
1094 if (bp
->QueueSkb
== 0) { // return with tbusy set: queue full
1096 netif_stop_queue(dev
);
1100 skb_queue_tail(&bp
->SendSkbQueue
, skb
);
1101 send_queued_packets(netdev_priv(dev
));
1102 if (bp
->QueueSkb
== 0) {
1103 netif_stop_queue(dev
);
1105 dev
->trans_start
= jiffies
;
1112 * =======================
1113 * = send_queued_packets =
1114 * =======================
1117 * Send packets from the driver queue as long as there are some and
1118 * transmit resources are available.
1124 * smc - pointer to smc (adapter) structure
1126 * Functional Description:
1127 * Take a packet from queue if there is any. If not, then we are done.
1128 * Check if there are resources to send the packet. If not, requeue it
1130 * Set packet descriptor flags and give packet to adapter.
1131 * Check if any send resources can be freed (we do not use the
1132 * transmit complete interrupt).
1134 static void send_queued_packets(struct s_smc
*smc
)
1136 skfddi_priv
*bp
= &smc
->os
;
1137 struct sk_buff
*skb
;
1140 struct s_smt_fp_txd
*txd
; // Current TxD.
1141 dma_addr_t dma_address
;
1142 unsigned long Flags
;
1144 int frame_status
; // HWM tx frame status.
1146 PRINTK(KERN_INFO
"send queued packets\n");
1148 // send first buffer from queue
1149 skb
= skb_dequeue(&bp
->SendSkbQueue
);
1152 PRINTK(KERN_INFO
"queue empty\n");
1156 spin_lock_irqsave(&bp
->DriverLock
, Flags
);
1158 queue
= (fc
& FC_SYNC_BIT
) ? QUEUE_S
: QUEUE_A0
;
1160 // Check if the frame may/must be sent as a synchronous frame.
1162 if ((fc
& ~(FC_SYNC_BIT
| FC_LLC_PRIOR
)) == FC_ASYNC_LLC
) {
1163 // It's an LLC frame.
1164 if (!smc
->ess
.sync_bw_available
)
1165 fc
&= ~FC_SYNC_BIT
; // No bandwidth available.
1167 else { // Bandwidth is available.
1169 if (smc
->mib
.fddiESSSynchTxMode
) {
1170 // Send as sync. frame.
1176 frame_status
= hwm_tx_init(smc
, fc
, 1, skb
->len
, queue
);
1178 if ((frame_status
& (LOC_TX
| LAN_TX
)) == 0) {
1179 // Unable to send the frame.
1181 if ((frame_status
& RING_DOWN
) != 0) {
1183 PRINTK("Tx attempt while ring down.\n");
1184 } else if ((frame_status
& OUT_OF_TXD
) != 0) {
1185 PRINTK("%s: out of TXDs.\n", bp
->dev
->name
);
1187 PRINTK("%s: out of transmit resources",
1191 // Note: We will retry the operation as soon as
1192 // transmit resources become available.
1193 skb_queue_head(&bp
->SendSkbQueue
, skb
);
1194 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
1195 return; // Packet has been queued.
1197 } // if (unable to send frame)
1199 bp
->QueueSkb
++; // one packet less in local queue
1201 // source address in packet ?
1202 CheckSourceAddress(skb
->data
, smc
->hw
.fddi_canon_addr
.a
);
1204 txd
= (struct s_smt_fp_txd
*) HWM_GET_CURR_TXD(smc
, queue
);
1206 dma_address
= pci_map_single(&bp
->pdev
, skb
->data
,
1207 skb
->len
, PCI_DMA_TODEVICE
);
1208 if (frame_status
& LAN_TX
) {
1209 txd
->txd_os
.skb
= skb
; // save skb
1210 txd
->txd_os
.dma_addr
= dma_address
; // save dma mapping
1212 hwm_tx_frag(smc
, skb
->data
, dma_address
, skb
->len
,
1213 frame_status
| FIRST_FRAG
| LAST_FRAG
| EN_IRQ_EOF
);
1215 if (!(frame_status
& LAN_TX
)) { // local only frame
1216 pci_unmap_single(&bp
->pdev
, dma_address
,
1217 skb
->len
, PCI_DMA_TODEVICE
);
1218 dev_kfree_skb_irq(skb
);
1220 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
1223 return; // never reached
1225 } // send_queued_packets
1228 /************************
1230 * CheckSourceAddress
1232 * Verify if the source address is set. Insert it if necessary.
1234 ************************/
1235 void CheckSourceAddress(unsigned char *frame
, unsigned char *hw_addr
)
1237 unsigned char SRBit
;
1239 if ((((unsigned long) frame
[1 + 6]) & ~0x01) != 0) // source routing bit
1242 if ((unsigned short) frame
[1 + 10] != 0)
1244 SRBit
= frame
[1 + 6] & 0x01;
1245 memcpy(&frame
[1 + 6], hw_addr
, 6);
1247 } // CheckSourceAddress
1250 /************************
1254 * Reset the adapter and bring it back to operational mode.
1256 * smc - A pointer to the SMT context struct.
1260 ************************/
1261 static void ResetAdapter(struct s_smc
*smc
)
1264 PRINTK(KERN_INFO
"[fddi: ResetAdapter]\n");
1266 // Stop the adapter.
1268 card_stop(smc
); // Stop all activity.
1270 // Clear the transmit and receive descriptor queues.
1271 mac_drv_clear_tx_queue(smc
);
1272 mac_drv_clear_rx_queue(smc
);
1274 // Restart the adapter.
1276 smt_reset_defaults(smc
, 1); // Initialize the SMT module.
1278 init_smt(smc
, (smc
->os
.dev
)->dev_addr
); // Initialize the hardware.
1280 smt_online(smc
, 1); // Insert into the ring again.
1283 // Restore original receive mode (multicasts, promiscuous, etc.).
1284 skfp_ctl_set_multicast_list_wo_lock(smc
->os
.dev
);
1288 //--------------- functions called by hardware module ----------------
1290 /************************
1294 * The hardware driver calls this routine when the transmit complete
1295 * interrupt bits (end of frame) for the synchronous or asynchronous
1298 * NOTE The hardware driver calls this function also if no packets are queued.
1299 * The routine must be able to handle this case.
1301 * smc - A pointer to the SMT context struct.
1305 ************************/
1306 void llc_restart_tx(struct s_smc
*smc
)
1308 skfddi_priv
*bp
= &smc
->os
;
1310 PRINTK(KERN_INFO
"[llc_restart_tx]\n");
1312 // Try to send queued packets
1313 spin_unlock(&bp
->DriverLock
);
1314 send_queued_packets(smc
);
1315 spin_lock(&bp
->DriverLock
);
1316 netif_start_queue(bp
->dev
);// system may send again if it was blocked
1321 /************************
1325 * The hardware module calls this function to allocate the memory
1326 * for the SMT MBufs if the define MB_OUTSIDE_SMC is specified.
1328 * smc - A pointer to the SMT context struct.
1330 * size - Size of memory in bytes to allocate.
1332 * != 0 A pointer to the virtual address of the allocated memory.
1333 * == 0 Allocation error.
1335 ************************/
1336 void *mac_drv_get_space(struct s_smc
*smc
, unsigned int size
)
1340 PRINTK(KERN_INFO
"mac_drv_get_space (%d bytes), ", size
);
1341 virt
= (void *) (smc
->os
.SharedMemAddr
+ smc
->os
.SharedMemHeap
);
1343 if ((smc
->os
.SharedMemHeap
+ size
) > smc
->os
.SharedMemSize
) {
1344 printk("Unexpected SMT memory size requested: %d\n", size
);
1347 smc
->os
.SharedMemHeap
+= size
; // Move heap pointer.
1349 PRINTK(KERN_INFO
"mac_drv_get_space end\n");
1350 PRINTK(KERN_INFO
"virt addr: %lx\n", (ulong
) virt
);
1351 PRINTK(KERN_INFO
"bus addr: %lx\n", (ulong
)
1352 (smc
->os
.SharedMemDMA
+
1353 ((char *) virt
- (char *)smc
->os
.SharedMemAddr
)));
1355 } // mac_drv_get_space
1358 /************************
1360 * mac_drv_get_desc_mem
1362 * This function is called by the hardware dependent module.
1363 * It allocates the memory for the RxD and TxD descriptors.
1365 * This memory must be non-cached, non-movable and non-swappable.
1366 * This memory should start at a physical page boundary.
1368 * smc - A pointer to the SMT context struct.
1370 * size - Size of memory in bytes to allocate.
1372 * != 0 A pointer to the virtual address of the allocated memory.
1373 * == 0 Allocation error.
1375 ************************/
1376 void *mac_drv_get_desc_mem(struct s_smc
*smc
, unsigned int size
)
1381 PRINTK(KERN_INFO
"mac_drv_get_desc_mem\n");
1383 // Descriptor memory must be aligned on 16-byte boundary.
1385 virt
= mac_drv_get_space(smc
, size
);
1387 size
= (u_int
) (16 - (((unsigned long) virt
) & 15UL));
1390 PRINTK("Allocate %u bytes alignment gap ", size
);
1391 PRINTK("for descriptor memory.\n");
1393 if (!mac_drv_get_space(smc
, size
)) {
1394 printk("fddi: Unable to align descriptor memory.\n");
1397 return (virt
+ size
);
1398 } // mac_drv_get_desc_mem
1401 /************************
1405 * Get the physical address of a given virtual address.
1407 * smc - A pointer to the SMT context struct.
1409 * virt - A (virtual) pointer into our 'shared' memory area.
1411 * Physical address of the given virtual address.
1413 ************************/
1414 unsigned long mac_drv_virt2phys(struct s_smc
*smc
, void *virt
)
1416 return (smc
->os
.SharedMemDMA
+
1417 ((char *) virt
- (char *)smc
->os
.SharedMemAddr
));
1418 } // mac_drv_virt2phys
1421 /************************
1425 * The HWM calls this function, when the driver leads through a DMA
1426 * transfer. If the OS-specific module must prepare the system hardware
1427 * for the DMA transfer, it should do it in this function.
1429 * The hardware module calls this dma_master if it wants to send an SMT
1430 * frame. This means that the virt address passed in here is part of
1431 * the 'shared' memory area.
1433 * smc - A pointer to the SMT context struct.
1435 * virt - The virtual address of the data.
1437 * len - The length in bytes of the data.
1439 * flag - Indicates the transmit direction and the buffer type:
1440 * DMA_RD (0x01) system RAM ==> adapter buffer memory
1441 * DMA_WR (0x02) adapter buffer memory ==> system RAM
1442 * SMT_BUF (0x80) SMT buffer
1444 * >> NOTE: SMT_BUF and DMA_RD are always set for PCI. <<
1446 * Returns the pyhsical address for the DMA transfer.
1448 ************************/
1449 u_long
dma_master(struct s_smc
* smc
, void *virt
, int len
, int flag
)
1451 return (smc
->os
.SharedMemDMA
+
1452 ((char *) virt
- (char *)smc
->os
.SharedMemAddr
));
1456 /************************
1460 * The hardware module calls this routine when it has completed a DMA
1461 * transfer. If the operating system dependent module has set up the DMA
1462 * channel via dma_master() (e.g. Windows NT or AIX) it should clean up
1465 * smc - A pointer to the SMT context struct.
1467 * descr - A pointer to a TxD or RxD, respectively.
1469 * flag - Indicates the DMA transfer direction / SMT buffer:
1470 * DMA_RD (0x01) system RAM ==> adapter buffer memory
1471 * DMA_WR (0x02) adapter buffer memory ==> system RAM
1472 * SMT_BUF (0x80) SMT buffer (managed by HWM)
1476 ************************/
1477 void dma_complete(struct s_smc
*smc
, volatile union s_fp_descr
*descr
, int flag
)
1479 /* For TX buffers, there are two cases. If it is an SMT transmit
1480 * buffer, there is nothing to do since we use consistent memory
1481 * for the 'shared' memory area. The other case is for normal
1482 * transmit packets given to us by the networking stack, and in
1483 * that case we cleanup the PCI DMA mapping in mac_drv_tx_complete
1486 * For RX buffers, we have to unmap dynamic PCI DMA mappings here
1487 * because the hardware module is about to potentially look at
1488 * the contents of the buffer. If we did not call the PCI DMA
1489 * unmap first, the hardware module could read inconsistent data.
1491 if (flag
& DMA_WR
) {
1492 skfddi_priv
*bp
= &smc
->os
;
1493 volatile struct s_smt_fp_rxd
*r
= &descr
->r
;
1495 /* If SKB is NULL, we used the local buffer. */
1496 if (r
->rxd_os
.skb
&& r
->rxd_os
.dma_addr
) {
1497 int MaxFrameSize
= bp
->MaxFrameSize
;
1499 pci_unmap_single(&bp
->pdev
, r
->rxd_os
.dma_addr
,
1500 MaxFrameSize
, PCI_DMA_FROMDEVICE
);
1501 r
->rxd_os
.dma_addr
= 0;
1507 /************************
1509 * mac_drv_tx_complete
1511 * Transmit of a packet is complete. Release the tx staging buffer.
1514 * smc - A pointer to the SMT context struct.
1516 * txd - A pointer to the last TxD which is used by the frame.
1520 ************************/
1521 void mac_drv_tx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_txd
*txd
)
1523 struct sk_buff
*skb
;
1525 PRINTK(KERN_INFO
"entering mac_drv_tx_complete\n");
1526 // Check if this TxD points to a skb
1528 if (!(skb
= txd
->txd_os
.skb
)) {
1529 PRINTK("TXD with no skb assigned.\n");
1532 txd
->txd_os
.skb
= NULL
;
1534 // release the DMA mapping
1535 pci_unmap_single(&smc
->os
.pdev
, txd
->txd_os
.dma_addr
,
1536 skb
->len
, PCI_DMA_TODEVICE
);
1537 txd
->txd_os
.dma_addr
= 0;
1539 smc
->os
.MacStat
.gen
.tx_packets
++; // Count transmitted packets.
1540 smc
->os
.MacStat
.gen
.tx_bytes
+=skb
->len
; // Count bytes
1543 dev_kfree_skb_irq(skb
);
1545 PRINTK(KERN_INFO
"leaving mac_drv_tx_complete\n");
1546 } // mac_drv_tx_complete
1549 /************************
1551 * dump packets to logfile
1553 ************************/
1555 void dump_data(unsigned char *Data
, int length
)
1558 unsigned char s
[255], sh
[10];
1562 printk(KERN_INFO
"---Packet start---\n");
1563 for (i
= 0, j
= 0; i
< length
/ 8; i
++, j
+= 8)
1564 printk(KERN_INFO
"%02x %02x %02x %02x %02x %02x %02x %02x\n",
1565 Data
[j
+ 0], Data
[j
+ 1], Data
[j
+ 2], Data
[j
+ 3],
1566 Data
[j
+ 4], Data
[j
+ 5], Data
[j
+ 6], Data
[j
+ 7]);
1568 for (i
= 0; i
< length
% 8; i
++) {
1569 sprintf(sh
, "%02x ", Data
[j
+ i
]);
1572 printk(KERN_INFO
"%s\n", s
);
1573 printk(KERN_INFO
"------------------\n");
1576 #define dump_data(data,len)
1577 #endif // DUMPPACKETS
1579 /************************
1581 * mac_drv_rx_complete
1583 * The hardware module calls this function if an LLC frame is received
1584 * in a receive buffer. Also the SMT, NSA, and directed beacon frames
1585 * from the network will be passed to the LLC layer by this function
1586 * if passing is enabled.
1588 * mac_drv_rx_complete forwards the frame to the LLC layer if it should
1589 * be received. It also fills the RxD ring with new receive buffers if
1590 * some can be queued.
1592 * smc - A pointer to the SMT context struct.
1594 * rxd - A pointer to the first RxD which is used by the receive frame.
1596 * frag_count - Count of RxDs used by the received frame.
1598 * len - Frame length.
1602 ************************/
1603 void mac_drv_rx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
1604 int frag_count
, int len
)
1606 skfddi_priv
*bp
= &smc
->os
;
1607 struct sk_buff
*skb
;
1608 unsigned char *virt
, *cp
;
1612 PRINTK(KERN_INFO
"entering mac_drv_rx_complete (len=%d)\n", len
);
1613 if (frag_count
!= 1) { // This is not allowed to happen.
1615 printk("fddi: Multi-fragment receive!\n");
1616 goto RequeueRxd
; // Re-use the given RXD(s).
1619 skb
= rxd
->rxd_os
.skb
;
1621 PRINTK(KERN_INFO
"No skb in rxd\n");
1622 smc
->os
.MacStat
.gen
.rx_errors
++;
1627 // The DMA mapping was released in dma_complete above.
1629 dump_data(skb
->data
, len
);
1632 * FDDI Frame format:
1633 * +-------+-------+-------+------------+--------+------------+
1634 * | FC[1] | DA[6] | SA[6] | RIF[0..18] | LLC[3] | Data[0..n] |
1635 * +-------+-------+-------+------------+--------+------------+
1637 * FC = Frame Control
1638 * DA = Destination Address
1639 * SA = Source Address
1640 * RIF = Routing Information Field
1641 * LLC = Logical Link Control
1644 // Remove Routing Information Field (RIF), if present.
1646 if ((virt
[1 + 6] & FDDI_RII
) == 0)
1650 // goos: RIF removal has still to be tested
1651 PRINTK(KERN_INFO
"RIF found\n");
1652 // Get RIF length from Routing Control (RC) field.
1653 cp
= virt
+ FDDI_MAC_HDR_LEN
; // Point behind MAC header.
1655 ri
= ntohs(*((unsigned short *) cp
));
1656 RifLength
= ri
& FDDI_RCF_LEN_MASK
;
1657 if (len
< (int) (FDDI_MAC_HDR_LEN
+ RifLength
)) {
1658 printk("fddi: Invalid RIF.\n");
1659 goto RequeueRxd
; // Discard the frame.
1662 virt
[1 + 6] &= ~FDDI_RII
; // Clear RII bit.
1665 virt
= cp
+ RifLength
;
1666 for (n
= FDDI_MAC_HDR_LEN
; n
; n
--)
1668 // adjust sbd->data pointer
1669 skb_pull(skb
, RifLength
);
1674 // Count statistics.
1675 smc
->os
.MacStat
.gen
.rx_packets
++; // Count indicated receive
1677 smc
->os
.MacStat
.gen
.rx_bytes
+=len
; // Count bytes.
1679 // virt points to header again
1680 if (virt
[1] & 0x01) { // Check group (multicast) bit.
1682 smc
->os
.MacStat
.gen
.multicast
++;
1685 // deliver frame to system
1686 rxd
->rxd_os
.skb
= NULL
;
1688 skb
->protocol
= fddi_type_trans(skb
, bp
->dev
);
1689 skb
->dev
= bp
->dev
; /* pass up device pointer */
1692 bp
->dev
->last_rx
= jiffies
;
1694 HWM_RX_CHECK(smc
, RX_LOW_WATERMARK
);
1698 PRINTK(KERN_INFO
"Rx: re-queue RXD.\n");
1699 mac_drv_requeue_rxd(smc
, rxd
, frag_count
);
1700 smc
->os
.MacStat
.gen
.rx_errors
++; // Count receive packets
1703 } // mac_drv_rx_complete
1706 /************************
1708 * mac_drv_requeue_rxd
1710 * The hardware module calls this function to request the OS-specific
1711 * module to queue the receive buffer(s) represented by the pointer
1712 * to the RxD and the frag_count into the receive queue again. This
1713 * buffer was filled with an invalid frame or an SMT frame.
1715 * smc - A pointer to the SMT context struct.
1717 * rxd - A pointer to the first RxD which is used by the receive frame.
1719 * frag_count - Count of RxDs used by the received frame.
1723 ************************/
1724 void mac_drv_requeue_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
1727 volatile struct s_smt_fp_rxd
*next_rxd
;
1728 volatile struct s_smt_fp_rxd
*src_rxd
;
1729 struct sk_buff
*skb
;
1731 unsigned char *v_addr
;
1734 if (frag_count
!= 1) // This is not allowed to happen.
1736 printk("fddi: Multi-fragment requeue!\n");
1738 MaxFrameSize
= smc
->os
.MaxFrameSize
;
1740 for (; frag_count
> 0; frag_count
--) {
1741 next_rxd
= src_rxd
->rxd_next
;
1742 rxd
= HWM_GET_CURR_RXD(smc
);
1744 skb
= src_rxd
->rxd_os
.skb
;
1745 if (skb
== NULL
) { // this should not happen
1747 PRINTK("Requeue with no skb in rxd!\n");
1748 skb
= alloc_skb(MaxFrameSize
+ 3, GFP_ATOMIC
);
1751 rxd
->rxd_os
.skb
= skb
;
1752 skb_reserve(skb
, 3);
1753 skb_put(skb
, MaxFrameSize
);
1755 b_addr
= pci_map_single(&smc
->os
.pdev
,
1758 PCI_DMA_FROMDEVICE
);
1759 rxd
->rxd_os
.dma_addr
= b_addr
;
1761 // no skb available, use local buffer
1762 PRINTK("Queueing invalid buffer!\n");
1763 rxd
->rxd_os
.skb
= NULL
;
1764 v_addr
= smc
->os
.LocalRxBuffer
;
1765 b_addr
= smc
->os
.LocalRxBufferDMA
;
1768 // we use skb from old rxd
1769 rxd
->rxd_os
.skb
= skb
;
1771 b_addr
= pci_map_single(&smc
->os
.pdev
,
1774 PCI_DMA_FROMDEVICE
);
1775 rxd
->rxd_os
.dma_addr
= b_addr
;
1777 hwm_rx_frag(smc
, v_addr
, b_addr
, MaxFrameSize
,
1778 FIRST_FRAG
| LAST_FRAG
);
1782 } // mac_drv_requeue_rxd
1785 /************************
1789 * The hardware module calls this function at initialization time
1790 * to fill the RxD ring with receive buffers. It is also called by
1791 * mac_drv_rx_complete if rx_free is large enough to queue some new
1792 * receive buffers into the RxD ring. mac_drv_fill_rxd queues new
1793 * receive buffers as long as enough RxDs and receive buffers are
1796 * smc - A pointer to the SMT context struct.
1800 ************************/
1801 void mac_drv_fill_rxd(struct s_smc
*smc
)
1804 unsigned char *v_addr
;
1805 unsigned long b_addr
;
1806 struct sk_buff
*skb
;
1807 volatile struct s_smt_fp_rxd
*rxd
;
1809 PRINTK(KERN_INFO
"entering mac_drv_fill_rxd\n");
1811 // Walk through the list of free receive buffers, passing receive
1812 // buffers to the HWM as long as RXDs are available.
1814 MaxFrameSize
= smc
->os
.MaxFrameSize
;
1815 // Check if there is any RXD left.
1816 while (HWM_GET_RX_FREE(smc
) > 0) {
1817 PRINTK(KERN_INFO
".\n");
1819 rxd
= HWM_GET_CURR_RXD(smc
);
1820 skb
= alloc_skb(MaxFrameSize
+ 3, GFP_ATOMIC
);
1823 skb_reserve(skb
, 3);
1824 skb_put(skb
, MaxFrameSize
);
1826 b_addr
= pci_map_single(&smc
->os
.pdev
,
1829 PCI_DMA_FROMDEVICE
);
1830 rxd
->rxd_os
.dma_addr
= b_addr
;
1832 // no skb available, use local buffer
1833 // System has run out of buffer memory, but we want to
1834 // keep the receiver running in hope of better times.
1835 // Multiple descriptors may point to this local buffer,
1836 // so data in it must be considered invalid.
1837 PRINTK("Queueing invalid buffer!\n");
1838 v_addr
= smc
->os
.LocalRxBuffer
;
1839 b_addr
= smc
->os
.LocalRxBufferDMA
;
1842 rxd
->rxd_os
.skb
= skb
;
1844 // Pass receive buffer to HWM.
1845 hwm_rx_frag(smc
, v_addr
, b_addr
, MaxFrameSize
,
1846 FIRST_FRAG
| LAST_FRAG
);
1848 PRINTK(KERN_INFO
"leaving mac_drv_fill_rxd\n");
1849 } // mac_drv_fill_rxd
1852 /************************
1856 * The hardware module calls this function to release unused
1859 * smc - A pointer to the SMT context struct.
1861 * rxd - A pointer to the first RxD which is used by the receive buffer.
1863 * frag_count - Count of RxDs used by the receive buffer.
1867 ************************/
1868 void mac_drv_clear_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
1872 struct sk_buff
*skb
;
1874 PRINTK("entering mac_drv_clear_rxd\n");
1876 if (frag_count
!= 1) // This is not allowed to happen.
1878 printk("fddi: Multi-fragment clear!\n");
1880 for (; frag_count
> 0; frag_count
--) {
1881 skb
= rxd
->rxd_os
.skb
;
1883 skfddi_priv
*bp
= &smc
->os
;
1884 int MaxFrameSize
= bp
->MaxFrameSize
;
1886 pci_unmap_single(&bp
->pdev
, rxd
->rxd_os
.dma_addr
,
1887 MaxFrameSize
, PCI_DMA_FROMDEVICE
);
1890 rxd
->rxd_os
.skb
= NULL
;
1892 rxd
= rxd
->rxd_next
; // Next RXD.
1895 } // mac_drv_clear_rxd
1898 /************************
1902 * The hardware module calls this routine when an SMT or NSA frame of the
1903 * local SMT should be delivered to the LLC layer.
1905 * It is necessary to have this function, because there is no other way to
1906 * copy the contents of SMT MBufs into receive buffers.
1908 * mac_drv_rx_init allocates the required target memory for this frame,
1909 * and receives the frame fragment by fragment by calling mac_drv_rx_frag.
1911 * smc - A pointer to the SMT context struct.
1913 * len - The length (in bytes) of the received frame (FC, DA, SA, Data).
1915 * fc - The Frame Control field of the received frame.
1917 * look_ahead - A pointer to the lookahead data buffer (may be NULL).
1919 * la_len - The length of the lookahead data stored in the lookahead
1920 * buffer (may be zero).
1922 * Always returns zero (0).
1924 ************************/
1925 int mac_drv_rx_init(struct s_smc
*smc
, int len
, int fc
,
1926 char *look_ahead
, int la_len
)
1928 struct sk_buff
*skb
;
1930 PRINTK("entering mac_drv_rx_init(len=%d)\n", len
);
1932 // "Received" a SMT or NSA frame of the local SMT.
1934 if (len
!= la_len
|| len
< FDDI_MAC_HDR_LEN
|| !look_ahead
) {
1935 PRINTK("fddi: Discard invalid local SMT frame\n");
1936 PRINTK(" len=%d, la_len=%d, (ULONG) look_ahead=%08lXh.\n",
1937 len
, la_len
, (unsigned long) look_ahead
);
1940 skb
= alloc_skb(len
+ 3, GFP_ATOMIC
);
1942 PRINTK("fddi: Local SMT: skb memory exhausted.\n");
1945 skb_reserve(skb
, 3);
1947 memcpy(skb
->data
, look_ahead
, len
);
1949 // deliver frame to system
1950 skb
->protocol
= fddi_type_trans(skb
, smc
->os
.dev
);
1951 skb
->dev
->last_rx
= jiffies
;
1955 } // mac_drv_rx_init
1958 /************************
1962 * This routine is called periodically by the SMT module to clean up the
1965 * Return any queued frames back to the upper protocol layers if the ring
1968 * smc - A pointer to the SMT context struct.
1972 ************************/
1973 void smt_timer_poll(struct s_smc
*smc
)
1978 /************************
1980 * ring_status_indication
1982 * This function indicates a change of the ring state.
1984 * smc - A pointer to the SMT context struct.
1986 * status - The current ring status.
1990 ************************/
1991 void ring_status_indication(struct s_smc
*smc
, u_long status
)
1993 PRINTK("ring_status_indication( ");
1994 if (status
& RS_RES15
)
1995 PRINTK("RS_RES15 ");
1996 if (status
& RS_HARDERROR
)
1997 PRINTK("RS_HARDERROR ");
1998 if (status
& RS_SOFTERROR
)
1999 PRINTK("RS_SOFTERROR ");
2000 if (status
& RS_BEACON
)
2001 PRINTK("RS_BEACON ");
2002 if (status
& RS_PATHTEST
)
2003 PRINTK("RS_PATHTEST ");
2004 if (status
& RS_SELFTEST
)
2005 PRINTK("RS_SELFTEST ");
2006 if (status
& RS_RES9
)
2008 if (status
& RS_DISCONNECT
)
2009 PRINTK("RS_DISCONNECT ");
2010 if (status
& RS_RES7
)
2012 if (status
& RS_DUPADDR
)
2013 PRINTK("RS_DUPADDR ");
2014 if (status
& RS_NORINGOP
)
2015 PRINTK("RS_NORINGOP ");
2016 if (status
& RS_VERSION
)
2017 PRINTK("RS_VERSION ");
2018 if (status
& RS_STUCKBYPASSS
)
2019 PRINTK("RS_STUCKBYPASSS ");
2020 if (status
& RS_EVENT
)
2021 PRINTK("RS_EVENT ");
2022 if (status
& RS_RINGOPCHANGE
)
2023 PRINTK("RS_RINGOPCHANGE ");
2024 if (status
& RS_RES0
)
2027 } // ring_status_indication
2030 /************************
2034 * Gets the current time from the system.
2038 * The current time in TICKS_PER_SECOND.
2040 * TICKS_PER_SECOND has the unit 'count of timer ticks per second'. It is
2041 * defined in "targetos.h". The definition of TICKS_PER_SECOND must comply
2042 * to the time returned by smt_get_time().
2044 ************************/
2045 unsigned long smt_get_time(void)
2051 /************************
2055 * Status counter update (ring_op, fifo full).
2057 * smc - A pointer to the SMT context struct.
2059 * stat - = 0: A ring operational change occurred.
2060 * = 1: The FORMAC FIFO buffer is full / FIFO overflow.
2064 ************************/
2065 void smt_stat_counter(struct s_smc
*smc
, int stat
)
2067 // BOOLEAN RingIsUp ;
2069 PRINTK(KERN_INFO
"smt_stat_counter\n");
2072 PRINTK(KERN_INFO
"Ring operational change.\n");
2075 PRINTK(KERN_INFO
"Receive fifo overflow.\n");
2076 smc
->os
.MacStat
.gen
.rx_errors
++;
2079 PRINTK(KERN_INFO
"Unknown status (%d).\n", stat
);
2082 } // smt_stat_counter
2085 /************************
2089 * Sets CFM state in custom statistics.
2091 * smc - A pointer to the SMT context struct.
2093 * c_state - Possible values are:
2095 * EC0_OUT, EC1_IN, EC2_TRACE, EC3_LEAVE, EC4_PATH_TEST,
2096 * EC5_INSERT, EC6_CHECK, EC7_DEINSERT
2100 ************************/
2101 void cfm_state_change(struct s_smc
*smc
, int c_state
)
2129 s
= "SC10_C_WRAP_B";
2132 s
= "SC11_C_WRAP_S";
2135 PRINTK(KERN_INFO
"cfm_state_change: unknown %d\n", c_state
);
2138 PRINTK(KERN_INFO
"cfm_state_change: %s\n", s
);
2139 #endif // DRIVERDEBUG
2140 } // cfm_state_change
2143 /************************
2147 * Sets ECM state in custom statistics.
2149 * smc - A pointer to the SMT context struct.
2151 * e_state - Possible values are:
2153 * SC0_ISOLATED, SC1_WRAP_A (5), SC2_WRAP_B (6), SC4_THRU_A (12),
2154 * SC5_THRU_B (7), SC7_WRAP_S (8)
2158 ************************/
2159 void ecm_state_change(struct s_smc
*smc
, int e_state
)
2178 s
= "EC4_PATH_TEST";
2193 PRINTK(KERN_INFO
"ecm_state_change: %s\n", s
);
2194 #endif //DRIVERDEBUG
2195 } // ecm_state_change
2198 /************************
2202 * Sets RMT state in custom statistics.
2204 * smc - A pointer to the SMT context struct.
2206 * r_state - Possible values are:
2208 * RM0_ISOLATED, RM1_NON_OP, RM2_RING_OP, RM3_DETECT,
2209 * RM4_NON_OP_DUP, RM5_RING_OP_DUP, RM6_DIRECTED, RM7_TRACE
2213 ************************/
2214 void rmt_state_change(struct s_smc
*smc
, int r_state
)
2224 s
= "RM1_NON_OP - not operational";
2227 s
= "RM2_RING_OP - ring operational";
2230 s
= "RM3_DETECT - detect dupl addresses";
2232 case RM4_NON_OP_DUP
:
2233 s
= "RM4_NON_OP_DUP - dupl. addr detected";
2235 case RM5_RING_OP_DUP
:
2236 s
= "RM5_RING_OP_DUP - ring oper. with dupl. addr";
2239 s
= "RM6_DIRECTED - sending directed beacons";
2242 s
= "RM7_TRACE - trace initiated";
2248 PRINTK(KERN_INFO
"[rmt_state_change: %s]\n", s
);
2249 #endif // DRIVERDEBUG
2250 } // rmt_state_change
2253 /************************
2255 * drv_reset_indication
2257 * This function is called by the SMT when it has detected a severe
2258 * hardware problem. The driver should perform a reset on the adapter
2259 * as soon as possible, but not from within this function.
2261 * smc - A pointer to the SMT context struct.
2265 ************************/
2266 void drv_reset_indication(struct s_smc
*smc
)
2268 PRINTK(KERN_INFO
"entering drv_reset_indication\n");
2270 smc
->os
.ResetRequested
= TRUE
; // Set flag.
2272 } // drv_reset_indication
2274 static struct pci_driver skfddi_pci_driver
= {
2276 .id_table
= skfddi_pci_tbl
,
2277 .probe
= skfp_init_one
,
2278 .remove
= __devexit_p(skfp_remove_one
),
2281 static int __init
skfd_init(void)
2283 return pci_module_init(&skfddi_pci_driver
);
2286 static void __exit
skfd_exit(void)
2288 pci_unregister_driver(&skfddi_pci_driver
);
2291 module_init(skfd_init
);
2292 module_exit(skfd_exit
);