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 * **********************
35 #define pr_fmt(fmt) "arcnet:" KBUILD_MODNAME ": " fmt
37 #include <linux/kernel.h>
38 #include <linux/ptrace.h>
39 #include <linux/slab.h>
40 #include <linux/string.h>
41 #include <linux/timer.h>
42 #include <linux/delay.h>
43 #include <linux/module.h>
44 #include <linux/netdevice.h>
46 #include <pcmcia/cistpl.h>
47 #include <pcmcia/ds.h>
49 #include "arcdevice.h"
52 static void regdump(struct net_device
*dev
)
55 int ioaddr
= dev
->base_addr
;
58 netdev_dbg(dev
, "register dump:\n");
59 for (count
= 0; count
< 16; count
++) {
61 pr_cont("%04X:", ioaddr
+ count
);
62 pr_cont(" %02X", arcnet_inb(ioaddr
, count
));
66 netdev_dbg(dev
, "buffer0 dump:\n");
67 /* set up the address register */
69 arcnet_outb((count
>> 8) | RDDATAflag
| AUTOINCflag
,
70 ioaddr
, COM20020_REG_W_ADDR_HI
);
71 arcnet_outb(count
& 0xff, ioaddr
, COM20020_REG_W_ADDR_LO
);
73 for (count
= 0; count
< 256 + 32; count
++) {
75 pr_cont("%04X:", count
);
78 pr_cont(" %02X", arcnet_inb(ioaddr
, COM20020_REG_RW_MEMDATA
));
84 /*====================================================================*/
86 /* Parameters that can be set with 'insmod' */
89 static int timeout
= 3;
94 module_param(node
, int, 0);
95 module_param(timeout
, int, 0);
96 module_param(backplane
, int, 0);
97 module_param(clockp
, int, 0);
98 module_param(clockm
, int, 0);
100 MODULE_DESCRIPTION("ARCnet COM20020 chipset PCMCIA driver");
101 MODULE_LICENSE("GPL");
103 /*====================================================================*/
105 static int com20020_config(struct pcmcia_device
*link
);
106 static void com20020_release(struct pcmcia_device
*link
);
108 static void com20020_detach(struct pcmcia_device
*p_dev
);
110 /*====================================================================*/
112 static int com20020_probe(struct pcmcia_device
*p_dev
)
114 struct com20020_dev
*info
;
115 struct net_device
*dev
;
116 struct arcnet_local
*lp
;
119 dev_dbg(&p_dev
->dev
, "com20020_attach()\n");
121 /* Create new network device */
122 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
124 goto fail_alloc_info
;
126 dev
= alloc_arcdev("");
130 lp
= netdev_priv(dev
);
131 lp
->timeout
= timeout
;
132 lp
->backplane
= backplane
;
134 lp
->clockm
= clockm
& 3;
135 lp
->hw
.owner
= THIS_MODULE
;
137 /* fill in our module parameters as defaults */
138 arcnet_set_addr(dev
, node
);
140 p_dev
->resource
[0]->flags
|= IO_DATA_PATH_WIDTH_8
;
141 p_dev
->resource
[0]->end
= 16;
142 p_dev
->config_flags
|= CONF_ENABLE_IRQ
;
147 ret
= com20020_config(p_dev
);
159 } /* com20020_attach */
161 static void com20020_detach(struct pcmcia_device
*link
)
163 struct com20020_dev
*info
= link
->priv
;
164 struct net_device
*dev
= info
->dev
;
166 dev_dbg(&link
->dev
, "detach...\n");
168 dev_dbg(&link
->dev
, "com20020_detach\n");
170 dev_dbg(&link
->dev
, "unregister...\n");
172 unregister_netdev(dev
);
174 /* this is necessary because we register our IRQ separately
175 * from card services.
178 free_irq(dev
->irq
, dev
);
180 com20020_release(link
);
182 /* Unlink device structure, free bits */
183 dev_dbg(&link
->dev
, "unlinking...\n");
187 dev_dbg(&link
->dev
, "kfree...\n");
190 dev_dbg(&link
->dev
, "kfree2...\n");
194 } /* com20020_detach */
196 static int com20020_config(struct pcmcia_device
*link
)
198 struct arcnet_local
*lp
;
199 struct com20020_dev
*info
;
200 struct net_device
*dev
;
207 dev_dbg(&link
->dev
, "config...\n");
209 dev_dbg(&link
->dev
, "com20020_config\n");
211 dev_dbg(&link
->dev
, "baseport1 is %Xh\n",
212 (unsigned int)link
->resource
[0]->start
);
217 if (!link
->resource
[0]->start
) {
218 for (ioaddr
= 0x100; ioaddr
< 0x400; ioaddr
+= 0x10) {
219 link
->resource
[0]->start
= ioaddr
;
220 i
= pcmcia_request_io(link
);
225 i
= pcmcia_request_io(link
);
229 dev_dbg(&link
->dev
, "requestIO failed totally!\n");
233 ioaddr
= dev
->base_addr
= link
->resource
[0]->start
;
234 dev_dbg(&link
->dev
, "got ioaddr %Xh\n", ioaddr
);
236 dev_dbg(&link
->dev
, "request IRQ %d\n",
239 dev_dbg(&link
->dev
, "requestIRQ failed totally!\n");
243 dev
->irq
= link
->irq
;
245 ret
= pcmcia_enable_device(link
);
249 if (com20020_check(dev
)) {
254 lp
= netdev_priv(dev
);
255 lp
->card_name
= "PCMCIA COM20020";
256 lp
->card_flags
= ARC_CAN_10MBIT
; /* pretend all of them can 10Mbit */
258 SET_NETDEV_DEV(dev
, &link
->dev
);
260 i
= com20020_found(dev
, 0); /* calls register_netdev */
263 dev_notice(&link
->dev
,
264 "com20020_found() failed\n");
268 netdev_dbg(dev
, "port %#3lx, irq %d\n",
269 dev
->base_addr
, dev
->irq
);
273 dev_dbg(&link
->dev
, "com20020_config failed...\n");
274 com20020_release(link
);
276 } /* com20020_config */
278 static void com20020_release(struct pcmcia_device
*link
)
280 dev_dbg(&link
->dev
, "com20020_release\n");
281 pcmcia_disable_device(link
);
284 static int com20020_suspend(struct pcmcia_device
*link
)
286 struct com20020_dev
*info
= link
->priv
;
287 struct net_device
*dev
= info
->dev
;
290 netif_device_detach(dev
);
295 static int com20020_resume(struct pcmcia_device
*link
)
297 struct com20020_dev
*info
= link
->priv
;
298 struct net_device
*dev
= info
->dev
;
301 int ioaddr
= dev
->base_addr
;
302 struct arcnet_local
*lp
= netdev_priv(dev
);
304 arcnet_outb(lp
->config
| 0x80, ioaddr
, COM20020_REG_W_CONFIG
);
306 arcnet_outb(lp
->config
, ioaddr
, COM20020_REG_W_CONFIG
);
312 static const struct pcmcia_device_id com20020_ids
[] = {
313 PCMCIA_DEVICE_PROD_ID12("Contemporary Control Systems, Inc.",
314 "PCM20 Arcnet Adapter", 0x59991666, 0x95dfffaf),
315 PCMCIA_DEVICE_PROD_ID12("SoHard AG",
316 "SH ARC PCMCIA", 0xf8991729, 0x69dff0c7),
319 MODULE_DEVICE_TABLE(pcmcia
, com20020_ids
);
321 static struct pcmcia_driver com20020_cs_driver
= {
322 .owner
= THIS_MODULE
,
323 .name
= "com20020_cs",
324 .probe
= com20020_probe
,
325 .remove
= com20020_detach
,
326 .id_table
= com20020_ids
,
327 .suspend
= com20020_suspend
,
328 .resume
= com20020_resume
,
330 module_pcmcia_driver(com20020_cs_driver
);