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