VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / net / pcmcia / xirc2ps_cs.c
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 #include <linux/module.h>
67 #include <linux/kernel.h>
68 #include <linux/init.h>
69 #include <linux/ptrace.h>
70 #include <linux/slab.h>
71 #include <linux/string.h>
72 #include <linux/timer.h>
73 #include <linux/interrupt.h>
74 #include <linux/in.h>
75 #include <linux/delay.h>
76 #include <linux/ethtool.h>
77 #include <linux/netdevice.h>
78 #include <linux/etherdevice.h>
79 #include <linux/skbuff.h>
80 #include <linux/if_arp.h>
81 #include <linux/ioport.h>
82
83 #include <pcmcia/version.h>
84 #include <pcmcia/cs_types.h>
85 #include <pcmcia/cs.h>
86 #include <pcmcia/cistpl.h>
87 #include <pcmcia/cisreg.h>
88 #include <pcmcia/ciscode.h>
89
90 #include <asm/io.h>
91 #include <asm/system.h>
92 #include <asm/bitops.h>
93 #include <asm/uaccess.h>
94
95 #ifndef MANFID_COMPAQ
96   #define MANFID_COMPAQ            0x0138
97   #define MANFID_COMPAQ2           0x0183  /* is this correct? */
98 #endif
99
100 #include <pcmcia/ds.h>
101
102 /* Time in jiffies before concluding Tx hung */
103 #define TX_TIMEOUT      ((400*HZ)/1000)
104
105 /****************
106  * Some constants used to access the hardware
107  */
108
109 /* Register offsets and value constans */
110 #define XIRCREG_CR  0   /* Command register (wr) */
111 enum xirc_cr {
112     TransmitPacket = 0x01,
113     SoftReset = 0x02,
114     EnableIntr = 0x04,
115     ForceIntr  = 0x08,
116     ClearTxFIFO = 0x10,
117     ClearRxOvrun = 0x20,
118     RestartTx    = 0x40
119 };
120 #define XIRCREG_ESR 0   /* Ethernet status register (rd) */
121 enum xirc_esr {
122     FullPktRcvd = 0x01, /* full packet in receive buffer */
123     PktRejected = 0x04, /* a packet has been rejected */
124     TxPktPend = 0x08,   /* TX Packet Pending */
125     IncorPolarity = 0x10,
126     MediaSelect = 0x20  /* set if TP, clear if AUI */
127 };
128 #define XIRCREG_PR  1   /* Page Register select */
129 #define XIRCREG_EDP 4   /* Ethernet Data Port Register */
130 #define XIRCREG_ISR 6   /* Ethernet Interrupt Status Register */
131 enum xirc_isr {
132     TxBufOvr = 0x01,    /* TX Buffer Overflow */
133     PktTxed  = 0x02,    /* Packet Transmitted */
134     MACIntr  = 0x04,    /* MAC Interrupt occurred */
135     TxResGrant = 0x08,  /* Tx Reservation Granted */
136     RxFullPkt = 0x20,   /* Rx Full Packet */
137     RxPktRej  = 0x40,   /* Rx Packet Rejected */
138     ForcedIntr= 0x80    /* Forced Interrupt */
139 };
140 #define XIRCREG1_IMR0 12 /* Ethernet Interrupt Mask Register (on page 1)*/
141 #define XIRCREG1_IMR1 13
142 #define XIRCREG0_TSO  8  /* Transmit Space Open Register (on page 0)*/
143 #define XIRCREG0_TRS  10 /* Transmit reservation Size Register (page 0)*/
144 #define XIRCREG0_DO   12 /* Data Offset Register (page 0) (wr) */
145 #define XIRCREG0_RSR  12 /* Receive Status Register (page 0) (rd) */
146 enum xirc_rsr {
147     PhyPkt = 0x01,      /* set:physical packet, clear: multicast packet */
148     BrdcstPkt = 0x02,   /* set if it is a broadcast packet */
149     PktTooLong = 0x04,  /* set if packet length > 1518 */
150     AlignErr = 0x10,    /* incorrect CRC and last octet not complete */
151     CRCErr = 0x20,      /* incorrect CRC and last octet is complete */
152     PktRxOk = 0x80      /* received ok */
153 };
154 #define XIRCREG0_PTR 13 /* packets transmitted register (rd) */
155 #define XIRCREG0_RBC 14 /* receive byte count regsister (rd) */
156 #define XIRCREG1_ECR 14 /* ethernet configurationn register */
157 enum xirc_ecr {
158     FullDuplex = 0x04,  /* enable full duplex mode */
159     LongTPMode = 0x08,  /* adjust for longer lengths of TP cable */
160     DisablePolCor = 0x10,/* disable auto polarity correction */
161     DisableLinkPulse = 0x20, /* disable link pulse generation */
162     DisableAutoTx = 0x40, /* disable auto-transmit */
163 };
164 #define XIRCREG2_RBS 8  /* receive buffer start register */
165 #define XIRCREG2_LED 10 /* LED Configuration register */
166 /* values for the leds:    Bits 2-0 for led 1
167  *  0 disabled             Bits 5-3 for led 2
168  *  1 collision
169  *  2 noncollision
170  *  3 link_detected
171  *  4 incor_polarity
172  *  5 jabber
173  *  6 auto_assertion
174  *  7 rx_tx_activity
175  */
176 #define XIRCREG2_MSR 12 /* Mohawk specific register */
177
178 #define XIRCREG4_GPR0 8 /* General Purpose Register 0 */
179 #define XIRCREG4_GPR1 9 /* General Purpose Register 1 */
180 #define XIRCREG2_GPR2 13 /* General Purpose Register 2 (page2!)*/
181 #define XIRCREG4_BOV 10 /* Bonding Version Register */
182 #define XIRCREG4_LMA 12 /* Local Memory Address Register */
183 #define XIRCREG4_LMD 14 /* Local Memory Data Port */
184 /* MAC register can only by accessed with 8 bit operations */
185 #define XIRCREG40_CMD0 8    /* Command Register (wr) */
186 enum xirc_cmd {             /* Commands */
187     Transmit = 0x01,
188     EnableRecv = 0x04,
189     DisableRecv = 0x08,
190     Abort = 0x10,
191     Online = 0x20,
192     IntrAck = 0x40,
193     Offline = 0x80
194 };
195 #define XIRCREG5_RHSA0  10  /* Rx Host Start Address */
196 #define XIRCREG40_RXST0 9   /* Receive Status Register */
197 #define XIRCREG40_TXST0 11  /* Transmit Status Register 0 */
198 #define XIRCREG40_TXST1 12  /* Transmit Status Register 10 */
199 #define XIRCREG40_RMASK0 13  /* Receive Mask Register */
200 #define XIRCREG40_TMASK0 14  /* Transmit Mask Register 0 */
201 #define XIRCREG40_TMASK1 15  /* Transmit Mask Register 0 */
202 #define XIRCREG42_SWC0  8   /* Software Configuration 0 */
203 #define XIRCREG42_SWC1  9   /* Software Configuration 1 */
204 #define XIRCREG42_BOC   10  /* Back-Off Configuration */
205 #define XIRCREG44_TDR0  8   /* Time Domain Reflectometry 0 */
206 #define XIRCREG44_TDR1  9   /* Time Domain Reflectometry 1 */
207 #define XIRCREG44_RXBC_LO 10 /* Rx Byte Count 0 (rd) */
208 #define XIRCREG44_RXBC_HI 11 /* Rx Byte Count 1 (rd) */
209 #define XIRCREG45_REV    15 /* Revision Register (rd) */
210 #define XIRCREG50_IA    8   /* Individual Address (8-13) */
211
212 static char *if_names[] = { "Auto", "10BaseT", "10Base2", "AUI", "100BaseT" };
213
214 /****************
215  * All the PCMCIA modules use PCMCIA_DEBUG to control debugging.  If
216  * you do not define PCMCIA_DEBUG at all, all the debug code will be
217  * left out.  If you compile with PCMCIA_DEBUG=0, the debug code will
218  * be present but disabled -- but it can then be enabled for specific
219  * modules at load time with a 'pc_debug=#' option to insmod.
220  */
221 #ifdef PCMCIA_DEBUG
222 static int pc_debug = PCMCIA_DEBUG;
223 MODULE_PARM(pc_debug, "i");
224 #define DEBUG(n, args...) if (pc_debug>(n)) printk(KDBG_XIRC args)
225 #else
226 #define DEBUG(n, args...)
227 #endif
228
229 #define KDBG_XIRC KERN_DEBUG   "xirc2ps_cs: "
230 #define KERR_XIRC KERN_ERR     "xirc2ps_cs: "
231 #define KWRN_XIRC KERN_WARNING "xirc2ps_cs: "
232 #define KNOT_XIRC KERN_NOTICE  "xirc2ps_cs: "
233 #define KINF_XIRC KERN_INFO    "xirc2ps_cs: "
234
235 /* card types */
236 #define XIR_UNKNOWN  0  /* unknown: not supported */
237 #define XIR_CE       1  /* (prodid 1) different hardware: not supported */
238 #define XIR_CE2      2  /* (prodid 2) */
239 #define XIR_CE3      3  /* (prodid 3) */
240 #define XIR_CEM      4  /* (prodid 1) different hardware: not supported */
241 #define XIR_CEM2     5  /* (prodid 2) */
242 #define XIR_CEM3     6  /* (prodid 3) */
243 #define XIR_CEM33    7  /* (prodid 4) */
244 #define XIR_CEM56M   8  /* (prodid 5) */
245 #define XIR_CEM56    9  /* (prodid 6) */
246 #define XIR_CM28    10  /* (prodid 3) modem only: not supported here */
247 #define XIR_CM33    11  /* (prodid 4) modem only: not supported here */
248 #define XIR_CM56    12  /* (prodid 5) modem only: not supported here */
249 #define XIR_CG      13  /* (prodid 1) GSM modem only: not supported */
250 #define XIR_CBE     14  /* (prodid 1) cardbus ethernet: not supported */
251 /*====================================================================*/
252
253 /* Module parameters */
254
255 MODULE_DESCRIPTION("Xircom PCMCIA ethernet driver");
256 MODULE_LICENSE("Dual MPL/GPL");
257
258 #define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i")
259
260 static int irq_list[4] = { -1 };
261 MODULE_PARM(irq_list, "1-4i");
262 INT_MODULE_PARM(irq_mask,       0xdeb8);
263 INT_MODULE_PARM(if_port,        0);
264 INT_MODULE_PARM(full_duplex,    0);
265 INT_MODULE_PARM(do_sound,       1);
266 INT_MODULE_PARM(lockup_hack,    0);  /* anti lockup hack */
267
268 /*====================================================================*/
269
270 /* We do not process more than these number of bytes during one
271  * interrupt. (Of course we receive complete packets, so this is not
272  * an exact value).
273  * Something between 2000..22000; first value gives best interrupt latency,
274  * the second enables the usage of the complete on-chip buffer. We use the
275  * high value as the initial value.
276  */
277 static unsigned maxrx_bytes = 22000;
278
279 /* MII management prototypes */
280 static void mii_idle(ioaddr_t ioaddr);
281 static void mii_putbit(ioaddr_t ioaddr, unsigned data);
282 static int  mii_getbit(ioaddr_t ioaddr);
283 static void mii_wbits(ioaddr_t ioaddr, unsigned data, int len);
284 static unsigned mii_rd(ioaddr_t ioaddr, u_char phyaddr, u_char phyreg);
285 static void mii_wr(ioaddr_t ioaddr, u_char phyaddr, u_char phyreg,
286                    unsigned data, int len);
287
288 /*
289  * The event() function is this driver's Card Services event handler.
290  * It will be called by Card Services when an appropriate card status
291  * event is received.  The config() and release() entry points are
292  * used to configure or release a socket, in response to card insertion
293  * and ejection events.  They are invoked from the event handler.
294  */
295
296 static int has_ce2_string(dev_link_t * link);
297 static void xirc2ps_config(dev_link_t * link);
298 static void xirc2ps_release(dev_link_t * link);
299 static int xirc2ps_event(event_t event, int priority,
300                          event_callback_args_t * args);
301
302 /****************
303  * The attach() and detach() entry points are used to create and destroy
304  * "instances" of the driver, where each instance represents everything
305  * needed to manage one actual PCMCIA card.
306  */
307
308 static dev_link_t *xirc2ps_attach(void);
309 static void xirc2ps_detach(dev_link_t *);
310
311 /****************
312  * You'll also need to prototype all the functions that will actually
313  * be used to talk to your device.  See 'pcmem_cs' for a good example
314  * of a fully self-sufficient driver; the other drivers rely more or
315  * less on other parts of the kernel.
316  */
317
318 static irqreturn_t xirc2ps_interrupt(int irq, void *dev_id, struct pt_regs *regs);
319
320 /*
321  * The dev_info variable is the "key" that is used to match up this
322  * device driver with appropriate cards, through the card configuration
323  * database.
324  */
325
326 static dev_info_t dev_info = "xirc2ps_cs";
327
328 /****************
329  * A linked list of "instances" of the device.  Each actual
330  * PCMCIA card corresponds to one device instance, and is described
331  * by one dev_link_t structure (defined in ds.h).
332  *
333  * You may not want to use a linked list for this -- for example, the
334  * memory card driver uses an array of dev_link_t pointers, where minor
335  * device numbers are used to derive the corresponding array index.
336  */
337
338 static dev_link_t *dev_list;
339
340 /****************
341  * A dev_link_t structure has fields for most things that are needed
342  * to keep track of a socket, but there will usually be some device
343  * specific information that also needs to be kept track of.  The
344  * 'priv' pointer in a dev_link_t structure can be used to point to
345  * a device-specific private data structure, like this.
346  *
347  * A driver needs to provide a dev_node_t structure for each device
348  * on a card.  In some cases, there is only one device per card (for
349  * example, ethernet cards, modems).  In other cases, there may be
350  * many actual or logical devices (SCSI adapters, memory cards with
351  * multiple partitions).  The dev_node_t structures need to be kept
352  * in a linked list starting at the 'dev' field of a dev_link_t
353  * structure.  We allocate them in the card's private data structure,
354  * because they generally can't be allocated dynamically.
355  */
356
357 typedef struct local_info_t {
358     dev_link_t link;
359     dev_node_t node;
360     struct net_device_stats stats;
361     int card_type;
362     int probe_port;
363     int silicon; /* silicon revision. 0=old CE2, 1=Scipper, 4=Mohawk */
364     int mohawk;  /* a CE3 type card */
365     int dingo;   /* a CEM56 type card */
366     int new_mii; /* has full 10baseT/100baseT MII */
367     int modem;   /* is a multi function card (i.e with a modem) */
368     caddr_t dingo_ccr; /* only used for CEM56 cards */
369     unsigned last_ptr_value; /* last packets transmitted value */
370     const char *manf_str;
371 } local_info_t;
372
373 /****************
374  * Some more prototypes
375  */
376 static int do_start_xmit(struct sk_buff *skb, struct net_device *dev);
377 static void do_tx_timeout(struct net_device *dev);
378 static struct net_device_stats *do_get_stats(struct net_device *dev);
379 static void set_addresses(struct net_device *dev);
380 static void set_multicast_list(struct net_device *dev);
381 static int set_card_type(dev_link_t *link, const void *s);
382 static int do_config(struct net_device *dev, struct ifmap *map);
383 static int do_open(struct net_device *dev);
384 static int do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
385 static struct ethtool_ops netdev_ethtool_ops;
386 static void hardreset(struct net_device *dev);
387 static void do_reset(struct net_device *dev, int full);
388 static int init_mii(struct net_device *dev);
389 static void do_powerdown(struct net_device *dev);
390 static int do_stop(struct net_device *dev);
391
392 /*=============== Helper functions =========================*/
393 static int
394 first_tuple(client_handle_t handle, tuple_t *tuple, cisparse_t *parse)
395 {
396         int err;
397
398         if ((err = pcmcia_get_first_tuple(handle, tuple)) == 0 &&
399                         (err = pcmcia_get_tuple_data(handle, tuple)) == 0)
400                 err = pcmcia_parse_tuple(handle, tuple, parse);
401         return err;
402 }
403
404 static int
405 next_tuple(client_handle_t handle, tuple_t *tuple, cisparse_t *parse)
406 {
407         int err;
408
409         if ((err = pcmcia_get_next_tuple(handle, tuple)) == 0 &&
410                         (err = pcmcia_get_tuple_data(handle, tuple)) == 0)
411                 err = pcmcia_parse_tuple(handle, tuple, parse);
412         return err;
413 }
414
415 #define SelectPage(pgnr)   outb((pgnr), ioaddr + XIRCREG_PR)
416 #define GetByte(reg)       ((unsigned)inb(ioaddr + (reg)))
417 #define GetWord(reg)       ((unsigned)inw(ioaddr + (reg)))
418 #define PutByte(reg,value) outb((value), ioaddr+(reg))
419 #define PutWord(reg,value) outw((value), ioaddr+(reg))
420
421 #define Wait(n) do { \
422         set_current_state(TASK_UNINTERRUPTIBLE); \
423         schedule_timeout(n); \
424 } while (0)
425
426 /*====== Functions used for debugging =================================*/
427 #if defined(PCMCIA_DEBUG) && 0 /* reading regs may change system status */
428 static void
429 PrintRegisters(struct net_device *dev)
430 {
431     ioaddr_t ioaddr = dev->base_addr;
432
433     if (pc_debug > 1) {
434         int i, page;
435
436         printk(KDBG_XIRC "Register  common: ");
437         for (i = 0; i < 8; i++)
438             printk(" %2.2x", GetByte(i));
439         printk("\n");
440         for (page = 0; page <= 8; page++) {
441             printk(KDBG_XIRC "Register page %2x: ", page);
442             SelectPage(page);
443             for (i = 8; i < 16; i++)
444                 printk(" %2.2x", GetByte(i));
445             printk("\n");
446         }
447         for (page=0x40 ; page <= 0x5f; page++) {
448             if (page == 0x43 || (page >= 0x46 && page <= 0x4f)
449                 || (page >= 0x51 && page <=0x5e))
450                 continue;
451             printk(KDBG_XIRC "Register page %2x: ", page);
452             SelectPage(page);
453             for (i = 8; i < 16; i++)
454                 printk(" %2.2x", GetByte(i));
455             printk("\n");
456         }
457     }
458 }
459 #endif /* PCMCIA_DEBUG */
460
461 /*============== MII Management functions ===============*/
462
463 /****************
464  * Turn around for read
465  */
466 static void
467 mii_idle(ioaddr_t ioaddr)
468 {
469     PutByte(XIRCREG2_GPR2, 0x04|0); /* drive MDCK low */
470     udelay(1);
471     PutByte(XIRCREG2_GPR2, 0x04|1); /* and drive MDCK high */
472     udelay(1);
473 }
474
475 /****************
476  * Write a bit to MDI/O
477  */
478 static void
479 mii_putbit(ioaddr_t ioaddr, unsigned data)
480 {
481   #if 1
482     if (data) {
483         PutByte(XIRCREG2_GPR2, 0x0c|2|0); /* set MDIO */
484         udelay(1);
485         PutByte(XIRCREG2_GPR2, 0x0c|2|1); /* and drive MDCK high */
486         udelay(1);
487     } else {
488         PutByte(XIRCREG2_GPR2, 0x0c|0|0); /* clear MDIO */
489         udelay(1);
490         PutByte(XIRCREG2_GPR2, 0x0c|0|1); /* and drive MDCK high */
491         udelay(1);
492     }
493   #else
494     if (data) {
495         PutWord(XIRCREG2_GPR2-1, 0x0e0e);
496         udelay(1);
497         PutWord(XIRCREG2_GPR2-1, 0x0f0f);
498         udelay(1);
499     } else {
500         PutWord(XIRCREG2_GPR2-1, 0x0c0c);
501         udelay(1);
502         PutWord(XIRCREG2_GPR2-1, 0x0d0d);
503         udelay(1);
504     }
505   #endif
506 }
507
508 /****************
509  * Get a bit from MDI/O
510  */
511 static int
512 mii_getbit(ioaddr_t ioaddr)
513 {
514     unsigned d;
515
516     PutByte(XIRCREG2_GPR2, 4|0); /* drive MDCK low */
517     udelay(1);
518     d = GetByte(XIRCREG2_GPR2); /* read MDIO */
519     PutByte(XIRCREG2_GPR2, 4|1); /* drive MDCK high again */
520     udelay(1);
521     return d & 0x20; /* read MDIO */
522 }
523
524 static void
525 mii_wbits(ioaddr_t ioaddr, unsigned data, int len)
526 {
527     unsigned m = 1 << (len-1);
528     for (; m; m >>= 1)
529         mii_putbit(ioaddr, data & m);
530 }
531
532 static unsigned
533 mii_rd(ioaddr_t ioaddr, u_char phyaddr, u_char phyreg)
534 {
535     int i;
536     unsigned data=0, m;
537
538     SelectPage(2);
539     for (i=0; i < 32; i++)              /* 32 bit preamble */
540         mii_putbit(ioaddr, 1);
541     mii_wbits(ioaddr, 0x06, 4);         /* Start and opcode for read */
542     mii_wbits(ioaddr, phyaddr, 5);      /* PHY address to be accessed */
543     mii_wbits(ioaddr, phyreg, 5);       /* PHY register to read */
544     mii_idle(ioaddr);                   /* turn around */
545     mii_getbit(ioaddr);
546
547     for (m = 1<<15; m; m >>= 1)
548         if (mii_getbit(ioaddr))
549             data |= m;
550     mii_idle(ioaddr);
551     return data;
552 }
553
554 static void
555 mii_wr(ioaddr_t ioaddr, u_char phyaddr, u_char phyreg, unsigned data, int len)
556 {
557     int i;
558
559     SelectPage(2);
560     for (i=0; i < 32; i++)              /* 32 bit preamble */
561         mii_putbit(ioaddr, 1);
562     mii_wbits(ioaddr, 0x05, 4);         /* Start and opcode for write */
563     mii_wbits(ioaddr, phyaddr, 5);      /* PHY address to be accessed */
564     mii_wbits(ioaddr, phyreg, 5);       /* PHY Register to write */
565     mii_putbit(ioaddr, 1);              /* turn around */
566     mii_putbit(ioaddr, 0);
567     mii_wbits(ioaddr, data, len);       /* And write the data */
568     mii_idle(ioaddr);
569 }
570
571 /*============= Main bulk of functions  =========================*/
572
573 /****************
574  * xirc2ps_attach() creates an "instance" of the driver, allocating
575  * local data structures for one device.  The device is registered
576  * with Card Services.
577  *
578  * The dev_link structure is initialized, but we don't actually
579  * configure the card at this point -- we wait until we receive a
580  * card insertion event.
581  */
582
583 static dev_link_t *
584 xirc2ps_attach(void)
585 {
586     client_reg_t client_reg;
587     dev_link_t *link;
588     struct net_device *dev;
589     local_info_t *local;
590     int err;
591
592     DEBUG(0, "attach()\n");
593
594     /* Allocate the device structure */
595     dev = alloc_etherdev(sizeof(local_info_t));
596     if (!dev)
597             return NULL;
598     local = netdev_priv(dev);
599     link = &local->link;
600     link->priv = dev;
601
602     /* General socket configuration */
603     link->conf.Attributes = CONF_ENABLE_IRQ;
604     link->conf.Vcc = 50;
605     link->conf.IntType = INT_MEMORY_AND_IO;
606     link->conf.ConfigIndex = 1;
607     link->conf.Present = PRESENT_OPTION;
608     link->irq.Handler = xirc2ps_interrupt;
609     link->irq.Instance = dev;
610
611     /* Fill in card specific entries */
612     SET_MODULE_OWNER(dev);
613     dev->hard_start_xmit = &do_start_xmit;
614     dev->set_config = &do_config;
615     dev->get_stats = &do_get_stats;
616     dev->do_ioctl = &do_ioctl;
617     SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
618     dev->set_multicast_list = &set_multicast_list;
619     dev->open = &do_open;
620     dev->stop = &do_stop;
621 #ifdef HAVE_TX_TIMEOUT
622     dev->tx_timeout = do_tx_timeout;
623     dev->watchdog_timeo = TX_TIMEOUT;
624 #endif
625
626     /* Register with Card Services */
627     link->next = dev_list;
628     dev_list = link;
629     client_reg.dev_info = &dev_info;
630     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
631     client_reg.EventMask =
632         CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
633         CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
634         CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
635     client_reg.event_handler = &xirc2ps_event;
636     client_reg.Version = 0x0210;
637     client_reg.event_callback_args.client_data = link;
638     if ((err = pcmcia_register_client(&link->handle, &client_reg))) {
639         cs_error(link->handle, RegisterClient, err);
640         xirc2ps_detach(link);
641         return NULL;
642     }
643
644     return link;
645 } /* xirc2ps_attach */
646
647 /****************
648  *  This deletes a driver "instance".  The device is de-registered
649  *  with Card Services.  If it has been released, all local data
650  *  structures are freed.  Otherwise, the structures will be freed
651  *  when the device is released.
652  */
653
654 static void
655 xirc2ps_detach(dev_link_t * link)
656 {
657     struct net_device *dev = link->priv;
658     dev_link_t **linkp;
659
660     DEBUG(0, "detach(0x%p)\n", link);
661
662     /* Locate device structure */
663     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
664         if (*linkp == link)
665             break;
666     if (!*linkp) {
667         DEBUG(0, "detach(0x%p): dev_link lost\n", link);
668         return;
669     }
670
671     if (link->dev)
672         unregister_netdev(dev);
673
674     /*
675      * If the device is currently configured and active, we won't
676      * actually delete it yet.  Instead, it is marked so that when
677      * the release() function is called, that will trigger a proper
678      * detach().
679      */
680     if (link->state & DEV_CONFIG)
681         xirc2ps_release(link);
682
683     /* Break the link with Card Services */
684     if (link->handle)
685         pcmcia_deregister_client(link->handle);
686
687     /* Unlink device structure, free it */
688     *linkp = link->next;
689     free_netdev(dev);
690 } /* xirc2ps_detach */
691
692 /****************
693  * Detect the type of the card. s is the buffer with the data of tuple 0x20
694  * Returns: 0 := not supported
695  *                     mediaid=11 and prodid=47
696  * Media-Id bits:
697  *  Ethernet        0x01
698  *  Tokenring       0x02
699  *  Arcnet          0x04
700  *  Wireless        0x08
701  *  Modem           0x10
702  *  GSM only        0x20
703  * Prod-Id bits:
704  *  Pocket          0x10
705  *  External        0x20
706  *  Creditcard      0x40
707  *  Cardbus         0x80
708  *
709  */
710 static int
711 set_card_type(dev_link_t *link, const void *s)
712 {
713     struct net_device *dev = link->priv;
714     local_info_t *local = netdev_priv(dev);
715   #ifdef PCMCIA_DEBUG
716     unsigned cisrev = ((const unsigned char *)s)[2];
717   #endif
718     unsigned mediaid= ((const unsigned char *)s)[3];
719     unsigned prodid = ((const unsigned char *)s)[4];
720
721     DEBUG(0, "cisrev=%02x mediaid=%02x prodid=%02x\n",
722           cisrev, mediaid, prodid);
723
724     local->mohawk = 0;
725     local->dingo = 0;
726     local->modem = 0;
727     local->card_type = XIR_UNKNOWN;
728     if (!(prodid & 0x40)) {
729         printk(KNOT_XIRC "Ooops: Not a creditcard\n");
730         return 0;
731     }
732     if (!(mediaid & 0x01)) {
733         printk(KNOT_XIRC "Not an Ethernet card\n");
734         return 0;
735     }
736     if (mediaid & 0x10) {
737         local->modem = 1;
738         switch(prodid & 15) {
739           case 1: local->card_type = XIR_CEM   ; break;
740           case 2: local->card_type = XIR_CEM2  ; break;
741           case 3: local->card_type = XIR_CEM3  ; break;
742           case 4: local->card_type = XIR_CEM33 ; break;
743           case 5: local->card_type = XIR_CEM56M;
744                   local->mohawk = 1;
745                   break;
746           case 6:
747           case 7: /* 7 is the RealPort 10/56 */
748                   local->card_type = XIR_CEM56 ;
749                   local->mohawk = 1;
750                   local->dingo = 1;
751                   break;
752         }
753     } else {
754         switch(prodid & 15) {
755           case 1: local->card_type = has_ce2_string(link)? XIR_CE2 : XIR_CE ;
756                   break;
757           case 2: local->card_type = XIR_CE2; break;
758           case 3: local->card_type = XIR_CE3;
759                   local->mohawk = 1;
760                   break;
761         }
762     }
763     if (local->card_type == XIR_CE || local->card_type == XIR_CEM) {
764         printk(KNOT_XIRC "Sorry, this is an old CE card\n");
765         return 0;
766     }
767     if (local->card_type == XIR_UNKNOWN)
768         printk(KNOT_XIRC "unknown card (mediaid=%02x prodid=%02x)\n",
769                mediaid, prodid);
770
771     return 1;
772 }
773
774 /****************
775  * There are some CE2 cards out which claim to be a CE card.
776  * This function looks for a "CE2" in the 3rd version field.
777  * Returns: true if this is a CE2
778  */
779 static int
780 has_ce2_string(dev_link_t * link)
781 {
782     client_handle_t handle = link->handle;
783     tuple_t tuple;
784     cisparse_t parse;
785     u_char buf[256];
786
787     tuple.Attributes = 0;
788     tuple.TupleData = buf;
789     tuple.TupleDataMax = 254;
790     tuple.TupleOffset = 0;
791     tuple.DesiredTuple = CISTPL_VERS_1;
792     if (!first_tuple(handle, &tuple, &parse) && parse.version_1.ns > 2) {
793         if (strstr(parse.version_1.str + parse.version_1.ofs[2], "CE2"))
794             return 1;
795     }
796     return 0;
797 }
798
799 /****************
800  * xirc2ps_config() is scheduled to run after a CARD_INSERTION event
801  * is received, to configure the PCMCIA socket, and to make the
802  * ethernet device available to the system.
803  */
804 static void
805 xirc2ps_config(dev_link_t * link)
806 {
807     client_handle_t handle = link->handle;
808     struct net_device *dev = link->priv;
809     local_info_t *local = netdev_priv(dev);
810     tuple_t tuple;
811     cisparse_t parse;
812     ioaddr_t ioaddr;
813     int err, i;
814     u_char buf[64];
815     cistpl_lan_node_id_t *node_id = (cistpl_lan_node_id_t*)parse.funce.data;
816     cistpl_cftable_entry_t *cf = &parse.cftable_entry;
817
818     local->dingo_ccr = NULL;
819
820     DEBUG(0, "config(0x%p)\n", link);
821
822     /*
823      * This reads the card's CONFIG tuple to find its configuration
824      * registers.
825      */
826     tuple.Attributes = 0;
827     tuple.TupleData = buf;
828     tuple.TupleDataMax = 64;
829     tuple.TupleOffset = 0;
830
831     /* Is this a valid  card */
832     tuple.DesiredTuple = CISTPL_MANFID;
833     if ((err=first_tuple(handle, &tuple, &parse))) {
834         printk(KNOT_XIRC "manfid not found in CIS\n");
835         goto failure;
836     }
837
838     switch(parse.manfid.manf) {
839       case MANFID_XIRCOM:
840         local->manf_str = "Xircom";
841         break;
842       case MANFID_ACCTON:
843         local->manf_str = "Accton";
844         break;
845       case MANFID_COMPAQ:
846       case MANFID_COMPAQ2:
847         local->manf_str = "Compaq";
848         break;
849       case MANFID_INTEL:
850         local->manf_str = "Intel";
851         break;
852       case MANFID_TOSHIBA:
853         local->manf_str = "Toshiba";
854         break;
855       default:
856         printk(KNOT_XIRC "Unknown Card Manufacturer ID: 0x%04x\n",
857                (unsigned)parse.manfid.manf);
858         goto failure;
859     }
860     DEBUG(0, "found %s card\n", local->manf_str);
861
862     if (!set_card_type(link, buf)) {
863         printk(KNOT_XIRC "this card is not supported\n");
864         goto failure;
865     }
866
867     /* get configuration stuff */
868     tuple.DesiredTuple = CISTPL_CONFIG;
869     if ((err=first_tuple(handle, &tuple, &parse)))
870         goto cis_error;
871     link->conf.ConfigBase = parse.config.base;
872     link->conf.Present =    parse.config.rmask[0];
873
874     /* get the ethernet address from the CIS */
875     tuple.DesiredTuple = CISTPL_FUNCE;
876     for (err = first_tuple(handle, &tuple, &parse); !err;
877                              err = next_tuple(handle, &tuple, &parse)) {
878         /* Once I saw two CISTPL_FUNCE_LAN_NODE_ID entries:
879          * the first one with a length of zero the second correct -
880          * so I skip all entries with length 0 */
881         if (parse.funce.type == CISTPL_FUNCE_LAN_NODE_ID
882             && ((cistpl_lan_node_id_t *)parse.funce.data)->nb)
883             break;
884     }
885     if (err) { /* not found: try to get the node-id from tuple 0x89 */
886         tuple.DesiredTuple = 0x89;  /* data layout looks like tuple 0x22 */
887         if ((err = pcmcia_get_first_tuple(handle, &tuple)) == 0 &&
888                 (err = pcmcia_get_tuple_data(handle, &tuple)) == 0) {
889             if (tuple.TupleDataLen == 8 && *buf == CISTPL_FUNCE_LAN_NODE_ID)
890                 memcpy(&parse, buf, 8);
891             else
892                 err = -1;
893         }
894     }
895     if (err) { /* another try   (James Lehmer's CE2 version 4.1)*/
896         tuple.DesiredTuple = CISTPL_FUNCE;
897         for (err = first_tuple(handle, &tuple, &parse); !err;
898                                  err = next_tuple(handle, &tuple, &parse)) {
899             if (parse.funce.type == 0x02 && parse.funce.data[0] == 1
900                 && parse.funce.data[1] == 6 && tuple.TupleDataLen == 13) {
901                 buf[1] = 4;
902                 memcpy(&parse, buf+1, 8);
903                 break;
904             }
905         }
906     }
907     if (err) {
908         printk(KNOT_XIRC "node-id not found in CIS\n");
909         goto failure;
910     }
911     node_id = (cistpl_lan_node_id_t *)parse.funce.data;
912     if (node_id->nb != 6) {
913         printk(KNOT_XIRC "malformed node-id in CIS\n");
914         goto failure;
915     }
916     for (i=0; i < 6; i++)
917         dev->dev_addr[i] = node_id->id[i];
918
919     /* Configure card */
920     link->state |= DEV_CONFIG;
921
922     link->io.IOAddrLines =10;
923     link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
924     link->irq.Attributes = IRQ_HANDLE_PRESENT;
925     link->irq.IRQInfo1 = IRQ_INFO2_VALID | IRQ_LEVEL_ID;
926     if (irq_list[0] == -1)
927         link->irq.IRQInfo2 = irq_mask;
928     else {
929         for (i = 0; i < 4; i++)
930             link->irq.IRQInfo2 |= 1 << irq_list[i];
931     }
932     if (local->modem) {
933         int pass;
934
935         if (do_sound) {
936             link->conf.Attributes |= CONF_ENABLE_SPKR;
937             link->conf.Status |= CCSR_AUDIO_ENA;
938         }
939         link->irq.Attributes |= IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED ;
940         link->io.NumPorts2 = 8;
941         link->io.Attributes2 = IO_DATA_PATH_WIDTH_8;
942         if (local->dingo) {
943             /* Take the Modem IO port from the CIS and scan for a free
944              * Ethernet port */
945             link->io.NumPorts1 = 16; /* no Mako stuff anymore */
946             tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
947             for (err = first_tuple(handle, &tuple, &parse); !err;
948                                  err = next_tuple(handle, &tuple, &parse)) {
949                 if (cf->io.nwin > 0  &&  (cf->io.win[0].base & 0xf) == 8) {
950                     for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
951                         link->conf.ConfigIndex = cf->index ;
952                         link->io.BasePort2 = cf->io.win[0].base;
953                         link->io.BasePort1 = ioaddr;
954                         if (!(err=pcmcia_request_io(link->handle, &link->io)))
955                             goto port_found;
956                     }
957                 }
958             }
959         } else {
960             link->io.NumPorts1 = 18;
961             /* We do 2 passes here: The first one uses the regular mapping and
962              * the second tries again, thereby considering that the 32 ports are
963              * mirrored every 32 bytes. Actually we use a mirrored port for
964              * the Mako if (on the first pass) the COR bit 5 is set.
965              */
966             for (pass=0; pass < 2; pass++) {
967                 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
968                 for (err = first_tuple(handle, &tuple, &parse); !err;
969                                      err = next_tuple(handle, &tuple, &parse)){
970                     if (cf->io.nwin > 0  &&  (cf->io.win[0].base & 0xf) == 8){
971                         link->conf.ConfigIndex = cf->index ;
972                         link->io.BasePort2 = cf->io.win[0].base;
973                         link->io.BasePort1 = link->io.BasePort2
974                                     + (pass ? (cf->index & 0x20 ? -24:8)
975                                             : (cf->index & 0x20 ?   8:-24));
976                         if (!(err=pcmcia_request_io(link->handle, &link->io)))
977                             goto port_found;
978                     }
979                 }
980             }
981             /* if special option:
982              * try to configure as Ethernet only.
983              * .... */
984         }
985         printk(KNOT_XIRC "no ports available\n");
986     } else {
987         link->irq.Attributes |= IRQ_TYPE_EXCLUSIVE;
988         link->io.NumPorts1 = 16;
989         for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
990             link->io.BasePort1 = ioaddr;
991             if (!(err=pcmcia_request_io(link->handle, &link->io)))
992                 goto port_found;
993         }
994         link->io.BasePort1 = 0; /* let CS decide */
995         if ((err=pcmcia_request_io(link->handle, &link->io))) {
996             cs_error(link->handle, RequestIO, err);
997             goto config_error;
998         }
999     }
1000   port_found:
1001     if (err)
1002          goto config_error;
1003
1004     /****************
1005      * Now allocate an interrupt line.  Note that this does not
1006      * actually assign a handler to the interrupt.
1007      */
1008     if ((err=pcmcia_request_irq(link->handle, &link->irq))) {
1009         cs_error(link->handle, RequestIRQ, err);
1010         goto config_error;
1011     }
1012
1013     /****************
1014      * This actually configures the PCMCIA socket -- setting up
1015      * the I/O windows and the interrupt mapping.
1016      */
1017     if ((err=pcmcia_request_configuration(link->handle, &link->conf))) {
1018         cs_error(link->handle, RequestConfiguration, err);
1019         goto config_error;
1020     }
1021
1022     if (local->dingo) {
1023         conf_reg_t reg;
1024         win_req_t req;
1025         memreq_t mem;
1026
1027         /* Reset the modem's BAR to the correct value
1028          * This is necessary because in the RequestConfiguration call,
1029          * the base address of the ethernet port (BasePort1) is written
1030          * to the BAR registers of the modem.
1031          */
1032         reg.Action = CS_WRITE;
1033         reg.Offset = CISREG_IOBASE_0;
1034         reg.Value = link->io.BasePort2 & 0xff;
1035         if ((err = pcmcia_access_configuration_register(link->handle, &reg))) {
1036             cs_error(link->handle, AccessConfigurationRegister, err);
1037             goto config_error;
1038         }
1039         reg.Action = CS_WRITE;
1040         reg.Offset = CISREG_IOBASE_1;
1041         reg.Value = (link->io.BasePort2 >> 8) & 0xff;
1042         if ((err = pcmcia_access_configuration_register(link->handle, &reg))) {
1043             cs_error(link->handle, AccessConfigurationRegister, err);
1044             goto config_error;
1045         }
1046
1047         /* There is no config entry for the Ethernet part which
1048          * is at 0x0800. So we allocate a window into the attribute
1049          * memory and write direct to the CIS registers
1050          */
1051         req.Attributes = WIN_DATA_WIDTH_8|WIN_MEMORY_TYPE_AM|WIN_ENABLE;
1052         req.Base = req.Size = 0;
1053         req.AccessSpeed = 0;
1054         if ((err = pcmcia_request_window(&link->handle, &req, &link->win))) {
1055             cs_error(link->handle, RequestWindow, err);
1056             goto config_error;
1057         }
1058         local->dingo_ccr = ioremap(req.Base,0x1000) + 0x0800;
1059         mem.CardOffset = 0x0;
1060         mem.Page = 0;
1061         if ((err = pcmcia_map_mem_page(link->win, &mem))) {
1062             cs_error(link->handle, MapMemPage, err);
1063             goto config_error;
1064         }
1065
1066         /* Setup the CCRs; there are no infos in the CIS about the Ethernet
1067          * part.
1068          */
1069         writeb(0x47, local->dingo_ccr + CISREG_COR);
1070         ioaddr = link->io.BasePort1;
1071         writeb(ioaddr & 0xff      , local->dingo_ccr + CISREG_IOBASE_0);
1072         writeb((ioaddr >> 8)&0xff , local->dingo_ccr + CISREG_IOBASE_1);
1073
1074       #if 0
1075         {
1076             u_char tmp;
1077             printk(KERN_INFO "ECOR:");
1078             for (i=0; i < 7; i++) {
1079                 tmp = readb(local->dingo_ccr + i*2);
1080                 printk(" %02x", tmp);
1081             }
1082             printk("\n");
1083             printk(KERN_INFO "DCOR:");
1084             for (i=0; i < 4; i++) {
1085                 tmp = readb(local->dingo_ccr + 0x20 + i*2);
1086                 printk(" %02x", tmp);
1087             }
1088             printk("\n");
1089             printk(KERN_INFO "SCOR:");
1090             for (i=0; i < 10; i++) {
1091                 tmp = readb(local->dingo_ccr + 0x40 + i*2);
1092                 printk(" %02x", tmp);
1093             }
1094             printk("\n");
1095         }
1096       #endif
1097
1098         writeb(0x01, local->dingo_ccr + 0x20);
1099         writeb(0x0c, local->dingo_ccr + 0x22);
1100         writeb(0x00, local->dingo_ccr + 0x24);
1101         writeb(0x00, local->dingo_ccr + 0x26);
1102         writeb(0x00, local->dingo_ccr + 0x28);
1103     }
1104
1105     /* The if_port symbol can be set when the module is loaded */
1106     local->probe_port=0;
1107     if (!if_port) {
1108         local->probe_port = dev->if_port = 1;
1109     } else if ((if_port >= 1 && if_port <= 2) ||
1110                (local->mohawk && if_port==4))
1111         dev->if_port = if_port;
1112     else
1113         printk(KNOT_XIRC "invalid if_port requested\n");
1114
1115     /* we can now register the device with the net subsystem */
1116     dev->irq = link->irq.AssignedIRQ;
1117     dev->base_addr = link->io.BasePort1;
1118
1119     if (local->dingo)
1120         do_reset(dev, 1); /* a kludge to make the cem56 work */
1121
1122     link->dev = &local->node;
1123     link->state &= ~DEV_CONFIG_PENDING;
1124
1125     if ((err=register_netdev(dev))) {
1126         printk(KNOT_XIRC "register_netdev() failed\n");
1127         link->dev = NULL;
1128         goto config_error;
1129     }
1130
1131     strcpy(local->node.dev_name, dev->name);
1132
1133     /* give some infos about the hardware */
1134     printk(KERN_INFO "%s: %s: port %#3lx, irq %d, hwaddr",
1135          dev->name, local->manf_str,(u_long)dev->base_addr, (int)dev->irq);
1136     for (i = 0; i < 6; i++)
1137         printk("%c%02X", i?':':' ', dev->dev_addr[i]);
1138     printk("\n");
1139
1140     return;
1141
1142   config_error:
1143     link->state &= ~DEV_CONFIG_PENDING;
1144     xirc2ps_release(link);
1145     return;
1146
1147   cis_error:
1148     printk(KNOT_XIRC "unable to parse CIS\n");
1149   failure:
1150     link->state &= ~DEV_CONFIG_PENDING;
1151 } /* xirc2ps_config */
1152
1153 /****************
1154  * After a card is removed, xirc2ps_release() will unregister the net
1155  * device, and release the PCMCIA configuration.  If the device is
1156  * still open, this will be postponed until it is closed.
1157  */
1158 static void
1159 xirc2ps_release(dev_link_t *link)
1160 {
1161
1162     DEBUG(0, "release(0x%p)\n", link);
1163
1164     if (link->win) {
1165         struct net_device *dev = link->priv;
1166         local_info_t *local = netdev_priv(dev);
1167         if (local->dingo)
1168             iounmap(local->dingo_ccr - 0x0800);
1169         pcmcia_release_window(link->win);
1170     }
1171     pcmcia_release_configuration(link->handle);
1172     pcmcia_release_io(link->handle, &link->io);
1173     pcmcia_release_irq(link->handle, &link->irq);
1174     link->state &= ~DEV_CONFIG;
1175
1176 } /* xirc2ps_release */
1177
1178 /*====================================================================*/
1179
1180 /****************
1181  * The card status event handler.  Mostly, this schedules other
1182  * stuff to run after an event is received.  A CARD_REMOVAL event
1183  * also sets some flags to discourage the net drivers from trying
1184  * to talk to the card any more.
1185  *
1186  * When a CARD_REMOVAL event is received, we immediately set a flag
1187  * to block future accesses to this device.  All the functions that
1188  * actually access the device should check this flag to make sure
1189  * the card is still present.
1190  */
1191
1192 static int
1193 xirc2ps_event(event_t event, int priority,
1194               event_callback_args_t * args)
1195 {
1196     dev_link_t *link = args->client_data;
1197     struct net_device *dev = link->priv;
1198
1199     DEBUG(0, "event(%d)\n", (int)event);
1200
1201     switch (event) {
1202     case CS_EVENT_REGISTRATION_COMPLETE:
1203         DEBUG(0, "registration complete\n");
1204         break;
1205     case CS_EVENT_CARD_REMOVAL:
1206         link->state &= ~DEV_PRESENT;
1207         if (link->state & DEV_CONFIG)
1208             netif_device_detach(dev);
1209         break;
1210     case CS_EVENT_CARD_INSERTION:
1211         link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
1212         xirc2ps_config(link);
1213         break;
1214     case CS_EVENT_PM_SUSPEND:
1215         link->state |= DEV_SUSPEND;
1216         /* Fall through... */
1217     case CS_EVENT_RESET_PHYSICAL:
1218         if (link->state & DEV_CONFIG) {
1219             if (link->open) {
1220                 netif_device_detach(dev);
1221                 do_powerdown(dev);
1222             }
1223             pcmcia_release_configuration(link->handle);
1224         }
1225         break;
1226     case CS_EVENT_PM_RESUME:
1227         link->state &= ~DEV_SUSPEND;
1228         /* Fall through... */
1229     case CS_EVENT_CARD_RESET:
1230         if (link->state & DEV_CONFIG) {
1231             pcmcia_request_configuration(link->handle, &link->conf);
1232             if (link->open) {
1233                 do_reset(dev,1);
1234                 netif_device_attach(dev);
1235             }
1236         }
1237         break;
1238     }
1239     return 0;
1240 } /* xirc2ps_event */
1241
1242 /*====================================================================*/
1243
1244 /****************
1245  * This is the Interrupt service route.
1246  */
1247 static irqreturn_t
1248 xirc2ps_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1249 {
1250     struct net_device *dev = (struct net_device *)dev_id;
1251     local_info_t *lp = netdev_priv(dev);
1252     ioaddr_t ioaddr;
1253     u_char saved_page;
1254     unsigned bytes_rcvd;
1255     unsigned int_status, eth_status, rx_status, tx_status;
1256     unsigned rsr, pktlen;
1257     ulong start_ticks = jiffies; /* fixme: jiffies rollover every 497 days
1258                                   * is this something to worry about?
1259                                   * -- on a laptop?
1260                                   */
1261
1262     if (!netif_device_present(dev))
1263         return IRQ_HANDLED;
1264
1265     ioaddr = dev->base_addr;
1266     if (lp->mohawk) { /* must disable the interrupt */
1267         PutByte(XIRCREG_CR, 0);
1268     }
1269
1270     DEBUG(6, "%s: interrupt %d at %#x.\n", dev->name, irq, ioaddr);
1271
1272     saved_page = GetByte(XIRCREG_PR);
1273     /* Read the ISR to see whats the cause for the interrupt.
1274      * This also clears the interrupt flags on CE2 cards
1275      */
1276     int_status = GetByte(XIRCREG_ISR);
1277     bytes_rcvd = 0;
1278   loop_entry:
1279     if (int_status == 0xff) { /* card may be ejected */
1280         DEBUG(3, "%s: interrupt %d for dead card\n", dev->name, irq);
1281         goto leave;
1282     }
1283     eth_status = GetByte(XIRCREG_ESR);
1284
1285     SelectPage(0x40);
1286     rx_status  = GetByte(XIRCREG40_RXST0);
1287     PutByte(XIRCREG40_RXST0, (~rx_status & 0xff));
1288     tx_status = GetByte(XIRCREG40_TXST0);
1289     tx_status |= GetByte(XIRCREG40_TXST1) << 8;
1290     PutByte(XIRCREG40_TXST0, 0);
1291     PutByte(XIRCREG40_TXST1, 0);
1292
1293     DEBUG(3, "%s: ISR=%#2.2x ESR=%#2.2x RSR=%#2.2x TSR=%#4.4x\n",
1294           dev->name, int_status, eth_status, rx_status, tx_status);
1295
1296     /***** receive section ******/
1297     SelectPage(0);
1298     while (eth_status & FullPktRcvd) {
1299         rsr = GetByte(XIRCREG0_RSR);
1300         if (bytes_rcvd > maxrx_bytes && (rsr & PktRxOk)) {
1301             /* too many bytes received during this int, drop the rest of the
1302              * packets */
1303             lp->stats.rx_dropped++;
1304             DEBUG(2, "%s: RX drop, too much done\n", dev->name);
1305         } else if (rsr & PktRxOk) {
1306             struct sk_buff *skb;
1307
1308             pktlen = GetWord(XIRCREG0_RBC);
1309             bytes_rcvd += pktlen;
1310
1311             DEBUG(5, "rsr=%#02x packet_length=%u\n", rsr, pktlen);
1312
1313             skb = dev_alloc_skb(pktlen+3); /* 1 extra so we can use insw */
1314             if (!skb) {
1315                 printk(KNOT_XIRC "low memory, packet dropped (size=%u)\n",
1316                        pktlen);
1317                 lp->stats.rx_dropped++;
1318             } else { /* okay get the packet */
1319                 skb_reserve(skb, 2);
1320                 if (lp->silicon == 0 ) { /* work around a hardware bug */
1321                     unsigned rhsa; /* receive start address */
1322
1323                     SelectPage(5);
1324                     rhsa = GetWord(XIRCREG5_RHSA0);
1325                     SelectPage(0);
1326                     rhsa += 3; /* skip control infos */
1327                     if (rhsa >= 0x8000)
1328                         rhsa = 0;
1329                     if (rhsa + pktlen > 0x8000) {
1330                         unsigned i;
1331                         u_char *buf = skb_put(skb, pktlen);
1332                         for (i=0; i < pktlen ; i++, rhsa++) {
1333                             buf[i] = GetByte(XIRCREG_EDP);
1334                             if (rhsa == 0x8000) {
1335                                 rhsa = 0;
1336                                 i--;
1337                             }
1338                         }
1339                     } else {
1340                         insw(ioaddr+XIRCREG_EDP,
1341                                 skb_put(skb, pktlen), (pktlen+1)>>1);
1342                     }
1343                 }
1344               #if 0
1345                 else if (lp->mohawk) {
1346                     /* To use this 32 bit access we should use
1347                      * a manual optimized loop
1348                      * Also the words are swapped, we can get more
1349                      * performance by using 32 bit access and swapping
1350                      * the words in a register. Will need this for cardbus
1351                      *
1352                      * Note: don't forget to change the ALLOC_SKB to .. +3
1353                      */
1354                     unsigned i;
1355                     u_long *p = skb_put(skb, pktlen);
1356                     register u_long a;
1357                     ioaddr_t edpreg = ioaddr+XIRCREG_EDP-2;
1358                     for (i=0; i < len ; i += 4, p++) {
1359                         a = inl(edpreg);
1360                         __asm__("rorl $16,%0\n\t"
1361                                 :"=q" (a)
1362                                 : "0" (a));
1363                         *p = a;
1364                     }
1365                 }
1366               #endif
1367                 else {
1368                     insw(ioaddr+XIRCREG_EDP, skb_put(skb, pktlen),
1369                             (pktlen+1)>>1);
1370                 }
1371                 skb->protocol = eth_type_trans(skb, dev);
1372                 skb->dev = dev;
1373                 netif_rx(skb);
1374                 dev->last_rx = jiffies;
1375                 lp->stats.rx_packets++;
1376                 lp->stats.rx_bytes += pktlen;
1377                 if (!(rsr & PhyPkt))
1378                     lp->stats.multicast++;
1379             }
1380         } else { /* bad packet */
1381             DEBUG(5, "rsr=%#02x\n", rsr);
1382         }
1383         if (rsr & PktTooLong) {
1384             lp->stats.rx_frame_errors++;
1385             DEBUG(3, "%s: Packet too long\n", dev->name);
1386         }
1387         if (rsr & CRCErr) {
1388             lp->stats.rx_crc_errors++;
1389             DEBUG(3, "%s: CRC error\n", dev->name);
1390         }
1391         if (rsr & AlignErr) {
1392             lp->stats.rx_fifo_errors++; /* okay ? */
1393             DEBUG(3, "%s: Alignment error\n", dev->name);
1394         }
1395
1396         /* clear the received/dropped/error packet */
1397         PutWord(XIRCREG0_DO, 0x8000); /* issue cmd: skip_rx_packet */
1398
1399         /* get the new ethernet status */
1400         eth_status = GetByte(XIRCREG_ESR);
1401     }
1402     if (rx_status & 0x10) { /* Receive overrun */
1403         lp->stats.rx_over_errors++;
1404         PutByte(XIRCREG_CR, ClearRxOvrun);
1405         DEBUG(3, "receive overrun cleared\n");
1406     }
1407
1408     /***** transmit section ******/
1409     if (int_status & PktTxed) {
1410         unsigned n, nn;
1411
1412         n = lp->last_ptr_value;
1413         nn = GetByte(XIRCREG0_PTR);
1414         lp->last_ptr_value = nn;
1415         if (nn < n) /* rollover */
1416             lp->stats.tx_packets += 256 - n;
1417         else if (n == nn) { /* happens sometimes - don't know why */
1418             DEBUG(0, "PTR not changed?\n");
1419         } else
1420             lp->stats.tx_packets += lp->last_ptr_value - n;
1421         netif_wake_queue(dev);
1422     }
1423     if (tx_status & 0x0002) {   /* Execessive collissions */
1424         DEBUG(0, "tx restarted due to execssive collissions\n");
1425         PutByte(XIRCREG_CR, RestartTx);  /* restart transmitter process */
1426     }
1427     if (tx_status & 0x0040)
1428         lp->stats.tx_aborted_errors++;
1429
1430     /* recalculate our work chunk so that we limit the duration of this
1431      * ISR to about 1/10 of a second.
1432      * Calculate only if we received a reasonable amount of bytes.
1433      */
1434     if (bytes_rcvd > 1000) {
1435         u_long duration = jiffies - start_ticks;
1436
1437         if (duration >= HZ/10) { /* if more than about 1/10 second */
1438             maxrx_bytes = (bytes_rcvd * (HZ/10)) / duration;
1439             if (maxrx_bytes < 2000)
1440                 maxrx_bytes = 2000;
1441             else if (maxrx_bytes > 22000)
1442                 maxrx_bytes = 22000;
1443             DEBUG(1, "set maxrx=%u (rcvd=%u ticks=%lu)\n",
1444                   maxrx_bytes, bytes_rcvd, duration);
1445         } else if (!duration && maxrx_bytes < 22000) {
1446             /* now much faster */
1447             maxrx_bytes += 2000;
1448             if (maxrx_bytes > 22000)
1449                 maxrx_bytes = 22000;
1450             DEBUG(1, "set maxrx=%u\n", maxrx_bytes);
1451         }
1452     }
1453
1454   leave:
1455     if (lockup_hack) {
1456         if (int_status != 0xff && (int_status = GetByte(XIRCREG_ISR)) != 0)
1457             goto loop_entry;
1458     }
1459     SelectPage(saved_page);
1460     PutByte(XIRCREG_CR, EnableIntr);  /* re-enable interrupts */
1461     /* Instead of dropping packets during a receive, we could
1462      * force an interrupt with this command:
1463      *    PutByte(XIRCREG_CR, EnableIntr|ForceIntr);
1464      */
1465     return IRQ_HANDLED;
1466 } /* xirc2ps_interrupt */
1467
1468 /*====================================================================*/
1469
1470 static void
1471 do_tx_timeout(struct net_device *dev)
1472 {
1473     local_info_t *lp = netdev_priv(dev);
1474     printk(KERN_NOTICE "%s: transmit timed out\n", dev->name);
1475     lp->stats.tx_errors++;
1476     /* reset the card */
1477     do_reset(dev,1);
1478     dev->trans_start = jiffies;
1479     netif_wake_queue(dev);
1480 }
1481
1482 static int
1483 do_start_xmit(struct sk_buff *skb, struct net_device *dev)
1484 {
1485     local_info_t *lp = netdev_priv(dev);
1486     ioaddr_t ioaddr = dev->base_addr;
1487     int okay;
1488     unsigned freespace;
1489     unsigned pktlen = skb? skb->len : 0;
1490
1491     DEBUG(1, "do_start_xmit(skb=%p, dev=%p) len=%u\n",
1492           skb, dev, pktlen);
1493
1494
1495     /* adjust the packet length to min. required
1496      * and hope that the buffer is large enough
1497      * to provide some random data.
1498      * fixme: For Mohawk we can change this by sending
1499      * a larger packetlen than we actually have; the chip will
1500      * pad this in his buffer with random bytes
1501      */
1502     if (pktlen < ETH_ZLEN)
1503     {
1504         skb = skb_padto(skb, ETH_ZLEN);
1505         if (skb == NULL)
1506                 return 0;
1507         pktlen = ETH_ZLEN;
1508     }
1509
1510     netif_stop_queue(dev);
1511     SelectPage(0);
1512     PutWord(XIRCREG0_TRS, (u_short)pktlen+2);
1513     freespace = GetWord(XIRCREG0_TSO);
1514     okay = freespace & 0x8000;
1515     freespace &= 0x7fff;
1516     /* TRS doesn't work - (indeed it is eliminated with sil-rev 1) */
1517     okay = pktlen +2 < freespace;
1518     DEBUG(2 + (okay ? 2 : 0), "%s: avail. tx space=%u%s\n",
1519           dev->name, freespace, okay ? " (okay)":" (not enough)");
1520     if (!okay) { /* not enough space */
1521         return 1;  /* upper layer may decide to requeue this packet */
1522     }
1523     /* send the packet */
1524     PutWord(XIRCREG_EDP, (u_short)pktlen);
1525     outsw(ioaddr+XIRCREG_EDP, skb->data, pktlen>>1);
1526     if (pktlen & 1)
1527         PutByte(XIRCREG_EDP, skb->data[pktlen-1]);
1528
1529     if (lp->mohawk)
1530         PutByte(XIRCREG_CR, TransmitPacket|EnableIntr);
1531
1532     dev_kfree_skb (skb);
1533     dev->trans_start = jiffies;
1534     lp->stats.tx_bytes += pktlen;
1535     netif_start_queue(dev);
1536     return 0;
1537 }
1538
1539 static struct net_device_stats *
1540 do_get_stats(struct net_device *dev)
1541 {
1542     local_info_t *lp = netdev_priv(dev);
1543
1544     /*  lp->stats.rx_missed_errors = GetByte(?) */
1545     return &lp->stats;
1546 }
1547
1548 /****************
1549  * Set all addresses: This first one is the individual address,
1550  * the next 9 addresses are taken from the multicast list and
1551  * the rest is filled with the individual address.
1552  */
1553 static void
1554 set_addresses(struct net_device *dev)
1555 {
1556     ioaddr_t ioaddr = dev->base_addr;
1557     local_info_t *lp = netdev_priv(dev);
1558     struct dev_mc_list *dmi = dev->mc_list;
1559     char *addr;
1560     int i,j,k,n;
1561
1562     SelectPage(k=0x50);
1563     for (i=0,j=8,n=0; ; i++, j++) {
1564         if (i > 5) {
1565             if (++n > 9)
1566                 break;
1567             i = 0;
1568         }
1569         if (j > 15) {
1570             j = 8;
1571             k++;
1572             SelectPage(k);
1573         }
1574
1575         if (n && n <= dev->mc_count && dmi) {
1576             addr = dmi->dmi_addr;
1577             dmi = dmi->next;
1578         } else
1579             addr = dev->dev_addr;
1580
1581         if (lp->mohawk)
1582             PutByte(j, addr[5-i]);
1583         else
1584             PutByte(j, addr[i]);
1585     }
1586     SelectPage(0);
1587 }
1588
1589 /****************
1590  * Set or clear the multicast filter for this adaptor.
1591  * We can filter up to 9 addresses, if more are requested we set
1592  * multicast promiscuous mode.
1593  */
1594
1595 static void
1596 set_multicast_list(struct net_device *dev)
1597 {
1598     ioaddr_t ioaddr = dev->base_addr;
1599
1600     SelectPage(0x42);
1601     if (dev->flags & IFF_PROMISC) { /* snoop */
1602         PutByte(XIRCREG42_SWC1, 0x06); /* set MPE and PME */
1603     } else if (dev->mc_count > 9 || (dev->flags & IFF_ALLMULTI)) {
1604         PutByte(XIRCREG42_SWC1, 0x06); /* set MPE */
1605     } else if (dev->mc_count) {
1606         /* the chip can filter 9 addresses perfectly */
1607         PutByte(XIRCREG42_SWC1, 0x00);
1608         SelectPage(0x40);
1609         PutByte(XIRCREG40_CMD0, Offline);
1610         set_addresses(dev);
1611         SelectPage(0x40);
1612         PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1613     } else { /* standard usage */
1614         PutByte(XIRCREG42_SWC1, 0x00);
1615     }
1616     SelectPage(0);
1617 }
1618
1619 static int
1620 do_config(struct net_device *dev, struct ifmap *map)
1621 {
1622     local_info_t *local = netdev_priv(dev);
1623
1624     DEBUG(0, "do_config(%p)\n", dev);
1625     if (map->port != 255 && map->port != dev->if_port) {
1626         if (map->port > 4)
1627             return -EINVAL;
1628         if (!map->port) {
1629             local->probe_port = 1;
1630             dev->if_port = 1;
1631         } else {
1632             local->probe_port = 0;
1633             dev->if_port = map->port;
1634         }
1635         printk(KERN_INFO "%s: switching to %s port\n",
1636                dev->name, if_names[dev->if_port]);
1637         do_reset(dev,1);  /* not the fine way :-) */
1638     }
1639     return 0;
1640 }
1641
1642 /****************
1643  * Open the driver
1644  */
1645 static int
1646 do_open(struct net_device *dev)
1647 {
1648     local_info_t *lp = netdev_priv(dev);
1649     dev_link_t *link = &lp->link;
1650
1651     DEBUG(0, "do_open(%p)\n", dev);
1652
1653     /* Check that the PCMCIA card is still here. */
1654     /* Physical device present signature. */
1655     if (!DEV_OK(link))
1656         return -ENODEV;
1657
1658     /* okay */
1659     link->open++;
1660
1661     netif_start_queue(dev);
1662     do_reset(dev,1);
1663
1664     return 0;
1665 }
1666
1667 static void netdev_get_drvinfo(struct net_device *dev,
1668                                struct ethtool_drvinfo *info)
1669 {
1670         strcpy(info->driver, "xirc2ps_cs");
1671         sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr);
1672 }
1673
1674 static struct ethtool_ops netdev_ethtool_ops = {
1675         .get_drvinfo            = netdev_get_drvinfo,
1676 };
1677
1678 static int
1679 do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1680 {
1681     local_info_t *local = netdev_priv(dev);
1682     ioaddr_t ioaddr = dev->base_addr;
1683     u16 *data = (u16 *)&rq->ifr_ifru;
1684
1685     DEBUG(1, "%s: ioctl(%-.6s, %#04x) %04x %04x %04x %04x\n",
1686           dev->name, rq->ifr_ifrn.ifrn_name, cmd,
1687           data[0], data[1], data[2], data[3]);
1688
1689     if (!local->mohawk)
1690         return -EOPNOTSUPP;
1691
1692     switch(cmd) {
1693       case SIOCGMIIPHY:         /* Get the address of the PHY in use. */
1694         data[0] = 0;            /* we have only this address */
1695         /* fall trough */
1696       case SIOCGMIIREG:         /* Read the specified MII register. */
1697         data[3] = mii_rd(ioaddr, data[0] & 0x1f, data[1] & 0x1f);
1698         break;
1699       case SIOCSMIIREG:         /* Write the specified MII register */
1700         if (!capable(CAP_NET_ADMIN))
1701             return -EPERM;
1702         mii_wr(ioaddr, data[0] & 0x1f, data[1] & 0x1f, data[2], 16);
1703         break;
1704       default:
1705         return -EOPNOTSUPP;
1706     }
1707     return 0;
1708 }
1709
1710 static void
1711 hardreset(struct net_device *dev)
1712 {
1713     local_info_t *local = netdev_priv(dev);
1714     ioaddr_t ioaddr = dev->base_addr;
1715
1716     SelectPage(4);
1717     udelay(1);
1718     PutByte(XIRCREG4_GPR1, 0);       /* clear bit 0: power down */
1719     Wait(HZ/25);                     /* wait 40 msec */
1720     if (local->mohawk)
1721         PutByte(XIRCREG4_GPR1, 1);       /* set bit 0: power up */
1722     else
1723         PutByte(XIRCREG4_GPR1, 1 | 4);   /* set bit 0: power up, bit 2: AIC */
1724     Wait(HZ/50);                     /* wait 20 msec */
1725 }
1726
1727 static void
1728 do_reset(struct net_device *dev, int full)
1729 {
1730     local_info_t *local = netdev_priv(dev);
1731     ioaddr_t ioaddr = dev->base_addr;
1732     unsigned value;
1733
1734     DEBUG(0, "%s: do_reset(%p,%d)\n", dev? dev->name:"eth?", dev, full);
1735
1736     hardreset(dev);
1737     PutByte(XIRCREG_CR, SoftReset); /* set */
1738     Wait(HZ/50);                     /* wait 20 msec */
1739     PutByte(XIRCREG_CR, 0);          /* clear */
1740     Wait(HZ/25);                     /* wait 40 msec */
1741     if (local->mohawk) {
1742         SelectPage(4);
1743         /* set pin GP1 and GP2 to output  (0x0c)
1744          * set GP1 to low to power up the ML6692 (0x00)
1745          * set GP2 to high to power up the 10Mhz chip  (0x02)
1746          */
1747         PutByte(XIRCREG4_GPR0, 0x0e);
1748     }
1749
1750     /* give the circuits some time to power up */
1751     Wait(HZ/2);         /* about 500ms */
1752
1753     local->last_ptr_value = 0;
1754     local->silicon = local->mohawk ? (GetByte(XIRCREG4_BOV) & 0x70) >> 4
1755                                    : (GetByte(XIRCREG4_BOV) & 0x30) >> 4;
1756
1757     if (local->probe_port) {
1758         if (!local->mohawk) {
1759             SelectPage(4);
1760             PutByte(XIRCREG4_GPR0, 4);
1761             local->probe_port = 0;
1762         }
1763     } else if (dev->if_port == 2) { /* enable 10Base2 */
1764         SelectPage(0x42);
1765         PutByte(XIRCREG42_SWC1, 0xC0);
1766     } else { /* enable 10BaseT */
1767         SelectPage(0x42);
1768         PutByte(XIRCREG42_SWC1, 0x80);
1769     }
1770     Wait(HZ/25);                     /* wait 40 msec to let it complete */
1771
1772   #ifdef PCMCIA_DEBUG
1773     if (pc_debug) {
1774         SelectPage(0);
1775         value = GetByte(XIRCREG_ESR);    /* read the ESR */
1776         printk(KERN_DEBUG "%s: ESR is: %#02x\n", dev->name, value);
1777     }
1778   #endif
1779
1780     /* setup the ECR */
1781     SelectPage(1);
1782     PutByte(XIRCREG1_IMR0, 0xff); /* allow all ints */
1783     PutByte(XIRCREG1_IMR1, 1    ); /* and Set TxUnderrunDetect */
1784     value = GetByte(XIRCREG1_ECR);
1785   #if 0
1786     if (local->mohawk)
1787         value |= DisableLinkPulse;
1788     PutByte(XIRCREG1_ECR, value);
1789   #endif
1790     DEBUG(0, "%s: ECR is: %#02x\n", dev->name, value);
1791
1792     SelectPage(0x42);
1793     PutByte(XIRCREG42_SWC0, 0x20); /* disable source insertion */
1794
1795     if (local->silicon != 1) {
1796         /* set the local memory dividing line.
1797          * The comments in the sample code say that this is only
1798          * settable with the scipper version 2 which is revision 0.
1799          * Always for CE3 cards
1800          */
1801         SelectPage(2);
1802         PutWord(XIRCREG2_RBS, 0x2000);
1803     }
1804
1805     if (full)
1806         set_addresses(dev);
1807
1808     /* Hardware workaround:
1809      * The receive byte pointer after reset is off by 1 so we need
1810      * to move the offset pointer back to 0.
1811      */
1812     SelectPage(0);
1813     PutWord(XIRCREG0_DO, 0x2000); /* change offset command, off=0 */
1814
1815     /* setup MAC IMRs and clear status registers */
1816     SelectPage(0x40);                /* Bit 7 ... bit 0 */
1817     PutByte(XIRCREG40_RMASK0, 0xff); /* ROK, RAB, rsv, RO, CRC, AE, PTL, MP */
1818     PutByte(XIRCREG40_TMASK0, 0xff); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1819     PutByte(XIRCREG40_TMASK1, 0xb0); /* rsv, rsv, PTD, EXT, rsv,rsv,rsv, rsv*/
1820     PutByte(XIRCREG40_RXST0,  0x00); /* ROK, RAB, REN, RO, CRC, AE, PTL, MP */
1821     PutByte(XIRCREG40_TXST0,  0x00); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1822     PutByte(XIRCREG40_TXST1,  0x00); /* TEN, rsv, PTD, EXT, retry_counter:4  */
1823
1824     if (full && local->mohawk && init_mii(dev)) {
1825         if (dev->if_port == 4 || local->dingo || local->new_mii) {
1826             printk(KERN_INFO "%s: MII selected\n", dev->name);
1827             SelectPage(2);
1828             PutByte(XIRCREG2_MSR, GetByte(XIRCREG2_MSR) | 0x08);
1829             Wait(HZ/50);
1830         } else {
1831             printk(KERN_INFO "%s: MII detected; using 10mbs\n",
1832                    dev->name);
1833             SelectPage(0x42);
1834             if (dev->if_port == 2) /* enable 10Base2 */
1835                 PutByte(XIRCREG42_SWC1, 0xC0);
1836             else  /* enable 10BaseT */
1837                 PutByte(XIRCREG42_SWC1, 0x80);
1838             Wait(HZ/25);        /* wait 40 msec to let it complete */
1839         }
1840         if (full_duplex)
1841             PutByte(XIRCREG1_ECR, GetByte(XIRCREG1_ECR | FullDuplex));
1842     } else {  /* No MII */
1843         SelectPage(0);
1844         value = GetByte(XIRCREG_ESR);    /* read the ESR */
1845         dev->if_port = (value & MediaSelect) ? 1 : 2;
1846     }
1847
1848     /* configure the LEDs */
1849     SelectPage(2);
1850     if (dev->if_port == 1 || dev->if_port == 4) /* TP: Link and Activity */
1851         PutByte(XIRCREG2_LED, 0x3b);
1852     else                              /* Coax: Not-Collision and Activity */
1853         PutByte(XIRCREG2_LED, 0x3a);
1854
1855     if (local->dingo)
1856         PutByte(0x0b, 0x04); /* 100 Mbit LED */
1857
1858     /* enable receiver and put the mac online */
1859     if (full) {
1860         SelectPage(0x40);
1861         PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1862     }
1863
1864     /* setup Ethernet IMR and enable interrupts */
1865     SelectPage(1);
1866     PutByte(XIRCREG1_IMR0, 0xff);
1867     udelay(1);
1868     SelectPage(0);
1869     PutByte(XIRCREG_CR, EnableIntr);
1870     if (local->modem && !local->dingo) { /* do some magic */
1871         if (!(GetByte(0x10) & 0x01))
1872             PutByte(0x10, 0x11); /* unmask master-int bit */
1873     }
1874
1875     if (full)
1876         printk(KERN_INFO "%s: media %s, silicon revision %d\n",
1877                dev->name, if_names[dev->if_port], local->silicon);
1878     /* We should switch back to page 0 to avoid a bug in revision 0
1879      * where regs with offset below 8 can't be read after an access
1880      * to the MAC registers */
1881     SelectPage(0);
1882 }
1883
1884 /****************
1885  * Initialize the Media-Independent-Interface
1886  * Returns: True if we have a good MII
1887  */
1888 static int
1889 init_mii(struct net_device *dev)
1890 {
1891     local_info_t *local = netdev_priv(dev);
1892     ioaddr_t ioaddr = dev->base_addr;
1893     unsigned control, status, linkpartner;
1894     int i;
1895
1896     if (if_port == 4 || if_port == 1) { /* force 100BaseT or 10BaseT */
1897         dev->if_port = if_port;
1898         local->probe_port = 0;
1899         return 1;
1900     }
1901
1902     status = mii_rd(ioaddr,  0, 1);
1903     if ((status & 0xff00) != 0x7800)
1904         return 0; /* No MII */
1905
1906     local->new_mii = (mii_rd(ioaddr, 0, 2) != 0xffff);
1907     
1908     if (local->probe_port)
1909         control = 0x1000; /* auto neg */
1910     else if (dev->if_port == 4)
1911         control = 0x2000; /* no auto neg, 100mbs mode */
1912     else
1913         control = 0x0000; /* no auto neg, 10mbs mode */
1914     mii_wr(ioaddr,  0, 0, control, 16);
1915     udelay(100);
1916     control = mii_rd(ioaddr, 0, 0);
1917
1918     if (control & 0x0400) {
1919         printk(KERN_NOTICE "%s can't take PHY out of isolation mode\n",
1920                dev->name);
1921         local->probe_port = 0;
1922         return 0;
1923     }
1924
1925     if (local->probe_port) {
1926         /* according to the DP83840A specs the auto negotiation process
1927          * may take up to 3.5 sec, so we use this also for our ML6692
1928          * Fixme: Better to use a timer here!
1929          */
1930         for (i=0; i < 35; i++) {
1931             Wait(HZ/10);         /* wait 100 msec */
1932             status = mii_rd(ioaddr,  0, 1);
1933             if ((status & 0x0020) && (status & 0x0004))
1934                 break;
1935         }
1936
1937         if (!(status & 0x0020)) {
1938             printk(KERN_INFO "%s: autonegotiation failed;"
1939                    " using 10mbs\n", dev->name);
1940             if (!local->new_mii) {
1941                 control = 0x0000;
1942                 mii_wr(ioaddr,  0, 0, control, 16);
1943                 udelay(100);
1944                 SelectPage(0);
1945                 dev->if_port = (GetByte(XIRCREG_ESR) & MediaSelect) ? 1 : 2;
1946             }
1947         } else {
1948             linkpartner = mii_rd(ioaddr, 0, 5);
1949             printk(KERN_INFO "%s: MII link partner: %04x\n",
1950                    dev->name, linkpartner);
1951             if (linkpartner & 0x0080) {
1952                 dev->if_port = 4;
1953             } else
1954                 dev->if_port = 1;
1955         }
1956     }
1957
1958     return 1;
1959 }
1960
1961 static void
1962 do_powerdown(struct net_device *dev)
1963 {
1964
1965     ioaddr_t ioaddr = dev->base_addr;
1966
1967     DEBUG(0, "do_powerdown(%p)\n", dev);
1968
1969     SelectPage(4);
1970     PutByte(XIRCREG4_GPR1, 0);       /* clear bit 0: power down */
1971     SelectPage(0);
1972 }
1973
1974 static int
1975 do_stop(struct net_device *dev)
1976 {
1977     ioaddr_t ioaddr = dev->base_addr;
1978     local_info_t *lp = netdev_priv(dev);
1979     dev_link_t *link = &lp->link;
1980
1981     DEBUG(0, "do_stop(%p)\n", dev);
1982
1983     if (!link)
1984         return -ENODEV;
1985
1986     netif_stop_queue(dev);
1987
1988     SelectPage(0);
1989     PutByte(XIRCREG_CR, 0);  /* disable interrupts */
1990     SelectPage(0x01);
1991     PutByte(XIRCREG1_IMR0, 0x00); /* forbid all ints */
1992     SelectPage(4);
1993     PutByte(XIRCREG4_GPR1, 0);  /* clear bit 0: power down */
1994     SelectPage(0);
1995
1996     link->open--;
1997     return 0;
1998 }
1999
2000 static struct pcmcia_driver xirc2ps_cs_driver = {
2001         .owner          = THIS_MODULE,
2002         .drv            = {
2003                 .name   = "xirc2ps_cs",
2004         },
2005         .attach         = xirc2ps_attach,
2006         .detach         = xirc2ps_detach,
2007 };
2008
2009 static int __init
2010 init_xirc2ps_cs(void)
2011 {
2012         return pcmcia_register_driver(&xirc2ps_cs_driver);
2013 }
2014
2015 static void __exit
2016 exit_xirc2ps_cs(void)
2017 {
2018         pcmcia_unregister_driver(&xirc2ps_cs_driver);
2019
2020         while (dev_list)
2021                 xirc2ps_detach(dev_list);
2022 }
2023
2024 module_init(init_xirc2ps_cs);
2025 module_exit(exit_xirc2ps_cs);
2026
2027 #ifndef MODULE
2028 static int __init setup_xirc2ps_cs(char *str)
2029 {
2030         /* irq, irq_mask, if_port, full_duplex, do_sound, lockup_hack
2031          * [,irq2 [,irq3 [,irq4]]]
2032          */
2033         int ints[10] = { -1 };
2034
2035         str = get_options(str, 9, ints);
2036
2037 #define MAYBE_SET(X,Y) if (ints[0] >= Y && ints[Y] != -1) { X = ints[Y]; }
2038         MAYBE_SET(irq_list[0], 1);
2039         MAYBE_SET(irq_mask, 2);
2040         MAYBE_SET(if_port, 3);
2041         MAYBE_SET(full_duplex, 4);
2042         MAYBE_SET(do_sound, 5);
2043         MAYBE_SET(lockup_hack, 6);
2044         MAYBE_SET(irq_list[1], 7);
2045         MAYBE_SET(irq_list[2], 8);
2046         MAYBE_SET(irq_list[3], 9);
2047 #undef  MAYBE_SET
2048
2049         return 0;
2050 }
2051
2052 __setup("xirc2ps_cs=", setup_xirc2ps_cs);
2053 #endif