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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.    net-3-driver for the 3c523 Etherlink/MC card (i82586 Ethernet chip)
  3.    This is an extension to the Linux operating system, and is covered by the
  4.    same GNU General Public License that covers that work.
  5.    Copyright 1995, 1996 by Chris Beauregard (cpbeaure@undergrad.math.uwaterloo.ca)
  6.    This is basically Michael Hipp's ni52 driver, with a new probing
  7.    algorithm and some minor changes to the 82586 CA and reset routines.
  8.    Thanks a lot Michael for a really clean i82586 implementation!  Unless
  9.    otherwise documented in ni52.c, any bugs are mine.
  10.    Contrary to the Ethernet-HOWTO, this isn't based on the 3c507 driver in
  11.    any way.  The ni52 is a lot easier to modify.
  12.    sources:
  13.    ni52.c
  14.    Crynwr packet driver collection was a great reference for my first
  15.    attempt at this sucker.  The 3c507 driver also helped, until I noticed
  16.    that ni52.c was a lot nicer.
  17.    EtherLink/MC: Micro Channel Ethernet Adapter Technical Reference
  18.    Manual, courtesy of 3Com CardFacts, documents the 3c523-specific
  19.    stuff.  Information on CardFacts is found in the Ethernet HOWTO.
  20.    Also see <a href="http://www.3com.com/">
  21.    Microprocessor Communications Support Chips, T.J. Byers, ISBN
  22.    0-444-01224-9, has a section on the i82586.  It tells you just enough
  23.    to know that you really don't want to learn how to program the chip.
  24.    The original device probe code was stolen from ps2esdi.c
  25.    Known Problems:
  26.    Since most of the code was stolen from ni52.c, you'll run across the
  27.    same bugs in the 0.62 version of ni52.c, plus maybe a few because of
  28.    the 3c523 idiosynchacies.  The 3c523 has 16K of RAM though, so there
  29.    shouldn't be the overrun problem that the 8K ni52 has.
  30.    This driver is for a 16K adapter.  It should work fine on the 64K
  31.    adapters, but it will only use one of the 4 banks of RAM.  Modifying
  32.    this for the 64K version would require a lot of heinous bank
  33.    switching, which I'm sure not interested in doing.  If you try to
  34.    implement a bank switching version, you'll basically have to remember
  35.    what bank is enabled and do a switch everytime you access a memory
  36.    location that's not current.  You'll also have to remap pointers on
  37.    the driver side, because it only knows about 16K of the memory.
  38.    Anyone desperate or masochistic enough to try?
  39.    It seems to be stable now when multiple transmit buffers are used.  I
  40.    can't see any performance difference, but then I'm working on a 386SX.
  41.    Multicast doesn't work.  It doesn't even pretend to work.  Don't use
  42.    it.  Don't compile your kernel with multicast support.  I don't know
  43.    why.
  44.    Features:
  45.    This driver is useable as a loadable module.  If you try to specify an
  46.    IRQ or a IO address (via insmod 3c523.o irq=xx io=0xyyy), it will
  47.    search the MCA slots until it finds a 3c523 with the specified
  48.    parameters.
  49.    This driver does support multiple ethernet cards when used as a module
  50.    (up to MAX_3C523_CARDS, the default being 4)
  51.    This has been tested with both BNC and TP versions, internal and
  52.    external transceivers.  Haven't tested with the 64K version (that I
  53.    know of).
  54.    History:
  55.    Jan 1st, 1996
  56.    first public release
  57.    Feb 4th, 1996
  58.    update to 1.3.59, incorporated multicast diffs from ni52.c
  59.    Feb 15th, 1996
  60.    added shared irq support
  61.    Apr 1999
  62.    added support for multiple cards when used as a module
  63.    added option to disable multicast as is causes problems
  64.        Ganesh Sittampalam <ganesh.sittampalam@magdalen.oxford.ac.uk>
  65.        Stuart Adamson <stuart.adamson@compsoc.net>
  66.    Nov 2001
  67.    added support for ethtool (jgarzik)
  68.    $Header: /fsys2/home/chrisb/linux-1.3.59-MCA/drivers/net/RCS/3c523.c,v 1.1 1996/02/05 01:53:46 chrisb Exp chrisb $
  69.  */
  70. #define DRV_NAME "3c523"
  71. #define DRV_VERSION "17-Nov-2001"
  72. #include <linux/module.h>
  73. #include <linux/kernel.h>
  74. #include <linux/sched.h>
  75. #include <linux/string.h>
  76. #include <linux/errno.h>
  77. #include <linux/ioport.h>
  78. #include <linux/slab.h>
  79. #include <linux/interrupt.h>
  80. #include <linux/delay.h>
  81. #include <linux/mca.h>
  82. #include <linux/ethtool.h>
  83. #include <asm/uaccess.h>
  84. #include <asm/processor.h>
  85. #include <asm/bitops.h>
  86. #include <asm/io.h>
  87. #include <linux/netdevice.h>
  88. #include <linux/etherdevice.h>
  89. #include <linux/skbuff.h>
  90. #include <linux/init.h>
  91. #include "3c523.h"
  92. /*************************************************************************/
  93. #define DEBUG /* debug on */
  94. #define SYSBUSVAL 0 /* 1 = 8 Bit, 0 = 16 bit - 3c523 only does 16 bit */
  95. #undef ELMC_MULTICAST /* Disable multicast support as it is somewhat seriously broken at the moment */
  96. #define make32(ptr16) (p->memtop + (short) (ptr16) )
  97. #define make24(ptr32) ((char *) (ptr32) - p->base)
  98. #define make16(ptr32) ((unsigned short) ((unsigned long) (ptr32) - (unsigned long) p->memtop ))
  99. /*************************************************************************/
  100. /*
  101.    Tables to which we can map values in the configuration registers.
  102.  */
  103. static int irq_table[] __initdata = {
  104. 12, 7, 3, 9
  105. };
  106. static int csr_table[] __initdata = {
  107. 0x300, 0x1300, 0x2300, 0x3300
  108. };
  109. static int shm_table[] __initdata = {
  110. 0x0c0000, 0x0c8000, 0x0d0000, 0x0d8000
  111. };
  112. /******************* how to calculate the buffers *****************************
  113.   * IMPORTANT NOTE: if you configure only one NUM_XMIT_BUFFS, the driver works
  114.   * --------------- in a different (more stable?) mode. Only in this mode it's
  115.   *                 possible to configure the driver with 'NO_NOPCOMMANDS'
  116. sizeof(scp)=12; sizeof(scb)=16; sizeof(iscp)=8;
  117. sizeof(scp)+sizeof(iscp)+sizeof(scb) = 36 = INIT
  118. sizeof(rfd) = 24; sizeof(rbd) = 12;
  119. sizeof(tbd) = 8; sizeof(transmit_cmd) = 16;
  120. sizeof(nop_cmd) = 8;
  121.   * if you don't know the driver, better do not change this values: */
  122. #define RECV_BUFF_SIZE 1524 /* slightly oversized */
  123. #define XMIT_BUFF_SIZE 1524 /* slightly oversized */
  124. #define NUM_XMIT_BUFFS 1 /* config for both, 8K and 16K shmem */
  125. #define NUM_RECV_BUFFS_8  4 /* config for 8K shared mem */
  126. #define NUM_RECV_BUFFS_16 9 /* config for 16K shared mem */
  127. #if (NUM_XMIT_BUFFS == 1)
  128. #define NO_NOPCOMMANDS /* only possible with NUM_XMIT_BUFFS=1 */
  129. #endif
  130. /**************************************************************************/
  131. #define DELAY(x) { mdelay(32 * x); }
  132. /* a much shorter delay: */
  133. #define DELAY_16(); { udelay(16) ; }
  134. /* wait for command with timeout: */
  135. #define WAIT_4_SCB_CMD() { int i; 
  136.   for(i=0;i<1024;i++) { 
  137.     if(!p->scb->cmd) break; 
  138.     DELAY_16(); 
  139.     if(i == 1023) { 
  140.       printk(KERN_WARNING "%s:%d: scb_cmd timed out .. resetting i82586n",
  141.        dev->name,__LINE__); 
  142.       elmc_id_reset586(); } } }
  143. static void elmc_interrupt(int irq, void *dev_id, struct pt_regs *reg_ptr);
  144. static int elmc_open(struct net_device *dev);
  145. static int elmc_close(struct net_device *dev);
  146. static int elmc_send_packet(struct sk_buff *, struct net_device *);
  147. static struct net_device_stats *elmc_get_stats(struct net_device *dev);
  148. static void elmc_timeout(struct net_device *dev);
  149. #ifdef ELMC_MULTICAST
  150. static void set_multicast_list(struct net_device *dev);
  151. #endif
  152. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  153. /* helper-functions */
  154. static int init586(struct net_device *dev);
  155. static int check586(struct net_device *dev, unsigned long where, unsigned size);
  156. static void alloc586(struct net_device *dev);
  157. static void startrecv586(struct net_device *dev);
  158. static void *alloc_rfa(struct net_device *dev, void *ptr);
  159. static void elmc_rcv_int(struct net_device *dev);
  160. static void elmc_xmt_int(struct net_device *dev);
  161. static void elmc_rnr_int(struct net_device *dev);
  162. struct priv {
  163. struct net_device_stats stats;
  164. unsigned long base;
  165. char *memtop;
  166. unsigned long mapped_start; /* Start of ioremap */
  167. volatile struct rfd_struct *rfd_last, *rfd_top, *rfd_first;
  168. volatile struct scp_struct *scp; /* volatile is important */
  169. volatile struct iscp_struct *iscp; /* volatile is important */
  170. volatile struct scb_struct *scb; /* volatile is important */
  171. volatile struct tbd_struct *xmit_buffs[NUM_XMIT_BUFFS];
  172. volatile struct transmit_cmd_struct *xmit_cmds[NUM_XMIT_BUFFS];
  173. #if (NUM_XMIT_BUFFS == 1)
  174. volatile struct nop_cmd_struct *nop_cmds[2];
  175. #else
  176. volatile struct nop_cmd_struct *nop_cmds[NUM_XMIT_BUFFS];
  177. #endif
  178. volatile int nop_point, num_recv_buffs;
  179. volatile char *xmit_cbuffs[NUM_XMIT_BUFFS];
  180. volatile int xmit_count, xmit_last;
  181. volatile int slot;
  182. };
  183. #define elmc_attn586()  {elmc_do_attn586(dev->base_addr,ELMC_CTRL_INTE);}
  184. #define elmc_reset586() {elmc_do_reset586(dev->base_addr,ELMC_CTRL_INTE);}
  185. /* with interrupts disabled - this will clear the interrupt bit in the
  186.    3c523 control register, and won't put it back.  This effectively
  187.    disables interrupts on the card. */
  188. #define elmc_id_attn586()  {elmc_do_attn586(dev->base_addr,0);}
  189. #define elmc_id_reset586() {elmc_do_reset586(dev->base_addr,0);}
  190. /*************************************************************************/
  191. /*
  192.    Do a Channel Attention on the 3c523.  This is extremely board dependent.
  193.  */
  194. static void elmc_do_attn586(int ioaddr, int ints)
  195. {
  196. /* the 3c523 requires a minimum of 500 ns.  The delays here might be
  197.    a little too large, and hence they may cut the performance of the
  198.    card slightly.  If someone who knows a little more about Linux
  199.    timing would care to play with these, I'd appreciate it. */
  200. /* this bit masking stuff is crap.  I'd rather have separate
  201.    registers with strobe triggers for each of these functions.  <sigh>
  202.    Ya take what ya got. */
  203. outb(ELMC_CTRL_RST | 0x3 | ELMC_CTRL_CA | ints, ioaddr + ELMC_CTRL);
  204. DELAY_16(); /* > 500 ns */
  205. outb(ELMC_CTRL_RST | 0x3 | ints, ioaddr + ELMC_CTRL);
  206. }
  207. /*************************************************************************/
  208. /*
  209.    Reset the 82586 on the 3c523.  Also very board dependent.
  210.  */
  211. static void elmc_do_reset586(int ioaddr, int ints)
  212. {
  213. /* toggle the RST bit low then high */
  214. outb(0x3 | ELMC_CTRL_LBK, ioaddr + ELMC_CTRL);
  215. DELAY_16(); /* > 500 ns */
  216. outb(ELMC_CTRL_RST | ELMC_CTRL_LBK | 0x3, ioaddr + ELMC_CTRL);
  217. elmc_do_attn586(ioaddr, ints);
  218. }
  219. /**********************************************
  220.  * close device
  221.  */
  222. static int elmc_close(struct net_device *dev)
  223. {
  224. netif_stop_queue(dev);
  225. elmc_id_reset586(); /* the hard way to stop the receiver */
  226. free_irq(dev->irq, dev);
  227. return 0;
  228. }
  229. /**********************************************
  230.  * open device
  231.  */
  232. static int elmc_open(struct net_device *dev)
  233. {
  234. int ret;
  235. elmc_id_attn586(); /* disable interrupts */
  236. ret = request_irq(dev->irq, &elmc_interrupt, SA_SHIRQ | SA_SAMPLE_RANDOM,
  237.   dev->name, dev);
  238. if (ret) {
  239. printk(KERN_ERR "%s: couldn't get irq %dn", dev->name, dev->irq);
  240. elmc_id_reset586();
  241. return ret;
  242. }
  243. alloc586(dev);
  244. init586(dev);
  245. startrecv586(dev);
  246. netif_start_queue(dev);
  247. return 0; /* most done by init */
  248. }
  249. /**********************************************
  250.  * Check to see if there's an 82586 out there.
  251.  */
  252. static int __init check586(struct net_device *dev, unsigned long where, unsigned size)
  253. {
  254. struct priv *p = (struct priv *) dev->priv;
  255. char *iscp_addrs[2];
  256. int i = 0;
  257. p->base = (unsigned long) bus_to_virt((unsigned long)where) + size - 0x01000000;
  258. p->memtop = bus_to_virt((unsigned long)where) + size;
  259. p->scp = (struct scp_struct *)(p->base + SCP_DEFAULT_ADDRESS);
  260. memset((char *) p->scp, 0, sizeof(struct scp_struct));
  261. p->scp->sysbus = SYSBUSVAL; /* 1 = 8Bit-Bus, 0 = 16 Bit */
  262. iscp_addrs[0] = bus_to_virt((unsigned long)where);
  263. iscp_addrs[1] = (char *) p->scp - sizeof(struct iscp_struct);
  264. for (i = 0; i < 2; i++) {
  265. p->iscp = (struct iscp_struct *) iscp_addrs[i];
  266. memset((char *) p->iscp, 0, sizeof(struct iscp_struct));
  267. p->scp->iscp = make24(p->iscp);
  268. p->iscp->busy = 1;
  269. elmc_id_reset586();
  270. /* reset586 does an implicit CA */
  271. /* apparently, you sometimes have to kick the 82586 twice... */
  272. elmc_id_attn586();
  273. DELAY(1);
  274. if (p->iscp->busy) { /* i82586 clears 'busy' after successful init */
  275. return 0;
  276. }
  277. }
  278. return 1;
  279. }
  280. /******************************************************************
  281.  * set iscp at the right place, called by elmc_probe and open586.
  282.  */
  283. void alloc586(struct net_device *dev)
  284. {
  285. struct priv *p = (struct priv *) dev->priv;
  286. elmc_id_reset586();
  287. DELAY(2);
  288. p->scp = (struct scp_struct *) (p->base + SCP_DEFAULT_ADDRESS);
  289. p->scb = (struct scb_struct *) bus_to_virt(dev->mem_start);
  290. p->iscp = (struct iscp_struct *) ((char *) p->scp - sizeof(struct iscp_struct));
  291. memset((char *) p->iscp, 0, sizeof(struct iscp_struct));
  292. memset((char *) p->scp, 0, sizeof(struct scp_struct));
  293. p->scp->iscp = make24(p->iscp);
  294. p->scp->sysbus = SYSBUSVAL;
  295. p->iscp->scb_offset = make16(p->scb);
  296. p->iscp->busy = 1;
  297. elmc_id_reset586();
  298. elmc_id_attn586();
  299. DELAY(2);
  300. if (p->iscp->busy) {
  301. printk(KERN_ERR "%s: Init-Problems (alloc).n", dev->name);
  302. }
  303. memset((char *) p->scb, 0, sizeof(struct scb_struct));
  304. }
  305. /*****************************************************************/
  306. static int elmc_getinfo(char *buf, int slot, void *d)
  307. {
  308. int len = 0;
  309. struct net_device *dev = (struct net_device *) d;
  310. int i;
  311. if (dev == NULL)
  312. return len;
  313. len += sprintf(buf + len, "Revision: 0x%xn",
  314.        inb(dev->base_addr + ELMC_REVISION) & 0xf);
  315. len += sprintf(buf + len, "IRQ: %dn", dev->irq);
  316. len += sprintf(buf + len, "IO Address: %#lx-%#lxn", dev->base_addr,
  317.        dev->base_addr + ELMC_IO_EXTENT);
  318. len += sprintf(buf + len, "Memory: %#lx-%#lxn", dev->mem_start,
  319.        dev->mem_end - 1);
  320. len += sprintf(buf + len, "Transceiver: %sn", dev->if_port ?
  321.        "External" : "Internal");
  322. len += sprintf(buf + len, "Device: %sn", dev->name);
  323. len += sprintf(buf + len, "Hardware Address:");
  324. for (i = 0; i < 6; i++) {
  325. len += sprintf(buf + len, " %02x", dev->dev_addr[i]);
  326. }
  327. buf[len++] = 'n';
  328. buf[len] = 0;
  329. return len;
  330. } /* elmc_getinfo() */
  331. /*****************************************************************/
  332. int __init elmc_probe(struct net_device *dev)
  333. {
  334. static int slot;
  335. int base_addr = dev->base_addr;
  336. int irq = dev->irq;
  337. u_char status = 0;
  338. u_char revision = 0;
  339. int i = 0;
  340. unsigned int size = 0;
  341. int retval;
  342. struct priv *pr;
  343. SET_MODULE_OWNER(dev);
  344. if (MCA_bus == 0) {
  345. return -ENODEV;
  346. }
  347. /* search through the slots for the 3c523. */
  348. slot = mca_find_adapter(ELMC_MCA_ID, 0);
  349. while (slot != -1) {
  350. status = mca_read_stored_pos(slot, 2);
  351. dev->irq=irq_table[(status & ELMC_STATUS_IRQ_SELECT) >> 6];
  352. dev->base_addr=csr_table[(status & ELMC_STATUS_CSR_SELECT) >> 1];
  353. /*
  354.    If we're trying to match a specified irq or IO address,
  355.    we'll reject a match unless it's what we're looking for.
  356.    Also reject it if the card is already in use.
  357.  */
  358. if ((irq && irq != dev->irq) || 
  359.     (base_addr && base_addr != dev->base_addr)) {
  360. slot = mca_find_adapter(ELMC_MCA_ID, slot + 1);
  361. continue;
  362. }
  363. if (!request_region(dev->base_addr, ELMC_IO_EXTENT, dev->name)) {
  364. slot = mca_find_adapter(ELMC_MCA_ID, slot + 1);
  365. continue;
  366. }
  367. /* found what we're looking for... */
  368. break;
  369. }
  370. /* we didn't find any 3c523 in the slots we checked for */
  371. if (slot == MCA_NOTFOUND) {
  372. retval = ((base_addr || irq) ? -ENXIO : -ENODEV);
  373. goto err_out;
  374. }
  375. mca_set_adapter_name(slot, "3Com 3c523 Etherlink/MC");
  376. mca_set_adapter_procfn(slot, (MCA_ProcFn) elmc_getinfo, dev);
  377. /* if we get this far, adapter has been found - carry on */
  378. printk(KERN_INFO "%s: 3c523 adapter found in slot %dn", dev->name, slot + 1);
  379. /* Now we extract configuration info from the card.
  380.    The 3c523 provides information in two of the POS registers, but
  381.    the second one is only needed if we want to tell the card what IRQ
  382.    to use.  I suspect that whoever sets the thing up initially would
  383.    prefer we don't screw with those things.
  384.    Note that we read the status info when we found the card...
  385.    See 3c523.h for more details.
  386.  */
  387. /* revision is stored in the first 4 bits of the revision register */
  388. revision = inb(dev->base_addr + ELMC_REVISION) & 0xf;
  389. /* according to docs, we read the interrupt and write it back to
  390.    the IRQ select register, since the POST might not configure the IRQ
  391.    properly. */
  392. switch (dev->irq) {
  393. case 3:
  394. mca_write_pos(slot, 3, 0x04);
  395. break;
  396. case 7:
  397. mca_write_pos(slot, 3, 0x02);
  398. break;
  399. case 9:
  400. mca_write_pos(slot, 3, 0x08);
  401. break;
  402. case 12:
  403. mca_write_pos(slot, 3, 0x01);
  404. break;
  405. }
  406. pr = dev->priv = kmalloc(sizeof(struct priv), GFP_KERNEL);
  407. if (dev->priv == NULL) {
  408. retval = -ENOMEM;
  409. goto err_out;
  410. }
  411. memset(pr, 0, sizeof(struct priv));
  412. pr->slot = slot;
  413. printk(KERN_INFO "%s: 3Com 3c523 Rev 0x%x at %#lxn", dev->name, (int) revision,
  414.        dev->base_addr);
  415. /* Determine if we're using the on-board transceiver (i.e. coax) or
  416.    an external one.  The information is pretty much useless, but I
  417.    guess it's worth brownie points. */
  418. dev->if_port = (status & ELMC_STATUS_DISABLE_THIN);
  419. /* The 3c523 has a 24K chunk of memory.  The first 16K is the
  420.    shared memory, while the last 8K is for the EtherStart BIOS ROM.
  421.    Which we don't care much about here.  We'll just tell Linux that
  422.    we're using 16K.  MCA won't permit address space conflicts caused
  423.    by not mapping the other 8K. */
  424. dev->mem_start = shm_table[(status & ELMC_STATUS_MEMORY_SELECT) >> 3];
  425. /* We're using MCA, so it's a given that the information about memory
  426.    size is correct.  The Crynwr drivers do something like this. */
  427. elmc_id_reset586(); /* seems like a good idea before checking it... */
  428. size = 0x4000; /* check for 16K mem */
  429. if (!check586(dev, dev->mem_start, size)) {
  430. printk(KERN_ERR "%s: memprobe, Can't find memory at 0x%lx!n", dev->name,
  431.        dev->mem_start);
  432. kfree(dev->priv);
  433. dev->priv = NULL;
  434. retval = -ENODEV;
  435. goto err_out;
  436. }
  437. dev->mem_end = dev->mem_start + size; /* set mem_end showed by 'ifconfig' */
  438. pr->memtop = bus_to_virt(dev->mem_start) + size;
  439. pr->base = (unsigned long) bus_to_virt(dev->mem_start) + size - 0x01000000;
  440. alloc586(dev);
  441. elmc_id_reset586(); /* make sure it doesn't generate spurious ints */
  442. /* set number of receive-buffs according to memsize */
  443. pr->num_recv_buffs = NUM_RECV_BUFFS_16;
  444. /* dump all the assorted information */
  445. printk(KERN_INFO "%s: IRQ %d, %sternal xcvr, memory %#lx-%#lx.n", dev->name,
  446.        dev->irq, dev->if_port ? "ex" : "in", 
  447.        dev->mem_start, dev->mem_end - 1);
  448. /* The hardware address for the 3c523 is stored in the first six
  449.    bytes of the IO address. */
  450. printk(KERN_INFO "%s: hardware address ", dev->name);
  451. for (i = 0; i < 6; i++) {
  452. dev->dev_addr[i] = inb(dev->base_addr + i);
  453. printk(" %02x", dev->dev_addr[i]);
  454. }
  455. printk("n");
  456. dev->open = &elmc_open;
  457. dev->stop = &elmc_close;
  458. dev->get_stats = &elmc_get_stats;
  459. dev->hard_start_xmit = &elmc_send_packet;
  460. dev->tx_timeout = &elmc_timeout;
  461. dev->watchdog_timeo = HZ;
  462. #ifdef ELMC_MULTICAST
  463. dev->set_multicast_list = &set_multicast_list;
  464. #else
  465. dev->set_multicast_list = NULL;
  466. #endif
  467. dev->do_ioctl = netdev_ioctl;
  468. ether_setup(dev);
  469. /* note that we haven't actually requested the IRQ from the kernel.
  470.    That gets done in elmc_open().  I'm not sure that's such a good idea,
  471.    but it works, so I'll go with it. */
  472. #ifndef ELMC_MULTICAST
  473.         dev->flags&=~IFF_MULTICAST;     /* Multicast doesn't work */
  474. #endif
  475. return 0;
  476. err_out:
  477. release_region(dev->base_addr, ELMC_IO_EXTENT);
  478. return retval;
  479. }
  480. /**********************************************
  481.  * init the chip (elmc-interrupt should be disabled?!)
  482.  * needs a correct 'allocated' memory
  483.  */
  484. static int init586(struct net_device *dev)
  485. {
  486. void *ptr;
  487. unsigned long s;
  488. int i, result = 0;
  489. struct priv *p = (struct priv *) dev->priv;
  490. volatile struct configure_cmd_struct *cfg_cmd;
  491. volatile struct iasetup_cmd_struct *ias_cmd;
  492. volatile struct tdr_cmd_struct *tdr_cmd;
  493. volatile struct mcsetup_cmd_struct *mc_cmd;
  494. struct dev_mc_list *dmi = dev->mc_list;
  495. int num_addrs = dev->mc_count;
  496. ptr = (void *) ((char *) p->scb + sizeof(struct scb_struct));
  497. cfg_cmd = (struct configure_cmd_struct *) ptr; /* configure-command */
  498. cfg_cmd->cmd_status = 0;
  499. cfg_cmd->cmd_cmd = CMD_CONFIGURE | CMD_LAST;
  500. cfg_cmd->cmd_link = 0xffff;
  501. cfg_cmd->byte_cnt = 0x0a; /* number of cfg bytes */
  502. cfg_cmd->fifo = 0x08; /* fifo-limit (8=tx:32/rx:64) */
  503. cfg_cmd->sav_bf = 0x40; /* hold or discard bad recv frames (bit 7) */
  504. cfg_cmd->adr_len = 0x2e; /* addr_len |!src_insert |pre-len |loopback */
  505. cfg_cmd->priority = 0x00;
  506. cfg_cmd->ifs = 0x60;
  507. cfg_cmd->time_low = 0x00;
  508. cfg_cmd->time_high = 0xf2;
  509. cfg_cmd->promisc = 0;
  510. if (dev->flags & (IFF_ALLMULTI | IFF_PROMISC)) {
  511. cfg_cmd->promisc = 1;
  512. dev->flags |= IFF_PROMISC;
  513. }
  514. cfg_cmd->carr_coll = 0x00;
  515. p->scb->cbl_offset = make16(cfg_cmd);
  516. p->scb->cmd = CUC_START; /* cmd.-unit start */
  517. elmc_id_attn586();
  518. s = jiffies; /* warning: only active with interrupts on !! */
  519. while (!(cfg_cmd->cmd_status & STAT_COMPL)) {
  520. if (jiffies - s > 30*HZ/100)
  521. break;
  522. }
  523. if ((cfg_cmd->cmd_status & (STAT_OK | STAT_COMPL)) != (STAT_COMPL | STAT_OK)) {
  524. printk(KERN_WARNING "%s (elmc): configure command failed: %xn", dev->name, cfg_cmd->cmd_status);
  525. return 1;
  526. }
  527. /*
  528.  * individual address setup
  529.  */
  530. ias_cmd = (struct iasetup_cmd_struct *) ptr;
  531. ias_cmd->cmd_status = 0;
  532. ias_cmd->cmd_cmd = CMD_IASETUP | CMD_LAST;
  533. ias_cmd->cmd_link = 0xffff;
  534. memcpy((char *) &ias_cmd->iaddr, (char *) dev->dev_addr, ETH_ALEN);
  535. p->scb->cbl_offset = make16(ias_cmd);
  536. p->scb->cmd = CUC_START; /* cmd.-unit start */
  537. elmc_id_attn586();
  538. s = jiffies;
  539. while (!(ias_cmd->cmd_status & STAT_COMPL)) {
  540. if (jiffies - s > 30*HZ/100)
  541. break;
  542. }
  543. if ((ias_cmd->cmd_status & (STAT_OK | STAT_COMPL)) != (STAT_OK | STAT_COMPL)) {
  544. printk(KERN_WARNING "%s (elmc): individual address setup command failed: %04xn", dev->name, ias_cmd->cmd_status);
  545. return 1;
  546. }
  547. /*
  548.  * TDR, wire check .. e.g. no resistor e.t.c
  549.  */
  550. tdr_cmd = (struct tdr_cmd_struct *) ptr;
  551. tdr_cmd->cmd_status = 0;
  552. tdr_cmd->cmd_cmd = CMD_TDR | CMD_LAST;
  553. tdr_cmd->cmd_link = 0xffff;
  554. tdr_cmd->status = 0;
  555. p->scb->cbl_offset = make16(tdr_cmd);
  556. p->scb->cmd = CUC_START; /* cmd.-unit start */
  557. elmc_attn586();
  558. s = jiffies;
  559. while (!(tdr_cmd->cmd_status & STAT_COMPL)) {
  560. if (jiffies - s > 30*HZ/100) {
  561. printk(KERN_WARNING "%s: %d Problems while running the TDR.n", dev->name, __LINE__);
  562. result = 1;
  563. break;
  564. }
  565. }
  566. if (!result) {
  567. DELAY(2); /* wait for result */
  568. result = tdr_cmd->status;
  569. p->scb->cmd = p->scb->status & STAT_MASK;
  570. elmc_id_attn586(); /* ack the interrupts */
  571. if (result & TDR_LNK_OK) {
  572. /* empty */
  573. } else if (result & TDR_XCVR_PRB) {
  574. printk(KERN_WARNING "%s: TDR: Transceiver problem!n", dev->name);
  575. } else if (result & TDR_ET_OPN) {
  576. printk(KERN_WARNING "%s: TDR: No correct termination %d clocks away.n", dev->name, result & TDR_TIMEMASK);
  577. } else if (result & TDR_ET_SRT) {
  578. if (result & TDR_TIMEMASK) /* time == 0 -> strange :-) */
  579. printk(KERN_WARNING "%s: TDR: Detected a short circuit %d clocks away.n", dev->name, result & TDR_TIMEMASK);
  580. } else {
  581. printk(KERN_WARNING "%s: TDR: Unknown status %04xn", dev->name, result);
  582. }
  583. }
  584. /*
  585.  * ack interrupts
  586.  */
  587. p->scb->cmd = p->scb->status & STAT_MASK;
  588. elmc_id_attn586();
  589. /*
  590.  * alloc nop/xmit-cmds
  591.  */
  592. #if (NUM_XMIT_BUFFS == 1)
  593. for (i = 0; i < 2; i++) {
  594. p->nop_cmds[i] = (struct nop_cmd_struct *) ptr;
  595. p->nop_cmds[i]->cmd_cmd = CMD_NOP;
  596. p->nop_cmds[i]->cmd_status = 0;
  597. p->nop_cmds[i]->cmd_link = make16((p->nop_cmds[i]));
  598. ptr = (char *) ptr + sizeof(struct nop_cmd_struct);
  599. }
  600. p->xmit_cmds[0] = (struct transmit_cmd_struct *) ptr; /* transmit cmd/buff 0 */
  601. ptr = (char *) ptr + sizeof(struct transmit_cmd_struct);
  602. #else
  603. for (i = 0; i < NUM_XMIT_BUFFS; i++) {
  604. p->nop_cmds[i] = (struct nop_cmd_struct *) ptr;
  605. p->nop_cmds[i]->cmd_cmd = CMD_NOP;
  606. p->nop_cmds[i]->cmd_status = 0;
  607. p->nop_cmds[i]->cmd_link = make16((p->nop_cmds[i]));
  608. ptr = (char *) ptr + sizeof(struct nop_cmd_struct);
  609. p->xmit_cmds[i] = (struct transmit_cmd_struct *) ptr; /*transmit cmd/buff 0 */
  610. ptr = (char *) ptr + sizeof(struct transmit_cmd_struct);
  611. }
  612. #endif
  613. ptr = alloc_rfa(dev, (void *) ptr); /* init receive-frame-area */
  614. /*
  615.  * Multicast setup
  616.  */
  617. if (dev->mc_count) {
  618. /* I don't understand this: do we really need memory after the init? */
  619. int len = ((char *) p->iscp - (char *) ptr - 8) / 6;
  620. if (len <= 0) {
  621. printk(KERN_ERR "%s: Ooooops, no memory for MC-Setup!n", dev->name);
  622. } else {
  623. if (len < num_addrs) {
  624. num_addrs = len;
  625. printk(KERN_WARNING "%s: Sorry, can only apply %d MC-Address(es).n",
  626.        dev->name, num_addrs);
  627. }
  628. mc_cmd = (struct mcsetup_cmd_struct *) ptr;
  629. mc_cmd->cmd_status = 0;
  630. mc_cmd->cmd_cmd = CMD_MCSETUP | CMD_LAST;
  631. mc_cmd->cmd_link = 0xffff;
  632. mc_cmd->mc_cnt = num_addrs * 6;
  633. for (i = 0; i < num_addrs; i++) {
  634. memcpy((char *) mc_cmd->mc_list[i], dmi->dmi_addr, 6);
  635. dmi = dmi->next;
  636. }
  637. p->scb->cbl_offset = make16(mc_cmd);
  638. p->scb->cmd = CUC_START;
  639. elmc_id_attn586();
  640. s = jiffies;
  641. while (!(mc_cmd->cmd_status & STAT_COMPL)) {
  642. if (jiffies - s > 30*HZ/100)
  643. break;
  644. }
  645. if (!(mc_cmd->cmd_status & STAT_COMPL)) {
  646. printk(KERN_WARNING "%s: Can't apply multicast-address-list.n", dev->name);
  647. }
  648. }
  649. }
  650. /*
  651.  * alloc xmit-buffs / init xmit_cmds
  652.  */
  653. for (i = 0; i < NUM_XMIT_BUFFS; i++) {
  654. p->xmit_cbuffs[i] = (char *) ptr; /* char-buffs */
  655. ptr = (char *) ptr + XMIT_BUFF_SIZE;
  656. p->xmit_buffs[i] = (struct tbd_struct *) ptr; /* TBD */
  657. ptr = (char *) ptr + sizeof(struct tbd_struct);
  658. if ((void *) ptr > (void *) p->iscp) {
  659. printk(KERN_ERR "%s: not enough shared-mem for your configuration!n", dev->name);
  660. return 1;
  661. }
  662. memset((char *) (p->xmit_cmds[i]), 0, sizeof(struct transmit_cmd_struct));
  663. memset((char *) (p->xmit_buffs[i]), 0, sizeof(struct tbd_struct));
  664. p->xmit_cmds[i]->cmd_status = STAT_COMPL;
  665. p->xmit_cmds[i]->cmd_cmd = CMD_XMIT | CMD_INT;
  666. p->xmit_cmds[i]->tbd_offset = make16((p->xmit_buffs[i]));
  667. p->xmit_buffs[i]->next = 0xffff;
  668. p->xmit_buffs[i]->buffer = make24((p->xmit_cbuffs[i]));
  669. }
  670. p->xmit_count = 0;
  671. p->xmit_last = 0;
  672. #ifndef NO_NOPCOMMANDS
  673. p->nop_point = 0;
  674. #endif
  675. /*
  676.  * 'start transmitter' (nop-loop)
  677.  */
  678. #ifndef NO_NOPCOMMANDS
  679. p->scb->cbl_offset = make16(p->nop_cmds[0]);
  680. p->scb->cmd = CUC_START;
  681. elmc_id_attn586();
  682. WAIT_4_SCB_CMD();
  683. #else
  684. p->xmit_cmds[0]->cmd_link = 0xffff;
  685. p->xmit_cmds[0]->cmd_cmd = CMD_XMIT | CMD_LAST | CMD_INT;
  686. #endif
  687. return 0;
  688. }
  689. /******************************************************
  690.  * This is a helper routine for elmc_rnr_int() and init586().
  691.  * It sets up the Receive Frame Area (RFA).
  692.  */
  693. static void *alloc_rfa(struct net_device *dev, void *ptr)
  694. {
  695. volatile struct rfd_struct *rfd = (struct rfd_struct *) ptr;
  696. volatile struct rbd_struct *rbd;
  697. int i;
  698. struct priv *p = (struct priv *) dev->priv;
  699. memset((char *) rfd, 0, sizeof(struct rfd_struct) * p->num_recv_buffs);
  700. p->rfd_first = rfd;
  701. for (i = 0; i < p->num_recv_buffs; i++) {
  702. rfd[i].next = make16(rfd + (i + 1) % p->num_recv_buffs);
  703. }
  704. rfd[p->num_recv_buffs - 1].last = RFD_SUSP; /* RU suspend */
  705. ptr = (void *) (rfd + p->num_recv_buffs);
  706. rbd = (struct rbd_struct *) ptr;
  707. ptr = (void *) (rbd + p->num_recv_buffs);
  708. /* clr descriptors */
  709. memset((char *) rbd, 0, sizeof(struct rbd_struct) * p->num_recv_buffs);
  710. for (i = 0; i < p->num_recv_buffs; i++) {
  711. rbd[i].next = make16((rbd + (i + 1) % p->num_recv_buffs));
  712. rbd[i].size = RECV_BUFF_SIZE;
  713. rbd[i].buffer = make24(ptr);
  714. ptr = (char *) ptr + RECV_BUFF_SIZE;
  715. }
  716. p->rfd_top = p->rfd_first;
  717. p->rfd_last = p->rfd_first + p->num_recv_buffs - 1;
  718. p->scb->rfa_offset = make16(p->rfd_first);
  719. p->rfd_first->rbd_offset = make16(rbd);
  720. return ptr;
  721. }
  722. /**************************************************
  723.  * Interrupt Handler ...
  724.  */
  725. static void elmc_interrupt(int irq, void *dev_id, struct pt_regs *reg_ptr)
  726. {
  727. struct net_device *dev = (struct net_device *) dev_id;
  728. unsigned short stat;
  729. struct priv *p;
  730. if (dev == NULL) {
  731. printk(KERN_ERR "elmc-interrupt: irq %d for unknown device.n", (int) -(((struct pt_regs *) reg_ptr)->orig_eax + 2));
  732. return;
  733. } else if (!netif_running(dev)) {
  734. /* The 3c523 has this habit of generating interrupts during the
  735.    reset.  I'm not sure if the ni52 has this same problem, but it's
  736.    really annoying if we haven't finished initializing it.  I was
  737.    hoping all the elmc_id_* commands would disable this, but I
  738.    might have missed a few. */
  739. elmc_id_attn586(); /* ack inter. and disable any more */
  740. return;
  741. } else if (!(ELMC_CTRL_INT & inb(dev->base_addr + ELMC_CTRL))) {
  742. /* wasn't this device */
  743. return;
  744. }
  745. /* reading ELMC_CTRL also clears the INT bit. */
  746. p = (struct priv *) dev->priv;
  747. while ((stat = p->scb->status & STAT_MASK)) 
  748. {
  749. p->scb->cmd = stat;
  750. elmc_attn586(); /* ack inter. */
  751. if (stat & STAT_CX) {
  752. /* command with I-bit set complete */
  753. elmc_xmt_int(dev);
  754. }
  755. if (stat & STAT_FR) {
  756. /* received a frame */
  757. elmc_rcv_int(dev);
  758. }
  759. #ifndef NO_NOPCOMMANDS
  760. if (stat & STAT_CNA) {
  761. /* CU went 'not ready' */
  762. if (netif_running(dev)) {
  763. printk(KERN_WARNING "%s: oops! CU has left active state. stat: %04x/%04x.n", dev->name, (int) stat, (int) p->scb->status);
  764. }
  765. }
  766. #endif
  767. if (stat & STAT_RNR) {
  768. /* RU went 'not ready' */
  769. if (p->scb->status & RU_SUSPEND) {
  770. /* special case: RU_SUSPEND */
  771. WAIT_4_SCB_CMD();
  772. p->scb->cmd = RUC_RESUME;
  773. elmc_attn586();
  774. } else {
  775. printk(KERN_WARNING "%s: Receiver-Unit went 'NOT READY': %04x/%04x.n", dev->name, (int) stat, (int) p->scb->status);
  776. elmc_rnr_int(dev);
  777. }
  778. }
  779. WAIT_4_SCB_CMD(); /* wait for ack. (elmc_xmt_int can be faster than ack!!) */
  780. if (p->scb->cmd) { /* timed out? */
  781. break;
  782. }
  783. }
  784. }
  785. /*******************************************************
  786.  * receive-interrupt
  787.  */
  788. static void elmc_rcv_int(struct net_device *dev)
  789. {
  790. int status;
  791. unsigned short totlen;
  792. struct sk_buff *skb;
  793. struct rbd_struct *rbd;
  794. struct priv *p = (struct priv *) dev->priv;
  795. for (; (status = p->rfd_top->status) & STAT_COMPL;) {
  796. rbd = (struct rbd_struct *) make32(p->rfd_top->rbd_offset);
  797. if (status & STAT_OK) { /* frame received without error? */
  798. if ((totlen = rbd->status) & RBD_LAST) { /* the first and the last buffer? */
  799. totlen &= RBD_MASK; /* length of this frame */
  800. rbd->status = 0;
  801. skb = (struct sk_buff *) dev_alloc_skb(totlen + 2);
  802. if (skb != NULL) {
  803. skb->dev = dev;
  804. skb_reserve(skb, 2); /* 16 byte alignment */
  805. skb_put(skb,totlen);
  806. eth_copy_and_sum(skb, (char *) p->base+(unsigned long) rbd->buffer,totlen,0);
  807. skb->protocol = eth_type_trans(skb, dev);
  808. netif_rx(skb);
  809. dev->last_rx = jiffies;
  810. p->stats.rx_packets++;
  811. p->stats.rx_bytes += totlen;
  812. } else {
  813. p->stats.rx_dropped++;
  814. }
  815. } else {
  816. printk(KERN_WARNING "%s: received oversized frame.n", dev->name);
  817. p->stats.rx_dropped++;
  818. }
  819. } else { /* frame !(ok), only with 'save-bad-frames' */
  820. printk(KERN_WARNING "%s: oops! rfd-error-status: %04xn", dev->name, status);
  821. p->stats.rx_errors++;
  822. }
  823. p->rfd_top->status = 0;
  824. p->rfd_top->last = RFD_SUSP;
  825. p->rfd_last->last = 0; /* delete RU_SUSP  */
  826. p->rfd_last = p->rfd_top;
  827. p->rfd_top = (struct rfd_struct *) make32(p->rfd_top->next); /* step to next RFD */
  828. }
  829. }
  830. /**********************************************************
  831.  * handle 'Receiver went not ready'.
  832.  */
  833. static void elmc_rnr_int(struct net_device *dev)
  834. {
  835. struct priv *p = (struct priv *) dev->priv;
  836. p->stats.rx_errors++;
  837. WAIT_4_SCB_CMD(); /* wait for the last cmd */
  838. p->scb->cmd = RUC_ABORT; /* usually the RU is in the 'no resource'-state .. abort it now. */
  839. elmc_attn586();
  840. WAIT_4_SCB_CMD(); /* wait for accept cmd. */
  841. alloc_rfa(dev, (char *) p->rfd_first);
  842. startrecv586(dev); /* restart RU */
  843. printk(KERN_WARNING "%s: Receive-Unit restarted. Status: %04xn", dev->name, p->scb->status);
  844. }
  845. /**********************************************************
  846.  * handle xmit - interrupt
  847.  */
  848. static void elmc_xmt_int(struct net_device *dev)
  849. {
  850. int status;
  851. struct priv *p = (struct priv *) dev->priv;
  852. status = p->xmit_cmds[p->xmit_last]->cmd_status;
  853. if (!(status & STAT_COMPL)) {
  854. printk(KERN_WARNING "%s: strange .. xmit-int without a 'COMPLETE'n", dev->name);
  855. }
  856. if (status & STAT_OK) {
  857. p->stats.tx_packets++;
  858. p->stats.collisions += (status & TCMD_MAXCOLLMASK);
  859. } else {
  860. p->stats.tx_errors++;
  861. if (status & TCMD_LATECOLL) {
  862. printk(KERN_WARNING "%s: late collision detected.n", dev->name);
  863. p->stats.collisions++;
  864. } else if (status & TCMD_NOCARRIER) {
  865. p->stats.tx_carrier_errors++;
  866. printk(KERN_WARNING "%s: no carrier detected.n", dev->name);
  867. } else if (status & TCMD_LOSTCTS) {
  868. printk(KERN_WARNING "%s: loss of CTS detected.n", dev->name);
  869. } else if (status & TCMD_UNDERRUN) {
  870. p->stats.tx_fifo_errors++;
  871. printk(KERN_WARNING "%s: DMA underrun detected.n", dev->name);
  872. } else if (status & TCMD_MAXCOLL) {
  873. printk(KERN_WARNING "%s: Max. collisions exceeded.n", dev->name);
  874. p->stats.collisions += 16;
  875. }
  876. }
  877. #if (NUM_XMIT_BUFFS != 1)
  878. if ((++p->xmit_last) == NUM_XMIT_BUFFS) {
  879. p->xmit_last = 0;
  880. }
  881. #endif
  882. netif_wake_queue(dev);
  883. }
  884. /***********************************************************
  885.  * (re)start the receiver
  886.  */
  887. static void startrecv586(struct net_device *dev)
  888. {
  889. struct priv *p = (struct priv *) dev->priv;
  890. p->scb->rfa_offset = make16(p->rfd_first);
  891. p->scb->cmd = RUC_START;
  892. elmc_attn586(); /* start cmd. */
  893. WAIT_4_SCB_CMD(); /* wait for accept cmd. (no timeout!!) */
  894. }
  895. /******************************************************
  896.  * timeout
  897.  */
  898.  
  899. static void elmc_timeout(struct net_device *dev)
  900. {
  901. struct priv *p = (struct priv *) dev->priv;
  902. /* COMMAND-UNIT active? */
  903. if (p->scb->status & CU_ACTIVE) {
  904. #ifdef DEBUG
  905. printk("%s: strange ... timeout with CU active?!?n", dev->name);
  906. printk("%s: X0: %04x N0: %04x N1: %04x %dn", dev->name, (int) p->xmit_cmds[0]->cmd_status, (int) p->nop_cmds[0]->cmd_status, (int) p->nop_cmds[1]->cmd_status, (int) p->nop_point);
  907. #endif
  908. p->scb->cmd = CUC_ABORT;
  909. elmc_attn586();
  910. WAIT_4_SCB_CMD();
  911. p->scb->cbl_offset = make16(p->nop_cmds[p->nop_point]);
  912. p->scb->cmd = CUC_START;
  913. elmc_attn586();
  914. WAIT_4_SCB_CMD();
  915. netif_wake_queue(dev);
  916. } else {
  917. #ifdef DEBUG
  918. printk("%s: xmitter timed out, try to restart! stat: %04xn", dev->name, p->scb->status);
  919. printk("%s: command-stats: %04x %04xn", dev->name, p->xmit_cmds[0]->cmd_status, p->xmit_cmds[1]->cmd_status);
  920. #endif
  921. elmc_close(dev);
  922. elmc_open(dev);
  923. }
  924. }
  925.  
  926. /******************************************************
  927.  * send frame
  928.  */
  929. static int elmc_send_packet(struct sk_buff *skb, struct net_device *dev)
  930. {
  931. int len;
  932. int i;
  933. #ifndef NO_NOPCOMMANDS
  934. int next_nop;
  935. #endif
  936. struct priv *p = (struct priv *) dev->priv;
  937. netif_stop_queue(dev);
  938. memcpy((char *) p->xmit_cbuffs[p->xmit_count], (char *) (skb->data), skb->len);
  939. len = (ETH_ZLEN < skb->len) ? skb->len : ETH_ZLEN;
  940. #if (NUM_XMIT_BUFFS == 1)
  941. #ifdef NO_NOPCOMMANDS
  942. p->xmit_buffs[0]->size = TBD_LAST | len;
  943. for (i = 0; i < 16; i++) {
  944. p->scb->cbl_offset = make16(p->xmit_cmds[0]);
  945. p->scb->cmd = CUC_START;
  946. p->xmit_cmds[0]->cmd_status = 0;
  947. elmc_attn586();
  948. dev->trans_start = jiffies;
  949. if (!i) {
  950. dev_kfree_skb(skb);
  951. }
  952. WAIT_4_SCB_CMD();
  953. if ((p->scb->status & CU_ACTIVE)) { /* test it, because CU sometimes doesn't start immediately */
  954. break;
  955. }
  956. if (p->xmit_cmds[0]->cmd_status) {
  957. break;
  958. }
  959. if (i == 15) {
  960. printk(KERN_WARNING "%s: Can't start transmit-command.n", dev->name);
  961. }
  962. }
  963. #else
  964. next_nop = (p->nop_point + 1) & 0x1;
  965. p->xmit_buffs[0]->size = TBD_LAST | len;
  966. p->xmit_cmds[0]->cmd_link = p->nop_cmds[next_nop]->cmd_link
  967.     = make16((p->nop_cmds[next_nop]));
  968. p->xmit_cmds[0]->cmd_status = p->nop_cmds[next_nop]->cmd_status = 0;
  969. p->nop_cmds[p->nop_point]->cmd_link = make16((p->xmit_cmds[0]));
  970. dev->trans_start = jiffies;
  971. p->nop_point = next_nop;
  972. dev_kfree_skb(skb);
  973. #endif
  974. #else
  975. p->xmit_buffs[p->xmit_count]->size = TBD_LAST | len;
  976. if ((next_nop = p->xmit_count + 1) == NUM_XMIT_BUFFS) {
  977. next_nop = 0;
  978. }
  979. p->xmit_cmds[p->xmit_count]->cmd_status = 0;
  980. p->xmit_cmds[p->xmit_count]->cmd_link = p->nop_cmds[next_nop]->cmd_link
  981.     = make16((p->nop_cmds[next_nop]));
  982. p->nop_cmds[next_nop]->cmd_status = 0;
  983. p->nop_cmds[p->xmit_count]->cmd_link = make16((p->xmit_cmds[p->xmit_count]));
  984. dev->trans_start = jiffies;
  985. p->xmit_count = next_nop;
  986. if (p->xmit_count != p->xmit_last)
  987. netif_wake_queue(dev);
  988. dev_kfree_skb(skb);
  989. #endif
  990. return 0;
  991. }
  992. /*******************************************
  993.  * Someone wanna have the statistics
  994.  */
  995. static struct net_device_stats *elmc_get_stats(struct net_device *dev)
  996. {
  997. struct priv *p = (struct priv *) dev->priv;
  998. unsigned short crc, aln, rsc, ovrn;
  999. crc = p->scb->crc_errs; /* get error-statistic from the ni82586 */
  1000. p->scb->crc_errs -= crc;
  1001. aln = p->scb->aln_errs;
  1002. p->scb->aln_errs -= aln;
  1003. rsc = p->scb->rsc_errs;
  1004. p->scb->rsc_errs -= rsc;
  1005. ovrn = p->scb->ovrn_errs;
  1006. p->scb->ovrn_errs -= ovrn;
  1007. p->stats.rx_crc_errors += crc;
  1008. p->stats.rx_fifo_errors += ovrn;
  1009. p->stats.rx_frame_errors += aln;
  1010. p->stats.rx_dropped += rsc;
  1011. return &p->stats;
  1012. }
  1013. /********************************************************
  1014.  * Set MC list ..
  1015.  */
  1016. #ifdef ELMC_MULTICAST
  1017. static void set_multicast_list(struct net_device *dev)
  1018. {
  1019. if (!dev->start) {
  1020. /* without a running interface, promiscuous doesn't work */
  1021. return;
  1022. }
  1023. dev->start = 0;
  1024. alloc586(dev);
  1025. init586(dev);
  1026. startrecv586(dev);
  1027. dev->start = 1;
  1028. }
  1029. #endif
  1030. /**
  1031.  * netdev_ethtool_ioctl: Handle network interface SIOCETHTOOL ioctls
  1032.  * @dev: network interface on which out-of-band action is to be performed
  1033.  * @useraddr: userspace address to which data is to be read and returned
  1034.  *
  1035.  * Process the various commands of the SIOCETHTOOL interface.
  1036.  */
  1037. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  1038. {
  1039. u32 ethcmd;
  1040. /* dev_ioctl() in ../../net/core/dev.c has already checked
  1041.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  1042. if (get_user(ethcmd, (u32 *)useraddr))
  1043. return -EFAULT;
  1044. switch (ethcmd) {
  1045. case ETHTOOL_GDRVINFO: {
  1046. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1047. strcpy (info.driver, DRV_NAME);
  1048. strcpy (info.version, DRV_VERSION);
  1049. sprintf(info.bus_info, "MCA 0x%lx", dev->base_addr);
  1050. if (copy_to_user (useraddr, &info, sizeof (info)))
  1051. return -EFAULT;
  1052. return 0;
  1053. }
  1054. default:
  1055. break;
  1056. }
  1057. return -EOPNOTSUPP;
  1058. }
  1059. /**
  1060.  * netdev_ioctl: Handle network interface ioctls
  1061.  * @dev: network interface on which out-of-band action is to be performed
  1062.  * @rq: user request data
  1063.  * @cmd: command issued by user
  1064.  *
  1065.  * Process the various out-of-band ioctls passed to this driver.
  1066.  */
  1067. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  1068. {
  1069. int rc = 0;
  1070. switch (cmd) {
  1071. case SIOCETHTOOL:
  1072. rc = netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1073. break;
  1074. default:
  1075. rc = -EOPNOTSUPP;
  1076. break;
  1077. }
  1078. return rc;
  1079. }
  1080.  
  1081. /*************************************************************************/
  1082. #ifdef MODULE
  1083. /* Increase if needed ;) */
  1084. #define MAX_3C523_CARDS 4
  1085. static struct net_device dev_elmc[MAX_3C523_CARDS];
  1086. static int irq[MAX_3C523_CARDS];
  1087. static int io[MAX_3C523_CARDS];
  1088. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_3C523_CARDS) "i");
  1089. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_3C523_CARDS) "i");
  1090. MODULE_PARM_DESC(io, "EtherLink/MC I/O base address(es)");
  1091. MODULE_PARM_DESC(irq, "EtherLink/MC IRQ number(s)");
  1092. int init_module(void)
  1093. {
  1094. int this_dev,found = 0;
  1095. /* Loop until we either can't find any more cards, or we have MAX_3C523_CARDS */
  1096. for(this_dev=0; this_dev<MAX_3C523_CARDS; this_dev++) 
  1097. {
  1098. struct net_device *dev = &dev_elmc[this_dev];
  1099. dev->irq=irq[this_dev];
  1100. dev->base_addr=io[this_dev];
  1101. dev->init=elmc_probe;
  1102. if(register_netdev(dev)!=0) {
  1103. if(io[this_dev]==0) break;
  1104. printk(KERN_WARNING "3c523.c: No 3c523 card found at io=%#xn",io[this_dev]);
  1105. } else found++;
  1106. }
  1107. if(found==0) {
  1108. if(io[0]==0) printk(KERN_NOTICE "3c523.c: No 3c523 cards foundn");
  1109. return -ENXIO;
  1110. } else return 0;
  1111. }
  1112. void cleanup_module(void)
  1113. {
  1114. int this_dev;
  1115. for(this_dev=0; this_dev<MAX_3C523_CARDS; this_dev++) {
  1116. struct net_device *dev = &dev_elmc[this_dev];
  1117. if(dev->priv) {
  1118. /* shutdown interrupts on the card */
  1119. elmc_id_reset586();
  1120. if (dev->irq != 0) {
  1121. /* this should be done by close, but if we failed to
  1122.    initialize properly something may have gotten hosed. */
  1123. free_irq(dev->irq, dev);
  1124. dev->irq = 0;
  1125. }
  1126. if (dev->base_addr != 0) {
  1127. release_region(dev->base_addr, ELMC_IO_EXTENT);
  1128. dev->base_addr = 0;
  1129. }
  1130. irq[this_dev] = 0;
  1131. io[this_dev] = 0;
  1132. unregister_netdev(dev);
  1133. mca_set_adapter_procfn(((struct priv *) (dev->priv))->slot,
  1134.        NULL, NULL);
  1135. kfree(dev->priv);
  1136. dev->priv = NULL;
  1137. }
  1138. }
  1139. }
  1140. #endif /* MODULE */