arcnet: Move files out of include/linux
[cascardo/linux.git] / drivers / net / arcnet / com20020_cs.c
1 /*
2  * Linux ARCnet driver - COM20020 PCMCIA support
3  *
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.
9  *
10  * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
11  *  for sponsoring the further development of this driver.
12  *
13  * **********************
14  *
15  * The original copyright of skeleton.c was as follows:
16  *
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.
22  *
23  * **********************
24  * Changes:
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  * **********************
29  *
30  * For more details, see drivers/net/arcnet.c
31  *
32  * **********************
33  */
34
35 #define pr_fmt(fmt) "arcnet:" KBUILD_MODNAME ": " fmt
36
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>
45 #include <linux/io.h>
46 #include <pcmcia/cistpl.h>
47 #include <pcmcia/ds.h>
48
49 #include "arcdevice.h"
50 #include "com20020.h"
51
52 static void regdump(struct net_device *dev)
53 {
54 #ifdef DEBUG
55         int ioaddr = dev->base_addr;
56         int count;
57
58         netdev_dbg(dev, "register dump:\n");
59         for (count = ioaddr; count < ioaddr + 16; count++) {
60                 if (!(count % 16))
61                         pr_cont("%04X:", count);
62                 pr_cont(" %02X", inb(count));
63         }
64         pr_cont("\n");
65
66         netdev_dbg(dev, "buffer0 dump:\n");
67         /* set up the address register */
68         count = 0;
69         outb((count >> 8) | RDDATAflag | AUTOINCflag, _ADDR_HI);
70         outb(count & 0xff, _ADDR_LO);
71
72         for (count = 0; count < 256 + 32; count++) {
73                 if (!(count % 16))
74                         pr_cont("%04X:", count);
75
76                 /* copy the data */
77                 pr_cont(" %02X", inb(_MEMDATA));
78         }
79         pr_cont("\n");
80 #endif
81 }
82
83 /*====================================================================*/
84
85 /* Parameters that can be set with 'insmod' */
86
87 static int node;
88 static int timeout = 3;
89 static int backplane;
90 static int clockp;
91 static int clockm;
92
93 module_param(node, int, 0);
94 module_param(timeout, int, 0);
95 module_param(backplane, int, 0);
96 module_param(clockp, int, 0);
97 module_param(clockm, int, 0);
98
99 MODULE_LICENSE("GPL");
100
101 /*====================================================================*/
102
103 static int com20020_config(struct pcmcia_device *link);
104 static void com20020_release(struct pcmcia_device *link);
105
106 static void com20020_detach(struct pcmcia_device *p_dev);
107
108 /*====================================================================*/
109
110 static int com20020_probe(struct pcmcia_device *p_dev)
111 {
112         struct com20020_dev *info;
113         struct net_device *dev;
114         struct arcnet_local *lp;
115
116         dev_dbg(&p_dev->dev, "com20020_attach()\n");
117
118         /* Create new network device */
119         info = kzalloc(sizeof(*info), GFP_KERNEL);
120         if (!info)
121                 goto fail_alloc_info;
122
123         dev = alloc_arcdev("");
124         if (!dev)
125                 goto fail_alloc_dev;
126
127         lp = netdev_priv(dev);
128         lp->timeout = timeout;
129         lp->backplane = backplane;
130         lp->clockp = clockp;
131         lp->clockm = clockm & 3;
132         lp->hw.owner = THIS_MODULE;
133
134         /* fill in our module parameters as defaults */
135         dev->dev_addr[0] = node;
136
137         p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_8;
138         p_dev->resource[0]->end = 16;
139         p_dev->config_flags |= CONF_ENABLE_IRQ;
140
141         info->dev = dev;
142         p_dev->priv = info;
143
144         return com20020_config(p_dev);
145
146 fail_alloc_dev:
147         kfree(info);
148 fail_alloc_info:
149         return -ENOMEM;
150 } /* com20020_attach */
151
152 static void com20020_detach(struct pcmcia_device *link)
153 {
154         struct com20020_dev *info = link->priv;
155         struct net_device *dev = info->dev;
156
157         dev_dbg(&link->dev, "detach...\n");
158
159         dev_dbg(&link->dev, "com20020_detach\n");
160
161         dev_dbg(&link->dev, "unregister...\n");
162
163         unregister_netdev(dev);
164
165         /* this is necessary because we register our IRQ separately
166          * from card services.
167          */
168         if (dev->irq)
169                 free_irq(dev->irq, dev);
170
171         com20020_release(link);
172
173         /* Unlink device structure, free bits */
174         dev_dbg(&link->dev, "unlinking...\n");
175         if (link->priv) {
176                 dev = info->dev;
177                 if (dev) {
178                         dev_dbg(&link->dev, "kfree...\n");
179                         free_netdev(dev);
180                 }
181                 dev_dbg(&link->dev, "kfree2...\n");
182                 kfree(info);
183         }
184
185 } /* com20020_detach */
186
187 static int com20020_config(struct pcmcia_device *link)
188 {
189         struct arcnet_local *lp;
190         struct com20020_dev *info;
191         struct net_device *dev;
192         int i, ret;
193         int ioaddr;
194
195         info = link->priv;
196         dev = info->dev;
197
198         dev_dbg(&link->dev, "config...\n");
199
200         dev_dbg(&link->dev, "com20020_config\n");
201
202         dev_dbg(&link->dev, "baseport1 is %Xh\n",
203                 (unsigned int)link->resource[0]->start);
204
205         i = -ENODEV;
206         link->io_lines = 16;
207
208         if (!link->resource[0]->start) {
209                 for (ioaddr = 0x100; ioaddr < 0x400; ioaddr += 0x10) {
210                         link->resource[0]->start = ioaddr;
211                         i = pcmcia_request_io(link);
212                         if (i == 0)
213                                 break;
214                 }
215         } else {
216                 i = pcmcia_request_io(link);
217         }
218
219         if (i != 0) {
220                 dev_dbg(&link->dev, "requestIO failed totally!\n");
221                 goto failed;
222         }
223
224         ioaddr = dev->base_addr = link->resource[0]->start;
225         dev_dbg(&link->dev, "got ioaddr %Xh\n", ioaddr);
226
227         dev_dbg(&link->dev, "request IRQ %d\n",
228                 link->irq);
229         if (!link->irq) {
230                 dev_dbg(&link->dev, "requestIRQ failed totally!\n");
231                 goto failed;
232         }
233
234         dev->irq = link->irq;
235
236         ret = pcmcia_enable_device(link);
237         if (ret)
238                 goto failed;
239
240         if (com20020_check(dev)) {
241                 regdump(dev);
242                 goto failed;
243         }
244
245         lp = netdev_priv(dev);
246         lp->card_name = "PCMCIA COM20020";
247         lp->card_flags = ARC_CAN_10MBIT; /* pretend all of them can 10Mbit */
248
249         SET_NETDEV_DEV(dev, &link->dev);
250
251         i = com20020_found(dev, 0);     /* calls register_netdev */
252
253         if (i != 0) {
254                 dev_notice(&link->dev,
255                            "com20020_found() failed\n");
256                 goto failed;
257         }
258
259         netdev_dbg(dev, "port %#3lx, irq %d\n",
260                    dev->base_addr, dev->irq);
261         return 0;
262
263 failed:
264         dev_dbg(&link->dev, "com20020_config failed...\n");
265         com20020_release(link);
266         return -ENODEV;
267 } /* com20020_config */
268
269 static void com20020_release(struct pcmcia_device *link)
270 {
271         dev_dbg(&link->dev, "com20020_release\n");
272         pcmcia_disable_device(link);
273 }
274
275 static int com20020_suspend(struct pcmcia_device *link)
276 {
277         struct com20020_dev *info = link->priv;
278         struct net_device *dev = info->dev;
279
280         if (link->open)
281                 netif_device_detach(dev);
282
283         return 0;
284 }
285
286 static int com20020_resume(struct pcmcia_device *link)
287 {
288         struct com20020_dev *info = link->priv;
289         struct net_device *dev = info->dev;
290
291         if (link->open) {
292                 int ioaddr = dev->base_addr;
293                 struct arcnet_local *lp = netdev_priv(dev);
294
295                 ARCRESET;
296         }
297
298         return 0;
299 }
300
301 static const struct pcmcia_device_id com20020_ids[] = {
302         PCMCIA_DEVICE_PROD_ID12("Contemporary Control Systems, Inc.",
303                                 "PCM20 Arcnet Adapter", 0x59991666, 0x95dfffaf),
304         PCMCIA_DEVICE_PROD_ID12("SoHard AG",
305                                 "SH ARC PCMCIA", 0xf8991729, 0x69dff0c7),
306         PCMCIA_DEVICE_NULL
307 };
308 MODULE_DEVICE_TABLE(pcmcia, com20020_ids);
309
310 static struct pcmcia_driver com20020_cs_driver = {
311         .owner          = THIS_MODULE,
312         .name           = "com20020_cs",
313         .probe          = com20020_probe,
314         .remove         = com20020_detach,
315         .id_table       = com20020_ids,
316         .suspend        = com20020_suspend,
317         .resume         = com20020_resume,
318 };
319 module_pcmcia_driver(com20020_cs_driver);