]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/arcnet/com20020_cs.c
arcnet: Use include/linux path for asm
[mirror_ubuntu-artful-kernel.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
cb334648
JP
165 /*
166 * this is necessary because we register our IRQ separately
167 * from card services.
168 */
169 if (dev->irq)
170 free_irq(dev->irq, dev);
1da177e4 171
cb334648 172 com20020_release(link);
1da177e4 173
cb334648
JP
174 /* Unlink device structure, free bits */
175 dev_dbg(&link->dev, "unlinking...\n");
7f5e760c 176 if (link->priv) {
cb334648 177 dev = info->dev;
7f5e760c 178 if (dev) {
cb334648
JP
179 dev_dbg(&link->dev, "kfree...\n");
180 free_netdev(dev);
181 }
182 dev_dbg(&link->dev, "kfree2...\n");
183 kfree(info);
1da177e4 184 }
1da177e4
LT
185
186} /* com20020_detach */
187
15b99ac1 188static int com20020_config(struct pcmcia_device *link)
1da177e4 189{
cb334648
JP
190 struct arcnet_local *lp;
191 struct com20020_dev *info;
192 struct net_device *dev;
193 int i, ret;
194 int ioaddr;
195
196 info = link->priv;
197 dev = info->dev;
1da177e4 198
cb334648 199 dev_dbg(&link->dev, "config...\n");
1da177e4 200
cb334648 201 dev_dbg(&link->dev, "com20020_config\n");
1da177e4 202
cb334648
JP
203 dev_dbg(&link->dev, "baseport1 is %Xh\n",
204 (unsigned int)link->resource[0]->start);
1da177e4 205
cb334648
JP
206 i = -ENODEV;
207 link->io_lines = 16;
90abdc3b 208
7f5e760c
JP
209 if (!link->resource[0]->start) {
210 for (ioaddr = 0x100; ioaddr < 0x400; ioaddr += 0x10) {
cb334648
JP
211 link->resource[0]->start = ioaddr;
212 i = pcmcia_request_io(link);
213 if (i == 0)
214 break;
215 }
7f5e760c 216 } else {
cb334648 217 i = pcmcia_request_io(link);
7f5e760c 218 }
cb334648 219
7f5e760c 220 if (i != 0) {
cb334648
JP
221 dev_dbg(&link->dev, "requestIO failed totally!\n");
222 goto failed;
223 }
224
225 ioaddr = dev->base_addr = link->resource[0]->start;
226 dev_dbg(&link->dev, "got ioaddr %Xh\n", ioaddr);
227
228 dev_dbg(&link->dev, "request IRQ %d\n",
229 link->irq);
7f5e760c 230 if (!link->irq) {
cb334648
JP
231 dev_dbg(&link->dev, "requestIRQ failed totally!\n");
232 goto failed;
233 }
90abdc3b 234
cb334648
JP
235 dev->irq = link->irq;
236
237 ret = pcmcia_enable_device(link);
238 if (ret)
239 goto failed;
240
7f5e760c 241 if (com20020_check(dev)) {
cb334648
JP
242 regdump(dev);
243 goto failed;
1da177e4 244 }
cb334648
JP
245
246 lp = netdev_priv(dev);
247 lp->card_name = "PCMCIA COM20020";
248 lp->card_flags = ARC_CAN_10MBIT; /* pretend all of them can 10Mbit */
249
250 SET_NETDEV_DEV(dev, &link->dev);
251
252 i = com20020_found(dev, 0); /* calls register_netdev */
253
254 if (i != 0) {
255 dev_notice(&link->dev,
256 "com20020_found() failed\n");
257 goto failed;
258 }
259
260 netdev_dbg(dev, "port %#3lx, irq %d\n",
261 dev->base_addr, dev->irq);
262 return 0;
1da177e4 263
1da177e4 264failed:
cb334648
JP
265 dev_dbg(&link->dev, "com20020_config failed...\n");
266 com20020_release(link);
267 return -ENODEV;
1da177e4
LT
268} /* com20020_config */
269
fba395ee 270static void com20020_release(struct pcmcia_device *link)
1da177e4 271{
dd0fab5b 272 dev_dbg(&link->dev, "com20020_release\n");
fba395ee 273 pcmcia_disable_device(link);
1da177e4
LT
274}
275
fba395ee 276static int com20020_suspend(struct pcmcia_device *link)
98e4c28b 277{
2dfd2533 278 struct com20020_dev *info = link->priv;
98e4c28b
DB
279 struct net_device *dev = info->dev;
280
e2d40963 281 if (link->open)
8661bb5b 282 netif_device_detach(dev);
98e4c28b
DB
283
284 return 0;
285}
286
fba395ee 287static int com20020_resume(struct pcmcia_device *link)
98e4c28b 288{
2dfd2533 289 struct com20020_dev *info = link->priv;
98e4c28b
DB
290 struct net_device *dev = info->dev;
291
e2d40963 292 if (link->open) {
8661bb5b 293 int ioaddr = dev->base_addr;
4cf1653a 294 struct arcnet_local *lp = netdev_priv(dev);
01a1d5ac 295
8661bb5b
DB
296 ARCRESET;
297 }
98e4c28b
DB
298
299 return 0;
300}
301
25f8f54f 302static const struct pcmcia_device_id com20020_ids[] = {
6bb1c39a 303 PCMCIA_DEVICE_PROD_ID12("Contemporary Control Systems, Inc.",
cb334648 304 "PCM20 Arcnet Adapter", 0x59991666, 0x95dfffaf),
6bb1c39a 305 PCMCIA_DEVICE_PROD_ID12("SoHard AG",
cb334648 306 "SH ARC PCMCIA", 0xf8991729, 0x69dff0c7),
7fb22bb4
DB
307 PCMCIA_DEVICE_NULL
308};
309MODULE_DEVICE_TABLE(pcmcia, com20020_ids);
1da177e4
LT
310
311static struct pcmcia_driver com20020_cs_driver = {
312 .owner = THIS_MODULE,
2e9b981a 313 .name = "com20020_cs",
15b99ac1 314 .probe = com20020_probe,
cc3b4866 315 .remove = com20020_detach,
7fb22bb4 316 .id_table = com20020_ids,
98e4c28b
DB
317 .suspend = com20020_suspend,
318 .resume = com20020_resume,
1da177e4 319};
fdd3f29e 320module_pcmcia_driver(com20020_cs_driver);