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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* ----------------------------------------------------------------------------
  2. Linux PCMCIA ethernet adapter driver for the New Media Ethernet LAN.
  3.   nmclan_cs.c,v 0.16 1995/07/01 06:42:17 rpao Exp rpao
  4.   The Ethernet LAN uses the Advanced Micro Devices (AMD) Am79C940 Media
  5.   Access Controller for Ethernet (MACE).  It is essentially the Am2150
  6.   PCMCIA Ethernet card contained in the Am2150 Demo Kit.
  7. Written by Roger C. Pao <rpao@paonet.org>
  8.   Copyright 1995 Roger C. Pao
  9.   This software may be used and distributed according to the terms of
  10.   the GNU General Public License.
  11. Ported to Linux 1.3.* network driver environment by
  12.   Matti Aarnio <mea@utu.fi>
  13. References
  14.   Am2150 Technical Reference Manual, Revision 1.0, August 17, 1993
  15.   Am79C940 (MACE) Data Sheet, 1994
  16.   Am79C90 (C-LANCE) Data Sheet, 1994
  17.   Linux PCMCIA Programmer's Guide v1.17
  18.   /usr/src/linux/net/inet/dev.c, Linux kernel 1.2.8
  19.   Eric Mears, New Media Corporation
  20.   Tom Pollard, New Media Corporation
  21.   Dean Siasoyco, New Media Corporation
  22.   Ken Lesniak, Silicon Graphics, Inc. <lesniak@boston.sgi.com>
  23.   Donald Becker <becker@scyld.com>
  24.   David Hinds <dahinds@users.sourceforge.net>
  25.   The Linux client driver is based on the 3c589_cs.c client driver by
  26.   David Hinds.
  27.   The Linux network driver outline is based on the 3c589_cs.c driver,
  28.   the 8390.c driver, and the example skeleton.c kernel code, which are
  29.   by Donald Becker.
  30.   The Am2150 network driver hardware interface code is based on the
  31.   OS/9000 driver for the New Media Ethernet LAN by Eric Mears.
  32.   Special thanks for testing and help in debugging this driver goes
  33.   to Ken Lesniak.
  34. -------------------------------------------------------------------------------
  35. Driver Notes and Issues
  36. -------------------------------------------------------------------------------
  37. 1. Developed on a Dell 320SLi
  38.    PCMCIA Card Services 2.6.2
  39.    Linux dell 1.2.10 #1 Thu Jun 29 20:23:41 PDT 1995 i386
  40. 2. rc.pcmcia may require loading pcmcia_core with io_speed=300:
  41.    'insmod pcmcia_core.o io_speed=300'.
  42.    This will avoid problems with fast systems which causes rx_framecnt
  43.    to return random values.
  44. 3. If hot extraction does not work for you, use 'ifconfig eth0 down'
  45.    before extraction.
  46. 4. There is a bad slow-down problem in this driver.
  47. 5. Future: Multicast processing.  In the meantime, do _not_ compile your
  48.    kernel with multicast ip enabled.
  49. -------------------------------------------------------------------------------
  50. History
  51. -------------------------------------------------------------------------------
  52. Log: nmclan_cs.c,v
  53.  * Revision 0.16  1995/07/01  06:42:17  rpao
  54.  * Bug fix: nmclan_reset() called CardServices incorrectly.
  55.  *
  56.  * Revision 0.15  1995/05/24  08:09:47  rpao
  57.  * Re-implement MULTI_TX dev->tbusy handling.
  58.  *
  59.  * Revision 0.14  1995/05/23  03:19:30  rpao
  60.  * Added, in nmclan_config(), "tuple.Attributes = 0;".
  61.  * Modified MACE ID check to ignore chip revision level.
  62.  * Avoid tx_free_frames race condition between _start_xmit and _interrupt.
  63.  *
  64.  * Revision 0.13  1995/05/18  05:56:34  rpao
  65.  * Statistics changes.
  66.  * Bug fix: nmclan_reset did not enable TX and RX: call restore_multicast_list.
  67.  * Bug fix: mace_interrupt checks ~MACE_IMR_DEFAULT.  Fixes driver lockup.
  68.  *
  69.  * Revision 0.12  1995/05/14  00:12:23  rpao
  70.  * Statistics overhaul.
  71.  *
  72. 95/05/13 rpao V0.10a
  73. Bug fix: MACE statistics counters used wrong I/O ports.
  74. Bug fix: mace_interrupt() needed to allow statistics to be
  75. processed without RX or TX interrupts pending.
  76. 95/05/11 rpao V0.10
  77. Multiple transmit request processing.
  78. Modified statistics to use MACE counters where possible.
  79. 95/05/10 rpao V0.09 Bug fix: Must use IO_DATA_PATH_WIDTH_AUTO.
  80. *Released
  81. 95/05/10 rpao V0.08
  82. Bug fix: Make all non-exported functions private by using
  83. static keyword.
  84. Bug fix: Test IntrCnt _before_ reading MACE_IR.
  85. 95/05/10 rpao V0.07 Statistics.
  86. 95/05/09 rpao V0.06 Fix rx_framecnt problem by addition of PCIC wait states.
  87. ---------------------------------------------------------------------------- */
  88. #define DRV_NAME "nmclan_cs"
  89. #define DRV_VERSION "0.16"
  90. /* ----------------------------------------------------------------------------
  91. Conditional Compilation Options
  92. ---------------------------------------------------------------------------- */
  93. #define MULTI_TX 0
  94. #define RESET_ON_TIMEOUT 1
  95. #define TX_INTERRUPTABLE 1
  96. #define RESET_XILINX 0
  97. /* ----------------------------------------------------------------------------
  98. Include Files
  99. ---------------------------------------------------------------------------- */
  100. #include <linux/module.h>
  101. #include <linux/kernel.h>
  102. #include <linux/init.h>
  103. #include <linux/sched.h>
  104. #include <linux/ptrace.h>
  105. #include <linux/slab.h>
  106. #include <linux/string.h>
  107. #include <linux/timer.h>
  108. #include <linux/interrupt.h>
  109. #include <linux/in.h>
  110. #include <linux/delay.h>
  111. #include <linux/ethtool.h>
  112. #include <asm/uaccess.h>
  113. #include <asm/io.h>
  114. #include <asm/system.h>
  115. #include <asm/bitops.h>
  116. #include <linux/netdevice.h>
  117. #include <linux/etherdevice.h>
  118. #include <linux/skbuff.h>
  119. #include <linux/if_arp.h>
  120. #include <linux/ioport.h>
  121. #include <pcmcia/version.h>
  122. #include <pcmcia/cs_types.h>
  123. #include <pcmcia/cs.h>
  124. #include <pcmcia/cisreg.h>
  125. #include <pcmcia/cistpl.h>
  126. #include <pcmcia/ds.h>
  127. /* ----------------------------------------------------------------------------
  128. Defines
  129. ---------------------------------------------------------------------------- */
  130. #define ETHER_ADDR_LEN ETH_ALEN
  131. /* 6 bytes in an Ethernet Address */
  132. #define MACE_LADRF_LEN 8
  133. /* 8 bytes in Logical Address Filter */
  134. /* Loop Control Defines */
  135. #define MACE_MAX_IR_ITERATIONS 10
  136. #define MACE_MAX_RX_ITERATIONS 12
  137. /*
  138. TBD: Dean brought this up, and I assumed the hardware would
  139. handle it:
  140. If MACE_MAX_RX_ITERATIONS is > 1, rx_framecnt may still be
  141. non-zero when the isr exits.  We may not get another interrupt
  142. to process the remaining packets for some time.
  143. */
  144. /*
  145. The Am2150 has a Xilinx XC3042 field programmable gate array (FPGA)
  146. which manages the interface between the MACE and the PCMCIA bus.  It
  147. also includes buffer management for the 32K x 8 SRAM to control up to
  148. four transmit and 12 receive frames at a time.
  149. */
  150. #define AM2150_MAX_TX_FRAMES 4
  151. #define AM2150_MAX_RX_FRAMES 12
  152. /* Am2150 Ethernet Card I/O Mapping */
  153. #define AM2150_RCV 0x00
  154. #define AM2150_XMT 0x04
  155. #define AM2150_XMT_SKIP 0x09
  156. #define AM2150_RCV_NEXT 0x0A
  157. #define AM2150_RCV_FRAME_COUNT 0x0B
  158. #define AM2150_MACE_BANK 0x0C
  159. #define AM2150_MACE_BASE 0x10
  160. /* MACE Registers */
  161. #define MACE_RCVFIFO 0
  162. #define MACE_XMTFIFO 1
  163. #define MACE_XMTFC 2
  164. #define MACE_XMTFS 3
  165. #define MACE_XMTRC 4
  166. #define MACE_RCVFC 5
  167. #define MACE_RCVFS 6
  168. #define MACE_FIFOFC 7
  169. #define MACE_IR 8
  170. #define MACE_IMR 9
  171. #define MACE_PR 10
  172. #define MACE_BIUCC 11
  173. #define MACE_FIFOCC 12
  174. #define MACE_MACCC 13
  175. #define MACE_PLSCC 14
  176. #define MACE_PHYCC 15
  177. #define MACE_CHIPIDL 16
  178. #define MACE_CHIPIDH 17
  179. #define MACE_IAC 18
  180. /* Reserved */
  181. #define MACE_LADRF 20
  182. #define MACE_PADR 21
  183. /* Reserved */
  184. /* Reserved */
  185. #define MACE_MPC 24
  186. /* Reserved */
  187. #define MACE_RNTPC 26
  188. #define MACE_RCVCC 27
  189. /* Reserved */
  190. #define MACE_UTR 29
  191. #define MACE_RTR1 30
  192. #define MACE_RTR2 31
  193. /* MACE Bit Masks */
  194. #define MACE_XMTRC_EXDEF 0x80
  195. #define MACE_XMTRC_XMTRC 0x0F
  196. #define MACE_XMTFS_XMTSV 0x80
  197. #define MACE_XMTFS_UFLO 0x40
  198. #define MACE_XMTFS_LCOL 0x20
  199. #define MACE_XMTFS_MORE 0x10
  200. #define MACE_XMTFS_ONE 0x08
  201. #define MACE_XMTFS_DEFER 0x04
  202. #define MACE_XMTFS_LCAR 0x02
  203. #define MACE_XMTFS_RTRY 0x01
  204. #define MACE_RCVFS_RCVSTS 0xF000
  205. #define MACE_RCVFS_OFLO 0x8000
  206. #define MACE_RCVFS_CLSN 0x4000
  207. #define MACE_RCVFS_FRAM 0x2000
  208. #define MACE_RCVFS_FCS 0x1000
  209. #define MACE_FIFOFC_RCVFC 0xF0
  210. #define MACE_FIFOFC_XMTFC 0x0F
  211. #define MACE_IR_JAB 0x80
  212. #define MACE_IR_BABL 0x40
  213. #define MACE_IR_CERR 0x20
  214. #define MACE_IR_RCVCCO 0x10
  215. #define MACE_IR_RNTPCO 0x08
  216. #define MACE_IR_MPCO 0x04
  217. #define MACE_IR_RCVINT 0x02
  218. #define MACE_IR_XMTINT 0x01
  219. #define MACE_MACCC_PROM 0x80
  220. #define MACE_MACCC_DXMT2PD 0x40
  221. #define MACE_MACCC_EMBA 0x20
  222. #define MACE_MACCC_RESERVED 0x10
  223. #define MACE_MACCC_DRCVPA 0x08
  224. #define MACE_MACCC_DRCVBC 0x04
  225. #define MACE_MACCC_ENXMT 0x02
  226. #define MACE_MACCC_ENRCV 0x01
  227. #define MACE_PHYCC_LNKFL 0x80
  228. #define MACE_PHYCC_DLNKTST 0x40
  229. #define MACE_PHYCC_REVPOL 0x20
  230. #define MACE_PHYCC_DAPC 0x10
  231. #define MACE_PHYCC_LRT 0x08
  232. #define MACE_PHYCC_ASEL 0x04
  233. #define MACE_PHYCC_RWAKE 0x02
  234. #define MACE_PHYCC_AWAKE 0x01
  235. #define MACE_IAC_ADDRCHG 0x80
  236. #define MACE_IAC_PHYADDR 0x04
  237. #define MACE_IAC_LOGADDR 0x02
  238. #define MACE_UTR_RTRE 0x80
  239. #define MACE_UTR_RTRD 0x40
  240. #define MACE_UTR_RPA 0x20
  241. #define MACE_UTR_FCOLL 0x10
  242. #define MACE_UTR_RCVFCSE 0x08
  243. #define MACE_UTR_LOOP_INCL_MENDEC 0x06
  244. #define MACE_UTR_LOOP_NO_MENDEC 0x04
  245. #define MACE_UTR_LOOP_EXTERNAL 0x02
  246. #define MACE_UTR_LOOP_NONE 0x00
  247. #define MACE_UTR_RESERVED 0x01
  248. /* Switch MACE register bank (only 0 and 1 are valid) */
  249. #define MACEBANK(win_num) outb((win_num), ioaddr + AM2150_MACE_BANK)
  250. #define MACE_IMR_DEFAULT 
  251.   (0xFF - 
  252.     ( 
  253.       MACE_IR_CERR | 
  254.       MACE_IR_RCVCCO | 
  255.       MACE_IR_RNTPCO | 
  256.       MACE_IR_MPCO | 
  257.       MACE_IR_RCVINT | 
  258.       MACE_IR_XMTINT 
  259.     ) 
  260.   )
  261. #undef MACE_IMR_DEFAULT
  262. #define MACE_IMR_DEFAULT 0x00 /* New statistics handling: grab everything */
  263. #define TX_TIMEOUT ((400*HZ)/1000)
  264. /* ----------------------------------------------------------------------------
  265. Type Definitions
  266. ---------------------------------------------------------------------------- */
  267. typedef struct _mace_statistics {
  268.     /* MACE_XMTFS */
  269.     int xmtsv;
  270.     int uflo;
  271.     int lcol;
  272.     int more;
  273.     int one;
  274.     int defer;
  275.     int lcar;
  276.     int rtry;
  277.     /* MACE_XMTRC */
  278.     int exdef;
  279.     int xmtrc;
  280.     /* RFS1--Receive Status (RCVSTS) */
  281.     int oflo;
  282.     int clsn;
  283.     int fram;
  284.     int fcs;
  285.     /* RFS2--Runt Packet Count (RNTPC) */
  286.     int rfs_rntpc;
  287.     /* RFS3--Receive Collision Count (RCVCC) */
  288.     int rfs_rcvcc;
  289.     /* MACE_IR */
  290.     int jab;
  291.     int babl;
  292.     int cerr;
  293.     int rcvcco;
  294.     int rntpco;
  295.     int mpco;
  296.     /* MACE_MPC */
  297.     int mpc;
  298.     /* MACE_RNTPC */
  299.     int rntpc;
  300.     /* MACE_RCVCC */
  301.     int rcvcc;
  302. } mace_statistics;
  303. typedef struct _mace_private {
  304.     dev_link_t link;
  305.     struct net_device dev;
  306.     dev_node_t node;
  307.     struct net_device_stats linux_stats; /* Linux statistics counters */
  308.     mace_statistics mace_stats; /* MACE chip statistics counters */
  309.     /* restore_multicast_list() state variables */
  310.     int multicast_ladrf[MACE_LADRF_LEN]; /* Logical address filter */
  311.     int multicast_num_addrs;
  312.     char tx_free_frames; /* Number of free transmit frame buffers */
  313.     char tx_irq_disabled; /* MACE TX interrupt disabled */
  314. } mace_private;
  315. /* ----------------------------------------------------------------------------
  316. Private Global Variables
  317. ---------------------------------------------------------------------------- */
  318. #ifdef PCMCIA_DEBUG
  319. static char rcsid[] =
  320. "nmclan_cs.c,v 0.16 1995/07/01 06:42:17 rpao Exp rpao";
  321. static char *version =
  322. DRV_NAME " " DRV_VERSION " (Roger C. Pao)";
  323. #endif
  324. static dev_info_t dev_info="nmclan_cs";
  325. static dev_link_t *dev_list;
  326. static char *if_names[]={
  327.     "Auto", "10baseT", "BNC",
  328. };
  329. /* ----------------------------------------------------------------------------
  330. Parameters
  331. These are the parameters that can be set during loading with
  332. 'insmod'.
  333. ---------------------------------------------------------------------------- */
  334. MODULE_DESCRIPTION("New Media PCMCIA ethernet driver");
  335. MODULE_LICENSE("GPL");
  336. #define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i")
  337. static int irq_list[4] = { -1 };
  338. MODULE_PARM(irq_list, "1-4i");
  339. /* 0=auto, 1=10baseT, 2 = 10base2, default=auto */
  340. INT_MODULE_PARM(if_port, 0);
  341. /* Bit map of interrupts to choose from */
  342. INT_MODULE_PARM(irq_mask, 0xdeb8);
  343. #ifdef PCMCIA_DEBUG
  344. INT_MODULE_PARM(pc_debug, PCMCIA_DEBUG);
  345. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  346. #else
  347. #define DEBUG(n, args...)
  348. #endif
  349. /* ----------------------------------------------------------------------------
  350. Function Prototypes
  351. ---------------------------------------------------------------------------- */
  352. static void nmclan_config(dev_link_t *link);
  353. static void nmclan_release(u_long arg);
  354. static int nmclan_event(event_t event, int priority,
  355. event_callback_args_t *args);
  356. static void nmclan_reset(struct net_device *dev);
  357. static int mace_config(struct net_device *dev, struct ifmap *map);
  358. static int mace_open(struct net_device *dev);
  359. static int mace_close(struct net_device *dev);
  360. static int mace_start_xmit(struct sk_buff *skb, struct net_device *dev);
  361. static void mace_tx_timeout(struct net_device *dev);
  362. static void mace_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  363. static struct net_device_stats *mace_get_stats(struct net_device *dev);
  364. static int mace_rx(struct net_device *dev, unsigned char RxCnt);
  365. static void restore_multicast_list(struct net_device *dev);
  366. static void set_multicast_list(struct net_device *dev);
  367. static dev_link_t *nmclan_attach(void);
  368. static void nmclan_detach(dev_link_t *);
  369. /* ----------------------------------------------------------------------------
  370. flush_stale_links
  371. Clean up stale device structures
  372. ---------------------------------------------------------------------------- */
  373. static void flush_stale_links(void)
  374. {
  375.     dev_link_t *link, *next;
  376.     for (link = dev_list; link; link = next) {
  377. next = link->next;
  378. if (link->state & DEV_STALE_LINK)
  379.     nmclan_detach(link);
  380.     }
  381. }
  382. /* ----------------------------------------------------------------------------
  383. cs_error
  384. Report a Card Services related error.
  385. ---------------------------------------------------------------------------- */
  386. static void cs_error(client_handle_t handle, int func, int ret)
  387. {
  388.     error_info_t err = { func, ret };
  389.     CardServices(ReportError, handle, &err);
  390. }
  391. /* ----------------------------------------------------------------------------
  392. nmclan_attach
  393. Creates an "instance" of the driver, allocating local data
  394. structures for one device.  The device is registered with Card
  395. Services.
  396. ---------------------------------------------------------------------------- */
  397. static dev_link_t *nmclan_attach(void)
  398. {
  399.     mace_private *lp;
  400.     dev_link_t *link;
  401.     struct net_device *dev;
  402.     client_reg_t client_reg;
  403.     int i, ret;
  404.     DEBUG(0, "nmclan_attach()n");
  405.     DEBUG(1, "%sn", rcsid);
  406.     flush_stale_links();
  407.     /* Create new ethernet device */
  408.     lp = kmalloc(sizeof(*lp), GFP_KERNEL);
  409.     if (!lp) return NULL;
  410.     memset(lp, 0, sizeof(*lp));
  411.     link = &lp->link; dev = &lp->dev;
  412.     link->priv = dev->priv = link->irq.Instance = lp;
  413.     link->release.function = &nmclan_release;
  414.     link->release.data = (u_long)link;
  415.     link->io.NumPorts1 = 32;
  416.     link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
  417.     link->io.IOAddrLines = 5;
  418.     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
  419.     link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  420.     if (irq_list[0] == -1)
  421. link->irq.IRQInfo2 = irq_mask;
  422.     else
  423. for (i = 0; i < 4; i++)
  424.     link->irq.IRQInfo2 |= 1 << irq_list[i];
  425.     link->irq.Handler = &mace_interrupt;
  426.     link->conf.Attributes = CONF_ENABLE_IRQ;
  427.     link->conf.Vcc = 50;
  428.     link->conf.IntType = INT_MEMORY_AND_IO;
  429.     link->conf.ConfigIndex = 1;
  430.     link->conf.Present = PRESENT_OPTION;
  431.     lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
  432.     dev->hard_start_xmit = &mace_start_xmit;
  433.     dev->set_config = &mace_config;
  434.     dev->get_stats = &mace_get_stats;
  435.     dev->set_multicast_list = &set_multicast_list;
  436.     ether_setup(dev);
  437.     dev->open = &mace_open;
  438.     dev->stop = &mace_close;
  439. #ifdef HAVE_TX_TIMEOUT
  440.     dev->tx_timeout = mace_tx_timeout;
  441.     dev->watchdog_timeo = TX_TIMEOUT;
  442. #endif
  443.     /* Register with Card Services */
  444.     link->next = dev_list;
  445.     dev_list = link;
  446.     client_reg.dev_info = &dev_info;
  447.     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  448.     client_reg.EventMask =
  449. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  450. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  451. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  452.     client_reg.event_handler = &nmclan_event;
  453.     client_reg.Version = 0x0210;
  454.     client_reg.event_callback_args.client_data = link;
  455.     ret = CardServices(RegisterClient, &link->handle, &client_reg);
  456.     if (ret != 0) {
  457. cs_error(link->handle, RegisterClient, ret);
  458. nmclan_detach(link);
  459. return NULL;
  460.     }
  461.     return link;
  462. } /* nmclan_attach */
  463. /* ----------------------------------------------------------------------------
  464. nmclan_detach
  465. This deletes a driver "instance".  The device is de-registered
  466. with Card Services.  If it has been released, all local data
  467. structures are freed.  Otherwise, the structures will be freed
  468. when the device is released.
  469. ---------------------------------------------------------------------------- */
  470. static void nmclan_detach(dev_link_t *link)
  471. {
  472.     mace_private *lp = link->priv;
  473.     dev_link_t **linkp;
  474.     DEBUG(0, "nmclan_detach(0x%p)n", link);
  475.     /* Locate device structure */
  476.     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  477. if (*linkp == link) break;
  478.     if (*linkp == NULL)
  479. return;
  480.     del_timer(&link->release);
  481.     if (link->state & DEV_CONFIG) {
  482. nmclan_release((u_long)link);
  483. if (link->state & DEV_STALE_CONFIG) {
  484.     link->state |= DEV_STALE_LINK;
  485.     return;
  486. }
  487.     }
  488.     if (link->handle)
  489. CardServices(DeregisterClient, link->handle);
  490.     /* Unlink device structure, free bits */
  491.     *linkp = link->next;
  492.     if (link->dev)
  493. unregister_netdev(&lp->dev);
  494.     kfree(lp);
  495. } /* nmclan_detach */
  496. /* ----------------------------------------------------------------------------
  497. mace_read
  498. Reads a MACE register.  This is bank independent; however, the
  499. caller must ensure that this call is not interruptable.  We are
  500. assuming that during normal operation, the MACE is always in
  501. bank 0.
  502. ---------------------------------------------------------------------------- */
  503. static int mace_read(ioaddr_t ioaddr, int reg)
  504. {
  505.   int data = 0xFF;
  506.   unsigned long flags;
  507.   switch (reg >> 4) {
  508.     case 0: /* register 0-15 */
  509.       data = inb(ioaddr + AM2150_MACE_BASE + reg);
  510.       break;
  511.     case 1: /* register 16-31 */
  512.       save_flags(flags);
  513.       cli();
  514.       MACEBANK(1);
  515.       data = inb(ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
  516.       MACEBANK(0);
  517.       restore_flags(flags);
  518.       break;
  519.   }
  520.   return (data & 0xFF);
  521. } /* mace_read */
  522. /* ----------------------------------------------------------------------------
  523. mace_write
  524. Writes to a MACE register.  This is bank independent; however,
  525. the caller must ensure that this call is not interruptable.  We
  526. are assuming that during normal operation, the MACE is always in
  527. bank 0.
  528. ---------------------------------------------------------------------------- */
  529. static void mace_write(ioaddr_t ioaddr, int reg, int data)
  530. {
  531.   unsigned long flags;
  532.   switch (reg >> 4) {
  533.     case 0: /* register 0-15 */
  534.       outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + reg);
  535.       break;
  536.     case 1: /* register 16-31 */
  537.       save_flags(flags);
  538.       cli();
  539.       MACEBANK(1);
  540.       outb(data & 0xFF, ioaddr + AM2150_MACE_BASE + (reg & 0x0F));
  541.       MACEBANK(0);
  542.       restore_flags(flags);
  543.       break;
  544.   }
  545. } /* mace_write */
  546. /* ----------------------------------------------------------------------------
  547. mace_init
  548. Resets the MACE chip.
  549. ---------------------------------------------------------------------------- */
  550. static void mace_init(ioaddr_t ioaddr, char *enet_addr)
  551. {
  552.   int i;
  553.   /* MACE Software reset */
  554.   mace_write(ioaddr, MACE_BIUCC, 1);
  555.   while (mace_read(ioaddr, MACE_BIUCC) & 0x01) {
  556.     /* Wait for reset bit to be cleared automatically after <= 200ns */;
  557.   }
  558.   mace_write(ioaddr, MACE_BIUCC, 0);
  559.   /* The Am2150 requires that the MACE FIFOs operate in burst mode. */
  560.   mace_write(ioaddr, MACE_FIFOCC, 0x0F);
  561.   mace_write(ioaddr, MACE_RCVFC, 0); /* Disable Auto Strip Receive */
  562.   mace_write(ioaddr, MACE_IMR, 0xFF); /* Disable all interrupts until _open */
  563.   /*
  564.    * Bit 2-1 PORTSEL[1-0] Port Select.
  565.    * 00 AUI/10Base-2
  566.    * 01 10Base-T
  567.    * 10 DAI Port (reserved in Am2150)
  568.    * 11 GPSI
  569.    * For this card, only the first two are valid.
  570.    * So, PLSCC should be set to
  571.    * 0x00 for 10Base-2
  572.    * 0x02 for 10Base-T
  573.    * Or just set ASEL in PHYCC below!
  574.    */
  575.   switch (if_port) {
  576.     case 1:
  577.       mace_write(ioaddr, MACE_PLSCC, 0x02);
  578.       break;
  579.     case 2:
  580.       mace_write(ioaddr, MACE_PLSCC, 0x00);
  581.       break;
  582.     default:
  583.       mace_write(ioaddr, MACE_PHYCC, /* ASEL */ 4);
  584.       /* ASEL Auto Select.  When set, the PORTSEL[1-0] bits are overridden,
  585.  and the MACE device will automatically select the operating media
  586.  interface port. */
  587.       break;
  588.   }
  589.   mace_write(ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_PHYADDR);
  590.   /* Poll ADDRCHG bit */
  591.   while (mace_read(ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
  592.     ;
  593.   /* Set PADR register */
  594.   for (i = 0; i < ETHER_ADDR_LEN; i++)
  595.     mace_write(ioaddr, MACE_PADR, enet_addr[i]);
  596.   /* MAC Configuration Control Register should be written last */
  597.   /* Let set_multicast_list set this. */
  598.   /* mace_write(ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV); */
  599.   mace_write(ioaddr, MACE_MACCC, 0x00);
  600. } /* mace_init */
  601. /* ----------------------------------------------------------------------------
  602. nmclan_config
  603. This routine is scheduled to run after a CARD_INSERTION event
  604. is received, to configure the PCMCIA socket, and to make the
  605. ethernet device available to the system.
  606. ---------------------------------------------------------------------------- */
  607. #define CS_CHECK(fn, args...) 
  608. while ((last_ret=CardServices(last_fn=(fn), args))!=0) goto cs_failed
  609. static void nmclan_config(dev_link_t *link)
  610. {
  611.   client_handle_t handle = link->handle;
  612.   mace_private *lp = link->priv;
  613.   struct net_device *dev = &lp->dev;
  614.   tuple_t tuple;
  615.   cisparse_t parse;
  616.   u_char buf[64];
  617.   int i, last_ret, last_fn;
  618.   ioaddr_t ioaddr;
  619.   DEBUG(0, "nmclan_config(0x%p)n", link);
  620.   tuple.Attributes = 0;
  621.   tuple.TupleData = buf;
  622.   tuple.TupleDataMax = 64;
  623.   tuple.TupleOffset = 0;
  624.   tuple.DesiredTuple = CISTPL_CONFIG;
  625.   CS_CHECK(GetFirstTuple, handle, &tuple);
  626.   CS_CHECK(GetTupleData, handle, &tuple);
  627.   CS_CHECK(ParseTuple, handle, &tuple, &parse);
  628.   link->conf.ConfigBase = parse.config.base;
  629.   /* Configure card */
  630.   link->state |= DEV_CONFIG;
  631.   CS_CHECK(RequestIO, handle, &link->io);
  632.   CS_CHECK(RequestIRQ, handle, &link->irq);
  633.   CS_CHECK(RequestConfiguration, handle, &link->conf);
  634.   dev->irq = link->irq.AssignedIRQ;
  635.   dev->base_addr = link->io.BasePort1;
  636.   i = register_netdev(dev);
  637.   if (i != 0) {
  638.     printk(KERN_NOTICE "nmclan_cs: register_netdev() failedn");
  639.     goto failed;
  640.   }
  641.   ioaddr = dev->base_addr;
  642.   /* Read the ethernet address from the CIS. */
  643.   tuple.DesiredTuple = 0x80 /* CISTPL_CFTABLE_ENTRY_MISC */;
  644.   tuple.TupleData = buf;
  645.   tuple.TupleDataMax = 64;
  646.   tuple.TupleOffset = 0;
  647.   CS_CHECK(GetFirstTuple, handle, &tuple);
  648.   CS_CHECK(GetTupleData, handle, &tuple);
  649.   memcpy(dev->dev_addr, tuple.TupleData, ETHER_ADDR_LEN);
  650.   /* Verify configuration by reading the MACE ID. */
  651.   {
  652.     char sig[2];
  653.     sig[0] = mace_read(ioaddr, MACE_CHIPIDL);
  654.     sig[1] = mace_read(ioaddr, MACE_CHIPIDH);
  655.     if ((sig[0] == 0x40) && ((sig[1] & 0x0F) == 0x09)) {
  656.       DEBUG(0, "nmclan_cs configured: mace id=%x %xn",
  657.     sig[0], sig[1]);
  658.     } else {
  659.       printk(KERN_NOTICE "nmclan_cs: mace id not found: %x %x should"
  660.      " be 0x40 0x?9n", sig[0], sig[1]);
  661.       link->state &= ~DEV_CONFIG_PENDING;
  662.       return;
  663.     }
  664.   }
  665.   mace_init(ioaddr, dev->dev_addr);
  666.   /* The if_port symbol can be set when the module is loaded */
  667.   if (if_port <= 2)
  668.     dev->if_port = if_port;
  669.   else
  670.     printk(KERN_NOTICE "nmclan_cs: invalid if_port requestedn");
  671.   strcpy(lp->node.dev_name, dev->name);
  672.   link->dev = &lp->node;
  673.   link->state &= ~DEV_CONFIG_PENDING;
  674.   printk(KERN_INFO "%s: nmclan: port %#3lx, irq %d, %s port, hw_addr ",
  675.  dev->name, dev->base_addr, dev->irq, if_names[dev->if_port]);
  676.   for (i = 0; i < 6; i++)
  677.       printk("%02X%s", dev->dev_addr[i], ((i<5) ? ":" : "n"));
  678.   return;
  679. cs_failed:
  680.     cs_error(link->handle, last_fn, last_ret);
  681. failed:
  682.     nmclan_release((u_long)link);
  683.     return;
  684. } /* nmclan_config */
  685. /* ----------------------------------------------------------------------------
  686. nmclan_release
  687. After a card is removed, nmclan_release() will unregister the
  688. net device, and release the PCMCIA configuration.  If the device
  689. is still open, this will be postponed until it is closed.
  690. ---------------------------------------------------------------------------- */
  691. static void nmclan_release(u_long arg)
  692. {
  693.   dev_link_t *link = (dev_link_t *)arg;
  694.   DEBUG(0, "nmclan_release(0x%p)n", link);
  695.   if (link->open) {
  696.     DEBUG(1, "nmclan_cs: release postponed, '%s' "
  697.   "still openn", link->dev->dev_name);
  698.     link->state |= DEV_STALE_CONFIG;
  699.     return;
  700.   }
  701.   CardServices(ReleaseConfiguration, link->handle);
  702.   CardServices(ReleaseIO, link->handle, &link->io);
  703.   CardServices(ReleaseIRQ, link->handle, &link->irq);
  704.   link->state &= ~DEV_CONFIG;
  705. } /* nmclan_release */
  706. /* ----------------------------------------------------------------------------
  707. nmclan_event
  708. The card status event handler.  Mostly, this schedules other
  709. stuff to run after an event is received.  A CARD_REMOVAL event
  710. also sets some flags to discourage the net drivers from trying
  711. to talk to the card any more.
  712. ---------------------------------------------------------------------------- */
  713. static int nmclan_event(event_t event, int priority,
  714.        event_callback_args_t *args)
  715. {
  716.   dev_link_t *link = args->client_data;
  717.   mace_private *lp = link->priv;
  718.   struct net_device *dev = &lp->dev;
  719.   DEBUG(1, "nmclan_event(0x%06x)n", event);
  720.   switch (event) {
  721.     case CS_EVENT_CARD_REMOVAL:
  722.       link->state &= ~DEV_PRESENT;
  723.       if (link->state & DEV_CONFIG) {
  724. netif_device_detach(dev);
  725. mod_timer(&link->release, jiffies + HZ/20);
  726.       }
  727.       break;
  728.     case CS_EVENT_CARD_INSERTION:
  729.       link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  730.       nmclan_config(link);
  731.       break;
  732.     case CS_EVENT_PM_SUSPEND:
  733.       link->state |= DEV_SUSPEND;
  734.       /* Fall through... */
  735.     case CS_EVENT_RESET_PHYSICAL:
  736.       if (link->state & DEV_CONFIG) {
  737. if (link->open)
  738.   netif_device_detach(dev);
  739. CardServices(ReleaseConfiguration, link->handle);
  740.       }
  741.       break;
  742.     case CS_EVENT_PM_RESUME:
  743.       link->state &= ~DEV_SUSPEND;
  744.       /* Fall through... */
  745.     case CS_EVENT_CARD_RESET:
  746.       if (link->state & DEV_CONFIG) {
  747. CardServices(RequestConfiguration, link->handle, &link->conf);
  748. if (link->open) {
  749.   nmclan_reset(dev);
  750.   netif_device_attach(dev);
  751. }
  752.       }
  753.       break;
  754.     case CS_EVENT_RESET_REQUEST:
  755.       return 1;
  756.       break;
  757.   }
  758.   return 0;
  759. } /* nmclan_event */
  760. /* ----------------------------------------------------------------------------
  761. nmclan_reset
  762. Reset and restore all of the Xilinx and MACE registers.
  763. ---------------------------------------------------------------------------- */
  764. static void nmclan_reset(struct net_device *dev)
  765. {
  766.   mace_private *lp = dev->priv;
  767. #if RESET_XILINX
  768.   dev_link_t *link = &lp->link;
  769.   conf_reg_t reg;
  770.   u_long OrigCorValue; 
  771.   /* Save original COR value */
  772.   reg.Function = 0;
  773.   reg.Action = CS_READ;
  774.   reg.Offset = CISREG_COR;
  775.   reg.Value = 0;
  776.   CardServices(AccessConfigurationRegister, link->handle, &reg);
  777.   OrigCorValue = reg.Value;
  778.   /* Reset Xilinx */
  779.   reg.Action = CS_WRITE;
  780.   reg.Offset = CISREG_COR;
  781.   DEBUG(1, "nmclan_reset: OrigCorValue=0x%lX, resetting...n",
  782. OrigCorValue);
  783.   reg.Value = COR_SOFT_RESET;
  784.   CardServices(AccessConfigurationRegister, link->handle, &reg);
  785.   /* Need to wait for 20 ms for PCMCIA to finish reset. */
  786.   /* Restore original COR configuration index */
  787.   reg.Value = COR_LEVEL_REQ | (OrigCorValue & COR_CONFIG_MASK);
  788.   CardServices(AccessConfigurationRegister, link->handle, &reg);
  789.   /* Xilinx is now completely reset along with the MACE chip. */
  790.   lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
  791. #endif /* #if RESET_XILINX */
  792.   /* Xilinx is now completely reset along with the MACE chip. */
  793.   lp->tx_free_frames=AM2150_MAX_TX_FRAMES;
  794.   /* Reinitialize the MACE chip for operation. */
  795.   mace_init(dev->base_addr, dev->dev_addr);
  796.   mace_write(dev->base_addr, MACE_IMR, MACE_IMR_DEFAULT);
  797.   /* Restore the multicast list and enable TX and RX. */
  798.   restore_multicast_list(dev);
  799. } /* nmclan_reset */
  800. /* ----------------------------------------------------------------------------
  801. mace_config
  802. [Someone tell me what this is supposed to do?  Is if_port a defined
  803. standard?  If so, there should be defines to indicate 1=10Base-T,
  804. 2=10Base-2, etc. including limited automatic detection.]
  805. ---------------------------------------------------------------------------- */
  806. static int mace_config(struct net_device *dev, struct ifmap *map)
  807. {
  808.   if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
  809.     if (map->port <= 2) {
  810.       dev->if_port = map->port;
  811.       printk(KERN_INFO "%s: switched to %s portn", dev->name,
  812.      if_names[dev->if_port]);
  813.     } else
  814.       return -EINVAL;
  815.   }
  816.   return 0;
  817. } /* mace_config */
  818. /* ----------------------------------------------------------------------------
  819. mace_open
  820. Open device driver.
  821. ---------------------------------------------------------------------------- */
  822. static int mace_open(struct net_device *dev)
  823. {
  824.   ioaddr_t ioaddr = dev->base_addr;
  825.   mace_private *lp = dev->priv;
  826.   dev_link_t *link = &lp->link;
  827.   if (!DEV_OK(link))
  828.     return -ENODEV;
  829.   link->open++;
  830.   MOD_INC_USE_COUNT;
  831.   MACEBANK(0);
  832.   netif_start_queue(dev);
  833.   nmclan_reset(dev);
  834.   return 0; /* Always succeed */
  835. } /* mace_open */
  836. /* ----------------------------------------------------------------------------
  837. mace_close
  838. Closes device driver.
  839. ---------------------------------------------------------------------------- */
  840. static int mace_close(struct net_device *dev)
  841. {
  842.   ioaddr_t ioaddr = dev->base_addr;
  843.   mace_private *lp = dev->priv;
  844.   dev_link_t *link = &lp->link;
  845.   DEBUG(2, "%s: shutting down ethercard.n", dev->name);
  846.   /* Mask off all interrupts from the MACE chip. */
  847.   outb(0xFF, ioaddr + AM2150_MACE_BASE + MACE_IMR);
  848.   link->open--;
  849.   netif_stop_queue(dev);
  850.   if (link->state & DEV_STALE_CONFIG)
  851.     mod_timer(&link->release, jiffies + HZ/20);
  852.   MOD_DEC_USE_COUNT;
  853.   return 0;
  854. } /* mace_close */
  855. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  856. {
  857. u32 ethcmd;
  858. /* dev_ioctl() in ../../net/core/dev.c has already checked
  859.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  860. if (get_user(ethcmd, (u32 *)useraddr))
  861. return -EFAULT;
  862. switch (ethcmd) {
  863. case ETHTOOL_GDRVINFO: {
  864. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  865. strcpy (info.driver, DRV_NAME);
  866. strcpy (info.version, DRV_VERSION);
  867. sprintf(info.bus_info, "PCMCIA 0x%lx", dev->base_addr);
  868. if (copy_to_user (useraddr, &info, sizeof (info)))
  869. return -EFAULT;
  870. return 0;
  871. }
  872. #ifdef PCMCIA_DEBUG
  873. /* get message-level */
  874. case ETHTOOL_GMSGLVL: {
  875. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  876. edata.data = pc_debug;
  877. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  878. return -EFAULT;
  879. return 0;
  880. }
  881. /* set message-level */
  882. case ETHTOOL_SMSGLVL: {
  883. struct ethtool_value edata;
  884. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  885. return -EFAULT;
  886. pc_debug = edata.data;
  887. return 0;
  888. }
  889. #endif
  890. default:
  891. break;
  892. }
  893. return -EOPNOTSUPP;
  894. }
  895. static int smc91c92_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  896. {
  897. switch (cmd) {
  898. case SIOCETHTOOL:
  899. return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  900. default:
  901. return -EOPNOTSUPP;
  902. }
  903. return 0;
  904. }
  905. /* ----------------------------------------------------------------------------
  906. mace_start_xmit
  907. This routine begins the packet transmit function.  When completed,
  908. it will generate a transmit interrupt.
  909. According to /usr/src/linux/net/inet/dev.c, if _start_xmit
  910. returns 0, the "packet is now solely the responsibility of the
  911. driver."  If _start_xmit returns non-zero, the "transmission
  912. failed, put skb back into a list."
  913. ---------------------------------------------------------------------------- */
  914. static void mace_tx_timeout(struct net_device *dev)
  915. {
  916.   mace_private *lp = (mace_private *)dev->priv;
  917.   dev_link_t *link = &lp->link;
  918.   printk(KERN_NOTICE "%s: transmit timed out -- ", dev->name);
  919. #if RESET_ON_TIMEOUT
  920.   printk("resetting cardn");
  921.   CardServices(ResetCard, link->handle);
  922. #else /* #if RESET_ON_TIMEOUT */
  923.   printk("NOT resetting cardn");
  924. #endif /* #if RESET_ON_TIMEOUT */
  925.   dev->trans_start = jiffies;
  926.   netif_wake_queue(dev);
  927. }
  928. static int mace_start_xmit(struct sk_buff *skb, struct net_device *dev)
  929. {
  930.   mace_private *lp = (mace_private *)dev->priv;
  931.   ioaddr_t ioaddr = dev->base_addr;
  932.   netif_stop_queue(dev);
  933.   DEBUG(3, "%s: mace_start_xmit(length = %ld) called.n",
  934. dev->name, (long)skb->len);
  935. #if (!TX_INTERRUPTABLE)
  936.   /* Disable MACE TX interrupts. */
  937.   outb(MACE_IMR_DEFAULT | MACE_IR_XMTINT,
  938.     ioaddr + AM2150_MACE_BASE + MACE_IMR);
  939.   lp->tx_irq_disabled=1;
  940. #endif /* #if (!TX_INTERRUPTABLE) */
  941.   {
  942.     /* This block must not be interrupted by another transmit request!
  943.        mace_tx_timeout will take care of timer-based retransmissions from
  944.        the upper layers.  The interrupt handler is guaranteed never to
  945.        service a transmit interrupt while we are in here.
  946.     */
  947.     lp->linux_stats.tx_bytes += skb->len;
  948.     lp->tx_free_frames--;
  949.     /* WARNING: Write the _exact_ number of bytes written in the header! */
  950.     /* Put out the word header [must be an outw()] . . . */
  951.     outw(skb->len, ioaddr + AM2150_XMT);
  952.     /* . . . and the packet [may be any combination of outw() and outb()] */
  953.     outsw(ioaddr + AM2150_XMT, skb->data, skb->len >> 1);
  954.     if (skb->len & 1) {
  955.       /* Odd byte transfer */
  956.       outb(skb->data[skb->len-1], ioaddr + AM2150_XMT);
  957.     }
  958.     dev->trans_start = jiffies;
  959. #if MULTI_TX
  960.     if (lp->tx_free_frames > 0)
  961.       netif_start_queue(dev);
  962. #endif /* #if MULTI_TX */
  963.   }
  964. #if (!TX_INTERRUPTABLE)
  965.   /* Re-enable MACE TX interrupts. */
  966.   lp->tx_irq_disabled=0;
  967.   outb(MACE_IMR_DEFAULT, ioaddr + AM2150_MACE_BASE + MACE_IMR);
  968. #endif /* #if (!TX_INTERRUPTABLE) */
  969.   dev_kfree_skb(skb);
  970.   return 0;
  971. } /* mace_start_xmit */
  972. /* ----------------------------------------------------------------------------
  973. mace_interrupt
  974. The interrupt handler.
  975. ---------------------------------------------------------------------------- */
  976. static void mace_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  977. {
  978.   mace_private *lp = (mace_private *)dev_id;
  979.   struct net_device *dev = &lp->dev;
  980.   ioaddr_t ioaddr = dev->base_addr;
  981.   int status;
  982.   int IntrCnt = MACE_MAX_IR_ITERATIONS;
  983.   if (dev == NULL) {
  984.     DEBUG(2, "mace_interrupt(): irq 0x%X for unknown device.n",
  985.   irq);
  986.     return;
  987.   }
  988.   if (lp->tx_irq_disabled) {
  989.     printk(
  990.       (lp->tx_irq_disabled?
  991.        KERN_NOTICE "%s: Interrupt with tx_irq_disabled "
  992.        "[isr=%02X, imr=%02X]n": 
  993.        KERN_NOTICE "%s: Re-entering the interrupt handler "
  994.        "[isr=%02X, imr=%02X]n"),
  995.       dev->name,
  996.       inb(ioaddr + AM2150_MACE_BASE + MACE_IR),
  997.       inb(ioaddr + AM2150_MACE_BASE + MACE_IMR)
  998.     );
  999.     /* WARNING: MACE_IR has been read! */
  1000.     return;
  1001.   }
  1002.   if (!netif_device_present(dev)) {
  1003.     DEBUG(2, "%s: interrupt from dead cardn", dev->name);
  1004.     goto exception;
  1005.   }
  1006.   do {
  1007.     /* WARNING: MACE_IR is a READ/CLEAR port! */
  1008.     status = inb(ioaddr + AM2150_MACE_BASE + MACE_IR);
  1009.     DEBUG(3, "mace_interrupt: irq 0x%X status 0x%X.n", irq, status);
  1010.     if (status & MACE_IR_RCVINT) {
  1011.       mace_rx(dev, MACE_MAX_RX_ITERATIONS);
  1012.     }
  1013.     if (status & MACE_IR_XMTINT) {
  1014.       unsigned char fifofc;
  1015.       unsigned char xmtrc;
  1016.       unsigned char xmtfs;
  1017.       fifofc = inb(ioaddr + AM2150_MACE_BASE + MACE_FIFOFC);
  1018.       if ((fifofc & MACE_FIFOFC_XMTFC)==0) {
  1019. lp->linux_stats.tx_errors++;
  1020. outb(0xFF, ioaddr + AM2150_XMT_SKIP);
  1021.       }
  1022.       /* Transmit Retry Count (XMTRC, reg 4) */
  1023.       xmtrc = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTRC);
  1024.       if (xmtrc & MACE_XMTRC_EXDEF) lp->mace_stats.exdef++;
  1025.       lp->mace_stats.xmtrc += (xmtrc & MACE_XMTRC_XMTRC);
  1026.       if (
  1027.         (xmtfs = inb(ioaddr + AM2150_MACE_BASE + MACE_XMTFS)) &
  1028.         MACE_XMTFS_XMTSV /* Transmit Status Valid */
  1029.       ) {
  1030. lp->mace_stats.xmtsv++;
  1031. if (xmtfs & ~MACE_XMTFS_XMTSV) {
  1032.   if (xmtfs & MACE_XMTFS_UFLO) {
  1033.     /* Underflow.  Indicates that the Transmit FIFO emptied before
  1034.        the end of frame was reached. */
  1035.     lp->mace_stats.uflo++;
  1036.   }
  1037.   if (xmtfs & MACE_XMTFS_LCOL) {
  1038.     /* Late Collision */
  1039.     lp->mace_stats.lcol++;
  1040.   }
  1041.   if (xmtfs & MACE_XMTFS_MORE) {
  1042.     /* MORE than one retry was needed */
  1043.     lp->mace_stats.more++;
  1044.   }
  1045.   if (xmtfs & MACE_XMTFS_ONE) {
  1046.     /* Exactly ONE retry occurred */
  1047.     lp->mace_stats.one++;
  1048.   }
  1049.   if (xmtfs & MACE_XMTFS_DEFER) {
  1050.     /* Transmission was defered */
  1051.     lp->mace_stats.defer++;
  1052.   }
  1053.   if (xmtfs & MACE_XMTFS_LCAR) {
  1054.     /* Loss of carrier */
  1055.     lp->mace_stats.lcar++;
  1056.   }
  1057.   if (xmtfs & MACE_XMTFS_RTRY) {
  1058.     /* Retry error: transmit aborted after 16 attempts */
  1059.     lp->mace_stats.rtry++;
  1060.   }
  1061.         } /* if (xmtfs & ~MACE_XMTFS_XMTSV) */
  1062.       } /* if (xmtfs & MACE_XMTFS_XMTSV) */
  1063.       lp->linux_stats.tx_packets++;
  1064.       lp->tx_free_frames++;
  1065.       netif_wake_queue(dev);
  1066.     } /* if (status & MACE_IR_XMTINT) */
  1067.     if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) {
  1068.       if (status & MACE_IR_JAB) {
  1069.         /* Jabber Error.  Excessive transmit duration (20-150ms). */
  1070.         lp->mace_stats.jab++;
  1071.       }
  1072.       if (status & MACE_IR_BABL) {
  1073.         /* Babble Error.  >1518 bytes transmitted. */
  1074.         lp->mace_stats.babl++;
  1075.       }
  1076.       if (status & MACE_IR_CERR) {
  1077. /* Collision Error.  CERR indicates the absence of the
  1078.    Signal Quality Error Test message after a packet
  1079.    transmission. */
  1080.         lp->mace_stats.cerr++;
  1081.       }
  1082.       if (status & MACE_IR_RCVCCO) {
  1083.         /* Receive Collision Count Overflow; */
  1084.         lp->mace_stats.rcvcco++;
  1085.       }
  1086.       if (status & MACE_IR_RNTPCO) {
  1087.         /* Runt Packet Count Overflow */
  1088.         lp->mace_stats.rntpco++;
  1089.       }
  1090.       if (status & MACE_IR_MPCO) {
  1091.         /* Missed Packet Count Overflow */
  1092.         lp->mace_stats.mpco++;
  1093.       }
  1094.     } /* if (status & ~MACE_IMR_DEFAULT & ~MACE_IR_RCVINT & ~MACE_IR_XMTINT) */
  1095.   } while ((status & ~MACE_IMR_DEFAULT) && (--IntrCnt));
  1096. exception:
  1097.   return;
  1098. } /* mace_interrupt */
  1099. /* ----------------------------------------------------------------------------
  1100. mace_rx
  1101. Receives packets.
  1102. ---------------------------------------------------------------------------- */
  1103. static int mace_rx(struct net_device *dev, unsigned char RxCnt)
  1104. {
  1105.   mace_private *lp = (mace_private *)dev->priv;
  1106.   ioaddr_t ioaddr = dev->base_addr;
  1107.   unsigned char rx_framecnt;
  1108.   unsigned short rx_status;
  1109.   while (
  1110.     ((rx_framecnt = inb(ioaddr + AM2150_RCV_FRAME_COUNT)) > 0) &&
  1111.     (rx_framecnt <= 12) && /* rx_framecnt==0xFF if card is extracted. */
  1112.     (RxCnt--)
  1113.   ) {
  1114.     rx_status = inw(ioaddr + AM2150_RCV);
  1115.     DEBUG(3, "%s: in mace_rx(), framecnt 0x%X, rx_status"
  1116.   " 0x%X.n", dev->name, rx_framecnt, rx_status);
  1117.     if (rx_status & MACE_RCVFS_RCVSTS) { /* Error, update stats. */
  1118.       lp->linux_stats.rx_errors++;
  1119.       if (rx_status & MACE_RCVFS_OFLO) {
  1120.         lp->mace_stats.oflo++;
  1121.       }
  1122.       if (rx_status & MACE_RCVFS_CLSN) {
  1123.         lp->mace_stats.clsn++;
  1124.       }
  1125.       if (rx_status & MACE_RCVFS_FRAM) {
  1126. lp->mace_stats.fram++;
  1127.       }
  1128.       if (rx_status & MACE_RCVFS_FCS) {
  1129.         lp->mace_stats.fcs++;
  1130.       }
  1131.     } else {
  1132.       short pkt_len = (rx_status & ~MACE_RCVFS_RCVSTS) - 4;
  1133.         /* Auto Strip is off, always subtract 4 */
  1134.       struct sk_buff *skb;
  1135.       lp->mace_stats.rfs_rntpc += inb(ioaddr + AM2150_RCV);
  1136.         /* runt packet count */
  1137.       lp->mace_stats.rfs_rcvcc += inb(ioaddr + AM2150_RCV);
  1138.         /* rcv collision count */
  1139.       DEBUG(3, "    receiving packet size 0x%X rx_status"
  1140.     " 0x%X.n", pkt_len, rx_status);
  1141.       skb = dev_alloc_skb(pkt_len+2);
  1142.       if (skb != NULL) {
  1143. skb->dev = dev;
  1144. skb_reserve(skb, 2);
  1145. insw(ioaddr + AM2150_RCV, skb_put(skb, pkt_len), pkt_len>>1);
  1146. if (pkt_len & 1)
  1147.     *(skb->tail-1) = inb(ioaddr + AM2150_RCV);
  1148. skb->protocol = eth_type_trans(skb, dev);
  1149. netif_rx(skb); /* Send the packet to the upper (protocol) layers. */
  1150. dev->last_rx = jiffies;
  1151. lp->linux_stats.rx_packets++;
  1152. lp->linux_stats.rx_bytes += skb->len;
  1153. outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
  1154. continue;
  1155.       } else {
  1156. DEBUG(1, "%s: couldn't allocate a sk_buff of size"
  1157.       " %d.n", dev->name, pkt_len);
  1158. lp->linux_stats.rx_dropped++;
  1159.       }
  1160.     }
  1161.     outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */
  1162.   } /* while */
  1163.   return 0;
  1164. } /* mace_rx */
  1165. /* ----------------------------------------------------------------------------
  1166. pr_linux_stats
  1167. ---------------------------------------------------------------------------- */
  1168. static void pr_linux_stats(struct net_device_stats *pstats)
  1169. {
  1170.   DEBUG(2, "pr_linux_statsn");
  1171.   DEBUG(2, " rx_packets=%-7ld        tx_packets=%ldn",
  1172. (long)pstats->rx_packets, (long)pstats->tx_packets);
  1173.   DEBUG(2, " rx_errors=%-7ld         tx_errors=%ldn",
  1174. (long)pstats->rx_errors, (long)pstats->tx_errors);
  1175.   DEBUG(2, " rx_dropped=%-7ld        tx_dropped=%ldn",
  1176. (long)pstats->rx_dropped, (long)pstats->tx_dropped);
  1177.   DEBUG(2, " multicast=%-7ld         collisions=%ldn",
  1178. (long)pstats->multicast, (long)pstats->collisions);
  1179.   DEBUG(2, " rx_length_errors=%-7ld  rx_over_errors=%ldn",
  1180. (long)pstats->rx_length_errors, (long)pstats->rx_over_errors);
  1181.   DEBUG(2, " rx_crc_errors=%-7ld     rx_frame_errors=%ldn",
  1182. (long)pstats->rx_crc_errors, (long)pstats->rx_frame_errors);
  1183.   DEBUG(2, " rx_fifo_errors=%-7ld    rx_missed_errors=%ldn",
  1184. (long)pstats->rx_fifo_errors, (long)pstats->rx_missed_errors);
  1185.   DEBUG(2, " tx_aborted_errors=%-7ld tx_carrier_errors=%ldn",
  1186. (long)pstats->tx_aborted_errors, (long)pstats->tx_carrier_errors);
  1187.   DEBUG(2, " tx_fifo_errors=%-7ld    tx_heartbeat_errors=%ldn",
  1188. (long)pstats->tx_fifo_errors, (long)pstats->tx_heartbeat_errors);
  1189.   DEBUG(2, " tx_window_errors=%ldn",
  1190. (long)pstats->tx_window_errors);
  1191. } /* pr_linux_stats */
  1192. /* ----------------------------------------------------------------------------
  1193. pr_mace_stats
  1194. ---------------------------------------------------------------------------- */
  1195. static void pr_mace_stats(mace_statistics *pstats)
  1196. {
  1197.   DEBUG(2, "pr_mace_statsn");
  1198.   DEBUG(2, " xmtsv=%-7d             uflo=%dn",
  1199. pstats->xmtsv, pstats->uflo);
  1200.   DEBUG(2, " lcol=%-7d              more=%dn",
  1201. pstats->lcol, pstats->more);
  1202.   DEBUG(2, " one=%-7d               defer=%dn",
  1203. pstats->one, pstats->defer);
  1204.   DEBUG(2, " lcar=%-7d              rtry=%dn",
  1205. pstats->lcar, pstats->rtry);
  1206.   /* MACE_XMTRC */
  1207.   DEBUG(2, " exdef=%-7d             xmtrc=%dn",
  1208. pstats->exdef, pstats->xmtrc);
  1209.   /* RFS1--Receive Status (RCVSTS) */
  1210.   DEBUG(2, " oflo=%-7d              clsn=%dn",
  1211. pstats->oflo, pstats->clsn);
  1212.   DEBUG(2, " fram=%-7d              fcs=%dn",
  1213. pstats->fram, pstats->fcs);
  1214.   /* RFS2--Runt Packet Count (RNTPC) */
  1215.   /* RFS3--Receive Collision Count (RCVCC) */
  1216.   DEBUG(2, " rfs_rntpc=%-7d         rfs_rcvcc=%dn",
  1217. pstats->rfs_rntpc, pstats->rfs_rcvcc);
  1218.   /* MACE_IR */
  1219.   DEBUG(2, " jab=%-7d               babl=%dn",
  1220. pstats->jab, pstats->babl);
  1221.   DEBUG(2, " cerr=%-7d              rcvcco=%dn",
  1222. pstats->cerr, pstats->rcvcco);
  1223.   DEBUG(2, " rntpco=%-7d            mpco=%dn",
  1224. pstats->rntpco, pstats->mpco);
  1225.   /* MACE_MPC */
  1226.   DEBUG(2, " mpc=%dn", pstats->mpc);
  1227.   /* MACE_RNTPC */
  1228.   DEBUG(2, " rntpc=%dn", pstats->rntpc);
  1229.   /* MACE_RCVCC */
  1230.   DEBUG(2, " rcvcc=%dn", pstats->rcvcc);
  1231. } /* pr_mace_stats */
  1232. /* ----------------------------------------------------------------------------
  1233. update_stats
  1234. Update statistics.  We change to register window 1, so this
  1235. should be run single-threaded if the device is active. This is
  1236. expected to be a rare operation, and it's simpler for the rest
  1237. of the driver to assume that window 0 is always valid rather
  1238. than use a special window-state variable.
  1239. oflo & uflo should _never_ occur since it would mean the Xilinx
  1240. was not able to transfer data between the MACE FIFO and the
  1241. card's SRAM fast enough.  If this happens, something is
  1242. seriously wrong with the hardware.
  1243. ---------------------------------------------------------------------------- */
  1244. static void update_stats(ioaddr_t ioaddr, struct net_device *dev)
  1245. {
  1246.   mace_private *lp = (mace_private *)dev->priv;
  1247.   lp->mace_stats.rcvcc += mace_read(ioaddr, MACE_RCVCC);
  1248.   lp->mace_stats.rntpc += mace_read(ioaddr, MACE_RNTPC);
  1249.   lp->mace_stats.mpc += mace_read(ioaddr, MACE_MPC);
  1250.   /* At this point, mace_stats is fully updated for this call.
  1251.      We may now update the linux_stats. */
  1252.   /* The MACE has no equivalent for linux_stats field which are commented
  1253.      out. */
  1254.   /* lp->linux_stats.multicast; */
  1255.   lp->linux_stats.collisions = 
  1256.     lp->mace_stats.rcvcco * 256 + lp->mace_stats.rcvcc;
  1257.     /* Collision: The MACE may retry sending a packet 15 times
  1258.        before giving up.  The retry count is in XMTRC.
  1259.        Does each retry constitute a collision?
  1260.        If so, why doesn't the RCVCC record these collisions? */
  1261.   /* detailed rx_errors: */
  1262.   lp->linux_stats.rx_length_errors = 
  1263.     lp->mace_stats.rntpco * 256 + lp->mace_stats.rntpc;
  1264.   /* lp->linux_stats.rx_over_errors */
  1265.   lp->linux_stats.rx_crc_errors = lp->mace_stats.fcs;
  1266.   lp->linux_stats.rx_frame_errors = lp->mace_stats.fram;
  1267.   lp->linux_stats.rx_fifo_errors = lp->mace_stats.oflo;
  1268.   lp->linux_stats.rx_missed_errors = 
  1269.     lp->mace_stats.mpco * 256 + lp->mace_stats.mpc;
  1270.   /* detailed tx_errors */
  1271.   lp->linux_stats.tx_aborted_errors = lp->mace_stats.rtry;
  1272.   lp->linux_stats.tx_carrier_errors = lp->mace_stats.lcar;
  1273.     /* LCAR usually results from bad cabling. */
  1274.   lp->linux_stats.tx_fifo_errors = lp->mace_stats.uflo;
  1275.   lp->linux_stats.tx_heartbeat_errors = lp->mace_stats.cerr;
  1276.   /* lp->linux_stats.tx_window_errors; */
  1277.   return;
  1278. } /* update_stats */
  1279. /* ----------------------------------------------------------------------------
  1280. mace_get_stats
  1281. Gathers ethernet statistics from the MACE chip.
  1282. ---------------------------------------------------------------------------- */
  1283. static struct net_device_stats *mace_get_stats(struct net_device *dev)
  1284. {
  1285.   mace_private *lp = (mace_private *)dev->priv;
  1286.   update_stats(dev->base_addr, dev);
  1287.   DEBUG(1, "%s: updating the statistics.n", dev->name);
  1288.   pr_linux_stats(&lp->linux_stats);
  1289.   pr_mace_stats(&lp->mace_stats);
  1290.   return &lp->linux_stats;
  1291. } /* net_device_stats */
  1292. /* ----------------------------------------------------------------------------
  1293. updateCRC
  1294. Modified from Am79C90 data sheet.
  1295. ---------------------------------------------------------------------------- */
  1296. #if BROKEN_MULTICAST
  1297. static void updateCRC(int *CRC, int bit)
  1298. {
  1299.   int poly[]={
  1300.     1,1,1,0, 1,1,0,1,
  1301.     1,0,1,1, 1,0,0,0,
  1302.     1,0,0,0, 0,0,1,1,
  1303.     0,0,1,0, 0,0,0,0
  1304.   }; /* CRC polynomial.  poly[n] = coefficient of the x**n term of the
  1305. CRC generator polynomial. */
  1306.   int j;
  1307.   /* shift CRC and control bit (CRC[32]) */
  1308.   for (j = 32; j > 0; j--)
  1309.     CRC[j] = CRC[j-1];
  1310.   CRC[0] = 0;
  1311.   /* If bit XOR(control bit) = 1, set CRC = CRC XOR polynomial. */
  1312.   if (bit ^ CRC[32])
  1313.     for (j = 0; j < 32; j++)
  1314.       CRC[j] ^= poly[j];
  1315. } /* updateCRC */
  1316. /* ----------------------------------------------------------------------------
  1317. BuildLAF
  1318. Build logical address filter.
  1319. Modified from Am79C90 data sheet.
  1320. Input
  1321. ladrf: logical address filter (contents initialized to 0)
  1322. adr: ethernet address
  1323. ---------------------------------------------------------------------------- */
  1324. static void BuildLAF(int *ladrf, int *adr)
  1325. {
  1326.   int CRC[33]={1}; /* CRC register, 1 word/bit + extra control bit */
  1327.   int i, byte; /* temporary array indices */
  1328.   int hashcode; /* the output object */
  1329.   CRC[32]=0;
  1330.   for (byte = 0; byte < 6; byte++)
  1331.     for (i = 0; i < 8; i++)
  1332.       updateCRC(CRC, (adr[byte] >> i) & 1);
  1333.   hashcode = 0;
  1334.   for (i = 0; i < 6; i++)
  1335.     hashcode = (hashcode << 1) + CRC[i];
  1336.   byte = hashcode >> 3;
  1337.   ladrf[byte] |= (1 << (hashcode & 7));
  1338. #ifdef PCMCIA_DEBUG
  1339.   if (pc_debug > 2) {
  1340.     printk(KERN_DEBUG "    adr =");
  1341.     for (i = 0; i < 6; i++)
  1342.       printk(" %02X", adr[i]);
  1343.     printk("n" KERN_DEBUG "    hashcode = %d(decimal), ladrf[0:63]"
  1344.    " =", hashcode);
  1345.     for (i = 0; i < 8; i++)
  1346.       printk(" %02X", ladrf[i]);
  1347.     printk("n");
  1348.   }
  1349. #endif
  1350. } /* BuildLAF */
  1351. /* ----------------------------------------------------------------------------
  1352. restore_multicast_list
  1353. Restores the multicast filter for MACE chip to the last
  1354. set_multicast_list() call.
  1355. Input
  1356. multicast_num_addrs
  1357. multicast_ladrf[]
  1358. ---------------------------------------------------------------------------- */
  1359. static void restore_multicast_list(struct net_device *dev)
  1360. {
  1361.   mace_private *lp = (mace_private *)dev->priv;
  1362.   int num_addrs = lp->multicast_num_addrs;
  1363.   int *ladrf = lp->multicast_ladrf;
  1364.   ioaddr_t ioaddr = dev->base_addr;
  1365.   int i;
  1366.   DEBUG(2, "%s: restoring Rx mode to %d addresses.n",
  1367. dev->name, num_addrs);
  1368.   if (num_addrs > 0) {
  1369.     DEBUG(1, "Attempt to restore multicast list detected.n");
  1370.     mace_write(ioaddr, MACE_IAC, MACE_IAC_ADDRCHG | MACE_IAC_LOGADDR);
  1371.     /* Poll ADDRCHG bit */
  1372.     while (mace_read(ioaddr, MACE_IAC) & MACE_IAC_ADDRCHG)
  1373.       ;
  1374.     /* Set LADRF register */
  1375.     for (i = 0; i < MACE_LADRF_LEN; i++)
  1376.       mace_write(ioaddr, MACE_LADRF, ladrf[i]);
  1377.     mace_write(ioaddr, MACE_UTR, MACE_UTR_RCVFCSE | MACE_UTR_LOOP_EXTERNAL);
  1378.     mace_write(ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
  1379.   } else if (num_addrs < 0) {
  1380.     /* Promiscuous mode: receive all packets */
  1381.     mace_write(ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
  1382.     mace_write(ioaddr, MACE_MACCC,
  1383.       MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
  1384.     );
  1385.   } else {
  1386.     /* Normal mode */
  1387.     mace_write(ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
  1388.     mace_write(ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
  1389.   }
  1390. } /* restore_multicast_list */
  1391. /* ----------------------------------------------------------------------------
  1392. set_multicast_list
  1393. Set or clear the multicast filter for this adaptor.
  1394. Input
  1395. num_addrs == -1 Promiscuous mode, receive all packets
  1396. num_addrs == 0 Normal mode, clear multicast list
  1397. num_addrs > 0 Multicast mode, receive normal and MC packets, and do
  1398. best-effort filtering.
  1399. Output
  1400. multicast_num_addrs
  1401. multicast_ladrf[]
  1402. ---------------------------------------------------------------------------- */
  1403. static void set_multicast_list(struct net_device *dev)
  1404. {
  1405.   mace_private *lp = (mace_private *)dev->priv;
  1406.   int adr[ETHER_ADDR_LEN] = {0}; /* Ethernet address */
  1407.   int i;
  1408.   struct dev_mc_list *dmi = dev->mc_list;
  1409. #ifdef PCMCIA_DEBUG
  1410.   if (pc_debug > 1) {
  1411.     static int old;
  1412.     if (dev->mc_count != old) {
  1413.       old = dev->mc_count;
  1414.       DEBUG(0, "%s: setting Rx mode to %d addresses.n",
  1415.     dev->name, old);
  1416.     }
  1417.   }
  1418. #endif
  1419.   /* Set multicast_num_addrs. */
  1420.   lp->multicast_num_addrs = dev->mc_count;
  1421.   /* Set multicast_ladrf. */
  1422.   if (num_addrs > 0) {
  1423.     /* Calculate multicast logical address filter */
  1424.     memset(lp->multicast_ladrf, 0, MACE_LADRF_LEN);
  1425.     for (i = 0; i < dev->mc_count; i++) {
  1426.       memcpy(adr, dmi->dmi_addr, ETHER_ADDR_LEN);
  1427.       dmi = dmi->next;
  1428.       BuildLAF(lp->multicast_ladrf, adr);
  1429.     }
  1430.   }
  1431.   restore_multicast_list(dev);
  1432. } /* set_multicast_list */
  1433. #endif /* BROKEN_MULTICAST */
  1434. static void restore_multicast_list(struct net_device *dev)
  1435. {
  1436.   ioaddr_t ioaddr = dev->base_addr;
  1437.   DEBUG(2, "%s: restoring Rx mode to %d addresses.n", dev->name,
  1438. ((mace_private *)(dev->priv))->multicast_num_addrs);
  1439.   if (dev->flags & IFF_PROMISC) {
  1440.     /* Promiscuous mode: receive all packets */
  1441.     mace_write(ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
  1442.     mace_write(ioaddr, MACE_MACCC,
  1443.       MACE_MACCC_PROM | MACE_MACCC_ENXMT | MACE_MACCC_ENRCV
  1444.     );
  1445.   } else {
  1446.     /* Normal mode */
  1447.     mace_write(ioaddr, MACE_UTR, MACE_UTR_LOOP_EXTERNAL);
  1448.     mace_write(ioaddr, MACE_MACCC, MACE_MACCC_ENXMT | MACE_MACCC_ENRCV);
  1449.   }
  1450. } /* restore_multicast_list */
  1451. static void set_multicast_list(struct net_device *dev)
  1452. {
  1453.   mace_private *lp = (mace_private *)dev->priv;
  1454. #ifdef PCMCIA_DEBUG
  1455.   if (pc_debug > 1) {
  1456.     static int old;
  1457.     if (dev->mc_count != old) {
  1458.       old = dev->mc_count;
  1459.       DEBUG(0, "%s: setting Rx mode to %d addresses.n",
  1460.     dev->name, old);
  1461.     }
  1462.   }
  1463. #endif
  1464.   lp->multicast_num_addrs = dev->mc_count;
  1465.   restore_multicast_list(dev);
  1466. } /* set_multicast_list */
  1467. /* ----------------------------------------------------------------------------
  1468. init_nmclan_cs
  1469. ---------------------------------------------------------------------------- */
  1470. static int __init init_nmclan_cs(void)
  1471. {
  1472.   servinfo_t serv;
  1473.   DEBUG(0, "%sn", version);
  1474.   CardServices(GetCardServicesInfo, &serv);
  1475.   if (serv.Revision != CS_RELEASE_CODE) {
  1476.     printk(KERN_NOTICE "nmclan_cs: Card Services release does not match!n");
  1477.     return -1;
  1478.   }
  1479.   register_pccard_driver(&dev_info, &nmclan_attach, &nmclan_detach);
  1480.   return 0;
  1481. }
  1482. /* ----------------------------------------------------------------------------
  1483. exit_nmclan_cs
  1484. ---------------------------------------------------------------------------- */
  1485. static void __exit exit_nmclan_cs(void)
  1486. {
  1487.     DEBUG(0, "nmclan_cs: unloadingn");
  1488.     unregister_pccard_driver(&dev_info);
  1489.     while (dev_list != NULL)
  1490. nmclan_detach(dev_list);
  1491. }
  1492. module_init(init_nmclan_cs);
  1493. module_exit(exit_nmclan_cs);