]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/parport/parport_serial.c
Merge tag 'staging-4.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[linux.git] / drivers / parport / parport_serial.c
1 /*
2  * Support for common PCI multi-I/O cards (which is most of them)
3  *
4  * Copyright (C) 2001  Tim Waugh <twaugh@redhat.com>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  *
11  *
12  * Multi-function PCI cards are supposed to present separate logical
13  * devices on the bus.  A common thing to do seems to be to just use
14  * one logical device with lots of base address registers for both
15  * parallel ports and serial ports.  This driver is for dealing with
16  * that.
17  *
18  */
19
20 #include <linux/types.h>
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/pci.h>
25 #include <linux/interrupt.h>
26 #include <linux/parport.h>
27 #include <linux/parport_pc.h>
28 #include <linux/8250_pci.h>
29
30 enum parport_pc_pci_cards {
31         titan_110l = 0,
32         titan_210l,
33         netmos_9xx5_combo,
34         netmos_9855,
35         netmos_9855_2p,
36         netmos_9900,
37         netmos_9900_2p,
38         netmos_99xx_1p,
39         avlab_1s1p,
40         avlab_1s2p,
41         avlab_2s1p,
42         siig_1s1p_10x,
43         siig_2s1p_10x,
44         siig_2p1s_20x,
45         siig_1s1p_20x,
46         siig_2s1p_20x,
47         timedia_4078a,
48         timedia_4079h,
49         timedia_4085h,
50         timedia_4088a,
51         timedia_4089a,
52         timedia_4095a,
53         timedia_4096a,
54         timedia_4078u,
55         timedia_4079a,
56         timedia_4085u,
57         timedia_4079r,
58         timedia_4079s,
59         timedia_4079d,
60         timedia_4079e,
61         timedia_4079f,
62         timedia_9079a,
63         timedia_9079b,
64         timedia_9079c,
65         wch_ch353_1s1p,
66         wch_ch353_2s1p,
67         wch_ch382_2s1p,
68         sunix_2s1p,
69 };
70
71 /* each element directly indexed from enum list, above */
72 struct parport_pc_pci {
73         int numports;
74         struct { /* BAR (base address registers) numbers in the config
75                     space header */
76                 int lo;
77                 int hi; /* -1 if not there, >6 for offset-method (max
78                            BAR is 6) */
79         } addr[4];
80
81         /* If set, this is called immediately after pci_enable_device.
82          * If it returns non-zero, no probing will take place and the
83          * ports will not be used. */
84         int (*preinit_hook) (struct pci_dev *pdev, struct parport_pc_pci *card,
85                                 int autoirq, int autodma);
86
87         /* If set, this is called after probing for ports.  If 'failed'
88          * is non-zero we couldn't use any of the ports. */
89         void (*postinit_hook) (struct pci_dev *pdev,
90                                 struct parport_pc_pci *card, int failed);
91 };
92
93 static int netmos_parallel_init(struct pci_dev *dev, struct parport_pc_pci *par,
94                                 int autoirq, int autodma)
95 {
96         /* the rule described below doesn't hold for this device */
97         if (dev->device == PCI_DEVICE_ID_NETMOS_9835 &&
98                         dev->subsystem_vendor == PCI_VENDOR_ID_IBM &&
99                         dev->subsystem_device == 0x0299)
100                 return -ENODEV;
101
102         if (dev->device == PCI_DEVICE_ID_NETMOS_9912) {
103                 par->numports = 1;
104         } else {
105                 /*
106                  * Netmos uses the subdevice ID to indicate the number of parallel
107                  * and serial ports.  The form is 0x00PS, where <P> is the number of
108                  * parallel ports and <S> is the number of serial ports.
109                  */
110                 par->numports = (dev->subsystem_device & 0xf0) >> 4;
111                 if (par->numports > ARRAY_SIZE(par->addr))
112                         par->numports = ARRAY_SIZE(par->addr);
113         }
114
115         return 0;
116 }
117
118 static struct parport_pc_pci cards[] = {
119         /* titan_110l */                { 1, { { 3, -1 }, } },
120         /* titan_210l */                { 1, { { 3, -1 }, } },
121         /* netmos_9xx5_combo */         { 1, { { 2, -1 }, }, netmos_parallel_init },
122         /* netmos_9855 */               { 1, { { 0, -1 }, }, netmos_parallel_init },
123         /* netmos_9855_2p */            { 2, { { 0, -1 }, { 2, -1 }, } },
124         /* netmos_9900 */               {1, { { 3, 4 }, }, netmos_parallel_init },
125         /* netmos_9900_2p */            {2, { { 0, 1 }, { 3, 4 }, } },
126         /* netmos_99xx_1p */            {1, { { 0, 1 }, } },
127         /* avlab_1s1p     */            { 1, { { 1, 2}, } },
128         /* avlab_1s2p     */            { 2, { { 1, 2}, { 3, 4 },} },
129         /* avlab_2s1p     */            { 1, { { 2, 3}, } },
130         /* siig_1s1p_10x */             { 1, { { 3, 4 }, } },
131         /* siig_2s1p_10x */             { 1, { { 4, 5 }, } },
132         /* siig_2p1s_20x */             { 2, { { 1, 2 }, { 3, 4 }, } },
133         /* siig_1s1p_20x */             { 1, { { 1, 2 }, } },
134         /* siig_2s1p_20x */             { 1, { { 2, 3 }, } },
135         /* timedia_4078a */             { 1, { { 2, -1 }, } },
136         /* timedia_4079h */             { 1, { { 2, 3 }, } },
137         /* timedia_4085h */             { 2, { { 2, -1 }, { 4, -1 }, } },
138         /* timedia_4088a */             { 2, { { 2, 3 }, { 4, 5 }, } },
139         /* timedia_4089a */             { 2, { { 2, 3 }, { 4, 5 }, } },
140         /* timedia_4095a */             { 2, { { 2, 3 }, { 4, 5 }, } },
141         /* timedia_4096a */             { 2, { { 2, 3 }, { 4, 5 }, } },
142         /* timedia_4078u */             { 1, { { 2, -1 }, } },
143         /* timedia_4079a */             { 1, { { 2, 3 }, } },
144         /* timedia_4085u */             { 2, { { 2, -1 }, { 4, -1 }, } },
145         /* timedia_4079r */             { 1, { { 2, 3 }, } },
146         /* timedia_4079s */             { 1, { { 2, 3 }, } },
147         /* timedia_4079d */             { 1, { { 2, 3 }, } },
148         /* timedia_4079e */             { 1, { { 2, 3 }, } },
149         /* timedia_4079f */             { 1, { { 2, 3 }, } },
150         /* timedia_9079a */             { 1, { { 2, 3 }, } },
151         /* timedia_9079b */             { 1, { { 2, 3 }, } },
152         /* timedia_9079c */             { 1, { { 2, 3 }, } },
153         /* wch_ch353_1s1p*/             { 1, { { 1, -1}, } },
154         /* wch_ch353_2s1p*/             { 1, { { 2, -1}, } },
155         /* wch_ch382_2s1p*/             { 1, { { 2, -1}, } },
156         /* sunix_2s1p */                { 1, { { 3, -1 }, } },
157 };
158
159 static struct pci_device_id parport_serial_pci_tbl[] = {
160         /* PCI cards */
161         { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_110L,
162           PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_110l },
163         { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_210L,
164           PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_210l },
165         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9735,
166           PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9xx5_combo },
167         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9745,
168           PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9xx5_combo },
169         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9835,
170           PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9xx5_combo },
171         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9845,
172           PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9xx5_combo },
173         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9855,
174           0x1000, 0x0020, 0, 0, netmos_9855_2p },
175         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9855,
176           0x1000, 0x0022, 0, 0, netmos_9855_2p },
177         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9855,
178           PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9855 },
179         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9900,
180           0xA000, 0x3011, 0, 0, netmos_9900 },
181         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9900,
182           0xA000, 0x3012, 0, 0, netmos_9900 },
183         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9900,
184           0xA000, 0x3020, 0, 0, netmos_9900_2p },
185         { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9912,
186           0xA000, 0x2000, 0, 0, netmos_99xx_1p },
187         /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
188         { PCI_VENDOR_ID_AFAVLAB, 0x2110,
189           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1s1p },
190         { PCI_VENDOR_ID_AFAVLAB, 0x2111,
191           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1s1p },
192         { PCI_VENDOR_ID_AFAVLAB, 0x2112,
193           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1s1p },
194         { PCI_VENDOR_ID_AFAVLAB, 0x2140,
195           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1s2p },
196         { PCI_VENDOR_ID_AFAVLAB, 0x2141,
197           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1s2p },
198         { PCI_VENDOR_ID_AFAVLAB, 0x2142,
199           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1s2p },
200         { PCI_VENDOR_ID_AFAVLAB, 0x2160,
201           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2s1p },
202         { PCI_VENDOR_ID_AFAVLAB, 0x2161,
203           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2s1p },
204         { PCI_VENDOR_ID_AFAVLAB, 0x2162,
205           PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2s1p },
206         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S1P_10x_550,
207           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1s1p_10x },
208         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S1P_10x_650,
209           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1s1p_10x },
210         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S1P_10x_850,
211           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1s1p_10x },
212         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S1P_10x_550,
213           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2s1p_10x },
214         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S1P_10x_650,
215           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2s1p_10x },
216         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S1P_10x_850,
217           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2s1p_10x },
218         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P1S_20x_550,
219           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p1s_20x },
220         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P1S_20x_650,
221           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p1s_20x },
222         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P1S_20x_850,
223           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p1s_20x },
224         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S1P_20x_550,
225           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2s1p_20x },
226         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S1P_20x_650,
227           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1s1p_20x },
228         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1S1P_20x_850,
229           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1s1p_20x },
230         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S1P_20x_550,
231           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2s1p_20x },
232         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S1P_20x_650,
233           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2s1p_20x },
234         { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2S1P_20x_850,
235           PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2s1p_20x },
236         /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
237         { 0x1409, 0x7168, 0x1409, 0x4078, 0, 0, timedia_4078a },
238         { 0x1409, 0x7168, 0x1409, 0x4079, 0, 0, timedia_4079h },
239         { 0x1409, 0x7168, 0x1409, 0x4085, 0, 0, timedia_4085h },
240         { 0x1409, 0x7168, 0x1409, 0x4088, 0, 0, timedia_4088a },
241         { 0x1409, 0x7168, 0x1409, 0x4089, 0, 0, timedia_4089a },
242         { 0x1409, 0x7168, 0x1409, 0x4095, 0, 0, timedia_4095a },
243         { 0x1409, 0x7168, 0x1409, 0x4096, 0, 0, timedia_4096a },
244         { 0x1409, 0x7168, 0x1409, 0x5078, 0, 0, timedia_4078u },
245         { 0x1409, 0x7168, 0x1409, 0x5079, 0, 0, timedia_4079a },
246         { 0x1409, 0x7168, 0x1409, 0x5085, 0, 0, timedia_4085u },
247         { 0x1409, 0x7168, 0x1409, 0x6079, 0, 0, timedia_4079r },
248         { 0x1409, 0x7168, 0x1409, 0x7079, 0, 0, timedia_4079s },
249         { 0x1409, 0x7168, 0x1409, 0x8079, 0, 0, timedia_4079d },
250         { 0x1409, 0x7168, 0x1409, 0x9079, 0, 0, timedia_4079e },
251         { 0x1409, 0x7168, 0x1409, 0xa079, 0, 0, timedia_4079f },
252         { 0x1409, 0x7168, 0x1409, 0xb079, 0, 0, timedia_9079a },
253         { 0x1409, 0x7168, 0x1409, 0xc079, 0, 0, timedia_9079b },
254         { 0x1409, 0x7168, 0x1409, 0xd079, 0, 0, timedia_9079c },
255
256         /* WCH CARDS */
257         { 0x4348, 0x5053, PCI_ANY_ID, PCI_ANY_ID, 0, 0, wch_ch353_1s1p},
258         { 0x4348, 0x7053, 0x4348, 0x3253, 0, 0, wch_ch353_2s1p},
259         { 0x1c00, 0x3250, 0x1c00, 0x3250, 0, 0, wch_ch382_2s1p},
260
261         /*
262          * More SUNIX variations. At least one of these has part number
263          * '5079A but subdevice 0x102. That board reports 0x0708 as
264          * its PCI Class.
265          */
266         { PCI_VENDOR_ID_SUNIX, PCI_DEVICE_ID_SUNIX_1999, PCI_VENDOR_ID_SUNIX,
267           0x0102, 0, 0, sunix_2s1p },
268
269         { 0, } /* terminate list */
270 };
271 MODULE_DEVICE_TABLE(pci,parport_serial_pci_tbl);
272
273 /*
274  * This table describes the serial "geometry" of these boards.  Any
275  * quirks for these can be found in drivers/serial/8250_pci.c
276  *
277  * Cards not tested are marked n/t
278  * If you have one of these cards and it works for you, please tell me..
279  */
280 static struct pciserial_board pci_parport_serial_boards[] = {
281         [titan_110l] = {
282                 .flags          = FL_BASE1 | FL_BASE_BARS,
283                 .num_ports      = 1,
284                 .base_baud      = 921600,
285                 .uart_offset    = 8,
286         },
287         [titan_210l] = {
288                 .flags          = FL_BASE1 | FL_BASE_BARS,
289                 .num_ports      = 2,
290                 .base_baud      = 921600,
291                 .uart_offset    = 8,
292         },
293         [netmos_9xx5_combo] = {
294                 .flags          = FL_BASE0 | FL_BASE_BARS,
295                 .num_ports      = 1,
296                 .base_baud      = 115200,
297                 .uart_offset    = 8,
298         },
299         [netmos_9855] = {
300                 .flags          = FL_BASE2 | FL_BASE_BARS,
301                 .num_ports      = 1,
302                 .base_baud      = 115200,
303                 .uart_offset    = 8,
304         },
305         [netmos_9855_2p] = {
306                 .flags          = FL_BASE4 | FL_BASE_BARS,
307                 .num_ports      = 1,
308                 .base_baud      = 115200,
309                 .uart_offset    = 8,
310         },
311         [netmos_9900] = { /* n/t */
312                 .flags          = FL_BASE0 | FL_BASE_BARS,
313                 .num_ports      = 1,
314                 .base_baud      = 115200,
315                 .uart_offset    = 8,
316         },
317         [netmos_9900_2p] = { /* parallel only */ /* n/t */
318                 .flags          = FL_BASE0,
319                 .num_ports      = 0,
320                 .base_baud      = 115200,
321                 .uart_offset    = 8,
322         },
323         [netmos_99xx_1p] = { /* parallel only */ /* n/t */
324                 .flags          = FL_BASE0,
325                 .num_ports      = 0,
326                 .base_baud      = 115200,
327                 .uart_offset    = 8,
328         },
329         [avlab_1s1p] = { /* n/t */
330                 .flags          = FL_BASE0 | FL_BASE_BARS,
331                 .num_ports      = 1,
332                 .base_baud      = 115200,
333                 .uart_offset    = 8,
334         },
335         [avlab_1s2p] = { /* n/t */
336                 .flags          = FL_BASE0 | FL_BASE_BARS,
337                 .num_ports      = 1,
338                 .base_baud      = 115200,
339                 .uart_offset    = 8,
340         },
341         [avlab_2s1p] = { /* n/t */
342                 .flags          = FL_BASE0 | FL_BASE_BARS,
343                 .num_ports      = 2,
344                 .base_baud      = 115200,
345                 .uart_offset    = 8,
346         },
347         [siig_1s1p_10x] = {
348                 .flags          = FL_BASE2,
349                 .num_ports      = 1,
350                 .base_baud      = 460800,
351                 .uart_offset    = 8,
352         },
353         [siig_2s1p_10x] = {
354                 .flags          = FL_BASE2,
355                 .num_ports      = 1,
356                 .base_baud      = 921600,
357                 .uart_offset    = 8,
358         },
359         [siig_2p1s_20x] = {
360                 .flags          = FL_BASE0,
361                 .num_ports      = 1,
362                 .base_baud      = 921600,
363                 .uart_offset    = 8,
364         },
365         [siig_1s1p_20x] = {
366                 .flags          = FL_BASE0,
367                 .num_ports      = 1,
368                 .base_baud      = 921600,
369                 .uart_offset    = 8,
370         },
371         [siig_2s1p_20x] = {
372                 .flags          = FL_BASE0,
373                 .num_ports      = 1,
374                 .base_baud      = 921600,
375                 .uart_offset    = 8,
376         },
377         [timedia_4078a] = {
378                 .flags          = FL_BASE0|FL_BASE_BARS,
379                 .num_ports      = 1,
380                 .base_baud      = 921600,
381                 .uart_offset    = 8,
382         },
383         [timedia_4079h] = {
384                 .flags          = FL_BASE0|FL_BASE_BARS,
385                 .num_ports      = 1,
386                 .base_baud      = 921600,
387                 .uart_offset    = 8,
388         },
389         [timedia_4085h] = {
390                 .flags          = FL_BASE0|FL_BASE_BARS,
391                 .num_ports      = 1,
392                 .base_baud      = 921600,
393                 .uart_offset    = 8,
394         },
395         [timedia_4088a] = {
396                 .flags          = FL_BASE0|FL_BASE_BARS,
397                 .num_ports      = 1,
398                 .base_baud      = 921600,
399                 .uart_offset    = 8,
400         },
401         [timedia_4089a] = {
402                 .flags          = FL_BASE0|FL_BASE_BARS,
403                 .num_ports      = 1,
404                 .base_baud      = 921600,
405                 .uart_offset    = 8,
406         },
407         [timedia_4095a] = {
408                 .flags          = FL_BASE0|FL_BASE_BARS,
409                 .num_ports      = 1,
410                 .base_baud      = 921600,
411                 .uart_offset    = 8,
412         },
413         [timedia_4096a] = {
414                 .flags          = FL_BASE0|FL_BASE_BARS,
415                 .num_ports      = 1,
416                 .base_baud      = 921600,
417                 .uart_offset    = 8,
418         },
419         [timedia_4078u] = {
420                 .flags          = FL_BASE0|FL_BASE_BARS,
421                 .num_ports      = 1,
422                 .base_baud      = 921600,
423                 .uart_offset    = 8,
424         },
425         [timedia_4079a] = {
426                 .flags          = FL_BASE0|FL_BASE_BARS,
427                 .num_ports      = 1,
428                 .base_baud      = 921600,
429                 .uart_offset    = 8,
430         },
431         [timedia_4085u] = {
432                 .flags          = FL_BASE0|FL_BASE_BARS,
433                 .num_ports      = 1,
434                 .base_baud      = 921600,
435                 .uart_offset    = 8,
436         },
437         [timedia_4079r] = {
438                 .flags          = FL_BASE0|FL_BASE_BARS,
439                 .num_ports      = 1,
440                 .base_baud      = 921600,
441                 .uart_offset    = 8,
442         },
443         [timedia_4079s] = {
444                 .flags          = FL_BASE0|FL_BASE_BARS,
445                 .num_ports      = 1,
446                 .base_baud      = 921600,
447                 .uart_offset    = 8,
448         },
449         [timedia_4079d] = {
450                 .flags          = FL_BASE0|FL_BASE_BARS,
451                 .num_ports      = 1,
452                 .base_baud      = 921600,
453                 .uart_offset    = 8,
454         },
455         [timedia_4079e] = {
456                 .flags          = FL_BASE0|FL_BASE_BARS,
457                 .num_ports      = 1,
458                 .base_baud      = 921600,
459                 .uart_offset    = 8,
460         },
461         [timedia_4079f] = {
462                 .flags          = FL_BASE0|FL_BASE_BARS,
463                 .num_ports      = 1,
464                 .base_baud      = 921600,
465                 .uart_offset    = 8,
466         },
467         [timedia_9079a] = {
468                 .flags          = FL_BASE0|FL_BASE_BARS,
469                 .num_ports      = 1,
470                 .base_baud      = 921600,
471                 .uart_offset    = 8,
472         },
473         [timedia_9079b] = {
474                 .flags          = FL_BASE0|FL_BASE_BARS,
475                 .num_ports      = 1,
476                 .base_baud      = 921600,
477                 .uart_offset    = 8,
478         },
479         [timedia_9079c] = {
480                 .flags          = FL_BASE0|FL_BASE_BARS,
481                 .num_ports      = 1,
482                 .base_baud      = 921600,
483                 .uart_offset    = 8,
484         },
485         [wch_ch353_1s1p] = {
486                 .flags          = FL_BASE0|FL_BASE_BARS,
487                 .num_ports      = 1,
488                 .base_baud      = 115200,
489                 .uart_offset    = 8,
490         },
491         [wch_ch353_2s1p] = {
492                 .flags          = FL_BASE0|FL_BASE_BARS,
493                 .num_ports      = 2,
494                 .base_baud      = 115200,
495                 .uart_offset    = 8,
496         },
497         [wch_ch382_2s1p] = {
498                 .flags          = FL_BASE0,
499                 .num_ports      = 2,
500                 .base_baud      = 115200,
501                 .uart_offset    = 8,
502                 .first_offset   = 0xC0,
503         },
504         [sunix_2s1p] = {
505                 .flags          = FL_BASE0|FL_BASE_BARS,
506                 .num_ports      = 2,
507                 .base_baud      = 921600,
508                 .uart_offset    = 8,
509         },
510 };
511
512 struct parport_serial_private {
513         struct serial_private   *serial;
514         int num_par;
515         struct parport *port[PARPORT_MAX];
516         struct parport_pc_pci par;
517 };
518
519 /* Register the serial port(s) of a PCI card. */
520 static int serial_register(struct pci_dev *dev, const struct pci_device_id *id)
521 {
522         struct parport_serial_private *priv = pci_get_drvdata (dev);
523         struct pciserial_board *board;
524         struct serial_private *serial;
525
526         board = &pci_parport_serial_boards[id->driver_data];
527
528         if (board->num_ports == 0)
529                 return 0;
530
531         serial = pciserial_init_ports(dev, board);
532
533         if (IS_ERR(serial))
534                 return PTR_ERR(serial);
535
536         priv->serial = serial;
537         return 0;
538 }
539
540 /* Register the parallel port(s) of a PCI card. */
541 static int parport_register(struct pci_dev *dev, const struct pci_device_id *id)
542 {
543         struct parport_pc_pci *card;
544         struct parport_serial_private *priv = pci_get_drvdata (dev);
545         int n, success = 0;
546
547         priv->par = cards[id->driver_data];
548         card = &priv->par;
549         if (card->preinit_hook &&
550             card->preinit_hook (dev, card, PARPORT_IRQ_NONE, PARPORT_DMA_NONE))
551                 return -ENODEV;
552
553         for (n = 0; n < card->numports; n++) {
554                 struct parport *port;
555                 int lo = card->addr[n].lo;
556                 int hi = card->addr[n].hi;
557                 unsigned long io_lo, io_hi;
558                 int irq;
559
560                 if (priv->num_par == ARRAY_SIZE (priv->port)) {
561                         printk (KERN_WARNING
562                                 "parport_serial: %s: only %zu parallel ports "
563                                 "supported (%d reported)\n", pci_name (dev),
564                                 ARRAY_SIZE(priv->port), card->numports);
565                         break;
566                 }
567
568                 io_lo = pci_resource_start (dev, lo);
569                 io_hi = 0;
570                 if ((hi >= 0) && (hi <= 6))
571                         io_hi = pci_resource_start (dev, hi);
572                 else if (hi > 6)
573                         io_lo += hi; /* Reinterpret the meaning of
574                                         "hi" as an offset (see SYBA
575                                         def.) */
576                 /* TODO: test if sharing interrupts works */
577                 irq = dev->irq;
578                 if (irq == IRQ_NONE) {
579                         dev_dbg(&dev->dev,
580                         "PCI parallel port detected: I/O at %#lx(%#lx)\n",
581                                 io_lo, io_hi);
582                         irq = PARPORT_IRQ_NONE;
583                 } else {
584                         dev_dbg(&dev->dev,
585                 "PCI parallel port detected: I/O at %#lx(%#lx), IRQ %d\n",
586                                 io_lo, io_hi, irq);
587                 }
588                 port = parport_pc_probe_port (io_lo, io_hi, irq,
589                               PARPORT_DMA_NONE, &dev->dev, IRQF_SHARED);
590                 if (port) {
591                         priv->port[priv->num_par++] = port;
592                         success = 1;
593                 }
594         }
595
596         if (card->postinit_hook)
597                 card->postinit_hook (dev, card, !success);
598
599         return 0;
600 }
601
602 static int parport_serial_pci_probe(struct pci_dev *dev,
603                                     const struct pci_device_id *id)
604 {
605         struct parport_serial_private *priv;
606         int err;
607
608         priv = kzalloc (sizeof *priv, GFP_KERNEL);
609         if (!priv)
610                 return -ENOMEM;
611         pci_set_drvdata (dev, priv);
612
613         err = pci_enable_device (dev);
614         if (err) {
615                 kfree (priv);
616                 return err;
617         }
618
619         if (parport_register (dev, id)) {
620                 kfree (priv);
621                 return -ENODEV;
622         }
623
624         if (serial_register (dev, id)) {
625                 int i;
626                 for (i = 0; i < priv->num_par; i++)
627                         parport_pc_unregister_port (priv->port[i]);
628                 kfree (priv);
629                 return -ENODEV;
630         }
631
632         return 0;
633 }
634
635 static void parport_serial_pci_remove(struct pci_dev *dev)
636 {
637         struct parport_serial_private *priv = pci_get_drvdata (dev);
638         int i;
639
640         // Serial ports
641         if (priv->serial)
642                 pciserial_remove_ports(priv->serial);
643
644         // Parallel ports
645         for (i = 0; i < priv->num_par; i++)
646                 parport_pc_unregister_port (priv->port[i]);
647
648         kfree (priv);
649         return;
650 }
651
652 #ifdef CONFIG_PM
653 static int parport_serial_pci_suspend(struct pci_dev *dev, pm_message_t state)
654 {
655         struct parport_serial_private *priv = pci_get_drvdata(dev);
656
657         if (priv->serial)
658                 pciserial_suspend_ports(priv->serial);
659
660         /* FIXME: What about parport? */
661
662         pci_save_state(dev);
663         pci_set_power_state(dev, pci_choose_state(dev, state));
664         return 0;
665 }
666
667 static int parport_serial_pci_resume(struct pci_dev *dev)
668 {
669         struct parport_serial_private *priv = pci_get_drvdata(dev);
670         int err;
671
672         pci_set_power_state(dev, PCI_D0);
673         pci_restore_state(dev);
674
675         /*
676          * The device may have been disabled.  Re-enable it.
677          */
678         err = pci_enable_device(dev);
679         if (err) {
680                 printk(KERN_ERR "parport_serial: %s: error enabling "
681                         "device for resume (%d)\n", pci_name(dev), err);
682                 return err;
683         }
684
685         if (priv->serial)
686                 pciserial_resume_ports(priv->serial);
687
688         /* FIXME: What about parport? */
689
690         return 0;
691 }
692 #endif
693
694 static struct pci_driver parport_serial_pci_driver = {
695         .name           = "parport_serial",
696         .id_table       = parport_serial_pci_tbl,
697         .probe          = parport_serial_pci_probe,
698         .remove         = parport_serial_pci_remove,
699 #ifdef CONFIG_PM
700         .suspend        = parport_serial_pci_suspend,
701         .resume         = parport_serial_pci_resume,
702 #endif
703 };
704
705
706 static int __init parport_serial_init (void)
707 {
708         return pci_register_driver (&parport_serial_pci_driver);
709 }
710
711 static void __exit parport_serial_exit (void)
712 {
713         pci_unregister_driver (&parport_serial_pci_driver);
714         return;
715 }
716
717 MODULE_AUTHOR("Tim Waugh <twaugh@redhat.com>");
718 MODULE_DESCRIPTION("Driver for common parallel+serial multi-I/O PCI cards");
719 MODULE_LICENSE("GPL");
720
721 module_init(parport_serial_init);
722 module_exit(parport_serial_exit);