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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     A PCMCIA ethernet driver for NS8390-based cards
  3.     This driver supports the D-Link DE-650 and Linksys EthernetCard
  4.     cards, the newer D-Link and Linksys combo cards, Accton EN2212
  5.     cards, the RPTI EP400, and the PreMax PE-200 in non-shared-memory
  6.     mode, and the IBM Credit Card Adapter, the NE4100, the Thomas
  7.     Conrad ethernet card, and the Kingston KNE-PCM/x in shared-memory
  8.     mode.  It will also handle the Socket EA card in either mode.
  9.     Copyright (C) 1999 David A. Hinds -- dahinds@users.sourceforge.net
  10.     pcnet_cs.c 1.144 2001/11/07 04:06:56
  11.     
  12.     The network driver code is based on Donald Becker's NE2000 code:
  13.     Written 1992,1993 by Donald Becker.
  14.     Copyright 1993 United States Government as represented by the
  15.     Director, National Security Agency.  This software may be used and
  16.     distributed according to the terms of the GNU General Public License,
  17.     incorporated herein by reference.
  18.     Donald Becker may be reached at becker@scyld.com
  19.     Based also on Keith Moore's changes to Don Becker's code, for IBM
  20.     CCAE support.  Drivers merged back together, and shared-memory
  21.     Socket EA support added, by Ken Raeburn, September 1995.
  22. ======================================================================*/
  23. #include <linux/kernel.h>
  24. #include <linux/module.h>
  25. #include <linux/init.h>
  26. #include <linux/sched.h>
  27. #include <linux/ptrace.h>
  28. #include <linux/slab.h>
  29. #include <linux/string.h>
  30. #include <linux/timer.h>
  31. #include <linux/delay.h>
  32. #include <asm/io.h>
  33. #include <asm/system.h>
  34. #include <asm/byteorder.h>
  35. #include <linux/netdevice.h>
  36. #include <../drivers/net/8390.h>
  37. #include <pcmcia/version.h>
  38. #include <pcmcia/cs_types.h>
  39. #include <pcmcia/cs.h>
  40. #include <pcmcia/cistpl.h>
  41. #include <pcmcia/ciscode.h>
  42. #include <pcmcia/ds.h>
  43. #include <pcmcia/cisreg.h>
  44. #define PCNET_CMD 0x00
  45. #define PCNET_DATAPORT 0x10 /* NatSemi-defined port window offset. */
  46. #define PCNET_RESET 0x1f /* Issue a read to reset, a write to clear. */
  47. #define PCNET_MISC 0x18 /* For IBM CCAE and Socket EA cards */
  48. #define PCNET_START_PG 0x40 /* First page of TX buffer */
  49. #define PCNET_STOP_PG 0x80 /* Last page +1 of RX ring */
  50. /* Socket EA cards have a larger packet buffer */
  51. #define SOCKET_START_PG 0x01
  52. #define SOCKET_STOP_PG 0xff
  53. #define PCNET_RDC_TIMEOUT 0x02 /* Max wait in jiffies for Tx RDC */
  54. static char *if_names[] = { "auto", "10baseT", "10base2"};
  55. #ifdef PCMCIA_DEBUG
  56. static int pc_debug = PCMCIA_DEBUG;
  57. MODULE_PARM(pc_debug, "i");
  58. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  59. static char *version =
  60. "pcnet_cs.c 1.144 2001/11/07 04:06:56 (David Hinds)";
  61. #else
  62. #define DEBUG(n, args...)
  63. #endif
  64. /*====================================================================*/
  65. /* Module parameters */
  66. MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
  67. MODULE_DESCRIPTION("NE2000 compatible PCMCIA ethernet driver");
  68. MODULE_LICENSE("GPL");
  69. #define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i")
  70. /* Bit map of interrupts to choose from */
  71. INT_MODULE_PARM(irq_mask, 0xdeb8);
  72. static int irq_list[4] = { -1 };
  73. MODULE_PARM(irq_list, "1-4i");
  74. INT_MODULE_PARM(if_port, 1); /* Transceiver type */
  75. INT_MODULE_PARM(use_big_buf, 1); /* use 64K packet buffer? */
  76. INT_MODULE_PARM(mem_speed, 0); /* shared mem speed, in ns */
  77. INT_MODULE_PARM(delay_output, 0); /* pause after xmit? */
  78. INT_MODULE_PARM(delay_time, 4); /* in usec */
  79. INT_MODULE_PARM(use_shmem, -1); /* use shared memory? */
  80. INT_MODULE_PARM(full_duplex, 0); /* full duplex? */
  81. /* Ugh!  Let the user hardwire the hardware address for queer cards */
  82. static int hw_addr[6] = { 0, /* ... */ };
  83. MODULE_PARM(hw_addr, "6i");
  84. /*====================================================================*/
  85. static void mii_phy_probe(struct net_device *dev);
  86. static void pcnet_config(dev_link_t *link);
  87. static void pcnet_release(u_long arg);
  88. static int pcnet_event(event_t event, int priority,
  89.        event_callback_args_t *args);
  90. static int pcnet_open(struct net_device *dev);
  91. static int pcnet_close(struct net_device *dev);
  92. static int ei_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  93. static void ei_irq_wrapper(int irq, void *dev_id, struct pt_regs *regs);
  94. static void ei_watchdog(u_long arg);
  95. static void pcnet_reset_8390(struct net_device *dev);
  96. static int set_config(struct net_device *dev, struct ifmap *map);
  97. static int setup_shmem_window(dev_link_t *link, int start_pg,
  98.       int stop_pg, int cm_offset);
  99. static int setup_dma_config(dev_link_t *link, int start_pg,
  100.     int stop_pg);
  101. static dev_link_t *pcnet_attach(void);
  102. static void pcnet_detach(dev_link_t *);
  103. static dev_info_t dev_info = "pcnet_cs";
  104. static dev_link_t *dev_list;
  105. /*====================================================================*/
  106. typedef struct hw_info_t {
  107.     u_int offset;
  108.     u_char a0, a1, a2;
  109.     u_int flags;
  110. } hw_info_t;
  111. #define DELAY_OUTPUT 0x01
  112. #define HAS_MISC_REG 0x02
  113. #define USE_BIG_BUF 0x04
  114. #define HAS_IBM_MISC 0x08
  115. #define IS_DL10019 0x10
  116. #define IS_DL10022 0x20
  117. #define HAS_MII 0x40
  118. #define USE_SHMEM 0x80 /* autodetected */
  119. #define AM79C9XX_HOME_PHY 0x00006B90  /* HomePNA PHY */
  120. #define AM79C9XX_ETH_PHY 0x00006B70  /* 10baseT PHY */
  121. #define MII_PHYID_REV_MASK 0xfffffff0
  122. #define MII_PHYID_REG1 0x02
  123. #define MII_PHYID_REG2 0x03
  124. static hw_info_t hw_info[] = {
  125.     { /* Accton EN2212 */ 0x0ff0, 0x00, 0x00, 0xe8, DELAY_OUTPUT }, 
  126.     { /* Allied Telesis LA-PCM */ 0x0ff0, 0x00, 0x00, 0xf4, 0 },
  127.     { /* APEX MultiCard */ 0x03f4, 0x00, 0x20, 0xe5, 0 },
  128.     { /* ASANTE FriendlyNet */ 0x4910, 0x00, 0x00, 0x94,
  129.       DELAY_OUTPUT | HAS_IBM_MISC },
  130.     { /* Danpex EN-6200P2 */ 0x0110, 0x00, 0x40, 0xc7, 0 },
  131.     { /* DataTrek NetCard */ 0x0ff0, 0x00, 0x20, 0xe8, 0 },
  132.     { /* Dayna CommuniCard E */ 0x0110, 0x00, 0x80, 0x19, 0 },
  133.     { /* D-Link DE-650 */ 0x0040, 0x00, 0x80, 0xc8, 0 },
  134.     { /* EP-210 Ethernet */ 0x0110, 0x00, 0x40, 0x33, 0 },
  135.     { /* EP4000 Ethernet */ 0x01c0, 0x00, 0x00, 0xb4, 0 },
  136.     { /* Epson EEN10B */ 0x0ff0, 0x00, 0x00, 0x48,
  137.       HAS_MISC_REG | HAS_IBM_MISC },
  138.     { /* ELECOM Laneed LD-CDWA */ 0xb8, 0x08, 0x00, 0x42, 0 },
  139.     { /* Hypertec Ethernet */ 0x01c0, 0x00, 0x40, 0x4c, 0 },
  140.     { /* IBM CCAE */ 0x0ff0, 0x08, 0x00, 0x5a,
  141.       HAS_MISC_REG | HAS_IBM_MISC },
  142.     { /* IBM CCAE */ 0x0ff0, 0x00, 0x04, 0xac,
  143.       HAS_MISC_REG | HAS_IBM_MISC },
  144.     { /* IBM CCAE */ 0x0ff0, 0x00, 0x06, 0x29,
  145.       HAS_MISC_REG | HAS_IBM_MISC },
  146.     { /* IBM FME */ 0x0374, 0x08, 0x00, 0x5a,
  147.       HAS_MISC_REG | HAS_IBM_MISC },
  148.     { /* IBM FME */ 0x0374, 0x00, 0x04, 0xac,
  149.       HAS_MISC_REG | HAS_IBM_MISC },
  150.     { /* Kansai KLA-PCM/T */ 0x0ff0, 0x00, 0x60, 0x87,
  151.       HAS_MISC_REG | HAS_IBM_MISC },
  152.     { /* NSC DP83903 */ 0x0374, 0x08, 0x00, 0x17,
  153.       HAS_MISC_REG | HAS_IBM_MISC },
  154.     { /* NSC DP83903 */ 0x0374, 0x00, 0xc0, 0xa8,
  155.       HAS_MISC_REG | HAS_IBM_MISC },
  156.     { /* NSC DP83903 */ 0x0374, 0x00, 0xa0, 0xb0,
  157.       HAS_MISC_REG | HAS_IBM_MISC },
  158.     { /* NSC DP83903 */ 0x0198, 0x00, 0x20, 0xe0,
  159.       HAS_MISC_REG | HAS_IBM_MISC },
  160.     { /* I-O DATA PCLA/T */ 0x0ff0, 0x00, 0xa0, 0xb0, 0 },
  161.     { /* Katron PE-520 */ 0x0110, 0x00, 0x40, 0xf6, 0 },
  162.     { /* Kingston KNE-PCM/x */ 0x0ff0, 0x00, 0xc0, 0xf0,
  163.       HAS_MISC_REG | HAS_IBM_MISC },
  164.     { /* Kingston KNE-PCM/x */ 0x0ff0, 0xe2, 0x0c, 0x0f,
  165.       HAS_MISC_REG | HAS_IBM_MISC },
  166.     { /* Kingston KNE-PC2 */ 0x0180, 0x00, 0xc0, 0xf0, 0 },
  167.     { /* Maxtech PCN2000 */ 0x5000, 0x00, 0x00, 0xe8, 0 },
  168.     { /* NDC Instant-Link */ 0x003a, 0x00, 0x80, 0xc6, 0 },
  169.     { /* NE2000 Compatible */ 0x0ff0, 0x00, 0xa0, 0x0c, 0 },
  170.     { /* Network General Sniffer */ 0x0ff0, 0x00, 0x00, 0x65,
  171.       HAS_MISC_REG | HAS_IBM_MISC },
  172.     { /* Panasonic VEL211 */ 0x0ff0, 0x00, 0x80, 0x45, 
  173.       HAS_MISC_REG | HAS_IBM_MISC },
  174.     { /* PreMax PE-200 */ 0x07f0, 0x00, 0x20, 0xe0, 0 },
  175.     { /* RPTI EP400 */ 0x0110, 0x00, 0x40, 0x95, 0 },
  176.     { /* SCM Ethernet */ 0x0ff0, 0x00, 0x20, 0xcb, 0 },
  177.     { /* Socket EA */ 0x4000, 0x00, 0xc0, 0x1b,
  178.       DELAY_OUTPUT | HAS_MISC_REG | USE_BIG_BUF },
  179.     { /* Socket LP-E CF+ */ 0x01c0, 0x00, 0xc0, 0x1b, 0 },
  180.     { /* SuperSocket RE450T */ 0x0110, 0x00, 0xe0, 0x98, 0 },
  181.     { /* Volktek NPL-402CT */ 0x0060, 0x00, 0x40, 0x05, 0 },
  182.     { /* NEC PC-9801N-J12 */ 0x0ff0, 0x00, 0x00, 0x4c, 0 },
  183.     { /* PCMCIA Technology OEM */ 0x01c8, 0x00, 0xa0, 0x0c, 0 }
  184. };
  185. #define NR_INFO (sizeof(hw_info)/sizeof(hw_info_t))
  186. static hw_info_t default_info = { 0, 0, 0, 0, 0 };
  187. static hw_info_t dl10019_info = { 0, 0, 0, 0, IS_DL10019|HAS_MII };
  188. static hw_info_t dl10022_info = { 0, 0, 0, 0, IS_DL10022|HAS_MII };
  189. typedef struct pcnet_dev_t {
  190.     struct net_device dev; /* so &dev == &pcnet_dev_t */
  191.     dev_link_t link;
  192.     dev_node_t node;
  193.     u_int flags;
  194.     caddr_t base;
  195.     struct timer_list watchdog;
  196.     int stale, fast_poll;
  197.     u_char phy_id;
  198.     u_char eth_phy, pna_phy;
  199.     u_short link_status;
  200.     u_long mii_reset;
  201. } pcnet_dev_t;
  202. /*======================================================================
  203.     This bit of code is used to avoid unregistering network devices
  204.     at inappropriate times.  2.2 and later kernels are fairly picky
  205.     about when this can happen.
  206.     
  207. ======================================================================*/
  208. static void flush_stale_links(void)
  209. {
  210.     dev_link_t *link, *next;
  211.     for (link = dev_list; link; link = next) {
  212. next = link->next;
  213. if (link->state & DEV_STALE_LINK)
  214.     pcnet_detach(link);
  215.     }
  216. }
  217. /*====================================================================*/
  218. static void cs_error(client_handle_t handle, int func, int ret)
  219. {
  220.     error_info_t err = { func, ret };
  221.     CardServices(ReportError, handle, &err);
  222. }
  223. /*======================================================================
  224.     We never need to do anything when a pcnet device is "initialized"
  225.     by the net software, because we only register already-found cards.
  226. ======================================================================*/
  227. static int pcnet_init(struct net_device *dev)
  228. {
  229.     return 0;
  230. }
  231. /*======================================================================
  232.     pcnet_attach() creates an "instance" of the driver, allocating
  233.     local data structures for one device.  The device is registered
  234.     with Card Services.
  235. ======================================================================*/
  236. static dev_link_t *pcnet_attach(void)
  237. {
  238.     pcnet_dev_t *info;
  239.     dev_link_t *link;
  240.     struct net_device *dev;
  241.     client_reg_t client_reg;
  242.     int i, ret;
  243.     DEBUG(0, "pcnet_attach()n");
  244.     flush_stale_links();
  245.     /* Create new ethernet device */
  246.     info = kmalloc(sizeof(*info), GFP_KERNEL);
  247.     if (!info) return NULL;
  248.     memset(info, 0, sizeof(*info));
  249.     link = &info->link; dev = &info->dev;
  250.     link->priv = info;
  251.     
  252.     link->release.function = &pcnet_release;
  253.     link->release.data = (u_long)link;
  254.     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
  255.     link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  256.     if (irq_list[0] == -1)
  257. link->irq.IRQInfo2 = irq_mask;
  258.     else
  259. for (i = 0; i < 4; i++)
  260.     link->irq.IRQInfo2 |= 1 << irq_list[i];
  261.     link->conf.Attributes = CONF_ENABLE_IRQ;
  262.     link->conf.IntType = INT_MEMORY_AND_IO;
  263.     ethdev_init(dev);
  264.     dev->init = &pcnet_init;
  265.     dev->open = &pcnet_open;
  266.     dev->stop = &pcnet_close;
  267.     dev->set_config = &set_config;
  268.     /* Register with Card Services */
  269.     link->next = dev_list;
  270.     dev_list = link;
  271.     client_reg.dev_info = &dev_info;
  272.     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  273.     client_reg.EventMask =
  274. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  275. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  276. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  277.     client_reg.event_handler = &pcnet_event;
  278.     client_reg.Version = 0x0210;
  279.     client_reg.event_callback_args.client_data = link;
  280.     ret = CardServices(RegisterClient, &link->handle, &client_reg);
  281.     if (ret != CS_SUCCESS) {
  282. cs_error(link->handle, RegisterClient, ret);
  283. pcnet_detach(link);
  284. return NULL;
  285.     }
  286.     return link;
  287. } /* pcnet_attach */
  288. /*======================================================================
  289.     This deletes a driver "instance".  The device is de-registered
  290.     with Card Services.  If it has been released, all local data
  291.     structures are freed.  Otherwise, the structures will be freed
  292.     when the device is released.
  293. ======================================================================*/
  294. static void pcnet_detach(dev_link_t *link)
  295. {
  296.     pcnet_dev_t *info = link->priv;
  297.     dev_link_t **linkp;
  298.     DEBUG(0, "pcnet_detach(0x%p)n", link);
  299.     /* Locate device structure */
  300.     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  301. if (*linkp == link) break;
  302.     if (*linkp == NULL)
  303. return;
  304.     del_timer(&link->release);
  305.     if (link->state & DEV_CONFIG) {
  306. pcnet_release((u_long)link);
  307. if (link->state & DEV_STALE_CONFIG) {
  308.     link->state |= DEV_STALE_LINK;
  309.     return;
  310. }
  311.     }
  312.     if (link->handle)
  313. CardServices(DeregisterClient, link->handle);
  314.     /* Unlink device structure, free bits */
  315.     *linkp = link->next;
  316.     if (link->dev)
  317. unregister_netdev(&info->dev);
  318.     kfree(info);
  319. } /* pcnet_detach */
  320. /*======================================================================
  321.     This probes for a card's hardware address, for card types that
  322.     encode this information in their CIS.
  323. ======================================================================*/
  324. static hw_info_t *get_hwinfo(dev_link_t *link)
  325. {
  326.     struct net_device *dev = link->priv;
  327.     win_req_t req;
  328.     memreq_t mem;
  329.     u_char *base, *virt;
  330.     int i, j;
  331.     /* Allocate a small memory window */
  332.     req.Attributes = WIN_DATA_WIDTH_8|WIN_MEMORY_TYPE_AM|WIN_ENABLE;
  333.     req.Base = 0; req.Size = 0;
  334.     req.AccessSpeed = 0;
  335.     link->win = (window_handle_t)link->handle;
  336.     i = CardServices(RequestWindow, &link->win, &req);
  337.     if (i != CS_SUCCESS) {
  338. cs_error(link->handle, RequestWindow, i);
  339. return NULL;
  340.     }
  341.     virt = ioremap(req.Base, req.Size);
  342.     mem.Page = 0;
  343.     for (i = 0; i < NR_INFO; i++) {
  344. mem.CardOffset = hw_info[i].offset & ~(req.Size-1);
  345. CardServices(MapMemPage, link->win, &mem);
  346. base = &virt[hw_info[i].offset & (req.Size-1)];
  347. if ((readb(base+0) == hw_info[i].a0) &&
  348.     (readb(base+2) == hw_info[i].a1) &&
  349.     (readb(base+4) == hw_info[i].a2))
  350.     break;
  351.     }
  352.     if (i < NR_INFO) {
  353. for (j = 0; j < 6; j++)
  354.     dev->dev_addr[j] = readb(base + (j<<1));
  355.     }
  356.     
  357.     iounmap(virt);
  358.     j = CardServices(ReleaseWindow, link->win);
  359.     if (j != CS_SUCCESS)
  360. cs_error(link->handle, ReleaseWindow, j);
  361.     return (i < NR_INFO) ? hw_info+i : NULL;
  362. } /* get_hwinfo */
  363. /*======================================================================
  364.     This probes for a card's hardware address by reading the PROM.
  365.     It checks the address against a list of known types, then falls
  366.     back to a simple NE2000 clone signature check.
  367. ======================================================================*/
  368. static hw_info_t *get_prom(dev_link_t *link)
  369. {
  370.     struct net_device *dev = link->priv;
  371.     ioaddr_t ioaddr = dev->base_addr;
  372.     u_char prom[32];
  373.     int i, j;
  374.     /* This is lifted straight from drivers/net/ne.c */
  375.     struct {
  376. u_char value, offset;
  377.     } program_seq[] = {
  378. {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD}, /* Select page 0*/
  379. {0x48, EN0_DCFG}, /* Set byte-wide (0x48) access. */
  380. {0x00, EN0_RCNTLO}, /* Clear the count regs. */
  381. {0x00, EN0_RCNTHI},
  382. {0x00, EN0_IMR}, /* Mask completion irq. */
  383. {0xFF, EN0_ISR},
  384. {E8390_RXOFF, EN0_RXCR}, /* 0x20  Set to monitor */
  385. {E8390_TXOFF, EN0_TXCR}, /* 0x02  and loopback mode. */
  386. {32, EN0_RCNTLO},
  387. {0x00, EN0_RCNTHI},
  388. {0x00, EN0_RSARLO}, /* DMA starting at 0x0000. */
  389. {0x00, EN0_RSARHI},
  390. {E8390_RREAD+E8390_START, E8390_CMD},
  391.     };
  392.     pcnet_reset_8390(dev);
  393.     mdelay(10);
  394.     for (i = 0; i < sizeof(program_seq)/sizeof(program_seq[0]); i++)
  395. outb_p(program_seq[i].value, ioaddr + program_seq[i].offset);
  396.     for (i = 0; i < 32; i++)
  397. prom[i] = inb(ioaddr + PCNET_DATAPORT);
  398.     for (i = 0; i < NR_INFO; i++) {
  399. if ((prom[0] == hw_info[i].a0) &&
  400.     (prom[2] == hw_info[i].a1) &&
  401.     (prom[4] == hw_info[i].a2))
  402.     break;
  403.     }
  404.     if ((i < NR_INFO) || ((prom[28] == 0x57) && (prom[30] == 0x57))) {
  405. for (j = 0; j < 6; j++)
  406.     dev->dev_addr[j] = prom[j<<1];
  407. return (i < NR_INFO) ? hw_info+i : &default_info;
  408.     }
  409.     return NULL;
  410. } /* get_prom */
  411. /*======================================================================
  412.     For DL10019 based cards, like the Linksys EtherFast
  413. ======================================================================*/
  414. static hw_info_t *get_dl10019(dev_link_t *link)
  415. {
  416.     struct net_device *dev = link->priv;
  417.     int i;
  418.     u_char sum;
  419.     for (sum = 0, i = 0x14; i < 0x1c; i++)
  420. sum += inb_p(dev->base_addr + i);
  421.     if (sum != 0xff)
  422. return NULL;
  423.     for (i = 0; i < 6; i++)
  424. dev->dev_addr[i] = inb_p(dev->base_addr + 0x14 + i);
  425.     i = inb(dev->base_addr + 0x1f);
  426.     return ((i == 0x91)||(i == 0x99)) ? &dl10022_info : &dl10019_info;
  427. }
  428. /*======================================================================
  429.     For Asix AX88190 based cards
  430. ======================================================================*/
  431. static hw_info_t *get_ax88190(dev_link_t *link)
  432. {
  433.     struct net_device *dev = link->priv;
  434.     ioaddr_t ioaddr = dev->base_addr;
  435.     int i, j;
  436.     /* Not much of a test, but the alternatives are messy */
  437.     if (link->conf.ConfigBase != 0x03c0)
  438. return NULL;
  439.     outb_p(0x01, ioaddr + EN0_DCFG); /* Set word-wide access. */
  440.     outb_p(0x00, ioaddr + EN0_RSARLO); /* DMA starting at 0x0400. */
  441.     outb_p(0x04, ioaddr + EN0_RSARHI);
  442.     outb_p(E8390_RREAD+E8390_START, ioaddr + E8390_CMD);
  443.     for (i = 0; i < 6; i += 2) {
  444. j = inw(ioaddr + PCNET_DATAPORT);
  445. dev->dev_addr[i] = j & 0xff;
  446. dev->dev_addr[i+1] = j >> 8;
  447.     }
  448.     printk(KERN_NOTICE "pcnet_cs: this is an AX88190 card!n");
  449.     printk(KERN_NOTICE "pcnet_cs: use axnet_cs instead.n");
  450.     return NULL;
  451. }
  452. /*======================================================================
  453.     This should be totally unnecessary... but when we can't figure
  454.     out the hardware address any other way, we'll let the user hard
  455.     wire it when the module is initialized.
  456. ======================================================================*/
  457. static hw_info_t *get_hwired(dev_link_t *link)
  458. {
  459.     struct net_device *dev = link->priv;
  460.     int i;
  461.     for (i = 0; i < 6; i++)
  462. if (hw_addr[i] != 0) break;
  463.     if (i == 6)
  464. return NULL;
  465.     for (i = 0; i < 6; i++)
  466. dev->dev_addr[i] = hw_addr[i];
  467.     return &default_info;
  468. } /* get_hwired */
  469. /*======================================================================
  470.     pcnet_config() is scheduled to run after a CARD_INSERTION event
  471.     is received, to configure the PCMCIA socket, and to make the
  472.     ethernet device available to the system.
  473. ======================================================================*/
  474. #define CS_CHECK(fn, args...) 
  475. while ((last_ret=CardServices(last_fn=(fn), args))!=0) goto cs_failed
  476. #define CFG_CHECK(fn, args...) 
  477. if (CardServices(fn, args) != 0) goto next_entry
  478. static int try_io_port(dev_link_t *link)
  479. {
  480.     int j, ret;
  481.     if (link->io.NumPorts1 == 32) {
  482. link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
  483. if (link->io.NumPorts2 > 0) {
  484.     /* for master/slave multifunction cards */
  485.     link->io.Attributes2 = IO_DATA_PATH_WIDTH_8;
  486.     link->irq.Attributes = 
  487. IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
  488. }
  489.     } else {
  490. /* This should be two 16-port windows */
  491. link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  492. link->io.Attributes2 = IO_DATA_PATH_WIDTH_16;
  493.     }
  494.     if (link->io.BasePort1 == 0) {
  495. link->io.IOAddrLines = 16;
  496. for (j = 0; j < 0x400; j += 0x20) {
  497.     link->io.BasePort1 = j ^ 0x300;
  498.     link->io.BasePort2 = (j ^ 0x300) + 0x10;
  499.     ret = CardServices(RequestIO, link->handle, &link->io);
  500.     if (ret == CS_SUCCESS) return ret;
  501. }
  502. return ret;
  503.     } else {
  504. return CardServices(RequestIO, link->handle, &link->io);
  505.     }
  506. }
  507. static void pcnet_config(dev_link_t *link)
  508. {
  509.     client_handle_t handle = link->handle;
  510.     pcnet_dev_t *info = link->priv;
  511.     struct net_device *dev = &info->dev;
  512.     tuple_t tuple;
  513.     cisparse_t parse;
  514.     int i, last_ret, last_fn, start_pg, stop_pg, cm_offset;
  515.     int manfid = 0, prodid = 0, has_shmem = 0;
  516.     u_short buf[64];
  517.     config_info_t conf;
  518.     hw_info_t *hw_info;
  519.     DEBUG(0, "pcnet_config(0x%p)n", link);
  520.     tuple.Attributes = 0;
  521.     tuple.TupleData = (cisdata_t *)buf;
  522.     tuple.TupleDataMax = sizeof(buf);
  523.     tuple.TupleOffset = 0;
  524.     tuple.DesiredTuple = CISTPL_CONFIG;
  525.     CS_CHECK(GetFirstTuple, handle, &tuple);
  526.     CS_CHECK(GetTupleData, handle, &tuple);
  527.     CS_CHECK(ParseTuple, handle, &tuple, &parse);
  528.     link->conf.ConfigBase = parse.config.base;
  529.     link->conf.Present = parse.config.rmask[0];
  530.     /* Configure card */
  531.     link->state |= DEV_CONFIG;
  532.     /* Look up current Vcc */
  533.     CS_CHECK(GetConfigurationInfo, handle, &conf);
  534.     link->conf.Vcc = conf.Vcc;
  535.     tuple.DesiredTuple = CISTPL_MANFID;
  536.     tuple.Attributes = TUPLE_RETURN_COMMON;
  537.     if ((CardServices(GetFirstTuple, handle, &tuple) == CS_SUCCESS) &&
  538.   (CardServices(GetTupleData, handle, &tuple) == CS_SUCCESS)) {
  539. manfid = le16_to_cpu(buf[0]);
  540. prodid = le16_to_cpu(buf[1]);
  541.     }
  542.     
  543.     tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  544.     tuple.Attributes = 0;
  545.     CS_CHECK(GetFirstTuple, handle, &tuple);
  546.     while (last_ret == CS_SUCCESS) {
  547. cistpl_cftable_entry_t *cfg = &(parse.cftable_entry);
  548. cistpl_io_t *io = &(parse.cftable_entry.io);
  549. CFG_CHECK(GetTupleData, handle, &tuple);
  550. CFG_CHECK(ParseTuple, handle, &tuple, &parse);
  551. if ((cfg->index == 0) || (cfg->io.nwin == 0))
  552.     goto next_entry;
  553. link->conf.ConfigIndex = cfg->index;
  554. /* For multifunction cards, by convention, we configure the
  555.    network function with window 0, and serial with window 1 */
  556. if (io->nwin > 1) {
  557.     i = (io->win[1].len > io->win[0].len);
  558.     link->io.BasePort2 = io->win[1-i].base;
  559.     link->io.NumPorts2 = io->win[1-i].len;
  560. } else {
  561.     i = link->io.NumPorts2 = 0;
  562. }
  563. has_shmem = ((cfg->mem.nwin == 1) &&
  564.      (cfg->mem.win[0].len >= 0x4000));
  565. link->io.BasePort1 = io->win[i].base;
  566. link->io.NumPorts1 = io->win[i].len;
  567. link->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
  568. if (link->io.NumPorts1 + link->io.NumPorts2 >= 32) {
  569.     last_ret = try_io_port(link);
  570.     if (last_ret == CS_SUCCESS) break;
  571. }
  572.     next_entry:
  573. last_ret = CardServices(GetNextTuple, handle, &tuple);
  574.     }
  575.     if (last_ret != CS_SUCCESS) {
  576. cs_error(handle, RequestIO, last_ret);
  577. goto failed;
  578.     }
  579.     CS_CHECK(RequestIRQ, handle, &link->irq);
  580.     
  581.     if (link->io.NumPorts2 == 8) {
  582. link->conf.Attributes |= CONF_ENABLE_SPKR;
  583. link->conf.Status = CCSR_AUDIO_ENA;
  584.     }
  585.     if ((manfid == MANFID_IBM) &&
  586. (prodid == PRODID_IBM_HOME_AND_AWAY))
  587. link->conf.ConfigIndex |= 0x10;
  588.     
  589.     CS_CHECK(RequestConfiguration, handle, &link->conf);
  590.     dev->irq = link->irq.AssignedIRQ;
  591.     dev->base_addr = link->io.BasePort1;
  592.     if (info->flags & HAS_MISC_REG) {
  593. if ((if_port == 1) || (if_port == 2))
  594.     dev->if_port = if_port;
  595. else
  596.     printk(KERN_NOTICE "pcnet_cs: invalid if_port requestedn");
  597.     } else {
  598. dev->if_port = 0;
  599.     }
  600.     if (register_netdev(dev) != 0) {
  601. printk(KERN_NOTICE "pcnet_cs: register_netdev() failedn");
  602. goto failed;
  603.     }
  604.     hw_info = get_hwinfo(link);
  605.     if (hw_info == NULL)
  606. hw_info = get_prom(link);
  607.     if (hw_info == NULL)
  608. hw_info = get_dl10019(link);
  609.     if (hw_info == NULL)
  610. hw_info = get_ax88190(link);
  611.     if (hw_info == NULL)
  612. hw_info = get_hwired(link);
  613.     
  614.     if (hw_info == NULL) {
  615. printk(KERN_NOTICE "pcnet_cs: unable to read hardware net"
  616.        " address for io base %#3lxn", dev->base_addr);
  617. unregister_netdev(dev);
  618. goto failed;
  619.     }
  620.     info->flags = hw_info->flags;
  621.     /* Check for user overrides */
  622.     info->flags |= (delay_output) ? DELAY_OUTPUT : 0;
  623.     if ((manfid == MANFID_SOCKET) &&
  624. ((prodid == PRODID_SOCKET_LPE) ||
  625.  (prodid == PRODID_SOCKET_LPE_CF) ||
  626.  (prodid == PRODID_SOCKET_EIO)))
  627. info->flags &= ~USE_BIG_BUF;
  628.     if (!use_big_buf)
  629. info->flags &= ~USE_BIG_BUF;
  630.     
  631.     if (info->flags & USE_BIG_BUF) {
  632. start_pg = SOCKET_START_PG;
  633. stop_pg = SOCKET_STOP_PG;
  634. cm_offset = 0x10000;
  635.     } else {
  636. start_pg = PCNET_START_PG;
  637. stop_pg = PCNET_STOP_PG;
  638. cm_offset = 0;
  639.     }
  640.     /* has_shmem is ignored if use_shmem != -1 */
  641.     if ((use_shmem == 0) || (!has_shmem && (use_shmem == -1)) ||
  642. (setup_shmem_window(link, start_pg, stop_pg, cm_offset) != 0))
  643. setup_dma_config(link, start_pg, stop_pg);
  644.     ei_status.name = "NE2000";
  645.     ei_status.word16 = 1;
  646.     ei_status.reset_8390 = &pcnet_reset_8390;
  647.     strcpy(info->node.dev_name, dev->name);
  648.     link->dev = &info->node;
  649.     link->state &= ~DEV_CONFIG_PENDING;
  650.     if (info->flags & (IS_DL10019|IS_DL10022)) {
  651. u_char id = inb(dev->base_addr + 0x1a);
  652. dev->do_ioctl = &ei_ioctl;
  653. mii_phy_probe(dev);
  654. printk(KERN_INFO "%s: NE2000 (DL100%d rev %02x): ",
  655.        dev->name, ((info->flags & IS_DL10022) ? 22 : 19), id);
  656. if (info->pna_phy)
  657.     printk("PNA, ");
  658.     } else
  659. printk(KERN_INFO "%s: NE2000 Compatible: ", dev->name);
  660.     printk("io %#3lx, irq %d,", dev->base_addr, dev->irq);
  661.     if (info->flags & USE_SHMEM)
  662. printk (" mem %#5lx,", dev->mem_start);
  663.     if (info->flags & HAS_MISC_REG)
  664. printk(" %s xcvr,", if_names[dev->if_port]);
  665.     printk(" hw_addr ");
  666.     for (i = 0; i < 6; i++)
  667. printk("%02X%s", dev->dev_addr[i], ((i<5) ? ":" : "n"));
  668.     return;
  669. cs_failed:
  670.     cs_error(link->handle, last_fn, last_ret);
  671. failed:
  672.     pcnet_release((u_long)link);
  673.     return;
  674. } /* pcnet_config */
  675. /*======================================================================
  676.     After a card is removed, pcnet_release() will unregister the net
  677.     device, and release the PCMCIA configuration.  If the device is
  678.     still open, this will be postponed until it is closed.
  679. ======================================================================*/
  680. static void pcnet_release(u_long arg)
  681. {
  682.     dev_link_t *link = (dev_link_t *)arg;
  683.     pcnet_dev_t *info = link->priv;
  684.     DEBUG(0, "pcnet_release(0x%p)n", link);
  685.     if (link->open) {
  686. DEBUG(1, "pcnet_cs: release postponed, '%s' still openn",
  687.       info->node.dev_name);
  688. link->state |= DEV_STALE_CONFIG;
  689. return;
  690.     }
  691.     if (info->flags & USE_SHMEM) {
  692. iounmap(info->base);
  693. CardServices(ReleaseWindow, link->win);
  694.     }
  695.     CardServices(ReleaseConfiguration, link->handle);
  696.     CardServices(ReleaseIO, link->handle, &link->io);
  697.     CardServices(ReleaseIRQ, link->handle, &link->irq);
  698.     link->state &= ~DEV_CONFIG;
  699. } /* pcnet_release */
  700. /*======================================================================
  701.     The card status event handler.  Mostly, this schedules other
  702.     stuff to run after an event is received.  A CARD_REMOVAL event
  703.     also sets some flags to discourage the net drivers from trying
  704.     to talk to the card any more.
  705. ======================================================================*/
  706. static int pcnet_event(event_t event, int priority,
  707.        event_callback_args_t *args)
  708. {
  709.     dev_link_t *link = args->client_data;
  710.     pcnet_dev_t *info = link->priv;
  711.     DEBUG(2, "pcnet_event(0x%06x)n", event);
  712.     switch (event) {
  713.     case CS_EVENT_CARD_REMOVAL:
  714. link->state &= ~DEV_PRESENT;
  715. if (link->state & DEV_CONFIG) {
  716.     netif_device_detach(&info->dev);
  717.     mod_timer(&link->release, jiffies + HZ/20);
  718. }
  719. break;
  720.     case CS_EVENT_CARD_INSERTION:
  721. link->state |= DEV_PRESENT;
  722. pcnet_config(link);
  723. break;
  724.     case CS_EVENT_PM_SUSPEND:
  725. link->state |= DEV_SUSPEND;
  726. /* Fall through... */
  727.     case CS_EVENT_RESET_PHYSICAL:
  728. if (link->state & DEV_CONFIG) {
  729.     if (link->open)
  730. netif_device_detach(&info->dev);
  731.     CardServices(ReleaseConfiguration, link->handle);
  732. }
  733. break;
  734.     case CS_EVENT_PM_RESUME:
  735. link->state &= ~DEV_SUSPEND;
  736. /* Fall through... */
  737.     case CS_EVENT_CARD_RESET:
  738. if (link->state & DEV_CONFIG) {
  739.     CardServices(RequestConfiguration, link->handle, &link->conf);
  740.     if (link->open) {
  741. pcnet_reset_8390(&info->dev);
  742. NS8390_init(&info->dev, 1);
  743. netif_device_attach(&info->dev);
  744.     }
  745. }
  746. break;
  747.     }
  748.     return 0;
  749. } /* pcnet_event */
  750. /*======================================================================
  751.     MII interface support for DL10019 and DL10022 based cards
  752.     On the DL10019, the MII IO direction bit is 0x10; on  the DL10022
  753.     it is 0x20.  Setting both bits seems to work on both card types.
  754. ======================================================================*/
  755. #define DLINK_GPIO 0x1c
  756. #define DLINK_DIAG 0x1d
  757. #define MDIO_SHIFT_CLK 0x80
  758. #define MDIO_DATA_OUT 0x40
  759. #define MDIO_DIR_WRITE 0x30
  760. #define MDIO_DATA_WRITE0 (MDIO_DIR_WRITE)
  761. #define MDIO_DATA_WRITE1 (MDIO_DIR_WRITE | MDIO_DATA_OUT)
  762. #define MDIO_DATA_READ 0x10
  763. #define MDIO_MASK 0x0f
  764. static void mdio_sync(ioaddr_t addr)
  765. {
  766.     int bits, mask = inb(addr) & MDIO_MASK;
  767.     for (bits = 0; bits < 32; bits++) {
  768. outb(mask | MDIO_DATA_WRITE1, addr);
  769. outb(mask | MDIO_DATA_WRITE1 | MDIO_SHIFT_CLK, addr);
  770.     }
  771. }
  772. static int mdio_read(ioaddr_t addr, int phy_id, int loc)
  773. {
  774.     u_int cmd = (0x06<<10)|(phy_id<<5)|loc;
  775.     int i, retval = 0, mask = inb(addr) & MDIO_MASK;
  776.     mdio_sync(addr);
  777.     for (i = 13; i >= 0; i--) {
  778. int dat = (cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
  779. outb(mask | dat, addr);
  780. outb(mask | dat | MDIO_SHIFT_CLK, addr);
  781.     }
  782.     for (i = 19; i > 0; i--) {
  783. outb(mask, addr);
  784. retval = (retval << 1) | ((inb(addr) & MDIO_DATA_READ) != 0);
  785. outb(mask | MDIO_SHIFT_CLK, addr);
  786.     }
  787.     return (retval>>1) & 0xffff;
  788. }
  789. static void mdio_write(ioaddr_t addr, int phy_id, int loc, int value)
  790. {
  791.     u_int cmd = (0x05<<28)|(phy_id<<23)|(loc<<18)|(1<<17)|value;
  792.     int i, mask = inb(addr) & MDIO_MASK;
  793.     mdio_sync(addr);
  794.     for (i = 31; i >= 0; i--) {
  795. int dat = (cmd&(1<<i)) ? MDIO_DATA_WRITE1 : MDIO_DATA_WRITE0;
  796. outb(mask | dat, addr);
  797. outb(mask | dat | MDIO_SHIFT_CLK, addr);
  798.     }
  799.     for (i = 1; i >= 0; i--) {
  800. outb(mask, addr);
  801. outb(mask | MDIO_SHIFT_CLK, addr);
  802.     }
  803. }
  804. static void mdio_reset(ioaddr_t addr, int phy_id)
  805. {
  806.     outb_p(0x08, addr);
  807.     outb_p(0x0c, addr);
  808.     outb_p(0x08, addr);
  809.     outb_p(0x0c, addr);
  810.     outb_p(0x00, addr);
  811. }
  812. /*====================================================================*/
  813. static void set_misc_reg(struct net_device *dev)
  814. {
  815.     ioaddr_t nic_base = dev->base_addr;
  816.     pcnet_dev_t *info = (pcnet_dev_t *)dev;
  817.     u_char tmp;
  818.     
  819.     if (info->flags & HAS_MISC_REG) {
  820. tmp = inb_p(nic_base + PCNET_MISC) & ~3;
  821. if (dev->if_port == 2)
  822.     tmp |= 1;
  823. if (info->flags & USE_BIG_BUF)
  824.     tmp |= 2;
  825. if (info->flags & HAS_IBM_MISC)
  826.     tmp |= 8;
  827. outb_p(tmp, nic_base + PCNET_MISC);
  828.     }
  829.     if (info->flags & IS_DL10022) {
  830. if (info->flags & HAS_MII) {
  831.     mdio_reset(nic_base + DLINK_GPIO, info->eth_phy);
  832.     /* Restart MII autonegotiation */
  833.     mdio_write(nic_base + DLINK_GPIO, info->eth_phy, 0, 0x0000);
  834.     mdio_write(nic_base + DLINK_GPIO, info->eth_phy, 0, 0x1200);
  835.     info->mii_reset = jiffies;
  836. } else {
  837.     outb(full_duplex ? 4 : 0, nic_base + DLINK_DIAG);
  838. }
  839.     }
  840. }
  841. /*====================================================================*/
  842. static void mii_phy_probe(struct net_device *dev)
  843. {
  844.     pcnet_dev_t *info = (pcnet_dev_t *)dev;
  845.     ioaddr_t mii_addr = dev->base_addr + DLINK_GPIO;
  846.     int i;
  847.     u_int tmp, phyid;
  848.     for (i = 31; i >= 0; i--) {
  849. tmp = mdio_read(mii_addr, i, 1);
  850. if ((tmp == 0) || (tmp == 0xffff))
  851.     continue;
  852. tmp = mdio_read(mii_addr, i, MII_PHYID_REG1);
  853. phyid = tmp << 16;
  854. phyid |= mdio_read(mii_addr, i, MII_PHYID_REG2);
  855. phyid &= MII_PHYID_REV_MASK;
  856. DEBUG(0, "%s: MII at %d is 0x%08xn", dev->name, i, phyid);
  857. if (phyid == AM79C9XX_HOME_PHY) {
  858.     info->pna_phy = i;
  859. } else if (phyid != AM79C9XX_ETH_PHY) {
  860.     info->eth_phy = i;
  861. }
  862.     }
  863. }
  864. static int pcnet_open(struct net_device *dev)
  865. {
  866.     pcnet_dev_t *info = (pcnet_dev_t *)dev;
  867.     dev_link_t *link = &info->link;
  868.     
  869.     DEBUG(2, "pcnet_open('%s')n", dev->name);
  870.     if (!DEV_OK(link))
  871. return -ENODEV;
  872.     link->open++;
  873.     MOD_INC_USE_COUNT;
  874.     set_misc_reg(dev);
  875.     request_irq(dev->irq, ei_irq_wrapper, SA_SHIRQ, dev_info, dev);
  876.     info->phy_id = info->eth_phy;
  877.     info->link_status = 0x00;
  878.     info->watchdog.function = &ei_watchdog;
  879.     info->watchdog.data = (u_long)info;
  880.     info->watchdog.expires = jiffies + HZ;
  881.     add_timer(&info->watchdog);
  882.     return ei_open(dev);
  883. } /* pcnet_open */
  884. /*====================================================================*/
  885. static int pcnet_close(struct net_device *dev)
  886. {
  887.     pcnet_dev_t *info = (pcnet_dev_t *)dev;
  888.     dev_link_t *link = &info->link;
  889.     DEBUG(2, "pcnet_close('%s')n", dev->name);
  890.     free_irq(dev->irq, dev);
  891.     
  892.     link->open--;
  893.     netif_stop_queue(dev);
  894.     del_timer(&info->watchdog);
  895.     if (link->state & DEV_STALE_CONFIG)
  896. mod_timer(&link->release, jiffies + HZ/20);
  897.     MOD_DEC_USE_COUNT;
  898.     return 0;
  899. } /* pcnet_close */
  900. /*======================================================================
  901.     Hard reset the card.  This used to pause for the same period that
  902.     a 8390 reset command required, but that shouldn't be necessary.
  903. ======================================================================*/
  904. static void pcnet_reset_8390(struct net_device *dev)
  905. {
  906.     ioaddr_t nic_base = dev->base_addr;
  907.     int i;
  908.     ei_status.txing = ei_status.dmaing = 0;
  909.     outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, nic_base + E8390_CMD);
  910.     outb(inb(nic_base + PCNET_RESET), nic_base + PCNET_RESET);
  911.     for (i = 0; i < 100; i++) {
  912. if ((inb_p(nic_base+EN0_ISR) & ENISR_RESET) != 0)
  913.     break;
  914. udelay(100);
  915.     }
  916.     outb_p(ENISR_RESET, nic_base + EN0_ISR); /* Ack intr. */
  917.     
  918.     if (i == 100)
  919. printk(KERN_ERR "%s: pcnet_reset_8390() did not complete.n",
  920.        dev->name);
  921.     set_misc_reg(dev);
  922.     
  923. } /* pcnet_reset_8390 */
  924. /*====================================================================*/
  925. static int set_config(struct net_device *dev, struct ifmap *map)
  926. {
  927.     pcnet_dev_t *info = (pcnet_dev_t *)dev;
  928.     if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
  929. if (!(info->flags & HAS_MISC_REG))
  930.     return -EOPNOTSUPP;
  931. else if ((map->port < 1) || (map->port > 2))
  932.     return -EINVAL;
  933. dev->if_port = map->port;
  934. printk(KERN_INFO "%s: switched to %s portn",
  935.        dev->name, if_names[dev->if_port]);
  936. NS8390_init(dev, 1);
  937.     }
  938.     return 0;
  939. }
  940. /*====================================================================*/
  941. static void ei_irq_wrapper(int irq, void *dev_id, struct pt_regs *regs)
  942. {
  943.     pcnet_dev_t *info = dev_id;
  944.     info->stale = 0;
  945.     ei_interrupt(irq, dev_id, regs);
  946. }
  947. static void ei_watchdog(u_long arg)
  948. {
  949.     pcnet_dev_t *info = (pcnet_dev_t *)(arg);
  950.     struct net_device *dev = &info->dev;
  951.     ioaddr_t nic_base = dev->base_addr;
  952.     ioaddr_t mii_addr = nic_base + DLINK_GPIO;
  953.     u_short link;
  954.     if (!netif_device_present(dev)) goto reschedule;
  955.     /* Check for pending interrupt with expired latency timer: with
  956.        this, we can limp along even if the interrupt is blocked */
  957.     outb_p(E8390_NODMA+E8390_PAGE0, nic_base + E8390_CMD);
  958.     if (info->stale++ && (inb_p(nic_base + EN0_ISR) & ENISR_ALL)) {
  959. if (!info->fast_poll)
  960.     printk(KERN_INFO "%s: interrupt(s) dropped!n", dev->name);
  961. ei_irq_wrapper(dev->irq, dev, NULL);
  962. info->fast_poll = HZ;
  963.     }
  964.     if (info->fast_poll) {
  965. info->fast_poll--;
  966. info->watchdog.expires = jiffies + 1;
  967. add_timer(&info->watchdog);
  968. return;
  969.     }
  970.     if (!(info->flags & HAS_MII))
  971. goto reschedule;
  972.     mdio_read(mii_addr, info->phy_id, 1);
  973.     link = mdio_read(mii_addr, info->phy_id, 1);
  974.     if (!link || (link == 0xffff)) {
  975. if (info->eth_phy) {
  976.     info->phy_id = info->eth_phy = 0;
  977. } else {
  978.     printk(KERN_INFO "%s: MII is missing!n", dev->name);
  979.     info->flags &= ~HAS_MII;
  980. }
  981. goto reschedule;
  982.     }
  983.     link &= 0x0004;
  984.     if (link != info->link_status) {
  985. u_short p = mdio_read(mii_addr, info->phy_id, 5);
  986. printk(KERN_INFO "%s: %s link beatn", dev->name,
  987.        (link) ? "found" : "lost");
  988. if (link && (info->flags & IS_DL10022)) {
  989.     /* Disable collision detection on full duplex links */
  990.     outb((p & 0x0140) ? 4 : 0, nic_base + DLINK_DIAG);
  991. }
  992. if (link) {
  993.     if (info->phy_id == info->eth_phy) {
  994. if (p)
  995.     printk(KERN_INFO "%s: autonegotiation complete: "
  996.    "%sbaseT-%cD selectedn", dev->name,
  997.    ((p & 0x0180) ? "100" : "10"),
  998.    ((p & 0x0140) ? 'F' : 'H'));
  999. else
  1000.     printk(KERN_INFO "%s: link partner did not "
  1001.    "autonegotiaten", dev->name);
  1002.     }
  1003.     NS8390_init(dev, 1);
  1004. }
  1005. info->link_status = link;
  1006.     }
  1007.     if (info->pna_phy && (jiffies - info->mii_reset > 6*HZ)) {
  1008. link = mdio_read(mii_addr, info->eth_phy, 1) & 0x0004;
  1009. if (((info->phy_id == info->pna_phy) && link) ||
  1010.     ((info->phy_id != info->pna_phy) && !link)) {
  1011.     /* isolate this MII and try flipping to the other one */
  1012.     mdio_write(mii_addr, info->phy_id, 0, 0x0400);
  1013.     info->phy_id ^= info->pna_phy ^ info->eth_phy;
  1014.     printk(KERN_INFO "%s: switched to %s transceivern", dev->name,
  1015.    (info->phy_id == info->eth_phy) ? "ethernet" : "PNA");
  1016.     mdio_write(mii_addr, info->phy_id, 0,
  1017.        (info->phy_id == info->eth_phy) ? 0x1000 : 0);
  1018.     info->link_status = 0;
  1019.     info->mii_reset = jiffies;
  1020. }
  1021.     }
  1022. reschedule:
  1023.     info->watchdog.expires = jiffies + HZ;
  1024.     add_timer(&info->watchdog);
  1025. }
  1026. /*====================================================================*/
  1027. static int ei_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1028. {
  1029.     pcnet_dev_t *info = (pcnet_dev_t *)dev;
  1030.     u16 *data = (u16 *)&rq->ifr_data;
  1031.     ioaddr_t mii_addr = dev->base_addr + DLINK_GPIO;
  1032.     switch (cmd) {
  1033.     case SIOCDEVPRIVATE:
  1034. data[0] = info->phy_id;
  1035.     case SIOCDEVPRIVATE+1:
  1036. data[3] = mdio_read(mii_addr, data[0], data[1] & 0x1f);
  1037. return 0;
  1038.     case SIOCDEVPRIVATE+2:
  1039. if (!capable(CAP_NET_ADMIN))
  1040.     return -EPERM;
  1041. mdio_write(mii_addr, data[0], data[1] & 0x1f, data[2]);
  1042. return 0;
  1043.     }
  1044.     return -EOPNOTSUPP;
  1045. }
  1046. /*====================================================================*/
  1047. static void dma_get_8390_hdr(struct net_device *dev,
  1048.      struct e8390_pkt_hdr *hdr,
  1049.      int ring_page)
  1050. {
  1051.     ioaddr_t nic_base = dev->base_addr;
  1052.     if (ei_status.dmaing) {
  1053. printk(KERN_NOTICE "%s: DMAing conflict in dma_block_input."
  1054.        "[DMAstat:%1x][irqlock:%1x]n",
  1055.        dev->name, ei_status.dmaing, ei_status.irqlock);
  1056. return;
  1057.     }
  1058.     
  1059.     ei_status.dmaing |= 0x01;
  1060.     outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base + PCNET_CMD);
  1061.     outb_p(sizeof(struct e8390_pkt_hdr), nic_base + EN0_RCNTLO);
  1062.     outb_p(0, nic_base + EN0_RCNTHI);
  1063.     outb_p(0, nic_base + EN0_RSARLO); /* On page boundary */
  1064.     outb_p(ring_page, nic_base + EN0_RSARHI);
  1065.     outb_p(E8390_RREAD+E8390_START, nic_base + PCNET_CMD);
  1066.     insw(nic_base + PCNET_DATAPORT, hdr,
  1067.     sizeof(struct e8390_pkt_hdr)>>1);
  1068.     /* Fix for big endian systems */
  1069.     hdr->count = le16_to_cpu(hdr->count);
  1070.     outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  1071.     ei_status.dmaing &= ~0x01;
  1072. }
  1073. /*====================================================================*/
  1074. static void dma_block_input(struct net_device *dev, int count,
  1075.     struct sk_buff *skb, int ring_offset)
  1076. {
  1077.     ioaddr_t nic_base = dev->base_addr;
  1078.     int xfer_count = count;
  1079.     char *buf = skb->data;
  1080. #ifdef PCMCIA_DEBUG
  1081.     if ((ei_debug > 4) && (count != 4))
  1082. printk(KERN_DEBUG "%s: [bi=%d]n", dev->name, count+4);
  1083. #endif
  1084.     if (ei_status.dmaing) {
  1085. printk(KERN_NOTICE "%s: DMAing conflict in dma_block_input."
  1086.        "[DMAstat:%1x][irqlock:%1x]n",
  1087.        dev->name, ei_status.dmaing, ei_status.irqlock);
  1088. return;
  1089.     }
  1090.     ei_status.dmaing |= 0x01;
  1091.     outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base + PCNET_CMD);
  1092.     outb_p(count & 0xff, nic_base + EN0_RCNTLO);
  1093.     outb_p(count >> 8, nic_base + EN0_RCNTHI);
  1094.     outb_p(ring_offset & 0xff, nic_base + EN0_RSARLO);
  1095.     outb_p(ring_offset >> 8, nic_base + EN0_RSARHI);
  1096.     outb_p(E8390_RREAD+E8390_START, nic_base + PCNET_CMD);
  1097.     insw(nic_base + PCNET_DATAPORT,buf,count>>1);
  1098.     if (count & 0x01)
  1099. buf[count-1] = inb(nic_base + PCNET_DATAPORT), xfer_count++;
  1100.     /* This was for the ALPHA version only, but enough people have
  1101.        encountering problems that it is still here. */
  1102. #ifdef PCMCIA_DEBUG
  1103.     if (ei_debug > 4) { /* DMA termination address check... */
  1104. int addr, tries = 20;
  1105. do {
  1106.     /* DON'T check for 'inb_p(EN0_ISR) & ENISR_RDC' here
  1107.        -- it's broken for Rx on some cards! */
  1108.     int high = inb_p(nic_base + EN0_RSARHI);
  1109.     int low = inb_p(nic_base + EN0_RSARLO);
  1110.     addr = (high << 8) + low;
  1111.     if (((ring_offset + xfer_count) & 0xff) == (addr & 0xff))
  1112. break;
  1113. } while (--tries > 0);
  1114. if (tries <= 0)
  1115.     printk(KERN_NOTICE "%s: RX transfer address mismatch,"
  1116.    "%#4.4x (expected) vs. %#4.4x (actual).n",
  1117.    dev->name, ring_offset + xfer_count, addr);
  1118.     }
  1119. #endif
  1120.     outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  1121.     ei_status.dmaing &= ~0x01;
  1122. } /* dma_block_input */
  1123. /*====================================================================*/
  1124. static void dma_block_output(struct net_device *dev, int count,
  1125.      const u_char *buf, const int start_page)
  1126. {
  1127.     ioaddr_t nic_base = dev->base_addr;
  1128.     pcnet_dev_t *info = (pcnet_dev_t *)dev;
  1129. #ifdef PCMCIA_DEBUG
  1130.     int retries = 0;
  1131. #endif
  1132.     u_long dma_start;
  1133. #ifdef PCMCIA_DEBUG
  1134.     if (ei_debug > 4)
  1135. printk(KERN_DEBUG "%s: [bo=%d]n", dev->name, count);
  1136. #endif
  1137.     /* Round the count up for word writes.  Do we need to do this?
  1138.        What effect will an odd byte count have on the 8390?
  1139.        I should check someday. */
  1140.     if (count & 0x01)
  1141. count++;
  1142.     if (ei_status.dmaing) {
  1143. printk(KERN_NOTICE "%s: DMAing conflict in dma_block_output."
  1144.        "[DMAstat:%1x][irqlock:%1x]n",
  1145.        dev->name, ei_status.dmaing, ei_status.irqlock);
  1146. return;
  1147.     }
  1148.     ei_status.dmaing |= 0x01;
  1149.     /* We should already be in page 0, but to be safe... */
  1150.     outb_p(E8390_PAGE0+E8390_START+E8390_NODMA, nic_base+PCNET_CMD);
  1151. #ifdef PCMCIA_DEBUG
  1152.   retry:
  1153. #endif
  1154.     outb_p(ENISR_RDC, nic_base + EN0_ISR);
  1155.     /* Now the normal output. */
  1156.     outb_p(count & 0xff, nic_base + EN0_RCNTLO);
  1157.     outb_p(count >> 8,   nic_base + EN0_RCNTHI);
  1158.     outb_p(0x00, nic_base + EN0_RSARLO);
  1159.     outb_p(start_page, nic_base + EN0_RSARHI);
  1160.     outb_p(E8390_RWRITE+E8390_START, nic_base + PCNET_CMD);
  1161.     outsw(nic_base + PCNET_DATAPORT, buf, count>>1);
  1162.     dma_start = jiffies;
  1163. #ifdef PCMCIA_DEBUG
  1164.     /* This was for the ALPHA version only, but enough people have
  1165.        encountering problems that it is still here. */
  1166.     if (ei_debug > 4) { /* DMA termination address check... */
  1167. int addr, tries = 20;
  1168. do {
  1169.     int high = inb_p(nic_base + EN0_RSARHI);
  1170.     int low = inb_p(nic_base + EN0_RSARLO);
  1171.     addr = (high << 8) + low;
  1172.     if ((start_page << 8) + count == addr)
  1173. break;
  1174. } while (--tries > 0);
  1175. if (tries <= 0) {
  1176.     printk(KERN_NOTICE "%s: Tx packet transfer address mismatch,"
  1177.    "%#4.4x (expected) vs. %#4.4x (actual).n",
  1178.    dev->name, (start_page << 8) + count, addr);
  1179.     if (retries++ == 0)
  1180. goto retry;
  1181. }
  1182.     }
  1183. #endif
  1184.     while ((inb_p(nic_base + EN0_ISR) & ENISR_RDC) == 0)
  1185. if (jiffies - dma_start > PCNET_RDC_TIMEOUT) {
  1186.     printk(KERN_NOTICE "%s: timeout waiting for Tx RDC.n",
  1187.    dev->name);
  1188.     pcnet_reset_8390(dev);
  1189.     NS8390_init(dev, 1);
  1190.     break;
  1191. }
  1192.     outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  1193.     if (info->flags & DELAY_OUTPUT)
  1194. udelay((long)delay_time);
  1195.     ei_status.dmaing &= ~0x01;
  1196. }
  1197. /*====================================================================*/
  1198. static int setup_dma_config(dev_link_t *link, int start_pg,
  1199.     int stop_pg)
  1200. {
  1201.     struct net_device *dev = link->priv;
  1202.     ei_status.tx_start_page = start_pg;
  1203.     ei_status.rx_start_page = start_pg + TX_PAGES;
  1204.     ei_status.stop_page = stop_pg;
  1205.     /* set up block i/o functions */
  1206.     ei_status.get_8390_hdr = &dma_get_8390_hdr;
  1207.     ei_status.block_input = &dma_block_input;
  1208.     ei_status.block_output = &dma_block_output;
  1209.     return 0;
  1210. }
  1211. /*====================================================================*/
  1212. static void copyin(u_char *dest, u_char *src, int c)
  1213. {
  1214.     u_short *d = (u_short *)dest, *s = (u_short *)src;
  1215.     int odd;
  1216.     if (c <= 0)
  1217. return;
  1218.     odd = (c & 1); c >>= 1;
  1219.     if (c) {
  1220. do { *d++ = __raw_readw(s++); } while (--c);
  1221.     }
  1222.     /* get last byte by fetching a word and masking */
  1223.     if (odd)
  1224. *((u_char *)d) = readw(s) & 0xff;
  1225. }
  1226. static void copyout(u_char *dest, const u_char *src, int c)
  1227. {
  1228.     u_short *d = (u_short *)dest, *s = (u_short *)src;
  1229.     int odd;
  1230.     if (c <= 0)
  1231. return;
  1232.     odd = (c & 1); c >>= 1;
  1233.     if (c) {
  1234. do { __raw_writew(*s++, d++); } while (--c);
  1235.     }
  1236.     /* copy last byte doing a read-modify-write */
  1237.     if (odd)
  1238. writew((readw(d) & 0xff00) | *(u_char *)s, d);
  1239. }
  1240. /*====================================================================*/
  1241. static void shmem_get_8390_hdr(struct net_device *dev,
  1242.        struct e8390_pkt_hdr *hdr,
  1243.        int ring_page)
  1244. {
  1245.     void *xfer_start = (void *)(dev->rmem_start + (ring_page << 8)
  1246. - (ei_status.rx_start_page << 8));
  1247.     
  1248.     copyin((void *)hdr, xfer_start, sizeof(struct e8390_pkt_hdr));
  1249.     /* Fix for big endian systems */
  1250.     hdr->count = le16_to_cpu(hdr->count);
  1251. }
  1252. /*====================================================================*/
  1253. static void shmem_block_input(struct net_device *dev, int count,
  1254.       struct sk_buff *skb, int ring_offset)
  1255. {
  1256.     void *xfer_start = (void *)(dev->rmem_start + ring_offset
  1257. - (ei_status.rx_start_page << 8));
  1258.     char *buf = skb->data;
  1259.     
  1260.     if (xfer_start + count > (void *)dev->rmem_end) {
  1261. /* We must wrap the input move. */
  1262. int semi_count = (void*)dev->rmem_end - xfer_start;
  1263. copyin(buf, xfer_start, semi_count);
  1264. buf += semi_count;
  1265. ring_offset = ei_status.rx_start_page << 8;
  1266. xfer_start = (void *)dev->rmem_start;
  1267. count -= semi_count;
  1268.     }
  1269.     copyin(buf, xfer_start, count);
  1270. }
  1271. /*====================================================================*/
  1272. static void shmem_block_output(struct net_device *dev, int count,
  1273.        const u_char *buf, const int start_page)
  1274. {
  1275.     void *shmem = (void *)dev->mem_start + (start_page << 8);
  1276.     shmem -= ei_status.tx_start_page << 8;
  1277.     copyout(shmem, buf, count);
  1278. }
  1279. /*====================================================================*/
  1280. static int setup_shmem_window(dev_link_t *link, int start_pg,
  1281.       int stop_pg, int cm_offset)
  1282. {
  1283.     struct net_device *dev = link->priv;
  1284.     pcnet_dev_t *info = link->priv;
  1285.     win_req_t req;
  1286.     memreq_t mem;
  1287.     int i, window_size, offset, last_ret, last_fn;
  1288.     window_size = (stop_pg - start_pg) << 8;
  1289.     if (window_size > 32 * 1024)
  1290. window_size = 32 * 1024;
  1291.     /* Make sure it's a power of two.  */
  1292.     while ((window_size & (window_size - 1)) != 0)
  1293. window_size += window_size & ~(window_size - 1);
  1294.     /* Allocate a memory window */
  1295.     req.Attributes = WIN_DATA_WIDTH_16|WIN_MEMORY_TYPE_CM|WIN_ENABLE;
  1296.     req.Attributes |= WIN_USE_WAIT;
  1297.     req.Base = 0; req.Size = window_size;
  1298.     req.AccessSpeed = mem_speed;
  1299.     link->win = (window_handle_t)link->handle;
  1300.     CS_CHECK(RequestWindow, &link->win, &req);
  1301.     mem.CardOffset = (start_pg << 8) + cm_offset;
  1302.     offset = mem.CardOffset % window_size;
  1303.     mem.CardOffset -= offset;
  1304.     mem.Page = 0;
  1305.     CS_CHECK(MapMemPage, link->win, &mem);
  1306.     /* Try scribbling on the buffer */
  1307.     info->base = ioremap(req.Base, window_size);
  1308.     for (i = 0; i < (TX_PAGES<<8); i += 2)
  1309. __raw_writew((i>>1), info->base+offset+i);
  1310.     udelay(100);
  1311.     for (i = 0; i < (TX_PAGES<<8); i += 2)
  1312. if (__raw_readw(info->base+offset+i) != (i>>1)) break;
  1313.     pcnet_reset_8390(dev);
  1314.     if (i != (TX_PAGES<<8)) {
  1315. iounmap(info->base);
  1316. CardServices(ReleaseWindow, link->win);
  1317. info->base = NULL; link->win = NULL;
  1318. goto failed;
  1319.     }
  1320.     
  1321.     dev->mem_start = (u_long)info->base + offset;
  1322.     dev->rmem_start = dev->mem_start + (TX_PAGES<<8);
  1323.     dev->mem_end = dev->rmem_end = (u_long)info->base + req.Size;
  1324.     ei_status.tx_start_page = start_pg;
  1325.     ei_status.rx_start_page = start_pg + TX_PAGES;
  1326.     ei_status.stop_page = start_pg + ((req.Size - offset) >> 8);
  1327.     /* set up block i/o functions */
  1328.     ei_status.get_8390_hdr = &shmem_get_8390_hdr;
  1329.     ei_status.block_input = &shmem_block_input;
  1330.     ei_status.block_output = &shmem_block_output;
  1331.     info->flags |= USE_SHMEM;
  1332.     return 0;
  1333. cs_failed:
  1334.     cs_error(link->handle, last_fn, last_ret);
  1335. failed:
  1336.     return 1;
  1337. }
  1338. /*====================================================================*/
  1339. static int __init init_pcnet_cs(void)
  1340. {
  1341.     servinfo_t serv;
  1342.     DEBUG(0, "%sn", version);
  1343.     CardServices(GetCardServicesInfo, &serv);
  1344.     if (serv.Revision != CS_RELEASE_CODE) {
  1345. printk(KERN_NOTICE "pcnet_cs: Card Services release "
  1346.        "does not match!n");
  1347. return -1;
  1348.     }
  1349.     register_pccard_driver(&dev_info, &pcnet_attach, &pcnet_detach);
  1350.     return 0;
  1351. }
  1352. static void __exit exit_pcnet_cs(void)
  1353. {
  1354.     DEBUG(0, "pcnet_cs: unloadingn");
  1355.     unregister_pccard_driver(&dev_info);
  1356.     while (dev_list != NULL)
  1357. pcnet_detach(dev_list);
  1358. }
  1359. module_init(init_pcnet_cs);
  1360. module_exit(exit_pcnet_cs);