2 * Linux ARCnet driver - COM20020 PCMCIA support
4 * Written 1994-1999 by Avery Pennarun,
5 * based on an ISA version by David Woodhouse.
6 * Derived from ibmtr_cs.c by Steve Kipisz (pcmcia-cs 3.1.4)
7 * which was derived from pcnet_cs.c by David Hinds.
8 * Some additional portions derived from skeleton.c by Donald Becker.
10 * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
11 * for sponsoring the further development of this driver.
13 * **********************
15 * The original copyright of skeleton.c was as follows:
17 * skeleton.c Written 1993 by Donald Becker.
18 * Copyright 1993 United States Government as represented by the
19 * Director, National Security Agency. This software may only be used
20 * and distributed according to the terms of the GNU General Public License as
21 * modified by SRC, incorporated herein by reference.
23 * **********************
25 * Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 08/08/2000
26 * - reorganize kmallocs in com20020_attach, checking all for failure
27 * and releasing the previous allocations if one fails
28 * **********************
30 * For more details, see drivers/net/arcnet.c
32 * **********************
34 #include <linux/kernel.h>
35 #include <linux/ptrace.h>
36 #include <linux/slab.h>
37 #include <linux/string.h>
38 #include <linux/timer.h>
39 #include <linux/delay.h>
40 #include <linux/module.h>
41 #include <linux/netdevice.h>
42 #include <linux/arcdevice.h>
43 #include <linux/com20020.h>
45 #include <pcmcia/cistpl.h>
46 #include <pcmcia/ds.h>
50 #define VERSION "arcnet: COM20020 PCMCIA support loaded.\n"
53 static void regdump(struct net_device
*dev
)
56 int ioaddr
= dev
->base_addr
;
59 netdev_dbg(dev
, "register dump:\n");
60 for (count
= ioaddr
; count
< ioaddr
+ 16; count
++)
63 pr_cont("%04X:", count
);
64 pr_cont(" %02X", inb(count
));
68 netdev_dbg(dev
, "buffer0 dump:\n");
69 /* set up the address register */
71 outb((count
>> 8) | RDDATAflag
| AUTOINCflag
, _ADDR_HI
);
72 outb(count
& 0xff, _ADDR_LO
);
74 for (count
= 0; count
< 256+32; count
++)
77 pr_cont("%04X:", count
);
80 pr_cont(" %02X", inb(_MEMDATA
));
88 /*====================================================================*/
90 /* Parameters that can be set with 'insmod' */
93 static int timeout
= 3;
98 module_param(node
, int, 0);
99 module_param(timeout
, int, 0);
100 module_param(backplane
, int, 0);
101 module_param(clockp
, int, 0);
102 module_param(clockm
, int, 0);
104 MODULE_LICENSE("GPL");
106 /*====================================================================*/
108 static int com20020_config(struct pcmcia_device
*link
);
109 static void com20020_release(struct pcmcia_device
*link
);
111 static void com20020_detach(struct pcmcia_device
*p_dev
);
113 /*====================================================================*/
115 static int com20020_probe(struct pcmcia_device
*p_dev
)
117 struct com20020_dev
*info
;
118 struct net_device
*dev
;
119 struct arcnet_local
*lp
;
121 dev_dbg(&p_dev
->dev
, "com20020_attach()\n");
123 /* Create new network device */
124 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
126 goto fail_alloc_info
;
128 dev
= alloc_arcdev("");
132 lp
= netdev_priv(dev
);
133 lp
->timeout
= timeout
;
134 lp
->backplane
= backplane
;
136 lp
->clockm
= clockm
& 3;
137 lp
->hw
.owner
= THIS_MODULE
;
139 /* fill in our module parameters as defaults */
140 dev
->dev_addr
[0] = node
;
142 p_dev
->resource
[0]->flags
|= IO_DATA_PATH_WIDTH_8
;
143 p_dev
->resource
[0]->end
= 16;
144 p_dev
->config_flags
|= CONF_ENABLE_IRQ
;
149 return com20020_config(p_dev
);
155 } /* com20020_attach */
157 static void com20020_detach(struct pcmcia_device
*link
)
159 struct com20020_dev
*info
= link
->priv
;
160 struct net_device
*dev
= info
->dev
;
162 dev_dbg(&link
->dev
, "detach...\n");
164 dev_dbg(&link
->dev
, "com20020_detach\n");
166 dev_dbg(&link
->dev
, "unregister...\n");
168 unregister_netdev(dev
);
171 * this is necessary because we register our IRQ separately
172 * from card services.
175 free_irq(dev
->irq
, dev
);
177 com20020_release(link
);
179 /* Unlink device structure, free bits */
180 dev_dbg(&link
->dev
, "unlinking...\n");
186 dev_dbg(&link
->dev
, "kfree...\n");
189 dev_dbg(&link
->dev
, "kfree2...\n");
193 } /* com20020_detach */
195 static int com20020_config(struct pcmcia_device
*link
)
197 struct arcnet_local
*lp
;
198 struct com20020_dev
*info
;
199 struct net_device
*dev
;
206 dev_dbg(&link
->dev
, "config...\n");
208 dev_dbg(&link
->dev
, "com20020_config\n");
210 dev_dbg(&link
->dev
, "baseport1 is %Xh\n",
211 (unsigned int) link
->resource
[0]->start
);
216 if (!link
->resource
[0]->start
)
218 for (ioaddr
= 0x100; ioaddr
< 0x400; ioaddr
+= 0x10)
220 link
->resource
[0]->start
= ioaddr
;
221 i
= pcmcia_request_io(link
);
227 i
= pcmcia_request_io(link
);
231 dev_dbg(&link
->dev
, "requestIO failed totally!\n");
235 ioaddr
= dev
->base_addr
= link
->resource
[0]->start
;
236 dev_dbg(&link
->dev
, "got ioaddr %Xh\n", ioaddr
);
238 dev_dbg(&link
->dev
, "request IRQ %d\n",
242 dev_dbg(&link
->dev
, "requestIRQ failed totally!\n");
246 dev
->irq
= link
->irq
;
248 ret
= pcmcia_enable_device(link
);
252 if (com20020_check(dev
))
258 lp
= netdev_priv(dev
);
259 lp
->card_name
= "PCMCIA COM20020";
260 lp
->card_flags
= ARC_CAN_10MBIT
; /* pretend all of them can 10Mbit */
262 SET_NETDEV_DEV(dev
, &link
->dev
);
264 i
= com20020_found(dev
, 0); /* calls register_netdev */
267 dev_notice(&link
->dev
,
268 "com20020_found() failed\n");
272 netdev_dbg(dev
, "port %#3lx, irq %d\n",
273 dev
->base_addr
, dev
->irq
);
277 dev_dbg(&link
->dev
, "com20020_config failed...\n");
278 com20020_release(link
);
280 } /* com20020_config */
282 static void com20020_release(struct pcmcia_device
*link
)
284 dev_dbg(&link
->dev
, "com20020_release\n");
285 pcmcia_disable_device(link
);
288 static int com20020_suspend(struct pcmcia_device
*link
)
290 struct com20020_dev
*info
= link
->priv
;
291 struct net_device
*dev
= info
->dev
;
294 netif_device_detach(dev
);
299 static int com20020_resume(struct pcmcia_device
*link
)
301 struct com20020_dev
*info
= link
->priv
;
302 struct net_device
*dev
= info
->dev
;
305 int ioaddr
= dev
->base_addr
;
306 struct arcnet_local
*lp
= netdev_priv(dev
);
313 static const struct pcmcia_device_id com20020_ids
[] = {
314 PCMCIA_DEVICE_PROD_ID12("Contemporary Control Systems, Inc.",
315 "PCM20 Arcnet Adapter", 0x59991666, 0x95dfffaf),
316 PCMCIA_DEVICE_PROD_ID12("SoHard AG",
317 "SH ARC PCMCIA", 0xf8991729, 0x69dff0c7),
320 MODULE_DEVICE_TABLE(pcmcia
, com20020_ids
);
322 static struct pcmcia_driver com20020_cs_driver
= {
323 .owner
= THIS_MODULE
,
324 .name
= "com20020_cs",
325 .probe
= com20020_probe
,
326 .remove
= com20020_detach
,
327 .id_table
= com20020_ids
,
328 .suspend
= com20020_suspend
,
329 .resume
= com20020_resume
,
331 module_pcmcia_driver(com20020_cs_driver
);