skfddi.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:75k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * File Name:
  3.  *   skfddi.c
  4.  *
  5.  * Copyright Information:
  6.  *   Copyright SysKonnect 1998,1999.
  7.  *
  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.
  12.  *
  13.  * The information in this file is provided "AS IS" without warranty.
  14.  *
  15.  * Abstract:
  16.  *   A Linux device driver supporting the SysKonnect FDDI PCI controller
  17.  *   familie.
  18.  *
  19.  * Maintainers:
  20.  *   CG    Christoph Goos (cgoos@syskonnect.de)
  21.  *
  22.  * Contributors:
  23.  *   DM    David S. Miller
  24.  *
  25.  * Address all question to:
  26.  *   linux@syskonnect.de
  27.  *
  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".
  31.  *
  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 dependant fuctions are handled by the SysKonnect
  37.  *   Hardware Module.
  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.
  42.  * NOTE:
  43.  *   Compiling this driver produces some warnings, but I did not fix
  44.  *   this, because the Hardware Module source is used for different
  45.  *   drivers, and fixing it for Linux might bring problems on other
  46.  *   projects. To keep the source common for all those drivers (and
  47.  *   thus simplify fixes to it), please do not clean it up!
  48.  *
  49.  * Modification History:
  50.  *              Date            Name    Description
  51.  *              02-Mar-98       CG Created.
  52.  *
  53.  * 10-Mar-99 CG Support for 2.2.x added.
  54.  * 25-Mar-99 CG Corrected IRQ routing for SMP (APIC)
  55.  * 26-Oct-99 CG Fixed compilation error on 2.2.13
  56.  * 12-Nov-99 CG Source code release
  57.  * 22-Nov-99 CG Included in kernel source.
  58.  * 07-May-00 DM 64 bit fixes, new dma interface
  59.  * 06-May-02 ML Structure fixes
  60.  *
  61.  * Compilation options (-Dxxx):
  62.  *              DRIVERDEBUG     print lots of messages to log file
  63.  *              DUMPPACKETS     print received/transmitted packets to logfile
  64.  * 
  65.  * Tested cpu architectures:
  66.  * - i386
  67.  * - sparc64
  68.  */
  69. /* Version information string - should be updated prior to */
  70. /* each new release!!! */
  71. #define VERSION "2.07"
  72. static const char *boot_msg = 
  73. "SysKonnect FDDI PCI Adapter driver v" VERSION " forn"
  74. "  SK-55xx/SK-58xx adapters (SK-NET FDDI-FP/UP/LP)";
  75. /* Include files */
  76. #include <linux/module.h>
  77. #include <linux/kernel.h>
  78. #include <linux/sched.h>
  79. #include <linux/string.h>
  80. #include <linux/ptrace.h>
  81. #include <linux/errno.h>
  82. #include <linux/ioport.h>
  83. #include <linux/slab.h>
  84. #include <linux/interrupt.h>
  85. #include <linux/pci.h>
  86. #include <linux/delay.h>
  87. #include <asm/byteorder.h>
  88. #include <asm/bitops.h>
  89. #include <asm/io.h>
  90. #include <asm/uaccess.h>
  91. #include <linux/ctype.h> // isdigit
  92. #include <linux/netdevice.h>
  93. #include <linux/fddidevice.h>
  94. #include <linux/skbuff.h>
  95. #include "h/types.h"
  96. #undef ADDR // undo Linux definition
  97. #include "h/skfbi.h"
  98. #include "h/fddi.h"
  99. #include "h/smc.h"
  100. #include "h/smtstate.h"
  101. // Define global routines
  102. int skfp_probe(struct net_device *dev);
  103. // Define module-wide (static) routines
  104. static struct net_device *alloc_device(struct net_device *dev, u_long iobase);
  105. static struct net_device *insert_device(struct net_device *dev,
  106.     int (*init) (struct net_device *));
  107. static int fddi_dev_index(unsigned char *s);
  108. static void init_dev(struct net_device *dev, u_long iobase);
  109. static void link_modules(struct net_device *dev, struct net_device *tmp);
  110. static int skfp_driver_init(struct net_device *dev);
  111. static int skfp_open(struct net_device *dev);
  112. static int skfp_close(struct net_device *dev);
  113. static void skfp_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  114. static struct net_device_stats *skfp_ctl_get_stats(struct net_device *dev);
  115. static void skfp_ctl_set_multicast_list(struct net_device *dev);
  116. static void skfp_ctl_set_multicast_list_wo_lock(struct net_device *dev);
  117. static int skfp_ctl_set_mac_address(struct net_device *dev, void *addr);
  118. static int skfp_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  119. static int skfp_send_pkt(struct sk_buff *skb, struct net_device *dev);
  120. static void send_queued_packets(struct s_smc *smc);
  121. static void CheckSourceAddress(unsigned char *frame, unsigned char *hw_addr);
  122. static void ResetAdapter(struct s_smc *smc);
  123. // Functions needed by the hardware module
  124. void *mac_drv_get_space(struct s_smc *smc, u_int size);
  125. void *mac_drv_get_desc_mem(struct s_smc *smc, u_int size);
  126. unsigned long mac_drv_virt2phys(struct s_smc *smc, void *virt);
  127. unsigned long dma_master(struct s_smc *smc, void *virt, int len, int flag);
  128. void dma_complete(struct s_smc *smc, volatile union s_fp_descr *descr,
  129.   int flag);
  130. void mac_drv_tx_complete(struct s_smc *smc, volatile struct s_smt_fp_txd *txd);
  131. void llc_restart_tx(struct s_smc *smc);
  132. void mac_drv_rx_complete(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
  133.  int frag_count, int len);
  134. void mac_drv_requeue_rxd(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
  135.  int frag_count);
  136. void mac_drv_fill_rxd(struct s_smc *smc);
  137. void mac_drv_clear_rxd(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
  138.        int frag_count);
  139. int mac_drv_rx_init(struct s_smc *smc, int len, int fc, char *look_ahead,
  140.     int la_len);
  141. void smt_timer_poll(struct s_smc *smc);
  142. void ring_status_indication(struct s_smc *smc, u_long status);
  143. unsigned long smt_get_time(void);
  144. void smt_stat_counter(struct s_smc *smc, int stat);
  145. void cfm_state_change(struct s_smc *smc, int c_state);
  146. void ecm_state_change(struct s_smc *smc, int e_state);
  147. void pcm_state_change(struct s_smc *smc, int plc, int p_state);
  148. void rmt_state_change(struct s_smc *smc, int r_state);
  149. void drv_reset_indication(struct s_smc *smc);
  150. void dump_data(unsigned char *Data, int length);
  151. // External functions from the hardware module
  152. extern u_int mac_drv_check_space();
  153. extern void read_address(struct s_smc *smc, u_char * mac_addr);
  154. extern void card_stop(struct s_smc *smc);
  155. extern int mac_drv_init(struct s_smc *smc);
  156. extern void hwm_tx_frag(struct s_smc *smc, char far * virt, u_long phys,
  157. int len, int frame_status);
  158. extern int hwm_tx_init(struct s_smc *smc, u_char fc, int frag_count,
  159.        int frame_len, int frame_status);
  160. extern int init_smt(struct s_smc *smc, u_char * mac_addr);
  161. extern void fddi_isr(struct s_smc *smc);
  162. extern void hwm_rx_frag(struct s_smc *smc, char far * virt, u_long phys,
  163. int len, int frame_status);
  164. extern void mac_drv_rx_mode(struct s_smc *smc, int mode);
  165. extern void mac_drv_clear_tx_queue(struct s_smc *smc);
  166. extern void mac_drv_clear_rx_queue(struct s_smc *smc);
  167. extern void mac_clear_multicast(struct s_smc *smc);
  168. extern void enable_tx_irq(struct s_smc *smc, u_short queue);
  169. extern void mac_drv_clear_txd(struct s_smc *smc);
  170. static struct pci_device_id skfddi_pci_tbl[] __initdata = {
  171. { PCI_VENDOR_ID_SK, PCI_DEVICE_ID_SK_FP, PCI_ANY_ID, PCI_ANY_ID, },
  172. { } /* Terminating entry */
  173. };
  174. MODULE_DEVICE_TABLE(pci, skfddi_pci_tbl);
  175. MODULE_LICENSE("GPL");
  176. MODULE_AUTHOR("Mirko Lindner <mlindner@syskonnect.de>");
  177. // Define module-wide (static) variables
  178. static int num_boards; /* total number of adapters configured */
  179. static int num_fddi;
  180. static int autoprobed;
  181. #ifdef MODULE
  182. int init_module(void);
  183. void cleanup_module(void);
  184. static struct net_device *unlink_modules(struct net_device *p);
  185. static int loading_module = 1;
  186. #else
  187. static int loading_module;
  188. #endif // MODULE
  189. #ifdef DRIVERDEBUG
  190. #define PRINTK(s, args...) printk(s, ## args)
  191. #else
  192. #define PRINTK(s, args...)
  193. #endif // DRIVERDEBUG
  194. #define PRIV(dev) (&(((struct s_smc *)dev->priv)->os))
  195. /*
  196.  * ==============
  197.  * = skfp_probe =
  198.  * ==============
  199.  *   
  200.  * Overview:
  201.  *   Probes for supported FDDI PCI controllers
  202.  *  
  203.  * Returns:
  204.  *   Condition code
  205.  *       
  206.  * Arguments:
  207.  *   dev - pointer to device information
  208.  *
  209.  * Functional Description:
  210.  *   This routine is called by the OS for each FDDI device name (fddi0,
  211.  *   fddi1,...,fddi6, fddi7) specified in drivers/net/Space.c.
  212.  *   If loaded as a module, it will detect and initialize all 
  213.  *   adapters the first time it is called.
  214.  *
  215.  *   Let's say that skfp_probe() is getting called to initialize fddi0.
  216.  *   Furthermore, let's say there are three supported controllers in the
  217.  *   system.  Before skfp_probe() leaves, devices fddi0, fddi1, and fddi2
  218.  *   will be initialized and a global flag will be set to indicate that
  219.  *   skfp_probe() has already been called.
  220.  *
  221.  *   However...the OS doesn't know that we've already initialized
  222.  *   devices fddi1 and fddi2 so skfp_probe() gets called again and again
  223.  *   until it reaches the end of the device list for FDDI (presently,
  224.  *   fddi7).  It's important that the driver "pretend" to probe for
  225.  *   devices fddi1 and fddi2 and return success.  Devices fddi3
  226.  *   through fddi7 will return failure since they weren't initialized.
  227.  *
  228.  *   This algorithm seems to work for the time being.  As other FDDI
  229.  *   drivers are written for Linux, a more generic approach (perhaps
  230.  *   similar to the Ethernet card approach) may need to be implemented.
  231.  *   
  232.  * Return Codes:
  233.  *   0           - This device (fddi0, fddi1, etc) configured successfully
  234.  *   -ENODEV - No devices present, or no SysKonnect FDDI PCI device
  235.  *                         present for this device name
  236.  *
  237.  *
  238.  * Side Effects:
  239.  *   Device structures for FDDI adapters (fddi0, fddi1, etc) are
  240.  *   initialized and the board resources are read and stored in
  241.  *   the device structure.
  242.  */
  243. int skfp_probe(struct net_device *dev)
  244. {
  245. int i; /* used in for loops */
  246. struct pci_dev *pdev = NULL; /* PCI device structure */
  247. #ifndef MEM_MAPPED_IO
  248. u16 port; /* temporary I/O (port) address */
  249. int port_len; /* length of port address range (in bytes) */
  250. #else
  251. unsigned long port;
  252. #endif
  253. u16 command; /* PCI Configuration space Command register val */
  254. struct s_smc *smc; /* board pointer */
  255. struct net_device *tmp = dev;
  256. u8 first_dev_used = 0;
  257. u16 SubSysId;
  258. PRINTK(KERN_INFO "entering skfp_proben");
  259. /*
  260.  * Verify whether we're going through skfp_probe() again
  261.  *
  262.  * If so, see if we're going through for a subsequent fddi device that
  263.  * we've already initialized.  If we are, return success (0).  If not,
  264.  * return failure (-ENODEV).
  265.  */
  266. if (autoprobed) {
  267. PRINTK(KERN_INFO "Already entered skfp_proben");
  268. if (dev != NULL) {
  269. if ((strncmp(dev->name, "fddi", 4) == 0) &&
  270.     (dev->base_addr != 0)) {
  271. return (0);
  272. }
  273. return (-ENODEV);
  274. }
  275. }
  276. autoprobed = 1; /* set global flag */
  277. printk("%sn", boot_msg);
  278. /* Scan for Syskonnect FDDI PCI controllers */
  279. if (!pci_present()) { /* is PCI BIOS even present? */
  280. printk("no PCI BIOS presentn");
  281. return (-ENODEV);
  282. }
  283. for (i = 0; i < SKFP_MAX_NUM_BOARDS; i++) { // scan for PCI cards
  284. PRINTK(KERN_INFO "Check device %dn", i);
  285. if ((pdev=pci_find_device(PCI_VENDOR_ID_SK, PCI_DEVICE_ID_SK_FP,
  286. pdev)) == 0) {
  287. break;
  288. }
  289. if (pci_enable_device(pdev))
  290. continue;
  291. #ifndef MEM_MAPPED_IO
  292. /* Verify that I/O enable bit is set (PCI slot is enabled) */
  293. pci_read_config_word(pdev, PCI_COMMAND, &command);
  294. if ((command & PCI_COMMAND_IO) == 0) {
  295. PRINTK("I/O enable bit not set!");
  296. PRINTK(" Verify that slot is enabledn");
  297. continue;
  298. }
  299. /* Turn off memory mapped space and enable mastering */
  300. PRINTK(KERN_INFO "Command Reg: %04xn", command);
  301. command |= PCI_COMMAND_MASTER;
  302. command &= ~PCI_COMMAND_MEMORY;
  303. pci_write_config_word(pdev, PCI_COMMAND, command);
  304. /* Read I/O base address from PCI Configuration Space */
  305. pci_read_config_word(pdev, PCI_BASE_ADDRESS_1, &port);
  306. port &= PCI_BASE_ADDRESS_IO_MASK; // clear I/O bit (bit 0)
  307. /* Verify port address range is not already being used */
  308. port_len = FP_IO_LEN;
  309. if (check_region(port, port_len) != 0) {
  310. printk("I/O range allocated to adapter");
  311. printk(" (0x%X-0x%X) is already being used!n", port,
  312.        (port + port_len - 1));
  313. continue;
  314. }
  315. #else
  316. /* Verify that MEM enable bit is set (PCI slot is enabled) */
  317. pci_read_config_word(pdev, PCI_COMMAND, &command);
  318. if ((command & PCI_COMMAND_MEMORY) == 0) {
  319. PRINTK("MEMORY-I/O enable bit not set!");
  320. PRINTK(" Verify that slot is enabledn");
  321. continue;
  322. }
  323. /* Turn off IO mapped space and enable mastering */
  324. PRINTK(KERN_INFO "Command Reg: %04xn", command);
  325. command |= PCI_COMMAND_MASTER;
  326. command &= ~PCI_COMMAND_IO;
  327. pci_write_config_word(pdev, PCI_COMMAND, command);
  328. port = pci_resource_start(pdev, 0);
  329. port = (unsigned long)ioremap(port, 0x4000);
  330. if (!port){
  331. printk("skfp:  Unable to map MEMORY register, "
  332. "FDDI adapter will be disabled.n");
  333. break;
  334. }
  335. #endif
  336. if ((!loading_module) || first_dev_used) {
  337. /* Allocate a device structure for this adapter */
  338. tmp = alloc_device(dev, port);
  339. }
  340. first_dev_used = 1; // only significant first time
  341. pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &SubSysId);
  342. if (tmp != NULL) {
  343. if (loading_module)
  344. link_modules(dev, tmp);
  345. dev = tmp;
  346. init_dev(dev, port);
  347. dev->irq = pdev->irq;
  348. /* Initialize board structure with bus-specific info */
  349. smc = (struct s_smc *) dev->priv;
  350. smc->os.dev = dev;
  351. smc->os.bus_type = SK_BUS_TYPE_PCI;
  352. smc->os.pdev = *pdev;
  353. smc->os.QueueSkb = MAX_TX_QUEUE_LEN;
  354. smc->os.MaxFrameSize = MAX_FRAME_SIZE;
  355. smc->os.dev = dev;
  356. smc->hw.slot = -1;
  357. smc->os.ResetRequested = FALSE;
  358. skb_queue_head_init(&smc->os.SendSkbQueue);
  359. if (skfp_driver_init(dev) == 0) {
  360. // only increment global board 
  361. // count on success
  362. num_boards++;
  363. request_region(dev->base_addr,
  364.        FP_IO_LEN, dev->name);
  365. if ((SubSysId & 0xff00) == 0x5500 ||
  366. (SubSysId & 0xff00) == 0x5800) {
  367. printk("%s: SysKonnect FDDI PCI adapter"
  368.        " found (SK-%04X)n", dev->name,
  369. SubSysId);
  370. } else {
  371. printk("%s: FDDI PCI adapter foundn",
  372. dev->name);
  373. }
  374. } else {
  375. kfree(dev);
  376. i = SKFP_MAX_NUM_BOARDS; // stop search
  377. }
  378. } // if (dev != NULL)
  379. } // for SKFP_MAX_NUM_BOARDS
  380. /*
  381.  * If we're at this point we're going through skfp_probe() for the
  382.  * first time. Return success (0) if we've initialized 1 or more
  383.  * boards. Otherwise, return failure (-ENODEV).
  384.  */
  385. if (num_boards > 0)
  386. return (0);
  387. else {
  388. printk("no SysKonnect FDDI adapter foundn");
  389. return (-ENODEV);
  390. }
  391. } // skfp_probe
  392. /************************
  393.  *
  394.  * Search the entire 'fddi' device list for a fixed probe. If a match isn't
  395.  * found then check for an autoprobe or unused device location. If they
  396.  * are not available then insert a new device structure at the end of
  397.  * the current list.
  398.  *
  399.  ************************/
  400. static struct net_device *alloc_device(struct net_device *dev, u_long iobase)
  401. {
  402. struct net_device *adev = NULL;
  403. int fixed = 0, new_dev = 0;
  404. PRINTK(KERN_INFO "entering alloc_devicen");
  405. if (!dev)
  406. return dev;
  407. num_fddi = fddi_dev_index(dev->name);
  408. if (loading_module) {
  409. num_fddi++;
  410. dev = insert_device(dev, skfp_probe);
  411. return dev;
  412. }
  413. while (1) {
  414. if (((dev->base_addr == NO_ADDRESS) ||
  415.      (dev->base_addr == 0)) && !adev) {
  416. adev = dev;
  417. } else if ((dev->priv == NULL) && (dev->base_addr == iobase)) {
  418. fixed = 1;
  419. } else {
  420. if (dev->next == NULL) {
  421. new_dev = 1;
  422. } else if (strncmp(dev->next->name, "fddi", 4) != 0) {
  423. new_dev = 1;
  424. }
  425. }
  426. if ((dev->next == NULL) || new_dev || fixed)
  427. break;
  428. dev = dev->next;
  429. num_fddi++;
  430. } // while (1)
  431. if (adev && !fixed) {
  432. dev = adev;
  433. num_fddi = fddi_dev_index(dev->name);
  434. new_dev = 0;
  435. }
  436. if (((dev->next == NULL) && ((dev->base_addr != NO_ADDRESS) &&
  437.      (dev->base_addr != 0)) && !fixed) ||
  438.     new_dev) {
  439. num_fddi++; /* New device */
  440. dev = insert_device(dev, skfp_probe);
  441. }
  442. if (dev) {
  443. if (!dev->priv) {
  444. /* Allocate space for private board structure */
  445. dev->priv = (void *) kmalloc(sizeof(struct s_smc),
  446.      GFP_KERNEL);
  447. if (dev->priv == NULL) {
  448. printk("%s: Could not allocate memory for",
  449. dev->name);
  450. printk(" private board structure!n");
  451. return (NULL);
  452. }
  453. /* clear structure */
  454. memset(dev->priv, 0, sizeof(struct s_smc));
  455. }
  456. }
  457. return dev;
  458. } // alloc_device
  459. /************************
  460.  *
  461.  * Initialize device structure
  462.  *
  463.  ************************/
  464. static void init_dev(struct net_device *dev, u_long iobase)
  465. {
  466. /* Initialize new device structure */
  467. dev->rmem_end = 0; /* shared memory isn't used */
  468. dev->rmem_start = 0; /* shared memory isn't used */
  469. dev->mem_end = 0; /* shared memory isn't used */
  470. dev->mem_start = 0; /* shared memory isn't used */
  471. dev->base_addr = iobase; /* save port (I/O) base address */
  472. dev->if_port = 0; /* not applicable to FDDI adapters */
  473. dev->dma = 0; /* Bus Master DMA doesn't require channel */
  474. dev->irq = 0;
  475. netif_start_queue(dev);
  476. dev->get_stats = &skfp_ctl_get_stats;
  477. dev->open = &skfp_open;
  478. dev->stop = &skfp_close;
  479. dev->hard_start_xmit = &skfp_send_pkt;
  480. dev->hard_header = NULL; /* set in fddi_setup() */
  481. dev->rebuild_header = NULL; /* set in fddi_setup() */
  482. dev->set_multicast_list = &skfp_ctl_set_multicast_list;
  483. dev->set_mac_address = &skfp_ctl_set_mac_address;
  484. dev->do_ioctl = &skfp_ioctl;
  485. dev->set_config = NULL; /* not supported for now &&& */
  486. dev->header_cache_update = NULL; /* not supported */
  487. dev->change_mtu = NULL; /* set in fddi_setup() */
  488. /* Initialize remaining device structure information */
  489. fddi_setup(dev);
  490. } // init_device
  491. /************************
  492.  *
  493.  * If at end of fddi device list and can't use current entry, malloc
  494.  * one up. If memory could not be allocated, print an error message.
  495.  *
  496. ************************/
  497. static struct net_device *insert_device(struct net_device *dev,
  498.     int (*init) (struct net_device *))
  499. {
  500. struct net_device *new;
  501. int len;
  502. PRINTK(KERN_INFO "entering insert_devicen");
  503. len = sizeof(struct net_device) + sizeof(struct s_smc);
  504. new = (struct net_device *) kmalloc(len, GFP_KERNEL);
  505. if (new == NULL) {
  506. printk("fddi%d: Device not initialised, insufficient memoryn",
  507.        num_fddi);
  508. return NULL;
  509. } else {
  510. memset((char *) new, 0, len);
  511. new->priv = (struct s_smc *) (new + 1);
  512. new->init = init; /* initialisation routine */
  513. if (!loading_module) {
  514. new->next = dev->next;
  515. dev->next = new;
  516. }
  517. /* create new device name */
  518. if (num_fddi > 999) {
  519. sprintf(new->name, "fddi????");
  520. } else {
  521. sprintf(new->name, "fddi%d", num_fddi);
  522. }
  523. }
  524. return new;
  525. } // insert_device
  526. /************************
  527.  *
  528.  * Get the number of a "fddiX" string
  529.  *
  530.  ************************/
  531. static int fddi_dev_index(unsigned char *s)
  532. {
  533. int i = 0, j = 0;
  534. for (; *s; s++) {
  535. if (isdigit(*s)) {
  536. j = 1;
  537. i = (i * 10) + (*s - '0');
  538. } else if (j)
  539. break;
  540. }
  541. return i;
  542. } // fddi_dev_index
  543. /************************
  544.  *
  545.  * Used if loaded as module only. Link the device structures
  546.  * together. Needed to release them all at unload.
  547.  *
  548. ************************/
  549. static void link_modules(struct net_device *dev, struct net_device *tmp)
  550. {
  551. struct net_device *p = dev;
  552. if (p) {
  553. while (((struct s_smc *) (p->priv))->os.next_module) {
  554. p = ((struct s_smc *) (p->priv))->os.next_module;
  555. }
  556. if (dev != tmp) {
  557. ((struct s_smc *) (p->priv))->os.next_module = tmp;
  558. } else {
  559. ((struct s_smc *) (p->priv))->os.next_module = NULL;
  560. }
  561. }
  562. return;
  563. } // link_modules
  564. /*
  565.  * ====================
  566.  * = skfp_driver_init =
  567.  * ====================
  568.  *   
  569.  * Overview:
  570.  *   Initializes remaining adapter board structure information
  571.  *   and makes sure adapter is in a safe state prior to skfp_open().
  572.  *  
  573.  * Returns:
  574.  *   Condition code
  575.  *       
  576.  * Arguments:
  577.  *   dev - pointer to device information
  578.  *
  579.  * Functional Description:
  580.  *   This function allocates additional resources such as the host memory
  581.  *   blocks needed by the adapter.
  582.  *   The adapter is also reset. The OS must call skfp_open() to open 
  583.  *   the adapter and bring it on-line.
  584.  *
  585.  * Return Codes:
  586.  *    0 - initialization succeeded
  587.  *   -1 - initialization failed
  588.  */
  589. static int skfp_driver_init(struct net_device *dev)
  590. {
  591. struct s_smc *smc = (struct s_smc *) dev->priv;
  592. skfddi_priv *bp = PRIV(dev);
  593. u8 val; /* used for I/O read/writes */
  594. PRINTK(KERN_INFO "entering skfp_driver_initn");
  595. // set the io address in private structures
  596. bp->base_addr = dev->base_addr;
  597. smc->hw.iop = dev->base_addr;
  598. // Get the interrupt level from the PCI Configuration Table
  599. val = dev->irq;
  600. smc->hw.irq = val;
  601. spin_lock_init(&bp->DriverLock);
  602. // Allocate invalid frame
  603. bp->LocalRxBuffer = pci_alloc_consistent(&bp->pdev, MAX_FRAME_SIZE, &bp->LocalRxBufferDMA);
  604. if (!bp->LocalRxBuffer) {
  605. printk("could not allocate mem for ");
  606. printk("LocalRxBuffer: %d byten", MAX_FRAME_SIZE);
  607. goto fail;
  608. }
  609. // Determine the required size of the 'shared' memory area.
  610. bp->SharedMemSize = mac_drv_check_space();
  611. PRINTK(KERN_INFO "Memory for HWM: %ldn", bp->SharedMemSize);
  612. if (bp->SharedMemSize > 0) {
  613. bp->SharedMemSize += 16; // for descriptor alignment
  614. bp->SharedMemAddr = pci_alloc_consistent(&bp->pdev,
  615.  bp->SharedMemSize,
  616.  &bp->SharedMemDMA);
  617. if (!bp->SharedMemSize) {
  618. printk("could not allocate mem for ");
  619. printk("hardware module: %ld byten",
  620.        bp->SharedMemSize);
  621. goto fail;
  622. }
  623. bp->SharedMemHeap = 0; // Nothing used yet.
  624. } else {
  625. bp->SharedMemAddr = NULL;
  626. bp->SharedMemHeap = 0;
  627. } // SharedMemSize > 0
  628. memset(bp->SharedMemAddr, 0, bp->SharedMemSize);
  629. card_stop(smc); // Reset adapter.
  630. PRINTK(KERN_INFO "mac_drv_init()..n");
  631. if (mac_drv_init(smc) != 0) {
  632. PRINTK(KERN_INFO "mac_drv_init() failed.n");
  633. goto fail;
  634. }
  635. read_address(smc, NULL);
  636. PRINTK(KERN_INFO "HW-Addr: %02x %02x %02x %02x %02x %02xn",
  637.        smc->hw.fddi_canon_addr.a[0],
  638.        smc->hw.fddi_canon_addr.a[1],
  639.        smc->hw.fddi_canon_addr.a[2],
  640.        smc->hw.fddi_canon_addr.a[3],
  641.        smc->hw.fddi_canon_addr.a[4],
  642.        smc->hw.fddi_canon_addr.a[5]);
  643. memcpy(dev->dev_addr, smc->hw.fddi_canon_addr.a, 6);
  644. smt_reset_defaults(smc, 0);
  645. return (0);
  646. fail:
  647. if (bp->SharedMemAddr) {
  648. pci_free_consistent(&bp->pdev,
  649.     bp->SharedMemSize,
  650.     bp->SharedMemAddr,
  651.     bp->SharedMemDMA);
  652. bp->SharedMemAddr = NULL;
  653. }
  654. if (bp->LocalRxBuffer) {
  655. pci_free_consistent(&bp->pdev, MAX_FRAME_SIZE,
  656.     bp->LocalRxBuffer, bp->LocalRxBufferDMA);
  657. bp->LocalRxBuffer = NULL;
  658. }
  659. return (-1);
  660. } // skfp_driver_init
  661. /*
  662.  * =============
  663.  * = skfp_open =
  664.  * =============
  665.  *   
  666.  * Overview:
  667.  *   Opens the adapter
  668.  *  
  669.  * Returns:
  670.  *   Condition code
  671.  *       
  672.  * Arguments:
  673.  *   dev - pointer to device information
  674.  *
  675.  * Functional Description:
  676.  *   This function brings the adapter to an operational state.
  677.  *
  678.  * Return Codes:
  679.  *   0           - Adapter was successfully opened
  680.  *   -EAGAIN - Could not register IRQ
  681.  */
  682. static int skfp_open(struct net_device *dev)
  683. {
  684. struct s_smc *smc = (struct s_smc *) dev->priv;
  685. PRINTK(KERN_INFO "entering skfp_openn");
  686. /* Register IRQ - support shared interrupts by passing device ptr */
  687. if (request_irq(dev->irq, (void *) skfp_interrupt, SA_SHIRQ,
  688. dev->name, dev)) {
  689. printk("%s: Requested IRQ %d is busyn", dev->name, dev->irq);
  690. return (-EAGAIN);
  691. }
  692. /*
  693.  * Set current address to factory MAC address
  694.  *
  695.  * Note: We've already done this step in skfp_driver_init.
  696.  *       However, it's possible that a user has set a node
  697.  *               address override, then closed and reopened the
  698.  *               adapter.  Unless we reset the device address field
  699.  *               now, we'll continue to use the existing modified
  700.  *               address.
  701.  */
  702. read_address(smc, NULL);
  703. memcpy(dev->dev_addr, smc->hw.fddi_canon_addr.a, 6);
  704. init_smt(smc, NULL);
  705. smt_online(smc, 1);
  706. STI_FBI();
  707. MOD_INC_USE_COUNT;
  708. /* Clear local multicast address tables */
  709. mac_clear_multicast(smc);
  710. /* Disable promiscuous filter settings */
  711. mac_drv_rx_mode(smc, RX_DISABLE_PROMISC);
  712. return (0);
  713. } // skfp_open
  714. /*
  715.  * ==============
  716.  * = skfp_close =
  717.  * ==============
  718.  *   
  719.  * Overview:
  720.  *   Closes the device/module.
  721.  *  
  722.  * Returns:
  723.  *   Condition code
  724.  *       
  725.  * Arguments:
  726.  *   dev - pointer to device information
  727.  *
  728.  * Functional Description:
  729.  *   This routine closes the adapter and brings it to a safe state.
  730.  *   The interrupt service routine is deregistered with the OS.
  731.  *   The adapter can be opened again with another call to skfp_open().
  732.  *
  733.  * Return Codes:
  734.  *   Always return 0.
  735.  *
  736.  * Assumptions:
  737.  *   No further requests for this adapter are made after this routine is
  738.  *   called.  skfp_open() can be called to reset and reinitialize the
  739.  *   adapter.
  740.  */
  741. static int skfp_close(struct net_device *dev)
  742. {
  743. struct s_smc *smc = (struct s_smc *) dev->priv;
  744. struct sk_buff *skb;
  745. skfddi_priv *bp = PRIV(dev);
  746. CLI_FBI();
  747. smt_reset_defaults(smc, 1);
  748. card_stop(smc);
  749. mac_drv_clear_tx_queue(smc);
  750. mac_drv_clear_rx_queue(smc);
  751. netif_stop_queue(dev);
  752. /* Deregister (free) IRQ */
  753. free_irq(dev->irq, dev);
  754. for (;;) {
  755. skb = skb_dequeue(&bp->SendSkbQueue);
  756. if (skb == NULL)
  757. break;
  758. bp->QueueSkb++;
  759. dev_kfree_skb(skb);
  760. }
  761. MOD_DEC_USE_COUNT;
  762. return (0);
  763. } // skfp_close
  764. /*
  765.  * ==================
  766.  * = skfp_interrupt =
  767.  * ==================
  768.  *   
  769.  * Overview:
  770.  *   Interrupt processing routine
  771.  *  
  772.  * Returns:
  773.  *   None
  774.  *       
  775.  * Arguments:
  776.  *   irq        - interrupt vector
  777.  *   dev_id     - pointer to device information
  778.  *       regs   - pointer to registers structure
  779.  *
  780.  * Functional Description:
  781.  *   This routine calls the interrupt processing routine for this adapter.  It
  782.  *   disables and reenables adapter interrupts, as appropriate.  We can support
  783.  *   shared interrupts since the incoming dev_id pointer provides our device
  784.  *   structure context. All the real work is done in the hardware module.
  785.  *
  786.  * Return Codes:
  787.  *   None
  788.  *
  789.  * Assumptions:
  790.  *   The interrupt acknowledgement at the hardware level (eg. ACKing the PIC
  791.  *   on Intel-based systems) is done by the operating system outside this
  792.  *   routine.
  793.  *
  794.  *       System interrupts are enabled through this call.
  795.  *
  796.  * Side Effects:
  797.  *   Interrupts are disabled, then reenabled at the adapter.
  798.  */
  799. void skfp_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  800. {
  801. struct net_device *dev = (struct net_device *) dev_id;
  802. struct s_smc *smc; /* private board structure pointer */
  803. skfddi_priv *bp = PRIV(dev);
  804. if (dev == NULL) {
  805. printk("%s: irq %d for unknown devicen", dev->name, irq);
  806. return;
  807. }
  808. smc = (struct s_smc *) dev->priv;
  809. // IRQs enabled or disabled ?
  810. if (inpd(ADDR(B0_IMSK)) == 0) {
  811. // IRQs are disabled: must be shared interrupt
  812. return;
  813. }
  814. // Note: At this point, IRQs are enabled.
  815. if ((inpd(ISR_A) & smc->hw.is_imask) == 0) { // IRQ?
  816. // Adapter did not issue an IRQ: must be shared interrupt
  817. return;
  818. }
  819. CLI_FBI(); // Disable IRQs from our adapter.
  820. spin_lock(&bp->DriverLock);
  821. // Call interrupt handler in hardware module (HWM).
  822. fddi_isr(smc);
  823. if (smc->os.ResetRequested) {
  824. ResetAdapter(smc);
  825. smc->os.ResetRequested = FALSE;
  826. }
  827. spin_unlock(&bp->DriverLock);
  828. STI_FBI(); // Enable IRQs from our adapter.
  829. return;
  830. } // skfp_interrupt
  831. /*
  832.  * ======================
  833.  * = skfp_ctl_get_stats =
  834.  * ======================
  835.  *   
  836.  * Overview:
  837.  *   Get statistics for FDDI adapter
  838.  *  
  839.  * Returns:
  840.  *   Pointer to FDDI statistics structure
  841.  *       
  842.  * Arguments:
  843.  *   dev - pointer to device information
  844.  *
  845.  * Functional Description:
  846.  *   Gets current MIB objects from adapter, then
  847.  *   returns FDDI statistics structure as defined
  848.  *   in if_fddi.h.
  849.  *
  850.  *   Note: Since the FDDI statistics structure is
  851.  *   still new and the device structure doesn't
  852.  *   have an FDDI-specific get statistics handler,
  853.  *   we'll return the FDDI statistics structure as
  854.  *   a pointer to an Ethernet statistics structure.
  855.  *   That way, at least the first part of the statistics
  856.  *   structure can be decoded properly.
  857.  *   We'll have to pay attention to this routine as the
  858.  *   device structure becomes more mature and LAN media
  859.  *   independent.
  860.  *
  861.  */
  862. struct net_device_stats *skfp_ctl_get_stats(struct net_device *dev)
  863. {
  864. struct s_smc *bp = (struct s_smc *) dev->priv;
  865. /* Fill the bp->stats structure with driver-maintained counters */
  866. bp->os.MacStat.port_bs_flag[0] = 0x1234;
  867. bp->os.MacStat.port_bs_flag[1] = 0x5678;
  868. // goos: need to fill out fddi statistic
  869. #if 0
  870. /* Get FDDI SMT MIB objects */
  871. /* Fill the bp->stats structure with the SMT MIB object values */
  872. 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));
  873. bp->stats.smt_op_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_op_version_id;
  874. bp->stats.smt_hi_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_hi_version_id;
  875. bp->stats.smt_lo_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_lo_version_id;
  876. 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));
  877. bp->stats.smt_mib_version_id = bp->cmd_rsp_virt->smt_mib_get.smt_mib_version_id;
  878. bp->stats.smt_mac_cts = bp->cmd_rsp_virt->smt_mib_get.smt_mac_ct;
  879. bp->stats.smt_non_master_cts = bp->cmd_rsp_virt->smt_mib_get.smt_non_master_ct;
  880. bp->stats.smt_master_cts = bp->cmd_rsp_virt->smt_mib_get.smt_master_ct;
  881. bp->stats.smt_available_paths = bp->cmd_rsp_virt->smt_mib_get.smt_available_paths;
  882. bp->stats.smt_config_capabilities = bp->cmd_rsp_virt->smt_mib_get.smt_config_capabilities;
  883. bp->stats.smt_config_policy = bp->cmd_rsp_virt->smt_mib_get.smt_config_policy;
  884. bp->stats.smt_connection_policy = bp->cmd_rsp_virt->smt_mib_get.smt_connection_policy;
  885. bp->stats.smt_t_notify = bp->cmd_rsp_virt->smt_mib_get.smt_t_notify;
  886. bp->stats.smt_stat_rpt_policy = bp->cmd_rsp_virt->smt_mib_get.smt_stat_rpt_policy;
  887. bp->stats.smt_trace_max_expiration = bp->cmd_rsp_virt->smt_mib_get.smt_trace_max_expiration;
  888. bp->stats.smt_bypass_present = bp->cmd_rsp_virt->smt_mib_get.smt_bypass_present;
  889. bp->stats.smt_ecm_state = bp->cmd_rsp_virt->smt_mib_get.smt_ecm_state;
  890. bp->stats.smt_cf_state = bp->cmd_rsp_virt->smt_mib_get.smt_cf_state;
  891. bp->stats.smt_remote_disconnect_flag = bp->cmd_rsp_virt->smt_mib_get.smt_remote_disconnect_flag;
  892. bp->stats.smt_station_status = bp->cmd_rsp_virt->smt_mib_get.smt_station_status;
  893. bp->stats.smt_peer_wrap_flag = bp->cmd_rsp_virt->smt_mib_get.smt_peer_wrap_flag;
  894. bp->stats.smt_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_msg_time_stamp.ls;
  895. bp->stats.smt_transition_time_stamp = bp->cmd_rsp_virt->smt_mib_get.smt_transition_time_stamp.ls;
  896. bp->stats.mac_frame_status_functions = bp->cmd_rsp_virt->smt_mib_get.mac_frame_status_functions;
  897. bp->stats.mac_t_max_capability = bp->cmd_rsp_virt->smt_mib_get.mac_t_max_capability;
  898. bp->stats.mac_tvx_capability = bp->cmd_rsp_virt->smt_mib_get.mac_tvx_capability;
  899. bp->stats.mac_available_paths = bp->cmd_rsp_virt->smt_mib_get.mac_available_paths;
  900. bp->stats.mac_current_path = bp->cmd_rsp_virt->smt_mib_get.mac_current_path;
  901. memcpy(bp->stats.mac_upstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_upstream_nbr, FDDI_K_ALEN);
  902. memcpy(bp->stats.mac_downstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_downstream_nbr, FDDI_K_ALEN);
  903. memcpy(bp->stats.mac_old_upstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_old_upstream_nbr, FDDI_K_ALEN);
  904. memcpy(bp->stats.mac_old_downstream_nbr, &bp->cmd_rsp_virt->smt_mib_get.mac_old_downstream_nbr, FDDI_K_ALEN);
  905. bp->stats.mac_dup_address_test = bp->cmd_rsp_virt->smt_mib_get.mac_dup_address_test;
  906. bp->stats.mac_requested_paths = bp->cmd_rsp_virt->smt_mib_get.mac_requested_paths;
  907. bp->stats.mac_downstream_port_type = bp->cmd_rsp_virt->smt_mib_get.mac_downstream_port_type;
  908. memcpy(bp->stats.mac_smt_address, &bp->cmd_rsp_virt->smt_mib_get.mac_smt_address, FDDI_K_ALEN);
  909. bp->stats.mac_t_req = bp->cmd_rsp_virt->smt_mib_get.mac_t_req;
  910. bp->stats.mac_t_neg = bp->cmd_rsp_virt->smt_mib_get.mac_t_neg;
  911. bp->stats.mac_t_max = bp->cmd_rsp_virt->smt_mib_get.mac_t_max;
  912. bp->stats.mac_tvx_value = bp->cmd_rsp_virt->smt_mib_get.mac_tvx_value;
  913. bp->stats.mac_frame_error_threshold = bp->cmd_rsp_virt->smt_mib_get.mac_frame_error_threshold;
  914. bp->stats.mac_frame_error_ratio = bp->cmd_rsp_virt->smt_mib_get.mac_frame_error_ratio;
  915. bp->stats.mac_rmt_state = bp->cmd_rsp_virt->smt_mib_get.mac_rmt_state;
  916. bp->stats.mac_da_flag = bp->cmd_rsp_virt->smt_mib_get.mac_da_flag;
  917. bp->stats.mac_una_da_flag = bp->cmd_rsp_virt->smt_mib_get.mac_unda_flag;
  918. bp->stats.mac_frame_error_flag = bp->cmd_rsp_virt->smt_mib_get.mac_frame_error_flag;
  919. bp->stats.mac_ma_unitdata_available = bp->cmd_rsp_virt->smt_mib_get.mac_ma_unitdata_available;
  920. bp->stats.mac_hardware_present = bp->cmd_rsp_virt->smt_mib_get.mac_hardware_present;
  921. bp->stats.mac_ma_unitdata_enable = bp->cmd_rsp_virt->smt_mib_get.mac_ma_unitdata_enable;
  922. bp->stats.path_tvx_lower_bound = bp->cmd_rsp_virt->smt_mib_get.path_tvx_lower_bound;
  923. bp->stats.path_t_max_lower_bound = bp->cmd_rsp_virt->smt_mib_get.path_t_max_lower_bound;
  924. bp->stats.path_max_t_req = bp->cmd_rsp_virt->smt_mib_get.path_max_t_req;
  925. memcpy(bp->stats.path_configuration, &bp->cmd_rsp_virt->smt_mib_get.path_configuration, sizeof(bp->cmd_rsp_virt->smt_mib_get.path_configuration));
  926. bp->stats.port_my_type[0] = bp->cmd_rsp_virt->smt_mib_get.port_my_type[0];
  927. bp->stats.port_my_type[1] = bp->cmd_rsp_virt->smt_mib_get.port_my_type[1];
  928. bp->stats.port_neighbor_type[0] = bp->cmd_rsp_virt->smt_mib_get.port_neighbor_type[0];
  929. bp->stats.port_neighbor_type[1] = bp->cmd_rsp_virt->smt_mib_get.port_neighbor_type[1];
  930. bp->stats.port_connection_policies[0] = bp->cmd_rsp_virt->smt_mib_get.port_connection_policies[0];
  931. bp->stats.port_connection_policies[1] = bp->cmd_rsp_virt->smt_mib_get.port_connection_policies[1];
  932. bp->stats.port_mac_indicated[0] = bp->cmd_rsp_virt->smt_mib_get.port_mac_indicated[0];
  933. bp->stats.port_mac_indicated[1] = bp->cmd_rsp_virt->smt_mib_get.port_mac_indicated[1];
  934. bp->stats.port_current_path[0] = bp->cmd_rsp_virt->smt_mib_get.port_current_path[0];
  935. bp->stats.port_current_path[1] = bp->cmd_rsp_virt->smt_mib_get.port_current_path[1];
  936. memcpy(&bp->stats.port_requested_paths[0 * 3], &bp->cmd_rsp_virt->smt_mib_get.port_requested_paths[0], 3);
  937. memcpy(&bp->stats.port_requested_paths[1 * 3], &bp->cmd_rsp_virt->smt_mib_get.port_requested_paths[1], 3);
  938. bp->stats.port_mac_placement[0] = bp->cmd_rsp_virt->smt_mib_get.port_mac_placement[0];
  939. bp->stats.port_mac_placement[1] = bp->cmd_rsp_virt->smt_mib_get.port_mac_placement[1];
  940. bp->stats.port_available_paths[0] = bp->cmd_rsp_virt->smt_mib_get.port_available_paths[0];
  941. bp->stats.port_available_paths[1] = bp->cmd_rsp_virt->smt_mib_get.port_available_paths[1];
  942. bp->stats.port_pmd_class[0] = bp->cmd_rsp_virt->smt_mib_get.port_pmd_class[0];
  943. bp->stats.port_pmd_class[1] = bp->cmd_rsp_virt->smt_mib_get.port_pmd_class[1];
  944. bp->stats.port_connection_capabilities[0] = bp->cmd_rsp_virt->smt_mib_get.port_connection_capabilities[0];
  945. bp->stats.port_connection_capabilities[1] = bp->cmd_rsp_virt->smt_mib_get.port_connection_capabilities[1];
  946. bp->stats.port_bs_flag[0] = bp->cmd_rsp_virt->smt_mib_get.port_bs_flag[0];
  947. bp->stats.port_bs_flag[1] = bp->cmd_rsp_virt->smt_mib_get.port_bs_flag[1];
  948. bp->stats.port_ler_estimate[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_estimate[0];
  949. bp->stats.port_ler_estimate[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_estimate[1];
  950. bp->stats.port_ler_cutoff[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_cutoff[0];
  951. bp->stats.port_ler_cutoff[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_cutoff[1];
  952. bp->stats.port_ler_alarm[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_alarm[0];
  953. bp->stats.port_ler_alarm[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_alarm[1];
  954. bp->stats.port_connect_state[0] = bp->cmd_rsp_virt->smt_mib_get.port_connect_state[0];
  955. bp->stats.port_connect_state[1] = bp->cmd_rsp_virt->smt_mib_get.port_connect_state[1];
  956. bp->stats.port_pcm_state[0] = bp->cmd_rsp_virt->smt_mib_get.port_pcm_state[0];
  957. bp->stats.port_pcm_state[1] = bp->cmd_rsp_virt->smt_mib_get.port_pcm_state[1];
  958. bp->stats.port_pc_withhold[0] = bp->cmd_rsp_virt->smt_mib_get.port_pc_withhold[0];
  959. bp->stats.port_pc_withhold[1] = bp->cmd_rsp_virt->smt_mib_get.port_pc_withhold[1];
  960. bp->stats.port_ler_flag[0] = bp->cmd_rsp_virt->smt_mib_get.port_ler_flag[0];
  961. bp->stats.port_ler_flag[1] = bp->cmd_rsp_virt->smt_mib_get.port_ler_flag[1];
  962. bp->stats.port_hardware_present[0] = bp->cmd_rsp_virt->smt_mib_get.port_hardware_present[0];
  963. bp->stats.port_hardware_present[1] = bp->cmd_rsp_virt->smt_mib_get.port_hardware_present[1];
  964. /* Fill the bp->stats structure with the FDDI counter values */
  965. bp->stats.mac_frame_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.frame_cnt.ls;
  966. bp->stats.mac_copied_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.copied_cnt.ls;
  967. bp->stats.mac_transmit_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.transmit_cnt.ls;
  968. bp->stats.mac_error_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.error_cnt.ls;
  969. bp->stats.mac_lost_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.lost_cnt.ls;
  970. bp->stats.port_lct_fail_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[0].ls;
  971. bp->stats.port_lct_fail_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[1].ls;
  972. bp->stats.port_lem_reject_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[0].ls;
  973. bp->stats.port_lem_reject_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[1].ls;
  974. bp->stats.port_lem_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.link_errors[0].ls;
  975. bp->stats.port_lem_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.link_errors[1].ls;
  976. #endif
  977. return ((struct net_device_stats *) &bp->os.MacStat);
  978. } // ctl_get_stat
  979. /*
  980.  * ==============================
  981.  * = skfp_ctl_set_multicast_list =
  982.  * ==============================
  983.  *   
  984.  * Overview:
  985.  *   Enable/Disable LLC frame promiscuous mode reception
  986.  *   on the adapter and/or update multicast address table.
  987.  *  
  988.  * Returns:
  989.  *   None
  990.  *       
  991.  * Arguments:
  992.  *   dev - pointer to device information
  993.  *
  994.  * Functional Description:
  995.  *   This function acquires the driver lock and only calls
  996.  *   skfp_ctl_set_multicast_list_wo_lock then.
  997.  *   This routine follows a fairly simple algorithm for setting the
  998.  *   adapter filters and CAM:
  999.  *
  1000.  *      if IFF_PROMISC flag is set
  1001.  *              enable promiscuous mode
  1002.  *      else
  1003.  *              disable promiscuous mode
  1004.  *              if number of multicast addresses <= max. multicast number
  1005.  *                      add mc addresses to adapter table
  1006.  *              else
  1007.  *                      enable promiscuous mode
  1008.  *              update adapter filters
  1009.  *
  1010.  * Assumptions:
  1011.  *   Multicast addresses are presented in canonical (LSB) format.
  1012.  *
  1013.  * Side Effects:
  1014.  *   On-board adapter filters are updated.
  1015.  */
  1016. static void skfp_ctl_set_multicast_list(struct net_device *dev)
  1017. {
  1018. skfddi_priv *bp = PRIV(dev);
  1019. unsigned long Flags;
  1020. spin_lock_irqsave(&bp->DriverLock, Flags);
  1021. skfp_ctl_set_multicast_list_wo_lock(dev);
  1022. spin_unlock_irqrestore(&bp->DriverLock, Flags);
  1023. return;
  1024. } // skfp_ctl_set_multicast_list
  1025. static void skfp_ctl_set_multicast_list_wo_lock(struct net_device *dev)
  1026. {
  1027. struct s_smc *smc = (struct s_smc *) dev->priv;
  1028. struct dev_mc_list *dmi; /* ptr to multicast addr entry */
  1029. int i;
  1030. /* Enable promiscuous mode, if necessary */
  1031. if (dev->flags & IFF_PROMISC) {
  1032. mac_drv_rx_mode(smc, RX_ENABLE_PROMISC);
  1033. PRINTK(KERN_INFO "PROMISCUOUS MODE ENABLEDn");
  1034. }
  1035. /* Else, update multicast address table */
  1036. else {
  1037. mac_drv_rx_mode(smc, RX_DISABLE_PROMISC);
  1038. PRINTK(KERN_INFO "PROMISCUOUS MODE DISABLEDn");
  1039. // Reset all MC addresses
  1040. mac_clear_multicast(smc);
  1041. mac_drv_rx_mode(smc, RX_DISABLE_ALLMULTI);
  1042. if (dev->flags & IFF_ALLMULTI) {
  1043. mac_drv_rx_mode(smc, RX_ENABLE_ALLMULTI);
  1044. PRINTK(KERN_INFO "ENABLE ALL MC ADDRESSESn");
  1045. } else if (dev->mc_count > 0) {
  1046. if (dev->mc_count <= FPMAX_MULTICAST) {
  1047. /* use exact filtering */
  1048. // point to first multicast addr
  1049. dmi = dev->mc_list;
  1050. for (i = 0; i < dev->mc_count; i++) {
  1051. mac_add_multicast(smc,
  1052.   dmi->dmi_addr, 1);
  1053. PRINTK(KERN_INFO "ENABLE MC ADDRESS:");
  1054. PRINTK(" %02x %02x %02x ",
  1055.        dmi->dmi_addr[0],
  1056.        dmi->dmi_addr[1],
  1057.        dmi->dmi_addr[2]);
  1058. PRINTK("%02x %02x %02xn",
  1059.        dmi->dmi_addr[3],
  1060.        dmi->dmi_addr[4],
  1061.        dmi->dmi_addr[5]);
  1062. dmi = dmi->next;
  1063. } // for
  1064. } else { // more MC addresses than HW supports
  1065. mac_drv_rx_mode(smc, RX_ENABLE_ALLMULTI);
  1066. PRINTK(KERN_INFO "ENABLE ALL MC ADDRESSESn");
  1067. }
  1068. } else { // no MC addresses
  1069. PRINTK(KERN_INFO "DISABLE ALL MC ADDRESSESn");
  1070. }
  1071. /* Update adapter filters */
  1072. mac_update_multicast(smc);
  1073. }
  1074. return;
  1075. } // skfp_ctl_set_multicast_list_wo_lock
  1076. /*
  1077.  * ===========================
  1078.  * = skfp_ctl_set_mac_address =
  1079.  * ===========================
  1080.  *   
  1081.  * Overview:
  1082.  *   set new mac address on adapter and update dev_addr field in device table.
  1083.  *  
  1084.  * Returns:
  1085.  *   None
  1086.  *       
  1087.  * Arguments:
  1088.  *   dev  - pointer to device information
  1089.  *   addr - pointer to sockaddr structure containing unicast address to set
  1090.  *
  1091.  * Assumptions:
  1092.  *   The address pointed to by addr->sa_data is a valid unicast
  1093.  *   address and is presented in canonical (LSB) format.
  1094.  */
  1095. static int skfp_ctl_set_mac_address(struct net_device *dev, void *addr)
  1096. {
  1097. struct s_smc *smc = (struct s_smc *) dev->priv;
  1098. struct sockaddr *p_sockaddr = (struct sockaddr *) addr;
  1099. skfddi_priv *bp = (skfddi_priv *) & smc->os;
  1100. unsigned long Flags;
  1101. memcpy(dev->dev_addr, p_sockaddr->sa_data, FDDI_K_ALEN);
  1102. spin_lock_irqsave(&bp->DriverLock, Flags);
  1103. ResetAdapter(smc);
  1104. spin_unlock_irqrestore(&bp->DriverLock, Flags);
  1105. return (0); /* always return zero */
  1106. } // skfp_ctl_set_mac_address
  1107. /*
  1108.  * ==============
  1109.  * = skfp_ioctl =
  1110.  * ==============
  1111.  *   
  1112.  * Overview:
  1113.  *
  1114.  * Perform IOCTL call functions here. Some are privileged operations and the
  1115.  * effective uid is checked in those cases.
  1116.  *  
  1117.  * Returns:
  1118.  *   status value
  1119.  *   0 - success
  1120.  *   other - failure
  1121.  *       
  1122.  * Arguments:
  1123.  *   dev  - pointer to device information
  1124.  *   rq - pointer to ioctl request structure
  1125.  *   cmd - ?
  1126.  *
  1127.  */
  1128. static int skfp_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1129. {
  1130. skfddi_priv *lp = PRIV(dev);
  1131. struct s_skfp_ioctl ioc;
  1132. int status = 0;
  1133. copy_from_user(&ioc, rq->ifr_data, sizeof(struct s_skfp_ioctl));
  1134. switch (ioc.cmd) {
  1135. case SKFP_GET_STATS: /* Get the driver statistics */
  1136. ioc.len = sizeof(lp->MacStat);
  1137. copy_to_user(ioc.data, skfp_ctl_get_stats(dev), ioc.len);
  1138. break;
  1139. case SKFP_CLR_STATS: /* Zero out the driver statistics */
  1140. if (!capable(CAP_NET_ADMIN)) {
  1141. memset(&lp->MacStat, 0, sizeof(lp->MacStat));
  1142. } else {
  1143. status = -EPERM;
  1144. }
  1145. break;
  1146. default:
  1147. printk("ioctl for %s: unknow cmd: %04xn", dev->name, ioc.cmd);
  1148. } // switch
  1149. return status;
  1150. } // skfp_ioctl
  1151. /*
  1152.  * =====================
  1153.  * = skfp_send_pkt     =
  1154.  * =====================
  1155.  *   
  1156.  * Overview:
  1157.  *   Queues a packet for transmission and try to transmit it.
  1158.  *  
  1159.  * Returns:
  1160.  *   Condition code
  1161.  *       
  1162.  * Arguments:
  1163.  *   skb - pointer to sk_buff to queue for transmission
  1164.  *   dev - pointer to device information
  1165.  *
  1166.  * Functional Description:
  1167.  *   Here we assume that an incoming skb transmit request
  1168.  *   is contained in a single physically contiguous buffer
  1169.  *   in which the virtual address of the start of packet
  1170.  *   (skb->data) can be converted to a physical address
  1171.  *   by using pci_map_single().
  1172.  *
  1173.  *   We have an internal queue for packets we can not send 
  1174.  *   immediately. Packets in this queue can be given to the 
  1175.  *   adapter if transmit buffers are freed.
  1176.  *
  1177.  *   We can't free the skb until after it's been DMA'd
  1178.  *   out by the adapter, so we'll keep it in the driver and
  1179.  *   return it in mac_drv_tx_complete.
  1180.  *
  1181.  * Return Codes:
  1182.  *   0 - driver has queued and/or sent packet
  1183.  *       1 - caller should requeue the sk_buff for later transmission
  1184.  *
  1185.  * Assumptions:
  1186.  *   The entire packet is stored in one physically
  1187.  *   contiguous buffer which is not cached and whose
  1188.  *   32-bit physical address can be determined.
  1189.  *
  1190.  *   It's vital that this routine is NOT reentered for the
  1191.  *   same board and that the OS is not in another section of
  1192.  *   code (eg. skfp_interrupt) for the same board on a
  1193.  *   different thread.
  1194.  *
  1195.  * Side Effects:
  1196.  *   None
  1197.  */
  1198. static int skfp_send_pkt(struct sk_buff *skb, struct net_device *dev)
  1199. {
  1200. skfddi_priv *bp = PRIV(dev);
  1201. PRINTK(KERN_INFO "skfp_send_pktn");
  1202. /*
  1203.  * Verify that incoming transmit request is OK
  1204.  *
  1205.  * Note: The packet size check is consistent with other
  1206.  *               Linux device drivers, although the correct packet
  1207.  *               size should be verified before calling the
  1208.  *               transmit routine.
  1209.  */
  1210. if (!(skb->len >= FDDI_K_LLC_ZLEN && skb->len <= FDDI_K_LLC_LEN)) {
  1211. bp->MacStat.tx_errors++; /* bump error counter */
  1212. // dequeue packets from xmt queue and send them
  1213. netif_start_queue(dev);
  1214. dev_kfree_skb(skb);
  1215. return (0); /* return "success" */
  1216. }
  1217. if (bp->QueueSkb == 0) { // return with tbusy set: queue full
  1218. netif_stop_queue(dev);
  1219. return 1;
  1220. }
  1221. bp->QueueSkb--;
  1222. skb_queue_tail(&bp->SendSkbQueue, skb);
  1223. send_queued_packets((struct s_smc *) dev->priv);
  1224. if (bp->QueueSkb == 0) {
  1225. netif_stop_queue(dev);
  1226. }
  1227. dev->trans_start = jiffies;
  1228. return 0;
  1229. } // skfp_send_pkt
  1230. /*
  1231.  * =======================
  1232.  * = send_queued_packets =
  1233.  * =======================
  1234.  *   
  1235.  * Overview:
  1236.  *   Send packets from the driver queue as long as there are some and
  1237.  *   transmit resources are available.
  1238.  *  
  1239.  * Returns:
  1240.  *   None
  1241.  *       
  1242.  * Arguments:
  1243.  *   smc - pointer to smc (adapter) structure
  1244.  *
  1245.  * Functional Description:
  1246.  *   Take a packet from queue if there is any. If not, then we are done.
  1247.  *   Check if there are resources to send the packet. If not, requeue it
  1248.  *   and exit. 
  1249.  *   Set packet descriptor flags and give packet to adapter.
  1250.  *   Check if any send resources can be freed (we do not use the
  1251.  *   transmit complete interrupt).
  1252.  */
  1253. static void send_queued_packets(struct s_smc *smc)
  1254. {
  1255. skfddi_priv *bp = (skfddi_priv *) & smc->os;
  1256. struct sk_buff *skb;
  1257. unsigned char fc;
  1258. int queue;
  1259. struct s_smt_fp_txd *txd; // Current TxD.
  1260. dma_addr_t dma_address;
  1261. unsigned long Flags;
  1262. int frame_status; // HWM tx frame status.
  1263. PRINTK(KERN_INFO "send queued packetsn");
  1264. for (;;) {
  1265. // send first buffer from queue
  1266. skb = skb_dequeue(&bp->SendSkbQueue);
  1267. if (!skb) {
  1268. PRINTK(KERN_INFO "queue emptyn");
  1269. return;
  1270. } // queue empty !
  1271. spin_lock_irqsave(&bp->DriverLock, Flags);
  1272. fc = skb->data[0];
  1273. queue = (fc & FC_SYNC_BIT) ? QUEUE_S : QUEUE_A0;
  1274. #ifdef ESS
  1275. // Check if the frame may/must be sent as a synchronous frame.
  1276. if ((fc & ~(FC_SYNC_BIT | FC_LLC_PRIOR)) == FC_ASYNC_LLC) {
  1277. // It's an LLC frame.
  1278. if (!smc->ess.sync_bw_available)
  1279. fc &= ~FC_SYNC_BIT; // No bandwidth available.
  1280. else { // Bandwidth is available.
  1281. if (smc->mib.fddiESSSynchTxMode) {
  1282. // Send as sync. frame.
  1283. fc |= FC_SYNC_BIT;
  1284. }
  1285. }
  1286. }
  1287. #endif // ESS
  1288. frame_status = hwm_tx_init(smc, fc, 1, skb->len, queue);
  1289. if ((frame_status & (LOC_TX | LAN_TX)) == 0) {
  1290. // Unable to send the frame.
  1291. if ((frame_status & RING_DOWN) != 0) {
  1292. // Ring is down.
  1293. PRINTK("Tx attempt while ring down.n");
  1294. } else if ((frame_status & OUT_OF_TXD) != 0) {
  1295. PRINTK("%s: out of TXDs.n", bp->dev->name);
  1296. } else {
  1297. PRINTK("%s: out of transmit resources",
  1298. bp->dev->name);
  1299. }
  1300. // Note: We will retry the operation as soon as
  1301. // transmit resources become available.
  1302. skb_queue_head(&bp->SendSkbQueue, skb);
  1303. spin_unlock_irqrestore(&bp->DriverLock, Flags);
  1304. return; // Packet has been queued.
  1305. } // if (unable to send frame)
  1306. bp->QueueSkb++; // one packet less in local queue
  1307. // source address in packet ?
  1308. CheckSourceAddress(skb->data, smc->hw.fddi_canon_addr.a);
  1309. txd = (struct s_smt_fp_txd *) HWM_GET_CURR_TXD(smc, queue);
  1310. dma_address = pci_map_single(&bp->pdev, skb->data,
  1311.      skb->len, PCI_DMA_TODEVICE);
  1312. if (frame_status & LAN_TX) {
  1313. txd->txd_os.skb = skb; // save skb
  1314. txd->txd_os.dma_addr = dma_address; // save dma mapping
  1315. }
  1316. hwm_tx_frag(smc, skb->data, dma_address, skb->len,
  1317.                       frame_status | FIRST_FRAG | LAST_FRAG | EN_IRQ_EOF);
  1318. if (!(frame_status & LAN_TX)) { // local only frame
  1319. pci_unmap_single(&bp->pdev, dma_address,
  1320.  skb->len, PCI_DMA_TODEVICE);
  1321. dev_kfree_skb_irq(skb);
  1322. }
  1323. spin_unlock_irqrestore(&bp->DriverLock, Flags);
  1324. } // for
  1325. return; // never reached
  1326. } // send_queued_packets
  1327. /************************
  1328.  * 
  1329.  * CheckSourceAddress
  1330.  *
  1331.  * Verify if the source address is set. Insert it if necessary.
  1332.  *
  1333.  ************************/
  1334. void CheckSourceAddress(unsigned char *frame, unsigned char *hw_addr)
  1335. {
  1336. unsigned char SRBit;
  1337. if ((((unsigned long) frame[1 + 6]) & ~0x01) != 0) // source routing bit
  1338. return;
  1339. if ((unsigned short) frame[1 + 10] != 0)
  1340. return;
  1341. SRBit = frame[1 + 6] & 0x01;
  1342. memcpy(&frame[1 + 6], hw_addr, 6);
  1343. frame[8] |= SRBit;
  1344. } // CheckSourceAddress
  1345. /************************
  1346.  *
  1347.  * ResetAdapter
  1348.  *
  1349.  * Reset the adapter and bring it back to operational mode.
  1350.  * Args
  1351.  * smc - A pointer to the SMT context struct.
  1352.  * Out
  1353.  * Nothing.
  1354.  *
  1355.  ************************/
  1356. static void ResetAdapter(struct s_smc *smc)
  1357. {
  1358. PRINTK(KERN_INFO "[fddi: ResetAdapter]n");
  1359. // Stop the adapter.
  1360. card_stop(smc); // Stop all activity.
  1361. // Clear the transmit and receive descriptor queues.
  1362. mac_drv_clear_tx_queue(smc);
  1363. mac_drv_clear_rx_queue(smc);
  1364. // Restart the adapter.
  1365. smt_reset_defaults(smc, 1); // Initialize the SMT module.
  1366. init_smt(smc, (smc->os.dev)->dev_addr); // Initialize the hardware.
  1367. smt_online(smc, 1); // Insert into the ring again.
  1368. STI_FBI();
  1369. // Restore original receive mode (multicasts, promiscuous, etc.).
  1370. skfp_ctl_set_multicast_list_wo_lock(smc->os.dev);
  1371. } // ResetAdapter
  1372. //--------------- functions called by hardware module ----------------
  1373. /************************
  1374.  *
  1375.  * llc_restart_tx
  1376.  *
  1377.  * The hardware driver calls this routine when the transmit complete
  1378.  * interrupt bits (end of frame) for the synchronous or asynchronous
  1379.  * queue is set.
  1380.  *
  1381.  * NOTE The hardware driver calls this function also if no packets are queued.
  1382.  * The routine must be able to handle this case.
  1383.  * Args
  1384.  * smc - A pointer to the SMT context struct.
  1385.  * Out
  1386.  * Nothing.
  1387.  *
  1388.  ************************/
  1389. void llc_restart_tx(struct s_smc *smc)
  1390. {
  1391. skfddi_priv *bp = (skfddi_priv *) & smc->os;
  1392. PRINTK(KERN_INFO "[llc_restart_tx]n");
  1393. // Try to send queued packets
  1394. spin_unlock(&bp->DriverLock);
  1395. send_queued_packets(smc);
  1396. spin_lock(&bp->DriverLock);
  1397. netif_start_queue(bp->dev);// system may send again if it was blocked
  1398. } // llc_restart_tx
  1399. /************************
  1400.  *
  1401.  * mac_drv_get_space
  1402.  *
  1403.  * The hardware module calls this function to allocate the memory
  1404.  * for the SMT MBufs if the define MB_OUTSIDE_SMC is specified.
  1405.  * Args
  1406.  * smc - A pointer to the SMT context struct.
  1407.  *
  1408.  * size - Size of memory in bytes to allocate.
  1409.  * Out
  1410.  * != 0 A pointer to the virtual address of the allocated memory.
  1411.  * == 0 Allocation error.
  1412.  *
  1413.  ************************/
  1414. void *mac_drv_get_space(struct s_smc *smc, unsigned int size)
  1415. {
  1416. void *virt;
  1417. PRINTK(KERN_INFO "mac_drv_get_space (%d bytes), ", size);
  1418. virt = (void *) (smc->os.SharedMemAddr + smc->os.SharedMemHeap);
  1419. if ((smc->os.SharedMemHeap + size) > smc->os.SharedMemSize) {
  1420. printk("Unexpected SMT memory size requested: %dn", size);
  1421. return (NULL);
  1422. }
  1423. smc->os.SharedMemHeap += size; // Move heap pointer.
  1424. PRINTK(KERN_INFO "mac_drv_get_space endn");
  1425. PRINTK(KERN_INFO "virt addr: %lxn", (ulong) virt);
  1426. PRINTK(KERN_INFO "bus  addr: %lxn", (ulong)
  1427.        (smc->os.SharedMemDMA +
  1428. ((char *) virt - (char *)smc->os.SharedMemAddr)));
  1429. return (virt);
  1430. } // mac_drv_get_space
  1431. /************************
  1432.  *
  1433.  * mac_drv_get_desc_mem
  1434.  *
  1435.  * This function is called by the hardware dependent module.
  1436.  * It allocates the memory for the RxD and TxD descriptors.
  1437.  *
  1438.  * This memory must be non-cached, non-movable and non-swappable.
  1439.  * This memory should start at a physical page boundary.
  1440.  * Args
  1441.  * smc - A pointer to the SMT context struct.
  1442.  *
  1443.  * size - Size of memory in bytes to allocate.
  1444.  * Out
  1445.  * != 0 A pointer to the virtual address of the allocated memory.
  1446.  * == 0 Allocation error.
  1447.  *
  1448.  ************************/
  1449. void *mac_drv_get_desc_mem(struct s_smc *smc, unsigned int size)
  1450. {
  1451. char *virt;
  1452. PRINTK(KERN_INFO "mac_drv_get_desc_memn");
  1453. // Descriptor memory must be aligned on 16-byte boundary.
  1454. virt = mac_drv_get_space(smc, size);
  1455. size = (u_int) (16 - (((unsigned long) virt) & 15UL));
  1456. size = size % 16;
  1457. PRINTK("Allocate %u bytes alignment gap ", size);
  1458. PRINTK("for descriptor memory.n");
  1459. if (!mac_drv_get_space(smc, size)) {
  1460. printk("fddi: Unable to align descriptor memory.n");
  1461. return (NULL);
  1462. }
  1463. return (virt + size);
  1464. } // mac_drv_get_desc_mem
  1465. /************************
  1466.  *
  1467.  * mac_drv_virt2phys
  1468.  *
  1469.  * Get the physical address of a given virtual address.
  1470.  * Args
  1471.  * smc - A pointer to the SMT context struct.
  1472.  *
  1473.  * virt - A (virtual) pointer into our 'shared' memory area.
  1474.  * Out
  1475.  * Physical address of the given virtual address.
  1476.  *
  1477.  ************************/
  1478. unsigned long mac_drv_virt2phys(struct s_smc *smc, void *virt)
  1479. {
  1480. return (smc->os.SharedMemDMA +
  1481. ((char *) virt - (char *)smc->os.SharedMemAddr));
  1482. } // mac_drv_virt2phys
  1483. /************************
  1484.  *
  1485.  * dma_master
  1486.  *
  1487.  * The HWM calls this function, when the driver leads through a DMA
  1488.  * transfer. If the OS-specific module must prepare the system hardware
  1489.  * for the DMA transfer, it should do it in this function.
  1490.  *
  1491.  * The hardware module calls this dma_master if it wants to send an SMT
  1492.  * frame.  This means that the virt address passed in here is part of
  1493.  *      the 'shared' memory area.
  1494.  * Args
  1495.  * smc - A pointer to the SMT context struct.
  1496.  *
  1497.  * virt - The virtual address of the data.
  1498.  *
  1499.  * len - The length in bytes of the data.
  1500.  *
  1501.  * flag - Indicates the transmit direction and the buffer type:
  1502.  * DMA_RD (0x01) system RAM ==> adapter buffer memory
  1503.  * DMA_WR (0x02) adapter buffer memory ==> system RAM
  1504.  * SMT_BUF (0x80) SMT buffer
  1505.  *
  1506.  * >> NOTE: SMT_BUF and DMA_RD are always set for PCI. <<
  1507.  * Out
  1508.  * Returns the pyhsical address for the DMA transfer.
  1509.  *
  1510.  ************************/
  1511. u_long dma_master(struct s_smc * smc, void *virt, int len, int flag)
  1512. {
  1513. return (smc->os.SharedMemDMA +
  1514. ((char *) virt - (char *)smc->os.SharedMemAddr));
  1515. } // dma_master
  1516. /************************
  1517.  *
  1518.  * dma_complete
  1519.  *
  1520.  * The hardware module calls this routine when it has completed a DMA
  1521.  * transfer. If the operating system dependant module has set up the DMA
  1522.  * channel via dma_master() (e.g. Windows NT or AIX) it should clean up
  1523.  * the DMA channel.
  1524.  * Args
  1525.  * smc - A pointer to the SMT context struct.
  1526.  *
  1527.  * descr - A pointer to a TxD or RxD, respectively.
  1528.  *
  1529.  * flag - Indicates the DMA transfer direction / SMT buffer:
  1530.  * DMA_RD (0x01) system RAM ==> adapter buffer memory
  1531.  * DMA_WR (0x02) adapter buffer memory ==> system RAM
  1532.  * SMT_BUF (0x80) SMT buffer (managed by HWM)
  1533.  * Out
  1534.  * Nothing.
  1535.  *
  1536.  ************************/
  1537. void dma_complete(struct s_smc *smc, volatile union s_fp_descr *descr, int flag)
  1538. {
  1539. /* For TX buffers, there are two cases.  If it is an SMT transmit
  1540.  * buffer, there is nothing to do since we use consistent memory
  1541.  * for the 'shared' memory area.  The other case is for normal
  1542.  * transmit packets given to us by the networking stack, and in
  1543.  * that case we cleanup the PCI DMA mapping in mac_drv_tx_complete
  1544.  * below.
  1545.  *
  1546.  * For RX buffers, we have to unmap dynamic PCI DMA mappings here
  1547.  * because the hardware module is about to potentially look at
  1548.  * the contents of the buffer.  If we did not call the PCI DMA
  1549.  * unmap first, the hardware module could read inconsistent data.
  1550.  */
  1551. if (flag & DMA_WR) {
  1552. skfddi_priv *bp = (skfddi_priv *) & smc->os;
  1553. volatile struct s_smt_fp_rxd *r = &descr->r;
  1554. /* If SKB is NULL, we used the local buffer. */
  1555. if (r->rxd_os.skb && r->rxd_os.dma_addr) {
  1556. int MaxFrameSize = bp->MaxFrameSize;
  1557. pci_unmap_single(&bp->pdev, r->rxd_os.dma_addr,
  1558.  MaxFrameSize, PCI_DMA_FROMDEVICE);
  1559. r->rxd_os.dma_addr = 0;
  1560. }
  1561. }
  1562. } // dma_complete
  1563. /************************
  1564.  *
  1565.  * mac_drv_tx_complete
  1566.  *
  1567.  * Transmit of a packet is complete. Release the tx staging buffer.
  1568.  *
  1569.  * Args
  1570.  * smc - A pointer to the SMT context struct.
  1571.  *
  1572.  * txd - A pointer to the last TxD which is used by the frame.
  1573.  * Out
  1574.  * Returns nothing.
  1575.  *
  1576.  ************************/
  1577. void mac_drv_tx_complete(struct s_smc *smc, volatile struct s_smt_fp_txd *txd)
  1578. {
  1579. struct sk_buff *skb;
  1580. PRINTK(KERN_INFO "entering mac_drv_tx_completen");
  1581. // Check if this TxD points to a skb
  1582. if (!(skb = txd->txd_os.skb)) {
  1583. PRINTK("TXD with no skb assigned.n");
  1584. return;
  1585. }
  1586. txd->txd_os.skb = NULL;
  1587. // release the DMA mapping
  1588. pci_unmap_single(&smc->os.pdev, txd->txd_os.dma_addr,
  1589.  skb->len, PCI_DMA_TODEVICE);
  1590. txd->txd_os.dma_addr = 0;
  1591. smc->os.MacStat.tx_packets++; // Count transmitted packets.
  1592. smc->os.MacStat.tx_bytes+=skb->len; // Count bytes
  1593. // free the skb
  1594. dev_kfree_skb_irq(skb);
  1595. PRINTK(KERN_INFO "leaving mac_drv_tx_completen");
  1596. } // mac_drv_tx_complete
  1597. /************************
  1598.  *
  1599.  * dump packets to logfile
  1600.  *
  1601.  ************************/
  1602. #ifdef DUMPPACKETS
  1603. void dump_data(unsigned char *Data, int length)
  1604. {
  1605. int i, j;
  1606. unsigned char s[255], sh[10];
  1607. if (length > 64) {
  1608. length = 64;
  1609. }
  1610. printk(KERN_INFO "---Packet start---n");
  1611. for (i = 0, j = 0; i < length / 8; i++, j += 8)
  1612. printk(KERN_INFO "%02x %02x %02x %02x %02x %02x %02x %02xn",
  1613.        Data[j + 0], Data[j + 1], Data[j + 2], Data[j + 3],
  1614.        Data[j + 4], Data[j + 5], Data[j + 6], Data[j + 7]);
  1615. strcpy(s, "");
  1616. for (i = 0; i < length % 8; i++) {
  1617. sprintf(sh, "%02x ", Data[j + i]);
  1618. strcat(s, sh);
  1619. }
  1620. printk(KERN_INFO "%sn", s);
  1621. printk(KERN_INFO "------------------n");
  1622. } // dump_data
  1623. #else
  1624. #define dump_data(data,len)
  1625. #endif // DUMPPACKETS
  1626. /************************
  1627.  *
  1628.  * mac_drv_rx_complete
  1629.  *
  1630.  * The hardware module calls this function if an LLC frame is received
  1631.  * in a receive buffer. Also the SMT, NSA, and directed beacon frames
  1632.  * from the network will be passed to the LLC layer by this function
  1633.  * if passing is enabled.
  1634.  *
  1635.  * mac_drv_rx_complete forwards the frame to the LLC layer if it should
  1636.  * be received. It also fills the RxD ring with new receive buffers if
  1637.  * some can be queued.
  1638.  * Args
  1639.  * smc - A pointer to the SMT context struct.
  1640.  *
  1641.  * rxd - A pointer to the first RxD which is used by the receive frame.
  1642.  *
  1643.  * frag_count - Count of RxDs used by the received frame.
  1644.  *
  1645.  * len - Frame length.
  1646.  * Out
  1647.  * Nothing.
  1648.  *
  1649.  ************************/
  1650. void mac_drv_rx_complete(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
  1651.  int frag_count, int len)
  1652. {
  1653. skfddi_priv *bp = (skfddi_priv *) & smc->os;
  1654. struct sk_buff *skb;
  1655. unsigned char *virt, *cp;
  1656. unsigned short ri;
  1657. u_int RifLength;
  1658. PRINTK(KERN_INFO "entering mac_drv_rx_complete (len=%d)n", len);
  1659. if (frag_count != 1) { // This is not allowed to happen.
  1660. printk("fddi: Multi-fragment receive!n");
  1661. goto RequeueRxd; // Re-use the given RXD(s).
  1662. }
  1663. skb = rxd->rxd_os.skb;
  1664. if (!skb) {
  1665. PRINTK(KERN_INFO "No skb in rxdn");
  1666. smc->os.MacStat.rx_errors++;
  1667. goto RequeueRxd;
  1668. }
  1669. virt = skb->data;
  1670. // The DMA mapping was released in dma_complete above.
  1671. dump_data(skb->data, len);
  1672. /*
  1673.  * FDDI Frame format:
  1674.  * +-------+-------+-------+------------+--------+------------+
  1675.  * | FC[1] | DA[6] | SA[6] | RIF[0..18] | LLC[3] | Data[0..n] |
  1676.  * +-------+-------+-------+------------+--------+------------+
  1677.  *
  1678.  * FC = Frame Control
  1679.  * DA = Destination Address
  1680.  * SA = Source Address
  1681.  * RIF = Routing Information Field
  1682.  * LLC = Logical Link Control
  1683.  */
  1684. // Remove Routing Information Field (RIF), if present.
  1685. if ((virt[1 + 6] & FDDI_RII) == 0)
  1686. RifLength = 0;
  1687. else {
  1688. int n;
  1689. // goos: RIF removal has still to be tested
  1690. PRINTK(KERN_INFO "RIF foundn");
  1691. // Get RIF length from Routing Control (RC) field.
  1692. cp = virt + FDDI_MAC_HDR_LEN; // Point behind MAC header.
  1693. ri = ntohs(*((unsigned short *) cp));
  1694. RifLength = ri & FDDI_RCF_LEN_MASK;
  1695. if (len < (int) (FDDI_MAC_HDR_LEN + RifLength)) {
  1696. printk("fddi: Invalid RIF.n");
  1697. goto RequeueRxd; // Discard the frame.
  1698. }
  1699. virt[1 + 6] &= ~FDDI_RII; // Clear RII bit.
  1700. // regions overlap
  1701. virt = cp + RifLength;
  1702. for (n = FDDI_MAC_HDR_LEN; n; n--)
  1703. *--virt = *--cp;
  1704. // adjust sbd->data pointer
  1705. skb_pull(skb, RifLength);
  1706. len -= RifLength;
  1707. RifLength = 0;
  1708. }
  1709. // Count statistics.
  1710. smc->os.MacStat.rx_packets++; // Count indicated receive packets.
  1711. smc->os.MacStat.rx_bytes+=len; // Count bytes
  1712. // virt points to header again
  1713. if (virt[1] & 0x01) { // Check group (multicast) bit.
  1714. smc->os.MacStat.multicast++;
  1715. }
  1716. // deliver frame to system
  1717. rxd->rxd_os.skb = NULL;
  1718. skb_trim(skb, len);
  1719. skb->protocol = fddi_type_trans(skb, bp->dev);
  1720. skb->dev = bp->dev; /* pass up device pointer */
  1721. netif_rx(skb);
  1722. bp->dev->last_rx = jiffies;
  1723. HWM_RX_CHECK(smc, RX_LOW_WATERMARK);
  1724. return;
  1725.       RequeueRxd:
  1726. PRINTK(KERN_INFO "Rx: re-queue RXD.n");
  1727. mac_drv_requeue_rxd(smc, rxd, frag_count);
  1728. smc->os.MacStat.rx_errors++; // Count receive packets not indicated.
  1729. } // mac_drv_rx_complete
  1730. /************************
  1731.  *
  1732.  * mac_drv_requeue_rxd
  1733.  *
  1734.  * The hardware module calls this function to request the OS-specific
  1735.  * module to queue the receive buffer(s) represented by the pointer
  1736.  * to the RxD and the frag_count into the receive queue again. This
  1737.  * buffer was filled with an invalid frame or an SMT frame.
  1738.  * Args
  1739.  * smc - A pointer to the SMT context struct.
  1740.  *
  1741.  * rxd - A pointer to the first RxD which is used by the receive frame.
  1742.  *
  1743.  * frag_count - Count of RxDs used by the received frame.
  1744.  * Out
  1745.  * Nothing.
  1746.  *
  1747.  ************************/
  1748. void mac_drv_requeue_rxd(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
  1749.  int frag_count)
  1750. {
  1751. volatile struct s_smt_fp_rxd *next_rxd;
  1752. volatile struct s_smt_fp_rxd *src_rxd;
  1753. struct sk_buff *skb;
  1754. int MaxFrameSize;
  1755. unsigned char *v_addr;
  1756. dma_addr_t b_addr;
  1757. if (frag_count != 1) // This is not allowed to happen.
  1758. printk("fddi: Multi-fragment requeue!n");
  1759. MaxFrameSize = ((skfddi_priv *) & smc->os)->MaxFrameSize;
  1760. src_rxd = rxd;
  1761. for (; frag_count > 0; frag_count--) {
  1762. next_rxd = src_rxd->rxd_next;
  1763. rxd = HWM_GET_CURR_RXD(smc);
  1764. skb = src_rxd->rxd_os.skb;
  1765. if (skb == NULL) { // this should not happen
  1766. PRINTK("Requeue with no skb in rxd!n");
  1767. skb = alloc_skb(MaxFrameSize + 3, GFP_ATOMIC);
  1768. if (skb) {
  1769. // we got a skb
  1770. rxd->rxd_os.skb = skb;
  1771. skb_reserve(skb, 3);
  1772. skb_put(skb, MaxFrameSize);
  1773. v_addr = skb->data;
  1774. b_addr = pci_map_single(&smc->os.pdev,
  1775. v_addr,
  1776. MaxFrameSize,
  1777. PCI_DMA_FROMDEVICE);
  1778. rxd->rxd_os.dma_addr = b_addr;
  1779. } else {
  1780. // no skb available, use local buffer
  1781. PRINTK("Queueing invalid buffer!n");
  1782. rxd->rxd_os.skb = NULL;
  1783. v_addr = smc->os.LocalRxBuffer;
  1784. b_addr = smc->os.LocalRxBufferDMA;
  1785. }
  1786. } else {
  1787. // we use skb from old rxd
  1788. rxd->rxd_os.skb = skb;
  1789. v_addr = skb->data;
  1790. b_addr = pci_map_single(&smc->os.pdev,
  1791. v_addr,
  1792. MaxFrameSize,
  1793. PCI_DMA_FROMDEVICE);
  1794. rxd->rxd_os.dma_addr = b_addr;
  1795. }
  1796. hwm_rx_frag(smc, v_addr, b_addr, MaxFrameSize,
  1797.     FIRST_FRAG | LAST_FRAG);
  1798. src_rxd = next_rxd;
  1799. }
  1800. } // mac_drv_requeue_rxd
  1801. /************************
  1802.  *
  1803.  * mac_drv_fill_rxd
  1804.  *
  1805.  * The hardware module calls this function at initialization time
  1806.  * to fill the RxD ring with receive buffers. It is also called by
  1807.  * mac_drv_rx_complete if rx_free is large enough to queue some new
  1808.  * receive buffers into the RxD ring. mac_drv_fill_rxd queues new
  1809.  * receive buffers as long as enough RxDs and receive buffers are
  1810.  * available.
  1811.  * Args
  1812.  * smc - A pointer to the SMT context struct.
  1813.  * Out
  1814.  * Nothing.
  1815.  *
  1816.  ************************/
  1817. void mac_drv_fill_rxd(struct s_smc *smc)
  1818. {
  1819. int MaxFrameSize;
  1820. unsigned char *v_addr;
  1821. unsigned long b_addr;
  1822. struct sk_buff *skb;
  1823. volatile struct s_smt_fp_rxd *rxd;
  1824. PRINTK(KERN_INFO "entering mac_drv_fill_rxdn");
  1825. // Walk through the list of free receive buffers, passing receive
  1826. // buffers to the HWM as long as RXDs are available.
  1827. MaxFrameSize = ((skfddi_priv *) & smc->os)->MaxFrameSize;
  1828. // Check if there is any RXD left.
  1829. while (HWM_GET_RX_FREE(smc) > 0) {
  1830. PRINTK(KERN_INFO ".n");
  1831. rxd = HWM_GET_CURR_RXD(smc);
  1832. skb = alloc_skb(MaxFrameSize + 3, GFP_ATOMIC);
  1833. if (skb) {
  1834. // we got a skb
  1835. skb_reserve(skb, 3);
  1836. skb_put(skb, MaxFrameSize);
  1837. v_addr = skb->data;
  1838. b_addr = pci_map_single(&smc->os.pdev,
  1839. v_addr,
  1840. MaxFrameSize,
  1841. PCI_DMA_FROMDEVICE);
  1842. rxd->rxd_os.dma_addr = b_addr;
  1843. } else {
  1844. // no skb available, use local buffer
  1845. // System has run out of buffer memory, but we want to
  1846. // keep the receiver running in hope of better times.
  1847. // Multiple descriptors may point to this local buffer,
  1848. // so data in it must be considered invalid.
  1849. PRINTK("Queueing invalid buffer!n");
  1850. v_addr = smc->os.LocalRxBuffer;
  1851. b_addr = smc->os.LocalRxBufferDMA;
  1852. }
  1853. rxd->rxd_os.skb = skb;
  1854. // Pass receive buffer to HWM.
  1855. hwm_rx_frag(smc, v_addr, b_addr, MaxFrameSize,
  1856.     FIRST_FRAG | LAST_FRAG);
  1857. }
  1858. PRINTK(KERN_INFO "leaving mac_drv_fill_rxdn");
  1859. } // mac_drv_fill_rxd
  1860. /************************
  1861.  *
  1862.  * mac_drv_clear_rxd
  1863.  *
  1864.  * The hardware module calls this function to release unused
  1865.  * receive buffers.
  1866.  * Args
  1867.  * smc - A pointer to the SMT context struct.
  1868.  *
  1869.  * rxd - A pointer to the first RxD which is used by the receive buffer.
  1870.  *
  1871.  * frag_count - Count of RxDs used by the receive buffer.
  1872.  * Out
  1873.  * Nothing.
  1874.  *
  1875.  ************************/
  1876. void mac_drv_clear_rxd(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
  1877.        int frag_count)
  1878. {
  1879. struct sk_buff *skb;
  1880. PRINTK("entering mac_drv_clear_rxdn");
  1881. if (frag_count != 1) // This is not allowed to happen.
  1882. printk("fddi: Multi-fragment clear!n");
  1883. for (; frag_count > 0; frag_count--) {
  1884. skb = rxd->rxd_os.skb;
  1885. if (skb != NULL) {
  1886. skfddi_priv *bp = (skfddi_priv *) & smc->os;
  1887. int MaxFrameSize = bp->MaxFrameSize;
  1888. pci_unmap_single(&bp->pdev, rxd->rxd_os.dma_addr,
  1889.  MaxFrameSize, PCI_DMA_FROMDEVICE);
  1890. dev_kfree_skb(skb);
  1891. rxd->rxd_os.skb = NULL;
  1892. }
  1893. rxd = rxd->rxd_next; // Next RXD.
  1894. }
  1895. } // mac_drv_clear_rxd
  1896. /************************
  1897.  *
  1898.  * mac_drv_rx_init
  1899.  *
  1900.  * The hardware module calls this routine when an SMT or NSA frame of the
  1901.  * local SMT should be delivered to the LLC layer.
  1902.  *
  1903.  * It is necessary to have this function, because there is no other way to
  1904.  * copy the contents of SMT MBufs into receive buffers.
  1905.  *
  1906.  * mac_drv_rx_init allocates the required target memory for this frame,
  1907.  * and receives the frame fragment by fragment by calling mac_drv_rx_frag.
  1908.  * Args
  1909.  * smc - A pointer to the SMT context struct.
  1910.  *
  1911.  * len - The length (in bytes) of the received frame (FC, DA, SA, Data).
  1912.  *
  1913.  * fc - The Frame Control field of the received frame.
  1914.  *
  1915.  * look_ahead - A pointer to the lookahead data buffer (may be NULL).
  1916.  *
  1917.  * la_len - The length of the lookahead data stored in the lookahead
  1918.  * buffer (may be zero).
  1919.  * Out
  1920.  * Always returns zero (0).
  1921.  *
  1922.  ************************/
  1923. int mac_drv_rx_init(struct s_smc *smc, int len, int fc,
  1924.     char *look_ahead, int la_len)
  1925. {
  1926. struct sk_buff *skb;
  1927. PRINTK("entering mac_drv_rx_init(len=%d)n", len);
  1928. // "Received" a SMT or NSA frame of the local SMT.
  1929. if (len != la_len || len < FDDI_MAC_HDR_LEN || !look_ahead) {
  1930. PRINTK("fddi: Discard invalid local SMT framen");
  1931. PRINTK("  len=%d, la_len=%d, (ULONG) look_ahead=%08lXh.n",
  1932.        len, la_len, (unsigned long) look_ahead);
  1933. return (0);
  1934. }
  1935. skb = alloc_skb(len + 3, GFP_ATOMIC);
  1936. if (!skb) {
  1937. PRINTK("fddi: Local SMT: skb memory exhausted.n");
  1938. return (0);
  1939. }
  1940. skb_reserve(skb, 3);
  1941. skb_put(skb, len);
  1942. memcpy(skb->data, look_ahead, len);
  1943. // deliver frame to system
  1944. skb->protocol = fddi_type_trans(skb, ((skfddi_priv *) & smc->os)->dev);
  1945. skb->dev->last_rx = jiffies;
  1946. netif_rx(skb);
  1947. return (0);
  1948. } // mac_drv_rx_init
  1949. /************************
  1950.  *
  1951.  * smt_timer_poll
  1952.  *
  1953.  * This routine is called periodically by the SMT module to clean up the
  1954.  * driver.
  1955.  *
  1956.  * Return any queued frames back to the upper protocol layers if the ring
  1957.  * is down.
  1958.  * Args
  1959.  * smc - A pointer to the SMT context struct.
  1960.  * Out
  1961.  * Nothing.
  1962.  *
  1963.  ************************/
  1964. void smt_timer_poll(struct s_smc *smc)
  1965. {
  1966. } // smt_timer_poll
  1967. /************************
  1968.  *
  1969.  * ring_status_indication
  1970.  *
  1971.  * This function indicates a change of the ring state.
  1972.  * Args
  1973.  * smc - A pointer to the SMT context struct.
  1974.  *
  1975.  * status - The current ring status.
  1976.  * Out
  1977.  * Nothing.
  1978.  *
  1979.  ************************/
  1980. void ring_status_indication(struct s_smc *smc, u_long status)
  1981. {
  1982. PRINTK("ring_status_indication( ");
  1983. if (status & RS_RES15)
  1984. PRINTK("RS_RES15 ");
  1985. if (status & RS_HARDERROR)
  1986. PRINTK("RS_HARDERROR ");
  1987. if (status & RS_SOFTERROR)
  1988. PRINTK("RS_SOFTERROR ");
  1989. if (status & RS_BEACON)
  1990. PRINTK("RS_BEACON ");
  1991. if (status & RS_PATHTEST)
  1992. PRINTK("RS_PATHTEST ");
  1993. if (status & RS_SELFTEST)
  1994. PRINTK("RS_SELFTEST ");
  1995. if (status & RS_RES9)
  1996. PRINTK("RS_RES9 ");
  1997. if (status & RS_DISCONNECT)
  1998. PRINTK("RS_DISCONNECT ");
  1999. if (status & RS_RES7)
  2000. PRINTK("RS_RES7 ");
  2001. if (status & RS_DUPADDR)
  2002. PRINTK("RS_DUPADDR ");
  2003. if (status & RS_NORINGOP)
  2004. PRINTK("RS_NORINGOP ");
  2005. if (status & RS_VERSION)
  2006. PRINTK("RS_VERSION ");
  2007. if (status & RS_STUCKBYPASSS)
  2008. PRINTK("RS_STUCKBYPASSS ");
  2009. if (status & RS_EVENT)
  2010. PRINTK("RS_EVENT ");
  2011. if (status & RS_RINGOPCHANGE)
  2012. PRINTK("RS_RINGOPCHANGE ");
  2013. if (status & RS_RES0)
  2014. PRINTK("RS_RES0 ");
  2015. PRINTK("]n");
  2016. } // ring_status_indication
  2017. /************************
  2018.  *
  2019.  * smt_get_time
  2020.  *
  2021.  * Gets the current time from the system.
  2022.  * Args
  2023.  * None.
  2024.  * Out
  2025.  * The current time in TICKS_PER_SECOND.
  2026.  *
  2027.  * TICKS_PER_SECOND has the unit 'count of timer ticks per second'. It is
  2028.  * defined in "targetos.h". The definition of TICKS_PER_SECOND must comply
  2029.  * to the time returned by smt_get_time().
  2030.  *
  2031.  ************************/
  2032. unsigned long smt_get_time(void)
  2033. {
  2034. return jiffies;
  2035. } // smt_get_time
  2036. /************************
  2037.  *
  2038.  * smt_stat_counter
  2039.  *
  2040.  * Status counter update (ring_op, fifo full).
  2041.  * Args
  2042.  * smc - A pointer to the SMT context struct.
  2043.  *
  2044.  * stat - = 0: A ring operational change occurred.
  2045.  * = 1: The FORMAC FIFO buffer is full / FIFO overflow.
  2046.  * Out
  2047.  * Nothing.
  2048.  *
  2049.  ************************/
  2050. void smt_stat_counter(struct s_smc *smc, int stat)
  2051. {
  2052. //      BOOLEAN RingIsUp ;
  2053. PRINTK(KERN_INFO "smt_stat_countern");
  2054. switch (stat) {
  2055. case 0:
  2056. PRINTK(KERN_INFO "Ring operational change.n");
  2057. break;
  2058. case 1:
  2059. PRINTK(KERN_INFO "Receive fifo overflow.n");
  2060. smc->os.MacStat.rx_errors++;
  2061. break;
  2062. default:
  2063. PRINTK(KERN_INFO "Unknown status (%d).n", stat);
  2064. break;
  2065. }
  2066. } // smt_stat_counter
  2067. /************************
  2068.  *
  2069.  * cfm_state_change
  2070.  *
  2071.  * Sets CFM state in custom statistics.
  2072.  * Args
  2073.  * smc - A pointer to the SMT context struct.
  2074.  *
  2075.  * c_state - Possible values are:
  2076.  *
  2077.  * EC0_OUT, EC1_IN, EC2_TRACE, EC3_LEAVE, EC4_PATH_TEST,
  2078.  * EC5_INSERT, EC6_CHECK, EC7_DEINSERT
  2079.  * Out
  2080.  * Nothing.
  2081.  *
  2082.  ************************/
  2083. void cfm_state_change(struct s_smc *smc, int c_state)
  2084. {
  2085. #ifdef DRIVERDEBUG
  2086. char *s;
  2087. switch (c_state) {
  2088. case SC0_ISOLATED:
  2089. s = "SC0_ISOLATED";
  2090. break;
  2091. case SC1_WRAP_A:
  2092. s = "SC1_WRAP_A";
  2093. break;
  2094. case SC2_WRAP_B:
  2095. s = "SC2_WRAP_B";
  2096. break;
  2097. case SC4_THRU_A:
  2098. s = "SC4_THRU_A";
  2099. break;
  2100. case SC5_THRU_B:
  2101. s = "SC5_THRU_B";
  2102. break;
  2103. case SC7_WRAP_S:
  2104. s = "SC7_WRAP_S";
  2105. break;
  2106. case SC9_C_WRAP_A:
  2107. s = "SC9_C_WRAP_A";
  2108. break;
  2109. case SC10_C_WRAP_B:
  2110. s = "SC10_C_WRAP_B";
  2111. break;
  2112. case SC11_C_WRAP_S:
  2113. s = "SC11_C_WRAP_S";
  2114. break;
  2115. default:
  2116. PRINTK(KERN_INFO "cfm_state_change: unknown %dn", c_state);
  2117. return;
  2118. }
  2119. PRINTK(KERN_INFO "cfm_state_change: %sn", s);
  2120. #endif // DRIVERDEBUG
  2121. } // cfm_state_change
  2122. /************************
  2123.  *
  2124.  * ecm_state_change
  2125.  *
  2126.  * Sets ECM state in custom statistics.
  2127.  * Args
  2128.  * smc - A pointer to the SMT context struct.
  2129.  *
  2130.  * e_state - Possible values are:
  2131.  *
  2132.  * SC0_ISOLATED, SC1_WRAP_A (5), SC2_WRAP_B (6), SC4_THRU_A (12),
  2133.  * SC5_THRU_B (7), SC7_WRAP_S (8)
  2134.  * Out
  2135.  * Nothing.
  2136.  *
  2137.  ************************/
  2138. void ecm_state_change(struct s_smc *smc, int e_state)
  2139. {
  2140. #ifdef DRIVERDEBUG
  2141. char *s;
  2142. switch (e_state) {
  2143. case EC0_OUT:
  2144. s = "EC0_OUT";
  2145. break;
  2146. case EC1_IN:
  2147. s = "EC1_IN";
  2148. break;
  2149. case EC2_TRACE:
  2150. s = "EC2_TRACE";
  2151. break;
  2152. case EC3_LEAVE:
  2153. s = "EC3_LEAVE";
  2154. break;
  2155. case EC4_PATH_TEST:
  2156. s = "EC4_PATH_TEST";
  2157. break;
  2158. case EC5_INSERT:
  2159. s = "EC5_INSERT";
  2160. break;
  2161. case EC6_CHECK:
  2162. s = "EC6_CHECK";
  2163. break;
  2164. case EC7_DEINSERT:
  2165. s = "EC7_DEINSERT";
  2166. break;
  2167. default:
  2168. s = "unknown";
  2169. break;
  2170. }
  2171. PRINTK(KERN_INFO "ecm_state_change: %sn", s);
  2172. #endif //DRIVERDEBUG
  2173. } // ecm_state_change
  2174. /************************
  2175.  *
  2176.  * rmt_state_change
  2177.  *
  2178.  * Sets RMT state in custom statistics.
  2179.  * Args
  2180.  * smc - A pointer to the SMT context struct.
  2181.  *
  2182.  * r_state - Possible values are:
  2183.  *
  2184.  * RM0_ISOLATED, RM1_NON_OP, RM2_RING_OP, RM3_DETECT,
  2185.  * RM4_NON_OP_DUP, RM5_RING_OP_DUP, RM6_DIRECTED, RM7_TRACE
  2186.  * Out
  2187.  * Nothing.
  2188.  *
  2189.  ************************/
  2190. void rmt_state_change(struct s_smc *smc, int r_state)
  2191. {
  2192. #ifdef DRIVERDEBUG
  2193. char *s;
  2194. switch (r_state) {
  2195. case RM0_ISOLATED:
  2196. s = "RM0_ISOLATED";
  2197. break;
  2198. case RM1_NON_OP:
  2199. s = "RM1_NON_OP - not operational";
  2200. break;
  2201. case RM2_RING_OP:
  2202. s = "RM2_RING_OP - ring operational";
  2203. break;
  2204. case RM3_DETECT:
  2205. s = "RM3_DETECT - detect dupl addresses";
  2206. break;
  2207. case RM4_NON_OP_DUP:
  2208. s = "RM4_NON_OP_DUP - dupl. addr detected";
  2209. break;
  2210. case RM5_RING_OP_DUP:
  2211. s = "RM5_RING_OP_DUP - ring oper. with dupl. addr";
  2212. break;
  2213. case RM6_DIRECTED:
  2214. s = "RM6_DIRECTED - sending directed beacons";
  2215. break;
  2216. case RM7_TRACE:
  2217. s = "RM7_TRACE - trace initiated";
  2218. break;
  2219. default:
  2220. s = "unknown";
  2221. break;
  2222. }
  2223. PRINTK(KERN_INFO "[rmt_state_change: %s]n", s);
  2224. #endif // DRIVERDEBUG
  2225. } // rmt_state_change
  2226. /************************
  2227.  *
  2228.  * drv_reset_indication
  2229.  *
  2230.  * This function is called by the SMT when it has detected a severe
  2231.  * hardware problem. The driver should perform a reset on the adapter
  2232.  * as soon as possible, but not from within this function.
  2233.  * Args
  2234.  * smc - A pointer to the SMT context struct.
  2235.  * Out
  2236.  * Nothing.
  2237.  *
  2238.  ************************/
  2239. void drv_reset_indication(struct s_smc *smc)
  2240. {
  2241. PRINTK(KERN_INFO "entering drv_reset_indicationn");
  2242. smc->os.ResetRequested = TRUE; // Set flag.
  2243. } // drv_reset_indication
  2244. //--------------- functions for use as a module ----------------
  2245. #ifdef MODULE
  2246. /************************
  2247.  *
  2248.  * Note now that module autoprobing is allowed under PCI. The
  2249.  * IRQ lines will not be auto-detected; instead I'll rely on the BIOSes
  2250.  * to "do the right thing".
  2251.  *
  2252.  ************************/
  2253. #define LP(a) ((struct s_smc*)(a))
  2254. static struct net_device *mdev;
  2255. /************************
  2256.  *
  2257.  * init_module
  2258.  *
  2259.  *  If compiled as a module, find
  2260.  *  adapters and initialize them.
  2261.  *
  2262.  ************************/
  2263. int init_module(void)
  2264. {
  2265. struct net_device *p;
  2266. PRINTK(KERN_INFO "FDDI init modulen");
  2267. if ((mdev = insert_device(NULL, skfp_probe)) == NULL)
  2268. return -ENOMEM;
  2269. for (p = mdev; p != NULL; p = LP(p->priv)->os.next_module) {
  2270. PRINTK(KERN_INFO "device to register: %sn", p->name);
  2271. if (register_netdev(p) != 0) {
  2272. printk("skfddi init_module failedn");
  2273. return -EIO;
  2274. }
  2275. }
  2276. PRINTK(KERN_INFO "+++++ exit with success +++++n");
  2277. return 0;
  2278. } // init_module
  2279. /************************
  2280.  *
  2281.  * cleanup_module
  2282.  *
  2283.  *  Release all resources claimed by this module.
  2284.  *
  2285.  ************************/
  2286. void cleanup_module(void)
  2287. {
  2288. PRINTK(KERN_INFO "cleanup_modulen");
  2289. while (mdev != NULL) {
  2290. mdev = unlink_modules(mdev);
  2291. }
  2292. return;
  2293. } // cleanup_module
  2294. /************************
  2295.  *
  2296.  * unlink_modules
  2297.  *
  2298.  *  Unregister devices and release their memory.
  2299.  *
  2300.  ************************/
  2301. static struct net_device *unlink_modules(struct net_device *p)
  2302. {
  2303. struct net_device *next = NULL;
  2304. if (p->priv) { /* Private areas allocated? */
  2305. struct s_smc *lp = (struct s_smc *) p->priv;
  2306. next = lp->os.next_module;
  2307. if (lp->os.SharedMemAddr) {
  2308. pci_free_consistent(&lp->os.pdev,
  2309.     lp->os.SharedMemSize,
  2310.     lp->os.SharedMemAddr,
  2311.     lp->os.SharedMemDMA);
  2312. lp->os.SharedMemAddr = NULL;
  2313. }
  2314. if (lp->os.LocalRxBuffer) {
  2315. pci_free_consistent(&lp->os.pdev,
  2316.     MAX_FRAME_SIZE,
  2317.     lp->os.LocalRxBuffer,
  2318.     lp->os.LocalRxBufferDMA);
  2319. lp->os.LocalRxBuffer = NULL;
  2320. }
  2321. release_region(p->base_addr, 
  2322. (lp->os.bus_type == SK_BUS_TYPE_PCI ? FP_IO_LEN : 0));
  2323. }
  2324. unregister_netdev(p);
  2325. printk("%s: unloadedn", p->name);
  2326. kfree(p); /* Free the device structure */
  2327. return next;
  2328. } // unlink_modules
  2329. #endif /* MODULE */