blob: 5e203230144ff794c66bda80d7fc54c02b8abfe3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* [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#include <linux/bitops.h>
Ben Hutchings0fa0ee052009-09-03 10:41:17 +000083#include <linux/mii.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <pcmcia/cs_types.h>
86#include <pcmcia/cs.h>
87#include <pcmcia/cistpl.h>
88#include <pcmcia/cisreg.h>
89#include <pcmcia/ciscode.h>
90
91#include <asm/io.h>
92#include <asm/system.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) */
111enum 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) */
121enum 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 */
131enum 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) */
146enum 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 */
157enum 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) */
186enum 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
Arjan van de Venf71e1302006-03-03 21:33:57 -0500212static const char *if_names[] = { "Auto", "10BaseT", "10Base2", "AUI", "100BaseT" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
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
222static int pc_debug = PCMCIA_DEBUG;
223module_param(pc_debug, int, 0);
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
255MODULE_DESCRIPTION("Xircom PCMCIA ethernet driver");
256MODULE_LICENSE("Dual MPL/GPL");
257
258#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
259
260INT_MODULE_PARM(if_port, 0);
261INT_MODULE_PARM(full_duplex, 0);
262INT_MODULE_PARM(do_sound, 1);
263INT_MODULE_PARM(lockup_hack, 0); /* anti lockup hack */
264
265/*====================================================================*/
266
267/* We do not process more than these number of bytes during one
268 * interrupt. (Of course we receive complete packets, so this is not
269 * an exact value).
270 * Something between 2000..22000; first value gives best interrupt latency,
271 * the second enables the usage of the complete on-chip buffer. We use the
272 * high value as the initial value.
273 */
274static unsigned maxrx_bytes = 22000;
275
276/* MII management prototypes */
Olof Johansson906da802008-02-04 22:27:35 -0800277static void mii_idle(unsigned int ioaddr);
278static void mii_putbit(unsigned int ioaddr, unsigned data);
279static int mii_getbit(unsigned int ioaddr);
280static void mii_wbits(unsigned int ioaddr, unsigned data, int len);
281static unsigned mii_rd(unsigned int ioaddr, u_char phyaddr, u_char phyreg);
282static void mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 unsigned data, int len);
284
285/*
286 * The event() function is this driver's Card Services event handler.
287 * It will be called by Card Services when an appropriate card status
288 * event is received. The config() and release() entry points are
289 * used to configure or release a socket, in response to card insertion
290 * and ejection events. They are invoked from the event handler.
291 */
292
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200293static int has_ce2_string(struct pcmcia_device * link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200294static int xirc2ps_config(struct pcmcia_device * link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200295static void xirc2ps_release(struct pcmcia_device * link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297/****************
298 * The attach() and detach() entry points are used to create and destroy
299 * "instances" of the driver, where each instance represents everything
300 * needed to manage one actual PCMCIA card.
301 */
302
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100303static void xirc2ps_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305/****************
306 * You'll also need to prototype all the functions that will actually
307 * be used to talk to your device. See 'pcmem_cs' for a good example
308 * of a fully self-sufficient driver; the other drivers rely more or
309 * less on other parts of the kernel.
310 */
311
David Howells7d12e782006-10-05 14:55:46 +0100312static irqreturn_t xirc2ps_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/****************
315 * A linked list of "instances" of the device. Each actual
316 * PCMCIA card corresponds to one device instance, and is described
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200317 * by one struct pcmcia_device structure (defined in ds.h).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 *
319 * You may not want to use a linked list for this -- for example, the
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200320 * memory card driver uses an array of struct pcmcia_device pointers, where minor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * device numbers are used to derive the corresponding array index.
322 */
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/****************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * A driver needs to provide a dev_node_t structure for each device
326 * on a card. In some cases, there is only one device per card (for
327 * example, ethernet cards, modems). In other cases, there may be
328 * many actual or logical devices (SCSI adapters, memory cards with
329 * multiple partitions). The dev_node_t structures need to be kept
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200330 * in a linked list starting at the 'dev' field of a struct pcmcia_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * structure. We allocate them in the card's private data structure,
332 * because they generally can't be allocated dynamically.
333 */
334
335typedef struct local_info_t {
David Howellsc4028952006-11-22 14:57:56 +0000336 struct net_device *dev;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100337 struct pcmcia_device *p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 dev_node_t node;
Stephen Hemminger6394d7c2009-03-20 19:36:07 +0000339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 int card_type;
341 int probe_port;
342 int silicon; /* silicon revision. 0=old CE2, 1=Scipper, 4=Mohawk */
343 int mohawk; /* a CE3 type card */
344 int dingo; /* a CEM56 type card */
345 int new_mii; /* has full 10baseT/100baseT MII */
346 int modem; /* is a multi function card (i.e with a modem) */
347 void __iomem *dingo_ccr; /* only used for CEM56 cards */
348 unsigned last_ptr_value; /* last packets transmitted value */
349 const char *manf_str;
Joerg Ahrens9a469ab2006-08-20 21:51:57 +0100350 struct work_struct tx_timeout_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351} local_info_t;
352
353/****************
354 * Some more prototypes
355 */
Stephen Hemmingerdbf02fa2009-08-31 19:50:49 +0000356static netdev_tx_t do_start_xmit(struct sk_buff *skb,
357 struct net_device *dev);
Arjan van de Vened4cb132008-10-05 07:35:05 +0000358static void xirc_tx_timeout(struct net_device *dev);
David Howellsc4028952006-11-22 14:57:56 +0000359static void xirc2ps_tx_timeout_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360static void set_addresses(struct net_device *dev);
361static void set_multicast_list(struct net_device *dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200362static int set_card_type(struct pcmcia_device *link, const void *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363static int do_config(struct net_device *dev, struct ifmap *map);
364static int do_open(struct net_device *dev);
365static int do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
Jeff Garzik7282d492006-09-13 14:30:00 -0400366static const struct ethtool_ops netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367static void hardreset(struct net_device *dev);
368static void do_reset(struct net_device *dev, int full);
369static int init_mii(struct net_device *dev);
370static void do_powerdown(struct net_device *dev);
371static int do_stop(struct net_device *dev);
372
373/*=============== Helper functions =========================*/
374static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200375first_tuple(struct pcmcia_device *handle, tuple_t *tuple, cisparse_t *parse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 int err;
378
379 if ((err = pcmcia_get_first_tuple(handle, tuple)) == 0 &&
380 (err = pcmcia_get_tuple_data(handle, tuple)) == 0)
Dominik Brodowski2f3061e2008-08-31 15:50:33 +0200381 err = pcmcia_parse_tuple(tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return err;
383}
384
385static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200386next_tuple(struct pcmcia_device *handle, tuple_t *tuple, cisparse_t *parse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 int err;
389
390 if ((err = pcmcia_get_next_tuple(handle, tuple)) == 0 &&
391 (err = pcmcia_get_tuple_data(handle, tuple)) == 0)
Dominik Brodowski2f3061e2008-08-31 15:50:33 +0200392 err = pcmcia_parse_tuple(tuple, parse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return err;
394}
395
396#define SelectPage(pgnr) outb((pgnr), ioaddr + XIRCREG_PR)
397#define GetByte(reg) ((unsigned)inb(ioaddr + (reg)))
398#define GetWord(reg) ((unsigned)inw(ioaddr + (reg)))
399#define PutByte(reg,value) outb((value), ioaddr+(reg))
400#define PutWord(reg,value) outw((value), ioaddr+(reg))
401
402/*====== Functions used for debugging =================================*/
403#if defined(PCMCIA_DEBUG) && 0 /* reading regs may change system status */
404static void
405PrintRegisters(struct net_device *dev)
406{
Olof Johansson906da802008-02-04 22:27:35 -0800407 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (pc_debug > 1) {
410 int i, page;
411
412 printk(KDBG_XIRC "Register common: ");
413 for (i = 0; i < 8; i++)
414 printk(" %2.2x", GetByte(i));
415 printk("\n");
416 for (page = 0; page <= 8; page++) {
417 printk(KDBG_XIRC "Register page %2x: ", page);
418 SelectPage(page);
419 for (i = 8; i < 16; i++)
420 printk(" %2.2x", GetByte(i));
421 printk("\n");
422 }
423 for (page=0x40 ; page <= 0x5f; page++) {
424 if (page == 0x43 || (page >= 0x46 && page <= 0x4f)
425 || (page >= 0x51 && page <=0x5e))
426 continue;
427 printk(KDBG_XIRC "Register page %2x: ", page);
428 SelectPage(page);
429 for (i = 8; i < 16; i++)
430 printk(" %2.2x", GetByte(i));
431 printk("\n");
432 }
433 }
434}
435#endif /* PCMCIA_DEBUG */
436
437/*============== MII Management functions ===============*/
438
439/****************
440 * Turn around for read
441 */
442static void
Olof Johansson906da802008-02-04 22:27:35 -0800443mii_idle(unsigned int ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 PutByte(XIRCREG2_GPR2, 0x04|0); /* drive MDCK low */
446 udelay(1);
447 PutByte(XIRCREG2_GPR2, 0x04|1); /* and drive MDCK high */
448 udelay(1);
449}
450
451/****************
452 * Write a bit to MDI/O
453 */
454static void
Olof Johansson906da802008-02-04 22:27:35 -0800455mii_putbit(unsigned int ioaddr, unsigned data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 #if 1
458 if (data) {
459 PutByte(XIRCREG2_GPR2, 0x0c|2|0); /* set MDIO */
460 udelay(1);
461 PutByte(XIRCREG2_GPR2, 0x0c|2|1); /* and drive MDCK high */
462 udelay(1);
463 } else {
464 PutByte(XIRCREG2_GPR2, 0x0c|0|0); /* clear MDIO */
465 udelay(1);
466 PutByte(XIRCREG2_GPR2, 0x0c|0|1); /* and drive MDCK high */
467 udelay(1);
468 }
469 #else
470 if (data) {
471 PutWord(XIRCREG2_GPR2-1, 0x0e0e);
472 udelay(1);
473 PutWord(XIRCREG2_GPR2-1, 0x0f0f);
474 udelay(1);
475 } else {
476 PutWord(XIRCREG2_GPR2-1, 0x0c0c);
477 udelay(1);
478 PutWord(XIRCREG2_GPR2-1, 0x0d0d);
479 udelay(1);
480 }
481 #endif
482}
483
484/****************
485 * Get a bit from MDI/O
486 */
487static int
Olof Johansson906da802008-02-04 22:27:35 -0800488mii_getbit(unsigned int ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 unsigned d;
491
492 PutByte(XIRCREG2_GPR2, 4|0); /* drive MDCK low */
493 udelay(1);
494 d = GetByte(XIRCREG2_GPR2); /* read MDIO */
495 PutByte(XIRCREG2_GPR2, 4|1); /* drive MDCK high again */
496 udelay(1);
497 return d & 0x20; /* read MDIO */
498}
499
500static void
Olof Johansson906da802008-02-04 22:27:35 -0800501mii_wbits(unsigned int ioaddr, unsigned data, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 unsigned m = 1 << (len-1);
504 for (; m; m >>= 1)
505 mii_putbit(ioaddr, data & m);
506}
507
508static unsigned
Olof Johansson906da802008-02-04 22:27:35 -0800509mii_rd(unsigned int ioaddr, u_char phyaddr, u_char phyreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 int i;
512 unsigned data=0, m;
513
514 SelectPage(2);
515 for (i=0; i < 32; i++) /* 32 bit preamble */
516 mii_putbit(ioaddr, 1);
517 mii_wbits(ioaddr, 0x06, 4); /* Start and opcode for read */
518 mii_wbits(ioaddr, phyaddr, 5); /* PHY address to be accessed */
519 mii_wbits(ioaddr, phyreg, 5); /* PHY register to read */
520 mii_idle(ioaddr); /* turn around */
521 mii_getbit(ioaddr);
522
523 for (m = 1<<15; m; m >>= 1)
524 if (mii_getbit(ioaddr))
525 data |= m;
526 mii_idle(ioaddr);
527 return data;
528}
529
530static void
Olof Johansson906da802008-02-04 22:27:35 -0800531mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg, unsigned data,
532 int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 int i;
535
536 SelectPage(2);
537 for (i=0; i < 32; i++) /* 32 bit preamble */
538 mii_putbit(ioaddr, 1);
539 mii_wbits(ioaddr, 0x05, 4); /* Start and opcode for write */
540 mii_wbits(ioaddr, phyaddr, 5); /* PHY address to be accessed */
541 mii_wbits(ioaddr, phyreg, 5); /* PHY Register to write */
542 mii_putbit(ioaddr, 1); /* turn around */
543 mii_putbit(ioaddr, 0);
544 mii_wbits(ioaddr, data, len); /* And write the data */
545 mii_idle(ioaddr);
546}
547
548/*============= Main bulk of functions =========================*/
549
Stephen Hemminger0cd6e822009-03-20 19:36:08 +0000550static const struct net_device_ops netdev_ops = {
551 .ndo_open = do_open,
552 .ndo_stop = do_stop,
553 .ndo_start_xmit = do_start_xmit,
554 .ndo_tx_timeout = xirc_tx_timeout,
555 .ndo_set_config = do_config,
556 .ndo_do_ioctl = do_ioctl,
557 .ndo_set_multicast_list = set_multicast_list,
558 .ndo_change_mtu = eth_change_mtu,
559 .ndo_set_mac_address = eth_mac_addr,
560 .ndo_validate_addr = eth_validate_addr,
561};
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563/****************
564 * xirc2ps_attach() creates an "instance" of the driver, allocating
565 * local data structures for one device. The device is registered
566 * with Card Services.
567 *
568 * The dev_link structure is initialized, but we don't actually
569 * configure the card at this point -- we wait until we receive a
570 * card insertion event.
571 */
572
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100573static int
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200574xirc2ps_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 struct net_device *dev;
577 local_info_t *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 DEBUG(0, "attach()\n");
580
581 /* Allocate the device structure */
582 dev = alloc_etherdev(sizeof(local_info_t));
583 if (!dev)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100584 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 local = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +0000586 local->dev = dev;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200587 local->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 link->priv = dev;
589
590 /* General socket configuration */
591 link->conf.Attributes = CONF_ENABLE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 link->conf.IntType = INT_MEMORY_AND_IO;
593 link->conf.ConfigIndex = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 link->irq.Handler = xirc2ps_interrupt;
595 link->irq.Instance = dev;
596
597 /* Fill in card specific entries */
Stephen Hemminger0cd6e822009-03-20 19:36:08 +0000598 dev->netdev_ops = &netdev_ops;
599 dev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 dev->watchdog_timeo = TX_TIMEOUT;
David Howellsc4028952006-11-22 14:57:56 +0000601 INIT_WORK(&local->tx_timeout_task, xirc2ps_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200603 return xirc2ps_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604} /* xirc2ps_attach */
605
606/****************
607 * This deletes a driver "instance". The device is de-registered
608 * with Card Services. If it has been released, all local data
609 * structures are freed. Otherwise, the structures will be freed
610 * when the device is released.
611 */
612
613static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200614xirc2ps_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 struct net_device *dev = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 DEBUG(0, "detach(0x%p)\n", link);
619
Dominik Brodowskifd238232006-03-05 10:45:09 +0100620 if (link->dev_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 unregister_netdev(dev);
622
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100623 xirc2ps_release(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 free_netdev(dev);
626} /* xirc2ps_detach */
627
628/****************
629 * Detect the type of the card. s is the buffer with the data of tuple 0x20
630 * Returns: 0 := not supported
631 * mediaid=11 and prodid=47
632 * Media-Id bits:
633 * Ethernet 0x01
634 * Tokenring 0x02
635 * Arcnet 0x04
636 * Wireless 0x08
637 * Modem 0x10
638 * GSM only 0x20
639 * Prod-Id bits:
640 * Pocket 0x10
641 * External 0x20
642 * Creditcard 0x40
643 * Cardbus 0x80
644 *
645 */
646static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200647set_card_type(struct pcmcia_device *link, const void *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 struct net_device *dev = link->priv;
650 local_info_t *local = netdev_priv(dev);
651 #ifdef PCMCIA_DEBUG
652 unsigned cisrev = ((const unsigned char *)s)[2];
653 #endif
654 unsigned mediaid= ((const unsigned char *)s)[3];
655 unsigned prodid = ((const unsigned char *)s)[4];
656
657 DEBUG(0, "cisrev=%02x mediaid=%02x prodid=%02x\n",
658 cisrev, mediaid, prodid);
659
660 local->mohawk = 0;
661 local->dingo = 0;
662 local->modem = 0;
663 local->card_type = XIR_UNKNOWN;
664 if (!(prodid & 0x40)) {
665 printk(KNOT_XIRC "Ooops: Not a creditcard\n");
666 return 0;
667 }
668 if (!(mediaid & 0x01)) {
669 printk(KNOT_XIRC "Not an Ethernet card\n");
670 return 0;
671 }
672 if (mediaid & 0x10) {
673 local->modem = 1;
674 switch(prodid & 15) {
675 case 1: local->card_type = XIR_CEM ; break;
676 case 2: local->card_type = XIR_CEM2 ; break;
677 case 3: local->card_type = XIR_CEM3 ; break;
678 case 4: local->card_type = XIR_CEM33 ; break;
679 case 5: local->card_type = XIR_CEM56M;
680 local->mohawk = 1;
681 break;
682 case 6:
683 case 7: /* 7 is the RealPort 10/56 */
684 local->card_type = XIR_CEM56 ;
685 local->mohawk = 1;
686 local->dingo = 1;
687 break;
688 }
689 } else {
690 switch(prodid & 15) {
691 case 1: local->card_type = has_ce2_string(link)? XIR_CE2 : XIR_CE ;
692 break;
693 case 2: local->card_type = XIR_CE2; break;
694 case 3: local->card_type = XIR_CE3;
695 local->mohawk = 1;
696 break;
697 }
698 }
699 if (local->card_type == XIR_CE || local->card_type == XIR_CEM) {
700 printk(KNOT_XIRC "Sorry, this is an old CE card\n");
701 return 0;
702 }
703 if (local->card_type == XIR_UNKNOWN)
704 printk(KNOT_XIRC "unknown card (mediaid=%02x prodid=%02x)\n",
705 mediaid, prodid);
706
707 return 1;
708}
709
710/****************
711 * There are some CE2 cards out which claim to be a CE card.
712 * This function looks for a "CE2" in the 3rd version field.
713 * Returns: true if this is a CE2
714 */
715static int
Dominik Brodowskia9606fd2006-06-04 18:06:13 +0200716has_ce2_string(struct pcmcia_device * p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Dominik Brodowskia9606fd2006-06-04 18:06:13 +0200718 if (p_dev->prod_id[2] && strstr(p_dev->prod_id[2], "CE2"))
719 return 1;
720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200723static int
724xirc2ps_config_modem(struct pcmcia_device *p_dev,
725 cistpl_cftable_entry_t *cf,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200726 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200727 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200728 void *priv_data)
729{
730 unsigned int ioaddr;
731
732 if (cf->io.nwin > 0 && (cf->io.win[0].base & 0xf) == 8) {
733 for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200734 p_dev->io.BasePort2 = cf->io.win[0].base;
735 p_dev->io.BasePort1 = ioaddr;
736 if (!pcmcia_request_io(p_dev, &p_dev->io))
737 return 0;
738 }
739 }
740 return -ENODEV;
741}
742
743static int
744xirc2ps_config_check(struct pcmcia_device *p_dev,
745 cistpl_cftable_entry_t *cf,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200746 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200747 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200748 void *priv_data)
749{
750 int *pass = priv_data;
751
752 if (cf->io.nwin > 0 && (cf->io.win[0].base & 0xf) == 8) {
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200753 p_dev->io.BasePort2 = cf->io.win[0].base;
754 p_dev->io.BasePort1 = p_dev->io.BasePort2
755 + (*pass ? (cf->index & 0x20 ? -24:8)
756 : (cf->index & 0x20 ? 8:-24));
757 if (!pcmcia_request_io(p_dev, &p_dev->io))
758 return 0;
759 }
760 return -ENODEV;
761
762}
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/****************
765 * xirc2ps_config() is scheduled to run after a CARD_INSERTION event
766 * is received, to configure the PCMCIA socket, and to make the
767 * ethernet device available to the system.
768 */
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200769static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200770xirc2ps_config(struct pcmcia_device * link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct net_device *dev = link->priv;
773 local_info_t *local = netdev_priv(dev);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200774 unsigned int ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 tuple_t tuple;
776 cisparse_t parse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 int err, i;
778 u_char buf[64];
779 cistpl_lan_node_id_t *node_id = (cistpl_lan_node_id_t*)parse.funce.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 local->dingo_ccr = NULL;
782
783 DEBUG(0, "config(0x%p)\n", link);
784
785 /*
786 * This reads the card's CONFIG tuple to find its configuration
787 * registers.
788 */
789 tuple.Attributes = 0;
790 tuple.TupleData = buf;
791 tuple.TupleDataMax = 64;
792 tuple.TupleOffset = 0;
793
794 /* Is this a valid card */
Dominik Brodowski7d2e8d02009-10-18 18:22:32 +0200795 if (link->has_manf_id == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 printk(KNOT_XIRC "manfid not found in CIS\n");
797 goto failure;
798 }
799
Dominik Brodowski7d2e8d02009-10-18 18:22:32 +0200800 switch (link->manf_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 case MANFID_XIRCOM:
802 local->manf_str = "Xircom";
803 break;
804 case MANFID_ACCTON:
805 local->manf_str = "Accton";
806 break;
807 case MANFID_COMPAQ:
808 case MANFID_COMPAQ2:
809 local->manf_str = "Compaq";
810 break;
811 case MANFID_INTEL:
812 local->manf_str = "Intel";
813 break;
814 case MANFID_TOSHIBA:
815 local->manf_str = "Toshiba";
816 break;
817 default:
818 printk(KNOT_XIRC "Unknown Card Manufacturer ID: 0x%04x\n",
819 (unsigned)parse.manfid.manf);
820 goto failure;
821 }
822 DEBUG(0, "found %s card\n", local->manf_str);
823
Dominik Brodowski7d2e8d02009-10-18 18:22:32 +0200824 /* needed for the additional fields to be parsed by set_card_type() */
825 tuple.DesiredTuple = CISTPL_MANFID;
826 err = first_tuple(link, &tuple, &parse)
827 if (err) {
828 printk(KNOT_XIRC "manfid not found in CIS\n");
829 goto failure;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (!set_card_type(link, buf)) {
832 printk(KNOT_XIRC "this card is not supported\n");
833 goto failure;
834 }
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* get the ethernet address from the CIS */
837 tuple.DesiredTuple = CISTPL_FUNCE;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200838 for (err = first_tuple(link, &tuple, &parse); !err;
839 err = next_tuple(link, &tuple, &parse)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* Once I saw two CISTPL_FUNCE_LAN_NODE_ID entries:
841 * the first one with a length of zero the second correct -
842 * so I skip all entries with length 0 */
843 if (parse.funce.type == CISTPL_FUNCE_LAN_NODE_ID
844 && ((cistpl_lan_node_id_t *)parse.funce.data)->nb)
845 break;
846 }
847 if (err) { /* not found: try to get the node-id from tuple 0x89 */
848 tuple.DesiredTuple = 0x89; /* data layout looks like tuple 0x22 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200849 if ((err = pcmcia_get_first_tuple(link, &tuple)) == 0 &&
850 (err = pcmcia_get_tuple_data(link, &tuple)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (tuple.TupleDataLen == 8 && *buf == CISTPL_FUNCE_LAN_NODE_ID)
852 memcpy(&parse, buf, 8);
853 else
854 err = -1;
855 }
856 }
857 if (err) { /* another try (James Lehmer's CE2 version 4.1)*/
858 tuple.DesiredTuple = CISTPL_FUNCE;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200859 for (err = first_tuple(link, &tuple, &parse); !err;
860 err = next_tuple(link, &tuple, &parse)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (parse.funce.type == 0x02 && parse.funce.data[0] == 1
862 && parse.funce.data[1] == 6 && tuple.TupleDataLen == 13) {
863 buf[1] = 4;
864 memcpy(&parse, buf+1, 8);
865 break;
866 }
867 }
868 }
869 if (err) {
870 printk(KNOT_XIRC "node-id not found in CIS\n");
871 goto failure;
872 }
873 node_id = (cistpl_lan_node_id_t *)parse.funce.data;
874 if (node_id->nb != 6) {
875 printk(KNOT_XIRC "malformed node-id in CIS\n");
876 goto failure;
877 }
878 for (i=0; i < 6; i++)
879 dev->dev_addr[i] = node_id->id[i];
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 link->io.IOAddrLines =10;
882 link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
883 link->irq.Attributes = IRQ_HANDLE_PRESENT;
884 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
885 if (local->modem) {
886 int pass;
887
888 if (do_sound) {
889 link->conf.Attributes |= CONF_ENABLE_SPKR;
890 link->conf.Status |= CCSR_AUDIO_ENA;
891 }
892 link->irq.Attributes |= IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED ;
893 link->io.NumPorts2 = 8;
894 link->io.Attributes2 = IO_DATA_PATH_WIDTH_8;
895 if (local->dingo) {
896 /* Take the Modem IO port from the CIS and scan for a free
897 * Ethernet port */
898 link->io.NumPorts1 = 16; /* no Mako stuff anymore */
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200899 if (!pcmcia_loop_config(link, xirc2ps_config_modem, NULL))
900 goto port_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 } else {
902 link->io.NumPorts1 = 18;
903 /* We do 2 passes here: The first one uses the regular mapping and
904 * the second tries again, thereby considering that the 32 ports are
905 * mirrored every 32 bytes. Actually we use a mirrored port for
906 * the Mako if (on the first pass) the COR bit 5 is set.
907 */
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200908 for (pass=0; pass < 2; pass++)
909 if (!pcmcia_loop_config(link, xirc2ps_config_check, &pass))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 goto port_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* if special option:
912 * try to configure as Ethernet only.
913 * .... */
914 }
915 printk(KNOT_XIRC "no ports available\n");
916 } else {
Komuro5e7bf8c2007-10-28 11:26:17 +0900917 link->irq.Attributes |= IRQ_TYPE_DYNAMIC_SHARING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 link->io.NumPorts1 = 16;
919 for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
920 link->io.BasePort1 = ioaddr;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200921 if (!(err=pcmcia_request_io(link, &link->io)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 goto port_found;
923 }
924 link->io.BasePort1 = 0; /* let CS decide */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200925 if ((err=pcmcia_request_io(link, &link->io))) {
926 cs_error(link, RequestIO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 goto config_error;
928 }
929 }
930 port_found:
931 if (err)
932 goto config_error;
933
934 /****************
935 * Now allocate an interrupt line. Note that this does not
936 * actually assign a handler to the interrupt.
937 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200938 if ((err=pcmcia_request_irq(link, &link->irq))) {
939 cs_error(link, RequestIRQ, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 goto config_error;
941 }
942
943 /****************
944 * This actually configures the PCMCIA socket -- setting up
945 * the I/O windows and the interrupt mapping.
946 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200947 if ((err=pcmcia_request_configuration(link, &link->conf))) {
948 cs_error(link, RequestConfiguration, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 goto config_error;
950 }
951
952 if (local->dingo) {
953 conf_reg_t reg;
954 win_req_t req;
955 memreq_t mem;
956
957 /* Reset the modem's BAR to the correct value
958 * This is necessary because in the RequestConfiguration call,
959 * the base address of the ethernet port (BasePort1) is written
960 * to the BAR registers of the modem.
961 */
962 reg.Action = CS_WRITE;
963 reg.Offset = CISREG_IOBASE_0;
964 reg.Value = link->io.BasePort2 & 0xff;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200965 if ((err = pcmcia_access_configuration_register(link, &reg))) {
966 cs_error(link, AccessConfigurationRegister, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 goto config_error;
968 }
969 reg.Action = CS_WRITE;
970 reg.Offset = CISREG_IOBASE_1;
971 reg.Value = (link->io.BasePort2 >> 8) & 0xff;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200972 if ((err = pcmcia_access_configuration_register(link, &reg))) {
973 cs_error(link, AccessConfigurationRegister, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 goto config_error;
975 }
976
977 /* There is no config entry for the Ethernet part which
978 * is at 0x0800. So we allocate a window into the attribute
979 * memory and write direct to the CIS registers
980 */
981 req.Attributes = WIN_DATA_WIDTH_8|WIN_MEMORY_TYPE_AM|WIN_ENABLE;
982 req.Base = req.Size = 0;
983 req.AccessSpeed = 0;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200984 if ((err = pcmcia_request_window(&link, &req, &link->win))) {
985 cs_error(link, RequestWindow, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 goto config_error;
987 }
988 local->dingo_ccr = ioremap(req.Base,0x1000) + 0x0800;
989 mem.CardOffset = 0x0;
990 mem.Page = 0;
991 if ((err = pcmcia_map_mem_page(link->win, &mem))) {
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200992 cs_error(link, MapMemPage, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 goto config_error;
994 }
995
996 /* Setup the CCRs; there are no infos in the CIS about the Ethernet
997 * part.
998 */
999 writeb(0x47, local->dingo_ccr + CISREG_COR);
1000 ioaddr = link->io.BasePort1;
1001 writeb(ioaddr & 0xff , local->dingo_ccr + CISREG_IOBASE_0);
1002 writeb((ioaddr >> 8)&0xff , local->dingo_ccr + CISREG_IOBASE_1);
1003
1004 #if 0
1005 {
1006 u_char tmp;
1007 printk(KERN_INFO "ECOR:");
1008 for (i=0; i < 7; i++) {
1009 tmp = readb(local->dingo_ccr + i*2);
1010 printk(" %02x", tmp);
1011 }
1012 printk("\n");
1013 printk(KERN_INFO "DCOR:");
1014 for (i=0; i < 4; i++) {
1015 tmp = readb(local->dingo_ccr + 0x20 + i*2);
1016 printk(" %02x", tmp);
1017 }
1018 printk("\n");
1019 printk(KERN_INFO "SCOR:");
1020 for (i=0; i < 10; i++) {
1021 tmp = readb(local->dingo_ccr + 0x40 + i*2);
1022 printk(" %02x", tmp);
1023 }
1024 printk("\n");
1025 }
1026 #endif
1027
1028 writeb(0x01, local->dingo_ccr + 0x20);
1029 writeb(0x0c, local->dingo_ccr + 0x22);
1030 writeb(0x00, local->dingo_ccr + 0x24);
1031 writeb(0x00, local->dingo_ccr + 0x26);
1032 writeb(0x00, local->dingo_ccr + 0x28);
1033 }
1034
1035 /* The if_port symbol can be set when the module is loaded */
1036 local->probe_port=0;
1037 if (!if_port) {
1038 local->probe_port = dev->if_port = 1;
1039 } else if ((if_port >= 1 && if_port <= 2) ||
1040 (local->mohawk && if_port==4))
1041 dev->if_port = if_port;
1042 else
1043 printk(KNOT_XIRC "invalid if_port requested\n");
1044
1045 /* we can now register the device with the net subsystem */
1046 dev->irq = link->irq.AssignedIRQ;
1047 dev->base_addr = link->io.BasePort1;
1048
1049 if (local->dingo)
1050 do_reset(dev, 1); /* a kludge to make the cem56 work */
1051
Dominik Brodowskifd238232006-03-05 10:45:09 +01001052 link->dev_node = &local->node;
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001053 SET_NETDEV_DEV(dev, &handle_to_dev(link));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 if ((err=register_netdev(dev))) {
1056 printk(KNOT_XIRC "register_netdev() failed\n");
Dominik Brodowskifd238232006-03-05 10:45:09 +01001057 link->dev_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 goto config_error;
1059 }
1060
1061 strcpy(local->node.dev_name, dev->name);
1062
1063 /* give some infos about the hardware */
Johannes Berge1749612008-10-27 15:59:26 -07001064 printk(KERN_INFO "%s: %s: port %#3lx, irq %d, hwaddr %pM\n",
Joe Perches0795af52007-10-03 17:59:30 -07001065 dev->name, local->manf_str,(u_long)dev->base_addr, (int)dev->irq,
Johannes Berge1749612008-10-27 15:59:26 -07001066 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02001068 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 config_error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 xirc2ps_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02001072 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 failure:
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02001075 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076} /* xirc2ps_config */
1077
1078/****************
1079 * After a card is removed, xirc2ps_release() will unregister the net
1080 * device, and release the PCMCIA configuration. If the device is
1081 * still open, this will be postponed until it is closed.
1082 */
1083static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001084xirc2ps_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +01001086 DEBUG(0, "release(0x%p)\n", link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +01001088 if (link->win) {
1089 struct net_device *dev = link->priv;
1090 local_info_t *local = netdev_priv(dev);
1091 if (local->dingo)
1092 iounmap(local->dingo_ccr - 0x0800);
1093 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001094 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095} /* xirc2ps_release */
1096
1097/*====================================================================*/
1098
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001099
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001100static int xirc2ps_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001101{
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001102 struct net_device *dev = link->priv;
1103
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001104 if (link->open) {
1105 netif_device_detach(dev);
1106 do_powerdown(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001107 }
1108
1109 return 0;
1110}
1111
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001112static int xirc2ps_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001113{
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001114 struct net_device *dev = link->priv;
1115
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001116 if (link->open) {
Dominik Brodowski8661bb52006-03-02 00:02:33 +01001117 do_reset(dev,1);
1118 netif_device_attach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001119 }
1120
1121 return 0;
1122}
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125/*====================================================================*/
1126
1127/****************
1128 * This is the Interrupt service route.
1129 */
1130static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001131xirc2ps_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 struct net_device *dev = (struct net_device *)dev_id;
1134 local_info_t *lp = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001135 unsigned int ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 u_char saved_page;
1137 unsigned bytes_rcvd;
1138 unsigned int_status, eth_status, rx_status, tx_status;
1139 unsigned rsr, pktlen;
1140 ulong start_ticks = jiffies; /* fixme: jiffies rollover every 497 days
1141 * is this something to worry about?
1142 * -- on a laptop?
1143 */
1144
1145 if (!netif_device_present(dev))
1146 return IRQ_HANDLED;
1147
1148 ioaddr = dev->base_addr;
1149 if (lp->mohawk) { /* must disable the interrupt */
1150 PutByte(XIRCREG_CR, 0);
1151 }
1152
1153 DEBUG(6, "%s: interrupt %d at %#x.\n", dev->name, irq, ioaddr);
1154
1155 saved_page = GetByte(XIRCREG_PR);
1156 /* Read the ISR to see whats the cause for the interrupt.
1157 * This also clears the interrupt flags on CE2 cards
1158 */
1159 int_status = GetByte(XIRCREG_ISR);
1160 bytes_rcvd = 0;
1161 loop_entry:
1162 if (int_status == 0xff) { /* card may be ejected */
1163 DEBUG(3, "%s: interrupt %d for dead card\n", dev->name, irq);
1164 goto leave;
1165 }
1166 eth_status = GetByte(XIRCREG_ESR);
1167
1168 SelectPage(0x40);
1169 rx_status = GetByte(XIRCREG40_RXST0);
1170 PutByte(XIRCREG40_RXST0, (~rx_status & 0xff));
1171 tx_status = GetByte(XIRCREG40_TXST0);
1172 tx_status |= GetByte(XIRCREG40_TXST1) << 8;
1173 PutByte(XIRCREG40_TXST0, 0);
1174 PutByte(XIRCREG40_TXST1, 0);
1175
1176 DEBUG(3, "%s: ISR=%#2.2x ESR=%#2.2x RSR=%#2.2x TSR=%#4.4x\n",
1177 dev->name, int_status, eth_status, rx_status, tx_status);
1178
1179 /***** receive section ******/
1180 SelectPage(0);
1181 while (eth_status & FullPktRcvd) {
1182 rsr = GetByte(XIRCREG0_RSR);
1183 if (bytes_rcvd > maxrx_bytes && (rsr & PktRxOk)) {
1184 /* too many bytes received during this int, drop the rest of the
1185 * packets */
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001186 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 DEBUG(2, "%s: RX drop, too much done\n", dev->name);
1188 } else if (rsr & PktRxOk) {
1189 struct sk_buff *skb;
1190
1191 pktlen = GetWord(XIRCREG0_RBC);
1192 bytes_rcvd += pktlen;
1193
1194 DEBUG(5, "rsr=%#02x packet_length=%u\n", rsr, pktlen);
1195
1196 skb = dev_alloc_skb(pktlen+3); /* 1 extra so we can use insw */
1197 if (!skb) {
1198 printk(KNOT_XIRC "low memory, packet dropped (size=%u)\n",
1199 pktlen);
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001200 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 } else { /* okay get the packet */
1202 skb_reserve(skb, 2);
1203 if (lp->silicon == 0 ) { /* work around a hardware bug */
1204 unsigned rhsa; /* receive start address */
1205
1206 SelectPage(5);
1207 rhsa = GetWord(XIRCREG5_RHSA0);
1208 SelectPage(0);
1209 rhsa += 3; /* skip control infos */
1210 if (rhsa >= 0x8000)
1211 rhsa = 0;
1212 if (rhsa + pktlen > 0x8000) {
1213 unsigned i;
1214 u_char *buf = skb_put(skb, pktlen);
1215 for (i=0; i < pktlen ; i++, rhsa++) {
1216 buf[i] = GetByte(XIRCREG_EDP);
1217 if (rhsa == 0x8000) {
1218 rhsa = 0;
1219 i--;
1220 }
1221 }
1222 } else {
1223 insw(ioaddr+XIRCREG_EDP,
1224 skb_put(skb, pktlen), (pktlen+1)>>1);
1225 }
1226 }
1227 #if 0
1228 else if (lp->mohawk) {
1229 /* To use this 32 bit access we should use
1230 * a manual optimized loop
1231 * Also the words are swapped, we can get more
1232 * performance by using 32 bit access and swapping
1233 * the words in a register. Will need this for cardbus
1234 *
1235 * Note: don't forget to change the ALLOC_SKB to .. +3
1236 */
1237 unsigned i;
1238 u_long *p = skb_put(skb, pktlen);
1239 register u_long a;
Olof Johansson906da802008-02-04 22:27:35 -08001240 unsigned int edpreg = ioaddr+XIRCREG_EDP-2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 for (i=0; i < len ; i += 4, p++) {
1242 a = inl(edpreg);
1243 __asm__("rorl $16,%0\n\t"
1244 :"=q" (a)
1245 : "0" (a));
1246 *p = a;
1247 }
1248 }
1249 #endif
1250 else {
1251 insw(ioaddr+XIRCREG_EDP, skb_put(skb, pktlen),
1252 (pktlen+1)>>1);
1253 }
1254 skb->protocol = eth_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 netif_rx(skb);
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001256 dev->stats.rx_packets++;
1257 dev->stats.rx_bytes += pktlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (!(rsr & PhyPkt))
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001259 dev->stats.multicast++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261 } else { /* bad packet */
1262 DEBUG(5, "rsr=%#02x\n", rsr);
1263 }
1264 if (rsr & PktTooLong) {
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001265 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 DEBUG(3, "%s: Packet too long\n", dev->name);
1267 }
1268 if (rsr & CRCErr) {
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001269 dev->stats.rx_crc_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 DEBUG(3, "%s: CRC error\n", dev->name);
1271 }
1272 if (rsr & AlignErr) {
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001273 dev->stats.rx_fifo_errors++; /* okay ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 DEBUG(3, "%s: Alignment error\n", dev->name);
1275 }
1276
1277 /* clear the received/dropped/error packet */
1278 PutWord(XIRCREG0_DO, 0x8000); /* issue cmd: skip_rx_packet */
1279
1280 /* get the new ethernet status */
1281 eth_status = GetByte(XIRCREG_ESR);
1282 }
1283 if (rx_status & 0x10) { /* Receive overrun */
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001284 dev->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 PutByte(XIRCREG_CR, ClearRxOvrun);
1286 DEBUG(3, "receive overrun cleared\n");
1287 }
1288
1289 /***** transmit section ******/
1290 if (int_status & PktTxed) {
1291 unsigned n, nn;
1292
1293 n = lp->last_ptr_value;
1294 nn = GetByte(XIRCREG0_PTR);
1295 lp->last_ptr_value = nn;
1296 if (nn < n) /* rollover */
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001297 dev->stats.tx_packets += 256 - n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 else if (n == nn) { /* happens sometimes - don't know why */
1299 DEBUG(0, "PTR not changed?\n");
1300 } else
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001301 dev->stats.tx_packets += lp->last_ptr_value - n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 netif_wake_queue(dev);
1303 }
1304 if (tx_status & 0x0002) { /* Execessive collissions */
1305 DEBUG(0, "tx restarted due to execssive collissions\n");
1306 PutByte(XIRCREG_CR, RestartTx); /* restart transmitter process */
1307 }
1308 if (tx_status & 0x0040)
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001309 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 /* recalculate our work chunk so that we limit the duration of this
1312 * ISR to about 1/10 of a second.
1313 * Calculate only if we received a reasonable amount of bytes.
1314 */
1315 if (bytes_rcvd > 1000) {
1316 u_long duration = jiffies - start_ticks;
1317
1318 if (duration >= HZ/10) { /* if more than about 1/10 second */
1319 maxrx_bytes = (bytes_rcvd * (HZ/10)) / duration;
1320 if (maxrx_bytes < 2000)
1321 maxrx_bytes = 2000;
1322 else if (maxrx_bytes > 22000)
1323 maxrx_bytes = 22000;
1324 DEBUG(1, "set maxrx=%u (rcvd=%u ticks=%lu)\n",
1325 maxrx_bytes, bytes_rcvd, duration);
1326 } else if (!duration && maxrx_bytes < 22000) {
1327 /* now much faster */
1328 maxrx_bytes += 2000;
1329 if (maxrx_bytes > 22000)
1330 maxrx_bytes = 22000;
1331 DEBUG(1, "set maxrx=%u\n", maxrx_bytes);
1332 }
1333 }
1334
1335 leave:
1336 if (lockup_hack) {
1337 if (int_status != 0xff && (int_status = GetByte(XIRCREG_ISR)) != 0)
1338 goto loop_entry;
1339 }
1340 SelectPage(saved_page);
1341 PutByte(XIRCREG_CR, EnableIntr); /* re-enable interrupts */
1342 /* Instead of dropping packets during a receive, we could
1343 * force an interrupt with this command:
1344 * PutByte(XIRCREG_CR, EnableIntr|ForceIntr);
1345 */
1346 return IRQ_HANDLED;
1347} /* xirc2ps_interrupt */
1348
1349/*====================================================================*/
1350
1351static void
David Howellsc4028952006-11-22 14:57:56 +00001352xirc2ps_tx_timeout_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
David Howellsc4028952006-11-22 14:57:56 +00001354 local_info_t *local =
1355 container_of(work, local_info_t, tx_timeout_task);
1356 struct net_device *dev = local->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 /* reset the card */
1358 do_reset(dev,1);
1359 dev->trans_start = jiffies;
1360 netif_wake_queue(dev);
1361}
1362
Joerg Ahrens9a469ab2006-08-20 21:51:57 +01001363static void
Arjan van de Vened4cb132008-10-05 07:35:05 +00001364xirc_tx_timeout(struct net_device *dev)
Joerg Ahrens9a469ab2006-08-20 21:51:57 +01001365{
1366 local_info_t *lp = netdev_priv(dev);
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001367 dev->stats.tx_errors++;
Joerg Ahrens9a469ab2006-08-20 21:51:57 +01001368 printk(KERN_NOTICE "%s: transmit timed out\n", dev->name);
1369 schedule_work(&lp->tx_timeout_task);
1370}
1371
Stephen Hemmingerdbf02fa2009-08-31 19:50:49 +00001372static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373do_start_xmit(struct sk_buff *skb, struct net_device *dev)
1374{
1375 local_info_t *lp = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001376 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 int okay;
1378 unsigned freespace;
Eric Sesterhennda4f5cc2006-06-21 16:10:48 +02001379 unsigned pktlen = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 DEBUG(1, "do_start_xmit(skb=%p, dev=%p) len=%u\n",
1382 skb, dev, pktlen);
1383
1384
1385 /* adjust the packet length to min. required
1386 * and hope that the buffer is large enough
1387 * to provide some random data.
1388 * fixme: For Mohawk we can change this by sending
1389 * a larger packetlen than we actually have; the chip will
1390 * pad this in his buffer with random bytes
1391 */
1392 if (pktlen < ETH_ZLEN)
1393 {
Herbert Xu5b057c62006-06-23 02:06:41 -07001394 if (skb_padto(skb, ETH_ZLEN))
Patrick McHardy6ed10652009-06-23 06:03:08 +00001395 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 pktlen = ETH_ZLEN;
1397 }
1398
1399 netif_stop_queue(dev);
1400 SelectPage(0);
1401 PutWord(XIRCREG0_TRS, (u_short)pktlen+2);
1402 freespace = GetWord(XIRCREG0_TSO);
1403 okay = freespace & 0x8000;
1404 freespace &= 0x7fff;
1405 /* TRS doesn't work - (indeed it is eliminated with sil-rev 1) */
1406 okay = pktlen +2 < freespace;
1407 DEBUG(2 + (okay ? 2 : 0), "%s: avail. tx space=%u%s\n",
1408 dev->name, freespace, okay ? " (okay)":" (not enough)");
1409 if (!okay) { /* not enough space */
Patrick McHardy5b548142009-06-12 06:22:29 +00001410 return NETDEV_TX_BUSY; /* upper layer may decide to requeue this packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412 /* send the packet */
1413 PutWord(XIRCREG_EDP, (u_short)pktlen);
1414 outsw(ioaddr+XIRCREG_EDP, skb->data, pktlen>>1);
1415 if (pktlen & 1)
1416 PutByte(XIRCREG_EDP, skb->data[pktlen-1]);
1417
1418 if (lp->mohawk)
1419 PutByte(XIRCREG_CR, TransmitPacket|EnableIntr);
1420
1421 dev_kfree_skb (skb);
1422 dev->trans_start = jiffies;
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001423 dev->stats.tx_bytes += pktlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 netif_start_queue(dev);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001425 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428/****************
1429 * Set all addresses: This first one is the individual address,
1430 * the next 9 addresses are taken from the multicast list and
1431 * the rest is filled with the individual address.
1432 */
1433static void
1434set_addresses(struct net_device *dev)
1435{
Olof Johansson906da802008-02-04 22:27:35 -08001436 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 local_info_t *lp = netdev_priv(dev);
1438 struct dev_mc_list *dmi = dev->mc_list;
Komuro0b45d182007-05-06 09:16:53 +09001439 unsigned char *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 int i,j,k,n;
1441
1442 SelectPage(k=0x50);
1443 for (i=0,j=8,n=0; ; i++, j++) {
1444 if (i > 5) {
1445 if (++n > 9)
1446 break;
1447 i = 0;
Komuro0b45d182007-05-06 09:16:53 +09001448 if (n > 1 && n <= dev->mc_count && dmi) {
1449 dmi = dmi->next;
1450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452 if (j > 15) {
1453 j = 8;
1454 k++;
1455 SelectPage(k);
1456 }
1457
Komuro0b45d182007-05-06 09:16:53 +09001458 if (n && n <= dev->mc_count && dmi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 addr = dmi->dmi_addr;
Komuro0b45d182007-05-06 09:16:53 +09001460 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 addr = dev->dev_addr;
1462
1463 if (lp->mohawk)
1464 PutByte(j, addr[5-i]);
1465 else
1466 PutByte(j, addr[i]);
1467 }
1468 SelectPage(0);
1469}
1470
1471/****************
1472 * Set or clear the multicast filter for this adaptor.
1473 * We can filter up to 9 addresses, if more are requested we set
1474 * multicast promiscuous mode.
1475 */
1476
1477static void
1478set_multicast_list(struct net_device *dev)
1479{
Olof Johansson906da802008-02-04 22:27:35 -08001480 unsigned int ioaddr = dev->base_addr;
Komuro43fc63d2008-04-20 14:32:34 +09001481 unsigned value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 SelectPage(0x42);
Komuro43fc63d2008-04-20 14:32:34 +09001484 value = GetByte(XIRCREG42_SWC1) & 0xC0;
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (dev->flags & IFF_PROMISC) { /* snoop */
Komuro43fc63d2008-04-20 14:32:34 +09001487 PutByte(XIRCREG42_SWC1, value | 0x06); /* set MPE and PME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 } else if (dev->mc_count > 9 || (dev->flags & IFF_ALLMULTI)) {
Komuro43fc63d2008-04-20 14:32:34 +09001489 PutByte(XIRCREG42_SWC1, value | 0x02); /* set MPE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 } else if (dev->mc_count) {
1491 /* the chip can filter 9 addresses perfectly */
Komuro43fc63d2008-04-20 14:32:34 +09001492 PutByte(XIRCREG42_SWC1, value | 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 SelectPage(0x40);
1494 PutByte(XIRCREG40_CMD0, Offline);
1495 set_addresses(dev);
1496 SelectPage(0x40);
1497 PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1498 } else { /* standard usage */
Komuro43fc63d2008-04-20 14:32:34 +09001499 PutByte(XIRCREG42_SWC1, value | 0x00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501 SelectPage(0);
1502}
1503
1504static int
1505do_config(struct net_device *dev, struct ifmap *map)
1506{
1507 local_info_t *local = netdev_priv(dev);
1508
1509 DEBUG(0, "do_config(%p)\n", dev);
1510 if (map->port != 255 && map->port != dev->if_port) {
1511 if (map->port > 4)
1512 return -EINVAL;
1513 if (!map->port) {
1514 local->probe_port = 1;
1515 dev->if_port = 1;
1516 } else {
1517 local->probe_port = 0;
1518 dev->if_port = map->port;
1519 }
1520 printk(KERN_INFO "%s: switching to %s port\n",
1521 dev->name, if_names[dev->if_port]);
1522 do_reset(dev,1); /* not the fine way :-) */
1523 }
1524 return 0;
1525}
1526
1527/****************
1528 * Open the driver
1529 */
1530static int
1531do_open(struct net_device *dev)
1532{
1533 local_info_t *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001534 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 DEBUG(0, "do_open(%p)\n", dev);
1537
1538 /* Check that the PCMCIA card is still here. */
1539 /* Physical device present signature. */
Dominik Brodowski9940ec32006-03-05 11:04:33 +01001540 if (!pcmcia_dev_present(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return -ENODEV;
1542
1543 /* okay */
1544 link->open++;
1545
1546 netif_start_queue(dev);
1547 do_reset(dev,1);
1548
1549 return 0;
1550}
1551
1552static void netdev_get_drvinfo(struct net_device *dev,
1553 struct ethtool_drvinfo *info)
1554{
1555 strcpy(info->driver, "xirc2ps_cs");
1556 sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr);
1557}
1558
Jeff Garzik7282d492006-09-13 14:30:00 -04001559static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .get_drvinfo = netdev_get_drvinfo,
1561};
1562
1563static int
1564do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1565{
1566 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001567 unsigned int ioaddr = dev->base_addr;
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001568 struct mii_ioctl_data *data = if_mii(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 DEBUG(1, "%s: ioctl(%-.6s, %#04x) %04x %04x %04x %04x\n",
1571 dev->name, rq->ifr_ifrn.ifrn_name, cmd,
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001572 data->phy_id, data->reg_num, data->val_in, data->val_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 if (!local->mohawk)
1575 return -EOPNOTSUPP;
1576
1577 switch(cmd) {
1578 case SIOCGMIIPHY: /* Get the address of the PHY in use. */
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001579 data->phy_id = 0; /* we have only this address */
Adrian Bunk93b1fae2006-01-10 00:13:33 +01001580 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 case SIOCGMIIREG: /* Read the specified MII register. */
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001582 data->val_out = mii_rd(ioaddr, data->phy_id & 0x1f,
1583 data->reg_num & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 break;
1585 case SIOCSMIIREG: /* Write the specified MII register */
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001586 mii_wr(ioaddr, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in,
1587 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 break;
1589 default:
1590 return -EOPNOTSUPP;
1591 }
1592 return 0;
1593}
1594
1595static void
1596hardreset(struct net_device *dev)
1597{
1598 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001599 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 SelectPage(4);
1602 udelay(1);
1603 PutByte(XIRCREG4_GPR1, 0); /* clear bit 0: power down */
1604 msleep(40); /* wait 40 msec */
1605 if (local->mohawk)
1606 PutByte(XIRCREG4_GPR1, 1); /* set bit 0: power up */
1607 else
1608 PutByte(XIRCREG4_GPR1, 1 | 4); /* set bit 0: power up, bit 2: AIC */
1609 msleep(20); /* wait 20 msec */
1610}
1611
1612static void
1613do_reset(struct net_device *dev, int full)
1614{
1615 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001616 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 unsigned value;
1618
1619 DEBUG(0, "%s: do_reset(%p,%d)\n", dev? dev->name:"eth?", dev, full);
1620
1621 hardreset(dev);
1622 PutByte(XIRCREG_CR, SoftReset); /* set */
1623 msleep(20); /* wait 20 msec */
1624 PutByte(XIRCREG_CR, 0); /* clear */
1625 msleep(40); /* wait 40 msec */
1626 if (local->mohawk) {
1627 SelectPage(4);
1628 /* set pin GP1 and GP2 to output (0x0c)
1629 * set GP1 to low to power up the ML6692 (0x00)
1630 * set GP2 to high to power up the 10Mhz chip (0x02)
1631 */
1632 PutByte(XIRCREG4_GPR0, 0x0e);
1633 }
1634
1635 /* give the circuits some time to power up */
1636 msleep(500); /* about 500ms */
1637
1638 local->last_ptr_value = 0;
1639 local->silicon = local->mohawk ? (GetByte(XIRCREG4_BOV) & 0x70) >> 4
1640 : (GetByte(XIRCREG4_BOV) & 0x30) >> 4;
1641
1642 if (local->probe_port) {
1643 if (!local->mohawk) {
1644 SelectPage(4);
1645 PutByte(XIRCREG4_GPR0, 4);
1646 local->probe_port = 0;
1647 }
1648 } else if (dev->if_port == 2) { /* enable 10Base2 */
1649 SelectPage(0x42);
1650 PutByte(XIRCREG42_SWC1, 0xC0);
1651 } else { /* enable 10BaseT */
1652 SelectPage(0x42);
1653 PutByte(XIRCREG42_SWC1, 0x80);
1654 }
1655 msleep(40); /* wait 40 msec to let it complete */
1656
1657 #ifdef PCMCIA_DEBUG
1658 if (pc_debug) {
1659 SelectPage(0);
1660 value = GetByte(XIRCREG_ESR); /* read the ESR */
1661 printk(KERN_DEBUG "%s: ESR is: %#02x\n", dev->name, value);
1662 }
1663 #endif
1664
1665 /* setup the ECR */
1666 SelectPage(1);
1667 PutByte(XIRCREG1_IMR0, 0xff); /* allow all ints */
1668 PutByte(XIRCREG1_IMR1, 1 ); /* and Set TxUnderrunDetect */
1669 value = GetByte(XIRCREG1_ECR);
1670 #if 0
1671 if (local->mohawk)
1672 value |= DisableLinkPulse;
1673 PutByte(XIRCREG1_ECR, value);
1674 #endif
1675 DEBUG(0, "%s: ECR is: %#02x\n", dev->name, value);
1676
1677 SelectPage(0x42);
1678 PutByte(XIRCREG42_SWC0, 0x20); /* disable source insertion */
1679
1680 if (local->silicon != 1) {
1681 /* set the local memory dividing line.
1682 * The comments in the sample code say that this is only
1683 * settable with the scipper version 2 which is revision 0.
1684 * Always for CE3 cards
1685 */
1686 SelectPage(2);
1687 PutWord(XIRCREG2_RBS, 0x2000);
1688 }
1689
1690 if (full)
1691 set_addresses(dev);
1692
1693 /* Hardware workaround:
1694 * The receive byte pointer after reset is off by 1 so we need
1695 * to move the offset pointer back to 0.
1696 */
1697 SelectPage(0);
1698 PutWord(XIRCREG0_DO, 0x2000); /* change offset command, off=0 */
1699
1700 /* setup MAC IMRs and clear status registers */
1701 SelectPage(0x40); /* Bit 7 ... bit 0 */
1702 PutByte(XIRCREG40_RMASK0, 0xff); /* ROK, RAB, rsv, RO, CRC, AE, PTL, MP */
1703 PutByte(XIRCREG40_TMASK0, 0xff); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1704 PutByte(XIRCREG40_TMASK1, 0xb0); /* rsv, rsv, PTD, EXT, rsv,rsv,rsv, rsv*/
1705 PutByte(XIRCREG40_RXST0, 0x00); /* ROK, RAB, REN, RO, CRC, AE, PTL, MP */
1706 PutByte(XIRCREG40_TXST0, 0x00); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1707 PutByte(XIRCREG40_TXST1, 0x00); /* TEN, rsv, PTD, EXT, retry_counter:4 */
1708
1709 if (full && local->mohawk && init_mii(dev)) {
1710 if (dev->if_port == 4 || local->dingo || local->new_mii) {
1711 printk(KERN_INFO "%s: MII selected\n", dev->name);
1712 SelectPage(2);
1713 PutByte(XIRCREG2_MSR, GetByte(XIRCREG2_MSR) | 0x08);
1714 msleep(20);
1715 } else {
1716 printk(KERN_INFO "%s: MII detected; using 10mbs\n",
1717 dev->name);
1718 SelectPage(0x42);
1719 if (dev->if_port == 2) /* enable 10Base2 */
1720 PutByte(XIRCREG42_SWC1, 0xC0);
1721 else /* enable 10BaseT */
1722 PutByte(XIRCREG42_SWC1, 0x80);
1723 msleep(40); /* wait 40 msec to let it complete */
1724 }
1725 if (full_duplex)
1726 PutByte(XIRCREG1_ECR, GetByte(XIRCREG1_ECR | FullDuplex));
1727 } else { /* No MII */
1728 SelectPage(0);
1729 value = GetByte(XIRCREG_ESR); /* read the ESR */
1730 dev->if_port = (value & MediaSelect) ? 1 : 2;
1731 }
1732
1733 /* configure the LEDs */
1734 SelectPage(2);
1735 if (dev->if_port == 1 || dev->if_port == 4) /* TP: Link and Activity */
1736 PutByte(XIRCREG2_LED, 0x3b);
1737 else /* Coax: Not-Collision and Activity */
1738 PutByte(XIRCREG2_LED, 0x3a);
1739
1740 if (local->dingo)
1741 PutByte(0x0b, 0x04); /* 100 Mbit LED */
1742
1743 /* enable receiver and put the mac online */
1744 if (full) {
Komuro43fc63d2008-04-20 14:32:34 +09001745 set_multicast_list(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 SelectPage(0x40);
1747 PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1748 }
1749
1750 /* setup Ethernet IMR and enable interrupts */
1751 SelectPage(1);
1752 PutByte(XIRCREG1_IMR0, 0xff);
1753 udelay(1);
1754 SelectPage(0);
1755 PutByte(XIRCREG_CR, EnableIntr);
1756 if (local->modem && !local->dingo) { /* do some magic */
1757 if (!(GetByte(0x10) & 0x01))
1758 PutByte(0x10, 0x11); /* unmask master-int bit */
1759 }
1760
1761 if (full)
1762 printk(KERN_INFO "%s: media %s, silicon revision %d\n",
1763 dev->name, if_names[dev->if_port], local->silicon);
1764 /* We should switch back to page 0 to avoid a bug in revision 0
1765 * where regs with offset below 8 can't be read after an access
1766 * to the MAC registers */
1767 SelectPage(0);
1768}
1769
1770/****************
1771 * Initialize the Media-Independent-Interface
1772 * Returns: True if we have a good MII
1773 */
1774static int
1775init_mii(struct net_device *dev)
1776{
1777 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001778 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 unsigned control, status, linkpartner;
1780 int i;
1781
1782 if (if_port == 4 || if_port == 1) { /* force 100BaseT or 10BaseT */
1783 dev->if_port = if_port;
1784 local->probe_port = 0;
1785 return 1;
1786 }
1787
1788 status = mii_rd(ioaddr, 0, 1);
1789 if ((status & 0xff00) != 0x7800)
1790 return 0; /* No MII */
1791
1792 local->new_mii = (mii_rd(ioaddr, 0, 2) != 0xffff);
1793
1794 if (local->probe_port)
1795 control = 0x1000; /* auto neg */
1796 else if (dev->if_port == 4)
1797 control = 0x2000; /* no auto neg, 100mbs mode */
1798 else
1799 control = 0x0000; /* no auto neg, 10mbs mode */
1800 mii_wr(ioaddr, 0, 0, control, 16);
1801 udelay(100);
1802 control = mii_rd(ioaddr, 0, 0);
1803
1804 if (control & 0x0400) {
1805 printk(KERN_NOTICE "%s can't take PHY out of isolation mode\n",
1806 dev->name);
1807 local->probe_port = 0;
1808 return 0;
1809 }
1810
1811 if (local->probe_port) {
1812 /* according to the DP83840A specs the auto negotiation process
1813 * may take up to 3.5 sec, so we use this also for our ML6692
1814 * Fixme: Better to use a timer here!
1815 */
1816 for (i=0; i < 35; i++) {
1817 msleep(100); /* wait 100 msec */
1818 status = mii_rd(ioaddr, 0, 1);
1819 if ((status & 0x0020) && (status & 0x0004))
1820 break;
1821 }
1822
1823 if (!(status & 0x0020)) {
1824 printk(KERN_INFO "%s: autonegotiation failed;"
1825 " using 10mbs\n", dev->name);
1826 if (!local->new_mii) {
1827 control = 0x0000;
1828 mii_wr(ioaddr, 0, 0, control, 16);
1829 udelay(100);
1830 SelectPage(0);
1831 dev->if_port = (GetByte(XIRCREG_ESR) & MediaSelect) ? 1 : 2;
1832 }
1833 } else {
1834 linkpartner = mii_rd(ioaddr, 0, 5);
1835 printk(KERN_INFO "%s: MII link partner: %04x\n",
1836 dev->name, linkpartner);
1837 if (linkpartner & 0x0080) {
1838 dev->if_port = 4;
1839 } else
1840 dev->if_port = 1;
1841 }
1842 }
1843
1844 return 1;
1845}
1846
1847static void
1848do_powerdown(struct net_device *dev)
1849{
1850
Olof Johansson906da802008-02-04 22:27:35 -08001851 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853 DEBUG(0, "do_powerdown(%p)\n", dev);
1854
1855 SelectPage(4);
1856 PutByte(XIRCREG4_GPR1, 0); /* clear bit 0: power down */
1857 SelectPage(0);
1858}
1859
1860static int
1861do_stop(struct net_device *dev)
1862{
Olof Johansson906da802008-02-04 22:27:35 -08001863 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 local_info_t *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001865 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 DEBUG(0, "do_stop(%p)\n", dev);
1868
1869 if (!link)
1870 return -ENODEV;
1871
1872 netif_stop_queue(dev);
1873
1874 SelectPage(0);
1875 PutByte(XIRCREG_CR, 0); /* disable interrupts */
1876 SelectPage(0x01);
1877 PutByte(XIRCREG1_IMR0, 0x00); /* forbid all ints */
1878 SelectPage(4);
1879 PutByte(XIRCREG4_GPR1, 0); /* clear bit 0: power down */
1880 SelectPage(0);
1881
1882 link->open--;
1883 return 0;
1884}
1885
Dominik Brodowskiff07bb12005-06-27 16:28:28 -07001886static struct pcmcia_device_id xirc2ps_ids[] = {
1887 PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0089, 0x110a),
1888 PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0138, 0x110a),
1889 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM28", 0x2e3ee845, 0x0ea978ea),
1890 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM33", 0x2e3ee845, 0x80609023),
1891 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM56", 0x2e3ee845, 0xa650c32a),
1892 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "REM10", 0x2e3ee845, 0x76df1d29),
1893 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "XEM5600", 0x2e3ee845, 0xf1403719),
Komurod277ad02005-07-28 01:07:24 -07001894 PCMCIA_PFC_DEVICE_PROD_ID12(0, "Xircom", "CreditCard Ethernet+Modem II", 0x2e3ee845, 0xeca401bf),
Dominik Brodowskiff07bb12005-06-27 16:28:28 -07001895 PCMCIA_DEVICE_MANF_CARD(0x01bf, 0x010a),
1896 PCMCIA_DEVICE_PROD_ID13("Toshiba Information Systems", "TPCENET", 0x1b3b94fe, 0xf381c1a2),
1897 PCMCIA_DEVICE_PROD_ID13("Xircom", "CE3-10/100", 0x2e3ee845, 0x0ec0ac37),
1898 PCMCIA_DEVICE_PROD_ID13("Xircom", "PS-CE2-10", 0x2e3ee845, 0x947d9073),
1899 PCMCIA_DEVICE_PROD_ID13("Xircom", "R2E-100BTX", 0x2e3ee845, 0x2464a6e3),
1900 PCMCIA_DEVICE_PROD_ID13("Xircom", "RE-10", 0x2e3ee845, 0x3e08d609),
1901 PCMCIA_DEVICE_PROD_ID13("Xircom", "XE2000", 0x2e3ee845, 0xf7188e46),
1902 PCMCIA_DEVICE_PROD_ID12("Compaq", "Ethernet LAN Card", 0x54f7c49c, 0x9fd2f0a2),
1903 PCMCIA_DEVICE_PROD_ID12("Compaq", "Netelligent 10/100 PC Card", 0x54f7c49c, 0xefe96769),
1904 PCMCIA_DEVICE_PROD_ID12("Intel", "EtherExpress(TM) PRO/100 PC Card Mobile Adapter16", 0x816cc815, 0x174397db),
1905 PCMCIA_DEVICE_PROD_ID12("Toshiba", "10/100 Ethernet PC Card", 0x44a09d9c, 0xb44deecf),
1906 /* also matches CFE-10 cards! */
1907 /* PCMCIA_DEVICE_MANF_CARD(0x0105, 0x010a), */
1908 PCMCIA_DEVICE_NULL,
1909};
1910MODULE_DEVICE_TABLE(pcmcia, xirc2ps_ids);
1911
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913static struct pcmcia_driver xirc2ps_cs_driver = {
1914 .owner = THIS_MODULE,
1915 .drv = {
1916 .name = "xirc2ps_cs",
1917 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02001918 .probe = xirc2ps_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01001919 .remove = xirc2ps_detach,
Dominik Brodowskiff07bb12005-06-27 16:28:28 -07001920 .id_table = xirc2ps_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001921 .suspend = xirc2ps_suspend,
1922 .resume = xirc2ps_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923};
1924
1925static int __init
1926init_xirc2ps_cs(void)
1927{
1928 return pcmcia_register_driver(&xirc2ps_cs_driver);
1929}
1930
1931static void __exit
1932exit_xirc2ps_cs(void)
1933{
1934 pcmcia_unregister_driver(&xirc2ps_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937module_init(init_xirc2ps_cs);
1938module_exit(exit_xirc2ps_cs);
1939
1940#ifndef MODULE
1941static int __init setup_xirc2ps_cs(char *str)
1942{
1943 /* if_port, full_duplex, do_sound, lockup_hack
1944 */
1945 int ints[10] = { -1 };
1946
1947 str = get_options(str, 9, ints);
1948
1949#define MAYBE_SET(X,Y) if (ints[0] >= Y && ints[Y] != -1) { X = ints[Y]; }
1950 MAYBE_SET(if_port, 3);
1951 MAYBE_SET(full_duplex, 4);
1952 MAYBE_SET(do_sound, 5);
1953 MAYBE_SET(lockup_hack, 6);
1954#undef MAYBE_SET
1955
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001956 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
1959__setup("xirc2ps_cs=", setup_xirc2ps_cs);
1960#endif