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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 3c507.c: An EtherLink16 device driver for Linux. */
  2. /*
  3. Written 1993,1994 by Donald Becker.
  4. Copyright 1993 United States Government as represented by the
  5. Director, National Security Agency.
  6. This software may be used and distributed according to the terms
  7. of the GNU General Public License, 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. Thanks go to jennings@Montrouge.SMR.slb.com ( Patrick Jennings)
  13. and jrs@world.std.com (Rick Sladkey) for testing and bugfixes.
  14. Mark Salazar <leslie@access.digex.net> made the changes for cards with
  15. only 16K packet buffers.
  16. Things remaining to do:
  17. Verify that the tx and rx buffers don't have fencepost errors.
  18. Move the theory of operation and memory map documentation.
  19. The statistics need to be updated correctly.
  20. */
  21. #define DRV_NAME "3c507"
  22. #define DRV_VERSION "1.10a"
  23. #define DRV_RELDATE "11/17/2001"
  24. static const char version[] =
  25. DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " Donald Becker (becker@scyld.com)n";
  26. #include <linux/module.h>
  27. /*
  28.   Sources:
  29. This driver wouldn't have been written with the availability of the
  30. Crynwr driver source code. It provided a known-working implementation
  31. that filled in the gaping holes of the Intel documentation.  Three cheers
  32. for Russ Nelson.
  33. Intel Microcommunications Databook, Vol. 1, 1990.  It provides just enough
  34. info that the casual reader might think that it documents the i82586 :-<.
  35. */
  36. #include <linux/kernel.h>
  37. #include <linux/sched.h>
  38. #include <linux/types.h>
  39. #include <linux/fcntl.h>
  40. #include <linux/interrupt.h>
  41. #include <linux/ptrace.h>
  42. #include <linux/ioport.h>
  43. #include <linux/in.h>
  44. #include <linux/string.h>
  45. #include <linux/spinlock.h>
  46. #include <linux/ethtool.h>
  47. #include <asm/uaccess.h>
  48. #include <asm/system.h>
  49. #include <asm/bitops.h>
  50. #include <asm/io.h>
  51. #include <asm/dma.h>
  52. #include <linux/errno.h>
  53. #include <linux/netdevice.h>
  54. #include <linux/etherdevice.h>
  55. #include <linux/skbuff.h>
  56. #include <linux/slab.h>
  57. #include <linux/init.h>
  58. /* use 0 for production, 1 for verification, 2..7 for debug */
  59. #ifndef NET_DEBUG
  60. #define NET_DEBUG 1
  61. #endif
  62. static unsigned int net_debug = NET_DEBUG;
  63. #define debug net_debug
  64. /* A zero-terminated list of common I/O addresses to be probed. */
  65. static unsigned int netcard_portlist[] __initdata =
  66. { 0x300, 0x320, 0x340, 0x280, 0};
  67. /*
  68.    Details of the i82586.
  69.    You'll really need the databook to understand the details of this part,
  70.    but the outline is that the i82586 has two separate processing units.
  71.    Both are started from a list of three configuration tables, of which only
  72.    the last, the System Control Block (SCB), is used after reset-time.  The SCB
  73.    has the following fields:
  74. Status word
  75. Command word
  76. Tx/Command block addr.
  77. Rx block addr.
  78.    The command word accepts the following controls for the Tx and Rx units:
  79.   */
  80. #define  CUC_START  0x0100
  81. #define  CUC_RESUME  0x0200
  82. #define  CUC_SUSPEND 0x0300
  83. #define  RX_START  0x0010
  84. #define  RX_RESUME  0x0020
  85. #define  RX_SUSPEND  0x0030
  86. /* The Rx unit uses a list of frame descriptors and a list of data buffer
  87.    descriptors.  We use full-sized (1518 byte) data buffers, so there is
  88.    a one-to-one pairing of frame descriptors to buffer descriptors.
  89.    The Tx ("command") unit executes a list of commands that look like:
  90. Status word Written by the 82586 when the command is done.
  91. Command word Command in lower 3 bits, post-command action in upper 3
  92. Link word The address of the next command.
  93. Parameters (as needed).
  94. Some definitions related to the Command Word are:
  95.  */
  96. #define CMD_EOL 0x8000 /* The last command of the list, stop. */
  97. #define CMD_SUSP 0x4000 /* Suspend after doing cmd. */
  98. #define CMD_INTR 0x2000 /* Interrupt after doing cmd. */
  99. enum commands {
  100. CmdNOp = 0, CmdSASetup = 1, CmdConfigure = 2, CmdMulticastList = 3,
  101. CmdTx = 4, CmdTDR = 5, CmdDump = 6, CmdDiagnose = 7};
  102. /* Information that need to be kept for each board. */
  103. struct net_local {
  104. struct net_device_stats stats;
  105. int last_restart;
  106. ushort rx_head;
  107. ushort rx_tail;
  108. ushort tx_head;
  109. ushort tx_cmd_link;
  110. ushort tx_reap;
  111. ushort tx_pkts_in_ring;
  112. spinlock_t lock;
  113. };
  114. /*
  115.    Details of the EtherLink16 Implementation
  116.   The 3c507 is a generic shared-memory i82586 implementation.
  117.   The host can map 16K, 32K, 48K, or 64K of the 64K memory into
  118.   0x0[CD][08]0000, or all 64K into 0xF[02468]0000.
  119.   */
  120. /* Offsets from the base I/O address. */
  121. #define SA_DATA 0 /* Station address data, or 3Com signature. */
  122. #define MISC_CTRL 6 /* Switch the SA_DATA banks, and bus config bits. */
  123. #define RESET_IRQ 10 /* Reset the latched IRQ line. */
  124. #define SIGNAL_CA 11 /* Frob the 82586 Channel Attention line. */
  125. #define ROM_CONFIG 13
  126. #define MEM_CONFIG 14
  127. #define IRQ_CONFIG 15
  128. #define EL16_IO_EXTENT 16
  129. /* The ID port is used at boot-time to locate the ethercard. */
  130. #define ID_PORT 0x100
  131. /* Offsets to registers in the mailbox (SCB). */
  132. #define iSCB_STATUS 0x8
  133. #define iSCB_CMD 0xA
  134. #define iSCB_CBL 0xC /* Command BLock offset. */
  135. #define iSCB_RFA 0xE /* Rx Frame Area offset. */
  136. /*  Since the 3c507 maps the shared memory window so that the last byte is
  137. at 82586 address FFFF, the first byte is at 82586 address 0, 16K, 32K, or
  138. 48K corresponding to window sizes of 64K, 48K, 32K and 16K respectively.
  139. We can account for this be setting the 'SBC Base' entry in the ISCP table
  140. below for all the 16 bit offset addresses, and also adding the 'SCB Base'
  141. value to all 24 bit physical addresses (in the SCP table and the TX and RX
  142. Buffer Descriptors).
  143. -Mark
  144. */
  145. #define SCB_BASE ((unsigned)64*1024 - (dev->mem_end - dev->mem_start))
  146. /*
  147.   What follows in 'init_words[]' is the "program" that is downloaded to the
  148.   82586 memory.  It's mostly tables and command blocks, and starts at the
  149.   reset address 0xfffff6.  This is designed to be similar to the EtherExpress,
  150.   thus the unusual location of the SCB at 0x0008.
  151.   Even with the additional "don't care" values, doing it this way takes less
  152.   program space than initializing the individual tables, and I feel it's much
  153.   cleaner.
  154.   The databook is particularly useless for the first two structures, I had
  155.   to use the Crynwr driver as an example.
  156.    The memory setup is as follows:
  157.    */
  158. #define CONFIG_CMD 0x0018
  159. #define SET_SA_CMD 0x0024
  160. #define SA_OFFSET 0x002A
  161. #define IDLELOOP 0x30
  162. #define TDR_CMD 0x38
  163. #define TDR_TIME 0x3C
  164. #define DUMP_CMD 0x40
  165. #define DIAG_CMD 0x48
  166. #define SET_MC_CMD 0x4E
  167. #define DUMP_DATA 0x56 /* A 170 byte buffer for dump and Set-MC into. */
  168. #define TX_BUF_START 0x0100
  169. #define NUM_TX_BUFS  5
  170. #define TX_BUF_SIZE  (1518+14+20+16) /* packet+header+TBD */
  171. #define RX_BUF_START 0x2000
  172. #define RX_BUF_SIZE  (1518+14+18) /* packet+header+RBD */
  173. #define RX_BUF_END (dev->mem_end - dev->mem_start)
  174. #define TX_TIMEOUT 5
  175. /*
  176.   That's it: only 86 bytes to set up the beast, including every extra
  177.   command available.  The 170 byte buffer at DUMP_DATA is shared between the
  178.   Dump command (called only by the diagnostic program) and the SetMulticastList
  179.   command.
  180.   To complete the memory setup you only have to write the station address at
  181.   SA_OFFSET and create the Tx & Rx buffer lists.
  182.   The Tx command chain and buffer list is setup as follows:
  183.   A Tx command table, with the data buffer pointing to...
  184.   A Tx data buffer descriptor.  The packet is in a single buffer, rather than
  185. chaining together several smaller buffers.
  186.   A NoOp command, which initially points to itself,
  187.   And the packet data.
  188.   A transmit is done by filling in the Tx command table and data buffer,
  189.   re-writing the NoOp command, and finally changing the offset of the last
  190.   command to point to the current Tx command.  When the Tx command is finished,
  191.   it jumps to the NoOp, when it loops until the next Tx command changes the
  192.   "link offset" in the NoOp.  This way the 82586 never has to go through the
  193.   slow restart sequence.
  194.   The Rx buffer list is set up in the obvious ring structure.  We have enough
  195.   memory (and low enough interrupt latency) that we can avoid the complicated
  196.   Rx buffer linked lists by alway associating a full-size Rx data buffer with
  197.   each Rx data frame.
  198.   I current use four transmit buffers starting at TX_BUF_START (0x0100), and
  199.   use the rest of memory, from RX_BUF_START to RX_BUF_END, for Rx buffers.
  200.   */
  201. static unsigned short init_words[] = {
  202. /* System Configuration Pointer (SCP). */
  203. 0x0000, /* Set bus size to 16 bits. */
  204. 0,0, /* pad words. */
  205. 0x0000,0x0000, /* ISCP phys addr, set in init_82586_mem(). */
  206. /* Intermediate System Configuration Pointer (ISCP). */
  207. 0x0001, /* Status word that's cleared when init is done. */
  208. 0x0008,0,0, /* SCB offset, (skip, skip) */
  209. /* System Control Block (SCB). */
  210. 0,0xf000|RX_START|CUC_START, /* SCB status and cmd. */
  211. CONFIG_CMD, /* Command list pointer, points to Configure. */
  212. RX_BUF_START, /* Rx block list. */
  213. 0,0,0,0, /* Error count: CRC, align, buffer, overrun. */
  214. /* 0x0018: Configure command.  Change to put MAC data with packet. */
  215. 0, CmdConfigure, /* Status, command. */
  216. SET_SA_CMD, /* Next command is Set Station Addr. */
  217. 0x0804, /* "4" bytes of config data, 8 byte FIFO. */
  218. 0x2e40, /* Magic values, including MAC data location. */
  219. 0, /* Unused pad word. */
  220. /* 0x0024: Setup station address command. */
  221. 0, CmdSASetup,
  222. SET_MC_CMD, /* Next command. */
  223. 0xaa00,0xb000,0x0bad, /* Station address (to be filled in) */
  224. /* 0x0030: NOP, looping back to itself.  Point to first Tx buffer to Tx. */
  225. 0, CmdNOp, IDLELOOP, 0 /* pad */,
  226. /* 0x0038: A unused Time-Domain Reflectometer command. */
  227. 0, CmdTDR, IDLELOOP, 0,
  228. /* 0x0040: An unused Dump State command. */
  229. 0, CmdDump, IDLELOOP, DUMP_DATA,
  230. /* 0x0048: An unused Diagnose command. */
  231. 0, CmdDiagnose, IDLELOOP,
  232. /* 0x004E: An empty set-multicast-list command. */
  233. 0, CmdMulticastList, IDLELOOP, 0,
  234. };
  235. /* Index to functions, as function prototypes. */
  236. extern int el16_probe(struct net_device *dev); /* Called from Space.c */
  237. static int el16_probe1(struct net_device *dev, int ioaddr);
  238. static int el16_open(struct net_device *dev);
  239. static int el16_send_packet(struct sk_buff *skb, struct net_device *dev);
  240. static void el16_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  241. static void el16_rx(struct net_device *dev);
  242. static int el16_close(struct net_device *dev);
  243. static struct net_device_stats *el16_get_stats(struct net_device *dev);
  244. static void el16_tx_timeout (struct net_device *dev);
  245. static void hardware_send_packet(struct net_device *dev, void *buf, short length);
  246. static void init_82586_mem(struct net_device *dev);
  247. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  248. /* Check for a network adaptor of this type, and return '0' iff one exists.
  249. If dev->base_addr == 0, probe all likely locations.
  250. If dev->base_addr == 1, always return failure.
  251. If dev->base_addr == 2, (detachable devices only) allocate space for the
  252. device and return success.
  253. */
  254. int __init el16_probe(struct net_device *dev)
  255. {
  256. int base_addr = dev->base_addr;
  257. int i;
  258. SET_MODULE_OWNER(dev);
  259. if (base_addr > 0x1ff) /* Check a single specified location. */
  260. return el16_probe1(dev, base_addr);
  261. else if (base_addr != 0)
  262. return -ENXIO; /* Don't probe at all. */
  263. for (i = 0; netcard_portlist[i]; i++)
  264. if (el16_probe1(dev, netcard_portlist[i]) == 0)
  265. return 0;
  266. return -ENODEV;
  267. }
  268. static int __init el16_probe1(struct net_device *dev, int ioaddr)
  269. {
  270. static unsigned char init_ID_done, version_printed;
  271. int i, irq, irqval, retval;
  272. struct net_local *lp;
  273. if (init_ID_done == 0) {
  274. ushort lrs_state = 0xff;
  275. /* Send the ID sequence to the ID_PORT to enable the board(s). */
  276. outb(0x00, ID_PORT);
  277. for(i = 0; i < 255; i++) {
  278. outb(lrs_state, ID_PORT);
  279. lrs_state <<= 1;
  280. if (lrs_state & 0x100)
  281. lrs_state ^= 0xe7;
  282. }
  283. outb(0x00, ID_PORT);
  284. init_ID_done = 1;
  285. }
  286. if (!request_region(ioaddr, EL16_IO_EXTENT, dev->name))
  287. return -ENODEV;
  288. if ((inb(ioaddr) != '*') || (inb(ioaddr + 1) != '3') || 
  289.     (inb(ioaddr + 2) != 'C') || (inb(ioaddr + 3) != 'O')) {
  290. retval = -ENODEV;
  291. goto out;
  292. }
  293. if (net_debug  &&  version_printed++ == 0)
  294. printk(version);
  295. printk("%s: 3c507 at %#x,", dev->name, ioaddr);
  296. /* We should make a few more checks here, like the first three octets of
  297.    the S.A. for the manufacturer's code. */
  298. irq = inb(ioaddr + IRQ_CONFIG) & 0x0f;
  299. irqval = request_irq(irq, &el16_interrupt, 0, dev->name, dev);
  300. if (irqval) {
  301. printk ("unable to get IRQ %d (irqval=%d).n", irq, irqval);
  302. retval = -EAGAIN;
  303. goto out;
  304. }
  305. /* We've committed to using the board, and can start filling in *dev. */
  306. dev->base_addr = ioaddr;
  307. outb(0x01, ioaddr + MISC_CTRL);
  308. for (i = 0; i < 6; i++) {
  309. dev->dev_addr[i] = inb(ioaddr + i);
  310. printk(" %02x", dev->dev_addr[i]);
  311. }
  312. if ((dev->mem_start & 0xf) > 0)
  313. net_debug = dev->mem_start & 7;
  314. #ifdef MEM_BASE
  315. dev->mem_start = MEM_BASE;
  316. dev->mem_end = dev->mem_start + 0x10000;
  317. #else
  318. {
  319. int base;
  320. int size;
  321. char mem_config = inb(ioaddr + MEM_CONFIG);
  322. if (mem_config & 0x20) {
  323. size = 64*1024;
  324. base = 0xf00000 + (mem_config & 0x08 ? 0x080000
  325.    : ((mem_config & 3) << 17));
  326. } else {
  327. size = ((mem_config & 3) + 1) << 14;
  328. base = 0x0c0000 + ( (mem_config & 0x18) << 12);
  329. }
  330. dev->mem_start = base;
  331. dev->mem_end = base + size;
  332. }
  333. #endif
  334. dev->if_port = (inb(ioaddr + ROM_CONFIG) & 0x80) ? 1 : 0;
  335. dev->irq = inb(ioaddr + IRQ_CONFIG) & 0x0f;
  336. printk(", IRQ %d, %sternal xcvr, memory %#lx-%#lx.n", dev->irq,
  337.    dev->if_port ? "ex" : "in", dev->mem_start, dev->mem_end-1);
  338. if (net_debug)
  339. printk(version);
  340. /* Initialize the device structure. */
  341. lp = dev->priv = kmalloc(sizeof(struct net_local), GFP_KERNEL);
  342. if (dev->priv == NULL) {
  343. retval = -ENOMEM;
  344. goto out;
  345. }
  346. memset(dev->priv, 0, sizeof(struct net_local));
  347. spin_lock_init(&lp->lock);
  348. dev->open = el16_open;
  349. dev->stop = el16_close;
  350. dev->hard_start_xmit = el16_send_packet;
  351. dev->get_stats = el16_get_stats;
  352. dev->tx_timeout = el16_tx_timeout;
  353. dev->watchdog_timeo = TX_TIMEOUT;
  354. dev->do_ioctl = netdev_ioctl;
  355. ether_setup(dev); /* Generic ethernet behaviour */
  356. dev->flags&=~IFF_MULTICAST; /* Multicast doesn't work */
  357. return 0;
  358. out:
  359. release_region(ioaddr, EL16_IO_EXTENT);
  360. return retval;
  361. }
  362. static int el16_open(struct net_device *dev)
  363. {
  364. /* Initialize the 82586 memory and start it. */
  365. init_82586_mem(dev);
  366. netif_start_queue(dev);
  367. return 0;
  368. }
  369. static void el16_tx_timeout (struct net_device *dev)
  370. {
  371. struct net_local *lp = (struct net_local *) dev->priv;
  372. int ioaddr = dev->base_addr;
  373. unsigned long shmem = dev->mem_start;
  374. if (net_debug > 1)
  375. printk ("%s: transmit timed out, %s?  ", dev->name,
  376. isa_readw (shmem + iSCB_STATUS) & 0x8000 ? "IRQ conflict" :
  377. "network cable problem");
  378. /* Try to restart the adaptor. */
  379. if (lp->last_restart == lp->stats.tx_packets) {
  380. if (net_debug > 1)
  381. printk ("Resetting board.n");
  382. /* Completely reset the adaptor. */
  383. init_82586_mem (dev);
  384. lp->tx_pkts_in_ring = 0;
  385. } else {
  386. /* Issue the channel attention signal and hope it "gets better". */
  387. if (net_debug > 1)
  388. printk ("Kicking board.n");
  389. isa_writew (0xf000 | CUC_START | RX_START, shmem + iSCB_CMD);
  390. outb (0, ioaddr + SIGNAL_CA); /* Issue channel-attn. */
  391. lp->last_restart = lp->stats.tx_packets;
  392. }
  393. dev->trans_start = jiffies;
  394. netif_wake_queue (dev);
  395. }
  396. static int el16_send_packet (struct sk_buff *skb, struct net_device *dev)
  397. {
  398. struct net_local *lp = (struct net_local *) dev->priv;
  399. int ioaddr = dev->base_addr;
  400. unsigned long flags;
  401. short length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  402. unsigned char *buf = skb->data;
  403. netif_stop_queue (dev);
  404. spin_lock_irqsave (&lp->lock, flags);
  405. lp->stats.tx_bytes += length;
  406. /* Disable the 82586's input to the interrupt line. */
  407. outb (0x80, ioaddr + MISC_CTRL);
  408. hardware_send_packet (dev, buf, length);
  409. dev->trans_start = jiffies;
  410. /* Enable the 82586 interrupt input. */
  411. outb (0x84, ioaddr + MISC_CTRL);
  412. spin_unlock_irqrestore (&lp->lock, flags);
  413. dev_kfree_skb (skb);
  414. /* You might need to clean up and record Tx statistics here. */
  415. return 0;
  416. }
  417. /* The typical workload of the driver:
  418. Handle the network interface interrupts. */
  419. static void el16_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  420. {
  421. struct net_device *dev = dev_id;
  422. struct net_local *lp;
  423. int ioaddr, status, boguscount = 0;
  424. ushort ack_cmd = 0;
  425. unsigned long shmem;
  426. if (dev == NULL) {
  427. printk ("net_interrupt(): irq %d for unknown device.n", irq);
  428. return;
  429. }
  430. ioaddr = dev->base_addr;
  431. lp = (struct net_local *)dev->priv;
  432. shmem = dev->mem_start;
  433. spin_lock(&lp->lock);
  434. status = isa_readw(shmem+iSCB_STATUS);
  435. if (net_debug > 4) {
  436. printk("%s: 3c507 interrupt, status %4.4x.n", dev->name, status);
  437. }
  438. /* Disable the 82586's input to the interrupt line. */
  439. outb(0x80, ioaddr + MISC_CTRL);
  440. /* Reap the Tx packet buffers. */
  441. while (lp->tx_pkts_in_ring) {
  442.   unsigned short tx_status = isa_readw(shmem+lp->tx_reap);
  443.   if (!(tx_status & 0x8000)) {
  444. if (net_debug > 5) 
  445. printk("Tx command incomplete (%#x).n", lp->tx_reap);
  446. break;
  447.   }
  448.   /* Tx unsuccessful or some interesting status bit set. */
  449.   if (!(tx_status & 0x2000) || (tx_status & 0x0f3f)) {
  450. lp->stats.tx_errors++;
  451. if (tx_status & 0x0600)  lp->stats.tx_carrier_errors++;
  452. if (tx_status & 0x0100)  lp->stats.tx_fifo_errors++;
  453. if (!(tx_status & 0x0040))  lp->stats.tx_heartbeat_errors++;
  454. if (tx_status & 0x0020)  lp->stats.tx_aborted_errors++;
  455. lp->stats.collisions += tx_status & 0xf;
  456.   }
  457.   lp->stats.tx_packets++;
  458.   if (net_debug > 5)
  459.   printk("Reaped %x, Tx status %04x.n" , lp->tx_reap, tx_status);
  460.   lp->tx_reap += TX_BUF_SIZE;
  461.   if (lp->tx_reap > RX_BUF_START - TX_BUF_SIZE)
  462. lp->tx_reap = TX_BUF_START;
  463.   lp->tx_pkts_in_ring--;
  464.   /* There is always more space in the Tx ring buffer now. */
  465.   netif_wake_queue(dev);
  466.   if (++boguscount > 10)
  467. break;
  468. }
  469. if (status & 0x4000) { /* Packet received. */
  470. if (net_debug > 5)
  471. printk("Received packet, rx_head %04x.n", lp->rx_head);
  472. el16_rx(dev);
  473. }
  474. /* Acknowledge the interrupt sources. */
  475. ack_cmd = status & 0xf000;
  476. if ((status & 0x0700) != 0x0200 && netif_running(dev)) {
  477. if (net_debug)
  478. printk("%s: Command unit stopped, status %04x, restarting.n",
  479.    dev->name, status);
  480. /* If this ever occurs we should really re-write the idle loop, reset
  481.    the Tx list, and do a complete restart of the command unit.
  482.    For now we rely on the Tx timeout if the resume doesn't work. */
  483. ack_cmd |= CUC_RESUME;
  484. }
  485. if ((status & 0x0070) != 0x0040 && netif_running(dev)) {
  486. static void init_rx_bufs(struct net_device *);
  487. /* The Rx unit is not ready, it must be hung.  Restart the receiver by
  488.    initializing the rx buffers, and issuing an Rx start command. */
  489. if (net_debug)
  490. printk("%s: Rx unit stopped, status %04x, restarting.n",
  491.    dev->name, status);
  492. init_rx_bufs(dev);
  493. isa_writew(RX_BUF_START,shmem+iSCB_RFA);
  494. ack_cmd |= RX_START;
  495. }
  496. isa_writew(ack_cmd,shmem+iSCB_CMD);
  497. outb(0, ioaddr + SIGNAL_CA); /* Issue channel-attn. */
  498. /* Clear the latched interrupt. */
  499. outb(0, ioaddr + RESET_IRQ);
  500. /* Enable the 82586's interrupt input. */
  501. outb(0x84, ioaddr + MISC_CTRL);
  502. spin_unlock(&lp->lock);
  503. }
  504. static int el16_close(struct net_device *dev)
  505. {
  506. int ioaddr = dev->base_addr;
  507. unsigned long shmem = dev->mem_start;
  508. netif_stop_queue(dev);
  509. /* Flush the Tx and disable Rx. */
  510. isa_writew(RX_SUSPEND | CUC_SUSPEND,shmem+iSCB_CMD);
  511. outb(0, ioaddr + SIGNAL_CA);
  512. /* Disable the 82586's input to the interrupt line. */
  513. outb(0x80, ioaddr + MISC_CTRL);
  514. /* We always physically use the IRQ line, so we don't do free_irq(). */
  515. /* Update the statistics here. */
  516. return 0;
  517. }
  518. /* Get the current statistics. This may be called with the card open or
  519.    closed. */
  520. static struct net_device_stats *el16_get_stats(struct net_device *dev)
  521. {
  522. struct net_local *lp = (struct net_local *)dev->priv;
  523. /* ToDo: decide if there are any useful statistics from the SCB. */
  524. return &lp->stats;
  525. }
  526. /* Initialize the Rx-block list. */
  527. static void init_rx_bufs(struct net_device *dev)
  528. {
  529. struct net_local *lp = (struct net_local *)dev->priv;
  530. unsigned long write_ptr;
  531. unsigned short SCB_base = SCB_BASE;
  532. int cur_rxbuf = lp->rx_head = RX_BUF_START;
  533. /* Initialize each Rx frame + data buffer. */
  534. do { /* While there is room for one more. */
  535.   write_ptr = dev->mem_start + cur_rxbuf;
  536. isa_writew(0x0000,write_ptr); /* Status */
  537. isa_writew(0x0000,write_ptr+=2); /* Command */
  538. isa_writew(cur_rxbuf + RX_BUF_SIZE,write_ptr+=2); /* Link */
  539. isa_writew(cur_rxbuf + 22,write_ptr+=2); /* Buffer offset */
  540. isa_writew(0x0000,write_ptr+=2); /* Pad for dest addr. */
  541. isa_writew(0x0000,write_ptr+=2);
  542. isa_writew(0x0000,write_ptr+=2);
  543. isa_writew(0x0000,write_ptr+=2); /* Pad for source addr. */
  544. isa_writew(0x0000,write_ptr+=2);
  545. isa_writew(0x0000,write_ptr+=2);
  546. isa_writew(0x0000,write_ptr+=2); /* Pad for protocol. */
  547. isa_writew(0x0000,write_ptr+=2); /* Buffer: Actual count */
  548. isa_writew(-1,write_ptr+=2); /* Buffer: Next (none). */
  549. isa_writew(cur_rxbuf + 0x20 + SCB_base,write_ptr+=2);/* Buffer: Address low */
  550. isa_writew(0x0000,write_ptr+=2);
  551. /* Finally, the number of bytes in the buffer. */
  552. isa_writew(0x8000 + RX_BUF_SIZE-0x20,write_ptr+=2);
  553. lp->rx_tail = cur_rxbuf;
  554. cur_rxbuf += RX_BUF_SIZE;
  555. } while (cur_rxbuf <= RX_BUF_END - RX_BUF_SIZE);
  556. /* Terminate the list by setting the EOL bit, and wrap the pointer to make
  557.    the list a ring. */
  558. write_ptr = dev->mem_start + lp->rx_tail + 2;
  559. isa_writew(0xC000,write_ptr); /* Command, mark as last. */
  560. isa_writew(lp->rx_head,write_ptr+2); /* Link */
  561. }
  562. static void init_82586_mem(struct net_device *dev)
  563. {
  564. struct net_local *lp = (struct net_local *)dev->priv;
  565. short ioaddr = dev->base_addr;
  566. unsigned long shmem = dev->mem_start;
  567. /* Enable loopback to protect the wire while starting up,
  568.    and hold the 586 in reset during the memory initialization. */
  569. outb(0x20, ioaddr + MISC_CTRL);
  570. /* Fix the ISCP address and base. */
  571. init_words[3] = SCB_BASE;
  572. init_words[7] = SCB_BASE;
  573. /* Write the words at 0xfff6 (address-aliased to 0xfffff6). */
  574. isa_memcpy_toio(dev->mem_end-10, init_words, 10);
  575. /* Write the words at 0x0000. */
  576. isa_memcpy_toio(dev->mem_start, init_words + 5, sizeof(init_words) - 10);
  577. /* Fill in the station address. */
  578. isa_memcpy_toio(dev->mem_start+SA_OFFSET, dev->dev_addr,
  579.    sizeof(dev->dev_addr));
  580. /* The Tx-block list is written as needed.  We just set up the values. */
  581. lp->tx_cmd_link = IDLELOOP + 4;
  582. lp->tx_head = lp->tx_reap = TX_BUF_START;
  583. init_rx_bufs(dev);
  584. /* Start the 586 by releasing the reset line, but leave loopback. */
  585. outb(0xA0, ioaddr + MISC_CTRL);
  586. /* This was time consuming to track down: you need to give two channel
  587.    attention signals to reliably start up the i82586. */
  588. outb(0, ioaddr + SIGNAL_CA);
  589. {
  590. int boguscnt = 50;
  591. while (isa_readw(shmem+iSCB_STATUS) == 0)
  592. if (--boguscnt == 0) {
  593. printk("%s: i82586 initialization timed out with status %04x,"
  594.    "cmd %04x.n", dev->name,
  595.    isa_readw(shmem+iSCB_STATUS), isa_readw(shmem+iSCB_CMD));
  596. break;
  597. }
  598. /* Issue channel-attn -- the 82586 won't start. */
  599. outb(0, ioaddr + SIGNAL_CA);
  600. }
  601. /* Disable loopback and enable interrupts. */
  602. outb(0x84, ioaddr + MISC_CTRL);
  603. if (net_debug > 4)
  604. printk("%s: Initialized 82586, status %04x.n", dev->name,
  605.    isa_readw(shmem+iSCB_STATUS));
  606. return;
  607. }
  608. static void hardware_send_packet(struct net_device *dev, void *buf, short length)
  609. {
  610. struct net_local *lp = (struct net_local *)dev->priv;
  611. short ioaddr = dev->base_addr;
  612. ushort tx_block = lp->tx_head;
  613. unsigned long write_ptr = dev->mem_start + tx_block;
  614. /* Set the write pointer to the Tx block, and put out the header. */
  615. isa_writew(0x0000,write_ptr); /* Tx status */
  616. isa_writew(CMD_INTR|CmdTx,write_ptr+=2); /* Tx command */
  617. isa_writew(tx_block+16,write_ptr+=2); /* Next command is a NoOp. */
  618. isa_writew(tx_block+8,write_ptr+=2); /* Data Buffer offset. */
  619. /* Output the data buffer descriptor. */
  620. isa_writew(length | 0x8000,write_ptr+=2); /* Byte count parameter. */
  621. isa_writew(-1,write_ptr+=2); /* No next data buffer. */
  622. isa_writew(tx_block+22+SCB_BASE,write_ptr+=2); /* Buffer follows the NoOp command. */
  623. isa_writew(0x0000,write_ptr+=2); /* Buffer address high bits (always zero). */
  624. /* Output the Loop-back NoOp command. */
  625. isa_writew(0x0000,write_ptr+=2); /* Tx status */
  626. isa_writew(CmdNOp,write_ptr+=2); /* Tx command */
  627. isa_writew(tx_block+16,write_ptr+=2); /* Next is myself. */
  628. /* Output the packet at the write pointer. */
  629. isa_memcpy_toio(write_ptr+2, buf, length);
  630. /* Set the old command link pointing to this send packet. */
  631. isa_writew(tx_block,dev->mem_start + lp->tx_cmd_link);
  632. lp->tx_cmd_link = tx_block + 20;
  633. /* Set the next free tx region. */
  634. lp->tx_head = tx_block + TX_BUF_SIZE;
  635. if (lp->tx_head > RX_BUF_START - TX_BUF_SIZE)
  636. lp->tx_head = TX_BUF_START;
  637. if (net_debug > 4) {
  638. printk("%s: 3c507 @%x send length = %d, tx_block %3x, next %3x.n",
  639.    dev->name, ioaddr, length, tx_block, lp->tx_head);
  640. }
  641. /* Grimly block further packets if there has been insufficient reaping. */
  642. if (++lp->tx_pkts_in_ring < NUM_TX_BUFS) 
  643. netif_wake_queue(dev);
  644. }
  645. static void el16_rx(struct net_device *dev)
  646. {
  647. struct net_local *lp = (struct net_local *)dev->priv;
  648. unsigned long shmem = dev->mem_start;
  649. ushort rx_head = lp->rx_head;
  650. ushort rx_tail = lp->rx_tail;
  651. ushort boguscount = 10;
  652. short frame_status;
  653. while ((frame_status = isa_readw(shmem+rx_head)) < 0) {   /* Command complete */
  654. unsigned long read_frame = dev->mem_start + rx_head;
  655. ushort rfd_cmd = isa_readw(read_frame+2);
  656. ushort next_rx_frame = isa_readw(read_frame+4);
  657. ushort data_buffer_addr = isa_readw(read_frame+6);
  658. unsigned long data_frame = dev->mem_start + data_buffer_addr;
  659. ushort pkt_len = isa_readw(data_frame);
  660. if (rfd_cmd != 0 || data_buffer_addr != rx_head + 22
  661. || (pkt_len & 0xC000) != 0xC000) {
  662. printk("%s: Rx frame at %#x corrupted, status %04x cmd %04x"
  663.    "next %04x data-buf @%04x %04x.n", dev->name, rx_head,
  664.    frame_status, rfd_cmd, next_rx_frame, data_buffer_addr,
  665.    pkt_len);
  666. } else if ((frame_status & 0x2000) == 0) {
  667. /* Frame Rxed, but with error. */
  668. lp->stats.rx_errors++;
  669. if (frame_status & 0x0800) lp->stats.rx_crc_errors++;
  670. if (frame_status & 0x0400) lp->stats.rx_frame_errors++;
  671. if (frame_status & 0x0200) lp->stats.rx_fifo_errors++;
  672. if (frame_status & 0x0100) lp->stats.rx_over_errors++;
  673. if (frame_status & 0x0080) lp->stats.rx_length_errors++;
  674. } else {
  675. /* Malloc up new buffer. */
  676. struct sk_buff *skb;
  677. pkt_len &= 0x3fff;
  678. skb = dev_alloc_skb(pkt_len+2);
  679. if (skb == NULL) {
  680. printk("%s: Memory squeeze, dropping packet.n", dev->name);
  681. lp->stats.rx_dropped++;
  682. break;
  683. }
  684. skb_reserve(skb,2);
  685. skb->dev = dev;
  686. /* 'skb->data' points to the start of sk_buff data area. */
  687. isa_memcpy_fromio(skb_put(skb,pkt_len), data_frame + 10, pkt_len);
  688. skb->protocol=eth_type_trans(skb,dev);
  689. netif_rx(skb);
  690. dev->last_rx = jiffies;
  691. lp->stats.rx_packets++;
  692. lp->stats.rx_bytes += pkt_len;
  693. }
  694. /* Clear the status word and set End-of-List on the rx frame. */
  695. isa_writew(0,read_frame);
  696. isa_writew(0xC000,read_frame+2);
  697. /* Clear the end-of-list on the prev. RFD. */
  698. isa_writew(0x0000,dev->mem_start + rx_tail + 2);
  699. rx_tail = rx_head;
  700. rx_head = next_rx_frame;
  701. if (--boguscount == 0)
  702. break;
  703. }
  704. lp->rx_head = rx_head;
  705. lp->rx_tail = rx_tail;
  706. }
  707. /**
  708.  * netdev_ethtool_ioctl: Handle network interface SIOCETHTOOL ioctls
  709.  * @dev: network interface on which out-of-band action is to be performed
  710.  * @useraddr: userspace address to which data is to be read and returned
  711.  *
  712.  * Process the various commands of the SIOCETHTOOL interface.
  713.  */
  714. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  715. {
  716. u32 ethcmd;
  717. /* dev_ioctl() in ../../net/core/dev.c has already checked
  718.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  719. if (get_user(ethcmd, (u32 *)useraddr))
  720. return -EFAULT;
  721. switch (ethcmd) {
  722. case ETHTOOL_GDRVINFO: {
  723. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  724. strcpy (info.driver, DRV_NAME);
  725. strcpy (info.version, DRV_VERSION);
  726. sprintf(info.bus_info, "ISA 0x%lx", dev->base_addr);
  727. if (copy_to_user (useraddr, &info, sizeof (info)))
  728. return -EFAULT;
  729. return 0;
  730. }
  731. /* get message-level */
  732. case ETHTOOL_GMSGLVL: {
  733. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  734. edata.data = debug;
  735. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  736. return -EFAULT;
  737. return 0;
  738. }
  739. /* set message-level */
  740. case ETHTOOL_SMSGLVL: {
  741. struct ethtool_value edata;
  742. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  743. return -EFAULT;
  744. debug = edata.data;
  745. return 0;
  746. }
  747. default:
  748. break;
  749. }
  750. return -EOPNOTSUPP;
  751. }
  752. /**
  753.  * netdev_ioctl: Handle network interface ioctls
  754.  * @dev: network interface on which out-of-band action is to be performed
  755.  * @rq: user request data
  756.  * @cmd: command issued by user
  757.  *
  758.  * Process the various out-of-band ioctls passed to this driver.
  759.  */
  760. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  761. {
  762. int rc = 0;
  763. switch (cmd) {
  764. case SIOCETHTOOL:
  765. rc = netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  766. break;
  767. default:
  768. rc = -EOPNOTSUPP;
  769. break;
  770. }
  771. return rc;
  772. }
  773.  
  774. #ifdef MODULE
  775. static struct net_device dev_3c507;
  776. static int io = 0x300;
  777. static int irq;
  778. MODULE_PARM(io, "i");
  779. MODULE_PARM(irq, "i");
  780. MODULE_PARM_DESC(io, "EtherLink16 I/O base address");
  781. MODULE_PARM_DESC(irq, "(ignored)");
  782. int init_module(void)
  783. {
  784. if (io == 0)
  785. printk("3c507: You should not use auto-probing with insmod!n");
  786. dev_3c507.base_addr = io;
  787. dev_3c507.irq       = irq;
  788. dev_3c507.init     = el16_probe;
  789. if (register_netdev(&dev_3c507) != 0) {
  790. printk("3c507: register_netdev() returned non-zero.n");
  791. return -EIO;
  792. }
  793. return 0;
  794. }
  795. void
  796. cleanup_module(void)
  797. {
  798. unregister_netdev(&dev_3c507);
  799. kfree(dev_3c507.priv);
  800. dev_3c507.priv = NULL;
  801. /* If we don't do this, we can't re-insmod it later. */
  802. free_irq(dev_3c507.irq, &dev_3c507);
  803. release_region(dev_3c507.base_addr, EL16_IO_EXTENT);
  804. }
  805. #endif /* MODULE */
  806. MODULE_LICENSE("GPL");
  807. /*
  808.  * Local variables:
  809.  *  compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -I/usr/src/linux/drivers/net -Wall -Wstrict-prototypes -O6 -m486 -c 3c507.c"
  810.  *  version-control: t
  811.  *  kept-new-versions: 5
  812.  *  tab-width: 4
  813.  *  c-indent-level: 4
  814.  * End:
  815.  */