3c503.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:22k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 3c503.c: A shared-memory NS8390 ethernet driver for linux. */
  2. /*
  3.     Written 1992-94 by Donald Becker.
  4.     Copyright 1993 United States Government as represented by the
  5.     Director, National Security Agency.  This software may be used and
  6.     distributed according to the terms of the GNU General Public License,
  7.     incorporated herein by reference.
  8.     The author may be reached as becker@scyld.com, or C/O
  9. Scyld Computing Corporation
  10. 410 Severn Ave., Suite 210
  11. Annapolis MD 21403
  12.     This driver should work with the 3c503 and 3c503/16.  It should be used
  13.     in shared memory mode for best performance, although it may also work
  14.     in programmed-I/O mode.
  15.     Sources:
  16.     EtherLink II Technical Reference Manual,
  17.     EtherLink II/16 Technical Reference Manual Supplement,
  18.     3Com Corporation, 5400 Bayfront Plaza, Santa Clara CA 95052-8145
  19.     The Crynwr 3c503 packet driver.
  20.     Changelog:
  21.     Paul Gortmaker : add support for the 2nd 8kB of RAM on 16 bit cards.
  22.     Paul Gortmaker : multiple card support for module users.
  23.     rjohnson@analogic.com : Fix up PIO interface for efficient operation.
  24.     Jeff Garzik : ethtool support
  25. */
  26. #define DRV_NAME "3c503"
  27. #define DRV_VERSION "1.10a"
  28. #define DRV_RELDATE "11/17/2001"
  29. static const char version[] =
  30.     DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE "  Donald Becker (becker@scyld.com)n";
  31. #include <linux/module.h>
  32. #include <linux/kernel.h>
  33. #include <linux/sched.h>
  34. #include <linux/errno.h>
  35. #include <linux/string.h>
  36. #include <linux/delay.h>
  37. #include <linux/netdevice.h>
  38. #include <linux/etherdevice.h>
  39. #include <linux/init.h>
  40. #include <linux/ethtool.h>
  41. #include <asm/uaccess.h>
  42. #include <asm/io.h>
  43. #include <asm/system.h>
  44. #include <asm/byteorder.h>
  45. #include "8390.h"
  46. #include "3c503.h"
  47. #define WRD_COUNT 4
  48. int el2_probe(struct net_device *dev);
  49. static int el2_pio_probe(struct net_device *dev);
  50. static int el2_probe1(struct net_device *dev, int ioaddr);
  51. /* A zero-terminated list of I/O addresses to be probed in PIO mode. */
  52. static unsigned int netcard_portlist[] __initdata =
  53. { 0x300,0x310,0x330,0x350,0x250,0x280,0x2a0,0x2e0,0};
  54. #define EL2_IO_EXTENT 16
  55. static int el2_open(struct net_device *dev);
  56. static int el2_close(struct net_device *dev);
  57. static void el2_reset_8390(struct net_device *dev);
  58. static void el2_init_card(struct net_device *dev);
  59. static void el2_block_output(struct net_device *dev, int count,
  60.      const unsigned char *buf, int start_page);
  61. static void el2_block_input(struct net_device *dev, int count, struct sk_buff *skb,
  62.    int ring_offset);
  63. static void el2_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
  64.  int ring_page);
  65. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  66. /* This routine probes for a memory-mapped 3c503 board by looking for
  67.    the "location register" at the end of the jumpered boot PROM space.
  68.    This works even if a PROM isn't there.
  69.    If the ethercard isn't found there is an optional probe for
  70.    ethercard jumpered to programmed-I/O mode.
  71.    */
  72. int __init 
  73. el2_probe(struct net_device *dev)
  74. {
  75.     int *addr, addrs[] = { 0xddffe, 0xd9ffe, 0xcdffe, 0xc9ffe, 0};
  76.     int base_addr = dev->base_addr;
  77.     SET_MODULE_OWNER(dev);
  78.     
  79.     if (base_addr > 0x1ff) /* Check a single specified location. */
  80. return el2_probe1(dev, base_addr);
  81.     else if (base_addr != 0) /* Don't probe at all. */
  82. return -ENXIO;
  83.     for (addr = addrs; *addr; addr++) {
  84. int i;
  85. unsigned int base_bits = isa_readb(*addr);
  86. /* Find first set bit. */
  87. for(i = 7; i >= 0; i--, base_bits >>= 1)
  88.     if (base_bits & 0x1)
  89. break;
  90. if (base_bits != 1)
  91.     continue;
  92. if (el2_probe1(dev, netcard_portlist[i]) == 0)
  93.     return 0;
  94.     }
  95. #if ! defined(no_probe_nonshared_memory)
  96.     return el2_pio_probe(dev);
  97. #else
  98.     return -ENODEV;
  99. #endif
  100. }
  101. /*  Try all of the locations that aren't obviously empty.  This touches
  102.     a lot of locations, and is much riskier than the code above. */
  103. static int __init 
  104. el2_pio_probe(struct net_device *dev)
  105. {
  106.     int i;
  107.     int base_addr = dev ? dev->base_addr : 0;
  108.     if (base_addr > 0x1ff) /* Check a single specified location. */
  109. return el2_probe1(dev, base_addr);
  110.     else if (base_addr != 0) /* Don't probe at all. */
  111. return -ENXIO;
  112.     for (i = 0; netcard_portlist[i]; i++)
  113. if (el2_probe1(dev, netcard_portlist[i]) == 0)
  114.     return 0;
  115.     return -ENODEV;
  116. }
  117. /* Probe for the Etherlink II card at I/O port base IOADDR,
  118.    returning non-zero on success.  If found, set the station
  119.    address and memory parameters in DEVICE. */
  120. static int __init 
  121. el2_probe1(struct net_device *dev, int ioaddr)
  122. {
  123.     int i, iobase_reg, membase_reg, saved_406, wordlength, retval;
  124.     static unsigned version_printed;
  125.     unsigned long vendor_id;
  126.     /* FIXME: code reads ioaddr + 0x400, we request ioaddr + 16 */
  127.     if (!request_region(ioaddr, EL2_IO_EXTENT, dev->name))
  128. return -EBUSY;
  129.     /* Reset and/or avoid any lurking NE2000 */
  130.     if (inb(ioaddr + 0x408) == 0xff) {
  131.      mdelay(1);
  132. retval = -ENODEV;
  133. goto out;
  134.     }
  135.     /* We verify that it's a 3C503 board by checking the first three octets
  136.        of its ethernet address. */
  137.     iobase_reg = inb(ioaddr+0x403);
  138.     membase_reg = inb(ioaddr+0x404);
  139.     /* ASIC location registers should be 0 or have only a single bit set. */
  140.     if (   (iobase_reg  & (iobase_reg - 1))
  141. || (membase_reg & (membase_reg - 1))) {
  142. retval = -ENODEV;
  143. goto out;
  144.     }
  145.     saved_406 = inb_p(ioaddr + 0x406);
  146.     outb_p(ECNTRL_RESET|ECNTRL_THIN, ioaddr + 0x406); /* Reset it... */
  147.     outb_p(ECNTRL_THIN, ioaddr + 0x406);
  148.     /* Map the station addr PROM into the lower I/O ports. We now check
  149.        for both the old and new 3Com prefix */
  150.     outb(ECNTRL_SAPROM|ECNTRL_THIN, ioaddr + 0x406);
  151.     vendor_id = inb(ioaddr)*0x10000 + inb(ioaddr + 1)*0x100 + inb(ioaddr + 2);
  152.     if ((vendor_id != OLD_3COM_ID) && (vendor_id != NEW_3COM_ID)) {
  153. /* Restore the register we frobbed. */
  154. outb(saved_406, ioaddr + 0x406);
  155. retval = -ENODEV;
  156. goto out;
  157.     }
  158.     if (ei_debug  &&  version_printed++ == 0)
  159. printk(version);
  160.     dev->base_addr = ioaddr;
  161.     /* Allocate dev->priv and fill in 8390 specific dev fields. */
  162.     if (ethdev_init(dev)) {
  163. printk ("3c503: unable to allocate memory for dev->priv.n");
  164. retval = -ENOMEM;
  165. goto out;
  166.     }
  167.     printk("%s: 3c503 at i/o base %#3x, node ", dev->name, ioaddr);
  168.     /* Retrieve and print the ethernet address. */
  169.     for (i = 0; i < 6; i++)
  170. printk(" %2.2x", dev->dev_addr[i] = inb(ioaddr + i));
  171.     /* Map the 8390 back into the window. */
  172.     outb(ECNTRL_THIN, ioaddr + 0x406);
  173.     /* Check for EL2/16 as described in tech. man. */
  174.     outb_p(E8390_PAGE0, ioaddr + E8390_CMD);
  175.     outb_p(0, ioaddr + EN0_DCFG);
  176.     outb_p(E8390_PAGE2, ioaddr + E8390_CMD);
  177.     wordlength = inb_p(ioaddr + EN0_DCFG) & ENDCFG_WTS;
  178.     outb_p(E8390_PAGE0, ioaddr + E8390_CMD);
  179.     /* Probe for, turn on and clear the board's shared memory. */
  180.     if (ei_debug > 2) printk(" memory jumpers %2.2x ", membase_reg);
  181.     outb(EGACFR_NORM, ioaddr + 0x405); /* Enable RAM */
  182.     /* This should be probed for (or set via an ioctl()) at run-time.
  183.        Right now we use a sleazy hack to pass in the interface number
  184.        at boot-time via the low bits of the mem_end field.  That value is
  185.        unused, and the low bits would be discarded even if it was used. */
  186. #if defined(EI8390_THICK) || defined(EL2_AUI)
  187.     ei_status.interface_num = 1;
  188. #else
  189.     ei_status.interface_num = dev->mem_end & 0xf;
  190. #endif
  191.     printk(", using %sternal xcvr.n", ei_status.interface_num == 0 ? "in" : "ex");
  192.     if ((membase_reg & 0xf0) == 0) {
  193. dev->mem_start = 0;
  194. ei_status.name = "3c503-PIO";
  195.     } else {
  196. dev->mem_start = ((membase_reg & 0xc0) ? 0xD8000 : 0xC8000) +
  197.     ((membase_reg & 0xA0) ? 0x4000 : 0);
  198. #define EL2_MEMSIZE (EL2_MB1_STOP_PG - EL2_MB1_START_PG)*256
  199. #ifdef EL2MEMTEST
  200. /* This has never found an error, but someone might care.
  201.    Note that it only tests the 2nd 8kB on 16kB 3c503/16
  202.    cards between card addr. 0x2000 and 0x3fff. */
  203. { /* Check the card's memory. */
  204.     unsigned long mem_base = dev->mem_start;
  205.     unsigned int test_val = 0xbbadf00d;
  206.     isa_writel(0xba5eba5e, mem_base);
  207.     for (i = sizeof(test_val); i < EL2_MEMSIZE; i+=sizeof(test_val)) {
  208. isa_writel(test_val, mem_base + i);
  209. if (isa_readl(mem_base) != 0xba5eba5e
  210.     || isa_readl(mem_base + i) != test_val) {
  211.     printk("3c503: memory failure or memory address conflict.n");
  212.     dev->mem_start = 0;
  213.     ei_status.name = "3c503-PIO";
  214.     break;
  215. }
  216. test_val += 0x55555555;
  217. isa_writel(0, mem_base + i);
  218.     }
  219. }
  220. #endif  /* EL2MEMTEST */
  221. if (dev->mem_start)
  222. dev->mem_end = dev->rmem_end = dev->mem_start + EL2_MEMSIZE;
  223. if (wordlength) { /* No Tx pages to skip over to get to Rx */
  224. dev->rmem_start = dev->mem_start;
  225. ei_status.name = "3c503/16";
  226. } else {
  227. dev->rmem_start = TX_PAGES*256 + dev->mem_start;
  228. ei_status.name = "3c503";
  229. }
  230.     }
  231.     /*
  232. Divide up the memory on the card. This is the same regardless of
  233. whether shared-mem or PIO is used. For 16 bit cards (16kB RAM),
  234. we use the entire 8k of bank1 for an Rx ring. We only use 3k
  235. of the bank0 for 2 full size Tx packet slots. For 8 bit cards,
  236. (8kB RAM) we use 3kB of bank1 for two Tx slots, and the remaining
  237. 5kB for an Rx ring.  */
  238.     if (wordlength) {
  239. ei_status.tx_start_page = EL2_MB0_START_PG;
  240. ei_status.rx_start_page = EL2_MB1_START_PG;
  241.     } else {
  242. ei_status.tx_start_page = EL2_MB1_START_PG;
  243. ei_status.rx_start_page = EL2_MB1_START_PG + TX_PAGES;
  244.     }
  245.     /* Finish setting the board's parameters. */
  246.     ei_status.stop_page = EL2_MB1_STOP_PG;
  247.     ei_status.word16 = wordlength;
  248.     ei_status.reset_8390 = &el2_reset_8390;
  249.     ei_status.get_8390_hdr = &el2_get_8390_hdr;
  250.     ei_status.block_input = &el2_block_input;
  251.     ei_status.block_output = &el2_block_output;
  252.     if (dev->irq == 2)
  253. dev->irq = 9;
  254.     else if (dev->irq > 5 && dev->irq != 9) {
  255. printk("3c503: configured interrupt %d invalid, will use autoIRQ.n",
  256.        dev->irq);
  257. dev->irq = 0;
  258.     }
  259.     ei_status.saved_irq = dev->irq;
  260.     dev->open = &el2_open;
  261.     dev->stop = &el2_close;
  262.     dev->do_ioctl = &netdev_ioctl;
  263.     if (dev->mem_start)
  264. printk("%s: %s - %dkB RAM, 8kB shared mem window at %#6lx-%#6lx.n",
  265. dev->name, ei_status.name, (wordlength+1)<<3,
  266. dev->mem_start, dev->mem_end-1);
  267.     else
  268.     {
  269. ei_status.tx_start_page = EL2_MB1_START_PG;
  270. ei_status.rx_start_page = EL2_MB1_START_PG + TX_PAGES;
  271. printk("n%s: %s, %dkB RAM, using programmed I/O (REJUMPER for SHARED MEMORY).n",
  272.        dev->name, ei_status.name, (wordlength+1)<<3);
  273.     }
  274.     return 0;
  275. out:
  276.     release_region(ioaddr, EL2_IO_EXTENT);
  277.     return retval;
  278. }
  279. static int
  280. el2_open(struct net_device *dev)
  281. {
  282.     int retval = -EAGAIN;
  283.     if (dev->irq < 2) {
  284. int irqlist[] = {5, 9, 3, 4, 0};
  285. int *irqp = irqlist;
  286. outb(EGACFR_NORM, E33G_GACFR); /* Enable RAM and interrupts. */
  287. do {
  288.     if (request_irq (*irqp, NULL, 0, "bogus", dev) != -EBUSY) {
  289. /* Twinkle the interrupt, and check if it's seen. */
  290. unsigned long cookie = probe_irq_on();
  291. outb_p(0x04 << ((*irqp == 9) ? 2 : *irqp), E33G_IDCFR);
  292. outb_p(0x00, E33G_IDCFR);
  293. if (*irqp == probe_irq_off(cookie) /* It's a good IRQ line! */
  294.     && ((retval = request_irq(dev->irq = *irqp, 
  295.     ei_interrupt, 0, dev->name, dev)) == 0))
  296.     break;
  297.     }
  298. } while (*++irqp);
  299. if (*irqp == 0) {
  300.     outb(EGACFR_IRQOFF, E33G_GACFR); /* disable interrupts. */
  301.     return retval;
  302. }
  303.     } else {
  304. if ((retval = request_irq(dev->irq, ei_interrupt, 0, dev->name, dev))) {
  305.     return retval;
  306. }
  307.     }
  308.     el2_init_card(dev);
  309.     ei_open(dev);
  310.     return 0;
  311. }
  312. static int
  313. el2_close(struct net_device *dev)
  314. {
  315.     free_irq(dev->irq, dev);
  316.     dev->irq = ei_status.saved_irq;
  317.     outb(EGACFR_IRQOFF, E33G_GACFR); /* disable interrupts. */
  318.     ei_close(dev);
  319.     return 0;
  320. }
  321. /* This is called whenever we have a unrecoverable failure:
  322.        transmit timeout
  323.        Bad ring buffer packet header
  324.  */
  325. static void
  326. el2_reset_8390(struct net_device *dev)
  327. {
  328.     if (ei_debug > 1) {
  329. printk("%s: Resetting the 3c503 board...", dev->name);
  330. printk("%#lx=%#02x %#lx=%#02x %#lx=%#02x...", E33G_IDCFR, inb(E33G_IDCFR),
  331.        E33G_CNTRL, inb(E33G_CNTRL), E33G_GACFR, inb(E33G_GACFR));
  332.     }
  333.     outb_p(ECNTRL_RESET|ECNTRL_THIN, E33G_CNTRL);
  334.     ei_status.txing = 0;
  335.     outb_p(ei_status.interface_num==0 ? ECNTRL_THIN : ECNTRL_AUI, E33G_CNTRL);
  336.     el2_init_card(dev);
  337.     if (ei_debug > 1) printk("donen");
  338. }
  339. /* Initialize the 3c503 GA registers after a reset. */
  340. static void
  341. el2_init_card(struct net_device *dev)
  342. {
  343.     /* Unmap the station PROM and select the DIX or BNC connector. */
  344.     outb_p(ei_status.interface_num==0 ? ECNTRL_THIN : ECNTRL_AUI, E33G_CNTRL);
  345.     /* Set ASIC copy of rx's first and last+1 buffer pages */
  346.     /* These must be the same as in the 8390. */
  347.     outb(ei_status.rx_start_page, E33G_STARTPG);
  348.     outb(ei_status.stop_page,  E33G_STOPPG);
  349.     /* Point the vector pointer registers somewhere ?harmless?. */
  350.     outb(0xff, E33G_VP2); /* Point at the ROM restart location 0xffff0 */
  351.     outb(0xff, E33G_VP1);
  352.     outb(0x00, E33G_VP0);
  353.     /* Turn off all interrupts until we're opened. */
  354.     outb_p(0x00,  dev->base_addr + EN0_IMR);
  355.     /* Enable IRQs iff started. */
  356.     outb(EGACFR_NORM, E33G_GACFR);
  357.     /* Set the interrupt line. */
  358.     outb_p((0x04 << (dev->irq == 9 ? 2 : dev->irq)), E33G_IDCFR);
  359.     outb_p((WRD_COUNT << 1), E33G_DRQCNT); /* Set burst size to 8 */
  360.     outb_p(0x20, E33G_DMAAH); /* Put a valid addr in the GA DMA */
  361.     outb_p(0x00, E33G_DMAAL);
  362.     return; /* We always succeed */
  363. }
  364. /*
  365.  * Either use the shared memory (if enabled on the board) or put the packet
  366.  * out through the ASIC FIFO.
  367.  */
  368. static void
  369. el2_block_output(struct net_device *dev, int count,
  370.  const unsigned char *buf, int start_page)
  371. {
  372.     unsigned short int *wrd;
  373.     int boguscount; /* timeout counter */
  374.     unsigned short word; /* temporary for better machine code */
  375.     if (ei_status.word16)      /* Tx packets go into bank 0 on EL2/16 card */
  376. outb(EGACFR_RSEL|EGACFR_TCM, E33G_GACFR);
  377.     else
  378. outb(EGACFR_NORM, E33G_GACFR);
  379.     if (dev->mem_start) { /* Shared memory transfer */
  380. unsigned long dest_addr = dev->mem_start +
  381.     ((start_page - ei_status.tx_start_page) << 8);
  382. isa_memcpy_toio(dest_addr, buf, count);
  383. outb(EGACFR_NORM, E33G_GACFR); /* Back to bank1 in case on bank0 */
  384. return;
  385.     }
  386. /*
  387.  *  No shared memory, put the packet out the other way.
  388.  *  Set up then start the internal memory transfer to Tx Start Page
  389.  */
  390.     word = (unsigned short)start_page;
  391.     outb(word&0xFF, E33G_DMAAH);
  392.     outb(word>>8, E33G_DMAAL);
  393.     outb_p((ei_status.interface_num ? ECNTRL_AUI : ECNTRL_THIN ) | ECNTRL_OUTPUT
  394.    | ECNTRL_START, E33G_CNTRL);
  395. /*
  396.  *  Here I am going to write data to the FIFO as quickly as possible.
  397.  *  Note that E33G_FIFOH is defined incorrectly. It is really
  398.  *  E33G_FIFOL, the lowest port address for both the byte and
  399.  *  word write. Variable 'count' is NOT checked. Caller must supply a
  400.  *  valid count. Note that I may write a harmless extra byte to the
  401.  *  8390 if the byte-count was not even.
  402.  */
  403.     wrd = (unsigned short int *) buf;
  404.     count  = (count + 1) >> 1;
  405.     for(;;)
  406.     {
  407.         boguscount = 0x1000;
  408.         while ((inb(E33G_STATUS) & ESTAT_DPRDY) == 0)
  409.         {
  410.             if(!boguscount--)
  411.             {
  412.                 printk("%s: FIFO blocked in el2_block_output.n", dev->name);
  413.                 el2_reset_8390(dev);
  414.                 goto blocked;
  415.             }
  416.         }
  417.         if(count > WRD_COUNT)
  418.         {
  419.             outsw(E33G_FIFOH, wrd, WRD_COUNT);
  420.             wrd   += WRD_COUNT;
  421.             count -= WRD_COUNT;
  422.         }
  423.         else
  424.         {
  425.             outsw(E33G_FIFOH, wrd, count);
  426.             break;
  427.         }
  428.     }
  429.     blocked:;
  430.     outb_p(ei_status.interface_num==0 ? ECNTRL_THIN : ECNTRL_AUI, E33G_CNTRL);
  431.     return;
  432. }
  433. /* Read the 4 byte, page aligned 8390 specific header. */
  434. static void
  435. el2_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
  436. {
  437.     int boguscount;
  438.     unsigned long hdr_start = dev->mem_start + ((ring_page - EL2_MB1_START_PG)<<8);
  439.     unsigned short word;
  440.     if (dev->mem_start) {       /* Use the shared memory. */
  441. isa_memcpy_fromio(hdr, hdr_start, sizeof(struct e8390_pkt_hdr));
  442. return;
  443.     }
  444. /*
  445.  *  No shared memory, use programmed I/O.
  446.  */
  447.     word = (unsigned short)ring_page;
  448.     outb(word&0xFF, E33G_DMAAH);
  449.     outb(word>>8, E33G_DMAAL);
  450.     outb_p((ei_status.interface_num == 0 ? ECNTRL_THIN : ECNTRL_AUI) | ECNTRL_INPUT
  451.    | ECNTRL_START, E33G_CNTRL);
  452.     boguscount = 0x1000;
  453.     while ((inb(E33G_STATUS) & ESTAT_DPRDY) == 0)
  454.     {
  455.         if(!boguscount--)
  456.         {
  457.             printk("%s: FIFO blocked in el2_get_8390_hdr.n", dev->name);
  458.             memset(hdr, 0x00, sizeof(struct e8390_pkt_hdr));
  459.             el2_reset_8390(dev);
  460.             goto blocked;
  461.         }
  462.     }
  463.     insw(E33G_FIFOH, hdr, (sizeof(struct e8390_pkt_hdr))>> 1);
  464.     blocked:;
  465.     outb_p(ei_status.interface_num == 0 ? ECNTRL_THIN : ECNTRL_AUI, E33G_CNTRL);
  466. }
  467. static void
  468. el2_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
  469. {
  470.     int boguscount = 0;
  471.     unsigned short int *buf;
  472.     unsigned short word;
  473.     int end_of_ring = dev->rmem_end;
  474.     /* Maybe enable shared memory just be to be safe... nahh.*/
  475.     if (dev->mem_start) { /* Use the shared memory. */
  476. ring_offset -= (EL2_MB1_START_PG<<8);
  477. if (dev->mem_start + ring_offset + count > end_of_ring) {
  478.     /* We must wrap the input move. */
  479.     int semi_count = end_of_ring - (dev->mem_start + ring_offset);
  480.     isa_memcpy_fromio(skb->data, dev->mem_start + ring_offset, semi_count);
  481.     count -= semi_count;
  482.     isa_memcpy_fromio(skb->data + semi_count, dev->rmem_start, count);
  483. } else {
  484. /* Packet is in one chunk -- we can copy + cksum. */
  485. isa_eth_io_copy_and_sum(skb, dev->mem_start + ring_offset, count, 0);
  486. }
  487. return;
  488.     }
  489. /*
  490.  *  No shared memory, use programmed I/O.
  491.  */
  492.     word = (unsigned short) ring_offset;
  493.     outb(word>>8, E33G_DMAAH);
  494.     outb(word&0xFF, E33G_DMAAL);
  495.     outb_p((ei_status.interface_num == 0 ? ECNTRL_THIN : ECNTRL_AUI) | ECNTRL_INPUT
  496.    | ECNTRL_START, E33G_CNTRL);
  497. /*
  498.  *  Here I also try to get data as fast as possible. I am betting that I
  499.  *  can read one extra byte without clobbering anything in the kernel because
  500.  *  this would only occur on an odd byte-count and allocation of skb->data
  501.  *  is word-aligned. Variable 'count' is NOT checked. Caller must check
  502.  *  for a valid count.
  503.  *  [This is currently quite safe.... but if one day the 3c503 explodes
  504.  *   you know where to come looking ;)]
  505.  */
  506.     buf =  (unsigned short int *) skb->data;
  507.     count =  (count + 1) >> 1;
  508.     for(;;)
  509.     {
  510.         boguscount = 0x1000;
  511.         while ((inb(E33G_STATUS) & ESTAT_DPRDY) == 0)
  512.         {
  513.             if(!boguscount--)
  514.             {
  515.                 printk("%s: FIFO blocked in el2_block_input.n", dev->name);
  516.                 el2_reset_8390(dev);
  517.                 goto blocked;
  518.             }
  519.         }
  520.         if(count > WRD_COUNT)
  521.         {
  522.             insw(E33G_FIFOH, buf, WRD_COUNT);
  523.             buf   += WRD_COUNT;
  524.             count -= WRD_COUNT;
  525.         }
  526.         else
  527.         {
  528.             insw(E33G_FIFOH, buf, count);
  529.             break;
  530.         }
  531.     }
  532.     blocked:;
  533.     outb_p(ei_status.interface_num == 0 ? ECNTRL_THIN : ECNTRL_AUI, E33G_CNTRL);
  534.     return;
  535. }
  536. /**
  537.  * netdev_ethtool_ioctl: Handle network interface SIOCETHTOOL ioctls
  538.  * @dev: network interface on which out-of-band action is to be performed
  539.  * @useraddr: userspace address to which data is to be read and returned
  540.  *
  541.  * Process the various commands of the SIOCETHTOOL interface.
  542.  */
  543. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  544. {
  545. u32 ethcmd;
  546. /* dev_ioctl() in ../../net/core/dev.c has already checked
  547.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  548. if (get_user(ethcmd, (u32 *)useraddr))
  549. return -EFAULT;
  550. switch (ethcmd) {
  551. case ETHTOOL_GDRVINFO: {
  552. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  553. strcpy (info.driver, DRV_NAME);
  554. strcpy (info.version, DRV_VERSION);
  555. sprintf(info.bus_info, "ISA 0x%lx", dev->base_addr);
  556. if (copy_to_user (useraddr, &info, sizeof (info)))
  557. return -EFAULT;
  558. return 0;
  559. }
  560. default:
  561. break;
  562. }
  563. return -EOPNOTSUPP;
  564. }
  565. /**
  566.  * netdev_ioctl: Handle network interface ioctls
  567.  * @dev: network interface on which out-of-band action is to be performed
  568.  * @rq: user request data
  569.  * @cmd: command issued by user
  570.  *
  571.  * Process the various out-of-band ioctls passed to this driver.
  572.  */
  573. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  574. {
  575. int rc = 0;
  576. switch (cmd) {
  577. case SIOCETHTOOL:
  578. rc = netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  579. break;
  580. default:
  581. rc = -EOPNOTSUPP;
  582. break;
  583. }
  584. return rc;
  585. }
  586.  
  587. #ifdef MODULE
  588. #define MAX_EL2_CARDS 4 /* Max number of EL2 cards per module */
  589. static struct net_device dev_el2[MAX_EL2_CARDS];
  590. static int io[MAX_EL2_CARDS];
  591. static int irq[MAX_EL2_CARDS];
  592. static int xcvr[MAX_EL2_CARDS]; /* choose int. or ext. xcvr */
  593. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_EL2_CARDS) "i");
  594. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_EL2_CARDS) "i");
  595. MODULE_PARM(xcvr, "1-" __MODULE_STRING(MAX_EL2_CARDS) "i");
  596. MODULE_PARM_DESC(io, "EtherLink II I/O base address(es)");
  597. MODULE_PARM_DESC(irq, "EtherLink II IRQ number(s) (assigned)");
  598. MODULE_PARM_DESC(xcvr, "EtherLink II tranceiver(s) (0=internal, 1=external)");
  599. /* This is set up so that only a single autoprobe takes place per call.
  600. ISA device autoprobes on a running machine are not recommended. */
  601. int
  602. init_module(void)
  603. {
  604. int this_dev, found = 0;
  605. for (this_dev = 0; this_dev < MAX_EL2_CARDS; this_dev++) {
  606. struct net_device *dev = &dev_el2[this_dev];
  607. dev->irq = irq[this_dev];
  608. dev->base_addr = io[this_dev];
  609. dev->mem_end = xcvr[this_dev]; /* low 4bits = xcvr sel. */
  610. dev->init = el2_probe;
  611. if (io[this_dev] == 0)  {
  612. if (this_dev != 0) break; /* only autoprobe 1st one */
  613. printk(KERN_NOTICE "3c503.c: Presently autoprobing (not recommended) for a single card.n");
  614. }
  615. if (register_netdev(dev) != 0) {
  616. printk(KERN_WARNING "3c503.c: No 3c503 card found (i/o = 0x%x).n", io[this_dev]);
  617. if (found != 0) { /* Got at least one. */
  618. return 0;
  619. }
  620. return -ENXIO;
  621. }
  622. found++;
  623. }
  624. return 0;
  625. }
  626. void
  627. cleanup_module(void)
  628. {
  629. int this_dev;
  630. for (this_dev = 0; this_dev < MAX_EL2_CARDS; this_dev++) {
  631. struct net_device *dev = &dev_el2[this_dev];
  632. if (dev->priv != NULL) {
  633. void *priv = dev->priv;
  634. /* NB: el2_close() handles free_irq */
  635. release_region(dev->base_addr, EL2_IO_EXTENT);
  636. unregister_netdev(dev);
  637. kfree(priv);
  638. }
  639. }
  640. }
  641. #endif /* MODULE */
  642. MODULE_LICENSE("GPL");
  643. /*
  644.  * Local variables:
  645.  *  version-control: t
  646.  *  kept-new-versions: 5
  647.  *  c-indent-level: 4
  648.  * End:
  649.  */