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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Linux Ethernet device driver for the 3Com Etherlink Plus (3C505)
  3.  *      By Craig Southeren, Juha Laiho and Philip Blundell
  4.  *
  5.  * 3c505.c      This module implements an interface to the 3Com
  6.  *              Etherlink Plus (3c505) Ethernet card. Linux device
  7.  *              driver interface reverse engineered from the Linux 3C509
  8.  *              device drivers. Some 3C505 information gleaned from
  9.  *              the Crynwr packet driver. Still this driver would not
  10.  *              be here without 3C505 technical reference provided by
  11.  *              3Com.
  12.  *
  13.  * $Id: 3c505.c,v 1.10 1996/04/16 13:06:27 phil Exp $
  14.  *
  15.  * Authors:     Linux 3c505 device driver by
  16.  *                      Craig Southeren, <craigs@ineluki.apana.org.au>
  17.  *              Final debugging by
  18.  *                      Andrew Tridgell, <tridge@nimbus.anu.edu.au>
  19.  *              Auto irq/address, tuning, cleanup and v1.1.4+ kernel mods by
  20.  *                      Juha Laiho, <jlaiho@ichaos.nullnet.fi>
  21.  *              Linux 3C509 driver by
  22.  *                      Donald Becker, <becker@super.org>
  23.  * (Now at <becker@scyld.com>)
  24.  *              Crynwr packet driver by
  25.  *                      Krishnan Gopalan and Gregg Stefancik,
  26.  *                      Clemson University Engineering Computer Operations.
  27.  *                      Portions of the code have been adapted from the 3c505
  28.  *                         driver for NCSA Telnet by Bruce Orchard and later
  29.  *                         modified by Warren Van Houten and krus@diku.dk.
  30.  *              3C505 technical information provided by
  31.  *                      Terry Murphy, of 3Com Network Adapter Division
  32.  *              Linux 1.3.0 changes by
  33.  *                      Alan Cox <Alan.Cox@linux.org>
  34.  *              More debugging, DMA support, currently maintained by
  35.  *                      Philip Blundell <Philip.Blundell@pobox.com>
  36.  *              Multicard/soft configurable dma channel/rev 2 hardware support
  37.  *                      by Christopher Collins <ccollins@pcug.org.au>
  38.  * Ethtool support (jgarzik), 11/17/2001
  39.  */
  40. #define DRV_NAME "3c505"
  41. #define DRV_VERSION "1.10a"
  42. /* Theory of operation:
  43.  *
  44.  * The 3c505 is quite an intelligent board.  All communication with it is done
  45.  * by means of Primary Command Blocks (PCBs); these are transferred using PIO
  46.  * through the command register.  The card has 256k of on-board RAM, which is
  47.  * used to buffer received packets.  It might seem at first that more buffers
  48.  * are better, but in fact this isn't true.  From my tests, it seems that
  49.  * more than about 10 buffers are unnecessary, and there is a noticeable
  50.  * performance hit in having more active on the card.  So the majority of the
  51.  * card's memory isn't, in fact, used.  Sadly, the card only has one transmit
  52.  * buffer and, short of loading our own firmware into it (which is what some
  53.  * drivers resort to) there's nothing we can do about this.
  54.  *
  55.  * We keep up to 4 "receive packet" commands active on the board at a time.
  56.  * When a packet comes in, so long as there is a receive command active, the
  57.  * board will send us a "packet received" PCB and then add the data for that
  58.  * packet to the DMA queue.  If a DMA transfer is not already in progress, we
  59.  * set one up to start uploading the data.  We have to maintain a list of
  60.  * backlogged receive packets, because the card may decide to tell us about
  61.  * a newly-arrived packet at any time, and we may not be able to start a DMA
  62.  * transfer immediately (ie one may already be going on).  We can't NAK the
  63.  * PCB, because then it would throw the packet away.
  64.  *
  65.  * Trying to send a PCB to the card at the wrong moment seems to have bad
  66.  * effects.  If we send it a transmit PCB while a receive DMA is happening,
  67.  * it will just NAK the PCB and so we will have wasted our time.  Worse, it
  68.  * sometimes seems to interrupt the transfer.  The majority of the low-level
  69.  * code is protected by one huge semaphore -- "busy" -- which is set whenever
  70.  * it probably isn't safe to do anything to the card.  The receive routine
  71.  * must gain a lock on "busy" before it can start a DMA transfer, and the
  72.  * transmit routine must gain a lock before it sends the first PCB to the card.
  73.  * The send_pcb() routine also has an internal semaphore to protect it against
  74.  * being re-entered (which would be disastrous) -- this is needed because
  75.  * several things can happen asynchronously (re-priming the receiver and
  76.  * asking the card for statistics, for example).  send_pcb() will also refuse
  77.  * to talk to the card at all if a DMA upload is happening.  The higher-level
  78.  * networking code will reschedule a later retry if some part of the driver
  79.  * is blocked.  In practice, this doesn't seem to happen very often.
  80.  */
  81. /* This driver may now work with revision 2.x hardware, since all the read
  82.  * operations on the HCR have been removed (we now keep our own softcopy).
  83.  * But I don't have an old card to test it on.
  84.  *
  85.  * This has had the bad effect that the autoprobe routine is now a bit
  86.  * less friendly to other devices.  However, it was never very good.
  87.  * before, so I doubt it will hurt anybody.
  88.  */
  89. /* The driver is a mess.  I took Craig's and Juha's code, and hacked it firstly
  90.  * to make it more reliable, and secondly to add DMA mode.  Many things could
  91.  * probably be done better; the concurrency protection is particularly awful.
  92.  */
  93. #include <linux/module.h>
  94. #include <linux/kernel.h>
  95. #include <linux/sched.h>
  96. #include <linux/string.h>
  97. #include <linux/interrupt.h>
  98. #include <linux/ptrace.h>
  99. #include <linux/errno.h>
  100. #include <linux/in.h>
  101. #include <linux/slab.h>
  102. #include <linux/ioport.h>
  103. #include <linux/spinlock.h>
  104. #include <linux/ethtool.h>
  105. #include <asm/uaccess.h>
  106. #include <asm/bitops.h>
  107. #include <asm/io.h>
  108. #include <asm/dma.h>
  109. #include <linux/netdevice.h>
  110. #include <linux/etherdevice.h>
  111. #include <linux/skbuff.h>
  112. #include <linux/init.h>
  113. #include "3c505.h"
  114. /*********************************************************
  115.  *
  116.  *  define debug messages here as common strings to reduce space
  117.  *
  118.  *********************************************************/
  119. static const char filename[] = __FILE__;
  120. static const char timeout_msg[] = "*** timeout at %s:%s (line %d) ***n";
  121. #define TIMEOUT_MSG(lineno) 
  122. printk(timeout_msg, filename,__FUNCTION__,(lineno))
  123. static const char invalid_pcb_msg[] =
  124. "*** invalid pcb length %d at %s:%s (line %d) ***n";
  125. #define INVALID_PCB_MSG(len) 
  126. printk(invalid_pcb_msg, (len),filename,__FUNCTION__,__LINE__)
  127. static char search_msg[] __initdata = "%s: Looking for 3c505 adapter at address %#x...";
  128. static char stilllooking_msg[] __initdata = "still looking...";
  129. static char found_msg[] __initdata = "found.n";
  130. static char notfound_msg[] __initdata = "not found (reason = %d)n";
  131. static char couldnot_msg[] __initdata = "%s: 3c505 not foundn";
  132. /*********************************************************
  133.  *
  134.  *  various other debug stuff
  135.  *
  136.  *********************************************************/
  137. #ifdef ELP_DEBUG
  138. static int elp_debug = ELP_DEBUG;
  139. #else
  140. static int elp_debug;
  141. #endif
  142. #define debug elp_debug
  143. /*
  144.  *  0 = no messages (well, some)
  145.  *  1 = messages when high level commands performed
  146.  *  2 = messages when low level commands performed
  147.  *  3 = messages when interrupts received
  148.  */
  149. /*****************************************************************
  150.  *
  151.  * useful macros
  152.  *
  153.  *****************************************************************/
  154. #ifndef TRUE
  155. #define TRUE 1
  156. #endif
  157. #ifndef FALSE
  158. #define FALSE 0
  159. #endif
  160. /*****************************************************************
  161.  *
  162.  * List of I/O-addresses we try to auto-sense
  163.  * Last element MUST BE 0!
  164.  *****************************************************************/
  165. static int addr_list[] __initdata = {0x300, 0x280, 0x310, 0};
  166. /* Dma Memory related stuff */
  167. static unsigned long dma_mem_alloc(int size)
  168. {
  169. int order = get_order(size);
  170. return __get_dma_pages(GFP_KERNEL, order);
  171. }
  172. /*****************************************************************
  173.  *
  174.  * Functions for I/O (note the inline !)
  175.  *
  176.  *****************************************************************/
  177. static inline unsigned char inb_status(unsigned int base_addr)
  178. {
  179. return inb(base_addr + PORT_STATUS);
  180. }
  181. static inline int inb_command(unsigned int base_addr)
  182. {
  183. return inb(base_addr + PORT_COMMAND);
  184. }
  185. static inline void outb_control(unsigned char val, struct net_device *dev)
  186. {
  187. outb(val, dev->base_addr + PORT_CONTROL);
  188. ((elp_device *)(dev->priv))->hcr_val = val;
  189. }
  190. #define HCR_VAL(x)   (((elp_device *)((x)->priv))->hcr_val)
  191. static inline void outb_command(unsigned char val, unsigned int base_addr)
  192. {
  193. outb(val, base_addr + PORT_COMMAND);
  194. }
  195. static inline unsigned int inw_data(unsigned int base_addr)
  196. {
  197. return inw(base_addr + PORT_DATA);
  198. }
  199. static inline void outw_data(unsigned int val, unsigned int base_addr)
  200. {
  201. outw(val, base_addr + PORT_DATA);
  202. }
  203. static inline unsigned int backlog_next(unsigned int n)
  204. {
  205. return (n + 1) % BACKLOG_SIZE;
  206. }
  207. /*****************************************************************
  208.  *
  209.  *  useful functions for accessing the adapter
  210.  *
  211.  *****************************************************************/
  212. /*
  213.  * use this routine when accessing the ASF bits as they are
  214.  * changed asynchronously by the adapter
  215.  */
  216. /* get adapter PCB status */
  217. #define GET_ASF(addr) 
  218. (get_status(addr)&ASF_PCB_MASK)
  219. static inline int get_status(unsigned int base_addr)
  220. {
  221. int timeout = jiffies + 10*HZ/100;
  222. register int stat1;
  223. do {
  224. stat1 = inb_status(base_addr);
  225. } while (stat1 != inb_status(base_addr) && time_before(jiffies, timeout));
  226. if (time_after_eq(jiffies, timeout))
  227. TIMEOUT_MSG(__LINE__);
  228. return stat1;
  229. }
  230. static inline void set_hsf(struct net_device *dev, int hsf)
  231. {
  232. cli();
  233. outb_control((HCR_VAL(dev) & ~HSF_PCB_MASK) | hsf, dev);
  234. sti();
  235. }
  236. static int start_receive(struct net_device *, pcb_struct *);
  237. inline static void adapter_reset(struct net_device *dev)
  238. {
  239. int timeout;
  240. elp_device *adapter = dev->priv;
  241. unsigned char orig_hcr = adapter->hcr_val;
  242. outb_control(0, dev);
  243. if (inb_status(dev->base_addr) & ACRF) {
  244. do {
  245. inb_command(dev->base_addr);
  246. timeout = jiffies + 2*HZ/100;
  247. while (time_before_eq(jiffies, timeout) && !(inb_status(dev->base_addr) & ACRF));
  248. } while (inb_status(dev->base_addr) & ACRF);
  249. set_hsf(dev, HSF_PCB_NAK);
  250. }
  251. outb_control(adapter->hcr_val | ATTN | DIR, dev);
  252. timeout = jiffies + 1*HZ/100;
  253. while (time_before_eq(jiffies, timeout));
  254. outb_control(adapter->hcr_val & ~ATTN, dev);
  255. timeout = jiffies + 1*HZ/100;
  256. while (time_before_eq(jiffies, timeout));
  257. outb_control(adapter->hcr_val | FLSH, dev);
  258. timeout = jiffies + 1*HZ/100;
  259. while (time_before_eq(jiffies, timeout));
  260. outb_control(adapter->hcr_val & ~FLSH, dev);
  261. timeout = jiffies + 1*HZ/100;
  262. while (time_before_eq(jiffies, timeout));
  263. outb_control(orig_hcr, dev);
  264. if (!start_receive(dev, &adapter->tx_pcb))
  265. printk("%s: start receive command failed n", dev->name);
  266. }
  267. /* Check to make sure that a DMA transfer hasn't timed out.  This should
  268.  * never happen in theory, but seems to occur occasionally if the card gets
  269.  * prodded at the wrong time.
  270.  */
  271. static inline void check_3c505_dma(struct net_device *dev)
  272. {
  273. elp_device *adapter = dev->priv;
  274. if (adapter->dmaing && time_after(jiffies, adapter->current_dma.start_time + 10)) {
  275. unsigned long flags, f;
  276. printk("%s: DMA %s timed out, %d bytes leftn", dev->name, adapter->current_dma.direction ? "download" : "upload", get_dma_residue(dev->dma));
  277. save_flags(flags);
  278. cli();
  279. adapter->dmaing = 0;
  280. adapter->busy = 0;
  281. f=claim_dma_lock();
  282. disable_dma(dev->dma);
  283. release_dma_lock(f);
  284. if (adapter->rx_active)
  285. adapter->rx_active--;
  286. outb_control(adapter->hcr_val & ~(DMAE | TCEN | DIR), dev);
  287. restore_flags(flags);
  288. }
  289. }
  290. /* Primitive functions used by send_pcb() */
  291. static inline unsigned int send_pcb_slow(unsigned int base_addr, unsigned char byte)
  292. {
  293. unsigned int timeout;
  294. outb_command(byte, base_addr);
  295. for (timeout = jiffies + 5*HZ/100; time_before(jiffies, timeout);) {
  296. if (inb_status(base_addr) & HCRE)
  297. return FALSE;
  298. }
  299. printk("3c505: send_pcb_slow timed outn");
  300. return TRUE;
  301. }
  302. static inline unsigned int send_pcb_fast(unsigned int base_addr, unsigned char byte)
  303. {
  304. unsigned int timeout;
  305. outb_command(byte, base_addr);
  306. for (timeout = 0; timeout < 40000; timeout++) {
  307. if (inb_status(base_addr) & HCRE)
  308. return FALSE;
  309. }
  310. printk("3c505: send_pcb_fast timed outn");
  311. return TRUE;
  312. }
  313. /* Check to see if the receiver needs restarting, and kick it if so */
  314. static inline void prime_rx(struct net_device *dev)
  315. {
  316. elp_device *adapter = dev->priv;
  317. while (adapter->rx_active < ELP_RX_PCBS && netif_running(dev)) {
  318. if (!start_receive(dev, &adapter->itx_pcb))
  319. break;
  320. }
  321. }
  322. /*****************************************************************
  323.  *
  324.  * send_pcb
  325.  *   Send a PCB to the adapter.
  326.  *
  327.  * output byte to command reg  --<--+
  328.  * wait until HCRE is non zero      |
  329.  * loop until all bytes sent   -->--+
  330.  * set HSF1 and HSF2 to 1
  331.  * output pcb length
  332.  * wait until ASF give ACK or NAK
  333.  * set HSF1 and HSF2 to 0
  334.  *
  335.  *****************************************************************/
  336. /* This can be quite slow -- the adapter is allowed to take up to 40ms
  337.  * to respond to the initial interrupt.
  338.  *
  339.  * We run initially with interrupts turned on, but with a semaphore set
  340.  * so that nobody tries to re-enter this code.  Once the first byte has
  341.  * gone through, we turn interrupts off and then send the others (the
  342.  * timeout is reduced to 500us).
  343.  */
  344. static int send_pcb(struct net_device *dev, pcb_struct * pcb)
  345. {
  346. int i;
  347. int timeout;
  348. elp_device *adapter = dev->priv;
  349. check_3c505_dma(dev);
  350. if (adapter->dmaing && adapter->current_dma.direction == 0)
  351. return FALSE;
  352. /* Avoid contention */
  353. if (test_and_set_bit(1, &adapter->send_pcb_semaphore)) {
  354. if (elp_debug >= 3) {
  355. printk("%s: send_pcb entered while threadedn", dev->name);
  356. }
  357. return FALSE;
  358. }
  359. /*
  360.  * load each byte into the command register and
  361.  * wait for the HCRE bit to indicate the adapter
  362.  * had read the byte
  363.  */
  364. set_hsf(dev, 0);
  365. if (send_pcb_slow(dev->base_addr, pcb->command))
  366. goto abort;
  367. cli();
  368. if (send_pcb_fast(dev->base_addr, pcb->length))
  369. goto sti_abort;
  370. for (i = 0; i < pcb->length; i++) {
  371. if (send_pcb_fast(dev->base_addr, pcb->data.raw[i]))
  372. goto sti_abort;
  373. }
  374. outb_control(adapter->hcr_val | 3, dev); /* signal end of PCB */
  375. outb_command(2 + pcb->length, dev->base_addr);
  376. /* now wait for the acknowledgement */
  377. sti();
  378. for (timeout = jiffies + 5*HZ/100; time_before(jiffies, timeout);) {
  379. switch (GET_ASF(dev->base_addr)) {
  380. case ASF_PCB_ACK:
  381. adapter->send_pcb_semaphore = 0;
  382. return TRUE;
  383. break;
  384. case ASF_PCB_NAK:
  385. #ifdef ELP_DEBUG
  386. printk(KERN_DEBUG "%s: send_pcb got NAKn", dev->name);
  387. #endif
  388. goto abort;
  389. break;
  390. }
  391. }
  392. if (elp_debug >= 1)
  393. printk("%s: timeout waiting for PCB acknowledge (status %02x)n", dev->name, inb_status(dev->base_addr));
  394.       sti_abort:
  395. sti();
  396.       abort:
  397. adapter->send_pcb_semaphore = 0;
  398. return FALSE;
  399. }
  400. /*****************************************************************
  401.  *
  402.  * receive_pcb
  403.  *   Read a PCB from the adapter
  404.  *
  405.  * wait for ACRF to be non-zero        ---<---+
  406.  * input a byte                               |
  407.  * if ASF1 and ASF2 were not both one         |
  408.  * before byte was read, loop      --->---+
  409.  * set HSF1 and HSF2 for ack
  410.  *
  411.  *****************************************************************/
  412. static int receive_pcb(struct net_device *dev, pcb_struct * pcb)
  413. {
  414. int i, j;
  415. int total_length;
  416. int stat;
  417. int timeout;
  418. elp_device *adapter = dev->priv;
  419. set_hsf(dev, 0);
  420. /* get the command code */
  421. timeout = jiffies + 2*HZ/100;
  422. while (((stat = get_status(dev->base_addr)) & ACRF) == 0 && time_before(jiffies, timeout));
  423. if (time_after_eq(jiffies, timeout)) {
  424. TIMEOUT_MSG(__LINE__);
  425. return FALSE;
  426. }
  427. pcb->command = inb_command(dev->base_addr);
  428. /* read the data length */
  429. timeout = jiffies + 3*HZ/100;
  430. while (((stat = get_status(dev->base_addr)) & ACRF) == 0 && time_before(jiffies, timeout));
  431. if (time_after_eq(jiffies, timeout)) {
  432. TIMEOUT_MSG(__LINE__);
  433. printk("%s: status %02xn", dev->name, stat);
  434. return FALSE;
  435. }
  436. pcb->length = inb_command(dev->base_addr);
  437. if (pcb->length > MAX_PCB_DATA) {
  438. INVALID_PCB_MSG(pcb->length);
  439. adapter_reset(dev);
  440. return FALSE;
  441. }
  442. /* read the data */
  443. cli();
  444. i = 0;
  445. do {
  446. j = 0;
  447. while (((stat = get_status(dev->base_addr)) & ACRF) == 0 && j++ < 20000);
  448. pcb->data.raw[i++] = inb_command(dev->base_addr);
  449. if (i > MAX_PCB_DATA)
  450. INVALID_PCB_MSG(i);
  451. } while ((stat & ASF_PCB_MASK) != ASF_PCB_END && j < 20000);
  452. sti();
  453. if (j >= 20000) {
  454. TIMEOUT_MSG(__LINE__);
  455. return FALSE;
  456. }
  457. /* woops, the last "data" byte was really the length! */
  458. total_length = pcb->data.raw[--i];
  459. /* safety check total length vs data length */
  460. if (total_length != (pcb->length + 2)) {
  461. if (elp_debug >= 2)
  462. printk("%s: mangled PCB receivedn", dev->name);
  463. set_hsf(dev, HSF_PCB_NAK);
  464. return FALSE;
  465. }
  466. if (pcb->command == CMD_RECEIVE_PACKET_COMPLETE) {
  467. if (test_and_set_bit(0, (void *) &adapter->busy)) {
  468. if (backlog_next(adapter->rx_backlog.in) == adapter->rx_backlog.out) {
  469. set_hsf(dev, HSF_PCB_NAK);
  470. printk("%s: PCB rejected, transfer in progress and backlog fulln", dev->name);
  471. pcb->command = 0;
  472. return TRUE;
  473. } else {
  474. pcb->command = 0xff;
  475. }
  476. }
  477. }
  478. set_hsf(dev, HSF_PCB_ACK);
  479. return TRUE;
  480. }
  481. /******************************************************
  482.  *
  483.  *  queue a receive command on the adapter so we will get an
  484.  *  interrupt when a packet is received.
  485.  *
  486.  ******************************************************/
  487. static int start_receive(struct net_device *dev, pcb_struct * tx_pcb)
  488. {
  489. int status;
  490. elp_device *adapter = dev->priv;
  491. if (elp_debug >= 3)
  492. printk("%s: restarting receivern", dev->name);
  493. tx_pcb->command = CMD_RECEIVE_PACKET;
  494. tx_pcb->length = sizeof(struct Rcv_pkt);
  495. tx_pcb->data.rcv_pkt.buf_seg
  496.     = tx_pcb->data.rcv_pkt.buf_ofs = 0; /* Unused */
  497. tx_pcb->data.rcv_pkt.buf_len = 1600;
  498. tx_pcb->data.rcv_pkt.timeout = 0; /* set timeout to zero */
  499. status = send_pcb(dev, tx_pcb);
  500. if (status)
  501. adapter->rx_active++;
  502. return status;
  503. }
  504. /******************************************************
  505.  *
  506.  * extract a packet from the adapter
  507.  * this routine is only called from within the interrupt
  508.  * service routine, so no cli/sti calls are needed
  509.  * note that the length is always assumed to be even
  510.  *
  511.  ******************************************************/
  512. static void receive_packet(struct net_device *dev, int len)
  513. {
  514. int rlen;
  515. elp_device *adapter = dev->priv;
  516. void *target;
  517. struct sk_buff *skb;
  518. unsigned long flags;
  519. rlen = (len + 1) & ~1;
  520. skb = dev_alloc_skb(rlen + 2);
  521. if (!skb) {
  522. printk("%s: memory squeeze, dropping packetn", dev->name);
  523. target = adapter->dma_buffer;
  524. adapter->current_dma.target = NULL;
  525. return;
  526. }
  527. skb_reserve(skb, 2);
  528. target = skb_put(skb, rlen);
  529. if ((unsigned long)(target + rlen) >= MAX_DMA_ADDRESS) {
  530. adapter->current_dma.target = target;
  531. target = adapter->dma_buffer;
  532. } else {
  533. adapter->current_dma.target = NULL;
  534. }
  535. /* if this happens, we die */
  536. if (test_and_set_bit(0, (void *) &adapter->dmaing))
  537. printk("%s: rx blocked, DMA in progress, dir %dn", dev->name, adapter->current_dma.direction);
  538. skb->dev = dev;
  539. adapter->current_dma.direction = 0;
  540. adapter->current_dma.length = rlen;
  541. adapter->current_dma.skb = skb;
  542. adapter->current_dma.start_time = jiffies;
  543. outb_control(adapter->hcr_val | DIR | TCEN | DMAE, dev);
  544. flags=claim_dma_lock();
  545. disable_dma(dev->dma);
  546. clear_dma_ff(dev->dma);
  547. set_dma_mode(dev->dma, 0x04); /* dma read */
  548. set_dma_addr(dev->dma, virt_to_bus(target));
  549. set_dma_count(dev->dma, rlen);
  550. enable_dma(dev->dma);
  551. release_dma_lock(flags);
  552. if (elp_debug >= 3) {
  553. printk("%s: rx DMA transfer startedn", dev->name);
  554. }
  555. if (adapter->rx_active)
  556. adapter->rx_active--;
  557. if (!adapter->busy)
  558. printk("%s: receive_packet called, busy not set.n", dev->name);
  559. }
  560. /******************************************************
  561.  *
  562.  * interrupt handler
  563.  *
  564.  ******************************************************/
  565. static void elp_interrupt(int irq, void *dev_id, struct pt_regs *reg_ptr)
  566. {
  567. int len;
  568. int dlen;
  569. int icount = 0;
  570. struct net_device *dev;
  571. elp_device *adapter;
  572. int timeout;
  573. dev = dev_id;
  574. adapter = (elp_device *) dev->priv;
  575. spin_lock(&adapter->lock);
  576. do {
  577. /*
  578.  * has a DMA transfer finished?
  579.  */
  580. if (inb_status(dev->base_addr) & DONE) {
  581. if (!adapter->dmaing) {
  582. printk("%s: phantom DMA completedn", dev->name);
  583. }
  584. if (elp_debug >= 3) {
  585. printk("%s: %s DMA complete, status %02xn", dev->name, adapter->current_dma.direction ? "tx" : "rx", inb_status(dev->base_addr));
  586. }
  587. outb_control(adapter->hcr_val & ~(DMAE | TCEN | DIR), dev);
  588. if (adapter->current_dma.direction) {
  589. dev_kfree_skb_irq(adapter->current_dma.skb);
  590. } else {
  591. struct sk_buff *skb = adapter->current_dma.skb;
  592. if (skb) {
  593. if (adapter->current_dma.target) {
  594.    /* have already done the skb_put() */
  595.    memcpy(adapter->current_dma.target, adapter->dma_buffer, adapter->current_dma.length);
  596. }
  597. skb->protocol = eth_type_trans(skb,dev);
  598. adapter->stats.rx_bytes += skb->len;
  599. netif_rx(skb);
  600. dev->last_rx = jiffies;
  601. }
  602. }
  603. adapter->dmaing = 0;
  604. if (adapter->rx_backlog.in != adapter->rx_backlog.out) {
  605. int t = adapter->rx_backlog.length[adapter->rx_backlog.out];
  606. adapter->rx_backlog.out = backlog_next(adapter->rx_backlog.out);
  607. if (elp_debug >= 2)
  608. printk("%s: receiving backlogged packet (%d)n", dev->name, t);
  609. receive_packet(dev, t);
  610. } else {
  611. adapter->busy = 0;
  612. }
  613. } else {
  614. /* has one timed out? */
  615. check_3c505_dma(dev);
  616. }
  617. /*
  618.  * receive a PCB from the adapter
  619.  */
  620. timeout = jiffies + 3*HZ/100;
  621. while ((inb_status(dev->base_addr) & ACRF) != 0 && time_before(jiffies, timeout)) {
  622. if (receive_pcb(dev, &adapter->irx_pcb)) {
  623. switch (adapter->irx_pcb.command) 
  624. {
  625. case 0:
  626. break;
  627. /*
  628.  * received a packet - this must be handled fast
  629.  */
  630. case 0xff:
  631. case CMD_RECEIVE_PACKET_COMPLETE:
  632. /* if the device isn't open, don't pass packets up the stack */
  633. if (!netif_running(dev))
  634. break;
  635. len = adapter->irx_pcb.data.rcv_resp.pkt_len;
  636. dlen = adapter->irx_pcb.data.rcv_resp.buf_len;
  637. if (adapter->irx_pcb.data.rcv_resp.timeout != 0) {
  638. printk(KERN_ERR "%s: interrupt - packet not received correctlyn", dev->name);
  639. } else {
  640. if (elp_debug >= 3) {
  641. printk("%s: interrupt - packet received of length %i (%i)n", dev->name, len, dlen);
  642. }
  643. if (adapter->irx_pcb.command == 0xff) {
  644. if (elp_debug >= 2)
  645. printk("%s: adding packet to backlog (len = %d)n", dev->name, dlen);
  646. adapter->rx_backlog.length[adapter->rx_backlog.in] = dlen;
  647. adapter->rx_backlog.in = backlog_next(adapter->rx_backlog.in);
  648. } else {
  649. receive_packet(dev, dlen);
  650. }
  651. if (elp_debug >= 3)
  652. printk("%s: packet receivedn", dev->name);
  653. }
  654. break;
  655. /*
  656.  * 82586 configured correctly
  657.  */
  658. case CMD_CONFIGURE_82586_RESPONSE:
  659. adapter->got[CMD_CONFIGURE_82586] = 1;
  660. if (elp_debug >= 3)
  661. printk("%s: interrupt - configure response receivedn", dev->name);
  662. break;
  663. /*
  664.  * Adapter memory configuration
  665.  */
  666. case CMD_CONFIGURE_ADAPTER_RESPONSE:
  667. adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] = 1;
  668. if (elp_debug >= 3)
  669. printk("%s: Adapter memory configuration %s.n", dev->name,
  670.        adapter->irx_pcb.data.failed ? "failed" : "succeeded");
  671. break;
  672. /*
  673.  * Multicast list loading
  674.  */
  675. case CMD_LOAD_MULTICAST_RESPONSE:
  676. adapter->got[CMD_LOAD_MULTICAST_LIST] = 1;
  677. if (elp_debug >= 3)
  678. printk("%s: Multicast address list loading %s.n", dev->name,
  679.        adapter->irx_pcb.data.failed ? "failed" : "succeeded");
  680. break;
  681. /*
  682.  * Station address setting
  683.  */
  684. case CMD_SET_ADDRESS_RESPONSE:
  685. adapter->got[CMD_SET_STATION_ADDRESS] = 1;
  686. if (elp_debug >= 3)
  687. printk("%s: Ethernet address setting %s.n", dev->name,
  688.        adapter->irx_pcb.data.failed ? "failed" : "succeeded");
  689. break;
  690. /*
  691.  * received board statistics
  692.  */
  693. case CMD_NETWORK_STATISTICS_RESPONSE:
  694. adapter->stats.rx_packets += adapter->irx_pcb.data.netstat.tot_recv;
  695. adapter->stats.tx_packets += adapter->irx_pcb.data.netstat.tot_xmit;
  696. adapter->stats.rx_crc_errors += adapter->irx_pcb.data.netstat.err_CRC;
  697. adapter->stats.rx_frame_errors += adapter->irx_pcb.data.netstat.err_align;
  698. adapter->stats.rx_fifo_errors += adapter->irx_pcb.data.netstat.err_ovrrun;
  699. adapter->stats.rx_over_errors += adapter->irx_pcb.data.netstat.err_res;
  700. adapter->got[CMD_NETWORK_STATISTICS] = 1;
  701. if (elp_debug >= 3)
  702. printk("%s: interrupt - statistics response receivedn", dev->name);
  703. break;
  704. /*
  705.  * sent a packet
  706.  */
  707. case CMD_TRANSMIT_PACKET_COMPLETE:
  708. if (elp_debug >= 3)
  709. printk("%s: interrupt - packet sentn", dev->name);
  710. if (!netif_running(dev))
  711. break;
  712. switch (adapter->irx_pcb.data.xmit_resp.c_stat) {
  713. case 0xffff:
  714. adapter->stats.tx_aborted_errors++;
  715. printk(KERN_INFO "%s: transmit timed out, network cable problem?n", dev->name);
  716. break;
  717. case 0xfffe:
  718. adapter->stats.tx_fifo_errors++;
  719. printk(KERN_INFO "%s: transmit timed out, FIFO underrunn", dev->name);
  720. break;
  721. }
  722. netif_wake_queue(dev);
  723. break;
  724. /*
  725.  * some unknown PCB
  726.  */
  727. default:
  728. printk(KERN_DEBUG "%s: unknown PCB received - %2.2xn", dev->name, adapter->irx_pcb.command);
  729. break;
  730. }
  731. } else {
  732. printk("%s: failed to read PCB on interruptn", dev->name);
  733. adapter_reset(dev);
  734. }
  735. }
  736. } while (icount++ < 5 && (inb_status(dev->base_addr) & (ACRF | DONE)));
  737. prime_rx(dev);
  738. /*
  739.  * indicate no longer in interrupt routine
  740.  */
  741. spin_unlock(&adapter->lock);
  742. }
  743. /******************************************************
  744.  *
  745.  * open the board
  746.  *
  747.  ******************************************************/
  748. static int elp_open(struct net_device *dev)
  749. {
  750. elp_device *adapter;
  751. int retval;
  752. adapter = dev->priv;
  753. if (elp_debug >= 3)
  754. printk("%s: request to open devicen", dev->name);
  755. /*
  756.  * make sure we actually found the device
  757.  */
  758. if (adapter == NULL) {
  759. printk("%s: Opening a non-existent physical devicen", dev->name);
  760. return -EAGAIN;
  761. }
  762. /*
  763.  * disable interrupts on the board
  764.  */
  765. outb_control(0, dev);
  766. /*
  767.  * clear any pending interrupts
  768.  */
  769. inb_command(dev->base_addr);
  770. adapter_reset(dev);
  771. /*
  772.  * no receive PCBs active
  773.  */
  774. adapter->rx_active = 0;
  775. adapter->busy = 0;
  776. adapter->send_pcb_semaphore = 0;
  777. adapter->rx_backlog.in = 0;
  778. adapter->rx_backlog.out = 0;
  779. spin_lock_init(&adapter->lock);
  780. /*
  781.  * install our interrupt service routine
  782.  */
  783. if ((retval = request_irq(dev->irq, &elp_interrupt, 0, dev->name, dev))) {
  784. printk(KERN_ERR "%s: could not allocate IRQ%dn", dev->name, dev->irq);
  785. return retval;
  786. }
  787. if ((retval = request_dma(dev->dma, dev->name))) {
  788. free_irq(dev->irq, dev);
  789. printk(KERN_ERR "%s: could not allocate DMA%d channeln", dev->name, dev->dma);
  790. return retval;
  791. }
  792. adapter->dma_buffer = (void *) dma_mem_alloc(DMA_BUFFER_SIZE);
  793. if (!adapter->dma_buffer) {
  794. printk(KERN_ERR "%s: could not allocate DMA buffern", dev->name);
  795. free_dma(dev->dma);
  796. free_irq(dev->irq, dev);
  797. return -ENOMEM;
  798. }
  799. adapter->dmaing = 0;
  800. /*
  801.  * enable interrupts on the board
  802.  */
  803. outb_control(CMDE, dev);
  804. /*
  805.  * configure adapter memory: we need 10 multicast addresses, default==0
  806.  */
  807. if (elp_debug >= 3)
  808. printk(KERN_DEBUG "%s: sending 3c505 memory configuration commandn", dev->name);
  809. adapter->tx_pcb.command = CMD_CONFIGURE_ADAPTER_MEMORY;
  810. adapter->tx_pcb.data.memconf.cmd_q = 10;
  811. adapter->tx_pcb.data.memconf.rcv_q = 20;
  812. adapter->tx_pcb.data.memconf.mcast = 10;
  813. adapter->tx_pcb.data.memconf.frame = 20;
  814. adapter->tx_pcb.data.memconf.rcv_b = 20;
  815. adapter->tx_pcb.data.memconf.progs = 0;
  816. adapter->tx_pcb.length = sizeof(struct Memconf);
  817. adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] = 0;
  818. if (!send_pcb(dev, &adapter->tx_pcb))
  819. printk("%s: couldn't send memory configuration commandn", dev->name);
  820. else {
  821. int timeout = jiffies + TIMEOUT;
  822. while (adapter->got[CMD_CONFIGURE_ADAPTER_MEMORY] == 0 && time_before(jiffies, timeout));
  823. if (time_after_eq(jiffies, timeout))
  824. TIMEOUT_MSG(__LINE__);
  825. }
  826. /*
  827.  * configure adapter to receive broadcast messages and wait for response
  828.  */
  829. if (elp_debug >= 3)
  830. printk("%s: sending 82586 configure commandn", dev->name);
  831. adapter->tx_pcb.command = CMD_CONFIGURE_82586;
  832. adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_BROAD;
  833. adapter->tx_pcb.length = 2;
  834. adapter->got[CMD_CONFIGURE_82586] = 0;
  835. if (!send_pcb(dev, &adapter->tx_pcb))
  836. printk("%s: couldn't send 82586 configure commandn", dev->name);
  837. else {
  838. int timeout = jiffies + TIMEOUT;
  839. while (adapter->got[CMD_CONFIGURE_82586] == 0 && time_before(jiffies, timeout));
  840. if (time_after_eq(jiffies, timeout))
  841. TIMEOUT_MSG(__LINE__);
  842. }
  843. /* enable burst-mode DMA */
  844. /* outb(0x1, dev->base_addr + PORT_AUXDMA); */
  845. /*
  846.  * queue receive commands to provide buffering
  847.  */
  848. prime_rx(dev);
  849. if (elp_debug >= 3)
  850. printk("%s: %d receive PCBs activen", dev->name, adapter->rx_active);
  851. /*
  852.  * device is now officially open!
  853.  */
  854. netif_start_queue(dev);
  855. return 0;
  856. }
  857. /******************************************************
  858.  *
  859.  * send a packet to the adapter
  860.  *
  861.  ******************************************************/
  862. static int send_packet(struct net_device *dev, struct sk_buff *skb)
  863. {
  864. elp_device *adapter = dev->priv;
  865. unsigned long target;
  866. unsigned long flags;
  867. /*
  868.  * make sure the length is even and no shorter than 60 bytes
  869.  */
  870. unsigned int nlen = (((skb->len < 60) ? 60 : skb->len) + 1) & (~1);
  871. if (test_and_set_bit(0, (void *) &adapter->busy)) {
  872. if (elp_debug >= 2)
  873. printk("%s: transmit blockedn", dev->name);
  874. return FALSE;
  875. }
  876. adapter->stats.tx_bytes += nlen;
  877. /*
  878.  * send the adapter a transmit packet command. Ignore segment and offset
  879.  * and make sure the length is even
  880.  */
  881. adapter->tx_pcb.command = CMD_TRANSMIT_PACKET;
  882. adapter->tx_pcb.length = sizeof(struct Xmit_pkt);
  883. adapter->tx_pcb.data.xmit_pkt.buf_ofs
  884.     = adapter->tx_pcb.data.xmit_pkt.buf_seg = 0; /* Unused */
  885. adapter->tx_pcb.data.xmit_pkt.pkt_len = nlen;
  886. if (!send_pcb(dev, &adapter->tx_pcb)) {
  887. adapter->busy = 0;
  888. return FALSE;
  889. }
  890. /* if this happens, we die */
  891. if (test_and_set_bit(0, (void *) &adapter->dmaing))
  892. printk("%s: tx: DMA %d in progressn", dev->name, adapter->current_dma.direction);
  893. adapter->current_dma.direction = 1;
  894. adapter->current_dma.start_time = jiffies;
  895. if ((unsigned long)(skb->data + nlen) >= MAX_DMA_ADDRESS) {
  896. memcpy(adapter->dma_buffer, skb->data, nlen);
  897. target = virt_to_bus(adapter->dma_buffer);
  898. }
  899. else {
  900. target = virt_to_bus(skb->data);
  901. }
  902. adapter->current_dma.skb = skb;
  903. flags=claim_dma_lock();
  904. disable_dma(dev->dma);
  905. clear_dma_ff(dev->dma);
  906. set_dma_mode(dev->dma, 0x48); /* dma memory -> io */
  907. set_dma_addr(dev->dma, target);
  908. set_dma_count(dev->dma, nlen);
  909. outb_control(adapter->hcr_val | DMAE | TCEN, dev);
  910. enable_dma(dev->dma);
  911. release_dma_lock(flags);
  912. if (elp_debug >= 3)
  913. printk("%s: DMA transfer startedn", dev->name);
  914. return TRUE;
  915. }
  916. /*
  917.  * The upper layer thinks we timed out
  918.  */
  919.  
  920. static void elp_timeout(struct net_device *dev)
  921. {
  922. elp_device *adapter = dev->priv;
  923. int stat;
  924. stat = inb_status(dev->base_addr);
  925. printk(KERN_WARNING "%s: transmit timed out, lost %s?n", dev->name, (stat & ACRF) ? "interrupt" : "command");
  926. if (elp_debug >= 1)
  927. printk("%s: status %#02xn", dev->name, stat);
  928. dev->trans_start = jiffies;
  929. adapter->stats.tx_dropped++;
  930. netif_wake_queue(dev);
  931. }
  932. /******************************************************
  933.  *
  934.  * start the transmitter
  935.  *    return 0 if sent OK, else return 1
  936.  *
  937.  ******************************************************/
  938. static int elp_start_xmit(struct sk_buff *skb, struct net_device *dev)
  939. {
  940. unsigned long flags;
  941. elp_device *adapter = dev->priv;
  942. spin_lock_irqsave(&adapter->lock, flags);
  943. check_3c505_dma(dev);
  944. if (elp_debug >= 3)
  945. printk("%s: request to send packet of length %dn", dev->name, (int) skb->len);
  946. netif_stop_queue(dev);
  947. /*
  948.  * send the packet at skb->data for skb->len
  949.  */
  950. if (!send_packet(dev, skb)) {
  951. if (elp_debug >= 2) {
  952. printk("%s: failed to transmit packetn", dev->name);
  953. }
  954. spin_unlock_irqrestore(&adapter->lock, flags);
  955. return 1;
  956. }
  957. if (elp_debug >= 3)
  958. printk("%s: packet of length %d sentn", dev->name, (int) skb->len);
  959. /*
  960.  * start the transmit timeout
  961.  */
  962. dev->trans_start = jiffies;
  963. prime_rx(dev);
  964. spin_unlock_irqrestore(&adapter->lock, flags);
  965. netif_start_queue(dev);
  966. return 0;
  967. }
  968. /******************************************************
  969.  *
  970.  * return statistics on the board
  971.  *
  972.  ******************************************************/
  973. static struct net_device_stats *elp_get_stats(struct net_device *dev)
  974. {
  975. elp_device *adapter = (elp_device *) dev->priv;
  976. if (elp_debug >= 3)
  977. printk("%s: request for statsn", dev->name);
  978. /* If the device is closed, just return the latest stats we have,
  979.    - we cannot ask from the adapter without interrupts */
  980. if (!netif_running(dev))
  981. return &adapter->stats;
  982. /* send a get statistics command to the board */
  983. adapter->tx_pcb.command = CMD_NETWORK_STATISTICS;
  984. adapter->tx_pcb.length = 0;
  985. adapter->got[CMD_NETWORK_STATISTICS] = 0;
  986. if (!send_pcb(dev, &adapter->tx_pcb))
  987. printk("%s: couldn't send get statistics commandn", dev->name);
  988. else {
  989. int timeout = jiffies + TIMEOUT;
  990. while (adapter->got[CMD_NETWORK_STATISTICS] == 0 && time_before(jiffies, timeout));
  991. if (time_after_eq(jiffies, timeout)) {
  992. TIMEOUT_MSG(__LINE__);
  993. return &adapter->stats;
  994. }
  995. }
  996. /* statistics are now up to date */
  997. return &adapter->stats;
  998. }
  999. /******************************************************
  1000.  *
  1001.  * close the board
  1002.  *
  1003.  ******************************************************/
  1004. static int elp_close(struct net_device *dev)
  1005. {
  1006. elp_device *adapter;
  1007. adapter = dev->priv;
  1008. if (elp_debug >= 3)
  1009. printk("%s: request to close devicen", dev->name);
  1010. netif_stop_queue(dev);
  1011. /* Someone may request the device statistic information even when
  1012.  * the interface is closed. The following will update the statistics
  1013.  * structure in the driver, so we'll be able to give current statistics.
  1014.  */
  1015. (void) elp_get_stats(dev);
  1016. /*
  1017.  * disable interrupts on the board
  1018.  */
  1019. outb_control(0, dev);
  1020. /*
  1021.  * release the IRQ
  1022.  */
  1023. free_irq(dev->irq, dev);
  1024. free_dma(dev->dma);
  1025. free_pages((unsigned long) adapter->dma_buffer, get_order(DMA_BUFFER_SIZE));
  1026. return 0;
  1027. }
  1028. /************************************************************
  1029.  *
  1030.  * Set multicast list
  1031.  * num_addrs==0: clear mc_list
  1032.  * num_addrs==-1: set promiscuous mode
  1033.  * num_addrs>0: set mc_list
  1034.  *
  1035.  ************************************************************/
  1036. static void elp_set_mc_list(struct net_device *dev)
  1037. {
  1038. elp_device *adapter = (elp_device *) dev->priv;
  1039. struct dev_mc_list *dmi = dev->mc_list;
  1040. int i;
  1041. unsigned long flags;
  1042. if (elp_debug >= 3)
  1043. printk("%s: request to set multicast listn", dev->name);
  1044. spin_lock_irqsave(&adapter->lock, flags);
  1045. if (!(dev->flags & (IFF_PROMISC | IFF_ALLMULTI))) {
  1046. /* send a "load multicast list" command to the board, max 10 addrs/cmd */
  1047. /* if num_addrs==0 the list will be cleared */
  1048. adapter->tx_pcb.command = CMD_LOAD_MULTICAST_LIST;
  1049. adapter->tx_pcb.length = 6 * dev->mc_count;
  1050. for (i = 0; i < dev->mc_count; i++) {
  1051. memcpy(adapter->tx_pcb.data.multicast[i], dmi->dmi_addr, 6);
  1052. dmi = dmi->next;
  1053. }
  1054. adapter->got[CMD_LOAD_MULTICAST_LIST] = 0;
  1055. if (!send_pcb(dev, &adapter->tx_pcb))
  1056. printk("%s: couldn't send set_multicast commandn", dev->name);
  1057. else {
  1058. int timeout = jiffies + TIMEOUT;
  1059. while (adapter->got[CMD_LOAD_MULTICAST_LIST] == 0 && time_before(jiffies, timeout));
  1060. if (time_after_eq(jiffies, timeout)) {
  1061. TIMEOUT_MSG(__LINE__);
  1062. }
  1063. }
  1064. if (dev->mc_count)
  1065. adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_BROAD | RECV_MULTI;
  1066. else /* num_addrs == 0 */
  1067. adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_BROAD;
  1068. } else
  1069. adapter->tx_pcb.data.configure = NO_LOOPBACK | RECV_PROMISC;
  1070. /*
  1071.  * configure adapter to receive messages (as specified above)
  1072.  * and wait for response
  1073.  */
  1074. if (elp_debug >= 3)
  1075. printk("%s: sending 82586 configure commandn", dev->name);
  1076. adapter->tx_pcb.command = CMD_CONFIGURE_82586;
  1077. adapter->tx_pcb.length = 2;
  1078. adapter->got[CMD_CONFIGURE_82586] = 0;
  1079. if (!send_pcb(dev, &adapter->tx_pcb))
  1080. {
  1081. spin_unlock_irqrestore(&adapter->lock, flags);
  1082. printk("%s: couldn't send 82586 configure commandn", dev->name);
  1083. }
  1084. else {
  1085. int timeout = jiffies + TIMEOUT;
  1086. spin_unlock_irqrestore(&adapter->lock, flags);
  1087. while (adapter->got[CMD_CONFIGURE_82586] == 0 && time_before(jiffies, timeout));
  1088. if (time_after_eq(jiffies, timeout))
  1089. TIMEOUT_MSG(__LINE__);
  1090. }
  1091. }
  1092. /**
  1093.  * netdev_ethtool_ioctl: Handle network interface SIOCETHTOOL ioctls
  1094.  * @dev: network interface on which out-of-band action is to be performed
  1095.  * @useraddr: userspace address to which data is to be read and returned
  1096.  *
  1097.  * Process the various commands of the SIOCETHTOOL interface.
  1098.  */
  1099. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  1100. {
  1101. u32 ethcmd;
  1102. /* dev_ioctl() in ../../net/core/dev.c has already checked
  1103.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  1104. if (get_user(ethcmd, (u32 *)useraddr))
  1105. return -EFAULT;
  1106. switch (ethcmd) {
  1107. case ETHTOOL_GDRVINFO: {
  1108. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1109. strcpy (info.driver, DRV_NAME);
  1110. strcpy (info.version, DRV_VERSION);
  1111. sprintf(info.bus_info, "ISA 0x%lx", dev->base_addr);
  1112. if (copy_to_user (useraddr, &info, sizeof (info)))
  1113. return -EFAULT;
  1114. return 0;
  1115. }
  1116. /* get message-level */
  1117. case ETHTOOL_GMSGLVL: {
  1118. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  1119. edata.data = debug;
  1120. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1121. return -EFAULT;
  1122. return 0;
  1123. }
  1124. /* set message-level */
  1125. case ETHTOOL_SMSGLVL: {
  1126. struct ethtool_value edata;
  1127. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  1128. return -EFAULT;
  1129. debug = edata.data;
  1130. return 0;
  1131. }
  1132. default:
  1133. break;
  1134. }
  1135. return -EOPNOTSUPP;
  1136. }
  1137. /**
  1138.  * netdev_ioctl: Handle network interface ioctls
  1139.  * @dev: network interface on which out-of-band action is to be performed
  1140.  * @rq: user request data
  1141.  * @cmd: command issued by user
  1142.  *
  1143.  * Process the various out-of-band ioctls passed to this driver.
  1144.  */
  1145. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  1146. {
  1147. int rc = 0;
  1148. switch (cmd) {
  1149. case SIOCETHTOOL:
  1150. rc = netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1151. break;
  1152. default:
  1153. rc = -EOPNOTSUPP;
  1154. break;
  1155. }
  1156. return rc;
  1157. }
  1158.  
  1159. /******************************************************
  1160.  *
  1161.  * initialise Etherlink Plus board
  1162.  *
  1163.  ******************************************************/
  1164. static inline void elp_init(struct net_device *dev)
  1165. {
  1166. elp_device *adapter = dev->priv;
  1167. /*
  1168.  * set ptrs to various functions
  1169.  */
  1170. dev->open = elp_open; /* local */
  1171. dev->stop = elp_close; /* local */
  1172. dev->get_stats = elp_get_stats; /* local */
  1173. dev->hard_start_xmit = elp_start_xmit; /* local */
  1174. dev->tx_timeout = elp_timeout; /* local */
  1175. dev->watchdog_timeo = 10*HZ;
  1176. dev->set_multicast_list = elp_set_mc_list; /* local */
  1177. dev->do_ioctl = netdev_ioctl; /* local */
  1178. /* Setup the generic properties */
  1179. ether_setup(dev);
  1180. /*
  1181.  * setup ptr to adapter specific information
  1182.  */
  1183. memset(&(adapter->stats), 0, sizeof(struct net_device_stats));
  1184. /*
  1185.  * memory information
  1186.  */
  1187. dev->mem_start = dev->mem_end = dev->rmem_end = dev->rmem_start = 0;
  1188. }
  1189. /************************************************************
  1190.  *
  1191.  * A couple of tests to see if there's 3C505 or not
  1192.  * Called only by elp_autodetect
  1193.  ************************************************************/
  1194. static int __init elp_sense(struct net_device *dev)
  1195. {
  1196. int timeout;
  1197. int addr = dev->base_addr;
  1198. const char *name = dev->name;
  1199. long flags;
  1200. byte orig_HSR;
  1201. if (!request_region(addr, ELP_IO_EXTENT, "3c505"))
  1202. return -ENODEV;
  1203. orig_HSR = inb_status(addr);
  1204. if (elp_debug > 0)
  1205. printk(search_msg, name, addr);
  1206. if (orig_HSR == 0xff) {
  1207. if (elp_debug > 0)
  1208. printk(notfound_msg, 1);
  1209. goto out;
  1210. }
  1211. /* Enable interrupts - we need timers! */
  1212. save_flags(flags);
  1213. sti();
  1214. /* Wait for a while; the adapter may still be booting up */
  1215. if (elp_debug > 0)
  1216. printk(stilllooking_msg);
  1217. if (orig_HSR & DIR) {
  1218. /* If HCR.DIR is up, we pull it down. HSR.DIR should follow. */
  1219. outb(0, dev->base_addr + PORT_CONTROL);
  1220. timeout = jiffies + 30*HZ/100;
  1221. while (time_before(jiffies, timeout));
  1222. restore_flags(flags);
  1223. if (inb_status(addr) & DIR) {
  1224. if (elp_debug > 0)
  1225. printk(notfound_msg, 2);
  1226. goto out;
  1227. }
  1228. } else {
  1229. /* If HCR.DIR is down, we pull it up. HSR.DIR should follow. */
  1230. outb(DIR, dev->base_addr + PORT_CONTROL);
  1231. timeout = jiffies + 30*HZ/100;
  1232. while (time_before(jiffies, timeout));
  1233. restore_flags(flags);
  1234. if (!(inb_status(addr) & DIR)) {
  1235. if (elp_debug > 0)
  1236. printk(notfound_msg, 3);
  1237. goto out;
  1238. }
  1239. }
  1240. /*
  1241.  * It certainly looks like a 3c505.
  1242.  */
  1243. if (elp_debug > 0)
  1244. printk(found_msg);
  1245. return 0;
  1246. out:
  1247. release_region(addr, ELP_IO_EXTENT);
  1248. return -ENODEV;
  1249. }
  1250. /*************************************************************
  1251.  *
  1252.  * Search through addr_list[] and try to find a 3C505
  1253.  * Called only by eplus_probe
  1254.  *************************************************************/
  1255. static int __init elp_autodetect(struct net_device *dev)
  1256. {
  1257. int idx = 0;
  1258. /* if base address set, then only check that address
  1259.    otherwise, run through the table */
  1260. if (dev->base_addr != 0) { /* dev->base_addr == 0 ==> plain autodetect */
  1261. if (elp_sense(dev) == 0)
  1262. return dev->base_addr;
  1263. } else
  1264. while ((dev->base_addr = addr_list[idx++])) {
  1265. if (elp_sense(dev) == 0)
  1266. return dev->base_addr;
  1267. }
  1268. /* could not find an adapter */
  1269. if (elp_debug > 0)
  1270. printk(couldnot_msg, dev->name);
  1271. return 0; /* Because of this, the layer above will return -ENODEV */
  1272. }
  1273. /******************************************************
  1274.  *
  1275.  * probe for an Etherlink Plus board at the specified address
  1276.  *
  1277.  ******************************************************/
  1278. /* There are three situations we need to be able to detect here:
  1279.  *  a) the card is idle
  1280.  *  b) the card is still booting up
  1281.  *  c) the card is stuck in a strange state (some DOS drivers do this)
  1282.  *
  1283.  * In case (a), all is well.  In case (b), we wait 10 seconds to see if the
  1284.  * card finishes booting, and carry on if so.  In case (c), we do a hard reset,
  1285.  * loop round, and hope for the best.
  1286.  *
  1287.  * This is all very unpleasant, but hopefully avoids the problems with the old
  1288.  * probe code (which had a 15-second delay if the card was idle, and didn't
  1289.  * work at all if it was in a weird state).
  1290.  */
  1291. int __init elplus_probe(struct net_device *dev)
  1292. {
  1293. elp_device *adapter;
  1294. int i, tries, tries1, timeout, okay;
  1295. unsigned long cookie = 0;
  1296. SET_MODULE_OWNER(dev);
  1297. /*
  1298.  *  setup adapter structure
  1299.  */
  1300. dev->base_addr = elp_autodetect(dev);
  1301. if (!(dev->base_addr))
  1302. return -ENODEV;
  1303. /*
  1304.  * setup ptr to adapter specific information
  1305.  */
  1306. adapter = (elp_device *) (dev->priv = kmalloc(sizeof(elp_device), GFP_KERNEL));
  1307. if (adapter == NULL) {
  1308. printk("%s: out of memoryn", dev->name);
  1309. return -ENODEV;
  1310.         }
  1311. adapter->send_pcb_semaphore = 0;
  1312. for (tries1 = 0; tries1 < 3; tries1++) {
  1313. outb_control((adapter->hcr_val | CMDE) & ~DIR, dev);
  1314. /* First try to write just one byte, to see if the card is
  1315.  * responding at all normally.
  1316.  */
  1317. timeout = jiffies + 5*HZ/100;
  1318. okay = 0;
  1319. while (time_before(jiffies, timeout) && !(inb_status(dev->base_addr) & HCRE));
  1320. if ((inb_status(dev->base_addr) & HCRE)) {
  1321. outb_command(0, dev->base_addr); /* send a spurious byte */
  1322. timeout = jiffies + 5*HZ/100;
  1323. while (time_before(jiffies, timeout) && !(inb_status(dev->base_addr) & HCRE));
  1324. if (inb_status(dev->base_addr) & HCRE)
  1325. okay = 1;
  1326. }
  1327. if (!okay) {
  1328. /* Nope, it's ignoring the command register.  This means that
  1329.  * either it's still booting up, or it's died.
  1330.  */
  1331. printk("%s: command register wouldn't drain, ", dev->name);
  1332. if ((inb_status(dev->base_addr) & 7) == 3) {
  1333. /* If the adapter status is 3, it *could* still be booting.
  1334.  * Give it the benefit of the doubt for 10 seconds.
  1335.  */
  1336. printk("assuming 3c505 still startingn");
  1337. timeout = jiffies + 10*HZ;
  1338. while (time_before(jiffies, timeout) && (inb_status(dev->base_addr) & 7));
  1339. if (inb_status(dev->base_addr) & 7) {
  1340. printk("%s: 3c505 failed to startn", dev->name);
  1341. } else {
  1342. okay = 1;  /* It started */
  1343. }
  1344. } else {
  1345. /* Otherwise, it must just be in a strange
  1346.  * state.  We probably need to kick it.
  1347.  */
  1348. printk("3c505 is sulkingn");
  1349. }
  1350. }
  1351. for (tries = 0; tries < 5 && okay; tries++) {
  1352. /*
  1353.  * Try to set the Ethernet address, to make sure that the board
  1354.  * is working.
  1355.  */
  1356. adapter->tx_pcb.command = CMD_STATION_ADDRESS;
  1357. adapter->tx_pcb.length = 0;
  1358. cookie = probe_irq_on();
  1359. if (!send_pcb(dev, &adapter->tx_pcb)) {
  1360. printk("%s: could not send first PCBn", dev->name);
  1361. probe_irq_off(cookie);
  1362. continue;
  1363. }
  1364. if (!receive_pcb(dev, &adapter->rx_pcb)) {
  1365. printk("%s: could not read first PCBn", dev->name);
  1366. probe_irq_off(cookie);
  1367. continue;
  1368. }
  1369. if ((adapter->rx_pcb.command != CMD_ADDRESS_RESPONSE) ||
  1370.     (adapter->rx_pcb.length != 6)) {
  1371. printk("%s: first PCB wrong (%d, %d)n", dev->name, adapter->rx_pcb.command, adapter->rx_pcb.length);
  1372. probe_irq_off(cookie);
  1373. continue;
  1374. }
  1375. goto okay;
  1376. }
  1377. /* It's broken.  Do a hard reset to re-initialise the board,
  1378.  * and try again.
  1379.  */
  1380. printk(KERN_INFO "%s: resetting adaptern", dev->name);
  1381. outb_control(adapter->hcr_val | FLSH | ATTN, dev);
  1382. outb_control(adapter->hcr_val & ~(FLSH | ATTN), dev);
  1383. }
  1384. printk("%s: failed to initialise 3c505n", dev->name);
  1385. release_region(dev->base_addr, ELP_IO_EXTENT);
  1386. return -ENODEV;
  1387.       okay:
  1388. if (dev->irq) { /* Is there a preset IRQ? */
  1389. int rpt = probe_irq_off(cookie);
  1390. if (dev->irq != rpt) {
  1391. printk("%s: warning, irq %d configured but %d detectedn", dev->name, dev->irq, rpt);
  1392. }
  1393. /* if dev->irq == probe_irq_off(cookie), all is well */
  1394. } else        /* No preset IRQ; just use what we can detect */
  1395. dev->irq = probe_irq_off(cookie);
  1396. switch (dev->irq) {    /* Legal, sane? */
  1397. case 0:
  1398. printk("%s: IRQ probe failed: check 3c505 jumpers.n",
  1399.        dev->name);
  1400. return -ENODEV;
  1401. case 1:
  1402. case 6:
  1403. case 8:
  1404. case 13:
  1405. printk("%s: Impossible IRQ %d reported by probe_irq_off().n",
  1406.        dev->name, dev->irq);
  1407. return -ENODEV;
  1408. }
  1409. /*
  1410.  *  Now we have the IRQ number so we can disable the interrupts from
  1411.  *  the board until the board is opened.
  1412.  */
  1413. outb_control(adapter->hcr_val & ~CMDE, dev);
  1414. /*
  1415.  * copy Ethernet address into structure
  1416.  */
  1417. for (i = 0; i < 6; i++)
  1418. dev->dev_addr[i] = adapter->rx_pcb.data.eth_addr[i];
  1419. /* find a DMA channel */
  1420. if (!dev->dma) {
  1421. if (dev->mem_start) {
  1422. dev->dma = dev->mem_start & 7;
  1423. }
  1424. else {
  1425. printk(KERN_WARNING "%s: warning, DMA channel not specified, using defaultn", dev->name);
  1426. dev->dma = ELP_DMA;
  1427. }
  1428. }
  1429. /*
  1430.  * print remainder of startup message
  1431.  */
  1432. printk("%s: 3c505 at %#lx, irq %d, dma %d, ",
  1433.        dev->name, dev->base_addr, dev->irq, dev->dma);
  1434. printk("addr %02x:%02x:%02x:%02x:%02x:%02x, ",
  1435.        dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
  1436.        dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
  1437. /*
  1438.  * read more information from the adapter
  1439.  */
  1440. adapter->tx_pcb.command = CMD_ADAPTER_INFO;
  1441. adapter->tx_pcb.length = 0;
  1442. if (!send_pcb(dev, &adapter->tx_pcb) ||
  1443.     !receive_pcb(dev, &adapter->rx_pcb) ||
  1444.     (adapter->rx_pcb.command != CMD_ADAPTER_INFO_RESPONSE) ||
  1445.     (adapter->rx_pcb.length != 10)) {
  1446. printk("not responding to second PCBn");
  1447. }
  1448. printk("rev %d.%d, %dkn", adapter->rx_pcb.data.info.major_vers, adapter->rx_pcb.data.info.minor_vers, adapter->rx_pcb.data.info.RAM_sz);
  1449. /*
  1450.  * reconfigure the adapter memory to better suit our purposes
  1451.  */
  1452. adapter->tx_pcb.command = CMD_CONFIGURE_ADAPTER_MEMORY;
  1453. adapter->tx_pcb.length = 12;
  1454. adapter->tx_pcb.data.memconf.cmd_q = 8;
  1455. adapter->tx_pcb.data.memconf.rcv_q = 8;
  1456. adapter->tx_pcb.data.memconf.mcast = 10;
  1457. adapter->tx_pcb.data.memconf.frame = 10;
  1458. adapter->tx_pcb.data.memconf.rcv_b = 10;
  1459. adapter->tx_pcb.data.memconf.progs = 0;
  1460. if (!send_pcb(dev, &adapter->tx_pcb) ||
  1461.     !receive_pcb(dev, &adapter->rx_pcb) ||
  1462.     (adapter->rx_pcb.command != CMD_CONFIGURE_ADAPTER_RESPONSE) ||
  1463.     (adapter->rx_pcb.length != 2)) {
  1464. printk("%s: could not configure adapter memoryn", dev->name);
  1465. }
  1466. if (adapter->rx_pcb.data.configure) {
  1467. printk("%s: adapter configuration failedn", dev->name);
  1468. }
  1469. /*
  1470.  * initialise the device
  1471.  */
  1472. elp_init(dev);
  1473. return 0;
  1474. }
  1475. #ifdef MODULE
  1476. static struct net_device dev_3c505[ELP_MAX_CARDS];
  1477. static int io[ELP_MAX_CARDS];
  1478. static int irq[ELP_MAX_CARDS];
  1479. static int dma[ELP_MAX_CARDS];
  1480. MODULE_PARM(io, "1-" __MODULE_STRING(ELP_MAX_CARDS) "i");
  1481. MODULE_PARM(irq, "1-" __MODULE_STRING(ELP_MAX_CARDS) "i");
  1482. MODULE_PARM(dma, "1-" __MODULE_STRING(ELP_MAX_CARDS) "i");
  1483. MODULE_PARM_DESC(io, "EtherLink Plus I/O base address(es)");
  1484. MODULE_PARM_DESC(irq, "EtherLink Plus IRQ number(s) (assigned)");
  1485. MODULE_PARM_DESC(dma, "EtherLink Plus DMA channel(s)");
  1486. int init_module(void)
  1487. {
  1488. int this_dev, found = 0;
  1489. for (this_dev = 0; this_dev < ELP_MAX_CARDS; this_dev++) {
  1490. struct net_device *dev = &dev_3c505[this_dev];
  1491. dev->irq = irq[this_dev];
  1492. dev->base_addr = io[this_dev];
  1493. dev->init = elplus_probe;
  1494. if (dma[this_dev]) {
  1495. dev->dma = dma[this_dev];
  1496. } else {
  1497. dev->dma = ELP_DMA;
  1498. printk(KERN_WARNING "3c505.c: warning, using default DMA channel,n");
  1499. }
  1500. if (io[this_dev] == 0) {
  1501. if (this_dev) break;
  1502. printk(KERN_NOTICE "3c505.c: module autoprobe not recommended, give io=xx.n");
  1503. }
  1504. if (register_netdev(dev) != 0) {
  1505. printk(KERN_WARNING "3c505.c: Failed to register card at 0x%x.n", io[this_dev]);
  1506. if (found != 0) return 0;
  1507. return -ENXIO;
  1508. }
  1509. found++;
  1510. }
  1511. return 0;
  1512. }
  1513. void cleanup_module(void)
  1514. {
  1515. int this_dev;
  1516. for (this_dev = 0; this_dev < ELP_MAX_CARDS; this_dev++) {
  1517. struct net_device *dev = &dev_3c505[this_dev];
  1518. if (dev->priv != NULL) {
  1519. unregister_netdev(dev);
  1520. kfree(dev->priv);
  1521. dev->priv = NULL;
  1522. release_region(dev->base_addr, ELP_IO_EXTENT);
  1523. }
  1524. }
  1525. }
  1526. #endif /* MODULE */
  1527. MODULE_LICENSE("GPL");