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 functions 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 * const 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/capability.h>
77 #include <linux/module.h>
78 #include <linux/kernel.h>
79 #include <linux/errno.h>
80 #include <linux/ioport.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>
87 #include <linux/gfp.h>
89 #include <asm/byteorder.h>
91 #include <asm/uaccess.h>
94 #undef ADDR // undo Linux definition
98 #include "h/smtstate.h"
101 // Define module-wide (static) routines
102 static int skfp_driver_init(struct net_device
*dev
);
103 static int skfp_open(struct net_device
*dev
);
104 static int skfp_close(struct net_device
*dev
);
105 static irqreturn_t
skfp_interrupt(int irq
, void *dev_id
);
106 static struct net_device_stats
*skfp_ctl_get_stats(struct net_device
*dev
);
107 static void skfp_ctl_set_multicast_list(struct net_device
*dev
);
108 static void skfp_ctl_set_multicast_list_wo_lock(struct net_device
*dev
);
109 static int skfp_ctl_set_mac_address(struct net_device
*dev
, void *addr
);
110 static int skfp_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
111 static netdev_tx_t
skfp_send_pkt(struct sk_buff
*skb
,
112 struct net_device
*dev
);
113 static void send_queued_packets(struct s_smc
*smc
);
114 static void CheckSourceAddress(unsigned char *frame
, unsigned char *hw_addr
);
115 static void ResetAdapter(struct s_smc
*smc
);
118 // Functions needed by the hardware module
119 void *mac_drv_get_space(struct s_smc
*smc
, u_int size
);
120 void *mac_drv_get_desc_mem(struct s_smc
*smc
, u_int size
);
121 unsigned long mac_drv_virt2phys(struct s_smc
*smc
, void *virt
);
122 unsigned long dma_master(struct s_smc
*smc
, void *virt
, int len
, int flag
);
123 void dma_complete(struct s_smc
*smc
, volatile union s_fp_descr
*descr
,
125 void mac_drv_tx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_txd
*txd
);
126 void llc_restart_tx(struct s_smc
*smc
);
127 void mac_drv_rx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
128 int frag_count
, int len
);
129 void mac_drv_requeue_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
131 void mac_drv_fill_rxd(struct s_smc
*smc
);
132 void mac_drv_clear_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
134 int mac_drv_rx_init(struct s_smc
*smc
, int len
, int fc
, char *look_ahead
,
136 void dump_data(unsigned char *Data
, int length
);
138 // External functions from the hardware module
139 extern u_int
mac_drv_check_space(void);
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 void fddi_isr(struct s_smc
*smc
);
146 extern void hwm_rx_frag(struct s_smc
*smc
, char far
* virt
, u_long phys
,
147 int len
, int frame_status
);
148 extern void mac_drv_rx_mode(struct s_smc
*smc
, int mode
);
149 extern void mac_drv_clear_rx_queue(struct s_smc
*smc
);
150 extern void enable_tx_irq(struct s_smc
*smc
, u_short queue
);
152 static const struct pci_device_id skfddi_pci_tbl
[] = {
153 { PCI_VENDOR_ID_SK
, PCI_DEVICE_ID_SK_FP
, PCI_ANY_ID
, PCI_ANY_ID
, },
154 { } /* Terminating entry */
156 MODULE_DEVICE_TABLE(pci
, skfddi_pci_tbl
);
157 MODULE_LICENSE("GPL");
158 MODULE_AUTHOR("Mirko Lindner <mlindner@syskonnect.de>");
160 // Define module-wide (static) variables
162 static int num_boards
; /* total number of adapters configured */
164 static const struct net_device_ops skfp_netdev_ops
= {
165 .ndo_open
= skfp_open
,
166 .ndo_stop
= skfp_close
,
167 .ndo_start_xmit
= skfp_send_pkt
,
168 .ndo_get_stats
= skfp_ctl_get_stats
,
169 .ndo_change_mtu
= fddi_change_mtu
,
170 .ndo_set_rx_mode
= skfp_ctl_set_multicast_list
,
171 .ndo_set_mac_address
= skfp_ctl_set_mac_address
,
172 .ndo_do_ioctl
= skfp_ioctl
,
181 * Probes for supported FDDI PCI controllers
187 * pdev - pointer to PCI device information
189 * Functional Description:
190 * This is now called by PCI driver registration process
191 * for each board found.
194 * 0 - This device (fddi0, fddi1, etc) configured successfully
195 * -ENODEV - No devices present, or no SysKonnect FDDI PCI device
196 * present for this device name
200 * Device structures for FDDI adapters (fddi0, fddi1, etc) are
201 * initialized and the board resources are read and stored in
202 * the device structure.
204 static int skfp_init_one(struct pci_dev
*pdev
,
205 const struct pci_device_id
*ent
)
207 struct net_device
*dev
;
208 struct s_smc
*smc
; /* board pointer */
212 pr_debug("entering skfp_init_one\n");
215 printk("%s\n", boot_msg
);
217 err
= pci_enable_device(pdev
);
221 err
= pci_request_regions(pdev
, "skfddi");
225 pci_set_master(pdev
);
228 if (!(pci_resource_flags(pdev
, 0) & IORESOURCE_MEM
)) {
229 printk(KERN_ERR
"skfp: region is not an MMIO resource\n");
234 mem
= ioremap(pci_resource_start(pdev
, 0), 0x4000);
236 if (!(pci_resource_flags(pdev
, 1) & IO_RESOURCE_IO
)) {
237 printk(KERN_ERR
"skfp: region is not PIO resource\n");
242 mem
= ioport_map(pci_resource_start(pdev
, 1), FP_IO_LEN
);
245 printk(KERN_ERR
"skfp: Unable to map register, "
246 "FDDI adapter will be disabled.\n");
251 dev
= alloc_fddidev(sizeof(struct s_smc
));
253 printk(KERN_ERR
"skfp: Unable to allocate fddi device, "
254 "FDDI adapter will be disabled.\n");
259 dev
->irq
= pdev
->irq
;
260 dev
->netdev_ops
= &skfp_netdev_ops
;
262 SET_NETDEV_DEV(dev
, &pdev
->dev
);
264 /* Initialize board structure with bus-specific info */
265 smc
= netdev_priv(dev
);
267 smc
->os
.bus_type
= SK_BUS_TYPE_PCI
;
268 smc
->os
.pdev
= *pdev
;
269 smc
->os
.QueueSkb
= MAX_TX_QUEUE_LEN
;
270 smc
->os
.MaxFrameSize
= MAX_FRAME_SIZE
;
274 smc
->os
.ResetRequested
= FALSE
;
275 skb_queue_head_init(&smc
->os
.SendSkbQueue
);
277 dev
->base_addr
= (unsigned long)mem
;
279 err
= skfp_driver_init(dev
);
283 err
= register_netdev(dev
);
288 pci_set_drvdata(pdev
, dev
);
290 if ((pdev
->subsystem_device
& 0xff00) == 0x5500 ||
291 (pdev
->subsystem_device
& 0xff00) == 0x5800)
292 printk("%s: SysKonnect FDDI PCI adapter"
293 " found (SK-%04X)\n", dev
->name
,
294 pdev
->subsystem_device
);
296 printk("%s: FDDI PCI adapter found\n", dev
->name
);
300 if (smc
->os
.SharedMemAddr
)
301 pci_free_consistent(pdev
, smc
->os
.SharedMemSize
,
302 smc
->os
.SharedMemAddr
,
303 smc
->os
.SharedMemDMA
);
304 pci_free_consistent(pdev
, MAX_FRAME_SIZE
,
305 smc
->os
.LocalRxBuffer
, smc
->os
.LocalRxBufferDMA
);
315 pci_release_regions(pdev
);
317 pci_disable_device(pdev
);
322 * Called for each adapter board from pci_unregister_driver
324 static void skfp_remove_one(struct pci_dev
*pdev
)
326 struct net_device
*p
= pci_get_drvdata(pdev
);
327 struct s_smc
*lp
= netdev_priv(p
);
329 unregister_netdev(p
);
331 if (lp
->os
.SharedMemAddr
) {
332 pci_free_consistent(&lp
->os
.pdev
,
333 lp
->os
.SharedMemSize
,
334 lp
->os
.SharedMemAddr
,
335 lp
->os
.SharedMemDMA
);
336 lp
->os
.SharedMemAddr
= NULL
;
338 if (lp
->os
.LocalRxBuffer
) {
339 pci_free_consistent(&lp
->os
.pdev
,
341 lp
->os
.LocalRxBuffer
,
342 lp
->os
.LocalRxBufferDMA
);
343 lp
->os
.LocalRxBuffer
= NULL
;
348 ioport_unmap(lp
->hw
.iop
);
350 pci_release_regions(pdev
);
353 pci_disable_device(pdev
);
357 * ====================
358 * = skfp_driver_init =
359 * ====================
362 * Initializes remaining adapter board structure information
363 * and makes sure adapter is in a safe state prior to skfp_open().
369 * dev - pointer to device information
371 * Functional Description:
372 * This function allocates additional resources such as the host memory
373 * blocks needed by the adapter.
374 * The adapter is also reset. The OS must call skfp_open() to open
375 * the adapter and bring it on-line.
378 * 0 - initialization succeeded
379 * -1 - initialization failed
381 static int skfp_driver_init(struct net_device
*dev
)
383 struct s_smc
*smc
= netdev_priv(dev
);
384 skfddi_priv
*bp
= &smc
->os
;
387 pr_debug("entering skfp_driver_init\n");
389 // set the io address in private structures
390 bp
->base_addr
= dev
->base_addr
;
392 // Get the interrupt level from the PCI Configuration Table
393 smc
->hw
.irq
= dev
->irq
;
395 spin_lock_init(&bp
->DriverLock
);
397 // Allocate invalid frame
398 bp
->LocalRxBuffer
= pci_alloc_consistent(&bp
->pdev
, MAX_FRAME_SIZE
, &bp
->LocalRxBufferDMA
);
399 if (!bp
->LocalRxBuffer
) {
400 printk("could not allocate mem for ");
401 printk("LocalRxBuffer: %d byte\n", MAX_FRAME_SIZE
);
405 // Determine the required size of the 'shared' memory area.
406 bp
->SharedMemSize
= mac_drv_check_space();
407 pr_debug("Memory for HWM: %ld\n", bp
->SharedMemSize
);
408 if (bp
->SharedMemSize
> 0) {
409 bp
->SharedMemSize
+= 16; // for descriptor alignment
411 bp
->SharedMemAddr
= pci_alloc_consistent(&bp
->pdev
,
414 if (!bp
->SharedMemAddr
) {
415 printk("could not allocate mem for ");
416 printk("hardware module: %ld byte\n",
420 bp
->SharedMemHeap
= 0; // Nothing used yet.
423 bp
->SharedMemAddr
= NULL
;
424 bp
->SharedMemHeap
= 0;
425 } // SharedMemSize > 0
427 memset(bp
->SharedMemAddr
, 0, bp
->SharedMemSize
);
429 card_stop(smc
); // Reset adapter.
431 pr_debug("mac_drv_init()..\n");
432 if (mac_drv_init(smc
) != 0) {
433 pr_debug("mac_drv_init() failed\n");
436 read_address(smc
, NULL
);
437 pr_debug("HW-Addr: %pMF\n", smc
->hw
.fddi_canon_addr
.a
);
438 memcpy(dev
->dev_addr
, smc
->hw
.fddi_canon_addr
.a
, ETH_ALEN
);
440 smt_reset_defaults(smc
, 0);
445 if (bp
->SharedMemAddr
) {
446 pci_free_consistent(&bp
->pdev
,
450 bp
->SharedMemAddr
= NULL
;
452 if (bp
->LocalRxBuffer
) {
453 pci_free_consistent(&bp
->pdev
, MAX_FRAME_SIZE
,
454 bp
->LocalRxBuffer
, bp
->LocalRxBufferDMA
);
455 bp
->LocalRxBuffer
= NULL
;
458 } // skfp_driver_init
473 * dev - pointer to device information
475 * Functional Description:
476 * This function brings the adapter to an operational state.
479 * 0 - Adapter was successfully opened
480 * -EAGAIN - Could not register IRQ
482 static int skfp_open(struct net_device
*dev
)
484 struct s_smc
*smc
= netdev_priv(dev
);
487 pr_debug("entering skfp_open\n");
488 /* Register IRQ - support shared interrupts by passing device ptr */
489 err
= request_irq(dev
->irq
, skfp_interrupt
, IRQF_SHARED
,
495 * Set current address to factory MAC address
497 * Note: We've already done this step in skfp_driver_init.
498 * However, it's possible that a user has set a node
499 * address override, then closed and reopened the
500 * adapter. Unless we reset the device address field
501 * now, we'll continue to use the existing modified
504 read_address(smc
, NULL
);
505 memcpy(dev
->dev_addr
, smc
->hw
.fddi_canon_addr
.a
, ETH_ALEN
);
511 /* Clear local multicast address tables */
512 mac_clear_multicast(smc
);
514 /* Disable promiscuous filter settings */
515 mac_drv_rx_mode(smc
, RX_DISABLE_PROMISC
);
517 netif_start_queue(dev
);
528 * Closes the device/module.
534 * dev - pointer to device information
536 * Functional Description:
537 * This routine closes the adapter and brings it to a safe state.
538 * The interrupt service routine is deregistered with the OS.
539 * The adapter can be opened again with another call to skfp_open().
545 * No further requests for this adapter are made after this routine is
546 * called. skfp_open() can be called to reset and reinitialize the
549 static int skfp_close(struct net_device
*dev
)
551 struct s_smc
*smc
= netdev_priv(dev
);
552 skfddi_priv
*bp
= &smc
->os
;
555 smt_reset_defaults(smc
, 1);
557 mac_drv_clear_tx_queue(smc
);
558 mac_drv_clear_rx_queue(smc
);
560 netif_stop_queue(dev
);
561 /* Deregister (free) IRQ */
562 free_irq(dev
->irq
, dev
);
564 skb_queue_purge(&bp
->SendSkbQueue
);
565 bp
->QueueSkb
= MAX_TX_QUEUE_LEN
;
577 * Interrupt processing routine
583 * irq - interrupt vector
584 * dev_id - pointer to device information
586 * Functional Description:
587 * This routine calls the interrupt processing routine for this adapter. It
588 * disables and reenables adapter interrupts, as appropriate. We can support
589 * shared interrupts since the incoming dev_id pointer provides our device
590 * structure context. All the real work is done in the hardware module.
596 * The interrupt acknowledgement at the hardware level (eg. ACKing the PIC
597 * on Intel-based systems) is done by the operating system outside this
600 * System interrupts are enabled through this call.
603 * Interrupts are disabled, then reenabled at the adapter.
606 static irqreturn_t
skfp_interrupt(int irq
, void *dev_id
)
608 struct net_device
*dev
= dev_id
;
609 struct s_smc
*smc
; /* private board structure pointer */
612 smc
= netdev_priv(dev
);
615 // IRQs enabled or disabled ?
616 if (inpd(ADDR(B0_IMSK
)) == 0) {
617 // IRQs are disabled: must be shared interrupt
620 // Note: At this point, IRQs are enabled.
621 if ((inpd(ISR_A
) & smc
->hw
.is_imask
) == 0) { // IRQ?
622 // Adapter did not issue an IRQ: must be shared interrupt
625 CLI_FBI(); // Disable IRQs from our adapter.
626 spin_lock(&bp
->DriverLock
);
628 // Call interrupt handler in hardware module (HWM).
631 if (smc
->os
.ResetRequested
) {
633 smc
->os
.ResetRequested
= FALSE
;
635 spin_unlock(&bp
->DriverLock
);
636 STI_FBI(); // Enable IRQs from our adapter.
643 * ======================
644 * = skfp_ctl_get_stats =
645 * ======================
648 * Get statistics for FDDI adapter
651 * Pointer to FDDI statistics structure
654 * dev - pointer to device information
656 * Functional Description:
657 * Gets current MIB objects from adapter, then
658 * returns FDDI statistics structure as defined
661 * Note: Since the FDDI statistics structure is
662 * still new and the device structure doesn't
663 * have an FDDI-specific get statistics handler,
664 * we'll return the FDDI statistics structure as
665 * a pointer to an Ethernet statistics structure.
666 * That way, at least the first part of the statistics
667 * structure can be decoded properly.
668 * We'll have to pay attention to this routine as the
669 * device structure becomes more mature and LAN media
673 static struct net_device_stats
*skfp_ctl_get_stats(struct net_device
*dev
)
675 struct s_smc
*bp
= netdev_priv(dev
);
677 /* Fill the bp->stats structure with driver-maintained counters */
679 bp
->os
.MacStat
.port_bs_flag
[0] = 0x1234;
680 bp
->os
.MacStat
.port_bs_flag
[1] = 0x5678;
681 // goos: need to fill out fddi statistic
683 /* Get FDDI SMT MIB objects */
685 /* Fill the bp->stats structure with the SMT MIB object values */
687 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
));
688 bp
->stats
.smt_op_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_op_version_id
;
689 bp
->stats
.smt_hi_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_hi_version_id
;
690 bp
->stats
.smt_lo_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_lo_version_id
;
691 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
));
692 bp
->stats
.smt_mib_version_id
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_mib_version_id
;
693 bp
->stats
.smt_mac_cts
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_mac_ct
;
694 bp
->stats
.smt_non_master_cts
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_non_master_ct
;
695 bp
->stats
.smt_master_cts
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_master_ct
;
696 bp
->stats
.smt_available_paths
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_available_paths
;
697 bp
->stats
.smt_config_capabilities
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_config_capabilities
;
698 bp
->stats
.smt_config_policy
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_config_policy
;
699 bp
->stats
.smt_connection_policy
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_connection_policy
;
700 bp
->stats
.smt_t_notify
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_t_notify
;
701 bp
->stats
.smt_stat_rpt_policy
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_stat_rpt_policy
;
702 bp
->stats
.smt_trace_max_expiration
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_trace_max_expiration
;
703 bp
->stats
.smt_bypass_present
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_bypass_present
;
704 bp
->stats
.smt_ecm_state
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_ecm_state
;
705 bp
->stats
.smt_cf_state
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_cf_state
;
706 bp
->stats
.smt_remote_disconnect_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_remote_disconnect_flag
;
707 bp
->stats
.smt_station_status
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_station_status
;
708 bp
->stats
.smt_peer_wrap_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_peer_wrap_flag
;
709 bp
->stats
.smt_time_stamp
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_msg_time_stamp
.ls
;
710 bp
->stats
.smt_transition_time_stamp
= bp
->cmd_rsp_virt
->smt_mib_get
.smt_transition_time_stamp
.ls
;
711 bp
->stats
.mac_frame_status_functions
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_status_functions
;
712 bp
->stats
.mac_t_max_capability
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_max_capability
;
713 bp
->stats
.mac_tvx_capability
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_tvx_capability
;
714 bp
->stats
.mac_available_paths
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_available_paths
;
715 bp
->stats
.mac_current_path
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_current_path
;
716 memcpy(bp
->stats
.mac_upstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_upstream_nbr
, FDDI_K_ALEN
);
717 memcpy(bp
->stats
.mac_downstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_downstream_nbr
, FDDI_K_ALEN
);
718 memcpy(bp
->stats
.mac_old_upstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_old_upstream_nbr
, FDDI_K_ALEN
);
719 memcpy(bp
->stats
.mac_old_downstream_nbr
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_old_downstream_nbr
, FDDI_K_ALEN
);
720 bp
->stats
.mac_dup_address_test
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_dup_address_test
;
721 bp
->stats
.mac_requested_paths
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_requested_paths
;
722 bp
->stats
.mac_downstream_port_type
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_downstream_port_type
;
723 memcpy(bp
->stats
.mac_smt_address
, &bp
->cmd_rsp_virt
->smt_mib_get
.mac_smt_address
, FDDI_K_ALEN
);
724 bp
->stats
.mac_t_req
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_req
;
725 bp
->stats
.mac_t_neg
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_neg
;
726 bp
->stats
.mac_t_max
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_t_max
;
727 bp
->stats
.mac_tvx_value
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_tvx_value
;
728 bp
->stats
.mac_frame_error_threshold
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_error_threshold
;
729 bp
->stats
.mac_frame_error_ratio
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_error_ratio
;
730 bp
->stats
.mac_rmt_state
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_rmt_state
;
731 bp
->stats
.mac_da_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_da_flag
;
732 bp
->stats
.mac_una_da_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_unda_flag
;
733 bp
->stats
.mac_frame_error_flag
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_frame_error_flag
;
734 bp
->stats
.mac_ma_unitdata_available
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_ma_unitdata_available
;
735 bp
->stats
.mac_hardware_present
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_hardware_present
;
736 bp
->stats
.mac_ma_unitdata_enable
= bp
->cmd_rsp_virt
->smt_mib_get
.mac_ma_unitdata_enable
;
737 bp
->stats
.path_tvx_lower_bound
= bp
->cmd_rsp_virt
->smt_mib_get
.path_tvx_lower_bound
;
738 bp
->stats
.path_t_max_lower_bound
= bp
->cmd_rsp_virt
->smt_mib_get
.path_t_max_lower_bound
;
739 bp
->stats
.path_max_t_req
= bp
->cmd_rsp_virt
->smt_mib_get
.path_max_t_req
;
740 memcpy(bp
->stats
.path_configuration
, &bp
->cmd_rsp_virt
->smt_mib_get
.path_configuration
, sizeof(bp
->cmd_rsp_virt
->smt_mib_get
.path_configuration
));
741 bp
->stats
.port_my_type
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_my_type
[0];
742 bp
->stats
.port_my_type
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_my_type
[1];
743 bp
->stats
.port_neighbor_type
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_neighbor_type
[0];
744 bp
->stats
.port_neighbor_type
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_neighbor_type
[1];
745 bp
->stats
.port_connection_policies
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_policies
[0];
746 bp
->stats
.port_connection_policies
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_policies
[1];
747 bp
->stats
.port_mac_indicated
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_indicated
[0];
748 bp
->stats
.port_mac_indicated
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_indicated
[1];
749 bp
->stats
.port_current_path
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_current_path
[0];
750 bp
->stats
.port_current_path
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_current_path
[1];
751 memcpy(&bp
->stats
.port_requested_paths
[0 * 3], &bp
->cmd_rsp_virt
->smt_mib_get
.port_requested_paths
[0], 3);
752 memcpy(&bp
->stats
.port_requested_paths
[1 * 3], &bp
->cmd_rsp_virt
->smt_mib_get
.port_requested_paths
[1], 3);
753 bp
->stats
.port_mac_placement
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_placement
[0];
754 bp
->stats
.port_mac_placement
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_mac_placement
[1];
755 bp
->stats
.port_available_paths
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_available_paths
[0];
756 bp
->stats
.port_available_paths
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_available_paths
[1];
757 bp
->stats
.port_pmd_class
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pmd_class
[0];
758 bp
->stats
.port_pmd_class
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pmd_class
[1];
759 bp
->stats
.port_connection_capabilities
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_capabilities
[0];
760 bp
->stats
.port_connection_capabilities
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connection_capabilities
[1];
761 bp
->stats
.port_bs_flag
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_bs_flag
[0];
762 bp
->stats
.port_bs_flag
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_bs_flag
[1];
763 bp
->stats
.port_ler_estimate
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_estimate
[0];
764 bp
->stats
.port_ler_estimate
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_estimate
[1];
765 bp
->stats
.port_ler_cutoff
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_cutoff
[0];
766 bp
->stats
.port_ler_cutoff
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_cutoff
[1];
767 bp
->stats
.port_ler_alarm
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_alarm
[0];
768 bp
->stats
.port_ler_alarm
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_alarm
[1];
769 bp
->stats
.port_connect_state
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connect_state
[0];
770 bp
->stats
.port_connect_state
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_connect_state
[1];
771 bp
->stats
.port_pcm_state
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pcm_state
[0];
772 bp
->stats
.port_pcm_state
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pcm_state
[1];
773 bp
->stats
.port_pc_withhold
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pc_withhold
[0];
774 bp
->stats
.port_pc_withhold
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_pc_withhold
[1];
775 bp
->stats
.port_ler_flag
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_flag
[0];
776 bp
->stats
.port_ler_flag
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_ler_flag
[1];
777 bp
->stats
.port_hardware_present
[0] = bp
->cmd_rsp_virt
->smt_mib_get
.port_hardware_present
[0];
778 bp
->stats
.port_hardware_present
[1] = bp
->cmd_rsp_virt
->smt_mib_get
.port_hardware_present
[1];
781 /* Fill the bp->stats structure with the FDDI counter values */
783 bp
->stats
.mac_frame_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.frame_cnt
.ls
;
784 bp
->stats
.mac_copied_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.copied_cnt
.ls
;
785 bp
->stats
.mac_transmit_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.transmit_cnt
.ls
;
786 bp
->stats
.mac_error_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.error_cnt
.ls
;
787 bp
->stats
.mac_lost_cts
= bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lost_cnt
.ls
;
788 bp
->stats
.port_lct_fail_cts
[0] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lct_rejects
[0].ls
;
789 bp
->stats
.port_lct_fail_cts
[1] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lct_rejects
[1].ls
;
790 bp
->stats
.port_lem_reject_cts
[0] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lem_rejects
[0].ls
;
791 bp
->stats
.port_lem_reject_cts
[1] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.lem_rejects
[1].ls
;
792 bp
->stats
.port_lem_cts
[0] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.link_errors
[0].ls
;
793 bp
->stats
.port_lem_cts
[1] = bp
->cmd_rsp_virt
->cntrs_get
.cntrs
.link_errors
[1].ls
;
796 return (struct net_device_stats
*)&bp
->os
.MacStat
;
801 * ==============================
802 * = skfp_ctl_set_multicast_list =
803 * ==============================
806 * Enable/Disable LLC frame promiscuous mode reception
807 * on the adapter and/or update multicast address table.
813 * dev - pointer to device information
815 * Functional Description:
816 * This function acquires the driver lock and only calls
817 * skfp_ctl_set_multicast_list_wo_lock then.
818 * This routine follows a fairly simple algorithm for setting the
819 * adapter filters and CAM:
821 * if IFF_PROMISC flag is set
822 * enable promiscuous mode
824 * disable promiscuous mode
825 * if number of multicast addresses <= max. multicast number
826 * add mc addresses to adapter table
828 * enable promiscuous mode
829 * update adapter filters
832 * Multicast addresses are presented in canonical (LSB) format.
835 * On-board adapter filters are updated.
837 static void skfp_ctl_set_multicast_list(struct net_device
*dev
)
839 struct s_smc
*smc
= netdev_priv(dev
);
840 skfddi_priv
*bp
= &smc
->os
;
843 spin_lock_irqsave(&bp
->DriverLock
, Flags
);
844 skfp_ctl_set_multicast_list_wo_lock(dev
);
845 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
846 } // skfp_ctl_set_multicast_list
850 static void skfp_ctl_set_multicast_list_wo_lock(struct net_device
*dev
)
852 struct s_smc
*smc
= netdev_priv(dev
);
853 struct netdev_hw_addr
*ha
;
855 /* Enable promiscuous mode, if necessary */
856 if (dev
->flags
& IFF_PROMISC
) {
857 mac_drv_rx_mode(smc
, RX_ENABLE_PROMISC
);
858 pr_debug("PROMISCUOUS MODE ENABLED\n");
860 /* Else, update multicast address table */
862 mac_drv_rx_mode(smc
, RX_DISABLE_PROMISC
);
863 pr_debug("PROMISCUOUS MODE DISABLED\n");
865 // Reset all MC addresses
866 mac_clear_multicast(smc
);
867 mac_drv_rx_mode(smc
, RX_DISABLE_ALLMULTI
);
869 if (dev
->flags
& IFF_ALLMULTI
) {
870 mac_drv_rx_mode(smc
, RX_ENABLE_ALLMULTI
);
871 pr_debug("ENABLE ALL MC ADDRESSES\n");
872 } else if (!netdev_mc_empty(dev
)) {
873 if (netdev_mc_count(dev
) <= FPMAX_MULTICAST
) {
874 /* use exact filtering */
876 // point to first multicast addr
877 netdev_for_each_mc_addr(ha
, dev
) {
878 mac_add_multicast(smc
,
879 (struct fddi_addr
*)ha
->addr
,
882 pr_debug("ENABLE MC ADDRESS: %pMF\n",
886 } else { // more MC addresses than HW supports
888 mac_drv_rx_mode(smc
, RX_ENABLE_ALLMULTI
);
889 pr_debug("ENABLE ALL MC ADDRESSES\n");
891 } else { // no MC addresses
893 pr_debug("DISABLE ALL MC ADDRESSES\n");
896 /* Update adapter filters */
897 mac_update_multicast(smc
);
899 } // skfp_ctl_set_multicast_list_wo_lock
903 * ===========================
904 * = skfp_ctl_set_mac_address =
905 * ===========================
908 * set new mac address on adapter and update dev_addr field in device table.
914 * dev - pointer to device information
915 * addr - pointer to sockaddr structure containing unicast address to set
918 * The address pointed to by addr->sa_data is a valid unicast
919 * address and is presented in canonical (LSB) format.
921 static int skfp_ctl_set_mac_address(struct net_device
*dev
, void *addr
)
923 struct s_smc
*smc
= netdev_priv(dev
);
924 struct sockaddr
*p_sockaddr
= (struct sockaddr
*) addr
;
925 skfddi_priv
*bp
= &smc
->os
;
929 memcpy(dev
->dev_addr
, p_sockaddr
->sa_data
, FDDI_K_ALEN
);
930 spin_lock_irqsave(&bp
->DriverLock
, Flags
);
932 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
934 return 0; /* always return zero */
935 } // skfp_ctl_set_mac_address
945 * Perform IOCTL call functions here. Some are privileged operations and the
946 * effective uid is checked in those cases.
954 * dev - pointer to device information
955 * rq - pointer to ioctl request structure
961 static int skfp_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
963 struct s_smc
*smc
= netdev_priv(dev
);
964 skfddi_priv
*lp
= &smc
->os
;
965 struct s_skfp_ioctl ioc
;
968 if (copy_from_user(&ioc
, rq
->ifr_data
, sizeof(struct s_skfp_ioctl
)))
972 case SKFP_GET_STATS
: /* Get the driver statistics */
973 ioc
.len
= sizeof(lp
->MacStat
);
974 status
= copy_to_user(ioc
.data
, skfp_ctl_get_stats(dev
), ioc
.len
)
977 case SKFP_CLR_STATS
: /* Zero out the driver statistics */
978 if (!capable(CAP_NET_ADMIN
)) {
981 memset(&lp
->MacStat
, 0, sizeof(lp
->MacStat
));
985 printk("ioctl for %s: unknown cmd: %04x\n", dev
->name
, ioc
.cmd
);
986 status
= -EOPNOTSUPP
;
995 * =====================
997 * =====================
1000 * Queues a packet for transmission and try to transmit it.
1006 * skb - pointer to sk_buff to queue for transmission
1007 * dev - pointer to device information
1009 * Functional Description:
1010 * Here we assume that an incoming skb transmit request
1011 * is contained in a single physically contiguous buffer
1012 * in which the virtual address of the start of packet
1013 * (skb->data) can be converted to a physical address
1014 * by using pci_map_single().
1016 * We have an internal queue for packets we can not send
1017 * immediately. Packets in this queue can be given to the
1018 * adapter if transmit buffers are freed.
1020 * We can't free the skb until after it's been DMA'd
1021 * out by the adapter, so we'll keep it in the driver and
1022 * return it in mac_drv_tx_complete.
1025 * 0 - driver has queued and/or sent packet
1026 * 1 - caller should requeue the sk_buff for later transmission
1029 * The entire packet is stored in one physically
1030 * contiguous buffer which is not cached and whose
1031 * 32-bit physical address can be determined.
1033 * It's vital that this routine is NOT reentered for the
1034 * same board and that the OS is not in another section of
1035 * code (eg. skfp_interrupt) for the same board on a
1041 static netdev_tx_t
skfp_send_pkt(struct sk_buff
*skb
,
1042 struct net_device
*dev
)
1044 struct s_smc
*smc
= netdev_priv(dev
);
1045 skfddi_priv
*bp
= &smc
->os
;
1047 pr_debug("skfp_send_pkt\n");
1050 * Verify that incoming transmit request is OK
1052 * Note: The packet size check is consistent with other
1053 * Linux device drivers, although the correct packet
1054 * size should be verified before calling the
1058 if (!(skb
->len
>= FDDI_K_LLC_ZLEN
&& skb
->len
<= FDDI_K_LLC_LEN
)) {
1059 bp
->MacStat
.gen
.tx_errors
++; /* bump error counter */
1060 // dequeue packets from xmt queue and send them
1061 netif_start_queue(dev
);
1063 return NETDEV_TX_OK
; /* return "success" */
1065 if (bp
->QueueSkb
== 0) { // return with tbusy set: queue full
1067 netif_stop_queue(dev
);
1068 return NETDEV_TX_BUSY
;
1071 skb_queue_tail(&bp
->SendSkbQueue
, skb
);
1072 send_queued_packets(netdev_priv(dev
));
1073 if (bp
->QueueSkb
== 0) {
1074 netif_stop_queue(dev
);
1076 return NETDEV_TX_OK
;
1082 * =======================
1083 * = send_queued_packets =
1084 * =======================
1087 * Send packets from the driver queue as long as there are some and
1088 * transmit resources are available.
1094 * smc - pointer to smc (adapter) structure
1096 * Functional Description:
1097 * Take a packet from queue if there is any. If not, then we are done.
1098 * Check if there are resources to send the packet. If not, requeue it
1100 * Set packet descriptor flags and give packet to adapter.
1101 * Check if any send resources can be freed (we do not use the
1102 * transmit complete interrupt).
1104 static void send_queued_packets(struct s_smc
*smc
)
1106 skfddi_priv
*bp
= &smc
->os
;
1107 struct sk_buff
*skb
;
1110 struct s_smt_fp_txd
*txd
; // Current TxD.
1111 dma_addr_t dma_address
;
1112 unsigned long Flags
;
1114 int frame_status
; // HWM tx frame status.
1116 pr_debug("send queued packets\n");
1118 // send first buffer from queue
1119 skb
= skb_dequeue(&bp
->SendSkbQueue
);
1122 pr_debug("queue empty\n");
1126 spin_lock_irqsave(&bp
->DriverLock
, Flags
);
1128 queue
= (fc
& FC_SYNC_BIT
) ? QUEUE_S
: QUEUE_A0
;
1130 // Check if the frame may/must be sent as a synchronous frame.
1132 if ((fc
& ~(FC_SYNC_BIT
| FC_LLC_PRIOR
)) == FC_ASYNC_LLC
) {
1133 // It's an LLC frame.
1134 if (!smc
->ess
.sync_bw_available
)
1135 fc
&= ~FC_SYNC_BIT
; // No bandwidth available.
1137 else { // Bandwidth is available.
1139 if (smc
->mib
.fddiESSSynchTxMode
) {
1140 // Send as sync. frame.
1146 frame_status
= hwm_tx_init(smc
, fc
, 1, skb
->len
, queue
);
1148 if ((frame_status
& (LOC_TX
| LAN_TX
)) == 0) {
1149 // Unable to send the frame.
1151 if ((frame_status
& RING_DOWN
) != 0) {
1153 pr_debug("Tx attempt while ring down.\n");
1154 } else if ((frame_status
& OUT_OF_TXD
) != 0) {
1155 pr_debug("%s: out of TXDs.\n", bp
->dev
->name
);
1157 pr_debug("%s: out of transmit resources",
1161 // Note: We will retry the operation as soon as
1162 // transmit resources become available.
1163 skb_queue_head(&bp
->SendSkbQueue
, skb
);
1164 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
1165 return; // Packet has been queued.
1167 } // if (unable to send frame)
1169 bp
->QueueSkb
++; // one packet less in local queue
1171 // source address in packet ?
1172 CheckSourceAddress(skb
->data
, smc
->hw
.fddi_canon_addr
.a
);
1174 txd
= (struct s_smt_fp_txd
*) HWM_GET_CURR_TXD(smc
, queue
);
1176 dma_address
= pci_map_single(&bp
->pdev
, skb
->data
,
1177 skb
->len
, PCI_DMA_TODEVICE
);
1178 if (frame_status
& LAN_TX
) {
1179 txd
->txd_os
.skb
= skb
; // save skb
1180 txd
->txd_os
.dma_addr
= dma_address
; // save dma mapping
1182 hwm_tx_frag(smc
, skb
->data
, dma_address
, skb
->len
,
1183 frame_status
| FIRST_FRAG
| LAST_FRAG
| EN_IRQ_EOF
);
1185 if (!(frame_status
& LAN_TX
)) { // local only frame
1186 pci_unmap_single(&bp
->pdev
, dma_address
,
1187 skb
->len
, PCI_DMA_TODEVICE
);
1188 dev_kfree_skb_irq(skb
);
1190 spin_unlock_irqrestore(&bp
->DriverLock
, Flags
);
1193 return; // never reached
1195 } // send_queued_packets
1198 /************************
1200 * CheckSourceAddress
1202 * Verify if the source address is set. Insert it if necessary.
1204 ************************/
1205 static void CheckSourceAddress(unsigned char *frame
, unsigned char *hw_addr
)
1207 unsigned char SRBit
;
1209 if ((((unsigned long) frame
[1 + 6]) & ~0x01) != 0) // source routing bit
1212 if ((unsigned short) frame
[1 + 10] != 0)
1214 SRBit
= frame
[1 + 6] & 0x01;
1215 memcpy(&frame
[1 + 6], hw_addr
, ETH_ALEN
);
1217 } // CheckSourceAddress
1220 /************************
1224 * Reset the adapter and bring it back to operational mode.
1226 * smc - A pointer to the SMT context struct.
1230 ************************/
1231 static void ResetAdapter(struct s_smc
*smc
)
1234 pr_debug("[fddi: ResetAdapter]\n");
1236 // Stop the adapter.
1238 card_stop(smc
); // Stop all activity.
1240 // Clear the transmit and receive descriptor queues.
1241 mac_drv_clear_tx_queue(smc
);
1242 mac_drv_clear_rx_queue(smc
);
1244 // Restart the adapter.
1246 smt_reset_defaults(smc
, 1); // Initialize the SMT module.
1248 init_smt(smc
, (smc
->os
.dev
)->dev_addr
); // Initialize the hardware.
1250 smt_online(smc
, 1); // Insert into the ring again.
1253 // Restore original receive mode (multicasts, promiscuous, etc.).
1254 skfp_ctl_set_multicast_list_wo_lock(smc
->os
.dev
);
1258 //--------------- functions called by hardware module ----------------
1260 /************************
1264 * The hardware driver calls this routine when the transmit complete
1265 * interrupt bits (end of frame) for the synchronous or asynchronous
1268 * NOTE The hardware driver calls this function also if no packets are queued.
1269 * The routine must be able to handle this case.
1271 * smc - A pointer to the SMT context struct.
1275 ************************/
1276 void llc_restart_tx(struct s_smc
*smc
)
1278 skfddi_priv
*bp
= &smc
->os
;
1280 pr_debug("[llc_restart_tx]\n");
1282 // Try to send queued packets
1283 spin_unlock(&bp
->DriverLock
);
1284 send_queued_packets(smc
);
1285 spin_lock(&bp
->DriverLock
);
1286 netif_start_queue(bp
->dev
);// system may send again if it was blocked
1291 /************************
1295 * The hardware module calls this function to allocate the memory
1296 * for the SMT MBufs if the define MB_OUTSIDE_SMC is specified.
1298 * smc - A pointer to the SMT context struct.
1300 * size - Size of memory in bytes to allocate.
1302 * != 0 A pointer to the virtual address of the allocated memory.
1303 * == 0 Allocation error.
1305 ************************/
1306 void *mac_drv_get_space(struct s_smc
*smc
, unsigned int size
)
1310 pr_debug("mac_drv_get_space (%d bytes), ", size
);
1311 virt
= (void *) (smc
->os
.SharedMemAddr
+ smc
->os
.SharedMemHeap
);
1313 if ((smc
->os
.SharedMemHeap
+ size
) > smc
->os
.SharedMemSize
) {
1314 printk("Unexpected SMT memory size requested: %d\n", size
);
1317 smc
->os
.SharedMemHeap
+= size
; // Move heap pointer.
1319 pr_debug("mac_drv_get_space end\n");
1320 pr_debug("virt addr: %lx\n", (ulong
) virt
);
1321 pr_debug("bus addr: %lx\n", (ulong
)
1322 (smc
->os
.SharedMemDMA
+
1323 ((char *) virt
- (char *)smc
->os
.SharedMemAddr
)));
1325 } // mac_drv_get_space
1328 /************************
1330 * mac_drv_get_desc_mem
1332 * This function is called by the hardware dependent module.
1333 * It allocates the memory for the RxD and TxD descriptors.
1335 * This memory must be non-cached, non-movable and non-swappable.
1336 * This memory should start at a physical page boundary.
1338 * smc - A pointer to the SMT context struct.
1340 * size - Size of memory in bytes to allocate.
1342 * != 0 A pointer to the virtual address of the allocated memory.
1343 * == 0 Allocation error.
1345 ************************/
1346 void *mac_drv_get_desc_mem(struct s_smc
*smc
, unsigned int size
)
1351 pr_debug("mac_drv_get_desc_mem\n");
1353 // Descriptor memory must be aligned on 16-byte boundary.
1355 virt
= mac_drv_get_space(smc
, size
);
1357 size
= (u_int
) (16 - (((unsigned long) virt
) & 15UL));
1360 pr_debug("Allocate %u bytes alignment gap ", size
);
1361 pr_debug("for descriptor memory.\n");
1363 if (!mac_drv_get_space(smc
, size
)) {
1364 printk("fddi: Unable to align descriptor memory.\n");
1368 } // mac_drv_get_desc_mem
1371 /************************
1375 * Get the physical address of a given virtual address.
1377 * smc - A pointer to the SMT context struct.
1379 * virt - A (virtual) pointer into our 'shared' memory area.
1381 * Physical address of the given virtual address.
1383 ************************/
1384 unsigned long mac_drv_virt2phys(struct s_smc
*smc
, void *virt
)
1386 return smc
->os
.SharedMemDMA
+
1387 ((char *) virt
- (char *)smc
->os
.SharedMemAddr
);
1388 } // mac_drv_virt2phys
1391 /************************
1395 * The HWM calls this function, when the driver leads through a DMA
1396 * transfer. If the OS-specific module must prepare the system hardware
1397 * for the DMA transfer, it should do it in this function.
1399 * The hardware module calls this dma_master if it wants to send an SMT
1400 * frame. This means that the virt address passed in here is part of
1401 * the 'shared' memory area.
1403 * smc - A pointer to the SMT context struct.
1405 * virt - The virtual address of the data.
1407 * len - The length in bytes of the data.
1409 * flag - Indicates the transmit direction and the buffer type:
1410 * DMA_RD (0x01) system RAM ==> adapter buffer memory
1411 * DMA_WR (0x02) adapter buffer memory ==> system RAM
1412 * SMT_BUF (0x80) SMT buffer
1414 * >> NOTE: SMT_BUF and DMA_RD are always set for PCI. <<
1416 * Returns the pyhsical address for the DMA transfer.
1418 ************************/
1419 u_long
dma_master(struct s_smc
* smc
, void *virt
, int len
, int flag
)
1421 return smc
->os
.SharedMemDMA
+
1422 ((char *) virt
- (char *)smc
->os
.SharedMemAddr
);
1426 /************************
1430 * The hardware module calls this routine when it has completed a DMA
1431 * transfer. If the operating system dependent module has set up the DMA
1432 * channel via dma_master() (e.g. Windows NT or AIX) it should clean up
1435 * smc - A pointer to the SMT context struct.
1437 * descr - A pointer to a TxD or RxD, respectively.
1439 * flag - Indicates the DMA transfer direction / SMT buffer:
1440 * DMA_RD (0x01) system RAM ==> adapter buffer memory
1441 * DMA_WR (0x02) adapter buffer memory ==> system RAM
1442 * SMT_BUF (0x80) SMT buffer (managed by HWM)
1446 ************************/
1447 void dma_complete(struct s_smc
*smc
, volatile union s_fp_descr
*descr
, int flag
)
1449 /* For TX buffers, there are two cases. If it is an SMT transmit
1450 * buffer, there is nothing to do since we use consistent memory
1451 * for the 'shared' memory area. The other case is for normal
1452 * transmit packets given to us by the networking stack, and in
1453 * that case we cleanup the PCI DMA mapping in mac_drv_tx_complete
1456 * For RX buffers, we have to unmap dynamic PCI DMA mappings here
1457 * because the hardware module is about to potentially look at
1458 * the contents of the buffer. If we did not call the PCI DMA
1459 * unmap first, the hardware module could read inconsistent data.
1461 if (flag
& DMA_WR
) {
1462 skfddi_priv
*bp
= &smc
->os
;
1463 volatile struct s_smt_fp_rxd
*r
= &descr
->r
;
1465 /* If SKB is NULL, we used the local buffer. */
1466 if (r
->rxd_os
.skb
&& r
->rxd_os
.dma_addr
) {
1467 int MaxFrameSize
= bp
->MaxFrameSize
;
1469 pci_unmap_single(&bp
->pdev
, r
->rxd_os
.dma_addr
,
1470 MaxFrameSize
, PCI_DMA_FROMDEVICE
);
1471 r
->rxd_os
.dma_addr
= 0;
1477 /************************
1479 * mac_drv_tx_complete
1481 * Transmit of a packet is complete. Release the tx staging buffer.
1484 * smc - A pointer to the SMT context struct.
1486 * txd - A pointer to the last TxD which is used by the frame.
1490 ************************/
1491 void mac_drv_tx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_txd
*txd
)
1493 struct sk_buff
*skb
;
1495 pr_debug("entering mac_drv_tx_complete\n");
1496 // Check if this TxD points to a skb
1498 if (!(skb
= txd
->txd_os
.skb
)) {
1499 pr_debug("TXD with no skb assigned.\n");
1502 txd
->txd_os
.skb
= NULL
;
1504 // release the DMA mapping
1505 pci_unmap_single(&smc
->os
.pdev
, txd
->txd_os
.dma_addr
,
1506 skb
->len
, PCI_DMA_TODEVICE
);
1507 txd
->txd_os
.dma_addr
= 0;
1509 smc
->os
.MacStat
.gen
.tx_packets
++; // Count transmitted packets.
1510 smc
->os
.MacStat
.gen
.tx_bytes
+=skb
->len
; // Count bytes
1513 dev_kfree_skb_irq(skb
);
1515 pr_debug("leaving mac_drv_tx_complete\n");
1516 } // mac_drv_tx_complete
1519 /************************
1521 * dump packets to logfile
1523 ************************/
1525 void dump_data(unsigned char *Data
, int length
)
1528 unsigned char s
[255], sh
[10];
1532 printk(KERN_INFO
"---Packet start---\n");
1533 for (i
= 0, j
= 0; i
< length
/ 8; i
++, j
+= 8)
1534 printk(KERN_INFO
"%02x %02x %02x %02x %02x %02x %02x %02x\n",
1535 Data
[j
+ 0], Data
[j
+ 1], Data
[j
+ 2], Data
[j
+ 3],
1536 Data
[j
+ 4], Data
[j
+ 5], Data
[j
+ 6], Data
[j
+ 7]);
1538 for (i
= 0; i
< length
% 8; i
++) {
1539 sprintf(sh
, "%02x ", Data
[j
+ i
]);
1542 printk(KERN_INFO
"%s\n", s
);
1543 printk(KERN_INFO
"------------------\n");
1546 #define dump_data(data,len)
1547 #endif // DUMPPACKETS
1549 /************************
1551 * mac_drv_rx_complete
1553 * The hardware module calls this function if an LLC frame is received
1554 * in a receive buffer. Also the SMT, NSA, and directed beacon frames
1555 * from the network will be passed to the LLC layer by this function
1556 * if passing is enabled.
1558 * mac_drv_rx_complete forwards the frame to the LLC layer if it should
1559 * be received. It also fills the RxD ring with new receive buffers if
1560 * some can be queued.
1562 * smc - A pointer to the SMT context struct.
1564 * rxd - A pointer to the first RxD which is used by the receive frame.
1566 * frag_count - Count of RxDs used by the received frame.
1568 * len - Frame length.
1572 ************************/
1573 void mac_drv_rx_complete(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
1574 int frag_count
, int len
)
1576 skfddi_priv
*bp
= &smc
->os
;
1577 struct sk_buff
*skb
;
1578 unsigned char *virt
, *cp
;
1582 pr_debug("entering mac_drv_rx_complete (len=%d)\n", len
);
1583 if (frag_count
!= 1) { // This is not allowed to happen.
1585 printk("fddi: Multi-fragment receive!\n");
1586 goto RequeueRxd
; // Re-use the given RXD(s).
1589 skb
= rxd
->rxd_os
.skb
;
1591 pr_debug("No skb in rxd\n");
1592 smc
->os
.MacStat
.gen
.rx_errors
++;
1597 // The DMA mapping was released in dma_complete above.
1599 dump_data(skb
->data
, len
);
1602 * FDDI Frame format:
1603 * +-------+-------+-------+------------+--------+------------+
1604 * | FC[1] | DA[6] | SA[6] | RIF[0..18] | LLC[3] | Data[0..n] |
1605 * +-------+-------+-------+------------+--------+------------+
1607 * FC = Frame Control
1608 * DA = Destination Address
1609 * SA = Source Address
1610 * RIF = Routing Information Field
1611 * LLC = Logical Link Control
1614 // Remove Routing Information Field (RIF), if present.
1616 if ((virt
[1 + 6] & FDDI_RII
) == 0)
1620 // goos: RIF removal has still to be tested
1621 pr_debug("RIF found\n");
1622 // Get RIF length from Routing Control (RC) field.
1623 cp
= virt
+ FDDI_MAC_HDR_LEN
; // Point behind MAC header.
1625 ri
= ntohs(*((__be16
*) cp
));
1626 RifLength
= ri
& FDDI_RCF_LEN_MASK
;
1627 if (len
< (int) (FDDI_MAC_HDR_LEN
+ RifLength
)) {
1628 printk("fddi: Invalid RIF.\n");
1629 goto RequeueRxd
; // Discard the frame.
1632 virt
[1 + 6] &= ~FDDI_RII
; // Clear RII bit.
1635 virt
= cp
+ RifLength
;
1636 for (n
= FDDI_MAC_HDR_LEN
; n
; n
--)
1638 // adjust sbd->data pointer
1639 skb_pull(skb
, RifLength
);
1644 // Count statistics.
1645 smc
->os
.MacStat
.gen
.rx_packets
++; // Count indicated receive
1647 smc
->os
.MacStat
.gen
.rx_bytes
+=len
; // Count bytes.
1649 // virt points to header again
1650 if (virt
[1] & 0x01) { // Check group (multicast) bit.
1652 smc
->os
.MacStat
.gen
.multicast
++;
1655 // deliver frame to system
1656 rxd
->rxd_os
.skb
= NULL
;
1658 skb
->protocol
= fddi_type_trans(skb
, bp
->dev
);
1662 HWM_RX_CHECK(smc
, RX_LOW_WATERMARK
);
1666 pr_debug("Rx: re-queue RXD.\n");
1667 mac_drv_requeue_rxd(smc
, rxd
, frag_count
);
1668 smc
->os
.MacStat
.gen
.rx_errors
++; // Count receive packets
1671 } // mac_drv_rx_complete
1674 /************************
1676 * mac_drv_requeue_rxd
1678 * The hardware module calls this function to request the OS-specific
1679 * module to queue the receive buffer(s) represented by the pointer
1680 * to the RxD and the frag_count into the receive queue again. This
1681 * buffer was filled with an invalid frame or an SMT frame.
1683 * smc - A pointer to the SMT context struct.
1685 * rxd - A pointer to the first RxD which is used by the receive frame.
1687 * frag_count - Count of RxDs used by the received frame.
1691 ************************/
1692 void mac_drv_requeue_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
1695 volatile struct s_smt_fp_rxd
*next_rxd
;
1696 volatile struct s_smt_fp_rxd
*src_rxd
;
1697 struct sk_buff
*skb
;
1699 unsigned char *v_addr
;
1702 if (frag_count
!= 1) // This is not allowed to happen.
1704 printk("fddi: Multi-fragment requeue!\n");
1706 MaxFrameSize
= smc
->os
.MaxFrameSize
;
1708 for (; frag_count
> 0; frag_count
--) {
1709 next_rxd
= src_rxd
->rxd_next
;
1710 rxd
= HWM_GET_CURR_RXD(smc
);
1712 skb
= src_rxd
->rxd_os
.skb
;
1713 if (skb
== NULL
) { // this should not happen
1715 pr_debug("Requeue with no skb in rxd!\n");
1716 skb
= alloc_skb(MaxFrameSize
+ 3, GFP_ATOMIC
);
1719 rxd
->rxd_os
.skb
= skb
;
1720 skb_reserve(skb
, 3);
1721 skb_put(skb
, MaxFrameSize
);
1723 b_addr
= pci_map_single(&smc
->os
.pdev
,
1726 PCI_DMA_FROMDEVICE
);
1727 rxd
->rxd_os
.dma_addr
= b_addr
;
1729 // no skb available, use local buffer
1730 pr_debug("Queueing invalid buffer!\n");
1731 rxd
->rxd_os
.skb
= NULL
;
1732 v_addr
= smc
->os
.LocalRxBuffer
;
1733 b_addr
= smc
->os
.LocalRxBufferDMA
;
1736 // we use skb from old rxd
1737 rxd
->rxd_os
.skb
= skb
;
1739 b_addr
= pci_map_single(&smc
->os
.pdev
,
1742 PCI_DMA_FROMDEVICE
);
1743 rxd
->rxd_os
.dma_addr
= b_addr
;
1745 hwm_rx_frag(smc
, v_addr
, b_addr
, MaxFrameSize
,
1746 FIRST_FRAG
| LAST_FRAG
);
1750 } // mac_drv_requeue_rxd
1753 /************************
1757 * The hardware module calls this function at initialization time
1758 * to fill the RxD ring with receive buffers. It is also called by
1759 * mac_drv_rx_complete if rx_free is large enough to queue some new
1760 * receive buffers into the RxD ring. mac_drv_fill_rxd queues new
1761 * receive buffers as long as enough RxDs and receive buffers are
1764 * smc - A pointer to the SMT context struct.
1768 ************************/
1769 void mac_drv_fill_rxd(struct s_smc
*smc
)
1772 unsigned char *v_addr
;
1773 unsigned long b_addr
;
1774 struct sk_buff
*skb
;
1775 volatile struct s_smt_fp_rxd
*rxd
;
1777 pr_debug("entering mac_drv_fill_rxd\n");
1779 // Walk through the list of free receive buffers, passing receive
1780 // buffers to the HWM as long as RXDs are available.
1782 MaxFrameSize
= smc
->os
.MaxFrameSize
;
1783 // Check if there is any RXD left.
1784 while (HWM_GET_RX_FREE(smc
) > 0) {
1787 rxd
= HWM_GET_CURR_RXD(smc
);
1788 skb
= alloc_skb(MaxFrameSize
+ 3, GFP_ATOMIC
);
1791 skb_reserve(skb
, 3);
1792 skb_put(skb
, MaxFrameSize
);
1794 b_addr
= pci_map_single(&smc
->os
.pdev
,
1797 PCI_DMA_FROMDEVICE
);
1798 rxd
->rxd_os
.dma_addr
= b_addr
;
1800 // no skb available, use local buffer
1801 // System has run out of buffer memory, but we want to
1802 // keep the receiver running in hope of better times.
1803 // Multiple descriptors may point to this local buffer,
1804 // so data in it must be considered invalid.
1805 pr_debug("Queueing invalid buffer!\n");
1806 v_addr
= smc
->os
.LocalRxBuffer
;
1807 b_addr
= smc
->os
.LocalRxBufferDMA
;
1810 rxd
->rxd_os
.skb
= skb
;
1812 // Pass receive buffer to HWM.
1813 hwm_rx_frag(smc
, v_addr
, b_addr
, MaxFrameSize
,
1814 FIRST_FRAG
| LAST_FRAG
);
1816 pr_debug("leaving mac_drv_fill_rxd\n");
1817 } // mac_drv_fill_rxd
1820 /************************
1824 * The hardware module calls this function to release unused
1827 * smc - A pointer to the SMT context struct.
1829 * rxd - A pointer to the first RxD which is used by the receive buffer.
1831 * frag_count - Count of RxDs used by the receive buffer.
1835 ************************/
1836 void mac_drv_clear_rxd(struct s_smc
*smc
, volatile struct s_smt_fp_rxd
*rxd
,
1840 struct sk_buff
*skb
;
1842 pr_debug("entering mac_drv_clear_rxd\n");
1844 if (frag_count
!= 1) // This is not allowed to happen.
1846 printk("fddi: Multi-fragment clear!\n");
1848 for (; frag_count
> 0; frag_count
--) {
1849 skb
= rxd
->rxd_os
.skb
;
1851 skfddi_priv
*bp
= &smc
->os
;
1852 int MaxFrameSize
= bp
->MaxFrameSize
;
1854 pci_unmap_single(&bp
->pdev
, rxd
->rxd_os
.dma_addr
,
1855 MaxFrameSize
, PCI_DMA_FROMDEVICE
);
1858 rxd
->rxd_os
.skb
= NULL
;
1860 rxd
= rxd
->rxd_next
; // Next RXD.
1863 } // mac_drv_clear_rxd
1866 /************************
1870 * The hardware module calls this routine when an SMT or NSA frame of the
1871 * local SMT should be delivered to the LLC layer.
1873 * It is necessary to have this function, because there is no other way to
1874 * copy the contents of SMT MBufs into receive buffers.
1876 * mac_drv_rx_init allocates the required target memory for this frame,
1877 * and receives the frame fragment by fragment by calling mac_drv_rx_frag.
1879 * smc - A pointer to the SMT context struct.
1881 * len - The length (in bytes) of the received frame (FC, DA, SA, Data).
1883 * fc - The Frame Control field of the received frame.
1885 * look_ahead - A pointer to the lookahead data buffer (may be NULL).
1887 * la_len - The length of the lookahead data stored in the lookahead
1888 * buffer (may be zero).
1890 * Always returns zero (0).
1892 ************************/
1893 int mac_drv_rx_init(struct s_smc
*smc
, int len
, int fc
,
1894 char *look_ahead
, int la_len
)
1896 struct sk_buff
*skb
;
1898 pr_debug("entering mac_drv_rx_init(len=%d)\n", len
);
1900 // "Received" a SMT or NSA frame of the local SMT.
1902 if (len
!= la_len
|| len
< FDDI_MAC_HDR_LEN
|| !look_ahead
) {
1903 pr_debug("fddi: Discard invalid local SMT frame\n");
1904 pr_debug(" len=%d, la_len=%d, (ULONG) look_ahead=%08lXh.\n",
1905 len
, la_len
, (unsigned long) look_ahead
);
1908 skb
= alloc_skb(len
+ 3, GFP_ATOMIC
);
1910 pr_debug("fddi: Local SMT: skb memory exhausted.\n");
1913 skb_reserve(skb
, 3);
1915 skb_copy_to_linear_data(skb
, look_ahead
, len
);
1917 // deliver frame to system
1918 skb
->protocol
= fddi_type_trans(skb
, smc
->os
.dev
);
1922 } // mac_drv_rx_init
1925 /************************
1929 * This routine is called periodically by the SMT module to clean up the
1932 * Return any queued frames back to the upper protocol layers if the ring
1935 * smc - A pointer to the SMT context struct.
1939 ************************/
1940 void smt_timer_poll(struct s_smc
*smc
)
1945 /************************
1947 * ring_status_indication
1949 * This function indicates a change of the ring state.
1951 * smc - A pointer to the SMT context struct.
1953 * status - The current ring status.
1957 ************************/
1958 void ring_status_indication(struct s_smc
*smc
, u_long status
)
1960 pr_debug("ring_status_indication( ");
1961 if (status
& RS_RES15
)
1962 pr_debug("RS_RES15 ");
1963 if (status
& RS_HARDERROR
)
1964 pr_debug("RS_HARDERROR ");
1965 if (status
& RS_SOFTERROR
)
1966 pr_debug("RS_SOFTERROR ");
1967 if (status
& RS_BEACON
)
1968 pr_debug("RS_BEACON ");
1969 if (status
& RS_PATHTEST
)
1970 pr_debug("RS_PATHTEST ");
1971 if (status
& RS_SELFTEST
)
1972 pr_debug("RS_SELFTEST ");
1973 if (status
& RS_RES9
)
1974 pr_debug("RS_RES9 ");
1975 if (status
& RS_DISCONNECT
)
1976 pr_debug("RS_DISCONNECT ");
1977 if (status
& RS_RES7
)
1978 pr_debug("RS_RES7 ");
1979 if (status
& RS_DUPADDR
)
1980 pr_debug("RS_DUPADDR ");
1981 if (status
& RS_NORINGOP
)
1982 pr_debug("RS_NORINGOP ");
1983 if (status
& RS_VERSION
)
1984 pr_debug("RS_VERSION ");
1985 if (status
& RS_STUCKBYPASSS
)
1986 pr_debug("RS_STUCKBYPASSS ");
1987 if (status
& RS_EVENT
)
1988 pr_debug("RS_EVENT ");
1989 if (status
& RS_RINGOPCHANGE
)
1990 pr_debug("RS_RINGOPCHANGE ");
1991 if (status
& RS_RES0
)
1992 pr_debug("RS_RES0 ");
1994 } // ring_status_indication
1997 /************************
2001 * Gets the current time from the system.
2005 * The current time in TICKS_PER_SECOND.
2007 * TICKS_PER_SECOND has the unit 'count of timer ticks per second'. It is
2008 * defined in "targetos.h". The definition of TICKS_PER_SECOND must comply
2009 * to the time returned by smt_get_time().
2011 ************************/
2012 unsigned long smt_get_time(void)
2018 /************************
2022 * Status counter update (ring_op, fifo full).
2024 * smc - A pointer to the SMT context struct.
2026 * stat - = 0: A ring operational change occurred.
2027 * = 1: The FORMAC FIFO buffer is full / FIFO overflow.
2031 ************************/
2032 void smt_stat_counter(struct s_smc
*smc
, int stat
)
2034 // BOOLEAN RingIsUp ;
2036 pr_debug("smt_stat_counter\n");
2039 pr_debug("Ring operational change.\n");
2042 pr_debug("Receive fifo overflow.\n");
2043 smc
->os
.MacStat
.gen
.rx_errors
++;
2046 pr_debug("Unknown status (%d).\n", stat
);
2049 } // smt_stat_counter
2052 /************************
2056 * Sets CFM state in custom statistics.
2058 * smc - A pointer to the SMT context struct.
2060 * c_state - Possible values are:
2062 * EC0_OUT, EC1_IN, EC2_TRACE, EC3_LEAVE, EC4_PATH_TEST,
2063 * EC5_INSERT, EC6_CHECK, EC7_DEINSERT
2067 ************************/
2068 void cfm_state_change(struct s_smc
*smc
, int c_state
)
2096 s
= "SC10_C_WRAP_B";
2099 s
= "SC11_C_WRAP_S";
2102 pr_debug("cfm_state_change: unknown %d\n", c_state
);
2105 pr_debug("cfm_state_change: %s\n", s
);
2106 #endif // DRIVERDEBUG
2107 } // cfm_state_change
2110 /************************
2114 * Sets ECM state in custom statistics.
2116 * smc - A pointer to the SMT context struct.
2118 * e_state - Possible values are:
2120 * SC0_ISOLATED, SC1_WRAP_A (5), SC2_WRAP_B (6), SC4_THRU_A (12),
2121 * SC5_THRU_B (7), SC7_WRAP_S (8)
2125 ************************/
2126 void ecm_state_change(struct s_smc
*smc
, int e_state
)
2145 s
= "EC4_PATH_TEST";
2160 pr_debug("ecm_state_change: %s\n", s
);
2161 #endif //DRIVERDEBUG
2162 } // ecm_state_change
2165 /************************
2169 * Sets RMT state in custom statistics.
2171 * smc - A pointer to the SMT context struct.
2173 * r_state - Possible values are:
2175 * RM0_ISOLATED, RM1_NON_OP, RM2_RING_OP, RM3_DETECT,
2176 * RM4_NON_OP_DUP, RM5_RING_OP_DUP, RM6_DIRECTED, RM7_TRACE
2180 ************************/
2181 void rmt_state_change(struct s_smc
*smc
, int r_state
)
2191 s
= "RM1_NON_OP - not operational";
2194 s
= "RM2_RING_OP - ring operational";
2197 s
= "RM3_DETECT - detect dupl addresses";
2199 case RM4_NON_OP_DUP
:
2200 s
= "RM4_NON_OP_DUP - dupl. addr detected";
2202 case RM5_RING_OP_DUP
:
2203 s
= "RM5_RING_OP_DUP - ring oper. with dupl. addr";
2206 s
= "RM6_DIRECTED - sending directed beacons";
2209 s
= "RM7_TRACE - trace initiated";
2215 pr_debug("[rmt_state_change: %s]\n", s
);
2216 #endif // DRIVERDEBUG
2217 } // rmt_state_change
2220 /************************
2222 * drv_reset_indication
2224 * This function is called by the SMT when it has detected a severe
2225 * hardware problem. The driver should perform a reset on the adapter
2226 * as soon as possible, but not from within this function.
2228 * smc - A pointer to the SMT context struct.
2232 ************************/
2233 void drv_reset_indication(struct s_smc
*smc
)
2235 pr_debug("entering drv_reset_indication\n");
2237 smc
->os
.ResetRequested
= TRUE
; // Set flag.
2239 } // drv_reset_indication
2241 static struct pci_driver skfddi_pci_driver
= {
2243 .id_table
= skfddi_pci_tbl
,
2244 .probe
= skfp_init_one
,
2245 .remove
= skfp_remove_one
,
2248 module_pci_driver(skfddi_pci_driver
);