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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*      cops.c: LocalTalk driver for Linux.
  2.  *
  3.  * Authors:
  4.  *      - Jay Schulist <jschlst@samba.org>
  5.  *
  6.  * With more than a little help from;
  7.  * - Alan Cox <Alan.Cox@linux.org> 
  8.  *
  9.  *      Derived from:
  10.  *      - skeleton.c: A network driver outline for linux.
  11.  *        Written 1993-94 by Donald Becker.
  12.  * - ltpc.c: A driver for the LocalTalk PC card.
  13.  *   Written by Bradford W. Johnson.
  14.  *
  15.  *      Copyright 1993 United States Government as represented by the
  16.  *      Director, National Security Agency.
  17.  *
  18.  *      This software may be used and distributed according to the terms
  19.  *      of the GNU General Public License, incorporated herein by reference.
  20.  *
  21.  * Changes:
  22.  * 19970608 Alan Cox Allowed dual card type support
  23.  * Can set board type in insmod
  24.  * Hooks for cops_setup routine
  25.  * (not yet implemented).
  26.  * 19971101 Jay Schulist Fixes for multiple lt* devices.
  27.  * 19980607 Steven Hirsch Fixed the badly broken support
  28.  * for Tangent type cards. Only
  29.  *                                      tested on Daystar LT200. Some
  30.  *                                      cleanup of formatting and program
  31.  *                                      logic.  Added emacs 'local-vars'
  32.  *                                      setup for Jay's brace style.
  33.  * 20000211 Alan Cox Cleaned up for softnet
  34.  */
  35. static const char *version =
  36. "cops.c:v0.04 6/7/98 Jay Schulist <jschlst@samba.org>n";
  37. /*
  38.  *  Sources:
  39.  *      COPS Localtalk SDK. This provides almost all of the information
  40.  *      needed.
  41.  */
  42. /*
  43.  * insmod/modprobe configurable stuff.
  44.  * - IO Port, choose one your card supports or 0 if you dare.
  45.  * - IRQ, also choose one your card supports or nothing and let
  46.  *   the driver figure it out.
  47.  */
  48. #include <linux/config.h>
  49. #include <linux/module.h>
  50. #include <linux/kernel.h>
  51. #include <linux/sched.h>
  52. #include <linux/types.h>
  53. #include <linux/fcntl.h>
  54. #include <linux/interrupt.h>
  55. #include <linux/ptrace.h>
  56. #include <linux/ioport.h>
  57. #include <linux/in.h>
  58. #include <linux/slab.h>
  59. #include <linux/string.h>
  60. #include <asm/system.h>
  61. #include <asm/bitops.h>
  62. #include <asm/io.h>
  63. #include <asm/dma.h>
  64. #include <linux/errno.h>
  65. #include <linux/init.h>
  66. #include <linux/netdevice.h>
  67. #include <linux/etherdevice.h>
  68. #include <linux/skbuff.h>
  69. #include <linux/if_arp.h>
  70. #include <linux/if_ltalk.h> /* For ltalk_setup() */
  71. #include <linux/delay.h> /* For udelay() */
  72. #include <linux/atalk.h>
  73. #include "cops.h" /* Our Stuff */
  74. #include "cops_ltdrv.h" /* Firmware code for Tangent type cards. */
  75. #include "cops_ffdrv.h" /* Firmware code for Dayna type cards. */
  76. /*
  77.  *      The name of the card. Is used for messages and in the requests for
  78.  *      io regions, irqs and dma channels
  79.  */
  80. static const char *cardname = "cops";
  81. #ifdef CONFIG_COPS_DAYNA
  82. static int board_type = DAYNA; /* Module exported */
  83. #else
  84. static int board_type = TANGENT;
  85. #endif
  86. #ifdef MODULE
  87. static int io = 0x240; /* Default IO for Dayna */
  88. static int irq = 5; /* Default IRQ */
  89. #else
  90. static int io; /* Default IO for Dayna */
  91. #endif
  92. /*
  93.  * COPS Autoprobe information.
  94.  * Right now if port address is right but IRQ is not 5 this will
  95.  *      return a 5 no matter what since we will still get a status response.
  96.  *      Need one more additional check to narrow down after we have gotten
  97.  *      the ioaddr. But since only other possible IRQs is 3 and 4 so no real
  98.  * hurry on this. I *STRONGLY* recommend using IRQ 5 for your card with
  99.  * this driver.
  100.  * 
  101.  * This driver has 2 modes and they are: Dayna mode and Tangent mode.
  102.  * Each mode corresponds with the type of card. It has been found
  103.  * that there are 2 main types of cards and all other cards are
  104.  * the same and just have different names or only have minor differences
  105.  * such as more IO ports. As this driver is tested it will
  106.  * become more clear on exactly what cards are supported. The driver
  107.  * defaults to using Dayna mode. To change the drivers mode, simply
  108.  * select Dayna or Tangent mode when configuring the kernel.
  109.  *
  110.  *      This driver should support:
  111.  *      TANGENT driver mode:
  112.  *              Tangent ATB-II, Novell NL-1000, Daystar Digital LT-200,
  113.  * COPS LT-1
  114.  *      DAYNA driver mode:
  115.  *              Dayna DL2000/DaynaTalk PC (Half Length), COPS LT-95, 
  116.  * Farallon PhoneNET PC III, Farallon PhoneNET PC II
  117.  * Other cards possibly supported mode unkown though:
  118.  * Dayna DL2000 (Full length), COPS LT/M (Micro-Channel)
  119.  *
  120.  * Cards NOT supported by this driver but supported by the ltpc.c
  121.  * driver written by Bradford W. Johnson <johns393@maroon.tc.umn.edu>
  122.  * Farallon PhoneNET PC
  123.  * Original Apple LocalTalk PC card
  124.  * 
  125.  *      N.B.
  126.  *
  127.  *      The Daystar Digital LT200 boards do not support interrupt-driven
  128.  *      IO.  You must specify 'irq=0xff' as a module parameter to invoke
  129.  *      polled mode.  I also believe that the port probing logic is quite
  130.  *      dangerous at best and certainly hopeless for a polled card.  Best to 
  131.  *      specify both. - Steve H.
  132.  *
  133.  */
  134. /*
  135.  * Zero terminated list of IO ports to probe.
  136.  */
  137. static unsigned int cops_portlist[] = { 
  138. 0x240, 0x340, 0x200, 0x210, 0x220, 0x230, 0x260, 
  139. 0x2A0, 0x300, 0x310, 0x320, 0x330, 0x350, 0x360,
  140. 0
  141. };
  142. /*
  143.  * Zero terminated list of IRQ ports to probe.
  144.  */
  145. static int cops_irqlist[] = {
  146. 5, 4, 3, 0 
  147. };
  148. static struct timer_list cops_timer;
  149. /* use 0 for production, 1 for verification, 2 for debug, 3 for verbose debug */
  150. #ifndef COPS_DEBUG
  151. #define COPS_DEBUG 1 
  152. #endif
  153. static unsigned int cops_debug = COPS_DEBUG;
  154. /* The number of low I/O ports used by the card. */
  155. #define COPS_IO_EXTENT       8
  156. /* Information that needs to be kept for each board. */
  157. struct cops_local
  158. {
  159.         struct net_device_stats stats;
  160.         int board; /* Holds what board type is. */
  161. int nodeid; /* Set to 1 once have nodeid. */
  162.         unsigned char node_acquire; /* Node ID when acquired. */
  163.         struct at_addr node_addr; /* Full node address */
  164. };
  165. /* Index to functions, as function prototypes. */
  166. extern int  cops_probe (struct net_device *dev);
  167. static int  cops_probe1 (struct net_device *dev, int ioaddr);
  168. static int  cops_irq (int ioaddr, int board);
  169. static int  cops_open (struct net_device *dev);
  170. static int  cops_jumpstart (struct net_device *dev);
  171. static void cops_reset (struct net_device *dev, int sleep);
  172. static void cops_load (struct net_device *dev);
  173. static int  cops_nodeid (struct net_device *dev, int nodeid);
  174. static void cops_interrupt (int irq, void *dev_id, struct pt_regs *regs);
  175. static void cops_poll (unsigned long ltdev);
  176. static void cops_timeout(struct net_device *dev);
  177. static void cops_rx (struct net_device *dev);
  178. static int  cops_send_packet (struct sk_buff *skb, struct net_device *dev);
  179. static void set_multicast_list (struct net_device *dev);
  180. static int  cops_hard_header (struct sk_buff *skb, struct net_device *dev,
  181.       unsigned short type, void *daddr, void *saddr, 
  182.       unsigned len);
  183. static int  cops_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  184. static int  cops_close (struct net_device *dev);
  185. static struct net_device_stats *cops_get_stats (struct net_device *dev);
  186. /*
  187.  *      Check for a network adaptor of this type, and return '0' iff one exists.
  188.  *      If dev->base_addr == 0, probe all likely locations.
  189.  *      If dev->base_addr in [1..0x1ff], always return failure.
  190.  *        otherwise go with what we pass in.
  191.  */
  192. int __init cops_probe(struct net_device *dev)
  193. {
  194. int i;
  195.         int base_addr = dev->base_addr;
  196. SET_MODULE_OWNER(dev);
  197.         if(base_addr == 0 && io)
  198.          base_addr=io;
  199.         if(base_addr > 0x1ff)    /* Check a single specified location. */
  200.                 return cops_probe1(dev, base_addr);
  201. else if(base_addr != 0)  /* Don't probe at all. */
  202.                 return -ENXIO;
  203. /* FIXME  Does this really work for cards which generate irq?
  204.  * It's definitely N.G. for polled Tangent. sh
  205.  * Dayna cards don't autoprobe well at all, but if your card is
  206.  * at IRQ 5 & IO 0x240 we find it every time. ;) JS
  207.  */
  208.         for(i=0; cops_portlist[i]; i++)
  209.                 if(cops_probe1(dev, cops_portlist[i]) == 0)
  210.                         return 0;
  211.         return -ENODEV;
  212. }
  213. /*
  214.  *      This is the real probe routine. Linux has a history of friendly device
  215.  *      probes on the ISA bus. A good device probes avoids doing writes, and
  216.  *      verifies that the correct device exists and functions.
  217.  */
  218. static int __init cops_probe1(struct net_device *dev, int ioaddr)
  219. {
  220.         struct cops_local *lp;
  221. static unsigned version_printed;
  222. int board = board_type;
  223. int retval;
  224.         if(cops_debug && version_printed++ == 0)
  225. printk("%s", version);
  226. /* Grab the region so no one else tries to probe our ioports. */
  227. if (!request_region(ioaddr, COPS_IO_EXTENT, dev->name))
  228. return -EBUSY;
  229.         /*
  230.          * Since this board has jumpered interrupts, allocate the interrupt
  231.          * vector now. There is no point in waiting since no other device
  232.          * can use the interrupt, and this marks the irq as busy. Jumpered
  233.          * interrupts are typically not reported by the boards, and we must
  234.          * used AutoIRQ to find them.
  235.  */
  236. switch (dev->irq)
  237. {
  238. case 0:
  239. /* COPS AutoIRQ routine */
  240. dev->irq = cops_irq(ioaddr, board);
  241. if(!dev->irq) {
  242. retval = -EINVAL; /* No IRQ found on this port */
  243. goto err_out;
  244. }
  245. case 1:
  246. retval = -EINVAL;
  247. goto err_out;
  248. /* Fixup for users that don't know that IRQ 2 is really
  249.  * IRQ 9, or don't know which one to set.
  250.  */
  251. case 2:
  252. dev->irq = 9;
  253. break;
  254. /* Polled operation requested. Although irq of zero passed as
  255.  * a parameter tells the init routines to probe, we'll
  256.  * overload it to denote polled operation at runtime.
  257.  */
  258. case 0xff:
  259. dev->irq = 0;
  260. break;
  261. default:
  262. break;
  263. }
  264. /* Reserve any actual interrupt. */
  265. if(dev->irq) {
  266. retval = request_irq(dev->irq, &cops_interrupt, 0, dev->name, dev);
  267. if (retval)
  268. goto err_out;
  269. }
  270. dev->base_addr = ioaddr;
  271. /* Initialize the private device structure. */
  272.         dev->priv = kmalloc(sizeof(struct cops_local), GFP_KERNEL);
  273.         if(dev->priv == NULL) {
  274. if (dev->irq)
  275. free_irq(dev->irq, dev);
  276.          retval = -ENOMEM;
  277. goto err_out;
  278. }
  279.         lp = (struct cops_local *)dev->priv;
  280.         memset(lp, 0, sizeof(struct cops_local));
  281. /* Copy local board variable to lp struct. */
  282. lp->board               = board;
  283. /* Fill in the fields of the device structure with LocalTalk values. */
  284. ltalk_setup(dev);
  285. dev->hard_start_xmit    = cops_send_packet;
  286. dev->tx_timeout = cops_timeout;
  287. dev->watchdog_timeo = HZ * 2;
  288. dev->hard_header = cops_hard_header;
  289.         dev->get_stats          = cops_get_stats;
  290. dev->open               = cops_open;
  291.         dev->stop               = cops_close;
  292.         dev->do_ioctl           = cops_ioctl;
  293. dev->set_multicast_list = set_multicast_list;
  294.         dev->mc_list            = NULL;
  295. /* Tell the user where the card is and what mode we're in. */
  296. if(board==DAYNA)
  297. printk("%s: %s at %#3x, using IRQ %d, in Dayna mode.n", 
  298. dev->name, cardname, ioaddr, dev->irq);
  299. if(board==TANGENT) {
  300. if(dev->irq)
  301. printk("%s: %s at %#3x, IRQ %d, in Tangent moden", 
  302. dev->name, cardname, ioaddr, dev->irq);
  303. else
  304. printk("%s: %s at %#3x, using polled IO, in Tangent mode.n", 
  305. dev->name, cardname, ioaddr);
  306. }
  307.         return 0;
  308. err_out:
  309. release_region(ioaddr, COPS_IO_EXTENT);
  310. return retval;
  311. }
  312. static int __init cops_irq (int ioaddr, int board)
  313. {       /*
  314.          * This does not use the IRQ to determine where the IRQ is. We just
  315.          * assume that when we get a correct status response that it's the IRQ.
  316.          * This really just verifies the IO port but since we only have access
  317.          * to such a small number of IRQs (5, 4, 3) this is not bad.
  318.          * This will probably not work for more than one card.
  319.          */
  320.         int irqaddr=0;
  321.         int i, x, status;
  322.         if(board==DAYNA)
  323.         {
  324.                 outb(0, ioaddr+DAYNA_RESET);
  325.                 inb(ioaddr+DAYNA_RESET);
  326.                 mdelay(333);
  327.         }
  328.         if(board==TANGENT)
  329.         {
  330.                 inb(ioaddr);
  331.                 outb(0, ioaddr);
  332.                 outb(0, ioaddr+TANG_RESET);
  333.         }
  334.         for(i=0; cops_irqlist[i] !=0; i++)
  335.         {
  336.                 irqaddr = cops_irqlist[i];
  337.                 for(x = 0xFFFF; x>0; x --)    /* wait for response */
  338.                 {
  339.                         if(board==DAYNA)
  340.                         {
  341.                                 status = (inb(ioaddr+DAYNA_CARD_STATUS)&3);
  342.                                 if(status == 1)
  343.                                         return irqaddr;
  344.                         }
  345.                         if(board==TANGENT)
  346.                         {
  347.                                 if((inb(ioaddr+TANG_CARD_STATUS)& TANG_TX_READY) !=0)
  348.                                         return irqaddr;
  349.                         }
  350.                 }
  351.         }
  352.         return 0;       /* no IRQ found */
  353. }
  354. /*
  355.  * Open/initialize the board. This is called (in the current kernel)
  356.  * sometime after booting when the 'ifconfig' program is run.
  357.  */
  358. static int cops_open(struct net_device *dev)
  359. {
  360.     struct cops_local *lp = (struct cops_local *)dev->priv;
  361. if(dev->irq==0)
  362. {
  363. /*
  364.  * I don't know if the Dayna-style boards support polled 
  365.  * operation.  For now, only allow it for Tangent.
  366.  */
  367. if(lp->board==TANGENT) /* Poll 20 times per second */
  368. {
  369.     init_timer(&cops_timer);
  370.     cops_timer.function = cops_poll;
  371.     cops_timer.data  = (unsigned long)dev;
  372.     cops_timer.expires  = jiffies + 5;
  373.     add_timer(&cops_timer);
  374. else 
  375. {
  376. printk(KERN_WARNING "%s: No irq line setn", dev->name);
  377. return -EAGAIN;
  378. }
  379. }
  380. cops_jumpstart(dev); /* Start the card up. */
  381. netif_start_queue(dev);
  382.         return 0;
  383. }
  384. /*
  385.  * This allows for a dynamic start/restart of the entire card.
  386.  */
  387. static int cops_jumpstart(struct net_device *dev)
  388. {
  389. struct cops_local *lp = (struct cops_local *)dev->priv;
  390. /*
  391.          *      Once the card has the firmware loaded and has acquired
  392.          *      the nodeid, if it is reset it will lose it all.
  393.          */
  394.         cops_reset(dev,1); /* Need to reset card before load firmware. */
  395.         cops_load(dev); /* Load the firmware. */
  396. /*
  397.  * If atalkd already gave us a nodeid we will use that
  398.  * one again, else we wait for atalkd to give us a nodeid
  399.  * in cops_ioctl. This may cause a problem if someone steals
  400.  * our nodeid while we are resetting.
  401.  */
  402. if(lp->nodeid == 1)
  403. cops_nodeid(dev,lp->node_acquire);
  404. return 0;
  405. }
  406. static void tangent_wait_reset(int ioaddr)
  407. {
  408. int timeout=0;
  409. while(timeout++ < 5 && (inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  410. mdelay(1);   /* Wait 1 second */
  411. }
  412. /*
  413.  *      Reset the LocalTalk board.
  414.  */
  415. static void cops_reset(struct net_device *dev, int sleep)
  416. {
  417.         struct cops_local *lp = (struct cops_local *)dev->priv;
  418.         int ioaddr=dev->base_addr;
  419.         if(lp->board==TANGENT)
  420.         {
  421.                 inb(ioaddr); /* Clear request latch. */
  422.                 outb(0,ioaddr); /* Clear the TANG_TX_READY flop. */
  423.                 outb(0, ioaddr+TANG_RESET); /* Reset the adapter. */
  424. tangent_wait_reset(ioaddr);
  425.                 outb(0, ioaddr+TANG_CLEAR_INT);
  426.         }
  427.         if(lp->board==DAYNA)
  428.         {
  429.                 outb(0, ioaddr+DAYNA_RESET); /* Assert the reset port */
  430.                 inb(ioaddr+DAYNA_RESET); /* Clear the reset */
  431.                 if(sleep)
  432.                 {
  433.                         long snap=jiffies;
  434. /* Let card finish initializing, about 1/3 second */
  435.                 while(jiffies-snap<HZ/3)
  436.                                 schedule();
  437.                 }
  438.                 else
  439.                         mdelay(333);
  440.         }
  441. netif_wake_queue(dev);
  442. return;
  443. }
  444. static void cops_load (struct net_device *dev)
  445. {
  446.         struct ifreq ifr;
  447.         struct ltfirmware *ltf= (struct ltfirmware *)&ifr.ifr_data;
  448.         struct cops_local *lp=(struct cops_local *)dev->priv;
  449.         int ioaddr=dev->base_addr;
  450. int length, i = 0;
  451.         strcpy(ifr.ifr_name,"lt0");
  452.         /* Get card's firmware code and do some checks on it. */
  453. #ifdef CONFIG_COPS_DAYNA        
  454.         if(lp->board==DAYNA)
  455.         {
  456.                 ltf->length=sizeof(ffdrv_code);
  457.                 ltf->data=ffdrv_code;
  458.         }
  459.         else
  460. #endif        
  461. #ifdef CONFIG_COPS_TANGENT
  462.         if(lp->board==TANGENT)
  463.         {
  464.                 ltf->length=sizeof(ltdrv_code);
  465.                 ltf->data=ltdrv_code;
  466.         }
  467.         else
  468. #endif
  469. {
  470. printk(KERN_INFO "%s; unsupported board type.n", dev->name);
  471. return;
  472. }
  473.         /* Check to make sure firmware is correct length. */
  474.         if(lp->board==DAYNA && ltf->length!=5983)
  475.         {
  476.                 printk(KERN_WARNING "%s: Firmware is not length of FFDRV.BIN.n", dev->name);
  477.                 return;
  478.         }
  479.         if(lp->board==TANGENT && ltf->length!=2501)
  480.         {
  481.                 printk(KERN_WARNING "%s: Firmware is not length of DRVCODE.BIN.n", dev->name);
  482.                 return;
  483.         }
  484.         if(lp->board==DAYNA)
  485.         {
  486.                 /*
  487.                  *      We must wait for a status response
  488.                  *      with the DAYNA board.
  489.                  */
  490.                 while(++i<65536)
  491.                 {
  492.                        if((inb(ioaddr+DAYNA_CARD_STATUS)&3)==1)
  493.                                 break;
  494.                 }
  495.                 if(i==65536)
  496.                         return;
  497.         }
  498.         /*
  499.          *      Upload the firmware and kick. Byte-by-byte works nicely here.
  500.          */
  501. i=0;
  502.         length = ltf->length;
  503.         while(length--)
  504.         {
  505.                 outb(ltf->data[i], ioaddr);
  506.                 i++;
  507.         }
  508. if(cops_debug > 1)
  509. printk("%s: Uploaded firmware - %d bytes of %d bytes.n", 
  510. dev->name, i, ltf->length);
  511.         if(lp->board==DAYNA)  /* Tell Dayna to run the firmware code. */
  512.                 outb(1, ioaddr+DAYNA_INT_CARD);
  513. else /* Tell Tang to run the firmware code. */
  514. inb(ioaddr);
  515.         if(lp->board==TANGENT)
  516.         {
  517.                 tangent_wait_reset(ioaddr);
  518.                 inb(ioaddr); /* Clear initial ready signal. */
  519.         }
  520.         return;
  521. }
  522. /*
  523.  *  Get the LocalTalk Nodeid from the card. We can suggest
  524.  * any nodeid 1-254. The card will try and get that exact
  525.  * address else we can specify 0 as the nodeid and the card
  526.  * will autoprobe for a nodeid.
  527.  */
  528. static int cops_nodeid (struct net_device *dev, int nodeid)
  529. {
  530. struct cops_local *lp = (struct cops_local *) dev->priv;
  531. int ioaddr = dev->base_addr;
  532. if(lp->board == DAYNA)
  533.         {
  534.          /* Empty any pending adapter responses. */
  535.                 while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0)
  536.                 {
  537. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupts. */
  538.          if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
  539.                  cops_rx(dev); /* Kick any packets waiting. */
  540. schedule();
  541.                 }
  542.                 outb(2, ioaddr);        /* Output command packet length as 2. */
  543.                 outb(0, ioaddr);
  544.                 outb(LAP_INIT, ioaddr); /* Send LAP_INIT command byte. */
  545.                 outb(nodeid, ioaddr);   /* Suggest node address. */
  546.         }
  547. if(lp->board == TANGENT)
  548.         {
  549.                 /* Empty any pending adapter responses. */
  550.                 while(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
  551.                 {
  552. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear interrupt. */
  553.                  cops_rx(dev);           /* Kick out packets waiting. */
  554. schedule();
  555.                 }
  556. /* Not sure what Tangent does if nodeid picked is used. */
  557.                 if(nodeid == 0)           /* Seed. */
  558.                  nodeid = jiffies&0xFF; /* Get a random try */
  559.                 outb(2, ioaddr);         /* Command length LSB */
  560.                 outb(0, ioaddr);        /* Command length MSB */
  561.                 outb(LAP_INIT, ioaddr);  /* Send LAP_INIT byte */
  562.                 outb(nodeid, ioaddr);     /* LAP address hint. */
  563.                 outb(0xFF, ioaddr);      /* Int. level to use */
  564.         }
  565. lp->node_acquire=0; /* Set nodeid holder to 0. */
  566.         while(lp->node_acquire==0) /* Get *True* nodeid finally. */
  567. {
  568. outb(0, ioaddr+COPS_CLEAR_INT); /* Clear any interrupt. */
  569. if(lp->board == DAYNA)
  570. {
  571.                  if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_REQUEST)
  572.                  cops_rx(dev); /* Grab the nodeid put in lp->node_acquire. */
  573. }
  574. if(lp->board == TANGENT)
  575. {
  576. if(inb(ioaddr+TANG_CARD_STATUS)&TANG_RX_READY)
  577.                                 cops_rx(dev);   /* Grab the nodeid put in lp->node_acquire. */
  578. }
  579. schedule();
  580. }
  581. if(cops_debug > 1)
  582. printk(KERN_DEBUG "%s: Node ID %d has been acquired.n", 
  583. dev->name, lp->node_acquire);
  584. lp->nodeid=1; /* Set got nodeid to 1. */
  585.         return 0;
  586. }
  587. /*
  588.  * Poll the Tangent type cards to see if we have work.
  589.  */
  590.  
  591. static void cops_poll(unsigned long ltdev)
  592. {
  593. int ioaddr, status;
  594. int boguscount = 0;
  595. struct net_device *dev = (struct net_device *)ltdev;
  596. del_timer(&cops_timer);
  597. if(dev == NULL)
  598. return; /* We've been downed */
  599. ioaddr = dev->base_addr;
  600. do {
  601. status=inb(ioaddr+TANG_CARD_STATUS);
  602. if(status & TANG_RX_READY)
  603. cops_rx(dev);
  604. if(status & TANG_TX_READY)
  605. netif_wake_queue(dev);
  606. status = inb(ioaddr+TANG_CARD_STATUS);
  607. } while((++boguscount < 20) && (status&(TANG_RX_READY|TANG_TX_READY)));
  608. cops_timer.expires = jiffies+5;
  609. add_timer(&cops_timer);
  610. return;
  611. }
  612. /*
  613.  *      The typical workload of the driver:
  614.  *      Handle the network interface interrupts.
  615.  */
  616. static void cops_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  617. {
  618.         struct net_device *dev = dev_id;
  619.         struct cops_local *lp;
  620.         int ioaddr, status;
  621.         int boguscount = 0;
  622.         ioaddr = dev->base_addr;
  623.         lp = (struct cops_local *)dev->priv;
  624. if(lp->board==DAYNA)
  625. {
  626. do {
  627. outb(0, ioaddr + COPS_CLEAR_INT);
  628.                         status=inb(ioaddr+DAYNA_CARD_STATUS);
  629.                         if((status&0x03)==DAYNA_RX_REQUEST)
  630.                                 cops_rx(dev);
  631.                  netif_wake_queue(dev);
  632. } while(++boguscount < 20);
  633. }
  634. else
  635. {
  636. do {
  637.                         status=inb(ioaddr+TANG_CARD_STATUS);
  638. if(status & TANG_RX_READY)
  639. cops_rx(dev);
  640. if(status & TANG_TX_READY)
  641. netif_wake_queue(dev);
  642. status=inb(ioaddr+TANG_CARD_STATUS);
  643. } while((++boguscount < 20) && (status&(TANG_RX_READY|TANG_TX_READY)));
  644. }
  645.         return;
  646. }
  647. /*
  648.  *      We have a good packet(s), get it/them out of the buffers.
  649.  */
  650. static void cops_rx(struct net_device *dev)
  651. {
  652.         int pkt_len = 0;
  653.         int rsp_type = 0;
  654.         struct sk_buff *skb = NULL;
  655.         struct cops_local *lp = dev->priv;
  656.         int ioaddr = dev->base_addr;
  657.         int boguscount = 0;
  658.         unsigned long flags;
  659. save_flags(flags);
  660.         cli();  /* Disable interrupts. */
  661.         if(lp->board==DAYNA)
  662.         {
  663.                 outb(0, ioaddr);                /* Send out Zero length. */
  664.                 outb(0, ioaddr);
  665.                 outb(DATA_READ, ioaddr);        /* Send read command out. */
  666.                 /* Wait for DMA to turn around. */
  667.                 while(++boguscount<1000000)
  668.                 {
  669. barrier();
  670.                         if((inb(ioaddr+DAYNA_CARD_STATUS)&0x03)==DAYNA_RX_READY)
  671.                                 break;
  672.                 }
  673.                 if(boguscount==1000000)
  674.                 {
  675.                         printk(KERN_WARNING "%s: DMA timed out.n",dev->name);
  676. restore_flags(flags);
  677.                         return;
  678.                 }
  679.         }
  680.         /* Get response length. */
  681. if(lp->board==DAYNA)
  682.          pkt_len = inb(ioaddr) & 0xFF;
  683. else
  684. pkt_len = inb(ioaddr) & 0x00FF;
  685.         pkt_len |= (inb(ioaddr) << 8);
  686.         /* Input IO code. */
  687.         rsp_type=inb(ioaddr);
  688.         /* Malloc up new buffer. */
  689.         skb = dev_alloc_skb(pkt_len);
  690.         if(skb == NULL)
  691.         {
  692.                 printk(KERN_WARNING "%s: Memory squeeze, dropping packet.n",
  693. dev->name);
  694.                 lp->stats.rx_dropped++;
  695.                 while(pkt_len--)        /* Discard packet */
  696.                         inb(ioaddr);
  697. restore_flags(flags);
  698.                 return;
  699.         }
  700.         skb->dev = dev;
  701.         skb_put(skb, pkt_len);
  702.         skb->protocol = htons(ETH_P_LOCALTALK);
  703.         insb(ioaddr, skb->data, pkt_len);               /* Eat the Data */
  704.         if(lp->board==DAYNA)
  705.                 outb(1, ioaddr+DAYNA_INT_CARD);         /* Interrupt the card */
  706.         restore_flags(flags);  /* Restore interrupts. */
  707.         /* Check for bad response length */
  708.         if(pkt_len < 0 || pkt_len > MAX_LLAP_SIZE)
  709.         {
  710. printk(KERN_WARNING "%s: Bad packet length of %d bytes.n", 
  711. dev->name, pkt_len);
  712.                 lp->stats.tx_errors++;
  713.                 dev_kfree_skb_any(skb);
  714.                 return;
  715.         }
  716.         /* Set nodeid and then get out. */
  717.         if(rsp_type == LAP_INIT_RSP)
  718.         { /* Nodeid taken from received packet. */
  719.                 lp->node_acquire = skb->data[0];
  720.                 dev_kfree_skb_any(skb);
  721.                 return;
  722.         }
  723.         /* One last check to make sure we have a good packet. */
  724.         if(rsp_type != LAP_RESPONSE)
  725.         {
  726.                 printk(KERN_WARNING "%s: Bad packet type %d.n", dev->name, rsp_type);
  727.                 lp->stats.tx_errors++;
  728.                 dev_kfree_skb_any(skb);
  729.                 return;
  730.         }
  731.         skb->mac.raw    = skb->data;    /* Point to entire packet. */
  732.         skb_pull(skb,3);
  733.         skb->h.raw      = skb->data;    /* Point to data (Skip header). */
  734.         /* Update the counters. */
  735.         lp->stats.rx_packets++;
  736.         lp->stats.rx_bytes += skb->len;
  737.         /* Send packet to a higher place. */
  738.         netif_rx(skb);
  739. dev->last_rx = jiffies;
  740. }
  741. static void cops_timeout(struct net_device *dev)
  742. {
  743.         struct cops_local *lp = (struct cops_local *)dev->priv;
  744.         int ioaddr = dev->base_addr;
  745. lp->stats.tx_errors++;
  746.         if(lp->board==TANGENT)
  747.         {
  748. if((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0)
  749.                 printk(KERN_WARNING "%s: No TX complete interrupt.n", dev->name);
  750. }
  751. printk(KERN_WARNING "%s: Transmit timed out.n", dev->name);
  752. cops_jumpstart(dev); /* Restart the card. */
  753. dev->trans_start = jiffies;
  754. netif_wake_queue(dev);
  755. }
  756. /*
  757.  * Make the card transmit a LocalTalk packet.
  758.  */
  759. static int cops_send_packet(struct sk_buff *skb, struct net_device *dev)
  760. {
  761.         struct cops_local *lp = (struct cops_local *)dev->priv;
  762.         int ioaddr = dev->base_addr;
  763.         unsigned long flags;
  764.         /*
  765.          * Block a timer-based transmit from overlapping. 
  766.  */
  767.  
  768. netif_stop_queue(dev);
  769. save_flags(flags);
  770. cli(); /* Disable interrupts. */
  771. if(lp->board == DAYNA)  /* Wait for adapter transmit buffer. */
  772. while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0);
  773. if(lp->board == TANGENT) /* Wait for adapter transmit buffer. */
  774. while((inb(ioaddr+TANG_CARD_STATUS)&TANG_TX_READY)==0);
  775. /* Output IO length. */
  776. outb(skb->len, ioaddr);
  777. if(lp->board == DAYNA)
  778.                 outb(skb->len >> 8, ioaddr);
  779. else
  780. outb((skb->len >> 8)&0x0FF, ioaddr);
  781. /* Output IO code. */
  782. outb(LAP_WRITE, ioaddr);
  783. if(lp->board == DAYNA) /* Check the transmit buffer again. */
  784.          while((inb(ioaddr+DAYNA_CARD_STATUS)&DAYNA_TX_READY)==0);
  785. outsb(ioaddr, skb->data, skb->len); /* Send out the data. */
  786. if(lp->board==DAYNA) /* Dayna requires you kick the card */
  787. outb(1, ioaddr+DAYNA_INT_CARD);
  788. restore_flags(flags); /* Restore interrupts. */
  789. /* Done sending packet, update counters and cleanup. */
  790. lp->stats.tx_packets++;
  791. lp->stats.tx_bytes += skb->len;
  792. dev->trans_start = jiffies;
  793. dev_kfree_skb (skb);
  794.         return 0;
  795. }
  796. /*
  797.  * Dummy function to keep the Appletalk layer happy.
  798.  */
  799.  
  800. static void set_multicast_list(struct net_device *dev)
  801. {
  802.         if(cops_debug >= 3)
  803. printk("%s: set_multicast_list executedn", dev->name);
  804. }
  805. /*
  806.  *      Another Dummy function to keep the Appletalk layer happy.
  807.  */
  808.  
  809. static int cops_hard_header(struct sk_buff *skb, struct net_device *dev,
  810.     unsigned short type, void *daddr, void *saddr, 
  811.     unsigned len)
  812. {
  813.         if(cops_debug >= 3)
  814.                 printk("%s: cops_hard_header executed. Wow!n", dev->name);
  815.         return 0;
  816. }
  817. /*
  818.  *      System ioctls for the COPS LocalTalk card.
  819.  */
  820.  
  821. static int cops_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  822. {
  823.         struct cops_local *lp = (struct cops_local *)dev->priv;
  824.         struct sockaddr_at *sa=(struct sockaddr_at *)&ifr->ifr_addr;
  825.         struct at_addr *aa=(struct at_addr *)&lp->node_addr;
  826.         switch(cmd)
  827.         {
  828.                 case SIOCSIFADDR:
  829. /* Get and set the nodeid and network # atalkd wants. */
  830. cops_nodeid(dev, sa->sat_addr.s_node);
  831. aa->s_net               = sa->sat_addr.s_net;
  832.                         aa->s_node              = lp->node_acquire;
  833. /* Set broardcast address. */
  834.                         dev->broadcast[0]       = 0xFF;
  835. /* Set hardware address. */
  836.                         dev->dev_addr[0]        = aa->s_node;
  837.                         dev->addr_len           = 1;
  838.                         return 0;
  839.                 case SIOCGIFADDR:
  840.                         sa->sat_addr.s_net      = aa->s_net;
  841.                         sa->sat_addr.s_node     = aa->s_node;
  842.                         return 0;
  843.                 default:
  844.                         return -EOPNOTSUPP;
  845.         }
  846. }
  847. /*
  848.  * The inverse routine to cops_open().
  849.  */
  850.  
  851. static int cops_close(struct net_device *dev)
  852. {
  853. struct cops_local *lp = (struct cops_local *)dev->priv;
  854. /* If we were running polled, yank the timer.
  855.  */
  856. if(lp->board==TANGENT && dev->irq==0)
  857. del_timer(&cops_timer);
  858. netif_stop_queue(dev);
  859.         return 0;
  860. }
  861. /*
  862.  *      Get the current statistics.
  863.  *      This may be called with the card open or closed.
  864.  */
  865. static struct net_device_stats *cops_get_stats(struct net_device *dev)
  866. {
  867.         struct cops_local *lp = (struct cops_local *)dev->priv;
  868.         return &lp->stats;
  869. }
  870. #ifdef MODULE
  871. static struct net_device cops0_dev = { init: cops_probe };
  872. MODULE_LICENSE("GPL");
  873. MODULE_PARM(io, "i");
  874. MODULE_PARM(irq, "i");
  875. MODULE_PARM(board_type, "i");
  876. int init_module(void)
  877. {
  878.         int result, err;
  879.         if(io == 0)
  880. printk(KERN_WARNING "%s: You shouldn't autoprobe with insmodn",
  881. cardname);
  882.         /* Copy the parameters from insmod into the device structure. */
  883.         cops0_dev.base_addr = io;
  884.         cops0_dev.irq       = irq;
  885. err=dev_alloc_name(&cops0_dev, "lt%d");
  886.         if(err < 0)
  887.                 return err;
  888.         if((result = register_netdev(&cops0_dev)) != 0)
  889.                 return result;
  890.         return 0;
  891. }
  892. void cleanup_module(void)
  893. {
  894.         /* No need to check MOD_IN_USE, as sys_delete_module() checks. */
  895. unregister_netdev(&cops0_dev);
  896. kfree(cops0_dev.priv);
  897. if(cops0_dev.irq)
  898. free_irq(cops0_dev.irq, &cops0_dev);
  899.         release_region(cops0_dev.base_addr, COPS_IO_EXTENT);
  900. }
  901. #endif /* MODULE */
  902. /*
  903.  * Local variables:
  904.  *  compile-command: "gcc -DMODVERSIONS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O2 -c cops.c"
  905.  *  c-basic-offset: 4
  906.  *  c-file-offsets: ((substatement-open . 0))
  907.  * End:
  908.  */