1 /* [xirc2ps_cs.c wk 03.11.99] (1.40 1999/11/18 00:06:03)
2  * Xircom CreditCard Ethernet Adapter IIps driver
3  * Xircom Realport 10/100 (RE-100) driver
4  *
5  * This driver supports various Xircom CreditCard Ethernet adapters
6  * including the CE2, CE IIps, RE-10, CEM28, CEM33, CE33, CEM56,
7  * CE3-100, CE3B, RE-100, REM10BT, and REM56G-100.
8  *
9  * 2000-09-24 <psheer@icon.co.za> The Xircom CE3B-100 may not
10  * autodetect the media properly. In this case use the
11  * if_port=1 (for 10BaseT) or if_port=4 (for 100BaseT) options
12  * to force the media type.
13  *
14  * Written originally by Werner Koch based on David Hinds' skeleton of the
15  * PCMCIA driver.
16  *
17  * Copyright (c) 1997,1998 Werner Koch (dd9jn)
18  *
19  * This driver is free software; you can redistribute it and/or modify
20  * it under the terms of the GNU General Public License as published by
21  * the Free Software Foundation; either version 2 of the License, or
22  * (at your option) any later version.
23  *
24  * It is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with this program; if not, write to the Free Software
31  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
32  *
33  *
34  * ALTERNATIVELY, this driver may be distributed under the terms of
35  * the following license, in which case the provisions of this license
36  * are required INSTEAD OF the GNU General Public License.  (This clause
37  * is necessary due to a potential bad interaction between the GPL and
38  * the restrictions contained in a BSD-style copyright.)
39  *
40  * Redistribution and use in source and binary forms, with or without
41  * modification, are permitted provided that the following conditions
42  * are met:
43  * 1. Redistributions of source code must retain the above copyright
44  *    notice, and the entire permission notice in its entirety,
45  *    including the disclaimer of warranties.
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in the
48  *    documentation and/or other materials provided with the distribution.
49  * 3. The name of the author may not be used to endorse or promote
50  *    products derived from this software without specific prior
51  *    written permission.
52  *
53  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
54  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
55  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
56  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
57  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
58  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
59  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
61  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
62  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
63  * OF THE POSSIBILITY OF SUCH DAMAGE.
64  */
65 
66 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
67 
68 #include <linux/module.h>
69 #include <linux/kernel.h>
70 #include <linux/init.h>
71 #include <linux/ptrace.h>
72 #include <linux/slab.h>
73 #include <linux/string.h>
74 #include <linux/timer.h>
75 #include <linux/interrupt.h>
76 #include <linux/in.h>
77 #include <linux/delay.h>
78 #include <linux/ethtool.h>
79 #include <linux/netdevice.h>
80 #include <linux/etherdevice.h>
81 #include <linux/skbuff.h>
82 #include <linux/if_arp.h>
83 #include <linux/ioport.h>
84 #include <linux/bitops.h>
85 #include <linux/mii.h>
86 
87 #include <pcmcia/cistpl.h>
88 #include <pcmcia/cisreg.h>
89 #include <pcmcia/ciscode.h>
90 
91 #include <asm/io.h>
92 #include <asm/uaccess.h>
93 
94 #ifndef MANFID_COMPAQ
95   #define MANFID_COMPAQ 	   0x0138
96   #define MANFID_COMPAQ2	   0x0183  /* is this correct? */
97 #endif
98 
99 #include <pcmcia/ds.h>
100 
101 /* Time in jiffies before concluding Tx hung */
102 #define TX_TIMEOUT	((400*HZ)/1000)
103 
104 /****************
105  * Some constants used to access the hardware
106  */
107 
108 /* Register offsets and value constans */
109 #define XIRCREG_CR  0	/* Command register (wr) */
110 enum xirc_cr {
111     TransmitPacket = 0x01,
112     SoftReset = 0x02,
113     EnableIntr = 0x04,
114     ForceIntr  = 0x08,
115     ClearTxFIFO = 0x10,
116     ClearRxOvrun = 0x20,
117     RestartTx	 = 0x40
118 };
119 #define XIRCREG_ESR 0	/* Ethernet status register (rd) */
120 enum xirc_esr {
121     FullPktRcvd = 0x01, /* full packet in receive buffer */
122     PktRejected = 0x04, /* a packet has been rejected */
123     TxPktPend = 0x08,	/* TX Packet Pending */
124     IncorPolarity = 0x10,
125     MediaSelect = 0x20	/* set if TP, clear if AUI */
126 };
127 #define XIRCREG_PR  1	/* Page Register select */
128 #define XIRCREG_EDP 4	/* Ethernet Data Port Register */
129 #define XIRCREG_ISR 6	/* Ethernet Interrupt Status Register */
130 enum xirc_isr {
131     TxBufOvr = 0x01,	/* TX Buffer Overflow */
132     PktTxed  = 0x02,	/* Packet Transmitted */
133     MACIntr  = 0x04,	/* MAC Interrupt occurred */
134     TxResGrant = 0x08,	/* Tx Reservation Granted */
135     RxFullPkt = 0x20,	/* Rx Full Packet */
136     RxPktRej  = 0x40,	/* Rx Packet Rejected */
137     ForcedIntr= 0x80	/* Forced Interrupt */
138 };
139 #define XIRCREG1_IMR0 12 /* Ethernet Interrupt Mask Register (on page 1)*/
140 #define XIRCREG1_IMR1 13
141 #define XIRCREG0_TSO  8  /* Transmit Space Open Register (on page 0)*/
142 #define XIRCREG0_TRS  10 /* Transmit reservation Size Register (page 0)*/
143 #define XIRCREG0_DO   12 /* Data Offset Register (page 0) (wr) */
144 #define XIRCREG0_RSR  12 /* Receive Status Register (page 0) (rd) */
145 enum xirc_rsr {
146     PhyPkt = 0x01,	/* set:physical packet, clear: multicast packet */
147     BrdcstPkt = 0x02,	/* set if it is a broadcast packet */
148     PktTooLong = 0x04,	/* set if packet length > 1518 */
149     AlignErr = 0x10,	/* incorrect CRC and last octet not complete */
150     CRCErr = 0x20,	/* incorrect CRC and last octet is complete */
151     PktRxOk = 0x80	/* received ok */
152 };
153 #define XIRCREG0_PTR 13 /* packets transmitted register (rd) */
154 #define XIRCREG0_RBC 14 /* receive byte count regsister (rd) */
155 #define XIRCREG1_ECR 14 /* ethernet configurationn register */
156 enum xirc_ecr {
157     FullDuplex = 0x04,	/* enable full duplex mode */
158     LongTPMode = 0x08,	/* adjust for longer lengths of TP cable */
159     DisablePolCor = 0x10,/* disable auto polarity correction */
160     DisableLinkPulse = 0x20, /* disable link pulse generation */
161     DisableAutoTx = 0x40, /* disable auto-transmit */
162 };
163 #define XIRCREG2_RBS 8	/* receive buffer start register */
164 #define XIRCREG2_LED 10 /* LED Configuration register */
165 /* values for the leds:    Bits 2-0 for led 1
166  *  0 disabled		   Bits 5-3 for led 2
167  *  1 collision
168  *  2 noncollision
169  *  3 link_detected
170  *  4 incor_polarity
171  *  5 jabber
172  *  6 auto_assertion
173  *  7 rx_tx_activity
174  */
175 #define XIRCREG2_MSR 12 /* Mohawk specific register */
176 
177 #define XIRCREG4_GPR0 8 /* General Purpose Register 0 */
178 #define XIRCREG4_GPR1 9 /* General Purpose Register 1 */
179 #define XIRCREG2_GPR2 13 /* General Purpose Register 2 (page2!)*/
180 #define XIRCREG4_BOV 10 /* Bonding Version Register */
181 #define XIRCREG4_LMA 12 /* Local Memory Address Register */
182 #define XIRCREG4_LMD 14 /* Local Memory Data Port */
183 /* MAC register can only by accessed with 8 bit operations */
184 #define XIRCREG40_CMD0 8    /* Command Register (wr) */
185 enum xirc_cmd { 	    /* Commands */
186     Transmit = 0x01,
187     EnableRecv = 0x04,
188     DisableRecv = 0x08,
189     Abort = 0x10,
190     Online = 0x20,
191     IntrAck = 0x40,
192     Offline = 0x80
193 };
194 #define XIRCREG5_RHSA0	10  /* Rx Host Start Address */
195 #define XIRCREG40_RXST0 9   /* Receive Status Register */
196 #define XIRCREG40_TXST0 11  /* Transmit Status Register 0 */
197 #define XIRCREG40_TXST1 12  /* Transmit Status Register 10 */
198 #define XIRCREG40_RMASK0 13  /* Receive Mask Register */
199 #define XIRCREG40_TMASK0 14  /* Transmit Mask Register 0 */
200 #define XIRCREG40_TMASK1 15  /* Transmit Mask Register 0 */
201 #define XIRCREG42_SWC0	8   /* Software Configuration 0 */
202 #define XIRCREG42_SWC1	9   /* Software Configuration 1 */
203 #define XIRCREG42_BOC	10  /* Back-Off Configuration */
204 #define XIRCREG44_TDR0	8   /* Time Domain Reflectometry 0 */
205 #define XIRCREG44_TDR1	9   /* Time Domain Reflectometry 1 */
206 #define XIRCREG44_RXBC_LO 10 /* Rx Byte Count 0 (rd) */
207 #define XIRCREG44_RXBC_HI 11 /* Rx Byte Count 1 (rd) */
208 #define XIRCREG45_REV	 15 /* Revision Register (rd) */
209 #define XIRCREG50_IA	8   /* Individual Address (8-13) */
210 
211 static const char *if_names[] = { "Auto", "10BaseT", "10Base2", "AUI", "100BaseT" };
212 
213 /* card types */
214 #define XIR_UNKNOWN  0	/* unknown: not supported */
215 #define XIR_CE	     1	/* (prodid 1) different hardware: not supported */
216 #define XIR_CE2      2	/* (prodid 2) */
217 #define XIR_CE3      3	/* (prodid 3) */
218 #define XIR_CEM      4	/* (prodid 1) different hardware: not supported */
219 #define XIR_CEM2     5	/* (prodid 2) */
220 #define XIR_CEM3     6	/* (prodid 3) */
221 #define XIR_CEM33    7	/* (prodid 4) */
222 #define XIR_CEM56M   8	/* (prodid 5) */
223 #define XIR_CEM56    9	/* (prodid 6) */
224 #define XIR_CM28    10	/* (prodid 3) modem only: not supported here */
225 #define XIR_CM33    11	/* (prodid 4) modem only: not supported here */
226 #define XIR_CM56    12	/* (prodid 5) modem only: not supported here */
227 #define XIR_CG	    13	/* (prodid 1) GSM modem only: not supported */
228 #define XIR_CBE     14	/* (prodid 1) cardbus ethernet: not supported */
229 /*====================================================================*/
230 
231 /* Module parameters */
232 
233 MODULE_DESCRIPTION("Xircom PCMCIA ethernet driver");
234 MODULE_LICENSE("Dual MPL/GPL");
235 
236 #define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
237 
238 INT_MODULE_PARM(if_port,	0);
239 INT_MODULE_PARM(full_duplex,	0);
240 INT_MODULE_PARM(do_sound, 	1);
241 INT_MODULE_PARM(lockup_hack,	0);  /* anti lockup hack */
242 
243 /*====================================================================*/
244 
245 /* We do not process more than these number of bytes during one
246  * interrupt. (Of course we receive complete packets, so this is not
247  * an exact value).
248  * Something between 2000..22000; first value gives best interrupt latency,
249  * the second enables the usage of the complete on-chip buffer. We use the
250  * high value as the initial value.
251  */
252 static unsigned maxrx_bytes = 22000;
253 
254 /* MII management prototypes */
255 static void mii_idle(unsigned int ioaddr);
256 static void mii_putbit(unsigned int ioaddr, unsigned data);
257 static int  mii_getbit(unsigned int ioaddr);
258 static void mii_wbits(unsigned int ioaddr, unsigned data, int len);
259 static unsigned mii_rd(unsigned int ioaddr, u_char phyaddr, u_char phyreg);
260 static void mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg,
261 		   unsigned data, int len);
262 
263 static int has_ce2_string(struct pcmcia_device * link);
264 static int xirc2ps_config(struct pcmcia_device * link);
265 static void xirc2ps_release(struct pcmcia_device * link);
266 static void xirc2ps_detach(struct pcmcia_device *p_dev);
267 
268 static irqreturn_t xirc2ps_interrupt(int irq, void *dev_id);
269 
270 typedef struct local_info_t {
271 	struct net_device	*dev;
272 	struct pcmcia_device	*p_dev;
273 
274     int card_type;
275     int probe_port;
276     int silicon; /* silicon revision. 0=old CE2, 1=Scipper, 4=Mohawk */
277     int mohawk;  /* a CE3 type card */
278     int dingo;	 /* a CEM56 type card */
279     int new_mii; /* has full 10baseT/100baseT MII */
280     int modem;	 /* is a multi function card (i.e with a modem) */
281     void __iomem *dingo_ccr; /* only used for CEM56 cards */
282     unsigned last_ptr_value; /* last packets transmitted value */
283     const char *manf_str;
284     struct work_struct tx_timeout_task;
285 } local_info_t;
286 
287 /****************
288  * Some more prototypes
289  */
290 static netdev_tx_t do_start_xmit(struct sk_buff *skb,
291 				       struct net_device *dev);
292 static void xirc_tx_timeout(struct net_device *dev);
293 static void xirc2ps_tx_timeout_task(struct work_struct *work);
294 static void set_addresses(struct net_device *dev);
295 static void set_multicast_list(struct net_device *dev);
296 static int set_card_type(struct pcmcia_device *link);
297 static int do_config(struct net_device *dev, struct ifmap *map);
298 static int do_open(struct net_device *dev);
299 static int do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
300 static const struct ethtool_ops netdev_ethtool_ops;
301 static void hardreset(struct net_device *dev);
302 static void do_reset(struct net_device *dev, int full);
303 static int init_mii(struct net_device *dev);
304 static void do_powerdown(struct net_device *dev);
305 static int do_stop(struct net_device *dev);
306 
307 /*=============== Helper functions =========================*/
308 #define SelectPage(pgnr)   outb((pgnr), ioaddr + XIRCREG_PR)
309 #define GetByte(reg)	   ((unsigned)inb(ioaddr + (reg)))
310 #define GetWord(reg)	   ((unsigned)inw(ioaddr + (reg)))
311 #define PutByte(reg,value) outb((value), ioaddr+(reg))
312 #define PutWord(reg,value) outw((value), ioaddr+(reg))
313 
314 /*====== Functions used for debugging =================================*/
315 #if 0 /* reading regs may change system status */
316 static void
317 PrintRegisters(struct net_device *dev)
318 {
319     unsigned int ioaddr = dev->base_addr;
320 
321     if (pc_debug > 1) {
322 	int i, page;
323 
324 	printk(KERN_DEBUG pr_fmt("Register  common: "));
325 	for (i = 0; i < 8; i++)
326 	    pr_cont(" %2.2x", GetByte(i));
327 	pr_cont("\n");
328 	for (page = 0; page <= 8; page++) {
329 	    printk(KERN_DEBUG pr_fmt("Register page %2x: "), page);
330 	    SelectPage(page);
331 	    for (i = 8; i < 16; i++)
332 		pr_cont(" %2.2x", GetByte(i));
333 	    pr_cont("\n");
334 	}
335 	for (page=0x40 ; page <= 0x5f; page++) {
336 		if (page == 0x43 || (page >= 0x46 && page <= 0x4f) ||
337 		    (page >= 0x51 && page <=0x5e))
338 			continue;
339 	    printk(KERN_DEBUG pr_fmt("Register page %2x: "), page);
340 	    SelectPage(page);
341 	    for (i = 8; i < 16; i++)
342 		pr_cont(" %2.2x", GetByte(i));
343 	    pr_cont("\n");
344 	}
345     }
346 }
347 #endif /* 0 */
348 
349 /*============== MII Management functions ===============*/
350 
351 /****************
352  * Turn around for read
353  */
354 static void
355 mii_idle(unsigned int ioaddr)
356 {
357     PutByte(XIRCREG2_GPR2, 0x04|0); /* drive MDCK low */
358     udelay(1);
359     PutByte(XIRCREG2_GPR2, 0x04|1); /* and drive MDCK high */
360     udelay(1);
361 }
362 
363 /****************
364  * Write a bit to MDI/O
365  */
366 static void
367 mii_putbit(unsigned int ioaddr, unsigned data)
368 {
369   #if 1
370     if (data) {
371 	PutByte(XIRCREG2_GPR2, 0x0c|2|0); /* set MDIO */
372 	udelay(1);
373 	PutByte(XIRCREG2_GPR2, 0x0c|2|1); /* and drive MDCK high */
374 	udelay(1);
375     } else {
376 	PutByte(XIRCREG2_GPR2, 0x0c|0|0); /* clear MDIO */
377 	udelay(1);
378 	PutByte(XIRCREG2_GPR2, 0x0c|0|1); /* and drive MDCK high */
379 	udelay(1);
380     }
381   #else
382     if (data) {
383 	PutWord(XIRCREG2_GPR2-1, 0x0e0e);
384 	udelay(1);
385 	PutWord(XIRCREG2_GPR2-1, 0x0f0f);
386 	udelay(1);
387     } else {
388 	PutWord(XIRCREG2_GPR2-1, 0x0c0c);
389 	udelay(1);
390 	PutWord(XIRCREG2_GPR2-1, 0x0d0d);
391 	udelay(1);
392     }
393   #endif
394 }
395 
396 /****************
397  * Get a bit from MDI/O
398  */
399 static int
400 mii_getbit(unsigned int ioaddr)
401 {
402     unsigned d;
403 
404     PutByte(XIRCREG2_GPR2, 4|0); /* drive MDCK low */
405     udelay(1);
406     d = GetByte(XIRCREG2_GPR2); /* read MDIO */
407     PutByte(XIRCREG2_GPR2, 4|1); /* drive MDCK high again */
408     udelay(1);
409     return d & 0x20; /* read MDIO */
410 }
411 
412 static void
413 mii_wbits(unsigned int ioaddr, unsigned data, int len)
414 {
415     unsigned m = 1 << (len-1);
416     for (; m; m >>= 1)
417 	mii_putbit(ioaddr, data & m);
418 }
419 
420 static unsigned
421 mii_rd(unsigned int ioaddr,	u_char phyaddr, u_char phyreg)
422 {
423     int i;
424     unsigned data=0, m;
425 
426     SelectPage(2);
427     for (i=0; i < 32; i++)		/* 32 bit preamble */
428 	mii_putbit(ioaddr, 1);
429     mii_wbits(ioaddr, 0x06, 4); 	/* Start and opcode for read */
430     mii_wbits(ioaddr, phyaddr, 5);	/* PHY address to be accessed */
431     mii_wbits(ioaddr, phyreg, 5);	/* PHY register to read */
432     mii_idle(ioaddr);			/* turn around */
433     mii_getbit(ioaddr);
434 
435     for (m = 1<<15; m; m >>= 1)
436 	if (mii_getbit(ioaddr))
437 	    data |= m;
438     mii_idle(ioaddr);
439     return data;
440 }
441 
442 static void
443 mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg, unsigned data,
444        int len)
445 {
446     int i;
447 
448     SelectPage(2);
449     for (i=0; i < 32; i++)		/* 32 bit preamble */
450 	mii_putbit(ioaddr, 1);
451     mii_wbits(ioaddr, 0x05, 4); 	/* Start and opcode for write */
452     mii_wbits(ioaddr, phyaddr, 5);	/* PHY address to be accessed */
453     mii_wbits(ioaddr, phyreg, 5);	/* PHY Register to write */
454     mii_putbit(ioaddr, 1);		/* turn around */
455     mii_putbit(ioaddr, 0);
456     mii_wbits(ioaddr, data, len);	/* And write the data */
457     mii_idle(ioaddr);
458 }
459 
460 /*============= Main bulk of functions	=========================*/
461 
462 static const struct net_device_ops netdev_ops = {
463 	.ndo_open		= do_open,
464 	.ndo_stop		= do_stop,
465 	.ndo_start_xmit		= do_start_xmit,
466 	.ndo_tx_timeout 	= xirc_tx_timeout,
467 	.ndo_set_config		= do_config,
468 	.ndo_do_ioctl		= do_ioctl,
469 	.ndo_set_rx_mode	= set_multicast_list,
470 	.ndo_change_mtu		= eth_change_mtu,
471 	.ndo_set_mac_address 	= eth_mac_addr,
472 	.ndo_validate_addr	= eth_validate_addr,
473 };
474 
475 static int
476 xirc2ps_probe(struct pcmcia_device *link)
477 {
478     struct net_device *dev;
479     local_info_t *local;
480 
481     dev_dbg(&link->dev, "attach()\n");
482 
483     /* Allocate the device structure */
484     dev = alloc_etherdev(sizeof(local_info_t));
485     if (!dev)
486 	    return -ENOMEM;
487     local = netdev_priv(dev);
488     local->dev = dev;
489     local->p_dev = link;
490     link->priv = dev;
491 
492     /* General socket configuration */
493     link->config_index = 1;
494 
495     /* Fill in card specific entries */
496     dev->netdev_ops = &netdev_ops;
497     dev->ethtool_ops = &netdev_ethtool_ops;
498     dev->watchdog_timeo = TX_TIMEOUT;
499     INIT_WORK(&local->tx_timeout_task, xirc2ps_tx_timeout_task);
500 
501     return xirc2ps_config(link);
502 } /* xirc2ps_attach */
503 
504 static void
505 xirc2ps_detach(struct pcmcia_device *link)
506 {
507     struct net_device *dev = link->priv;
508 
509     dev_dbg(&link->dev, "detach\n");
510 
511     unregister_netdev(dev);
512 
513     xirc2ps_release(link);
514 
515     free_netdev(dev);
516 } /* xirc2ps_detach */
517 
518 /****************
519  * Detect the type of the card. s is the buffer with the data of tuple 0x20
520  * Returns: 0 := not supported
521  *		       mediaid=11 and prodid=47
522  * Media-Id bits:
523  *  Ethernet	    0x01
524  *  Tokenring	    0x02
525  *  Arcnet	    0x04
526  *  Wireless	    0x08
527  *  Modem	    0x10
528  *  GSM only	    0x20
529  * Prod-Id bits:
530  *  Pocket	    0x10
531  *  External	    0x20
532  *  Creditcard	    0x40
533  *  Cardbus	    0x80
534  *
535  */
536 static int
537 set_card_type(struct pcmcia_device *link)
538 {
539     struct net_device *dev = link->priv;
540     local_info_t *local = netdev_priv(dev);
541     u8 *buf;
542     unsigned int cisrev, mediaid, prodid;
543     size_t len;
544 
545     len = pcmcia_get_tuple(link, CISTPL_MANFID, &buf);
546     if (len < 5) {
547 	    dev_err(&link->dev, "invalid CIS -- sorry\n");
548 	    return 0;
549     }
550 
551     cisrev = buf[2];
552     mediaid = buf[3];
553     prodid = buf[4];
554 
555     dev_dbg(&link->dev, "cisrev=%02x mediaid=%02x prodid=%02x\n",
556 	  cisrev, mediaid, prodid);
557 
558     local->mohawk = 0;
559     local->dingo = 0;
560     local->modem = 0;
561     local->card_type = XIR_UNKNOWN;
562     if (!(prodid & 0x40)) {
563 	pr_notice("Oops: Not a creditcard\n");
564 	return 0;
565     }
566     if (!(mediaid & 0x01)) {
567 	pr_notice("Not an Ethernet card\n");
568 	return 0;
569     }
570     if (mediaid & 0x10) {
571 	local->modem = 1;
572 	switch(prodid & 15) {
573 	  case 1: local->card_type = XIR_CEM   ; break;
574 	  case 2: local->card_type = XIR_CEM2  ; break;
575 	  case 3: local->card_type = XIR_CEM3  ; break;
576 	  case 4: local->card_type = XIR_CEM33 ; break;
577 	  case 5: local->card_type = XIR_CEM56M;
578 		  local->mohawk = 1;
579 		  break;
580 	  case 6:
581 	  case 7: /* 7 is the RealPort 10/56 */
582 		  local->card_type = XIR_CEM56 ;
583 		  local->mohawk = 1;
584 		  local->dingo = 1;
585 		  break;
586 	}
587     } else {
588 	switch(prodid & 15) {
589 	  case 1: local->card_type = has_ce2_string(link)? XIR_CE2 : XIR_CE ;
590 		  break;
591 	  case 2: local->card_type = XIR_CE2; break;
592 	  case 3: local->card_type = XIR_CE3;
593 		  local->mohawk = 1;
594 		  break;
595 	}
596     }
597     if (local->card_type == XIR_CE || local->card_type == XIR_CEM) {
598 	pr_notice("Sorry, this is an old CE card\n");
599 	return 0;
600     }
601     if (local->card_type == XIR_UNKNOWN)
602 	pr_notice("unknown card (mediaid=%02x prodid=%02x)\n", mediaid, prodid);
603 
604     return 1;
605 }
606 
607 /****************
608  * There are some CE2 cards out which claim to be a CE card.
609  * This function looks for a "CE2" in the 3rd version field.
610  * Returns: true if this is a CE2
611  */
612 static int
613 has_ce2_string(struct pcmcia_device * p_dev)
614 {
615 	if (p_dev->prod_id[2] && strstr(p_dev->prod_id[2], "CE2"))
616 		return 1;
617 	return 0;
618 }
619 
620 static int
621 xirc2ps_config_modem(struct pcmcia_device *p_dev, void *priv_data)
622 {
623 	unsigned int ioaddr;
624 
625 	if ((p_dev->resource[0]->start & 0xf) == 8)
626 		return -ENODEV;
627 
628 	p_dev->resource[0]->end = 16;
629 	p_dev->resource[1]->end = 8;
630 	p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
631 	p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_16;
632 	p_dev->resource[1]->flags &= ~IO_DATA_PATH_WIDTH;
633 	p_dev->resource[1]->flags |= IO_DATA_PATH_WIDTH_8;
634 	p_dev->io_lines = 10;
635 
636 	p_dev->resource[1]->start = p_dev->resource[0]->start;
637 	for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
638 		p_dev->resource[0]->start = ioaddr;
639 		if (!pcmcia_request_io(p_dev))
640 			return 0;
641 	}
642 	return -ENODEV;
643 }
644 
645 static int
646 xirc2ps_config_check(struct pcmcia_device *p_dev, void *priv_data)
647 {
648 	int *pass = priv_data;
649 	resource_size_t tmp = p_dev->resource[1]->start;
650 
651 	tmp += (*pass ? (p_dev->config_index & 0x20 ? -24 : 8)
652 		: (p_dev->config_index & 0x20 ?   8 : -24));
653 
654 	if ((p_dev->resource[0]->start & 0xf) == 8)
655 		return -ENODEV;
656 
657 	p_dev->resource[0]->end = 18;
658 	p_dev->resource[1]->end = 8;
659 	p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
660 	p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_16;
661 	p_dev->resource[1]->flags &= ~IO_DATA_PATH_WIDTH;
662 	p_dev->resource[1]->flags |= IO_DATA_PATH_WIDTH_8;
663 	p_dev->io_lines = 10;
664 
665 	p_dev->resource[1]->start = p_dev->resource[0]->start;
666 	p_dev->resource[0]->start = tmp;
667 	return pcmcia_request_io(p_dev);
668 }
669 
670 
671 static int pcmcia_get_mac_ce(struct pcmcia_device *p_dev,
672 			     tuple_t *tuple,
673 			     void *priv)
674 {
675 	struct net_device *dev = priv;
676 	int i;
677 
678 	if (tuple->TupleDataLen != 13)
679 		return -EINVAL;
680 	if ((tuple->TupleData[0] != 2) || (tuple->TupleData[1] != 1) ||
681 		(tuple->TupleData[2] != 6))
682 		return -EINVAL;
683 	/* another try	(James Lehmer's CE2 version 4.1)*/
684 	for (i = 2; i < 6; i++)
685 		dev->dev_addr[i] = tuple->TupleData[i+2];
686 	return 0;
687 };
688 
689 
690 static int
691 xirc2ps_config(struct pcmcia_device * link)
692 {
693     struct net_device *dev = link->priv;
694     local_info_t *local = netdev_priv(dev);
695     unsigned int ioaddr;
696     int err;
697     u8 *buf;
698     size_t len;
699 
700     local->dingo_ccr = NULL;
701 
702     dev_dbg(&link->dev, "config\n");
703 
704     /* Is this a valid	card */
705     if (link->has_manf_id == 0) {
706 	pr_notice("manfid not found in CIS\n");
707 	goto failure;
708     }
709 
710     switch (link->manf_id) {
711       case MANFID_XIRCOM:
712 	local->manf_str = "Xircom";
713 	break;
714       case MANFID_ACCTON:
715 	local->manf_str = "Accton";
716 	break;
717       case MANFID_COMPAQ:
718       case MANFID_COMPAQ2:
719 	local->manf_str = "Compaq";
720 	break;
721       case MANFID_INTEL:
722 	local->manf_str = "Intel";
723 	break;
724       case MANFID_TOSHIBA:
725 	local->manf_str = "Toshiba";
726 	break;
727       default:
728 	pr_notice("Unknown Card Manufacturer ID: 0x%04x\n",
729 		  (unsigned)link->manf_id);
730 	goto failure;
731     }
732     dev_dbg(&link->dev, "found %s card\n", local->manf_str);
733 
734     if (!set_card_type(link)) {
735 	pr_notice("this card is not supported\n");
736 	goto failure;
737     }
738 
739     /* get the ethernet address from the CIS */
740     err = pcmcia_get_mac_from_cis(link, dev);
741 
742     /* not found: try to get the node-id from tuple 0x89 */
743     if (err) {
744 	    len = pcmcia_get_tuple(link, 0x89, &buf);
745 	    /* data layout looks like tuple 0x22 */
746 	    if (buf && len == 8) {
747 		    if (*buf == CISTPL_FUNCE_LAN_NODE_ID) {
748 			    int i;
749 			    for (i = 2; i < 6; i++)
750 				    dev->dev_addr[i] = buf[i+2];
751 		    } else
752 			    err = -1;
753 	    }
754 	    kfree(buf);
755     }
756 
757     if (err)
758 	err = pcmcia_loop_tuple(link, CISTPL_FUNCE, pcmcia_get_mac_ce, dev);
759 
760     if (err) {
761 	pr_notice("node-id not found in CIS\n");
762 	goto failure;
763     }
764 
765     if (local->modem) {
766 	int pass;
767 	link->config_flags |= CONF_AUTO_SET_IO;
768 
769 	if (local->dingo) {
770 	    /* Take the Modem IO port from the CIS and scan for a free
771 	     * Ethernet port */
772 	    if (!pcmcia_loop_config(link, xirc2ps_config_modem, NULL))
773 		    goto port_found;
774 	} else {
775 	    /* We do 2 passes here: The first one uses the regular mapping and
776 	     * the second tries again, thereby considering that the 32 ports are
777 	     * mirrored every 32 bytes. Actually we use a mirrored port for
778 	     * the Mako if (on the first pass) the COR bit 5 is set.
779 	     */
780 	    for (pass=0; pass < 2; pass++)
781 		    if (!pcmcia_loop_config(link, xirc2ps_config_check,
782 						    &pass))
783 			    goto port_found;
784 	    /* if special option:
785 	     * try to configure as Ethernet only.
786 	     * .... */
787 	}
788 	pr_notice("no ports available\n");
789     } else {
790 	link->io_lines = 10;
791 	link->resource[0]->end = 16;
792 	link->resource[0]->flags |= IO_DATA_PATH_WIDTH_16;
793 	for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
794 	    link->resource[0]->start = ioaddr;
795 	    if (!(err = pcmcia_request_io(link)))
796 		goto port_found;
797 	}
798 	link->resource[0]->start = 0; /* let CS decide */
799 	if ((err = pcmcia_request_io(link)))
800 	    goto config_error;
801     }
802   port_found:
803     if (err)
804 	 goto config_error;
805 
806     /****************
807      * Now allocate an interrupt line.	Note that this does not
808      * actually assign a handler to the interrupt.
809      */
810     if ((err=pcmcia_request_irq(link, xirc2ps_interrupt)))
811 	goto config_error;
812 
813     link->config_flags |= CONF_ENABLE_IRQ;
814     if (do_sound)
815 	    link->config_flags |= CONF_ENABLE_SPKR;
816 
817     if ((err = pcmcia_enable_device(link)))
818 	goto config_error;
819 
820     if (local->dingo) {
821 	/* Reset the modem's BAR to the correct value
822 	 * This is necessary because in the RequestConfiguration call,
823 	 * the base address of the ethernet port (BasePort1) is written
824 	 * to the BAR registers of the modem.
825 	 */
826 	err = pcmcia_write_config_byte(link, CISREG_IOBASE_0, (u8)
827 				link->resource[1]->start & 0xff);
828 	if (err)
829 	    goto config_error;
830 
831 	err = pcmcia_write_config_byte(link, CISREG_IOBASE_1,
832 				(link->resource[1]->start >> 8) & 0xff);
833 	if (err)
834 	    goto config_error;
835 
836 	/* There is no config entry for the Ethernet part which
837 	 * is at 0x0800. So we allocate a window into the attribute
838 	 * memory and write direct to the CIS registers
839 	 */
840 	link->resource[2]->flags = WIN_DATA_WIDTH_8 | WIN_MEMORY_TYPE_AM |
841 					WIN_ENABLE;
842 	link->resource[2]->start = link->resource[2]->end = 0;
843 	if ((err = pcmcia_request_window(link, link->resource[2], 0)))
844 	    goto config_error;
845 
846 	local->dingo_ccr = ioremap(link->resource[2]->start, 0x1000) + 0x0800;
847 	if ((err = pcmcia_map_mem_page(link, link->resource[2], 0)))
848 	    goto config_error;
849 
850 	/* Setup the CCRs; there are no infos in the CIS about the Ethernet
851 	 * part.
852 	 */
853 	writeb(0x47, local->dingo_ccr + CISREG_COR);
854 	ioaddr = link->resource[0]->start;
855 	writeb(ioaddr & 0xff	  , local->dingo_ccr + CISREG_IOBASE_0);
856 	writeb((ioaddr >> 8)&0xff , local->dingo_ccr + CISREG_IOBASE_1);
857 
858       #if 0
859 	{
860 	    u_char tmp;
861 	    pr_info("ECOR:");
862 	    for (i=0; i < 7; i++) {
863 		tmp = readb(local->dingo_ccr + i*2);
864 		pr_cont(" %02x", tmp);
865 	    }
866 	    pr_cont("\n");
867 	    pr_info("DCOR:");
868 	    for (i=0; i < 4; i++) {
869 		tmp = readb(local->dingo_ccr + 0x20 + i*2);
870 		pr_cont(" %02x", tmp);
871 	    }
872 	    pr_cont("\n");
873 	    pr_info("SCOR:");
874 	    for (i=0; i < 10; i++) {
875 		tmp = readb(local->dingo_ccr + 0x40 + i*2);
876 		pr_cont(" %02x", tmp);
877 	    }
878 	    pr_cont("\n");
879 	}
880       #endif
881 
882 	writeb(0x01, local->dingo_ccr + 0x20);
883 	writeb(0x0c, local->dingo_ccr + 0x22);
884 	writeb(0x00, local->dingo_ccr + 0x24);
885 	writeb(0x00, local->dingo_ccr + 0x26);
886 	writeb(0x00, local->dingo_ccr + 0x28);
887     }
888 
889     /* The if_port symbol can be set when the module is loaded */
890     local->probe_port=0;
891     if (!if_port) {
892 	local->probe_port = dev->if_port = 1;
893     } else if ((if_port >= 1 && if_port <= 2) ||
894 	       (local->mohawk && if_port==4))
895 	dev->if_port = if_port;
896     else
897 	pr_notice("invalid if_port requested\n");
898 
899     /* we can now register the device with the net subsystem */
900     dev->irq = link->irq;
901     dev->base_addr = link->resource[0]->start;
902 
903     if (local->dingo)
904 	do_reset(dev, 1); /* a kludge to make the cem56 work */
905 
906     SET_NETDEV_DEV(dev, &link->dev);
907 
908     if ((err=register_netdev(dev))) {
909 	pr_notice("register_netdev() failed\n");
910 	goto config_error;
911     }
912 
913     /* give some infos about the hardware */
914     netdev_info(dev, "%s: port %#3lx, irq %d, hwaddr %pM\n",
915 		local->manf_str, (u_long)dev->base_addr, (int)dev->irq,
916 		dev->dev_addr);
917 
918     return 0;
919 
920   config_error:
921     xirc2ps_release(link);
922     return -ENODEV;
923 
924   failure:
925     return -ENODEV;
926 } /* xirc2ps_config */
927 
928 static void
929 xirc2ps_release(struct pcmcia_device *link)
930 {
931 	dev_dbg(&link->dev, "release\n");
932 
933 	if (link->resource[2]->end) {
934 		struct net_device *dev = link->priv;
935 		local_info_t *local = netdev_priv(dev);
936 		if (local->dingo)
937 			iounmap(local->dingo_ccr - 0x0800);
938 	}
939 	pcmcia_disable_device(link);
940 } /* xirc2ps_release */
941 
942 /*====================================================================*/
943 
944 
945 static int xirc2ps_suspend(struct pcmcia_device *link)
946 {
947 	struct net_device *dev = link->priv;
948 
949 	if (link->open) {
950 		netif_device_detach(dev);
951 		do_powerdown(dev);
952 	}
953 
954 	return 0;
955 }
956 
957 static int xirc2ps_resume(struct pcmcia_device *link)
958 {
959 	struct net_device *dev = link->priv;
960 
961 	if (link->open) {
962 		do_reset(dev,1);
963 		netif_device_attach(dev);
964 	}
965 
966 	return 0;
967 }
968 
969 
970 /*====================================================================*/
971 
972 /****************
973  * This is the Interrupt service route.
974  */
975 static irqreturn_t
976 xirc2ps_interrupt(int irq, void *dev_id)
977 {
978     struct net_device *dev = (struct net_device *)dev_id;
979     local_info_t *lp = netdev_priv(dev);
980     unsigned int ioaddr;
981     u_char saved_page;
982     unsigned bytes_rcvd;
983     unsigned int_status, eth_status, rx_status, tx_status;
984     unsigned rsr, pktlen;
985     ulong start_ticks = jiffies; /* fixme: jiffies rollover every 497 days
986 				  * is this something to worry about?
987 				  * -- on a laptop?
988 				  */
989 
990     if (!netif_device_present(dev))
991 	return IRQ_HANDLED;
992 
993     ioaddr = dev->base_addr;
994     if (lp->mohawk) { /* must disable the interrupt */
995 	PutByte(XIRCREG_CR, 0);
996     }
997 
998     pr_debug("%s: interrupt %d at %#x.\n", dev->name, irq, ioaddr);
999 
1000     saved_page = GetByte(XIRCREG_PR);
1001     /* Read the ISR to see whats the cause for the interrupt.
1002      * This also clears the interrupt flags on CE2 cards
1003      */
1004     int_status = GetByte(XIRCREG_ISR);
1005     bytes_rcvd = 0;
1006   loop_entry:
1007     if (int_status == 0xff) { /* card may be ejected */
1008 	pr_debug("%s: interrupt %d for dead card\n", dev->name, irq);
1009 	goto leave;
1010     }
1011     eth_status = GetByte(XIRCREG_ESR);
1012 
1013     SelectPage(0x40);
1014     rx_status  = GetByte(XIRCREG40_RXST0);
1015     PutByte(XIRCREG40_RXST0, (~rx_status & 0xff));
1016     tx_status = GetByte(XIRCREG40_TXST0);
1017     tx_status |= GetByte(XIRCREG40_TXST1) << 8;
1018     PutByte(XIRCREG40_TXST0, 0);
1019     PutByte(XIRCREG40_TXST1, 0);
1020 
1021     pr_debug("%s: ISR=%#2.2x ESR=%#2.2x RSR=%#2.2x TSR=%#4.4x\n",
1022 	  dev->name, int_status, eth_status, rx_status, tx_status);
1023 
1024     /***** receive section ******/
1025     SelectPage(0);
1026     while (eth_status & FullPktRcvd) {
1027 	rsr = GetByte(XIRCREG0_RSR);
1028 	if (bytes_rcvd > maxrx_bytes && (rsr & PktRxOk)) {
1029 	    /* too many bytes received during this int, drop the rest of the
1030 	     * packets */
1031 	    dev->stats.rx_dropped++;
1032 	    pr_debug("%s: RX drop, too much done\n", dev->name);
1033 	} else if (rsr & PktRxOk) {
1034 	    struct sk_buff *skb;
1035 
1036 	    pktlen = GetWord(XIRCREG0_RBC);
1037 	    bytes_rcvd += pktlen;
1038 
1039 	    pr_debug("rsr=%#02x packet_length=%u\n", rsr, pktlen);
1040 
1041 	    /* 1 extra so we can use insw */
1042 	    skb = netdev_alloc_skb(dev, pktlen + 3);
1043 	    if (!skb) {
1044 		pr_notice("low memory, packet dropped (size=%u)\n", pktlen);
1045 		dev->stats.rx_dropped++;
1046 	    } else { /* okay get the packet */
1047 		skb_reserve(skb, 2);
1048 		if (lp->silicon == 0 ) { /* work around a hardware bug */
1049 		    unsigned rhsa; /* receive start address */
1050 
1051 		    SelectPage(5);
1052 		    rhsa = GetWord(XIRCREG5_RHSA0);
1053 		    SelectPage(0);
1054 		    rhsa += 3; /* skip control infos */
1055 		    if (rhsa >= 0x8000)
1056 			rhsa = 0;
1057 		    if (rhsa + pktlen > 0x8000) {
1058 			unsigned i;
1059 			u_char *buf = skb_put(skb, pktlen);
1060 			for (i=0; i < pktlen ; i++, rhsa++) {
1061 			    buf[i] = GetByte(XIRCREG_EDP);
1062 			    if (rhsa == 0x8000) {
1063 				rhsa = 0;
1064 				i--;
1065 			    }
1066 			}
1067 		    } else {
1068 			insw(ioaddr+XIRCREG_EDP,
1069 				skb_put(skb, pktlen), (pktlen+1)>>1);
1070 		    }
1071 		}
1072 	      #if 0
1073 		else if (lp->mohawk) {
1074 		    /* To use this 32 bit access we should use
1075 		     * a manual optimized loop
1076 		     * Also the words are swapped, we can get more
1077 		     * performance by using 32 bit access and swapping
1078 		     * the words in a register. Will need this for cardbus
1079 		     *
1080 		     * Note: don't forget to change the ALLOC_SKB to .. +3
1081 		     */
1082 		    unsigned i;
1083 		    u_long *p = skb_put(skb, pktlen);
1084 		    register u_long a;
1085 		    unsigned int edpreg = ioaddr+XIRCREG_EDP-2;
1086 		    for (i=0; i < len ; i += 4, p++) {
1087 			a = inl(edpreg);
1088 			__asm__("rorl $16,%0\n\t"
1089 				:"=q" (a)
1090 				: "0" (a));
1091 			*p = a;
1092 		    }
1093 		}
1094 	      #endif
1095 		else {
1096 		    insw(ioaddr+XIRCREG_EDP, skb_put(skb, pktlen),
1097 			    (pktlen+1)>>1);
1098 		}
1099 		skb->protocol = eth_type_trans(skb, dev);
1100 		netif_rx(skb);
1101 		dev->stats.rx_packets++;
1102 		dev->stats.rx_bytes += pktlen;
1103 		if (!(rsr & PhyPkt))
1104 		    dev->stats.multicast++;
1105 	    }
1106 	} else { /* bad packet */
1107 	    pr_debug("rsr=%#02x\n", rsr);
1108 	}
1109 	if (rsr & PktTooLong) {
1110 	    dev->stats.rx_frame_errors++;
1111 	    pr_debug("%s: Packet too long\n", dev->name);
1112 	}
1113 	if (rsr & CRCErr) {
1114 	    dev->stats.rx_crc_errors++;
1115 	    pr_debug("%s: CRC error\n", dev->name);
1116 	}
1117 	if (rsr & AlignErr) {
1118 	    dev->stats.rx_fifo_errors++; /* okay ? */
1119 	    pr_debug("%s: Alignment error\n", dev->name);
1120 	}
1121 
1122 	/* clear the received/dropped/error packet */
1123 	PutWord(XIRCREG0_DO, 0x8000); /* issue cmd: skip_rx_packet */
1124 
1125 	/* get the new ethernet status */
1126 	eth_status = GetByte(XIRCREG_ESR);
1127     }
1128     if (rx_status & 0x10) { /* Receive overrun */
1129 	dev->stats.rx_over_errors++;
1130 	PutByte(XIRCREG_CR, ClearRxOvrun);
1131 	pr_debug("receive overrun cleared\n");
1132     }
1133 
1134     /***** transmit section ******/
1135     if (int_status & PktTxed) {
1136 	unsigned n, nn;
1137 
1138 	n = lp->last_ptr_value;
1139 	nn = GetByte(XIRCREG0_PTR);
1140 	lp->last_ptr_value = nn;
1141 	if (nn < n) /* rollover */
1142 	    dev->stats.tx_packets += 256 - n;
1143 	else if (n == nn) { /* happens sometimes - don't know why */
1144 	    pr_debug("PTR not changed?\n");
1145 	} else
1146 	    dev->stats.tx_packets += lp->last_ptr_value - n;
1147 	netif_wake_queue(dev);
1148     }
1149     if (tx_status & 0x0002) {	/* Execessive collissions */
1150 	pr_debug("tx restarted due to execssive collissions\n");
1151 	PutByte(XIRCREG_CR, RestartTx);  /* restart transmitter process */
1152     }
1153     if (tx_status & 0x0040)
1154 	dev->stats.tx_aborted_errors++;
1155 
1156     /* recalculate our work chunk so that we limit the duration of this
1157      * ISR to about 1/10 of a second.
1158      * Calculate only if we received a reasonable amount of bytes.
1159      */
1160     if (bytes_rcvd > 1000) {
1161 	u_long duration = jiffies - start_ticks;
1162 
1163 	if (duration >= HZ/10) { /* if more than about 1/10 second */
1164 	    maxrx_bytes = (bytes_rcvd * (HZ/10)) / duration;
1165 	    if (maxrx_bytes < 2000)
1166 		maxrx_bytes = 2000;
1167 	    else if (maxrx_bytes > 22000)
1168 		maxrx_bytes = 22000;
1169 	    pr_debug("set maxrx=%u (rcvd=%u ticks=%lu)\n",
1170 		  maxrx_bytes, bytes_rcvd, duration);
1171 	} else if (!duration && maxrx_bytes < 22000) {
1172 	    /* now much faster */
1173 	    maxrx_bytes += 2000;
1174 	    if (maxrx_bytes > 22000)
1175 		maxrx_bytes = 22000;
1176 	    pr_debug("set maxrx=%u\n", maxrx_bytes);
1177 	}
1178     }
1179 
1180   leave:
1181     if (lockup_hack) {
1182 	if (int_status != 0xff && (int_status = GetByte(XIRCREG_ISR)) != 0)
1183 	    goto loop_entry;
1184     }
1185     SelectPage(saved_page);
1186     PutByte(XIRCREG_CR, EnableIntr);  /* re-enable interrupts */
1187     /* Instead of dropping packets during a receive, we could
1188      * force an interrupt with this command:
1189      *	  PutByte(XIRCREG_CR, EnableIntr|ForceIntr);
1190      */
1191     return IRQ_HANDLED;
1192 } /* xirc2ps_interrupt */
1193 
1194 /*====================================================================*/
1195 
1196 static void
1197 xirc2ps_tx_timeout_task(struct work_struct *work)
1198 {
1199 	local_info_t *local =
1200 		container_of(work, local_info_t, tx_timeout_task);
1201 	struct net_device *dev = local->dev;
1202     /* reset the card */
1203     do_reset(dev,1);
1204     dev->trans_start = jiffies; /* prevent tx timeout */
1205     netif_wake_queue(dev);
1206 }
1207 
1208 static void
1209 xirc_tx_timeout(struct net_device *dev)
1210 {
1211     local_info_t *lp = netdev_priv(dev);
1212     dev->stats.tx_errors++;
1213     netdev_notice(dev, "transmit timed out\n");
1214     schedule_work(&lp->tx_timeout_task);
1215 }
1216 
1217 static netdev_tx_t
1218 do_start_xmit(struct sk_buff *skb, struct net_device *dev)
1219 {
1220     local_info_t *lp = netdev_priv(dev);
1221     unsigned int ioaddr = dev->base_addr;
1222     int okay;
1223     unsigned freespace;
1224     unsigned pktlen = skb->len;
1225 
1226     pr_debug("do_start_xmit(skb=%p, dev=%p) len=%u\n",
1227 	  skb, dev, pktlen);
1228 
1229 
1230     /* adjust the packet length to min. required
1231      * and hope that the buffer is large enough
1232      * to provide some random data.
1233      * fixme: For Mohawk we can change this by sending
1234      * a larger packetlen than we actually have; the chip will
1235      * pad this in his buffer with random bytes
1236      */
1237     if (pktlen < ETH_ZLEN)
1238     {
1239         if (skb_padto(skb, ETH_ZLEN))
1240         	return NETDEV_TX_OK;
1241 	pktlen = ETH_ZLEN;
1242     }
1243 
1244     netif_stop_queue(dev);
1245     SelectPage(0);
1246     PutWord(XIRCREG0_TRS, (u_short)pktlen+2);
1247     freespace = GetWord(XIRCREG0_TSO);
1248     okay = freespace & 0x8000;
1249     freespace &= 0x7fff;
1250     /* TRS doesn't work - (indeed it is eliminated with sil-rev 1) */
1251     okay = pktlen +2 < freespace;
1252     pr_debug("%s: avail. tx space=%u%s\n",
1253 	  dev->name, freespace, okay ? " (okay)":" (not enough)");
1254     if (!okay) { /* not enough space */
1255 	return NETDEV_TX_BUSY;  /* upper layer may decide to requeue this packet */
1256     }
1257     /* send the packet */
1258     PutWord(XIRCREG_EDP, (u_short)pktlen);
1259     outsw(ioaddr+XIRCREG_EDP, skb->data, pktlen>>1);
1260     if (pktlen & 1)
1261 	PutByte(XIRCREG_EDP, skb->data[pktlen-1]);
1262 
1263     if (lp->mohawk)
1264 	PutByte(XIRCREG_CR, TransmitPacket|EnableIntr);
1265 
1266     dev_kfree_skb (skb);
1267     dev->stats.tx_bytes += pktlen;
1268     netif_start_queue(dev);
1269     return NETDEV_TX_OK;
1270 }
1271 
1272 struct set_address_info {
1273 	int reg_nr;
1274 	int page_nr;
1275 	int mohawk;
1276 	unsigned int ioaddr;
1277 };
1278 
1279 static void set_address(struct set_address_info *sa_info, char *addr)
1280 {
1281 	unsigned int ioaddr = sa_info->ioaddr;
1282 	int i;
1283 
1284 	for (i = 0; i < 6; i++) {
1285 		if (sa_info->reg_nr > 15) {
1286 			sa_info->reg_nr = 8;
1287 			sa_info->page_nr++;
1288 			SelectPage(sa_info->page_nr);
1289 		}
1290 		if (sa_info->mohawk)
1291 			PutByte(sa_info->reg_nr++, addr[5 - i]);
1292 		else
1293 			PutByte(sa_info->reg_nr++, addr[i]);
1294 	}
1295 }
1296 
1297 /****************
1298  * Set all addresses: This first one is the individual address,
1299  * the next 9 addresses are taken from the multicast list and
1300  * the rest is filled with the individual address.
1301  */
1302 static void set_addresses(struct net_device *dev)
1303 {
1304 	unsigned int ioaddr = dev->base_addr;
1305 	local_info_t *lp = netdev_priv(dev);
1306 	struct netdev_hw_addr *ha;
1307 	struct set_address_info sa_info;
1308 	int i;
1309 
1310 	/*
1311 	 * Setup the info structure so that by first set_address call it will do
1312 	 * SelectPage with the right page number. Hence these ones here.
1313 	 */
1314 	sa_info.reg_nr = 15 + 1;
1315 	sa_info.page_nr = 0x50 - 1;
1316 	sa_info.mohawk = lp->mohawk;
1317 	sa_info.ioaddr = ioaddr;
1318 
1319 	set_address(&sa_info, dev->dev_addr);
1320 	i = 0;
1321 	netdev_for_each_mc_addr(ha, dev) {
1322 		if (i++ == 9)
1323 			break;
1324 		set_address(&sa_info, ha->addr);
1325 	}
1326 	while (i++ < 9)
1327 		set_address(&sa_info, dev->dev_addr);
1328 	SelectPage(0);
1329 }
1330 
1331 /****************
1332  * Set or clear the multicast filter for this adaptor.
1333  * We can filter up to 9 addresses, if more are requested we set
1334  * multicast promiscuous mode.
1335  */
1336 
1337 static void
1338 set_multicast_list(struct net_device *dev)
1339 {
1340     unsigned int ioaddr = dev->base_addr;
1341     unsigned value;
1342 
1343     SelectPage(0x42);
1344     value = GetByte(XIRCREG42_SWC1) & 0xC0;
1345 
1346     if (dev->flags & IFF_PROMISC) { /* snoop */
1347 	PutByte(XIRCREG42_SWC1, value | 0x06); /* set MPE and PME */
1348     } else if (netdev_mc_count(dev) > 9 || (dev->flags & IFF_ALLMULTI)) {
1349 	PutByte(XIRCREG42_SWC1, value | 0x02); /* set MPE */
1350     } else if (!netdev_mc_empty(dev)) {
1351 	/* the chip can filter 9 addresses perfectly */
1352 	PutByte(XIRCREG42_SWC1, value | 0x01);
1353 	SelectPage(0x40);
1354 	PutByte(XIRCREG40_CMD0, Offline);
1355 	set_addresses(dev);
1356 	SelectPage(0x40);
1357 	PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1358     } else { /* standard usage */
1359 	PutByte(XIRCREG42_SWC1, value | 0x00);
1360     }
1361     SelectPage(0);
1362 }
1363 
1364 static int
1365 do_config(struct net_device *dev, struct ifmap *map)
1366 {
1367     local_info_t *local = netdev_priv(dev);
1368 
1369     pr_debug("do_config(%p)\n", dev);
1370     if (map->port != 255 && map->port != dev->if_port) {
1371 	if (map->port > 4)
1372 	    return -EINVAL;
1373 	if (!map->port) {
1374 	    local->probe_port = 1;
1375 	    dev->if_port = 1;
1376 	} else {
1377 	    local->probe_port = 0;
1378 	    dev->if_port = map->port;
1379 	}
1380 	netdev_info(dev, "switching to %s port\n", if_names[dev->if_port]);
1381 	do_reset(dev,1);  /* not the fine way :-) */
1382     }
1383     return 0;
1384 }
1385 
1386 /****************
1387  * Open the driver
1388  */
1389 static int
1390 do_open(struct net_device *dev)
1391 {
1392     local_info_t *lp = netdev_priv(dev);
1393     struct pcmcia_device *link = lp->p_dev;
1394 
1395     dev_dbg(&link->dev, "do_open(%p)\n", dev);
1396 
1397     /* Check that the PCMCIA card is still here. */
1398     /* Physical device present signature. */
1399     if (!pcmcia_dev_present(link))
1400 	return -ENODEV;
1401 
1402     /* okay */
1403     link->open++;
1404 
1405     netif_start_queue(dev);
1406     do_reset(dev,1);
1407 
1408     return 0;
1409 }
1410 
1411 static void netdev_get_drvinfo(struct net_device *dev,
1412 			       struct ethtool_drvinfo *info)
1413 {
1414 	strlcpy(info->driver, "xirc2ps_cs", sizeof(info->driver));
1415 	snprintf(info->bus_info, sizeof(info->bus_info), "PCMCIA 0x%lx",
1416 		 dev->base_addr);
1417 }
1418 
1419 static const struct ethtool_ops netdev_ethtool_ops = {
1420 	.get_drvinfo		= netdev_get_drvinfo,
1421 };
1422 
1423 static int
1424 do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1425 {
1426     local_info_t *local = netdev_priv(dev);
1427     unsigned int ioaddr = dev->base_addr;
1428     struct mii_ioctl_data *data = if_mii(rq);
1429 
1430     pr_debug("%s: ioctl(%-.6s, %#04x) %04x %04x %04x %04x\n",
1431 	  dev->name, rq->ifr_ifrn.ifrn_name, cmd,
1432 	  data->phy_id, data->reg_num, data->val_in, data->val_out);
1433 
1434     if (!local->mohawk)
1435 	return -EOPNOTSUPP;
1436 
1437     switch(cmd) {
1438       case SIOCGMIIPHY:		/* Get the address of the PHY in use. */
1439 	data->phy_id = 0;	/* we have only this address */
1440 	/* fall through */
1441       case SIOCGMIIREG:		/* Read the specified MII register. */
1442 	data->val_out = mii_rd(ioaddr, data->phy_id & 0x1f,
1443 			       data->reg_num & 0x1f);
1444 	break;
1445       case SIOCSMIIREG:		/* Write the specified MII register */
1446 	mii_wr(ioaddr, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in,
1447 	       16);
1448 	break;
1449       default:
1450 	return -EOPNOTSUPP;
1451     }
1452     return 0;
1453 }
1454 
1455 static void
1456 hardreset(struct net_device *dev)
1457 {
1458     local_info_t *local = netdev_priv(dev);
1459     unsigned int ioaddr = dev->base_addr;
1460 
1461     SelectPage(4);
1462     udelay(1);
1463     PutByte(XIRCREG4_GPR1, 0);	     /* clear bit 0: power down */
1464     msleep(40);				     /* wait 40 msec */
1465     if (local->mohawk)
1466 	PutByte(XIRCREG4_GPR1, 1);	 /* set bit 0: power up */
1467     else
1468 	PutByte(XIRCREG4_GPR1, 1 | 4);	 /* set bit 0: power up, bit 2: AIC */
1469     msleep(20);			     /* wait 20 msec */
1470 }
1471 
1472 static void
1473 do_reset(struct net_device *dev, int full)
1474 {
1475     local_info_t *local = netdev_priv(dev);
1476     unsigned int ioaddr = dev->base_addr;
1477     unsigned value;
1478 
1479     pr_debug("%s: do_reset(%p,%d)\n", dev? dev->name:"eth?", dev, full);
1480 
1481     hardreset(dev);
1482     PutByte(XIRCREG_CR, SoftReset); /* set */
1483     msleep(20);			     /* wait 20 msec */
1484     PutByte(XIRCREG_CR, 0);	     /* clear */
1485     msleep(40);			     /* wait 40 msec */
1486     if (local->mohawk) {
1487 	SelectPage(4);
1488 	/* set pin GP1 and GP2 to output  (0x0c)
1489 	 * set GP1 to low to power up the ML6692 (0x00)
1490 	 * set GP2 to high to power up the 10Mhz chip  (0x02)
1491 	 */
1492 	PutByte(XIRCREG4_GPR0, 0x0e);
1493     }
1494 
1495     /* give the circuits some time to power up */
1496     msleep(500);			/* about 500ms */
1497 
1498     local->last_ptr_value = 0;
1499     local->silicon = local->mohawk ? (GetByte(XIRCREG4_BOV) & 0x70) >> 4
1500 				   : (GetByte(XIRCREG4_BOV) & 0x30) >> 4;
1501 
1502     if (local->probe_port) {
1503 	if (!local->mohawk) {
1504 	    SelectPage(4);
1505 	    PutByte(XIRCREG4_GPR0, 4);
1506 	    local->probe_port = 0;
1507 	}
1508     } else if (dev->if_port == 2) { /* enable 10Base2 */
1509 	SelectPage(0x42);
1510 	PutByte(XIRCREG42_SWC1, 0xC0);
1511     } else { /* enable 10BaseT */
1512 	SelectPage(0x42);
1513 	PutByte(XIRCREG42_SWC1, 0x80);
1514     }
1515     msleep(40);			     /* wait 40 msec to let it complete */
1516 
1517   #if 0
1518     {
1519 	SelectPage(0);
1520 	value = GetByte(XIRCREG_ESR);	 /* read the ESR */
1521 	pr_debug("%s: ESR is: %#02x\n", dev->name, value);
1522     }
1523   #endif
1524 
1525     /* setup the ECR */
1526     SelectPage(1);
1527     PutByte(XIRCREG1_IMR0, 0xff); /* allow all ints */
1528     PutByte(XIRCREG1_IMR1, 1	); /* and Set TxUnderrunDetect */
1529     value = GetByte(XIRCREG1_ECR);
1530   #if 0
1531     if (local->mohawk)
1532 	value |= DisableLinkPulse;
1533     PutByte(XIRCREG1_ECR, value);
1534   #endif
1535     pr_debug("%s: ECR is: %#02x\n", dev->name, value);
1536 
1537     SelectPage(0x42);
1538     PutByte(XIRCREG42_SWC0, 0x20); /* disable source insertion */
1539 
1540     if (local->silicon != 1) {
1541 	/* set the local memory dividing line.
1542 	 * The comments in the sample code say that this is only
1543 	 * settable with the scipper version 2 which is revision 0.
1544 	 * Always for CE3 cards
1545 	 */
1546 	SelectPage(2);
1547 	PutWord(XIRCREG2_RBS, 0x2000);
1548     }
1549 
1550     if (full)
1551 	set_addresses(dev);
1552 
1553     /* Hardware workaround:
1554      * The receive byte pointer after reset is off by 1 so we need
1555      * to move the offset pointer back to 0.
1556      */
1557     SelectPage(0);
1558     PutWord(XIRCREG0_DO, 0x2000); /* change offset command, off=0 */
1559 
1560     /* setup MAC IMRs and clear status registers */
1561     SelectPage(0x40);		     /* Bit 7 ... bit 0 */
1562     PutByte(XIRCREG40_RMASK0, 0xff); /* ROK, RAB, rsv, RO, CRC, AE, PTL, MP */
1563     PutByte(XIRCREG40_TMASK0, 0xff); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1564     PutByte(XIRCREG40_TMASK1, 0xb0); /* rsv, rsv, PTD, EXT, rsv,rsv,rsv, rsv*/
1565     PutByte(XIRCREG40_RXST0,  0x00); /* ROK, RAB, REN, RO, CRC, AE, PTL, MP */
1566     PutByte(XIRCREG40_TXST0,  0x00); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1567     PutByte(XIRCREG40_TXST1,  0x00); /* TEN, rsv, PTD, EXT, retry_counter:4  */
1568 
1569     if (full && local->mohawk && init_mii(dev)) {
1570 	if (dev->if_port == 4 || local->dingo || local->new_mii) {
1571 	    netdev_info(dev, "MII selected\n");
1572 	    SelectPage(2);
1573 	    PutByte(XIRCREG2_MSR, GetByte(XIRCREG2_MSR) | 0x08);
1574 	    msleep(20);
1575 	} else {
1576 	    netdev_info(dev, "MII detected; using 10mbs\n");
1577 	    SelectPage(0x42);
1578 	    if (dev->if_port == 2) /* enable 10Base2 */
1579 		PutByte(XIRCREG42_SWC1, 0xC0);
1580 	    else  /* enable 10BaseT */
1581 		PutByte(XIRCREG42_SWC1, 0x80);
1582 	    msleep(40);			/* wait 40 msec to let it complete */
1583 	}
1584 	if (full_duplex)
1585 	    PutByte(XIRCREG1_ECR, GetByte(XIRCREG1_ECR | FullDuplex));
1586     } else {  /* No MII */
1587 	SelectPage(0);
1588 	value = GetByte(XIRCREG_ESR);	 /* read the ESR */
1589 	dev->if_port = (value & MediaSelect) ? 1 : 2;
1590     }
1591 
1592     /* configure the LEDs */
1593     SelectPage(2);
1594     if (dev->if_port == 1 || dev->if_port == 4) /* TP: Link and Activity */
1595 	PutByte(XIRCREG2_LED, 0x3b);
1596     else			      /* Coax: Not-Collision and Activity */
1597 	PutByte(XIRCREG2_LED, 0x3a);
1598 
1599     if (local->dingo)
1600 	PutByte(0x0b, 0x04); /* 100 Mbit LED */
1601 
1602     /* enable receiver and put the mac online */
1603     if (full) {
1604 	set_multicast_list(dev);
1605 	SelectPage(0x40);
1606 	PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1607     }
1608 
1609     /* setup Ethernet IMR and enable interrupts */
1610     SelectPage(1);
1611     PutByte(XIRCREG1_IMR0, 0xff);
1612     udelay(1);
1613     SelectPage(0);
1614     PutByte(XIRCREG_CR, EnableIntr);
1615     if (local->modem && !local->dingo) { /* do some magic */
1616 	if (!(GetByte(0x10) & 0x01))
1617 	    PutByte(0x10, 0x11); /* unmask master-int bit */
1618     }
1619 
1620     if (full)
1621 	netdev_info(dev, "media %s, silicon revision %d\n",
1622 		    if_names[dev->if_port], local->silicon);
1623     /* We should switch back to page 0 to avoid a bug in revision 0
1624      * where regs with offset below 8 can't be read after an access
1625      * to the MAC registers */
1626     SelectPage(0);
1627 }
1628 
1629 /****************
1630  * Initialize the Media-Independent-Interface
1631  * Returns: True if we have a good MII
1632  */
1633 static int
1634 init_mii(struct net_device *dev)
1635 {
1636     local_info_t *local = netdev_priv(dev);
1637     unsigned int ioaddr = dev->base_addr;
1638     unsigned control, status, linkpartner;
1639     int i;
1640 
1641     if (if_port == 4 || if_port == 1) { /* force 100BaseT or 10BaseT */
1642 	dev->if_port = if_port;
1643 	local->probe_port = 0;
1644 	return 1;
1645     }
1646 
1647     status = mii_rd(ioaddr,  0, 1);
1648     if ((status & 0xff00) != 0x7800)
1649 	return 0; /* No MII */
1650 
1651     local->new_mii = (mii_rd(ioaddr, 0, 2) != 0xffff);
1652 
1653     if (local->probe_port)
1654 	control = 0x1000; /* auto neg */
1655     else if (dev->if_port == 4)
1656 	control = 0x2000; /* no auto neg, 100mbs mode */
1657     else
1658 	control = 0x0000; /* no auto neg, 10mbs mode */
1659     mii_wr(ioaddr,  0, 0, control, 16);
1660     udelay(100);
1661     control = mii_rd(ioaddr, 0, 0);
1662 
1663     if (control & 0x0400) {
1664 	netdev_notice(dev, "can't take PHY out of isolation mode\n");
1665 	local->probe_port = 0;
1666 	return 0;
1667     }
1668 
1669     if (local->probe_port) {
1670 	/* according to the DP83840A specs the auto negotiation process
1671 	 * may take up to 3.5 sec, so we use this also for our ML6692
1672 	 * Fixme: Better to use a timer here!
1673 	 */
1674 	for (i=0; i < 35; i++) {
1675 	    msleep(100);	 /* wait 100 msec */
1676 	    status = mii_rd(ioaddr,  0, 1);
1677 	    if ((status & 0x0020) && (status & 0x0004))
1678 		break;
1679 	}
1680 
1681 	if (!(status & 0x0020)) {
1682 	    netdev_info(dev, "autonegotiation failed; using 10mbs\n");
1683 	    if (!local->new_mii) {
1684 		control = 0x0000;
1685 		mii_wr(ioaddr,  0, 0, control, 16);
1686 		udelay(100);
1687 		SelectPage(0);
1688 		dev->if_port = (GetByte(XIRCREG_ESR) & MediaSelect) ? 1 : 2;
1689 	    }
1690 	} else {
1691 	    linkpartner = mii_rd(ioaddr, 0, 5);
1692 	    netdev_info(dev, "MII link partner: %04x\n", linkpartner);
1693 	    if (linkpartner & 0x0080) {
1694 		dev->if_port = 4;
1695 	    } else
1696 		dev->if_port = 1;
1697 	}
1698     }
1699 
1700     return 1;
1701 }
1702 
1703 static void
1704 do_powerdown(struct net_device *dev)
1705 {
1706 
1707     unsigned int ioaddr = dev->base_addr;
1708 
1709     pr_debug("do_powerdown(%p)\n", dev);
1710 
1711     SelectPage(4);
1712     PutByte(XIRCREG4_GPR1, 0);	     /* clear bit 0: power down */
1713     SelectPage(0);
1714 }
1715 
1716 static int
1717 do_stop(struct net_device *dev)
1718 {
1719     unsigned int ioaddr = dev->base_addr;
1720     local_info_t *lp = netdev_priv(dev);
1721     struct pcmcia_device *link = lp->p_dev;
1722 
1723     dev_dbg(&link->dev, "do_stop(%p)\n", dev);
1724 
1725     if (!link)
1726 	return -ENODEV;
1727 
1728     netif_stop_queue(dev);
1729 
1730     SelectPage(0);
1731     PutByte(XIRCREG_CR, 0);  /* disable interrupts */
1732     SelectPage(0x01);
1733     PutByte(XIRCREG1_IMR0, 0x00); /* forbid all ints */
1734     SelectPage(4);
1735     PutByte(XIRCREG4_GPR1, 0);	/* clear bit 0: power down */
1736     SelectPage(0);
1737 
1738     link->open--;
1739     return 0;
1740 }
1741 
1742 static const struct pcmcia_device_id xirc2ps_ids[] = {
1743 	PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0089, 0x110a),
1744 	PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0138, 0x110a),
1745 	PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM28", 0x2e3ee845, 0x0ea978ea),
1746 	PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM33", 0x2e3ee845, 0x80609023),
1747 	PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM56", 0x2e3ee845, 0xa650c32a),
1748 	PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "REM10", 0x2e3ee845, 0x76df1d29),
1749 	PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "XEM5600", 0x2e3ee845, 0xf1403719),
1750 	PCMCIA_PFC_DEVICE_PROD_ID12(0, "Xircom", "CreditCard Ethernet+Modem II", 0x2e3ee845, 0xeca401bf),
1751 	PCMCIA_DEVICE_MANF_CARD(0x01bf, 0x010a),
1752 	PCMCIA_DEVICE_PROD_ID13("Toshiba Information Systems", "TPCENET", 0x1b3b94fe, 0xf381c1a2),
1753 	PCMCIA_DEVICE_PROD_ID13("Xircom", "CE3-10/100", 0x2e3ee845, 0x0ec0ac37),
1754 	PCMCIA_DEVICE_PROD_ID13("Xircom", "PS-CE2-10", 0x2e3ee845, 0x947d9073),
1755 	PCMCIA_DEVICE_PROD_ID13("Xircom", "R2E-100BTX", 0x2e3ee845, 0x2464a6e3),
1756 	PCMCIA_DEVICE_PROD_ID13("Xircom", "RE-10", 0x2e3ee845, 0x3e08d609),
1757 	PCMCIA_DEVICE_PROD_ID13("Xircom", "XE2000", 0x2e3ee845, 0xf7188e46),
1758 	PCMCIA_DEVICE_PROD_ID12("Compaq", "Ethernet LAN Card", 0x54f7c49c, 0x9fd2f0a2),
1759 	PCMCIA_DEVICE_PROD_ID12("Compaq", "Netelligent 10/100 PC Card", 0x54f7c49c, 0xefe96769),
1760 	PCMCIA_DEVICE_PROD_ID12("Intel", "EtherExpress(TM) PRO/100 PC Card Mobile Adapter16", 0x816cc815, 0x174397db),
1761 	PCMCIA_DEVICE_PROD_ID12("Toshiba", "10/100 Ethernet PC Card", 0x44a09d9c, 0xb44deecf),
1762 	/* also matches CFE-10 cards! */
1763 	/* PCMCIA_DEVICE_MANF_CARD(0x0105, 0x010a), */
1764 	PCMCIA_DEVICE_NULL,
1765 };
1766 MODULE_DEVICE_TABLE(pcmcia, xirc2ps_ids);
1767 
1768 
1769 static struct pcmcia_driver xirc2ps_cs_driver = {
1770 	.owner		= THIS_MODULE,
1771 	.name		= "xirc2ps_cs",
1772 	.probe		= xirc2ps_probe,
1773 	.remove		= xirc2ps_detach,
1774 	.id_table       = xirc2ps_ids,
1775 	.suspend	= xirc2ps_suspend,
1776 	.resume		= xirc2ps_resume,
1777 };
1778 module_pcmcia_driver(xirc2ps_cs_driver);
1779 
1780 #ifndef MODULE
1781 static int __init setup_xirc2ps_cs(char *str)
1782 {
1783 	/* if_port, full_duplex, do_sound, lockup_hack
1784 	 */
1785 	int ints[10] = { -1 };
1786 
1787 	str = get_options(str, 9, ints);
1788 
1789 #define MAYBE_SET(X,Y) if (ints[0] >= Y && ints[Y] != -1) { X = ints[Y]; }
1790 	MAYBE_SET(if_port, 3);
1791 	MAYBE_SET(full_duplex, 4);
1792 	MAYBE_SET(do_sound, 5);
1793 	MAYBE_SET(lockup_hack, 6);
1794 #undef  MAYBE_SET
1795 
1796 	return 1;
1797 }
1798 
1799 __setup("xirc2ps_cs=", setup_xirc2ps_cs);
1800 #endif
1801