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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     A PCMCIA ethernet driver for the 3com 3c589 card.
  3.     
  4.     Copyright (C) 1999 David A. Hinds -- dahinds@users.sourceforge.net
  5.     3c589_cs.c 1.162 2001/10/13 00:08:50
  6.     The network driver code is based on Donald Becker's 3c589 code:
  7.     
  8.     Written 1994 by Donald Becker.
  9.     Copyright 1993 United States Government as represented by the
  10.     Director, National Security Agency.  This software may be used and
  11.     distributed according to the terms of the GNU General Public License,
  12.     incorporated herein by reference.
  13.     Donald Becker may be reached at becker@scyld.com
  14. ======================================================================*/
  15. #define DRV_NAME "3c589_cs"
  16. #define DRV_VERSION "1.162"
  17. #include <linux/module.h>
  18. #include <linux/init.h>
  19. #include <linux/kernel.h>
  20. #include <linux/sched.h>
  21. #include <linux/ptrace.h>
  22. #include <linux/slab.h>
  23. #include <linux/string.h>
  24. #include <linux/timer.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/in.h>
  27. #include <linux/delay.h>
  28. #include <linux/ethtool.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/io.h>
  31. #include <asm/system.h>
  32. #include <asm/bitops.h>
  33. #include <linux/netdevice.h>
  34. #include <linux/etherdevice.h>
  35. #include <linux/skbuff.h>
  36. #include <linux/if_arp.h>
  37. #include <linux/ioport.h>
  38. #include <pcmcia/version.h>
  39. #include <pcmcia/cs_types.h>
  40. #include <pcmcia/cs.h>
  41. #include <pcmcia/cistpl.h>
  42. #include <pcmcia/cisreg.h>
  43. #include <pcmcia/ciscode.h>
  44. #include <pcmcia/ds.h>
  45. /* To minimize the size of the driver source I only define operating
  46.    constants if they are used several times.  You'll need the manual
  47.    if you want to understand driver details. */
  48. /* Offsets from base I/O address. */
  49. #define EL3_DATA 0x00
  50. #define EL3_TIMER 0x0a
  51. #define EL3_CMD 0x0e
  52. #define EL3_STATUS 0x0e
  53. #define EEPROM_READ 0x0080
  54. #define EEPROM_BUSY 0x8000
  55. #define EL3WINDOW(win_num) outw(SelectWindow + (win_num), ioaddr + EL3_CMD)
  56. /* The top five bits written to EL3_CMD are a command, the lower
  57.    11 bits are the parameter, if applicable. */
  58. enum c509cmd {
  59.     TotalReset = 0<<11, SelectWindow = 1<<11, StartCoax = 2<<11,
  60.     RxDisable = 3<<11, RxEnable = 4<<11, RxReset = 5<<11, RxDiscard = 8<<11,
  61.     TxEnable = 9<<11, TxDisable = 10<<11, TxReset = 11<<11,
  62.     FakeIntr = 12<<11, AckIntr = 13<<11, SetIntrEnb = 14<<11,
  63.     SetStatusEnb = 15<<11, SetRxFilter = 16<<11, SetRxThreshold = 17<<11,
  64.     SetTxThreshold = 18<<11, SetTxStart = 19<<11, StatsEnable = 21<<11,
  65.     StatsDisable = 22<<11, StopCoax = 23<<11,
  66. };
  67. enum c509status {
  68.     IntLatch = 0x0001, AdapterFailure = 0x0002, TxComplete = 0x0004,
  69.     TxAvailable = 0x0008, RxComplete = 0x0010, RxEarly = 0x0020,
  70.     IntReq = 0x0040, StatsFull = 0x0080, CmdBusy = 0x1000
  71. };
  72. /* The SetRxFilter command accepts the following classes: */
  73. enum RxFilter {
  74.     RxStation = 1, RxMulticast = 2, RxBroadcast = 4, RxProm = 8
  75. };
  76. /* Register window 1 offsets, the window used in normal operation. */
  77. #define TX_FIFO 0x00
  78. #define RX_FIFO 0x00
  79. #define RX_STATUS  0x08
  80. #define TX_STATUS  0x0B
  81. #define TX_FREE 0x0C /* Remaining free bytes in Tx buffer. */
  82. #define WN0_IRQ 0x08 /* Window 0: Set IRQ line in bits 12-15. */
  83. #define WN4_MEDIA 0x0A /* Window 4: Various transcvr/media bits. */
  84. #define MEDIA_TP 0x00C0 /* Enable link beat and jabber for 10baseT. */
  85. #define MEDIA_LED 0x0001 /* Enable link light on 3C589E cards. */
  86. /* Time in jiffies before concluding Tx hung */
  87. #define TX_TIMEOUT ((400*HZ)/1000)
  88. struct el3_private {
  89.     dev_link_t link;
  90.     struct net_device dev;
  91.     dev_node_t  node;
  92.     struct net_device_stats stats;
  93.     /* For transceiver monitoring */
  94.     struct timer_list media;
  95.     u_short media_status;
  96.     u_short fast_poll;
  97.     u_long last_irq;
  98. };
  99. static char *if_names[] = { "auto", "10baseT", "10base2", "AUI" };
  100. /*====================================================================*/
  101. /* Module parameters */
  102. MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
  103. MODULE_DESCRIPTION("3Com 3c589 series PCMCIA ethernet driver");
  104. MODULE_LICENSE("GPL");
  105. #define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i")
  106. /* Special hook for setting if_port when module is loaded */
  107. INT_MODULE_PARM(if_port, 0);
  108. /* Bit map of interrupts to choose from */
  109. INT_MODULE_PARM(irq_mask, 0xdeb8);
  110. static int irq_list[4] = { -1 };
  111. MODULE_PARM(irq_list, "1-4i");
  112. #ifdef PCMCIA_DEBUG
  113. INT_MODULE_PARM(pc_debug, PCMCIA_DEBUG);
  114. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  115. static char *version =
  116. DRV_NAME ".c " DRV_VERSION " 2001/10/13 00:08:50 (David Hinds)";
  117. #else
  118. #define DEBUG(n, args...)
  119. #endif
  120. /*====================================================================*/
  121. static void tc589_config(dev_link_t *link);
  122. static void tc589_release(u_long arg);
  123. static int tc589_event(event_t event, int priority,
  124.        event_callback_args_t *args);
  125. static u_short read_eeprom(ioaddr_t ioaddr, int index);
  126. static void tc589_reset(struct net_device *dev);
  127. static void media_check(u_long arg);
  128. static int el3_config(struct net_device *dev, struct ifmap *map);
  129. static int el3_open(struct net_device *dev);
  130. static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev);
  131. static void el3_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  132. static void update_stats(struct net_device *dev);
  133. static struct net_device_stats *el3_get_stats(struct net_device *dev);
  134. static int el3_rx(struct net_device *dev);
  135. static int el3_close(struct net_device *dev);
  136. static void el3_tx_timeout(struct net_device *dev);
  137. static void set_multicast_list(struct net_device *dev);
  138. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
  139. static dev_info_t dev_info = "3c589_cs";
  140. static dev_link_t *tc589_attach(void);
  141. static void tc589_detach(dev_link_t *);
  142. static dev_link_t *dev_list;
  143. /*======================================================================
  144.     This bit of code is used to avoid unregistering network devices
  145.     at inappropriate times.  2.2 and later kernels are fairly picky
  146.     about when this can happen.
  147.     
  148. ======================================================================*/
  149. static void flush_stale_links(void)
  150. {
  151.     dev_link_t *link, *next;
  152.     for (link = dev_list; link; link = next) {
  153. next = link->next;
  154. if (link->state & DEV_STALE_LINK)
  155.     tc589_detach(link);
  156.     }
  157. }
  158. /*====================================================================*/
  159. static void cs_error(client_handle_t handle, int func, int ret)
  160. {
  161.     error_info_t err = { func, ret };
  162.     CardServices(ReportError, handle, &err);
  163. }
  164. /*======================================================================
  165.     tc589_attach() creates an "instance" of the driver, allocating
  166.     local data structures for one device.  The device is registered
  167.     with Card Services.
  168. ======================================================================*/
  169. static dev_link_t *tc589_attach(void)
  170. {
  171.     struct el3_private *lp;
  172.     client_reg_t client_reg;
  173.     dev_link_t *link;
  174.     struct net_device *dev;
  175.     int i, ret;
  176.     DEBUG(0, "3c589_attach()n");
  177.     flush_stale_links();
  178.     
  179.     /* Create new ethernet device */
  180.     lp = kmalloc(sizeof(*lp), GFP_KERNEL);
  181.     if (!lp) return NULL;
  182.     memset(lp, 0, sizeof(*lp));
  183.     link = &lp->link; dev = &lp->dev;
  184.     link->priv = dev->priv = link->irq.Instance = lp;
  185.     
  186.     link->release.function = &tc589_release;
  187.     link->release.data = (u_long)link;
  188.     link->io.NumPorts1 = 16;
  189.     link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
  190.     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
  191.     link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  192.     if (irq_list[0] == -1)
  193. link->irq.IRQInfo2 = irq_mask;
  194.     else
  195. for (i = 0; i < 4; i++)
  196.     link->irq.IRQInfo2 |= 1 << irq_list[i];
  197.     link->irq.Handler = &el3_interrupt;
  198.     link->conf.Attributes = CONF_ENABLE_IRQ;
  199.     link->conf.Vcc = 50;
  200.     link->conf.IntType = INT_MEMORY_AND_IO;
  201.     link->conf.ConfigIndex = 1;
  202.     link->conf.Present = PRESENT_OPTION;
  203.     
  204.     /* The EL3-specific entries in the device structure. */
  205.     dev->hard_start_xmit = &el3_start_xmit;
  206.     dev->set_config = &el3_config;
  207.     dev->get_stats = &el3_get_stats;
  208.     dev->set_multicast_list = &set_multicast_list;
  209.     ether_setup(dev);
  210.     dev->open = &el3_open;
  211.     dev->stop = &el3_close;
  212. #ifdef HAVE_TX_TIMEOUT
  213.     dev->tx_timeout = el3_tx_timeout;
  214.     dev->watchdog_timeo = TX_TIMEOUT;
  215. #endif
  216.     dev->do_ioctl = netdev_ioctl;
  217.     /* Register with Card Services */
  218.     link->next = dev_list;
  219.     dev_list = link;
  220.     client_reg.dev_info = &dev_info;
  221.     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  222.     client_reg.EventMask =
  223. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  224. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  225. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  226.     client_reg.event_handler = &tc589_event;
  227.     client_reg.Version = 0x0210;
  228.     client_reg.event_callback_args.client_data = link;
  229.     ret = CardServices(RegisterClient, &link->handle, &client_reg);
  230.     if (ret != 0) {
  231. cs_error(link->handle, RegisterClient, ret);
  232. tc589_detach(link);
  233. return NULL;
  234.     }
  235.     
  236.     return link;
  237. } /* tc589_attach */
  238. /*======================================================================
  239.     This deletes a driver "instance".  The device is de-registered
  240.     with Card Services.  If it has been released, all local data
  241.     structures are freed.  Otherwise, the structures will be freed
  242.     when the device is released.
  243. ======================================================================*/
  244. static void tc589_detach(dev_link_t *link)
  245. {
  246.     struct el3_private *lp = link->priv;
  247.     dev_link_t **linkp;
  248.     
  249.     DEBUG(0, "3c589_detach(0x%p)n", link);
  250.     
  251.     /* Locate device structure */
  252.     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  253. if (*linkp == link) break;
  254.     if (*linkp == NULL)
  255. return;
  256.     del_timer(&link->release);
  257.     if (link->state & DEV_CONFIG) {
  258. tc589_release((u_long)link);
  259. if (link->state & DEV_STALE_CONFIG) {
  260.     link->state |= DEV_STALE_LINK;
  261.     return;
  262. }
  263.     }
  264.     
  265.     if (link->handle)
  266. CardServices(DeregisterClient, link->handle);
  267.     
  268.     /* Unlink device structure, free bits */
  269.     *linkp = link->next;
  270.     if (link->dev)
  271. unregister_netdev(&lp->dev);
  272.     kfree(lp);
  273.     
  274. } /* tc589_detach */
  275. /*======================================================================
  276.     tc589_config() is scheduled to run after a CARD_INSERTION event
  277.     is received, to configure the PCMCIA socket, and to make the
  278.     ethernet device available to the system.
  279.     
  280. ======================================================================*/
  281. #define CS_CHECK(fn, args...) 
  282. while ((last_ret=CardServices(last_fn=(fn), args))!=0) goto cs_failed
  283. static void tc589_config(dev_link_t *link)
  284. {
  285.     client_handle_t handle = link->handle;
  286.     struct el3_private *lp = link->priv;
  287.     struct net_device *dev = &lp->dev;
  288.     tuple_t tuple;
  289.     cisparse_t parse;
  290.     u_short buf[32], *phys_addr;
  291.     int last_fn, last_ret, i, j, multi = 0;
  292.     ioaddr_t ioaddr;
  293.     char *ram_split[] = {"5:3", "3:1", "1:1", "3:5"};
  294.     
  295.     DEBUG(0, "3c589_config(0x%p)n", link);
  296.     phys_addr = (u_short *)dev->dev_addr;
  297.     tuple.Attributes = 0;
  298.     tuple.DesiredTuple = CISTPL_CONFIG;
  299.     CS_CHECK(GetFirstTuple, handle, &tuple);
  300.     tuple.TupleData = (cisdata_t *)buf;
  301.     tuple.TupleDataMax = sizeof(buf);
  302.     tuple.TupleOffset = 0;
  303.     CS_CHECK(GetTupleData, handle, &tuple);
  304.     CS_CHECK(ParseTuple, handle, &tuple, &parse);
  305.     link->conf.ConfigBase = parse.config.base;
  306.     link->conf.Present = parse.config.rmask[0];
  307.     
  308.     /* Is this a 3c562? */
  309.     tuple.DesiredTuple = CISTPL_MANFID;
  310.     tuple.Attributes = TUPLE_RETURN_COMMON;
  311.     if ((CardServices(GetFirstTuple, handle, &tuple) == CS_SUCCESS) &&
  312. (CardServices(GetTupleData, handle, &tuple) == CS_SUCCESS)) {
  313. if (le16_to_cpu(buf[0]) != MANFID_3COM)
  314.     printk(KERN_INFO "3c589_cs: hmmm, is this really a "
  315.    "3Com card??n");
  316. multi = (le16_to_cpu(buf[1]) == PRODID_3COM_3C562);
  317.     }
  318.     
  319.     /* Configure card */
  320.     link->state |= DEV_CONFIG;
  321.     /* For the 3c562, the base address must be xx00-xx7f */
  322.     link->io.IOAddrLines = 16;
  323.     for (i = j = 0; j < 0x400; j += 0x10) {
  324. if (multi && (j & 0x80)) continue;
  325. link->io.BasePort1 = j ^ 0x300;
  326. i = CardServices(RequestIO, link->handle, &link->io);
  327. if (i == CS_SUCCESS) break;
  328.     }
  329.     if (i != CS_SUCCESS) {
  330. cs_error(link->handle, RequestIO, i);
  331. goto failed;
  332.     }
  333.     CS_CHECK(RequestIRQ, link->handle, &link->irq);
  334.     CS_CHECK(RequestConfiguration, link->handle, &link->conf);
  335.     dev->irq = link->irq.AssignedIRQ;
  336.     dev->base_addr = link->io.BasePort1;
  337.     if (register_netdev(dev) != 0) {
  338. printk(KERN_NOTICE "3c589_cs: register_netdev() failedn");
  339. goto failed;
  340.     }
  341.     
  342.     ioaddr = dev->base_addr;
  343.     EL3WINDOW(0);
  344.     /* The 3c589 has an extra EEPROM for configuration info, including
  345.        the hardware address.  The 3c562 puts the address in the CIS. */
  346.     tuple.DesiredTuple = 0x88;
  347.     if (CardServices(GetFirstTuple, handle, &tuple) == CS_SUCCESS) {
  348. CardServices(GetTupleData, handle, &tuple);
  349. for (i = 0; i < 3; i++)
  350.     phys_addr[i] = htons(buf[i]);
  351.     } else {
  352. for (i = 0; i < 3; i++)
  353.     phys_addr[i] = htons(read_eeprom(ioaddr, i));
  354. if (phys_addr[0] == 0x6060) {
  355.     printk(KERN_NOTICE "3c589_cs: IO port conflict at 0x%03lx"
  356.    "-0x%03lxn", dev->base_addr, dev->base_addr+15);
  357.     goto failed;
  358. }
  359.     }
  360.     strcpy(lp->node.dev_name, dev->name);
  361.     link->dev = &lp->node;
  362.     link->state &= ~DEV_CONFIG_PENDING;
  363.     
  364.     /* The address and resource configuration register aren't loaded from
  365.        the EEPROM and *must* be set to 0 and IRQ3 for the PCMCIA version. */
  366.     outw(0x3f00, ioaddr + 8);
  367.     /* The if_port symbol can be set when the module is loaded */
  368.     if ((if_port >= 0) && (if_port <= 3))
  369. dev->if_port = if_port;
  370.     else
  371. printk(KERN_NOTICE "3c589_cs: invalid if_port requestedn");
  372.     
  373.     printk(KERN_INFO "%s: 3Com 3c%s, io %#3lx, irq %d, hw_addr ",
  374.    dev->name, (multi ? "562" : "589"), dev->base_addr,
  375.    dev->irq);
  376.     for (i = 0; i < 6; i++)
  377. printk("%02X%s", dev->dev_addr[i], ((i<5) ? ":" : "n"));
  378.     i = inl(ioaddr);
  379.     printk(KERN_INFO "  %dK FIFO split %s Rx:Tx, %s xcvrn",
  380.    (i & 7) ? 32 : 8, ram_split[(i >> 16) & 3],
  381.    if_names[dev->if_port]);
  382.     return;
  383. cs_failed:
  384.     cs_error(link->handle, last_fn, last_ret);
  385. failed:
  386.     tc589_release((u_long)link);
  387.     return;
  388.     
  389. } /* tc589_config */
  390. /*======================================================================
  391.     After a card is removed, tc589_release() will unregister the net
  392.     device, and release the PCMCIA configuration.  If the device is
  393.     still open, this will be postponed until it is closed.
  394.     
  395. ======================================================================*/
  396. static void tc589_release(u_long arg)
  397. {
  398.     dev_link_t *link = (dev_link_t *)arg;
  399.     DEBUG(0, "3c589_release(0x%p)n", link);
  400.     
  401.     if (link->open) {
  402. DEBUG(1, "3c589_cs: release postponed, '%s' still openn",
  403.       link->dev->dev_name);
  404. link->state |= DEV_STALE_CONFIG;
  405. return;
  406.     }
  407.     
  408.     CardServices(ReleaseConfiguration, link->handle);
  409.     CardServices(ReleaseIO, link->handle, &link->io);
  410.     CardServices(ReleaseIRQ, link->handle, &link->irq);
  411.     
  412.     link->state &= ~DEV_CONFIG;
  413.     
  414. } /* tc589_release */
  415. /*======================================================================
  416.     The card status event handler.  Mostly, this schedules other
  417.     stuff to run after an event is received.  A CARD_REMOVAL event
  418.     also sets some flags to discourage the net drivers from trying
  419.     to talk to the card any more.
  420.     
  421. ======================================================================*/
  422. static int tc589_event(event_t event, int priority,
  423.        event_callback_args_t *args)
  424. {
  425.     dev_link_t *link = args->client_data;
  426.     struct el3_private *lp = link->priv;
  427.     struct net_device *dev = &lp->dev;
  428.     
  429.     DEBUG(1, "3c589_event(0x%06x)n", event);
  430.     
  431.     switch (event) {
  432.     case CS_EVENT_CARD_REMOVAL:
  433. link->state &= ~DEV_PRESENT;
  434. if (link->state & DEV_CONFIG) {
  435.     netif_device_detach(dev);
  436.     mod_timer(&link->release, jiffies + HZ/20);
  437. }
  438. break;
  439.     case CS_EVENT_CARD_INSERTION:
  440. link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  441. tc589_config(link);
  442. break;
  443.     case CS_EVENT_PM_SUSPEND:
  444. link->state |= DEV_SUSPEND;
  445. /* Fall through... */
  446.     case CS_EVENT_RESET_PHYSICAL:
  447. if (link->state & DEV_CONFIG) {
  448.     if (link->open)
  449. netif_device_detach(dev);
  450.     CardServices(ReleaseConfiguration, link->handle);
  451. }
  452. break;
  453.     case CS_EVENT_PM_RESUME:
  454. link->state &= ~DEV_SUSPEND;
  455. /* Fall through... */
  456.     case CS_EVENT_CARD_RESET:
  457. if (link->state & DEV_CONFIG) {
  458.     CardServices(RequestConfiguration, link->handle, &link->conf);
  459.     if (link->open) {
  460. tc589_reset(dev);
  461. netif_device_attach(dev);
  462.     }
  463. }
  464. break;
  465.     }
  466.     return 0;
  467. } /* tc589_event */
  468. /*====================================================================*/
  469. /*
  470.   Use this for commands that may take time to finish
  471. */
  472. static void tc589_wait_for_completion(struct net_device *dev, int cmd)
  473. {
  474.     int i = 100;
  475.     outw(cmd, dev->base_addr + EL3_CMD);
  476.     while (--i > 0)
  477. if (!(inw(dev->base_addr + EL3_STATUS) & 0x1000)) break;
  478.     if (i == 0)
  479. printk(KERN_NOTICE "%s: command 0x%04x did not complete!n",
  480.        dev->name, cmd);
  481. }
  482. /*
  483.   Read a word from the EEPROM using the regular EEPROM access register.
  484.   Assume that we are in register window zero.
  485. */
  486. static u_short read_eeprom(ioaddr_t ioaddr, int index)
  487. {
  488.     int i;
  489.     outw(EEPROM_READ + index, ioaddr + 10);
  490.     /* Reading the eeprom takes 162 us */
  491.     for (i = 1620; i >= 0; i--)
  492. if ((inw(ioaddr + 10) & EEPROM_BUSY) == 0)
  493.     break;
  494.     return inw(ioaddr + 12);
  495. }
  496. /*
  497.   Set transceiver type, perhaps to something other than what the user
  498.   specified in dev->if_port.
  499. */
  500. static void tc589_set_xcvr(struct net_device *dev, int if_port)
  501. {
  502.     struct el3_private *lp = (struct el3_private *)dev->priv;
  503.     ioaddr_t ioaddr = dev->base_addr;
  504.     
  505.     EL3WINDOW(0);
  506.     switch (if_port) {
  507.     case 0: case 1: outw(0, ioaddr + 6); break;
  508.     case 2: outw(3<<14, ioaddr + 6); break;
  509.     case 3: outw(1<<14, ioaddr + 6); break;
  510.     }
  511.     /* On PCMCIA, this just turns on the LED */
  512.     outw((if_port == 2) ? StartCoax : StopCoax, ioaddr + EL3_CMD);
  513.     /* 10baseT interface, enable link beat and jabber check. */
  514.     EL3WINDOW(4);
  515.     outw(MEDIA_LED | ((if_port < 2) ? MEDIA_TP : 0), ioaddr + WN4_MEDIA);
  516.     EL3WINDOW(1);
  517.     if (if_port == 2)
  518. lp->media_status = ((dev->if_port == 0) ? 0x8000 : 0x4000);
  519.     else
  520. lp->media_status = ((dev->if_port == 0) ? 0x4010 : 0x8800);
  521. }
  522. static void dump_status(struct net_device *dev)
  523. {
  524.     ioaddr_t ioaddr = dev->base_addr;
  525.     EL3WINDOW(1);
  526.     printk(KERN_INFO "  irq status %04x, rx status %04x, tx status "
  527.    "%02x  tx free %04xn", inw(ioaddr+EL3_STATUS),
  528.    inw(ioaddr+RX_STATUS), inb(ioaddr+TX_STATUS),
  529.    inw(ioaddr+TX_FREE));
  530.     EL3WINDOW(4);
  531.     printk(KERN_INFO "  diagnostics: fifo %04x net %04x ethernet %04x"
  532.    " media %04xn", inw(ioaddr+0x04), inw(ioaddr+0x06),
  533.    inw(ioaddr+0x08), inw(ioaddr+0x0a));
  534.     EL3WINDOW(1);
  535. }
  536. /* Reset and restore all of the 3c589 registers. */
  537. static void tc589_reset(struct net_device *dev)
  538. {
  539.     ioaddr_t ioaddr = dev->base_addr;
  540.     int i;
  541.     
  542.     EL3WINDOW(0);
  543.     outw(0x0001, ioaddr + 4); /* Activate board. */ 
  544.     outw(0x3f00, ioaddr + 8); /* Set the IRQ line. */
  545.     
  546.     /* Set the station address in window 2. */
  547.     EL3WINDOW(2);
  548.     for (i = 0; i < 6; i++)
  549. outb(dev->dev_addr[i], ioaddr + i);
  550.     tc589_set_xcvr(dev, dev->if_port);
  551.     
  552.     /* Switch to the stats window, and clear all stats by reading. */
  553.     outw(StatsDisable, ioaddr + EL3_CMD);
  554.     EL3WINDOW(6);
  555.     for (i = 0; i < 9; i++)
  556. inb(ioaddr+i);
  557.     inw(ioaddr + 10);
  558.     inw(ioaddr + 12);
  559.     
  560.     /* Switch to register set 1 for normal use. */
  561.     EL3WINDOW(1);
  562.     /* Accept b-cast and phys addr only. */
  563.     outw(SetRxFilter | RxStation | RxBroadcast, ioaddr + EL3_CMD);
  564.     outw(StatsEnable, ioaddr + EL3_CMD); /* Turn on statistics. */
  565.     outw(RxEnable, ioaddr + EL3_CMD); /* Enable the receiver. */
  566.     outw(TxEnable, ioaddr + EL3_CMD); /* Enable transmitter. */
  567.     /* Allow status bits to be seen. */
  568.     outw(SetStatusEnb | 0xff, ioaddr + EL3_CMD);
  569.     /* Ack all pending events, and set active indicator mask. */
  570.     outw(AckIntr | IntLatch | TxAvailable | RxEarly | IntReq,
  571.  ioaddr + EL3_CMD);
  572.     outw(SetIntrEnb | IntLatch | TxAvailable | RxComplete | StatsFull
  573.  | AdapterFailure, ioaddr + EL3_CMD);
  574. }
  575. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  576. {
  577. u32 ethcmd;
  578. /* dev_ioctl() in ../../net/core/dev.c has already checked
  579.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  580. if (get_user(ethcmd, (u32 *)useraddr))
  581. return -EFAULT;
  582. switch (ethcmd) {
  583. case ETHTOOL_GDRVINFO: {
  584. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  585. strcpy (info.driver, DRV_NAME);
  586. strcpy (info.version, DRV_VERSION);
  587. sprintf(info.bus_info, "PCMCIA 0x%lx", dev->base_addr);
  588. if (copy_to_user (useraddr, &info, sizeof (info)))
  589. return -EFAULT;
  590. return 0;
  591. }
  592. #ifdef PCMCIA_DEBUG
  593. /* get message-level */
  594. case ETHTOOL_GMSGLVL: {
  595. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  596. edata.data = pc_debug;
  597. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  598. return -EFAULT;
  599. return 0;
  600. }
  601. /* set message-level */
  602. case ETHTOOL_SMSGLVL: {
  603. struct ethtool_value edata;
  604. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  605. return -EFAULT;
  606. pc_debug = edata.data;
  607. return 0;
  608. }
  609. #endif
  610. default:
  611. break;
  612. }
  613. return -EOPNOTSUPP;
  614. }
  615. static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
  616. {
  617. int rc;
  618. switch (cmd) {
  619. case SIOCETHTOOL:
  620. rc = netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  621. break;
  622. default:
  623. rc = -EOPNOTSUPP;
  624. break;
  625. }
  626. return rc;
  627. }
  628. static int el3_config(struct net_device *dev, struct ifmap *map)
  629. {
  630.     if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
  631. if (map->port <= 3) {
  632.     dev->if_port = map->port;
  633.     printk(KERN_INFO "%s: switched to %s portn",
  634.    dev->name, if_names[dev->if_port]);
  635.     tc589_set_xcvr(dev, dev->if_port);
  636. } else
  637.     return -EINVAL;
  638.     }
  639.     return 0;
  640. }
  641. static int el3_open(struct net_device *dev)
  642. {
  643.     struct el3_private *lp = (struct el3_private *)dev->priv;
  644.     dev_link_t *link = &lp->link;
  645.     
  646.     if (!DEV_OK(link))
  647. return -ENODEV;
  648.     link->open++;
  649.     MOD_INC_USE_COUNT;
  650.     netif_start_queue(dev);
  651.     
  652.     tc589_reset(dev);
  653.     lp->media.function = &media_check;
  654.     lp->media.data = (u_long)lp;
  655.     lp->media.expires = jiffies + HZ;
  656.     add_timer(&lp->media);
  657.     DEBUG(1, "%s: opened, status %4.4x.n",
  658.   dev->name, inw(dev->base_addr + EL3_STATUS));
  659.     
  660.     return 0;
  661. }
  662. static void el3_tx_timeout(struct net_device *dev)
  663. {
  664.     struct el3_private *lp = (struct el3_private *)dev->priv;
  665.     ioaddr_t ioaddr = dev->base_addr;
  666.     
  667.     printk(KERN_NOTICE "%s: Transmit timed out!n", dev->name);
  668.     dump_status(dev);
  669.     lp->stats.tx_errors++;
  670.     dev->trans_start = jiffies;
  671.     /* Issue TX_RESET and TX_START commands. */
  672.     tc589_wait_for_completion(dev, TxReset);
  673.     outw(TxEnable, ioaddr + EL3_CMD);
  674.     netif_wake_queue(dev);
  675. }
  676. static void pop_tx_status(struct net_device *dev)
  677. {
  678.     struct el3_private *lp = (struct el3_private *)dev->priv;
  679.     ioaddr_t ioaddr = dev->base_addr;
  680.     int i;
  681.     
  682.     /* Clear the Tx status stack. */
  683.     for (i = 32; i > 0; i--) {
  684. u_char tx_status = inb(ioaddr + TX_STATUS);
  685. if (!(tx_status & 0x84)) break;
  686. /* reset transmitter on jabber error or underrun */
  687. if (tx_status & 0x30)
  688.     tc589_wait_for_completion(dev, TxReset);
  689. if (tx_status & 0x38) {
  690.     DEBUG(1, "%s: transmit error: status 0x%02xn",
  691.   dev->name, tx_status);
  692.     outw(TxEnable, ioaddr + EL3_CMD);
  693.     lp->stats.tx_aborted_errors++;
  694. }
  695. outb(0x00, ioaddr + TX_STATUS); /* Pop the status stack. */
  696.     }
  697. }
  698. static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev)
  699. {
  700.     ioaddr_t ioaddr = dev->base_addr;
  701.     DEBUG(3, "%s: el3_start_xmit(length = %ld) called, "
  702.   "status %4.4x.n", dev->name, (long)skb->len,
  703.   inw(ioaddr + EL3_STATUS));
  704.     ((struct el3_private *)dev->priv)->stats.tx_bytes += skb->len;
  705.     /* Put out the doubleword header... */
  706.     outw(skb->len, ioaddr + TX_FIFO);
  707.     outw(0x00, ioaddr + TX_FIFO);
  708.     /* ... and the packet rounded to a doubleword. */
  709.     outsl(ioaddr + TX_FIFO, skb->data, (skb->len + 3) >> 2);
  710.     dev->trans_start = jiffies;
  711.     if (inw(ioaddr + TX_FREE) <= 1536) {
  712. netif_stop_queue(dev);
  713. /* Interrupt us when the FIFO has room for max-sized packet. */
  714. outw(SetTxThreshold + 1536, ioaddr + EL3_CMD);
  715.     }
  716.     dev_kfree_skb(skb);
  717.     pop_tx_status(dev);
  718.     
  719.     return 0;
  720. }
  721. /* The EL3 interrupt handler. */
  722. static void el3_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  723. {
  724.     struct el3_private *lp = dev_id;
  725.     struct net_device *dev = &lp->dev;
  726.     ioaddr_t ioaddr, status;
  727.     int i = 0;
  728.     
  729.     if (!netif_device_present(dev))
  730. return;
  731.     ioaddr = dev->base_addr;
  732.     DEBUG(3, "%s: interrupt, status %4.4x.n",
  733.   dev->name, inw(ioaddr + EL3_STATUS));
  734.     
  735.     while ((status = inw(ioaddr + EL3_STATUS)) &
  736. (IntLatch | RxComplete | StatsFull)) {
  737. if (!netif_device_present(dev) ||
  738.     ((status & 0xe000) != 0x2000)) {
  739.     DEBUG(1, "%s: interrupt from dead cardn", dev->name);
  740.     break;
  741. }
  742. if (status & RxComplete)
  743.     el3_rx(dev);
  744. if (status & TxAvailable) {
  745.     DEBUG(3, "    TX room bit was handled.n");
  746.     /* There's room in the FIFO for a full-sized packet. */
  747.     outw(AckIntr | TxAvailable, ioaddr + EL3_CMD);
  748.     netif_wake_queue(dev);
  749. }
  750. if (status & TxComplete)
  751.     pop_tx_status(dev);
  752. if (status & (AdapterFailure | RxEarly | StatsFull)) {
  753.     /* Handle all uncommon interrupts. */
  754.     if (status & StatsFull) /* Empty statistics. */
  755. update_stats(dev);
  756.     if (status & RxEarly) { /* Rx early is unused. */
  757. el3_rx(dev);
  758. outw(AckIntr | RxEarly, ioaddr + EL3_CMD);
  759.     }
  760.     if (status & AdapterFailure) {
  761. u16 fifo_diag;
  762. EL3WINDOW(4);
  763. fifo_diag = inw(ioaddr + 4);
  764. EL3WINDOW(1);
  765. printk(KERN_NOTICE "%s: adapter failure, FIFO diagnostic"
  766.        " register %04x.n", dev->name, fifo_diag);
  767. if (fifo_diag & 0x0400) {
  768.     /* Tx overrun */
  769.     tc589_wait_for_completion(dev, TxReset);
  770.     outw(TxEnable, ioaddr + EL3_CMD);
  771. }
  772. if (fifo_diag & 0x2000) {
  773.     /* Rx underrun */
  774.     tc589_wait_for_completion(dev, RxReset);
  775.     set_multicast_list(dev);
  776.     outw(RxEnable, ioaddr + EL3_CMD);
  777. }
  778. outw(AckIntr | AdapterFailure, ioaddr + EL3_CMD);
  779.     }
  780. }
  781. if (++i > 10) {
  782.     printk(KERN_NOTICE "%s: infinite loop in interrupt, "
  783.    "status %4.4x.n", dev->name, status);
  784.     /* Clear all interrupts */
  785.     outw(AckIntr | 0xFF, ioaddr + EL3_CMD);
  786.     break;
  787. }
  788. /* Acknowledge the IRQ. */
  789. outw(AckIntr | IntReq | IntLatch, ioaddr + EL3_CMD);
  790.     }
  791.     lp->last_irq = jiffies;
  792.     DEBUG(3, "%s: exiting interrupt, status %4.4x.n",
  793.   dev->name, inw(ioaddr + EL3_STATUS));
  794.     return;
  795. }
  796. static void media_check(u_long arg)
  797. {
  798.     struct el3_private *lp = (struct el3_private *)(arg);
  799.     struct net_device *dev = &lp->dev;
  800.     ioaddr_t ioaddr = dev->base_addr;
  801.     u_short media, errs;
  802.     u_long flags;
  803.     if (!netif_device_present(dev)) goto reschedule;
  804.     EL3WINDOW(1);
  805.     /* Check for pending interrupt with expired latency timer: with
  806.        this, we can limp along even if the interrupt is blocked */
  807.     if ((inw(ioaddr + EL3_STATUS) & IntLatch) &&
  808. (inb(ioaddr + EL3_TIMER) == 0xff)) {
  809. if (!lp->fast_poll)
  810.     printk(KERN_INFO "%s: interrupt(s) dropped!n", dev->name);
  811. el3_interrupt(dev->irq, lp, NULL);
  812. lp->fast_poll = HZ;
  813.     }
  814.     if (lp->fast_poll) {
  815. lp->fast_poll--;
  816. lp->media.expires = jiffies + 1;
  817. add_timer(&lp->media);
  818. return;
  819.     }
  820.     
  821.     save_flags(flags);
  822.     cli();
  823.     EL3WINDOW(4);
  824.     media = inw(ioaddr+WN4_MEDIA) & 0xc810;
  825.     /* Ignore collisions unless we've had no irq's recently */
  826.     if (jiffies - lp->last_irq < HZ) {
  827. media &= ~0x0010;
  828.     } else {
  829. /* Try harder to detect carrier errors */
  830. EL3WINDOW(6);
  831. outw(StatsDisable, ioaddr + EL3_CMD);
  832. errs = inb(ioaddr + 0);
  833. outw(StatsEnable, ioaddr + EL3_CMD);
  834. lp->stats.tx_carrier_errors += errs;
  835. if (errs || (lp->media_status & 0x0010)) media |= 0x0010;
  836.     }
  837.     if (media != lp->media_status) {
  838. if ((media & lp->media_status & 0x8000) &&
  839.     ((lp->media_status ^ media) & 0x0800))
  840.     printk(KERN_INFO "%s: %s link beatn", dev->name,
  841.    (lp->media_status & 0x0800 ? "lost" : "found"));
  842. else if ((media & lp->media_status & 0x4000) &&
  843.  ((lp->media_status ^ media) & 0x0010))
  844.     printk(KERN_INFO "%s: coax cable %sn", dev->name,
  845.    (lp->media_status & 0x0010 ? "ok" : "problem"));
  846. if (dev->if_port == 0) {
  847.     if (media & 0x8000) {
  848. if (media & 0x0800)
  849.     printk(KERN_INFO "%s: flipped to 10baseTn",
  850.    dev->name);
  851. else
  852.     tc589_set_xcvr(dev, 2);
  853.     } else if (media & 0x4000) {
  854. if (media & 0x0010)
  855.     tc589_set_xcvr(dev, 1);
  856. else
  857.     printk(KERN_INFO "%s: flipped to 10base2n",
  858.    dev->name);
  859.     }
  860. }
  861. lp->media_status = media;
  862.     }
  863.     
  864.     EL3WINDOW(1);
  865.     restore_flags(flags);
  866. reschedule:
  867.     lp->media.expires = jiffies + HZ;
  868.     add_timer(&lp->media);
  869. }
  870. static struct net_device_stats *el3_get_stats(struct net_device *dev)
  871. {
  872.     struct el3_private *lp = (struct el3_private *)dev->priv;
  873.     unsigned long flags;
  874.     dev_link_t *link = &lp->link;
  875.     if (DEV_OK(link)) {
  876. save_flags(flags);
  877. cli();
  878. update_stats(dev);
  879. restore_flags(flags);
  880.     }
  881.     return &lp->stats;
  882. }
  883. /*
  884.   Update statistics.  We change to register window 6, so this should be run
  885.   single-threaded if the device is active. This is expected to be a rare
  886.   operation, and it's simpler for the rest of the driver to assume that
  887.   window 1 is always valid rather than use a special window-state variable.
  888. */
  889. static void update_stats(struct net_device *dev)
  890. {
  891.     struct el3_private *lp = (struct el3_private *)dev->priv;
  892.     ioaddr_t ioaddr = dev->base_addr;
  893.     DEBUG(2, "%s: updating the statistics.n", dev->name);
  894.     /* Turn off statistics updates while reading. */
  895.     outw(StatsDisable, ioaddr + EL3_CMD);
  896.     /* Switch to the stats window, and read everything. */
  897.     EL3WINDOW(6);
  898.     lp->stats.tx_carrier_errors  += inb(ioaddr + 0);
  899.     lp->stats.tx_heartbeat_errors += inb(ioaddr + 1);
  900.     /* Multiple collisions. */     inb(ioaddr + 2);
  901.     lp->stats.collisions += inb(ioaddr + 3);
  902.     lp->stats.tx_window_errors += inb(ioaddr + 4);
  903.     lp->stats.rx_fifo_errors += inb(ioaddr + 5);
  904.     lp->stats.tx_packets += inb(ioaddr + 6);
  905.     /* Rx packets   */ inb(ioaddr + 7);
  906.     /* Tx deferrals */ inb(ioaddr + 8);
  907.     /* Rx octets */ inw(ioaddr + 10);
  908.     /* Tx octets */ inw(ioaddr + 12);
  909.     
  910.     /* Back to window 1, and turn statistics back on. */
  911.     EL3WINDOW(1);
  912.     outw(StatsEnable, ioaddr + EL3_CMD);
  913. }
  914. static int el3_rx(struct net_device *dev)
  915. {
  916.     struct el3_private *lp = (struct el3_private *)dev->priv;
  917.     ioaddr_t ioaddr = dev->base_addr;
  918.     int worklimit = 32;
  919.     short rx_status;
  920.     
  921.     DEBUG(3, "%s: in rx_packet(), status %4.4x, rx_status %4.4x.n",
  922.   dev->name, inw(ioaddr+EL3_STATUS), inw(ioaddr+RX_STATUS));
  923.     while (!((rx_status = inw(ioaddr + RX_STATUS)) & 0x8000) &&
  924.    (--worklimit >= 0)) {
  925. if (rx_status & 0x4000) { /* Error, update stats. */
  926.     short error = rx_status & 0x3800;
  927.     lp->stats.rx_errors++;
  928.     switch (error) {
  929.     case 0x0000: lp->stats.rx_over_errors++; break;
  930.     case 0x0800: lp->stats.rx_length_errors++; break;
  931.     case 0x1000: lp->stats.rx_frame_errors++; break;
  932.     case 0x1800: lp->stats.rx_length_errors++; break;
  933.     case 0x2000: lp->stats.rx_frame_errors++; break;
  934.     case 0x2800: lp->stats.rx_crc_errors++; break;
  935.     }
  936. } else {
  937.     short pkt_len = rx_status & 0x7ff;
  938.     struct sk_buff *skb;
  939.     
  940.     skb = dev_alloc_skb(pkt_len+5);
  941.     
  942.     DEBUG(3, "    Receiving packet size %d status %4.4x.n",
  943.   pkt_len, rx_status);
  944.     if (skb != NULL) {
  945. skb->dev = dev;
  946. skb_reserve(skb, 2);
  947. insl(ioaddr+RX_FIFO, skb_put(skb, pkt_len),
  948. (pkt_len+3)>>2);
  949. skb->protocol = eth_type_trans(skb, dev);
  950. netif_rx(skb);
  951. dev->last_rx = jiffies;
  952. lp->stats.rx_packets++;
  953. lp->stats.rx_bytes += pkt_len;
  954.     } else {
  955. DEBUG(1, "%s: couldn't allocate a sk_buff of"
  956.       " size %d.n", dev->name, pkt_len);
  957. lp->stats.rx_dropped++;
  958.     }
  959. }
  960. /* Pop the top of the Rx FIFO */
  961. tc589_wait_for_completion(dev, RxDiscard);
  962.     }
  963.     if (worklimit == 0)
  964. printk(KERN_NOTICE "%s: too much work in el3_rx!n", dev->name);
  965.     return 0;
  966. }
  967. static void set_multicast_list(struct net_device *dev)
  968. {
  969.     struct el3_private *lp = dev->priv;
  970.     dev_link_t *link = &lp->link;
  971.     ioaddr_t ioaddr = dev->base_addr;
  972.     u_short opts = SetRxFilter | RxStation | RxBroadcast;
  973.     if (!(DEV_OK(link))) return;
  974.     if (dev->flags & IFF_PROMISC)
  975. opts |= RxMulticast | RxProm;
  976.     else if (dev->mc_count || (dev->flags & IFF_ALLMULTI))
  977. opts |= RxMulticast;
  978.     outw(opts, ioaddr + EL3_CMD);
  979. }
  980. static int el3_close(struct net_device *dev)
  981. {
  982.     struct el3_private *lp = dev->priv;
  983.     dev_link_t *link = &lp->link;
  984.     ioaddr_t ioaddr = dev->base_addr;
  985.     
  986.     DEBUG(1, "%s: shutting down ethercard.n", dev->name);
  987.     if (DEV_OK(link)) {
  988. /* Turn off statistics ASAP.  We update lp->stats below. */
  989. outw(StatsDisable, ioaddr + EL3_CMD);
  990. /* Disable the receiver and transmitter. */
  991. outw(RxDisable, ioaddr + EL3_CMD);
  992. outw(TxDisable, ioaddr + EL3_CMD);
  993. if (dev->if_port == 2)
  994.     /* Turn off thinnet power.  Green! */
  995.     outw(StopCoax, ioaddr + EL3_CMD);
  996. else if (dev->if_port == 1) {
  997.     /* Disable link beat and jabber */
  998.     EL3WINDOW(4);
  999.     outw(0, ioaddr + WN4_MEDIA);
  1000. }
  1001. /* Switching back to window 0 disables the IRQ. */
  1002. EL3WINDOW(0);
  1003. /* But we explicitly zero the IRQ line select anyway. */
  1004. outw(0x0f00, ioaddr + WN0_IRQ);
  1005.         
  1006. /* Check if the card still exists */
  1007. if ((inw(ioaddr+EL3_STATUS) & 0xe000) == 0x2000)
  1008.     update_stats(dev);
  1009.     }
  1010.     link->open--;
  1011.     netif_stop_queue(dev);
  1012.     del_timer(&lp->media);
  1013.     if (link->state & DEV_STALE_CONFIG)
  1014. mod_timer(&link->release, jiffies + HZ/20);
  1015.     
  1016.     MOD_DEC_USE_COUNT;
  1017.     
  1018.     return 0;
  1019. }
  1020. /*====================================================================*/
  1021. static int __init init_3c589_cs(void)
  1022. {
  1023.     servinfo_t serv;
  1024.     DEBUG(0, "%sn", version);
  1025.     CardServices(GetCardServicesInfo, &serv);
  1026.     if (serv.Revision != CS_RELEASE_CODE) {
  1027. printk(KERN_NOTICE "3c589_cs: Card Services release "
  1028.        "does not match!n");
  1029. return -1;
  1030.     }
  1031.     register_pccard_driver(&dev_info, &tc589_attach, &tc589_detach);
  1032.     return 0;
  1033. }
  1034. static void __exit exit_3c589_cs(void)
  1035. {
  1036.     DEBUG(0, "3c589_cs: unloadingn");
  1037.     unregister_pccard_driver(&dev_info);
  1038.     while (dev_list != NULL)
  1039. tc589_detach(dev_list);
  1040. }
  1041. module_init(init_3c589_cs);
  1042. module_exit(exit_3c589_cs);