]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/net/arcnet/com20020-pci.c
945f532078e97d15b42ea9a5f5163e3ccc53a6c7
[karo-tx-linux.git] / drivers / net / arcnet / com20020-pci.c
1 /*
2  * Linux ARCnet driver - COM20020 PCI support
3  * Contemporary Controls PCI20 and SOHARD SH-ARC PCI
4  * 
5  * Written 1994-1999 by Avery Pennarun,
6  *    based on an ISA version by David Woodhouse.
7  * Written 1999-2000 by Martin Mares <mj@ucw.cz>.
8  * 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  *
25  * For more details, see drivers/net/arcnet.c
26  *
27  * **********************
28  */
29 #include <linux/module.h>
30 #include <linux/moduleparam.h>
31 #include <linux/kernel.h>
32 #include <linux/types.h>
33 #include <linux/ioport.h>
34 #include <linux/errno.h>
35 #include <linux/netdevice.h>
36 #include <linux/init.h>
37 #include <linux/interrupt.h>
38 #include <linux/pci.h>
39 #include <linux/arcdevice.h>
40 #include <linux/com20020.h>
41 #include <linux/list.h>
42
43 #include <asm/io.h>
44
45
46 #define VERSION "arcnet: COM20020 PCI support\n"
47
48 /* Module parameters */
49
50 static int node;
51 static char device[9];          /* use eg. device="arc1" to change name */
52 static int timeout = 3;
53 static int backplane;
54 static int clockp;
55 static int clockm;
56
57 module_param(node, int, 0);
58 module_param_string(device, device, sizeof(device), 0);
59 module_param(timeout, int, 0);
60 module_param(backplane, int, 0);
61 module_param(clockp, int, 0);
62 module_param(clockm, int, 0);
63 MODULE_LICENSE("GPL");
64
65 static void com20020pci_remove(struct pci_dev *pdev);
66
67 static int com20020pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
68 {
69         struct com20020_pci_card_info *ci;
70         struct net_device *dev;
71         struct arcnet_local *lp;
72         struct com20020_priv *priv;
73         int i, ioaddr, ret;
74         struct resource *r;
75
76         if (pci_enable_device(pdev))
77                 return -EIO;
78
79         priv = devm_kzalloc(&pdev->dev, sizeof(struct com20020_priv),
80                             GFP_KERNEL);
81         if (!priv)
82                 return -ENOMEM;
83
84         ci = (struct com20020_pci_card_info *)id->driver_data;
85         priv->ci = ci;
86
87         INIT_LIST_HEAD(&priv->list_dev);
88
89
90         for (i = 0; i < ci->devcount; i++) {
91                 struct com20020_pci_channel_map *cm = &ci->chan_map_tbl[i];
92                 struct com20020_dev *card;
93
94                 dev = alloc_arcdev(device);
95                 if (!dev) {
96                         ret = -ENOMEM;
97                         goto out_port;
98                 }
99
100                 dev->netdev_ops = &com20020_netdev_ops;
101
102                 lp = netdev_priv(dev);
103
104                 BUGMSG(D_NORMAL, "%s Controls\n", ci->name);
105                 ioaddr = pci_resource_start(pdev, cm->bar) + cm->offset;
106
107                 r = devm_request_region(&pdev->dev, ioaddr, cm->size,
108                                         "com20020-pci");
109                 if (!r) {
110                         pr_err("IO region %xh-%xh already allocated.\n",
111                                ioaddr, ioaddr + cm->size - 1);
112                         ret = -EBUSY;
113                         goto out_port;
114                 }
115
116                 /* Dummy access after Reset
117                  * ARCNET controller needs
118                  * this access to detect bustype
119                  */
120                 outb(0x00, ioaddr + 1);
121                 inb(ioaddr + 1);
122
123                 dev->base_addr = ioaddr;
124                 dev->dev_addr[0] = node;
125                 dev->irq = pdev->irq;
126                 lp->card_name = "PCI COM20020";
127                 lp->card_flags = ci->flags;
128                 lp->backplane = backplane;
129                 lp->clockp = clockp & 7;
130                 lp->clockm = clockm & 3;
131                 lp->timeout = timeout;
132                 lp->hw.owner = THIS_MODULE;
133
134                 if (ASTATUS() == 0xFF) {
135                         pr_err("IO address %Xh is empty!\n", ioaddr);
136                         ret = -EIO;
137                         goto out_port;
138                 }
139                 if (com20020_check(dev)) {
140                         ret = -EIO;
141                         goto out_port;
142                 }
143
144                 card = devm_kzalloc(&pdev->dev, sizeof(struct com20020_dev),
145                                     GFP_KERNEL);
146                 if (!card) {
147                         pr_err("%s out of memory!\n", __func__);
148                         return -ENOMEM;
149                 }
150
151                 card->index = i;
152                 card->pci_priv = priv;
153                 card->dev = dev;
154
155                 dev_set_drvdata(&dev->dev, card);
156
157                 ret = com20020_found(dev, IRQF_SHARED);
158                 if (ret)
159                         goto out_port;
160
161                 list_add(&card->list, &priv->list_dev);
162         }
163
164         pci_set_drvdata(pdev, priv);
165
166         return 0;
167
168 out_port:
169         com20020pci_remove(pdev);
170         return ret;
171 }
172
173 static void com20020pci_remove(struct pci_dev *pdev)
174 {
175         struct com20020_dev *card, *tmpcard;
176         struct com20020_priv *priv;
177
178         priv = pci_get_drvdata(pdev);
179
180         list_for_each_entry_safe(card, tmpcard, &priv->list_dev, list) {
181                 struct net_device *dev = card->dev;
182
183                 unregister_netdev(dev);
184                 free_irq(dev->irq, dev);
185                 free_netdev(dev);
186         }
187 }
188
189 static struct com20020_pci_card_info card_info_10mbit = {
190         .name = "ARC-PCI",
191         .devcount = 1,
192         .chan_map_tbl = {
193                 { 2, 0x00, 0x08 },
194         },
195         .flags = ARC_CAN_10MBIT,
196 };
197
198 static struct com20020_pci_card_info card_info_5mbit = {
199         .name = "ARC-PCI",
200         .devcount = 1,
201         .chan_map_tbl = {
202                 { 2, 0x00, 0x08 },
203         },
204         .flags = ARC_IS_5MBIT,
205 };
206
207 static struct com20020_pci_card_info card_info_sohard = {
208         .name = "PLX-PCI",
209         .devcount = 1,
210         /* SOHARD needs PCI base addr 4 */
211         .chan_map_tbl = {
212                 {4, 0x00, 0x08},
213         },
214         .flags = ARC_CAN_10MBIT,
215 };
216
217 static struct com20020_pci_card_info card_info_eae = {
218         .name = "EAE PLX-PCI",
219         .devcount = 2,
220         .chan_map_tbl = {
221                 { 2, 0x00, 0x08 },
222                 { 2, 0x08, 0x08 }
223         },
224         .flags = ARC_CAN_10MBIT,
225 };
226
227 static const struct pci_device_id com20020pci_id_table[] = {
228         {
229                 0x1571, 0xa001,
230                 PCI_ANY_ID, PCI_ANY_ID,
231                 0, 0,
232                 0,
233         },
234         {
235                 0x1571, 0xa002,
236                 PCI_ANY_ID, PCI_ANY_ID,
237                 0, 0,
238                 0,
239         },
240         {
241                 0x1571, 0xa003,
242                 PCI_ANY_ID, PCI_ANY_ID,
243                 0, 0,
244                 0
245         },
246         {
247                 0x1571, 0xa004,
248                 PCI_ANY_ID, PCI_ANY_ID,
249                 0, 0,
250                 0,
251         },
252         {
253                 0x1571, 0xa005,
254                 PCI_ANY_ID, PCI_ANY_ID,
255                 0, 0,
256                 0
257         },
258         {
259                 0x1571, 0xa006,
260                 PCI_ANY_ID, PCI_ANY_ID,
261                 0, 0,
262                 0
263         },
264         {
265                 0x1571, 0xa007,
266                 PCI_ANY_ID, PCI_ANY_ID,
267                 0, 0,
268                 0
269         },
270         {
271                 0x1571, 0xa008,
272                 PCI_ANY_ID, PCI_ANY_ID,
273                 0, 0,
274                 0
275         },
276         {
277                 0x1571, 0xa009,
278                 PCI_ANY_ID, PCI_ANY_ID,
279                 0, 0,
280                 (kernel_ulong_t)&card_info_5mbit
281         },
282         {
283                 0x1571, 0xa00a,
284                 PCI_ANY_ID, PCI_ANY_ID,
285                 0, 0,
286                 (kernel_ulong_t)&card_info_5mbit
287         },
288         {
289                 0x1571, 0xa00b,
290                 PCI_ANY_ID, PCI_ANY_ID,
291                 0, 0,
292                 (kernel_ulong_t)&card_info_5mbit
293         },
294         {
295                 0x1571, 0xa00c,
296                 PCI_ANY_ID, PCI_ANY_ID,
297                 0, 0,
298                 (kernel_ulong_t)&card_info_5mbit
299         },
300         {
301                 0x1571, 0xa00d,
302                 PCI_ANY_ID, PCI_ANY_ID,
303                 0, 0,
304                 (kernel_ulong_t)&card_info_5mbit
305         },
306         {
307                 0x1571, 0xa00e,
308                 PCI_ANY_ID, PCI_ANY_ID,
309                 0, 0,
310                 (kernel_ulong_t)&card_info_5mbit
311         },
312         {
313                 0x1571, 0xa201,
314                 PCI_ANY_ID, PCI_ANY_ID,
315                 0, 0,
316                 (kernel_ulong_t)&card_info_10mbit
317         },
318         {
319                 0x1571, 0xa202,
320                 PCI_ANY_ID, PCI_ANY_ID,
321                 0, 0,
322                 (kernel_ulong_t)&card_info_10mbit
323         },
324         {
325                 0x1571, 0xa203,
326                 PCI_ANY_ID, PCI_ANY_ID,
327                 0, 0,
328                 (kernel_ulong_t)&card_info_10mbit
329         },
330         {
331                 0x1571, 0xa204,
332                 PCI_ANY_ID, PCI_ANY_ID,
333                 0, 0,
334                 (kernel_ulong_t)&card_info_10mbit
335         },
336         {
337                 0x1571, 0xa205,
338                 PCI_ANY_ID, PCI_ANY_ID,
339                 0, 0,
340                 (kernel_ulong_t)&card_info_10mbit
341         },
342         {
343                 0x1571, 0xa206,
344                 PCI_ANY_ID, PCI_ANY_ID,
345                 0, 0,
346                 (kernel_ulong_t)&card_info_10mbit
347         },
348         {
349                 0x10B5, 0x9030,
350                 0x10B5, 0x2978,
351                 0, 0,
352                 (kernel_ulong_t)&card_info_sohard
353         },
354         {
355                 0x10B5, 0x9050,
356                 0x10B5, 0x2273,
357                 0, 0,
358                 (kernel_ulong_t)&card_info_sohard
359         },
360         {
361                 0x10B5, 0x9050,
362                 0x10B5, 0x3292,
363                 0, 0,
364                 (kernel_ulong_t)&card_info_eae
365         },
366         {
367                 0x14BA, 0x6000,
368                 PCI_ANY_ID, PCI_ANY_ID,
369                 0, 0,
370                 (kernel_ulong_t)&card_info_10mbit
371         },
372         {
373                 0x10B5, 0x2200,
374                 PCI_ANY_ID, PCI_ANY_ID,
375                 0, 0,
376                 (kernel_ulong_t)&card_info_10mbit
377         },
378         { 0, }
379 };
380
381 MODULE_DEVICE_TABLE(pci, com20020pci_id_table);
382
383 static struct pci_driver com20020pci_driver = {
384         .name           = "com20020",
385         .id_table       = com20020pci_id_table,
386         .probe          = com20020pci_probe,
387         .remove         = com20020pci_remove,
388 };
389
390 static int __init com20020pci_init(void)
391 {
392         BUGLVL(D_NORMAL) printk(VERSION);
393         return pci_register_driver(&com20020pci_driver);
394 }
395
396 static void __exit com20020pci_cleanup(void)
397 {
398         pci_unregister_driver(&com20020pci_driver);
399 }
400
401 module_init(com20020pci_init)
402 module_exit(com20020pci_cleanup)