arcnet: Convert BUGMSG and BUGMSG2 to arc_prink and arc_cont
[deliverable/linux.git] / drivers / net / arcnet / com20020_cs.c
CommitLineData
1da177e4
LT
1/*
2 * Linux ARCnet driver - COM20020 PCMCIA support
cb334648 3 *
1da177e4
LT
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.
cb334648 22 *
1da177e4
LT
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 * **********************
cb334648 29 *
1da177e4
LT
30 * For more details, see drivers/net/arcnet.c
31 *
32 * **********************
33 */
34#include <linux/kernel.h>
1da177e4
LT
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>
44
1da177e4
LT
45#include <pcmcia/cistpl.h>
46#include <pcmcia/ds.h>
47
5e7ef913 48#include <linux/io.h>
1da177e4
LT
49
50#define VERSION "arcnet: COM20020 PCMCIA support loaded.\n"
51
1da177e4
LT
52static void regdump(struct net_device *dev)
53{
636b8116 54#ifdef DEBUG
cb334648
JP
55 int ioaddr = dev->base_addr;
56 int count;
57
58 netdev_dbg(dev, "register dump:\n");
7f5e760c 59 for (count = ioaddr; count < ioaddr + 16; count++) {
cb334648
JP
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");
1da177e4 67 /* set up the address register */
cb334648 68 count = 0;
1da177e4
LT
69 outb((count >> 8) | RDDATAflag | AUTOINCflag, _ADDR_HI);
70 outb(count & 0xff, _ADDR_LO);
cb334648 71
7f5e760c 72 for (count = 0; count < 256 + 32; count++) {
cb334648
JP
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");
636b8116 80#endif
1da177e4
LT
81}
82
1da177e4
LT
83/*====================================================================*/
84
85/* Parameters that can be set with 'insmod' */
86
87static int node;
88static int timeout = 3;
89static int backplane;
90static int clockp;
91static int clockm;
92
93module_param(node, int, 0);
94module_param(timeout, int, 0);
95module_param(backplane, int, 0);
96module_param(clockp, int, 0);
97module_param(clockm, int, 0);
98
99MODULE_LICENSE("GPL");
100
101/*====================================================================*/
102
15b99ac1 103static int com20020_config(struct pcmcia_device *link);
fba395ee 104static void com20020_release(struct pcmcia_device *link);
1da177e4 105
cc3b4866 106static void com20020_detach(struct pcmcia_device *p_dev);
1da177e4 107
1da177e4
LT
108/*====================================================================*/
109
15b99ac1 110static int com20020_probe(struct pcmcia_device *p_dev)
1da177e4 111{
cb334648
JP
112 struct com20020_dev *info;
113 struct net_device *dev;
114 struct arcnet_local *lp;
f8cfa618 115
cb334648 116 dev_dbg(&p_dev->dev, "com20020_attach()\n");
1da177e4 117
cb334648
JP
118 /* Create new network device */
119 info = kzalloc(sizeof(*info), GFP_KERNEL);
120 if (!info)
121 goto fail_alloc_info;
1da177e4 122
cb334648
JP
123 dev = alloc_arcdev("");
124 if (!dev)
125 goto fail_alloc_dev;
1da177e4 126
cb334648
JP
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;
1da177e4 133
cb334648
JP
134 /* fill in our module parameters as defaults */
135 dev->dev_addr[0] = node;
1da177e4 136
cb334648
JP
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;
1da177e4 140
cb334648
JP
141 info->dev = dev;
142 p_dev->priv = info;
1da177e4 143
cb334648 144 return com20020_config(p_dev);
1da177e4
LT
145
146fail_alloc_dev:
cb334648 147 kfree(info);
1da177e4 148fail_alloc_info:
cb334648 149 return -ENOMEM;
1da177e4
LT
150} /* com20020_attach */
151
fba395ee 152static void com20020_detach(struct pcmcia_device *link)
1da177e4 153{
cb334648
JP
154 struct com20020_dev *info = link->priv;
155 struct net_device *dev = info->dev;
b4635811 156
cb334648 157 dev_dbg(&link->dev, "detach...\n");
1da177e4 158
cb334648 159 dev_dbg(&link->dev, "com20020_detach\n");
1da177e4 160
cb334648 161 dev_dbg(&link->dev, "unregister...\n");
1da177e4 162
cb334648 163 unregister_netdev(dev);
b4635811 164
f2f0a16b 165 /* this is necessary because we register our IRQ separately
cb334648
JP
166 * from card services.
167 */
168 if (dev->irq)
169 free_irq(dev->irq, dev);
1da177e4 170
cb334648 171 com20020_release(link);
1da177e4 172
cb334648
JP
173 /* Unlink device structure, free bits */
174 dev_dbg(&link->dev, "unlinking...\n");
7f5e760c 175 if (link->priv) {
cb334648 176 dev = info->dev;
7f5e760c 177 if (dev) {
cb334648
JP
178 dev_dbg(&link->dev, "kfree...\n");
179 free_netdev(dev);
180 }
181 dev_dbg(&link->dev, "kfree2...\n");
182 kfree(info);
1da177e4 183 }
1da177e4
LT
184
185} /* com20020_detach */
186
15b99ac1 187static int com20020_config(struct pcmcia_device *link)
1da177e4 188{
cb334648
JP
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;
1da177e4 197
cb334648 198 dev_dbg(&link->dev, "config...\n");
1da177e4 199
cb334648 200 dev_dbg(&link->dev, "com20020_config\n");
1da177e4 201
cb334648
JP
202 dev_dbg(&link->dev, "baseport1 is %Xh\n",
203 (unsigned int)link->resource[0]->start);
1da177e4 204
cb334648
JP
205 i = -ENODEV;
206 link->io_lines = 16;
90abdc3b 207
7f5e760c
JP
208 if (!link->resource[0]->start) {
209 for (ioaddr = 0x100; ioaddr < 0x400; ioaddr += 0x10) {
cb334648
JP
210 link->resource[0]->start = ioaddr;
211 i = pcmcia_request_io(link);
212 if (i == 0)
213 break;
214 }
7f5e760c 215 } else {
cb334648 216 i = pcmcia_request_io(link);
7f5e760c 217 }
cb334648 218
7f5e760c 219 if (i != 0) {
cb334648
JP
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);
7f5e760c 229 if (!link->irq) {
cb334648
JP
230 dev_dbg(&link->dev, "requestIRQ failed totally!\n");
231 goto failed;
232 }
90abdc3b 233
cb334648
JP
234 dev->irq = link->irq;
235
236 ret = pcmcia_enable_device(link);
237 if (ret)
238 goto failed;
239
7f5e760c 240 if (com20020_check(dev)) {
cb334648
JP
241 regdump(dev);
242 goto failed;
1da177e4 243 }
cb334648
JP
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;
1da177e4 262
1da177e4 263failed:
cb334648
JP
264 dev_dbg(&link->dev, "com20020_config failed...\n");
265 com20020_release(link);
266 return -ENODEV;
1da177e4
LT
267} /* com20020_config */
268
fba395ee 269static void com20020_release(struct pcmcia_device *link)
1da177e4 270{
dd0fab5b 271 dev_dbg(&link->dev, "com20020_release\n");
fba395ee 272 pcmcia_disable_device(link);
1da177e4
LT
273}
274
fba395ee 275static int com20020_suspend(struct pcmcia_device *link)
98e4c28b 276{
2dfd2533 277 struct com20020_dev *info = link->priv;
98e4c28b
DB
278 struct net_device *dev = info->dev;
279
e2d40963 280 if (link->open)
8661bb5b 281 netif_device_detach(dev);
98e4c28b
DB
282
283 return 0;
284}
285
fba395ee 286static int com20020_resume(struct pcmcia_device *link)
98e4c28b 287{
2dfd2533 288 struct com20020_dev *info = link->priv;
98e4c28b
DB
289 struct net_device *dev = info->dev;
290
e2d40963 291 if (link->open) {
8661bb5b 292 int ioaddr = dev->base_addr;
4cf1653a 293 struct arcnet_local *lp = netdev_priv(dev);
01a1d5ac 294
8661bb5b
DB
295 ARCRESET;
296 }
98e4c28b
DB
297
298 return 0;
299}
300
25f8f54f 301static const struct pcmcia_device_id com20020_ids[] = {
6bb1c39a 302 PCMCIA_DEVICE_PROD_ID12("Contemporary Control Systems, Inc.",
cb334648 303 "PCM20 Arcnet Adapter", 0x59991666, 0x95dfffaf),
6bb1c39a 304 PCMCIA_DEVICE_PROD_ID12("SoHard AG",
cb334648 305 "SH ARC PCMCIA", 0xf8991729, 0x69dff0c7),
7fb22bb4
DB
306 PCMCIA_DEVICE_NULL
307};
308MODULE_DEVICE_TABLE(pcmcia, com20020_ids);
1da177e4
LT
309
310static struct pcmcia_driver com20020_cs_driver = {
311 .owner = THIS_MODULE,
2e9b981a 312 .name = "com20020_cs",
15b99ac1 313 .probe = com20020_probe,
cc3b4866 314 .remove = com20020_detach,
7fb22bb4 315 .id_table = com20020_ids,
98e4c28b
DB
316 .suspend = com20020_suspend,
317 .resume = com20020_resume,
1da177e4 318};
fdd3f29e 319module_pcmcia_driver(com20020_cs_driver);
This page took 0.897287 seconds and 5 git commands to generate.