blob: d858b5e4c4a7f1601ea856f1591bcb94fd19d9e5 [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
Joe Perches636b8112010-08-12 12:22:51 +000066#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/module.h>
69#include <linux/kernel.h>
70#include <linux/init.h>
71#include <linux/ptrace.h>
72#include <linux/slab.h>
73#include <linux/string.h>
74#include <linux/timer.h>
75#include <linux/interrupt.h>
76#include <linux/in.h>
77#include <linux/delay.h>
78#include <linux/ethtool.h>
79#include <linux/netdevice.h>
80#include <linux/etherdevice.h>
81#include <linux/skbuff.h>
82#include <linux/if_arp.h>
83#include <linux/ioport.h>
84#include <linux/bitops.h>
Ben Hutchings0fa0ee052009-09-03 10:41:17 +000085#include <linux/mii.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include <pcmcia/cs.h>
88#include <pcmcia/cistpl.h>
89#include <pcmcia/cisreg.h>
90#include <pcmcia/ciscode.h>
91
92#include <asm/io.h>
93#include <asm/system.h>
94#include <asm/uaccess.h>
95
96#ifndef MANFID_COMPAQ
97 #define MANFID_COMPAQ 0x0138
98 #define MANFID_COMPAQ2 0x0183 /* is this correct? */
99#endif
100
101#include <pcmcia/ds.h>
102
103/* Time in jiffies before concluding Tx hung */
104#define TX_TIMEOUT ((400*HZ)/1000)
105
106/****************
107 * Some constants used to access the hardware
108 */
109
110/* Register offsets and value constans */
111#define XIRCREG_CR 0 /* Command register (wr) */
112enum xirc_cr {
113 TransmitPacket = 0x01,
114 SoftReset = 0x02,
115 EnableIntr = 0x04,
116 ForceIntr = 0x08,
117 ClearTxFIFO = 0x10,
118 ClearRxOvrun = 0x20,
119 RestartTx = 0x40
120};
121#define XIRCREG_ESR 0 /* Ethernet status register (rd) */
122enum xirc_esr {
123 FullPktRcvd = 0x01, /* full packet in receive buffer */
124 PktRejected = 0x04, /* a packet has been rejected */
125 TxPktPend = 0x08, /* TX Packet Pending */
126 IncorPolarity = 0x10,
127 MediaSelect = 0x20 /* set if TP, clear if AUI */
128};
129#define XIRCREG_PR 1 /* Page Register select */
130#define XIRCREG_EDP 4 /* Ethernet Data Port Register */
131#define XIRCREG_ISR 6 /* Ethernet Interrupt Status Register */
132enum xirc_isr {
133 TxBufOvr = 0x01, /* TX Buffer Overflow */
134 PktTxed = 0x02, /* Packet Transmitted */
135 MACIntr = 0x04, /* MAC Interrupt occurred */
136 TxResGrant = 0x08, /* Tx Reservation Granted */
137 RxFullPkt = 0x20, /* Rx Full Packet */
138 RxPktRej = 0x40, /* Rx Packet Rejected */
139 ForcedIntr= 0x80 /* Forced Interrupt */
140};
141#define XIRCREG1_IMR0 12 /* Ethernet Interrupt Mask Register (on page 1)*/
142#define XIRCREG1_IMR1 13
143#define XIRCREG0_TSO 8 /* Transmit Space Open Register (on page 0)*/
144#define XIRCREG0_TRS 10 /* Transmit reservation Size Register (page 0)*/
145#define XIRCREG0_DO 12 /* Data Offset Register (page 0) (wr) */
146#define XIRCREG0_RSR 12 /* Receive Status Register (page 0) (rd) */
147enum xirc_rsr {
148 PhyPkt = 0x01, /* set:physical packet, clear: multicast packet */
149 BrdcstPkt = 0x02, /* set if it is a broadcast packet */
150 PktTooLong = 0x04, /* set if packet length > 1518 */
151 AlignErr = 0x10, /* incorrect CRC and last octet not complete */
152 CRCErr = 0x20, /* incorrect CRC and last octet is complete */
153 PktRxOk = 0x80 /* received ok */
154};
155#define XIRCREG0_PTR 13 /* packets transmitted register (rd) */
156#define XIRCREG0_RBC 14 /* receive byte count regsister (rd) */
157#define XIRCREG1_ECR 14 /* ethernet configurationn register */
158enum xirc_ecr {
159 FullDuplex = 0x04, /* enable full duplex mode */
160 LongTPMode = 0x08, /* adjust for longer lengths of TP cable */
161 DisablePolCor = 0x10,/* disable auto polarity correction */
162 DisableLinkPulse = 0x20, /* disable link pulse generation */
163 DisableAutoTx = 0x40, /* disable auto-transmit */
164};
165#define XIRCREG2_RBS 8 /* receive buffer start register */
166#define XIRCREG2_LED 10 /* LED Configuration register */
167/* values for the leds: Bits 2-0 for led 1
168 * 0 disabled Bits 5-3 for led 2
169 * 1 collision
170 * 2 noncollision
171 * 3 link_detected
172 * 4 incor_polarity
173 * 5 jabber
174 * 6 auto_assertion
175 * 7 rx_tx_activity
176 */
177#define XIRCREG2_MSR 12 /* Mohawk specific register */
178
179#define XIRCREG4_GPR0 8 /* General Purpose Register 0 */
180#define XIRCREG4_GPR1 9 /* General Purpose Register 1 */
181#define XIRCREG2_GPR2 13 /* General Purpose Register 2 (page2!)*/
182#define XIRCREG4_BOV 10 /* Bonding Version Register */
183#define XIRCREG4_LMA 12 /* Local Memory Address Register */
184#define XIRCREG4_LMD 14 /* Local Memory Data Port */
185/* MAC register can only by accessed with 8 bit operations */
186#define XIRCREG40_CMD0 8 /* Command Register (wr) */
187enum xirc_cmd { /* Commands */
188 Transmit = 0x01,
189 EnableRecv = 0x04,
190 DisableRecv = 0x08,
191 Abort = 0x10,
192 Online = 0x20,
193 IntrAck = 0x40,
194 Offline = 0x80
195};
196#define XIRCREG5_RHSA0 10 /* Rx Host Start Address */
197#define XIRCREG40_RXST0 9 /* Receive Status Register */
198#define XIRCREG40_TXST0 11 /* Transmit Status Register 0 */
199#define XIRCREG40_TXST1 12 /* Transmit Status Register 10 */
200#define XIRCREG40_RMASK0 13 /* Receive Mask Register */
201#define XIRCREG40_TMASK0 14 /* Transmit Mask Register 0 */
202#define XIRCREG40_TMASK1 15 /* Transmit Mask Register 0 */
203#define XIRCREG42_SWC0 8 /* Software Configuration 0 */
204#define XIRCREG42_SWC1 9 /* Software Configuration 1 */
205#define XIRCREG42_BOC 10 /* Back-Off Configuration */
206#define XIRCREG44_TDR0 8 /* Time Domain Reflectometry 0 */
207#define XIRCREG44_TDR1 9 /* Time Domain Reflectometry 1 */
208#define XIRCREG44_RXBC_LO 10 /* Rx Byte Count 0 (rd) */
209#define XIRCREG44_RXBC_HI 11 /* Rx Byte Count 1 (rd) */
210#define XIRCREG45_REV 15 /* Revision Register (rd) */
211#define XIRCREG50_IA 8 /* Individual Address (8-13) */
212
Arjan van de Venf71e1302006-03-03 21:33:57 -0500213static const char *if_names[] = { "Auto", "10BaseT", "10Base2", "AUI", "100BaseT" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* card types */
216#define XIR_UNKNOWN 0 /* unknown: not supported */
217#define XIR_CE 1 /* (prodid 1) different hardware: not supported */
218#define XIR_CE2 2 /* (prodid 2) */
219#define XIR_CE3 3 /* (prodid 3) */
220#define XIR_CEM 4 /* (prodid 1) different hardware: not supported */
221#define XIR_CEM2 5 /* (prodid 2) */
222#define XIR_CEM3 6 /* (prodid 3) */
223#define XIR_CEM33 7 /* (prodid 4) */
224#define XIR_CEM56M 8 /* (prodid 5) */
225#define XIR_CEM56 9 /* (prodid 6) */
226#define XIR_CM28 10 /* (prodid 3) modem only: not supported here */
227#define XIR_CM33 11 /* (prodid 4) modem only: not supported here */
228#define XIR_CM56 12 /* (prodid 5) modem only: not supported here */
229#define XIR_CG 13 /* (prodid 1) GSM modem only: not supported */
230#define XIR_CBE 14 /* (prodid 1) cardbus ethernet: not supported */
231/*====================================================================*/
232
233/* Module parameters */
234
235MODULE_DESCRIPTION("Xircom PCMCIA ethernet driver");
236MODULE_LICENSE("Dual MPL/GPL");
237
238#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0)
239
240INT_MODULE_PARM(if_port, 0);
241INT_MODULE_PARM(full_duplex, 0);
242INT_MODULE_PARM(do_sound, 1);
243INT_MODULE_PARM(lockup_hack, 0); /* anti lockup hack */
244
245/*====================================================================*/
246
247/* We do not process more than these number of bytes during one
248 * interrupt. (Of course we receive complete packets, so this is not
249 * an exact value).
250 * Something between 2000..22000; first value gives best interrupt latency,
251 * the second enables the usage of the complete on-chip buffer. We use the
252 * high value as the initial value.
253 */
254static unsigned maxrx_bytes = 22000;
255
256/* MII management prototypes */
Olof Johansson906da802008-02-04 22:27:35 -0800257static void mii_idle(unsigned int ioaddr);
258static void mii_putbit(unsigned int ioaddr, unsigned data);
259static int mii_getbit(unsigned int ioaddr);
260static void mii_wbits(unsigned int ioaddr, unsigned data, int len);
261static unsigned mii_rd(unsigned int ioaddr, u_char phyaddr, u_char phyreg);
262static void mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned data, int len);
264
265/*
266 * The event() function is this driver's Card Services event handler.
267 * It will be called by Card Services when an appropriate card status
268 * event is received. The config() and release() entry points are
269 * used to configure or release a socket, in response to card insertion
270 * and ejection events. They are invoked from the event handler.
271 */
272
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200273static int has_ce2_string(struct pcmcia_device * link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200274static int xirc2ps_config(struct pcmcia_device * link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200275static void xirc2ps_release(struct pcmcia_device * link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277/****************
278 * The attach() and detach() entry points are used to create and destroy
279 * "instances" of the driver, where each instance represents everything
280 * needed to manage one actual PCMCIA card.
281 */
282
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100283static void xirc2ps_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285/****************
286 * You'll also need to prototype all the functions that will actually
287 * be used to talk to your device. See 'pcmem_cs' for a good example
288 * of a fully self-sufficient driver; the other drivers rely more or
289 * less on other parts of the kernel.
290 */
291
David Howells7d12e782006-10-05 14:55:46 +0100292static irqreturn_t xirc2ps_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294typedef struct local_info_t {
David Howellsc4028952006-11-22 14:57:56 +0000295 struct net_device *dev;
Dominik Brodowskifd238232006-03-05 10:45:09 +0100296 struct pcmcia_device *p_dev;
Stephen Hemminger6394d7c2009-03-20 19:36:07 +0000297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int card_type;
299 int probe_port;
300 int silicon; /* silicon revision. 0=old CE2, 1=Scipper, 4=Mohawk */
301 int mohawk; /* a CE3 type card */
302 int dingo; /* a CEM56 type card */
303 int new_mii; /* has full 10baseT/100baseT MII */
304 int modem; /* is a multi function card (i.e with a modem) */
305 void __iomem *dingo_ccr; /* only used for CEM56 cards */
306 unsigned last_ptr_value; /* last packets transmitted value */
307 const char *manf_str;
Joerg Ahrens9a469ab2006-08-20 21:51:57 +0100308 struct work_struct tx_timeout_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309} local_info_t;
310
311/****************
312 * Some more prototypes
313 */
Stephen Hemmingerdbf02fa2009-08-31 19:50:49 +0000314static netdev_tx_t do_start_xmit(struct sk_buff *skb,
315 struct net_device *dev);
Arjan van de Vened4cb132008-10-05 07:35:05 +0000316static void xirc_tx_timeout(struct net_device *dev);
David Howellsc4028952006-11-22 14:57:56 +0000317static void xirc2ps_tx_timeout_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318static void set_addresses(struct net_device *dev);
319static void set_multicast_list(struct net_device *dev);
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200320static int set_card_type(struct pcmcia_device *link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static int do_config(struct net_device *dev, struct ifmap *map);
322static int do_open(struct net_device *dev);
323static int do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
Jeff Garzik7282d492006-09-13 14:30:00 -0400324static const struct ethtool_ops netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static void hardreset(struct net_device *dev);
326static void do_reset(struct net_device *dev, int full);
327static int init_mii(struct net_device *dev);
328static void do_powerdown(struct net_device *dev);
329static int do_stop(struct net_device *dev);
330
331/*=============== Helper functions =========================*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332#define SelectPage(pgnr) outb((pgnr), ioaddr + XIRCREG_PR)
333#define GetByte(reg) ((unsigned)inb(ioaddr + (reg)))
334#define GetWord(reg) ((unsigned)inw(ioaddr + (reg)))
335#define PutByte(reg,value) outb((value), ioaddr+(reg))
336#define PutWord(reg,value) outw((value), ioaddr+(reg))
337
338/*====== Functions used for debugging =================================*/
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200339#if 0 /* reading regs may change system status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static void
341PrintRegisters(struct net_device *dev)
342{
Olof Johansson906da802008-02-04 22:27:35 -0800343 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if (pc_debug > 1) {
346 int i, page;
347
Joe Perches636b8112010-08-12 12:22:51 +0000348 printk(KERN_DEBUG pr_fmt("Register common: "));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 for (i = 0; i < 8; i++)
Joe Perches636b8112010-08-12 12:22:51 +0000350 pr_cont(" %2.2x", GetByte(i));
351 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 for (page = 0; page <= 8; page++) {
Joe Perches636b8112010-08-12 12:22:51 +0000353 printk(KERN_DEBUG pr_fmt("Register page %2x: "), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 SelectPage(page);
355 for (i = 8; i < 16; i++)
Joe Perches636b8112010-08-12 12:22:51 +0000356 pr_cont(" %2.2x", GetByte(i));
357 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 for (page=0x40 ; page <= 0x5f; page++) {
Joe Perches8e95a202009-12-03 07:58:21 +0000360 if (page == 0x43 || (page >= 0x46 && page <= 0x4f) ||
361 (page >= 0x51 && page <=0x5e))
362 continue;
Joe Perches636b8112010-08-12 12:22:51 +0000363 printk(KERN_DEBUG pr_fmt("Register page %2x: "), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 SelectPage(page);
365 for (i = 8; i < 16; i++)
Joe Perches636b8112010-08-12 12:22:51 +0000366 pr_cont(" %2.2x", GetByte(i));
367 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369 }
370}
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200371#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373/*============== MII Management functions ===============*/
374
375/****************
376 * Turn around for read
377 */
378static void
Olof Johansson906da802008-02-04 22:27:35 -0800379mii_idle(unsigned int ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 PutByte(XIRCREG2_GPR2, 0x04|0); /* drive MDCK low */
382 udelay(1);
383 PutByte(XIRCREG2_GPR2, 0x04|1); /* and drive MDCK high */
384 udelay(1);
385}
386
387/****************
388 * Write a bit to MDI/O
389 */
390static void
Olof Johansson906da802008-02-04 22:27:35 -0800391mii_putbit(unsigned int ioaddr, unsigned data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 #if 1
394 if (data) {
395 PutByte(XIRCREG2_GPR2, 0x0c|2|0); /* set MDIO */
396 udelay(1);
397 PutByte(XIRCREG2_GPR2, 0x0c|2|1); /* and drive MDCK high */
398 udelay(1);
399 } else {
400 PutByte(XIRCREG2_GPR2, 0x0c|0|0); /* clear MDIO */
401 udelay(1);
402 PutByte(XIRCREG2_GPR2, 0x0c|0|1); /* and drive MDCK high */
403 udelay(1);
404 }
405 #else
406 if (data) {
407 PutWord(XIRCREG2_GPR2-1, 0x0e0e);
408 udelay(1);
409 PutWord(XIRCREG2_GPR2-1, 0x0f0f);
410 udelay(1);
411 } else {
412 PutWord(XIRCREG2_GPR2-1, 0x0c0c);
413 udelay(1);
414 PutWord(XIRCREG2_GPR2-1, 0x0d0d);
415 udelay(1);
416 }
417 #endif
418}
419
420/****************
421 * Get a bit from MDI/O
422 */
423static int
Olof Johansson906da802008-02-04 22:27:35 -0800424mii_getbit(unsigned int ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 unsigned d;
427
428 PutByte(XIRCREG2_GPR2, 4|0); /* drive MDCK low */
429 udelay(1);
430 d = GetByte(XIRCREG2_GPR2); /* read MDIO */
431 PutByte(XIRCREG2_GPR2, 4|1); /* drive MDCK high again */
432 udelay(1);
433 return d & 0x20; /* read MDIO */
434}
435
436static void
Olof Johansson906da802008-02-04 22:27:35 -0800437mii_wbits(unsigned int ioaddr, unsigned data, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 unsigned m = 1 << (len-1);
440 for (; m; m >>= 1)
441 mii_putbit(ioaddr, data & m);
442}
443
444static unsigned
Olof Johansson906da802008-02-04 22:27:35 -0800445mii_rd(unsigned int ioaddr, u_char phyaddr, u_char phyreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 int i;
448 unsigned data=0, m;
449
450 SelectPage(2);
451 for (i=0; i < 32; i++) /* 32 bit preamble */
452 mii_putbit(ioaddr, 1);
453 mii_wbits(ioaddr, 0x06, 4); /* Start and opcode for read */
454 mii_wbits(ioaddr, phyaddr, 5); /* PHY address to be accessed */
455 mii_wbits(ioaddr, phyreg, 5); /* PHY register to read */
456 mii_idle(ioaddr); /* turn around */
457 mii_getbit(ioaddr);
458
459 for (m = 1<<15; m; m >>= 1)
460 if (mii_getbit(ioaddr))
461 data |= m;
462 mii_idle(ioaddr);
463 return data;
464}
465
466static void
Olof Johansson906da802008-02-04 22:27:35 -0800467mii_wr(unsigned int ioaddr, u_char phyaddr, u_char phyreg, unsigned data,
468 int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 int i;
471
472 SelectPage(2);
473 for (i=0; i < 32; i++) /* 32 bit preamble */
474 mii_putbit(ioaddr, 1);
475 mii_wbits(ioaddr, 0x05, 4); /* Start and opcode for write */
476 mii_wbits(ioaddr, phyaddr, 5); /* PHY address to be accessed */
477 mii_wbits(ioaddr, phyreg, 5); /* PHY Register to write */
478 mii_putbit(ioaddr, 1); /* turn around */
479 mii_putbit(ioaddr, 0);
480 mii_wbits(ioaddr, data, len); /* And write the data */
481 mii_idle(ioaddr);
482}
483
484/*============= Main bulk of functions =========================*/
485
Stephen Hemminger0cd6e822009-03-20 19:36:08 +0000486static const struct net_device_ops netdev_ops = {
487 .ndo_open = do_open,
488 .ndo_stop = do_stop,
489 .ndo_start_xmit = do_start_xmit,
490 .ndo_tx_timeout = xirc_tx_timeout,
491 .ndo_set_config = do_config,
492 .ndo_do_ioctl = do_ioctl,
493 .ndo_set_multicast_list = set_multicast_list,
494 .ndo_change_mtu = eth_change_mtu,
495 .ndo_set_mac_address = eth_mac_addr,
496 .ndo_validate_addr = eth_validate_addr,
497};
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/****************
500 * xirc2ps_attach() creates an "instance" of the driver, allocating
501 * local data structures for one device. The device is registered
502 * with Card Services.
503 *
504 * The dev_link structure is initialized, but we don't actually
505 * configure the card at this point -- we wait until we receive a
506 * card insertion event.
507 */
508
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100509static int
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200510xirc2ps_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct net_device *dev;
513 local_info_t *local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200515 dev_dbg(&link->dev, "attach()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /* Allocate the device structure */
518 dev = alloc_etherdev(sizeof(local_info_t));
519 if (!dev)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100520 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 local = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +0000522 local->dev = dev;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200523 local->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 link->priv = dev;
525
526 /* General socket configuration */
527 link->conf.Attributes = CONF_ENABLE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 link->conf.IntType = INT_MEMORY_AND_IO;
529 link->conf.ConfigIndex = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 /* Fill in card specific entries */
Stephen Hemminger0cd6e822009-03-20 19:36:08 +0000532 dev->netdev_ops = &netdev_ops;
533 dev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 dev->watchdog_timeo = TX_TIMEOUT;
David Howellsc4028952006-11-22 14:57:56 +0000535 INIT_WORK(&local->tx_timeout_task, xirc2ps_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200537 return xirc2ps_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538} /* xirc2ps_attach */
539
540/****************
541 * This deletes a driver "instance". The device is de-registered
542 * with Card Services. If it has been released, all local data
543 * structures are freed. Otherwise, the structures will be freed
544 * when the device is released.
545 */
546
547static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200548xirc2ps_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 struct net_device *dev = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200552 dev_dbg(&link->dev, "detach\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Dominik Brodowskic7c2fa02010-03-20 19:39:26 +0100554 unregister_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100556 xirc2ps_release(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 free_netdev(dev);
559} /* xirc2ps_detach */
560
561/****************
562 * Detect the type of the card. s is the buffer with the data of tuple 0x20
563 * Returns: 0 := not supported
564 * mediaid=11 and prodid=47
565 * Media-Id bits:
566 * Ethernet 0x01
567 * Tokenring 0x02
568 * Arcnet 0x04
569 * Wireless 0x08
570 * Modem 0x10
571 * GSM only 0x20
572 * Prod-Id bits:
573 * Pocket 0x10
574 * External 0x20
575 * Creditcard 0x40
576 * Cardbus 0x80
577 *
578 */
579static int
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200580set_card_type(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 struct net_device *dev = link->priv;
583 local_info_t *local = netdev_priv(dev);
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200584 u8 *buf;
585 unsigned int cisrev, mediaid, prodid;
586 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200588 len = pcmcia_get_tuple(link, CISTPL_MANFID, &buf);
589 if (len < 5) {
590 dev_err(&link->dev, "invalid CIS -- sorry\n");
591 return 0;
592 }
593
594 cisrev = buf[2];
595 mediaid = buf[3];
596 prodid = buf[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200598 dev_dbg(&link->dev, "cisrev=%02x mediaid=%02x prodid=%02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 cisrev, mediaid, prodid);
600
601 local->mohawk = 0;
602 local->dingo = 0;
603 local->modem = 0;
604 local->card_type = XIR_UNKNOWN;
605 if (!(prodid & 0x40)) {
Joe Perches636b8112010-08-12 12:22:51 +0000606 pr_notice("Oops: Not a creditcard\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return 0;
608 }
609 if (!(mediaid & 0x01)) {
Joe Perches636b8112010-08-12 12:22:51 +0000610 pr_notice("Not an Ethernet card\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 0;
612 }
613 if (mediaid & 0x10) {
614 local->modem = 1;
615 switch(prodid & 15) {
616 case 1: local->card_type = XIR_CEM ; break;
617 case 2: local->card_type = XIR_CEM2 ; break;
618 case 3: local->card_type = XIR_CEM3 ; break;
619 case 4: local->card_type = XIR_CEM33 ; break;
620 case 5: local->card_type = XIR_CEM56M;
621 local->mohawk = 1;
622 break;
623 case 6:
624 case 7: /* 7 is the RealPort 10/56 */
625 local->card_type = XIR_CEM56 ;
626 local->mohawk = 1;
627 local->dingo = 1;
628 break;
629 }
630 } else {
631 switch(prodid & 15) {
632 case 1: local->card_type = has_ce2_string(link)? XIR_CE2 : XIR_CE ;
633 break;
634 case 2: local->card_type = XIR_CE2; break;
635 case 3: local->card_type = XIR_CE3;
636 local->mohawk = 1;
637 break;
638 }
639 }
640 if (local->card_type == XIR_CE || local->card_type == XIR_CEM) {
Joe Perches636b8112010-08-12 12:22:51 +0000641 pr_notice("Sorry, this is an old CE card\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
643 }
644 if (local->card_type == XIR_UNKNOWN)
Joe Perches636b8112010-08-12 12:22:51 +0000645 pr_notice("unknown card (mediaid=%02x prodid=%02x)\n", mediaid, prodid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 return 1;
648}
649
650/****************
651 * There are some CE2 cards out which claim to be a CE card.
652 * This function looks for a "CE2" in the 3rd version field.
653 * Returns: true if this is a CE2
654 */
655static int
Dominik Brodowskia9606fd2006-06-04 18:06:13 +0200656has_ce2_string(struct pcmcia_device * p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Dominik Brodowskia9606fd2006-06-04 18:06:13 +0200658 if (p_dev->prod_id[2] && strstr(p_dev->prod_id[2], "CE2"))
659 return 1;
660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200663static int
664xirc2ps_config_modem(struct pcmcia_device *p_dev,
665 cistpl_cftable_entry_t *cf,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200666 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200667 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200668 void *priv_data)
669{
670 unsigned int ioaddr;
671
672 if (cf->io.nwin > 0 && (cf->io.win[0].base & 0xf) == 8) {
673 for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200674 p_dev->resource[1]->start = cf->io.win[0].base;
675 p_dev->resource[0]->start = ioaddr;
676 if (!pcmcia_request_io(p_dev))
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200677 return 0;
678 }
679 }
680 return -ENODEV;
681}
682
683static int
684xirc2ps_config_check(struct pcmcia_device *p_dev,
685 cistpl_cftable_entry_t *cf,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200686 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200687 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200688 void *priv_data)
689{
690 int *pass = priv_data;
691
692 if (cf->io.nwin > 0 && (cf->io.win[0].base & 0xf) == 8) {
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200693 p_dev->resource[1]->start = cf->io.win[0].base;
694 p_dev->resource[0]->start = p_dev->resource[1]->start
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200695 + (*pass ? (cf->index & 0x20 ? -24:8)
696 : (cf->index & 0x20 ? 8:-24));
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200697 if (!pcmcia_request_io(p_dev))
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200698 return 0;
699 }
700 return -ENODEV;
701
702}
703
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200704
705static int pcmcia_get_mac_ce(struct pcmcia_device *p_dev,
706 tuple_t *tuple,
707 void *priv)
708{
709 struct net_device *dev = priv;
710 int i;
711
712 if (tuple->TupleDataLen != 13)
713 return -EINVAL;
714 if ((tuple->TupleData[0] != 2) || (tuple->TupleData[1] != 1) ||
715 (tuple->TupleData[2] != 6))
716 return -EINVAL;
717 /* another try (James Lehmer's CE2 version 4.1)*/
718 for (i = 2; i < 6; i++)
719 dev->dev_addr[i] = tuple->TupleData[i+2];
720 return 0;
721};
722
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724/****************
725 * xirc2ps_config() is scheduled to run after a CARD_INSERTION event
726 * is received, to configure the PCMCIA socket, and to make the
727 * ethernet device available to the system.
728 */
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200729static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200730xirc2ps_config(struct pcmcia_device * link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 struct net_device *dev = link->priv;
733 local_info_t *local = netdev_priv(dev);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200734 unsigned int ioaddr;
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200735 int err;
736 u8 *buf;
737 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 local->dingo_ccr = NULL;
740
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200741 dev_dbg(&link->dev, "config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /* Is this a valid card */
Dominik Brodowski7d2e8d02009-10-18 18:22:32 +0200744 if (link->has_manf_id == 0) {
Joe Perches636b8112010-08-12 12:22:51 +0000745 pr_notice("manfid not found in CIS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto failure;
747 }
748
Dominik Brodowski7d2e8d02009-10-18 18:22:32 +0200749 switch (link->manf_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 case MANFID_XIRCOM:
751 local->manf_str = "Xircom";
752 break;
753 case MANFID_ACCTON:
754 local->manf_str = "Accton";
755 break;
756 case MANFID_COMPAQ:
757 case MANFID_COMPAQ2:
758 local->manf_str = "Compaq";
759 break;
760 case MANFID_INTEL:
761 local->manf_str = "Intel";
762 break;
763 case MANFID_TOSHIBA:
764 local->manf_str = "Toshiba";
765 break;
766 default:
Joe Perches636b8112010-08-12 12:22:51 +0000767 pr_notice("Unknown Card Manufacturer ID: 0x%04x\n",
768 (unsigned)link->manf_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 goto failure;
770 }
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200771 dev_dbg(&link->dev, "found %s card\n", local->manf_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200773 if (!set_card_type(link)) {
Joe Perches636b8112010-08-12 12:22:51 +0000774 pr_notice("this card is not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 goto failure;
776 }
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /* get the ethernet address from the CIS */
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200779 err = pcmcia_get_mac_from_cis(link, dev);
780
781 /* not found: try to get the node-id from tuple 0x89 */
782 if (err) {
783 len = pcmcia_get_tuple(link, 0x89, &buf);
784 /* data layout looks like tuple 0x22 */
785 if (buf && len == 8) {
786 if (*buf == CISTPL_FUNCE_LAN_NODE_ID) {
787 int i;
788 for (i = 2; i < 6; i++)
789 dev->dev_addr[i] = buf[i+2];
790 } else
791 err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200793 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Dominik Brodowskidddfbd82009-10-18 23:54:24 +0200795
796 if (err)
797 err = pcmcia_loop_tuple(link, CISTPL_FUNCE, pcmcia_get_mac_ce, dev);
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (err) {
Joe Perches636b8112010-08-12 12:22:51 +0000800 pr_notice("node-id not found in CIS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto failure;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200804 link->resource[0]->flags |= IO_DATA_PATH_WIDTH_16;
Dominik Brodowski4914c7f2010-08-13 20:33:34 +0200805 link->io_lines = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (local->modem) {
807 int pass;
808
809 if (do_sound) {
810 link->conf.Attributes |= CONF_ENABLE_SPKR;
811 link->conf.Status |= CCSR_AUDIO_ENA;
812 }
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200813 link->resource[1]->end = 8;
814 link->resource[1]->flags |= IO_DATA_PATH_WIDTH_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (local->dingo) {
816 /* Take the Modem IO port from the CIS and scan for a free
817 * Ethernet port */
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200818 link->resource[0]->end = 16; /* no Mako stuff anymore */
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200819 if (!pcmcia_loop_config(link, xirc2ps_config_modem, NULL))
820 goto port_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 } else {
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200822 link->resource[0]->end = 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* We do 2 passes here: The first one uses the regular mapping and
824 * the second tries again, thereby considering that the 32 ports are
825 * mirrored every 32 bytes. Actually we use a mirrored port for
826 * the Mako if (on the first pass) the COR bit 5 is set.
827 */
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200828 for (pass=0; pass < 2; pass++)
829 if (!pcmcia_loop_config(link, xirc2ps_config_check, &pass))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 goto port_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /* if special option:
832 * try to configure as Ethernet only.
833 * .... */
834 }
Joe Perches636b8112010-08-12 12:22:51 +0000835 pr_notice("no ports available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 } else {
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200837 link->resource[0]->end = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 for (ioaddr = 0x300; ioaddr < 0x400; ioaddr += 0x10) {
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200839 link->resource[0]->start = ioaddr;
840 if (!(err = pcmcia_request_io(link)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto port_found;
842 }
Dominik Brodowski90abdc32010-07-24 17:23:51 +0200843 link->resource[0]->start = 0; /* let CS decide */
844 if ((err = pcmcia_request_io(link)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 goto config_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 port_found:
848 if (err)
849 goto config_error;
850
851 /****************
852 * Now allocate an interrupt line. Note that this does not
853 * actually assign a handler to the interrupt.
854 */
Dominik Brodowskieb141202010-03-07 12:21:16 +0100855 if ((err=pcmcia_request_irq(link, xirc2ps_interrupt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 goto config_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /****************
859 * This actually configures the PCMCIA socket -- setting up
860 * the I/O windows and the interrupt mapping.
861 */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200862 if ((err=pcmcia_request_configuration(link, &link->conf)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto config_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (local->dingo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 win_req_t req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 /* Reset the modem's BAR to the correct value
869 * This is necessary because in the RequestConfiguration call,
870 * the base address of the ethernet port (BasePort1) is written
871 * to the BAR registers of the modem.
872 */
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200873 err = pcmcia_write_config_byte(link, CISREG_IOBASE_0, (u8)
874 link->resource[1]->start & 0xff);
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200875 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 goto config_error;
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200877
878 err = pcmcia_write_config_byte(link, CISREG_IOBASE_1,
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200879 (link->resource[1]->start >> 8) & 0xff);
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200880 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 goto config_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 /* There is no config entry for the Ethernet part which
884 * is at 0x0800. So we allocate a window into the attribute
885 * memory and write direct to the CIS registers
886 */
887 req.Attributes = WIN_DATA_WIDTH_8|WIN_MEMORY_TYPE_AM|WIN_ENABLE;
888 req.Base = req.Size = 0;
889 req.AccessSpeed = 0;
Dominik Brodowski6838b032009-11-03 01:31:52 +0100890 if ((err = pcmcia_request_window(link, &req, &link->win)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 goto config_error;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 local->dingo_ccr = ioremap(req.Base,0x1000) + 0x0800;
Dominik Brodowskib5cb2592010-07-24 18:46:42 +0200894 if ((err = pcmcia_map_mem_page(link, link->win, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 goto config_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 /* Setup the CCRs; there are no infos in the CIS about the Ethernet
898 * part.
899 */
900 writeb(0x47, local->dingo_ccr + CISREG_COR);
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200901 ioaddr = link->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 writeb(ioaddr & 0xff , local->dingo_ccr + CISREG_IOBASE_0);
903 writeb((ioaddr >> 8)&0xff , local->dingo_ccr + CISREG_IOBASE_1);
904
905 #if 0
906 {
907 u_char tmp;
Joe Perches636b8112010-08-12 12:22:51 +0000908 pr_info("ECOR:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 for (i=0; i < 7; i++) {
910 tmp = readb(local->dingo_ccr + i*2);
Joe Perches636b8112010-08-12 12:22:51 +0000911 pr_cont(" %02x", tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
Joe Perches636b8112010-08-12 12:22:51 +0000913 pr_cont("\n");
914 pr_info("DCOR:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 for (i=0; i < 4; i++) {
916 tmp = readb(local->dingo_ccr + 0x20 + i*2);
Joe Perches636b8112010-08-12 12:22:51 +0000917 pr_cont(" %02x", tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
Joe Perches636b8112010-08-12 12:22:51 +0000919 pr_cont("\n");
920 pr_info("SCOR:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 for (i=0; i < 10; i++) {
922 tmp = readb(local->dingo_ccr + 0x40 + i*2);
Joe Perches636b8112010-08-12 12:22:51 +0000923 pr_cont(" %02x", tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Joe Perches636b8112010-08-12 12:22:51 +0000925 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927 #endif
928
929 writeb(0x01, local->dingo_ccr + 0x20);
930 writeb(0x0c, local->dingo_ccr + 0x22);
931 writeb(0x00, local->dingo_ccr + 0x24);
932 writeb(0x00, local->dingo_ccr + 0x26);
933 writeb(0x00, local->dingo_ccr + 0x28);
934 }
935
936 /* The if_port symbol can be set when the module is loaded */
937 local->probe_port=0;
938 if (!if_port) {
939 local->probe_port = dev->if_port = 1;
940 } else if ((if_port >= 1 && if_port <= 2) ||
941 (local->mohawk && if_port==4))
942 dev->if_port = if_port;
943 else
Joe Perches636b8112010-08-12 12:22:51 +0000944 pr_notice("invalid if_port requested\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 /* we can now register the device with the net subsystem */
Dominik Brodowskieb141202010-03-07 12:21:16 +0100947 dev->irq = link->irq;
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200948 dev->base_addr = link->resource[0]->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 if (local->dingo)
951 do_reset(dev, 1); /* a kludge to make the cem56 work */
952
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100953 SET_NETDEV_DEV(dev, &link->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 if ((err=register_netdev(dev))) {
Joe Perches636b8112010-08-12 12:22:51 +0000956 pr_notice("register_netdev() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 goto config_error;
958 }
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 /* give some infos about the hardware */
Joe Perches636b8112010-08-12 12:22:51 +0000961 netdev_info(dev, "%s: port %#3lx, irq %d, hwaddr %pM\n",
962 local->manf_str, (u_long)dev->base_addr, (int)dev->irq,
963 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200965 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 config_error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 xirc2ps_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200969 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 failure:
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200972 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973} /* xirc2ps_config */
974
975/****************
976 * After a card is removed, xirc2ps_release() will unregister the net
977 * device, and release the PCMCIA configuration. If the device is
978 * still open, this will be postponed until it is closed.
979 */
980static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200981xirc2ps_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Dominik Brodowskidd0fab52009-10-24 15:51:05 +0200983 dev_dbg(&link->dev, "release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +0100985 if (link->win) {
986 struct net_device *dev = link->priv;
987 local_info_t *local = netdev_priv(dev);
988 if (local->dingo)
989 iounmap(local->dingo_ccr - 0x0800);
990 }
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200991 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992} /* xirc2ps_release */
993
994/*====================================================================*/
995
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100996
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200997static int xirc2ps_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100998{
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100999 struct net_device *dev = link->priv;
1000
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001001 if (link->open) {
1002 netif_device_detach(dev);
1003 do_powerdown(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001004 }
1005
1006 return 0;
1007}
1008
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001009static int xirc2ps_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001010{
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001011 struct net_device *dev = link->priv;
1012
Dominik Brodowskie2d40962006-03-02 00:09:29 +01001013 if (link->open) {
Dominik Brodowski8661bb52006-03-02 00:02:33 +01001014 do_reset(dev,1);
1015 netif_device_attach(dev);
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001016 }
1017
1018 return 0;
1019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022/*====================================================================*/
1023
1024/****************
1025 * This is the Interrupt service route.
1026 */
1027static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001028xirc2ps_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 struct net_device *dev = (struct net_device *)dev_id;
1031 local_info_t *lp = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001032 unsigned int ioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 u_char saved_page;
1034 unsigned bytes_rcvd;
1035 unsigned int_status, eth_status, rx_status, tx_status;
1036 unsigned rsr, pktlen;
1037 ulong start_ticks = jiffies; /* fixme: jiffies rollover every 497 days
1038 * is this something to worry about?
1039 * -- on a laptop?
1040 */
1041
1042 if (!netif_device_present(dev))
1043 return IRQ_HANDLED;
1044
1045 ioaddr = dev->base_addr;
1046 if (lp->mohawk) { /* must disable the interrupt */
1047 PutByte(XIRCREG_CR, 0);
1048 }
1049
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001050 pr_debug("%s: interrupt %d at %#x.\n", dev->name, irq, ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 saved_page = GetByte(XIRCREG_PR);
1053 /* Read the ISR to see whats the cause for the interrupt.
1054 * This also clears the interrupt flags on CE2 cards
1055 */
1056 int_status = GetByte(XIRCREG_ISR);
1057 bytes_rcvd = 0;
1058 loop_entry:
1059 if (int_status == 0xff) { /* card may be ejected */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001060 pr_debug("%s: interrupt %d for dead card\n", dev->name, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 goto leave;
1062 }
1063 eth_status = GetByte(XIRCREG_ESR);
1064
1065 SelectPage(0x40);
1066 rx_status = GetByte(XIRCREG40_RXST0);
1067 PutByte(XIRCREG40_RXST0, (~rx_status & 0xff));
1068 tx_status = GetByte(XIRCREG40_TXST0);
1069 tx_status |= GetByte(XIRCREG40_TXST1) << 8;
1070 PutByte(XIRCREG40_TXST0, 0);
1071 PutByte(XIRCREG40_TXST1, 0);
1072
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001073 pr_debug("%s: ISR=%#2.2x ESR=%#2.2x RSR=%#2.2x TSR=%#4.4x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 dev->name, int_status, eth_status, rx_status, tx_status);
1075
1076 /***** receive section ******/
1077 SelectPage(0);
1078 while (eth_status & FullPktRcvd) {
1079 rsr = GetByte(XIRCREG0_RSR);
1080 if (bytes_rcvd > maxrx_bytes && (rsr & PktRxOk)) {
1081 /* too many bytes received during this int, drop the rest of the
1082 * packets */
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001083 dev->stats.rx_dropped++;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001084 pr_debug("%s: RX drop, too much done\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 } else if (rsr & PktRxOk) {
1086 struct sk_buff *skb;
1087
1088 pktlen = GetWord(XIRCREG0_RBC);
1089 bytes_rcvd += pktlen;
1090
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001091 pr_debug("rsr=%#02x packet_length=%u\n", rsr, pktlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 skb = dev_alloc_skb(pktlen+3); /* 1 extra so we can use insw */
1094 if (!skb) {
Joe Perches636b8112010-08-12 12:22:51 +00001095 pr_notice("low memory, packet dropped (size=%u)\n", pktlen);
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001096 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 } else { /* okay get the packet */
1098 skb_reserve(skb, 2);
1099 if (lp->silicon == 0 ) { /* work around a hardware bug */
1100 unsigned rhsa; /* receive start address */
1101
1102 SelectPage(5);
1103 rhsa = GetWord(XIRCREG5_RHSA0);
1104 SelectPage(0);
1105 rhsa += 3; /* skip control infos */
1106 if (rhsa >= 0x8000)
1107 rhsa = 0;
1108 if (rhsa + pktlen > 0x8000) {
1109 unsigned i;
1110 u_char *buf = skb_put(skb, pktlen);
1111 for (i=0; i < pktlen ; i++, rhsa++) {
1112 buf[i] = GetByte(XIRCREG_EDP);
1113 if (rhsa == 0x8000) {
1114 rhsa = 0;
1115 i--;
1116 }
1117 }
1118 } else {
1119 insw(ioaddr+XIRCREG_EDP,
1120 skb_put(skb, pktlen), (pktlen+1)>>1);
1121 }
1122 }
1123 #if 0
1124 else if (lp->mohawk) {
1125 /* To use this 32 bit access we should use
1126 * a manual optimized loop
1127 * Also the words are swapped, we can get more
1128 * performance by using 32 bit access and swapping
1129 * the words in a register. Will need this for cardbus
1130 *
1131 * Note: don't forget to change the ALLOC_SKB to .. +3
1132 */
1133 unsigned i;
1134 u_long *p = skb_put(skb, pktlen);
1135 register u_long a;
Olof Johansson906da802008-02-04 22:27:35 -08001136 unsigned int edpreg = ioaddr+XIRCREG_EDP-2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 for (i=0; i < len ; i += 4, p++) {
1138 a = inl(edpreg);
1139 __asm__("rorl $16,%0\n\t"
1140 :"=q" (a)
1141 : "0" (a));
1142 *p = a;
1143 }
1144 }
1145 #endif
1146 else {
1147 insw(ioaddr+XIRCREG_EDP, skb_put(skb, pktlen),
1148 (pktlen+1)>>1);
1149 }
1150 skb->protocol = eth_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 netif_rx(skb);
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001152 dev->stats.rx_packets++;
1153 dev->stats.rx_bytes += pktlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (!(rsr & PhyPkt))
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001155 dev->stats.multicast++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157 } else { /* bad packet */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001158 pr_debug("rsr=%#02x\n", rsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160 if (rsr & PktTooLong) {
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001161 dev->stats.rx_frame_errors++;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001162 pr_debug("%s: Packet too long\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 if (rsr & CRCErr) {
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001165 dev->stats.rx_crc_errors++;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001166 pr_debug("%s: CRC error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168 if (rsr & AlignErr) {
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001169 dev->stats.rx_fifo_errors++; /* okay ? */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001170 pr_debug("%s: Alignment error\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
1173 /* clear the received/dropped/error packet */
1174 PutWord(XIRCREG0_DO, 0x8000); /* issue cmd: skip_rx_packet */
1175
1176 /* get the new ethernet status */
1177 eth_status = GetByte(XIRCREG_ESR);
1178 }
1179 if (rx_status & 0x10) { /* Receive overrun */
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001180 dev->stats.rx_over_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 PutByte(XIRCREG_CR, ClearRxOvrun);
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001182 pr_debug("receive overrun cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184
1185 /***** transmit section ******/
1186 if (int_status & PktTxed) {
1187 unsigned n, nn;
1188
1189 n = lp->last_ptr_value;
1190 nn = GetByte(XIRCREG0_PTR);
1191 lp->last_ptr_value = nn;
1192 if (nn < n) /* rollover */
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001193 dev->stats.tx_packets += 256 - n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 else if (n == nn) { /* happens sometimes - don't know why */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001195 pr_debug("PTR not changed?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 } else
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001197 dev->stats.tx_packets += lp->last_ptr_value - n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 netif_wake_queue(dev);
1199 }
1200 if (tx_status & 0x0002) { /* Execessive collissions */
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001201 pr_debug("tx restarted due to execssive collissions\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 PutByte(XIRCREG_CR, RestartTx); /* restart transmitter process */
1203 }
1204 if (tx_status & 0x0040)
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001205 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 /* recalculate our work chunk so that we limit the duration of this
1208 * ISR to about 1/10 of a second.
1209 * Calculate only if we received a reasonable amount of bytes.
1210 */
1211 if (bytes_rcvd > 1000) {
1212 u_long duration = jiffies - start_ticks;
1213
1214 if (duration >= HZ/10) { /* if more than about 1/10 second */
1215 maxrx_bytes = (bytes_rcvd * (HZ/10)) / duration;
1216 if (maxrx_bytes < 2000)
1217 maxrx_bytes = 2000;
1218 else if (maxrx_bytes > 22000)
1219 maxrx_bytes = 22000;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001220 pr_debug("set maxrx=%u (rcvd=%u ticks=%lu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 maxrx_bytes, bytes_rcvd, duration);
1222 } else if (!duration && maxrx_bytes < 22000) {
1223 /* now much faster */
1224 maxrx_bytes += 2000;
1225 if (maxrx_bytes > 22000)
1226 maxrx_bytes = 22000;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001227 pr_debug("set maxrx=%u\n", maxrx_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229 }
1230
1231 leave:
1232 if (lockup_hack) {
1233 if (int_status != 0xff && (int_status = GetByte(XIRCREG_ISR)) != 0)
1234 goto loop_entry;
1235 }
1236 SelectPage(saved_page);
1237 PutByte(XIRCREG_CR, EnableIntr); /* re-enable interrupts */
1238 /* Instead of dropping packets during a receive, we could
1239 * force an interrupt with this command:
1240 * PutByte(XIRCREG_CR, EnableIntr|ForceIntr);
1241 */
1242 return IRQ_HANDLED;
1243} /* xirc2ps_interrupt */
1244
1245/*====================================================================*/
1246
1247static void
David Howellsc4028952006-11-22 14:57:56 +00001248xirc2ps_tx_timeout_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
David Howellsc4028952006-11-22 14:57:56 +00001250 local_info_t *local =
1251 container_of(work, local_info_t, tx_timeout_task);
1252 struct net_device *dev = local->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /* reset the card */
1254 do_reset(dev,1);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -07001255 dev->trans_start = jiffies; /* prevent tx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 netif_wake_queue(dev);
1257}
1258
Joerg Ahrens9a469ab2006-08-20 21:51:57 +01001259static void
Arjan van de Vened4cb132008-10-05 07:35:05 +00001260xirc_tx_timeout(struct net_device *dev)
Joerg Ahrens9a469ab2006-08-20 21:51:57 +01001261{
1262 local_info_t *lp = netdev_priv(dev);
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001263 dev->stats.tx_errors++;
Joe Perches636b8112010-08-12 12:22:51 +00001264 netdev_notice(dev, "transmit timed out\n");
Joerg Ahrens9a469ab2006-08-20 21:51:57 +01001265 schedule_work(&lp->tx_timeout_task);
1266}
1267
Stephen Hemmingerdbf02fa2009-08-31 19:50:49 +00001268static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269do_start_xmit(struct sk_buff *skb, struct net_device *dev)
1270{
1271 local_info_t *lp = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001272 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 int okay;
1274 unsigned freespace;
Eric Sesterhennda4f5cc2006-06-21 16:10:48 +02001275 unsigned pktlen = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001277 pr_debug("do_start_xmit(skb=%p, dev=%p) len=%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 skb, dev, pktlen);
1279
1280
1281 /* adjust the packet length to min. required
1282 * and hope that the buffer is large enough
1283 * to provide some random data.
1284 * fixme: For Mohawk we can change this by sending
1285 * a larger packetlen than we actually have; the chip will
1286 * pad this in his buffer with random bytes
1287 */
1288 if (pktlen < ETH_ZLEN)
1289 {
Herbert Xu5b057c62006-06-23 02:06:41 -07001290 if (skb_padto(skb, ETH_ZLEN))
Patrick McHardy6ed10652009-06-23 06:03:08 +00001291 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 pktlen = ETH_ZLEN;
1293 }
1294
1295 netif_stop_queue(dev);
1296 SelectPage(0);
1297 PutWord(XIRCREG0_TRS, (u_short)pktlen+2);
1298 freespace = GetWord(XIRCREG0_TSO);
1299 okay = freespace & 0x8000;
1300 freespace &= 0x7fff;
1301 /* TRS doesn't work - (indeed it is eliminated with sil-rev 1) */
1302 okay = pktlen +2 < freespace;
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001303 pr_debug("%s: avail. tx space=%u%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 dev->name, freespace, okay ? " (okay)":" (not enough)");
1305 if (!okay) { /* not enough space */
Patrick McHardy5b548142009-06-12 06:22:29 +00001306 return NETDEV_TX_BUSY; /* upper layer may decide to requeue this packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
1308 /* send the packet */
1309 PutWord(XIRCREG_EDP, (u_short)pktlen);
1310 outsw(ioaddr+XIRCREG_EDP, skb->data, pktlen>>1);
1311 if (pktlen & 1)
1312 PutByte(XIRCREG_EDP, skb->data[pktlen-1]);
1313
1314 if (lp->mohawk)
1315 PutByte(XIRCREG_CR, TransmitPacket|EnableIntr);
1316
1317 dev_kfree_skb (skb);
Stephen Hemminger6394d7c2009-03-20 19:36:07 +00001318 dev->stats.tx_bytes += pktlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 netif_start_queue(dev);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001320 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
Jiri Pirko91fea582010-02-19 08:48:47 +00001323struct set_address_info {
1324 int reg_nr;
1325 int page_nr;
1326 int mohawk;
1327 unsigned int ioaddr;
1328};
1329
1330static void set_address(struct set_address_info *sa_info, char *addr)
1331{
1332 unsigned int ioaddr = sa_info->ioaddr;
1333 int i;
1334
1335 for (i = 0; i < 6; i++) {
1336 if (sa_info->reg_nr > 15) {
1337 sa_info->reg_nr = 8;
1338 sa_info->page_nr++;
1339 SelectPage(sa_info->page_nr);
1340 }
1341 if (sa_info->mohawk)
1342 PutByte(sa_info->reg_nr++, addr[5 - i]);
1343 else
1344 PutByte(sa_info->reg_nr++, addr[i]);
1345 }
1346}
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348/****************
1349 * Set all addresses: This first one is the individual address,
1350 * the next 9 addresses are taken from the multicast list and
1351 * the rest is filled with the individual address.
1352 */
Jiri Pirko91fea582010-02-19 08:48:47 +00001353static void set_addresses(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Jiri Pirko91fea582010-02-19 08:48:47 +00001355 unsigned int ioaddr = dev->base_addr;
1356 local_info_t *lp = netdev_priv(dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00001357 struct netdev_hw_addr *ha;
Jiri Pirko91fea582010-02-19 08:48:47 +00001358 struct set_address_info sa_info;
1359 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Jiri Pirko91fea582010-02-19 08:48:47 +00001361 /*
1362 * Setup the info structure so that by first set_address call it will do
1363 * SelectPage with the right page number. Hence these ones here.
1364 */
1365 sa_info.reg_nr = 15 + 1;
1366 sa_info.page_nr = 0x50 - 1;
1367 sa_info.mohawk = lp->mohawk;
1368 sa_info.ioaddr = ioaddr;
1369
1370 set_address(&sa_info, dev->dev_addr);
1371 i = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001372 netdev_for_each_mc_addr(ha, dev) {
Jiri Pirko91fea582010-02-19 08:48:47 +00001373 if (i++ == 9)
1374 break;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001375 set_address(&sa_info, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 }
Jiri Pirko91fea582010-02-19 08:48:47 +00001377 while (i++ < 9)
1378 set_address(&sa_info, dev->dev_addr);
1379 SelectPage(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
1382/****************
1383 * Set or clear the multicast filter for this adaptor.
1384 * We can filter up to 9 addresses, if more are requested we set
1385 * multicast promiscuous mode.
1386 */
1387
1388static void
1389set_multicast_list(struct net_device *dev)
1390{
Olof Johansson906da802008-02-04 22:27:35 -08001391 unsigned int ioaddr = dev->base_addr;
Komuro43fc63d2008-04-20 14:32:34 +09001392 unsigned value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 SelectPage(0x42);
Komuro43fc63d2008-04-20 14:32:34 +09001395 value = GetByte(XIRCREG42_SWC1) & 0xC0;
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (dev->flags & IFF_PROMISC) { /* snoop */
Komuro43fc63d2008-04-20 14:32:34 +09001398 PutByte(XIRCREG42_SWC1, value | 0x06); /* set MPE and PME */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001399 } else if (netdev_mc_count(dev) > 9 || (dev->flags & IFF_ALLMULTI)) {
Komuro43fc63d2008-04-20 14:32:34 +09001400 PutByte(XIRCREG42_SWC1, value | 0x02); /* set MPE */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001401 } else if (!netdev_mc_empty(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 /* the chip can filter 9 addresses perfectly */
Komuro43fc63d2008-04-20 14:32:34 +09001403 PutByte(XIRCREG42_SWC1, value | 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 SelectPage(0x40);
1405 PutByte(XIRCREG40_CMD0, Offline);
1406 set_addresses(dev);
1407 SelectPage(0x40);
1408 PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1409 } else { /* standard usage */
Komuro43fc63d2008-04-20 14:32:34 +09001410 PutByte(XIRCREG42_SWC1, value | 0x00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412 SelectPage(0);
1413}
1414
1415static int
1416do_config(struct net_device *dev, struct ifmap *map)
1417{
1418 local_info_t *local = netdev_priv(dev);
1419
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001420 pr_debug("do_config(%p)\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (map->port != 255 && map->port != dev->if_port) {
1422 if (map->port > 4)
1423 return -EINVAL;
1424 if (!map->port) {
1425 local->probe_port = 1;
1426 dev->if_port = 1;
1427 } else {
1428 local->probe_port = 0;
1429 dev->if_port = map->port;
1430 }
Joe Perches636b8112010-08-12 12:22:51 +00001431 netdev_info(dev, "switching to %s port\n", if_names[dev->if_port]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 do_reset(dev,1); /* not the fine way :-) */
1433 }
1434 return 0;
1435}
1436
1437/****************
1438 * Open the driver
1439 */
1440static int
1441do_open(struct net_device *dev)
1442{
1443 local_info_t *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001444 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001446 dev_dbg(&link->dev, "do_open(%p)\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 /* Check that the PCMCIA card is still here. */
1449 /* Physical device present signature. */
Dominik Brodowski9940ec32006-03-05 11:04:33 +01001450 if (!pcmcia_dev_present(link))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return -ENODEV;
1452
1453 /* okay */
1454 link->open++;
1455
1456 netif_start_queue(dev);
1457 do_reset(dev,1);
1458
1459 return 0;
1460}
1461
1462static void netdev_get_drvinfo(struct net_device *dev,
1463 struct ethtool_drvinfo *info)
1464{
1465 strcpy(info->driver, "xirc2ps_cs");
1466 sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr);
1467}
1468
Jeff Garzik7282d492006-09-13 14:30:00 -04001469static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 .get_drvinfo = netdev_get_drvinfo,
1471};
1472
1473static int
1474do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
1475{
1476 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001477 unsigned int ioaddr = dev->base_addr;
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001478 struct mii_ioctl_data *data = if_mii(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001480 pr_debug("%s: ioctl(%-.6s, %#04x) %04x %04x %04x %04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 dev->name, rq->ifr_ifrn.ifrn_name, cmd,
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001482 data->phy_id, data->reg_num, data->val_in, data->val_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 if (!local->mohawk)
1485 return -EOPNOTSUPP;
1486
1487 switch(cmd) {
1488 case SIOCGMIIPHY: /* Get the address of the PHY in use. */
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001489 data->phy_id = 0; /* we have only this address */
Adrian Bunk93b1fae2006-01-10 00:13:33 +01001490 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 case SIOCGMIIREG: /* Read the specified MII register. */
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001492 data->val_out = mii_rd(ioaddr, data->phy_id & 0x1f,
1493 data->reg_num & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 break;
1495 case SIOCSMIIREG: /* Write the specified MII register */
Ben Hutchings0fa0ee052009-09-03 10:41:17 +00001496 mii_wr(ioaddr, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in,
1497 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 break;
1499 default:
1500 return -EOPNOTSUPP;
1501 }
1502 return 0;
1503}
1504
1505static void
1506hardreset(struct net_device *dev)
1507{
1508 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001509 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 SelectPage(4);
1512 udelay(1);
1513 PutByte(XIRCREG4_GPR1, 0); /* clear bit 0: power down */
1514 msleep(40); /* wait 40 msec */
1515 if (local->mohawk)
1516 PutByte(XIRCREG4_GPR1, 1); /* set bit 0: power up */
1517 else
1518 PutByte(XIRCREG4_GPR1, 1 | 4); /* set bit 0: power up, bit 2: AIC */
1519 msleep(20); /* wait 20 msec */
1520}
1521
1522static void
1523do_reset(struct net_device *dev, int full)
1524{
1525 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001526 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 unsigned value;
1528
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001529 pr_debug("%s: do_reset(%p,%d)\n", dev? dev->name:"eth?", dev, full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 hardreset(dev);
1532 PutByte(XIRCREG_CR, SoftReset); /* set */
1533 msleep(20); /* wait 20 msec */
1534 PutByte(XIRCREG_CR, 0); /* clear */
1535 msleep(40); /* wait 40 msec */
1536 if (local->mohawk) {
1537 SelectPage(4);
1538 /* set pin GP1 and GP2 to output (0x0c)
1539 * set GP1 to low to power up the ML6692 (0x00)
1540 * set GP2 to high to power up the 10Mhz chip (0x02)
1541 */
1542 PutByte(XIRCREG4_GPR0, 0x0e);
1543 }
1544
1545 /* give the circuits some time to power up */
1546 msleep(500); /* about 500ms */
1547
1548 local->last_ptr_value = 0;
1549 local->silicon = local->mohawk ? (GetByte(XIRCREG4_BOV) & 0x70) >> 4
1550 : (GetByte(XIRCREG4_BOV) & 0x30) >> 4;
1551
1552 if (local->probe_port) {
1553 if (!local->mohawk) {
1554 SelectPage(4);
1555 PutByte(XIRCREG4_GPR0, 4);
1556 local->probe_port = 0;
1557 }
1558 } else if (dev->if_port == 2) { /* enable 10Base2 */
1559 SelectPage(0x42);
1560 PutByte(XIRCREG42_SWC1, 0xC0);
1561 } else { /* enable 10BaseT */
1562 SelectPage(0x42);
1563 PutByte(XIRCREG42_SWC1, 0x80);
1564 }
1565 msleep(40); /* wait 40 msec to let it complete */
1566
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001567 #if 0
1568 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 SelectPage(0);
1570 value = GetByte(XIRCREG_ESR); /* read the ESR */
Joe Perches636b8112010-08-12 12:22:51 +00001571 pr_debug("%s: ESR is: %#02x\n", dev->name, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573 #endif
1574
1575 /* setup the ECR */
1576 SelectPage(1);
1577 PutByte(XIRCREG1_IMR0, 0xff); /* allow all ints */
1578 PutByte(XIRCREG1_IMR1, 1 ); /* and Set TxUnderrunDetect */
1579 value = GetByte(XIRCREG1_ECR);
1580 #if 0
1581 if (local->mohawk)
1582 value |= DisableLinkPulse;
1583 PutByte(XIRCREG1_ECR, value);
1584 #endif
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001585 pr_debug("%s: ECR is: %#02x\n", dev->name, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 SelectPage(0x42);
1588 PutByte(XIRCREG42_SWC0, 0x20); /* disable source insertion */
1589
1590 if (local->silicon != 1) {
1591 /* set the local memory dividing line.
1592 * The comments in the sample code say that this is only
1593 * settable with the scipper version 2 which is revision 0.
1594 * Always for CE3 cards
1595 */
1596 SelectPage(2);
1597 PutWord(XIRCREG2_RBS, 0x2000);
1598 }
1599
1600 if (full)
1601 set_addresses(dev);
1602
1603 /* Hardware workaround:
1604 * The receive byte pointer after reset is off by 1 so we need
1605 * to move the offset pointer back to 0.
1606 */
1607 SelectPage(0);
1608 PutWord(XIRCREG0_DO, 0x2000); /* change offset command, off=0 */
1609
1610 /* setup MAC IMRs and clear status registers */
1611 SelectPage(0x40); /* Bit 7 ... bit 0 */
1612 PutByte(XIRCREG40_RMASK0, 0xff); /* ROK, RAB, rsv, RO, CRC, AE, PTL, MP */
1613 PutByte(XIRCREG40_TMASK0, 0xff); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1614 PutByte(XIRCREG40_TMASK1, 0xb0); /* rsv, rsv, PTD, EXT, rsv,rsv,rsv, rsv*/
1615 PutByte(XIRCREG40_RXST0, 0x00); /* ROK, RAB, REN, RO, CRC, AE, PTL, MP */
1616 PutByte(XIRCREG40_TXST0, 0x00); /* TOK, TAB, SQE, LL, TU, JAB, EXC, CRS */
1617 PutByte(XIRCREG40_TXST1, 0x00); /* TEN, rsv, PTD, EXT, retry_counter:4 */
1618
1619 if (full && local->mohawk && init_mii(dev)) {
1620 if (dev->if_port == 4 || local->dingo || local->new_mii) {
Joe Perches636b8112010-08-12 12:22:51 +00001621 netdev_info(dev, "MII selected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 SelectPage(2);
1623 PutByte(XIRCREG2_MSR, GetByte(XIRCREG2_MSR) | 0x08);
1624 msleep(20);
1625 } else {
Joe Perches636b8112010-08-12 12:22:51 +00001626 netdev_info(dev, "MII detected; using 10mbs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 SelectPage(0x42);
1628 if (dev->if_port == 2) /* enable 10Base2 */
1629 PutByte(XIRCREG42_SWC1, 0xC0);
1630 else /* enable 10BaseT */
1631 PutByte(XIRCREG42_SWC1, 0x80);
1632 msleep(40); /* wait 40 msec to let it complete */
1633 }
1634 if (full_duplex)
1635 PutByte(XIRCREG1_ECR, GetByte(XIRCREG1_ECR | FullDuplex));
1636 } else { /* No MII */
1637 SelectPage(0);
1638 value = GetByte(XIRCREG_ESR); /* read the ESR */
1639 dev->if_port = (value & MediaSelect) ? 1 : 2;
1640 }
1641
1642 /* configure the LEDs */
1643 SelectPage(2);
1644 if (dev->if_port == 1 || dev->if_port == 4) /* TP: Link and Activity */
1645 PutByte(XIRCREG2_LED, 0x3b);
1646 else /* Coax: Not-Collision and Activity */
1647 PutByte(XIRCREG2_LED, 0x3a);
1648
1649 if (local->dingo)
1650 PutByte(0x0b, 0x04); /* 100 Mbit LED */
1651
1652 /* enable receiver and put the mac online */
1653 if (full) {
Komuro43fc63d2008-04-20 14:32:34 +09001654 set_multicast_list(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 SelectPage(0x40);
1656 PutByte(XIRCREG40_CMD0, EnableRecv | Online);
1657 }
1658
1659 /* setup Ethernet IMR and enable interrupts */
1660 SelectPage(1);
1661 PutByte(XIRCREG1_IMR0, 0xff);
1662 udelay(1);
1663 SelectPage(0);
1664 PutByte(XIRCREG_CR, EnableIntr);
1665 if (local->modem && !local->dingo) { /* do some magic */
1666 if (!(GetByte(0x10) & 0x01))
1667 PutByte(0x10, 0x11); /* unmask master-int bit */
1668 }
1669
1670 if (full)
Joe Perches636b8112010-08-12 12:22:51 +00001671 netdev_info(dev, "media %s, silicon revision %d\n",
1672 if_names[dev->if_port], local->silicon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 /* We should switch back to page 0 to avoid a bug in revision 0
1674 * where regs with offset below 8 can't be read after an access
1675 * to the MAC registers */
1676 SelectPage(0);
1677}
1678
1679/****************
1680 * Initialize the Media-Independent-Interface
1681 * Returns: True if we have a good MII
1682 */
1683static int
1684init_mii(struct net_device *dev)
1685{
1686 local_info_t *local = netdev_priv(dev);
Olof Johansson906da802008-02-04 22:27:35 -08001687 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 unsigned control, status, linkpartner;
1689 int i;
1690
1691 if (if_port == 4 || if_port == 1) { /* force 100BaseT or 10BaseT */
1692 dev->if_port = if_port;
1693 local->probe_port = 0;
1694 return 1;
1695 }
1696
1697 status = mii_rd(ioaddr, 0, 1);
1698 if ((status & 0xff00) != 0x7800)
1699 return 0; /* No MII */
1700
1701 local->new_mii = (mii_rd(ioaddr, 0, 2) != 0xffff);
1702
1703 if (local->probe_port)
1704 control = 0x1000; /* auto neg */
1705 else if (dev->if_port == 4)
1706 control = 0x2000; /* no auto neg, 100mbs mode */
1707 else
1708 control = 0x0000; /* no auto neg, 10mbs mode */
1709 mii_wr(ioaddr, 0, 0, control, 16);
1710 udelay(100);
1711 control = mii_rd(ioaddr, 0, 0);
1712
1713 if (control & 0x0400) {
Joe Perches636b8112010-08-12 12:22:51 +00001714 netdev_notice(dev, "can't take PHY out of isolation mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 local->probe_port = 0;
1716 return 0;
1717 }
1718
1719 if (local->probe_port) {
1720 /* according to the DP83840A specs the auto negotiation process
1721 * may take up to 3.5 sec, so we use this also for our ML6692
1722 * Fixme: Better to use a timer here!
1723 */
1724 for (i=0; i < 35; i++) {
1725 msleep(100); /* wait 100 msec */
1726 status = mii_rd(ioaddr, 0, 1);
1727 if ((status & 0x0020) && (status & 0x0004))
1728 break;
1729 }
1730
1731 if (!(status & 0x0020)) {
Joe Perches636b8112010-08-12 12:22:51 +00001732 netdev_info(dev, "autonegotiation failed; using 10mbs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (!local->new_mii) {
1734 control = 0x0000;
1735 mii_wr(ioaddr, 0, 0, control, 16);
1736 udelay(100);
1737 SelectPage(0);
1738 dev->if_port = (GetByte(XIRCREG_ESR) & MediaSelect) ? 1 : 2;
1739 }
1740 } else {
1741 linkpartner = mii_rd(ioaddr, 0, 5);
Joe Perches636b8112010-08-12 12:22:51 +00001742 netdev_info(dev, "MII link partner: %04x\n", linkpartner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (linkpartner & 0x0080) {
1744 dev->if_port = 4;
1745 } else
1746 dev->if_port = 1;
1747 }
1748 }
1749
1750 return 1;
1751}
1752
1753static void
1754do_powerdown(struct net_device *dev)
1755{
1756
Olof Johansson906da802008-02-04 22:27:35 -08001757 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001759 pr_debug("do_powerdown(%p)\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 SelectPage(4);
1762 PutByte(XIRCREG4_GPR1, 0); /* clear bit 0: power down */
1763 SelectPage(0);
1764}
1765
1766static int
1767do_stop(struct net_device *dev)
1768{
Olof Johansson906da802008-02-04 22:27:35 -08001769 unsigned int ioaddr = dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 local_info_t *lp = netdev_priv(dev);
Dominik Brodowskifba395e2006-03-31 17:21:06 +02001771 struct pcmcia_device *link = lp->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Dominik Brodowskidd0fab52009-10-24 15:51:05 +02001773 dev_dbg(&link->dev, "do_stop(%p)\n", dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 if (!link)
1776 return -ENODEV;
1777
1778 netif_stop_queue(dev);
1779
1780 SelectPage(0);
1781 PutByte(XIRCREG_CR, 0); /* disable interrupts */
1782 SelectPage(0x01);
1783 PutByte(XIRCREG1_IMR0, 0x00); /* forbid all ints */
1784 SelectPage(4);
1785 PutByte(XIRCREG4_GPR1, 0); /* clear bit 0: power down */
1786 SelectPage(0);
1787
1788 link->open--;
1789 return 0;
1790}
1791
Dominik Brodowskiff07bb12005-06-27 16:28:28 -07001792static struct pcmcia_device_id xirc2ps_ids[] = {
1793 PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0089, 0x110a),
1794 PCMCIA_PFC_DEVICE_MANF_CARD(0, 0x0138, 0x110a),
1795 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM28", 0x2e3ee845, 0x0ea978ea),
1796 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM33", 0x2e3ee845, 0x80609023),
1797 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "CEM56", 0x2e3ee845, 0xa650c32a),
1798 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "REM10", 0x2e3ee845, 0x76df1d29),
1799 PCMCIA_PFC_DEVICE_PROD_ID13(0, "Xircom", "XEM5600", 0x2e3ee845, 0xf1403719),
Komurod277ad02005-07-28 01:07:24 -07001800 PCMCIA_PFC_DEVICE_PROD_ID12(0, "Xircom", "CreditCard Ethernet+Modem II", 0x2e3ee845, 0xeca401bf),
Dominik Brodowskiff07bb12005-06-27 16:28:28 -07001801 PCMCIA_DEVICE_MANF_CARD(0x01bf, 0x010a),
1802 PCMCIA_DEVICE_PROD_ID13("Toshiba Information Systems", "TPCENET", 0x1b3b94fe, 0xf381c1a2),
1803 PCMCIA_DEVICE_PROD_ID13("Xircom", "CE3-10/100", 0x2e3ee845, 0x0ec0ac37),
1804 PCMCIA_DEVICE_PROD_ID13("Xircom", "PS-CE2-10", 0x2e3ee845, 0x947d9073),
1805 PCMCIA_DEVICE_PROD_ID13("Xircom", "R2E-100BTX", 0x2e3ee845, 0x2464a6e3),
1806 PCMCIA_DEVICE_PROD_ID13("Xircom", "RE-10", 0x2e3ee845, 0x3e08d609),
1807 PCMCIA_DEVICE_PROD_ID13("Xircom", "XE2000", 0x2e3ee845, 0xf7188e46),
1808 PCMCIA_DEVICE_PROD_ID12("Compaq", "Ethernet LAN Card", 0x54f7c49c, 0x9fd2f0a2),
1809 PCMCIA_DEVICE_PROD_ID12("Compaq", "Netelligent 10/100 PC Card", 0x54f7c49c, 0xefe96769),
1810 PCMCIA_DEVICE_PROD_ID12("Intel", "EtherExpress(TM) PRO/100 PC Card Mobile Adapter16", 0x816cc815, 0x174397db),
1811 PCMCIA_DEVICE_PROD_ID12("Toshiba", "10/100 Ethernet PC Card", 0x44a09d9c, 0xb44deecf),
1812 /* also matches CFE-10 cards! */
1813 /* PCMCIA_DEVICE_MANF_CARD(0x0105, 0x010a), */
1814 PCMCIA_DEVICE_NULL,
1815};
1816MODULE_DEVICE_TABLE(pcmcia, xirc2ps_ids);
1817
1818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819static struct pcmcia_driver xirc2ps_cs_driver = {
1820 .owner = THIS_MODULE,
1821 .drv = {
1822 .name = "xirc2ps_cs",
1823 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +02001824 .probe = xirc2ps_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +01001825 .remove = xirc2ps_detach,
Dominik Brodowskiff07bb12005-06-27 16:28:28 -07001826 .id_table = xirc2ps_ids,
Dominik Brodowski98e4c282005-11-14 21:21:18 +01001827 .suspend = xirc2ps_suspend,
1828 .resume = xirc2ps_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829};
1830
1831static int __init
1832init_xirc2ps_cs(void)
1833{
1834 return pcmcia_register_driver(&xirc2ps_cs_driver);
1835}
1836
1837static void __exit
1838exit_xirc2ps_cs(void)
1839{
1840 pcmcia_unregister_driver(&xirc2ps_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
1843module_init(init_xirc2ps_cs);
1844module_exit(exit_xirc2ps_cs);
1845
1846#ifndef MODULE
1847static int __init setup_xirc2ps_cs(char *str)
1848{
1849 /* if_port, full_duplex, do_sound, lockup_hack
1850 */
1851 int ints[10] = { -1 };
1852
1853 str = get_options(str, 9, ints);
1854
1855#define MAYBE_SET(X,Y) if (ints[0] >= Y && ints[Y] != -1) { X = ints[Y]; }
1856 MAYBE_SET(if_port, 3);
1857 MAYBE_SET(full_duplex, 4);
1858 MAYBE_SET(do_sound, 5);
1859 MAYBE_SET(lockup_hack, 6);
1860#undef MAYBE_SET
1861
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001862 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
1865__setup("xirc2ps_cs=", setup_xirc2ps_cs);
1866#endif