blob: 24984c4a1ba4f23d5abdf9be5765ff65a648168b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Low-level parallel-port routines for 8255-based PC-style hardware.
2 *
3 * Authors: Phil Blundell <philb@gnu.org>
4 * Tim Waugh <tim@cyberelk.demon.co.uk>
5 * Jose Renau <renau@acm.org>
Adrian Bunkbdca3f22006-06-26 18:19:23 +02006 * David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Andrea Arcangeli
8 *
9 * based on work by Grant Guenther <grant@torque.net> and Phil Blundell.
10 *
11 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
12 * DMA support - Bert De Jonghe <bert@sophis.be>
13 * Many ECP bugs fixed. Fred Barnes & Jamie Lokier, 1999
14 * More PCI support now conditional on CONFIG_PCI, 03/2001, Paul G.
15 * Various hacks, Fred Barnes, 04/2001
16 * Updated probing logic - Adam Belay <ambx1@neo.rr.com>
17 */
18
19/* This driver should work with any hardware that is broadly compatible
20 * with that in the IBM PC. This applies to the majority of integrated
21 * I/O chipsets that are commonly available. The expected register
22 * layout is:
23 *
24 * base+0 data
25 * base+1 status
26 * base+2 control
27 *
28 * In addition, there are some optional registers:
29 *
30 * base+3 EPP address
31 * base+4 EPP data
32 * base+0x400 ECP config A
33 * base+0x401 ECP config B
34 * base+0x402 ECP control
35 *
36 * All registers are 8 bits wide and read/write. If your hardware differs
37 * only in register addresses (eg because your registers are on 32-bit
38 * word boundaries) then you can alter the constants in parport_pc.h to
39 * accommodate this.
40 *
41 * Note that the ECP registers may not start at offset 0x400 for PCI cards,
42 * but rather will start at port->base_hi.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/module.h>
46#include <linux/init.h>
47#include <linux/sched.h>
48#include <linux/delay.h>
49#include <linux/errno.h>
50#include <linux/interrupt.h>
51#include <linux/ioport.h>
52#include <linux/kernel.h>
53#include <linux/slab.h>
Andrew Morton8382d2b2007-05-15 23:57:08 -070054#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/pci.h>
56#include <linux/pnp.h>
Jean Delvarea7d801a2007-05-08 00:27:40 -070057#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/sysctl.h>
59
60#include <asm/io.h>
61#include <asm/dma.h>
62#include <asm/uaccess.h>
63
64#include <linux/parport.h>
65#include <linux/parport_pc.h>
66#include <linux/via.h>
67#include <asm/parport.h>
68
69#define PARPORT_PC_MAX_PORTS PARPORT_MAX
70
Al Viro7fbacd52005-05-04 05:39:32 +010071#ifdef CONFIG_ISA_DMA_API
72#define HAS_DMA
73#endif
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* ECR modes */
76#define ECR_SPP 00
77#define ECR_PS2 01
78#define ECR_PPF 02
79#define ECR_ECP 03
80#define ECR_EPP 04
81#define ECR_VND 05
82#define ECR_TST 06
83#define ECR_CNF 07
84#define ECR_MODE_MASK 0xe0
85#define ECR_WRITE(p,v) frob_econtrol((p),0xff,(v))
86
87#undef DEBUG
88
89#ifdef DEBUG
90#define DPRINTK printk
91#else
92#define DPRINTK(stuff...)
93#endif
94
95
96#define NR_SUPERIOS 3
97static struct superio_struct { /* For Super-IO chips autodetection */
98 int io;
99 int irq;
100 int dma;
Randy.Dunlap96766a32006-04-18 22:21:57 -0700101} superios[NR_SUPERIOS] = { {0,},};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103static int user_specified;
104#if defined(CONFIG_PARPORT_PC_SUPERIO) || \
105 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
106static int verbose_probing;
107#endif
108static int pci_registered_parport;
109static int pnp_registered_parport;
110
111/* frob_control, but for ECR */
112static void frob_econtrol (struct parport *pb, unsigned char m,
113 unsigned char v)
114{
115 unsigned char ectr = 0;
116
117 if (m != 0xff)
118 ectr = inb (ECONTROL (pb));
119
120 DPRINTK (KERN_DEBUG "frob_econtrol(%02x,%02x): %02x -> %02x\n",
121 m, v, ectr, (ectr & ~m) ^ v);
122
123 outb ((ectr & ~m) ^ v, ECONTROL (pb));
124}
125
126static __inline__ void frob_set_mode (struct parport *p, int mode)
127{
128 frob_econtrol (p, ECR_MODE_MASK, mode << 5);
129}
130
131#ifdef CONFIG_PARPORT_PC_FIFO
132/* Safely change the mode bits in the ECR
133 Returns:
134 0 : Success
135 -EBUSY: Could not drain FIFO in some finite amount of time,
136 mode not changed!
137 */
138static int change_mode(struct parport *p, int m)
139{
140 const struct parport_pc_private *priv = p->physport->private_data;
141 unsigned char oecr;
142 int mode;
143
144 DPRINTK(KERN_INFO "parport change_mode ECP-ISA to mode 0x%02x\n",m);
145
146 if (!priv->ecr) {
147 printk (KERN_DEBUG "change_mode: but there's no ECR!\n");
148 return 0;
149 }
150
151 /* Bits <7:5> contain the mode. */
152 oecr = inb (ECONTROL (p));
153 mode = (oecr >> 5) & 0x7;
154 if (mode == m) return 0;
155
156 if (mode >= 2 && !(priv->ctr & 0x20)) {
157 /* This mode resets the FIFO, so we may
158 * have to wait for it to drain first. */
159 unsigned long expire = jiffies + p->physport->cad->timeout;
160 int counter;
161 switch (mode) {
162 case ECR_PPF: /* Parallel Port FIFO mode */
163 case ECR_ECP: /* ECP Parallel Port mode */
164 /* Busy wait for 200us */
165 for (counter = 0; counter < 40; counter++) {
166 if (inb (ECONTROL (p)) & 0x01)
167 break;
168 if (signal_pending (current)) break;
169 udelay (5);
170 }
171
172 /* Poll slowly. */
173 while (!(inb (ECONTROL (p)) & 0x01)) {
174 if (time_after_eq (jiffies, expire))
175 /* The FIFO is stuck. */
176 return -EBUSY;
Nishanth Aravamudan7b4ccf82005-09-10 00:27:31 -0700177 schedule_timeout_interruptible(msecs_to_jiffies(10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (signal_pending (current))
179 break;
180 }
181 }
182 }
183
184 if (mode >= 2 && m >= 2) {
185 /* We have to go through mode 001 */
186 oecr &= ~(7 << 5);
187 oecr |= ECR_PS2 << 5;
188 ECR_WRITE (p, oecr);
189 }
190
191 /* Set the mode. */
192 oecr &= ~(7 << 5);
193 oecr |= m << 5;
194 ECR_WRITE (p, oecr);
195 return 0;
196}
197
198#ifdef CONFIG_PARPORT_1284
199/* Find FIFO lossage; FIFO is reset */
200#if 0
201static int get_fifo_residue (struct parport *p)
202{
203 int residue;
204 int cnfga;
205 const struct parport_pc_private *priv = p->physport->private_data;
206
207 /* Adjust for the contents of the FIFO. */
208 for (residue = priv->fifo_depth; ; residue--) {
209 if (inb (ECONTROL (p)) & 0x2)
210 /* Full up. */
211 break;
212
213 outb (0, FIFO (p));
214 }
215
216 printk (KERN_DEBUG "%s: %d PWords were left in FIFO\n", p->name,
217 residue);
218
219 /* Reset the FIFO. */
220 frob_set_mode (p, ECR_PS2);
221
222 /* Now change to config mode and clean up. FIXME */
223 frob_set_mode (p, ECR_CNF);
224 cnfga = inb (CONFIGA (p));
225 printk (KERN_DEBUG "%s: cnfgA contains 0x%02x\n", p->name, cnfga);
226
227 if (!(cnfga & (1<<2))) {
228 printk (KERN_DEBUG "%s: Accounting for extra byte\n", p->name);
229 residue++;
230 }
231
232 /* Don't care about partial PWords until support is added for
233 * PWord != 1 byte. */
234
235 /* Back to PS2 mode. */
236 frob_set_mode (p, ECR_PS2);
237
238 DPRINTK (KERN_DEBUG "*** get_fifo_residue: done residue collecting (ecr = 0x%2.2x)\n", inb (ECONTROL (p)));
239 return residue;
240}
241#endif /* 0 */
242#endif /* IEEE 1284 support */
243#endif /* FIFO support */
244
245/*
246 * Clear TIMEOUT BIT in EPP MODE
247 *
248 * This is also used in SPP detection.
249 */
250static int clear_epp_timeout(struct parport *pb)
251{
252 unsigned char r;
253
254 if (!(parport_pc_read_status(pb) & 0x01))
255 return 1;
256
257 /* To clear timeout some chips require double read */
258 parport_pc_read_status(pb);
259 r = parport_pc_read_status(pb);
260 outb (r | 0x01, STATUS (pb)); /* Some reset by writing 1 */
261 outb (r & 0xfe, STATUS (pb)); /* Others by writing 0 */
262 r = parport_pc_read_status(pb);
263
264 return !(r & 0x01);
265}
266
267/*
268 * Access functions.
269 *
270 * Most of these aren't static because they may be used by the
271 * parport_xxx_yyy macros. extern __inline__ versions of several
272 * of these are in parport_pc.h.
273 */
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static void parport_pc_init_state(struct pardevice *dev, struct parport_state *s)
276{
277 s->u.pc.ctr = 0xc;
278 if (dev->irq_func &&
279 dev->port->irq != PARPORT_IRQ_NONE)
280 /* Set ackIntEn */
281 s->u.pc.ctr |= 0x10;
282
283 s->u.pc.ecr = 0x34; /* NetMos chip can cause problems 0x24;
284 * D.Gruszka VScom */
285}
286
287static void parport_pc_save_state(struct parport *p, struct parport_state *s)
288{
289 const struct parport_pc_private *priv = p->physport->private_data;
290 s->u.pc.ctr = priv->ctr;
291 if (priv->ecr)
292 s->u.pc.ecr = inb (ECONTROL (p));
293}
294
295static void parport_pc_restore_state(struct parport *p, struct parport_state *s)
296{
297 struct parport_pc_private *priv = p->physport->private_data;
298 register unsigned char c = s->u.pc.ctr & priv->ctr_writable;
299 outb (c, CONTROL (p));
300 priv->ctr = c;
301 if (priv->ecr)
302 ECR_WRITE (p, s->u.pc.ecr);
303}
304
305#ifdef CONFIG_PARPORT_1284
306static size_t parport_pc_epp_read_data (struct parport *port, void *buf,
307 size_t length, int flags)
308{
309 size_t got = 0;
310
311 if (flags & PARPORT_W91284PIC) {
312 unsigned char status;
313 size_t left = length;
314
315 /* use knowledge about data lines..:
316 * nFault is 0 if there is at least 1 byte in the Warp's FIFO
317 * pError is 1 if there are 16 bytes in the Warp's FIFO
318 */
319 status = inb (STATUS (port));
320
321 while (!(status & 0x08) && (got < length)) {
322 if ((left >= 16) && (status & 0x20) && !(status & 0x08)) {
323 /* can grab 16 bytes from warp fifo */
324 if (!((long)buf & 0x03)) {
325 insl (EPPDATA (port), buf, 4);
326 } else {
327 insb (EPPDATA (port), buf, 16);
328 }
329 buf += 16;
330 got += 16;
331 left -= 16;
332 } else {
333 /* grab single byte from the warp fifo */
334 *((char *)buf) = inb (EPPDATA (port));
335 buf++;
336 got++;
337 left--;
338 }
339 status = inb (STATUS (port));
340 if (status & 0x01) {
341 /* EPP timeout should never occur... */
342 printk (KERN_DEBUG "%s: EPP timeout occurred while talking to "
343 "w91284pic (should not have done)\n", port->name);
344 clear_epp_timeout (port);
345 }
346 }
347 return got;
348 }
349 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
350 if (!(((long)buf | length) & 0x03)) {
351 insl (EPPDATA (port), buf, (length >> 2));
352 } else {
353 insb (EPPDATA (port), buf, length);
354 }
355 if (inb (STATUS (port)) & 0x01) {
356 clear_epp_timeout (port);
357 return -EIO;
358 }
359 return length;
360 }
361 for (; got < length; got++) {
362 *((char*)buf) = inb (EPPDATA(port));
363 buf++;
364 if (inb (STATUS (port)) & 0x01) {
365 /* EPP timeout */
366 clear_epp_timeout (port);
367 break;
368 }
369 }
370
371 return got;
372}
373
374static size_t parport_pc_epp_write_data (struct parport *port, const void *buf,
375 size_t length, int flags)
376{
377 size_t written = 0;
378
379 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
380 if (!(((long)buf | length) & 0x03)) {
381 outsl (EPPDATA (port), buf, (length >> 2));
382 } else {
383 outsb (EPPDATA (port), buf, length);
384 }
385 if (inb (STATUS (port)) & 0x01) {
386 clear_epp_timeout (port);
387 return -EIO;
388 }
389 return length;
390 }
391 for (; written < length; written++) {
392 outb (*((char*)buf), EPPDATA(port));
393 buf++;
394 if (inb (STATUS(port)) & 0x01) {
395 clear_epp_timeout (port);
396 break;
397 }
398 }
399
400 return written;
401}
402
403static size_t parport_pc_epp_read_addr (struct parport *port, void *buf,
404 size_t length, int flags)
405{
406 size_t got = 0;
407
408 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
409 insb (EPPADDR (port), buf, length);
410 if (inb (STATUS (port)) & 0x01) {
411 clear_epp_timeout (port);
412 return -EIO;
413 }
414 return length;
415 }
416 for (; got < length; got++) {
417 *((char*)buf) = inb (EPPADDR (port));
418 buf++;
419 if (inb (STATUS (port)) & 0x01) {
420 clear_epp_timeout (port);
421 break;
422 }
423 }
424
425 return got;
426}
427
428static size_t parport_pc_epp_write_addr (struct parport *port,
429 const void *buf, size_t length,
430 int flags)
431{
432 size_t written = 0;
433
434 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
435 outsb (EPPADDR (port), buf, length);
436 if (inb (STATUS (port)) & 0x01) {
437 clear_epp_timeout (port);
438 return -EIO;
439 }
440 return length;
441 }
442 for (; written < length; written++) {
443 outb (*((char*)buf), EPPADDR (port));
444 buf++;
445 if (inb (STATUS (port)) & 0x01) {
446 clear_epp_timeout (port);
447 break;
448 }
449 }
450
451 return written;
452}
453
454static size_t parport_pc_ecpepp_read_data (struct parport *port, void *buf,
455 size_t length, int flags)
456{
457 size_t got;
458
459 frob_set_mode (port, ECR_EPP);
460 parport_pc_data_reverse (port);
461 parport_pc_write_control (port, 0x4);
462 got = parport_pc_epp_read_data (port, buf, length, flags);
463 frob_set_mode (port, ECR_PS2);
464
465 return got;
466}
467
468static size_t parport_pc_ecpepp_write_data (struct parport *port,
469 const void *buf, size_t length,
470 int flags)
471{
472 size_t written;
473
474 frob_set_mode (port, ECR_EPP);
475 parport_pc_write_control (port, 0x4);
476 parport_pc_data_forward (port);
477 written = parport_pc_epp_write_data (port, buf, length, flags);
478 frob_set_mode (port, ECR_PS2);
479
480 return written;
481}
482
483static size_t parport_pc_ecpepp_read_addr (struct parport *port, void *buf,
484 size_t length, int flags)
485{
486 size_t got;
487
488 frob_set_mode (port, ECR_EPP);
489 parport_pc_data_reverse (port);
490 parport_pc_write_control (port, 0x4);
491 got = parport_pc_epp_read_addr (port, buf, length, flags);
492 frob_set_mode (port, ECR_PS2);
493
494 return got;
495}
496
497static size_t parport_pc_ecpepp_write_addr (struct parport *port,
498 const void *buf, size_t length,
499 int flags)
500{
501 size_t written;
502
503 frob_set_mode (port, ECR_EPP);
504 parport_pc_write_control (port, 0x4);
505 parport_pc_data_forward (port);
506 written = parport_pc_epp_write_addr (port, buf, length, flags);
507 frob_set_mode (port, ECR_PS2);
508
509 return written;
510}
511#endif /* IEEE 1284 support */
512
513#ifdef CONFIG_PARPORT_PC_FIFO
514static size_t parport_pc_fifo_write_block_pio (struct parport *port,
515 const void *buf, size_t length)
516{
517 int ret = 0;
518 const unsigned char *bufp = buf;
519 size_t left = length;
520 unsigned long expire = jiffies + port->physport->cad->timeout;
521 const int fifo = FIFO (port);
522 int poll_for = 8; /* 80 usecs */
523 const struct parport_pc_private *priv = port->physport->private_data;
524 const int fifo_depth = priv->fifo_depth;
525
526 port = port->physport;
527
528 /* We don't want to be interrupted every character. */
529 parport_pc_disable_irq (port);
530 /* set nErrIntrEn and serviceIntr */
531 frob_econtrol (port, (1<<4) | (1<<2), (1<<4) | (1<<2));
532
533 /* Forward mode. */
534 parport_pc_data_forward (port); /* Must be in PS2 mode */
535
536 while (left) {
537 unsigned char byte;
538 unsigned char ecrval = inb (ECONTROL (port));
539 int i = 0;
540
541 if (need_resched() && time_before (jiffies, expire))
542 /* Can't yield the port. */
543 schedule ();
544
545 /* Anyone else waiting for the port? */
546 if (port->waithead) {
547 printk (KERN_DEBUG "Somebody wants the port\n");
548 break;
549 }
550
551 if (ecrval & 0x02) {
552 /* FIFO is full. Wait for interrupt. */
553
554 /* Clear serviceIntr */
555 ECR_WRITE (port, ecrval & ~(1<<2));
556 false_alarm:
557 ret = parport_wait_event (port, HZ);
558 if (ret < 0) break;
559 ret = 0;
560 if (!time_before (jiffies, expire)) {
561 /* Timed out. */
562 printk (KERN_DEBUG "FIFO write timed out\n");
563 break;
564 }
565 ecrval = inb (ECONTROL (port));
566 if (!(ecrval & (1<<2))) {
567 if (need_resched() &&
568 time_before (jiffies, expire))
569 schedule ();
570
571 goto false_alarm;
572 }
573
574 continue;
575 }
576
577 /* Can't fail now. */
578 expire = jiffies + port->cad->timeout;
579
580 poll:
581 if (signal_pending (current))
582 break;
583
584 if (ecrval & 0x01) {
585 /* FIFO is empty. Blast it full. */
586 const int n = left < fifo_depth ? left : fifo_depth;
587 outsb (fifo, bufp, n);
588 bufp += n;
589 left -= n;
590
591 /* Adjust the poll time. */
592 if (i < (poll_for - 2)) poll_for--;
593 continue;
594 } else if (i++ < poll_for) {
595 udelay (10);
596 ecrval = inb (ECONTROL (port));
597 goto poll;
598 }
599
600 /* Half-full (call me an optimist) */
601 byte = *bufp++;
602 outb (byte, fifo);
603 left--;
604 }
605
606dump_parport_state ("leave fifo_write_block_pio", port);
607 return length - left;
608}
609
Al Viro7fbacd52005-05-04 05:39:32 +0100610#ifdef HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611static size_t parport_pc_fifo_write_block_dma (struct parport *port,
612 const void *buf, size_t length)
613{
614 int ret = 0;
615 unsigned long dmaflag;
616 size_t left = length;
617 const struct parport_pc_private *priv = port->physport->private_data;
David Brownellc15a3832007-05-08 00:27:35 -0700618 struct device *dev = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 dma_addr_t dma_addr, dma_handle;
620 size_t maxlen = 0x10000; /* max 64k per DMA transfer */
621 unsigned long start = (unsigned long) buf;
622 unsigned long end = (unsigned long) buf + length - 1;
623
624dump_parport_state ("enter fifo_write_block_dma", port);
625 if (end < MAX_DMA_ADDRESS) {
626 /* If it would cross a 64k boundary, cap it at the end. */
627 if ((start ^ end) & ~0xffffUL)
628 maxlen = 0x10000 - (start & 0xffff);
629
David Brownellc15a3832007-05-08 00:27:35 -0700630 dma_addr = dma_handle = dma_map_single(dev, (void *)buf, length,
631 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 } else {
633 /* above 16 MB we use a bounce buffer as ISA-DMA is not possible */
634 maxlen = PAGE_SIZE; /* sizeof(priv->dma_buf) */
635 dma_addr = priv->dma_handle;
636 dma_handle = 0;
637 }
638
639 port = port->physport;
640
641 /* We don't want to be interrupted every character. */
642 parport_pc_disable_irq (port);
643 /* set nErrIntrEn and serviceIntr */
644 frob_econtrol (port, (1<<4) | (1<<2), (1<<4) | (1<<2));
645
646 /* Forward mode. */
647 parport_pc_data_forward (port); /* Must be in PS2 mode */
648
649 while (left) {
650 unsigned long expire = jiffies + port->physport->cad->timeout;
651
652 size_t count = left;
653
654 if (count > maxlen)
655 count = maxlen;
656
657 if (!dma_handle) /* bounce buffer ! */
658 memcpy(priv->dma_buf, buf, count);
659
660 dmaflag = claim_dma_lock();
661 disable_dma(port->dma);
662 clear_dma_ff(port->dma);
663 set_dma_mode(port->dma, DMA_MODE_WRITE);
664 set_dma_addr(port->dma, dma_addr);
665 set_dma_count(port->dma, count);
666
667 /* Set DMA mode */
668 frob_econtrol (port, 1<<3, 1<<3);
669
670 /* Clear serviceIntr */
671 frob_econtrol (port, 1<<2, 0);
672
673 enable_dma(port->dma);
674 release_dma_lock(dmaflag);
675
676 /* assume DMA will be successful */
677 left -= count;
678 buf += count;
679 if (dma_handle) dma_addr += count;
680
681 /* Wait for interrupt. */
682 false_alarm:
683 ret = parport_wait_event (port, HZ);
684 if (ret < 0) break;
685 ret = 0;
686 if (!time_before (jiffies, expire)) {
687 /* Timed out. */
688 printk (KERN_DEBUG "DMA write timed out\n");
689 break;
690 }
691 /* Is serviceIntr set? */
692 if (!(inb (ECONTROL (port)) & (1<<2))) {
693 cond_resched();
694
695 goto false_alarm;
696 }
697
698 dmaflag = claim_dma_lock();
699 disable_dma(port->dma);
700 clear_dma_ff(port->dma);
701 count = get_dma_residue(port->dma);
702 release_dma_lock(dmaflag);
703
704 cond_resched(); /* Can't yield the port. */
705
706 /* Anyone else waiting for the port? */
707 if (port->waithead) {
708 printk (KERN_DEBUG "Somebody wants the port\n");
709 break;
710 }
711
712 /* update for possible DMA residue ! */
713 buf -= count;
714 left += count;
715 if (dma_handle) dma_addr -= count;
716 }
717
718 /* Maybe got here through break, so adjust for DMA residue! */
719 dmaflag = claim_dma_lock();
720 disable_dma(port->dma);
721 clear_dma_ff(port->dma);
722 left += get_dma_residue(port->dma);
723 release_dma_lock(dmaflag);
724
725 /* Turn off DMA mode */
726 frob_econtrol (port, 1<<3, 0);
David Brownellc15a3832007-05-08 00:27:35 -0700727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (dma_handle)
David Brownellc15a3832007-05-08 00:27:35 -0700729 dma_unmap_single(dev, dma_handle, length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731dump_parport_state ("leave fifo_write_block_dma", port);
732 return length - left;
733}
Al Viro7fbacd52005-05-04 05:39:32 +0100734#endif
735
736static inline size_t parport_pc_fifo_write_block(struct parport *port,
737 const void *buf, size_t length)
738{
739#ifdef HAS_DMA
740 if (port->dma != PARPORT_DMA_NONE)
741 return parport_pc_fifo_write_block_dma (port, buf, length);
742#endif
743 return parport_pc_fifo_write_block_pio (port, buf, length);
744}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746/* Parallel Port FIFO mode (ECP chipsets) */
747static size_t parport_pc_compat_write_block_pio (struct parport *port,
748 const void *buf, size_t length,
749 int flags)
750{
751 size_t written;
752 int r;
753 unsigned long expire;
754 const struct parport_pc_private *priv = port->physport->private_data;
755
756 /* Special case: a timeout of zero means we cannot call schedule().
757 * Also if O_NONBLOCK is set then use the default implementation. */
758 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
759 return parport_ieee1284_write_compat (port, buf,
760 length, flags);
761
762 /* Set up parallel port FIFO mode.*/
763 parport_pc_data_forward (port); /* Must be in PS2 mode */
764 parport_pc_frob_control (port, PARPORT_CONTROL_STROBE, 0);
765 r = change_mode (port, ECR_PPF); /* Parallel port FIFO */
766 if (r) printk (KERN_DEBUG "%s: Warning change_mode ECR_PPF failed\n", port->name);
767
768 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
769
770 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100771 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 /* Finish up. */
774 /* For some hardware we don't want to touch the mode until
775 * the FIFO is empty, so allow 4 seconds for each position
776 * in the fifo.
777 */
778 expire = jiffies + (priv->fifo_depth * HZ * 4);
779 do {
780 /* Wait for the FIFO to empty */
781 r = change_mode (port, ECR_PS2);
782 if (r != -EBUSY) {
783 break;
784 }
785 } while (time_before (jiffies, expire));
786 if (r == -EBUSY) {
787
788 printk (KERN_DEBUG "%s: FIFO is stuck\n", port->name);
789
790 /* Prevent further data transfer. */
791 frob_set_mode (port, ECR_TST);
792
793 /* Adjust for the contents of the FIFO. */
794 for (written -= priv->fifo_depth; ; written++) {
795 if (inb (ECONTROL (port)) & 0x2) {
796 /* Full up. */
797 break;
798 }
799 outb (0, FIFO (port));
800 }
801
802 /* Reset the FIFO and return to PS2 mode. */
803 frob_set_mode (port, ECR_PS2);
804 }
805
806 r = parport_wait_peripheral (port,
807 PARPORT_STATUS_BUSY,
808 PARPORT_STATUS_BUSY);
809 if (r)
810 printk (KERN_DEBUG
811 "%s: BUSY timeout (%d) in compat_write_block_pio\n",
812 port->name, r);
813
814 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
815
816 return written;
817}
818
819/* ECP */
820#ifdef CONFIG_PARPORT_1284
821static size_t parport_pc_ecp_write_block_pio (struct parport *port,
822 const void *buf, size_t length,
823 int flags)
824{
825 size_t written;
826 int r;
827 unsigned long expire;
828 const struct parport_pc_private *priv = port->physport->private_data;
829
830 /* Special case: a timeout of zero means we cannot call schedule().
831 * Also if O_NONBLOCK is set then use the default implementation. */
832 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
833 return parport_ieee1284_ecp_write_data (port, buf,
834 length, flags);
835
836 /* Switch to forward mode if necessary. */
837 if (port->physport->ieee1284.phase != IEEE1284_PH_FWD_IDLE) {
838 /* Event 47: Set nInit high. */
839 parport_frob_control (port,
840 PARPORT_CONTROL_INIT
841 | PARPORT_CONTROL_AUTOFD,
842 PARPORT_CONTROL_INIT
843 | PARPORT_CONTROL_AUTOFD);
844
845 /* Event 49: PError goes high. */
846 r = parport_wait_peripheral (port,
847 PARPORT_STATUS_PAPEROUT,
848 PARPORT_STATUS_PAPEROUT);
849 if (r) {
850 printk (KERN_DEBUG "%s: PError timeout (%d) "
851 "in ecp_write_block_pio\n", port->name, r);
852 }
853 }
854
855 /* Set up ECP parallel port mode.*/
856 parport_pc_data_forward (port); /* Must be in PS2 mode */
857 parport_pc_frob_control (port,
858 PARPORT_CONTROL_STROBE |
859 PARPORT_CONTROL_AUTOFD,
860 0);
861 r = change_mode (port, ECR_ECP); /* ECP FIFO */
862 if (r) printk (KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n", port->name);
863 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
864
865 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100866 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 /* Finish up. */
869 /* For some hardware we don't want to touch the mode until
870 * the FIFO is empty, so allow 4 seconds for each position
871 * in the fifo.
872 */
873 expire = jiffies + (priv->fifo_depth * (HZ * 4));
874 do {
875 /* Wait for the FIFO to empty */
876 r = change_mode (port, ECR_PS2);
877 if (r != -EBUSY) {
878 break;
879 }
880 } while (time_before (jiffies, expire));
881 if (r == -EBUSY) {
882
883 printk (KERN_DEBUG "%s: FIFO is stuck\n", port->name);
884
885 /* Prevent further data transfer. */
886 frob_set_mode (port, ECR_TST);
887
888 /* Adjust for the contents of the FIFO. */
889 for (written -= priv->fifo_depth; ; written++) {
890 if (inb (ECONTROL (port)) & 0x2) {
891 /* Full up. */
892 break;
893 }
894 outb (0, FIFO (port));
895 }
896
897 /* Reset the FIFO and return to PS2 mode. */
898 frob_set_mode (port, ECR_PS2);
899
900 /* Host transfer recovery. */
901 parport_pc_data_reverse (port); /* Must be in PS2 mode */
902 udelay (5);
903 parport_frob_control (port, PARPORT_CONTROL_INIT, 0);
904 r = parport_wait_peripheral (port, PARPORT_STATUS_PAPEROUT, 0);
905 if (r)
906 printk (KERN_DEBUG "%s: PE,1 timeout (%d) "
907 "in ecp_write_block_pio\n", port->name, r);
908
909 parport_frob_control (port,
910 PARPORT_CONTROL_INIT,
911 PARPORT_CONTROL_INIT);
912 r = parport_wait_peripheral (port,
913 PARPORT_STATUS_PAPEROUT,
914 PARPORT_STATUS_PAPEROUT);
915 if (r)
916 printk (KERN_DEBUG "%s: PE,2 timeout (%d) "
917 "in ecp_write_block_pio\n", port->name, r);
918 }
919
920 r = parport_wait_peripheral (port,
921 PARPORT_STATUS_BUSY,
922 PARPORT_STATUS_BUSY);
923 if(r)
924 printk (KERN_DEBUG
925 "%s: BUSY timeout (%d) in ecp_write_block_pio\n",
926 port->name, r);
927
928 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
929
930 return written;
931}
932
933#if 0
934static size_t parport_pc_ecp_read_block_pio (struct parport *port,
935 void *buf, size_t length,
936 int flags)
937{
938 size_t left = length;
939 size_t fifofull;
940 int r;
941 const int fifo = FIFO(port);
942 const struct parport_pc_private *priv = port->physport->private_data;
943 const int fifo_depth = priv->fifo_depth;
944 char *bufp = buf;
945
946 port = port->physport;
947DPRINTK (KERN_DEBUG "parport_pc: parport_pc_ecp_read_block_pio\n");
948dump_parport_state ("enter fcn", port);
949
950 /* Special case: a timeout of zero means we cannot call schedule().
951 * Also if O_NONBLOCK is set then use the default implementation. */
952 if (port->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
953 return parport_ieee1284_ecp_read_data (port, buf,
954 length, flags);
955
956 if (port->ieee1284.mode == IEEE1284_MODE_ECPRLE) {
957 /* If the peripheral is allowed to send RLE compressed
958 * data, it is possible for a byte to expand to 128
959 * bytes in the FIFO. */
960 fifofull = 128;
961 } else {
962 fifofull = fifo_depth;
963 }
964
965 /* If the caller wants less than a full FIFO's worth of data,
966 * go through software emulation. Otherwise we may have to throw
967 * away data. */
968 if (length < fifofull)
969 return parport_ieee1284_ecp_read_data (port, buf,
970 length, flags);
971
972 if (port->ieee1284.phase != IEEE1284_PH_REV_IDLE) {
973 /* change to reverse-idle phase (must be in forward-idle) */
974
975 /* Event 38: Set nAutoFd low (also make sure nStrobe is high) */
976 parport_frob_control (port,
977 PARPORT_CONTROL_AUTOFD
978 | PARPORT_CONTROL_STROBE,
979 PARPORT_CONTROL_AUTOFD);
980 parport_pc_data_reverse (port); /* Must be in PS2 mode */
981 udelay (5);
982 /* Event 39: Set nInit low to initiate bus reversal */
983 parport_frob_control (port,
984 PARPORT_CONTROL_INIT,
985 0);
986 /* Event 40: Wait for nAckReverse (PError) to go low */
987 r = parport_wait_peripheral (port, PARPORT_STATUS_PAPEROUT, 0);
988 if (r) {
989 printk (KERN_DEBUG "%s: PE timeout Event 40 (%d) "
990 "in ecp_read_block_pio\n", port->name, r);
991 return 0;
992 }
993 }
994
995 /* Set up ECP FIFO mode.*/
996/* parport_pc_frob_control (port,
997 PARPORT_CONTROL_STROBE |
998 PARPORT_CONTROL_AUTOFD,
999 PARPORT_CONTROL_AUTOFD); */
1000 r = change_mode (port, ECR_ECP); /* ECP FIFO */
1001 if (r) printk (KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n", port->name);
1002
1003 port->ieee1284.phase = IEEE1284_PH_REV_DATA;
1004
1005 /* the first byte must be collected manually */
1006dump_parport_state ("pre 43", port);
1007 /* Event 43: Wait for nAck to go low */
1008 r = parport_wait_peripheral (port, PARPORT_STATUS_ACK, 0);
1009 if (r) {
1010 /* timed out while reading -- no data */
1011 printk (KERN_DEBUG "PIO read timed out (initial byte)\n");
1012 goto out_no_data;
1013 }
1014 /* read byte */
1015 *bufp++ = inb (DATA (port));
1016 left--;
1017dump_parport_state ("43-44", port);
1018 /* Event 44: nAutoFd (HostAck) goes high to acknowledge */
1019 parport_pc_frob_control (port,
1020 PARPORT_CONTROL_AUTOFD,
1021 0);
1022dump_parport_state ("pre 45", port);
1023 /* Event 45: Wait for nAck to go high */
1024/* r = parport_wait_peripheral (port, PARPORT_STATUS_ACK, PARPORT_STATUS_ACK); */
1025dump_parport_state ("post 45", port);
1026r = 0;
1027 if (r) {
1028 /* timed out while waiting for peripheral to respond to ack */
1029 printk (KERN_DEBUG "ECP PIO read timed out (waiting for nAck)\n");
1030
1031 /* keep hold of the byte we've got already */
1032 goto out_no_data;
1033 }
1034 /* Event 46: nAutoFd (HostAck) goes low to accept more data */
1035 parport_pc_frob_control (port,
1036 PARPORT_CONTROL_AUTOFD,
1037 PARPORT_CONTROL_AUTOFD);
1038
1039
1040dump_parport_state ("rev idle", port);
1041 /* Do the transfer. */
1042 while (left > fifofull) {
1043 int ret;
1044 unsigned long expire = jiffies + port->cad->timeout;
1045 unsigned char ecrval = inb (ECONTROL (port));
1046
1047 if (need_resched() && time_before (jiffies, expire))
1048 /* Can't yield the port. */
1049 schedule ();
1050
1051 /* At this point, the FIFO may already be full. In
1052 * that case ECP is already holding back the
1053 * peripheral (assuming proper design) with a delayed
1054 * handshake. Work fast to avoid a peripheral
1055 * timeout. */
1056
1057 if (ecrval & 0x01) {
1058 /* FIFO is empty. Wait for interrupt. */
1059dump_parport_state ("FIFO empty", port);
1060
1061 /* Anyone else waiting for the port? */
1062 if (port->waithead) {
1063 printk (KERN_DEBUG "Somebody wants the port\n");
1064 break;
1065 }
1066
1067 /* Clear serviceIntr */
1068 ECR_WRITE (port, ecrval & ~(1<<2));
1069 false_alarm:
1070dump_parport_state ("waiting", port);
1071 ret = parport_wait_event (port, HZ);
1072DPRINTK (KERN_DEBUG "parport_wait_event returned %d\n", ret);
1073 if (ret < 0)
1074 break;
1075 ret = 0;
1076 if (!time_before (jiffies, expire)) {
1077 /* Timed out. */
1078dump_parport_state ("timeout", port);
1079 printk (KERN_DEBUG "PIO read timed out\n");
1080 break;
1081 }
1082 ecrval = inb (ECONTROL (port));
1083 if (!(ecrval & (1<<2))) {
1084 if (need_resched() &&
1085 time_before (jiffies, expire)) {
1086 schedule ();
1087 }
1088 goto false_alarm;
1089 }
1090
1091 /* Depending on how the FIFO threshold was
1092 * set, how long interrupt service took, and
1093 * how fast the peripheral is, we might be
1094 * lucky and have a just filled FIFO. */
1095 continue;
1096 }
1097
1098 if (ecrval & 0x02) {
1099 /* FIFO is full. */
1100dump_parport_state ("FIFO full", port);
1101 insb (fifo, bufp, fifo_depth);
1102 bufp += fifo_depth;
1103 left -= fifo_depth;
1104 continue;
1105 }
1106
1107DPRINTK (KERN_DEBUG "*** ecp_read_block_pio: reading one byte from the FIFO\n");
1108
1109 /* FIFO not filled. We will cycle this loop for a while
1110 * and either the peripheral will fill it faster,
1111 * tripping a fast empty with insb, or we empty it. */
1112 *bufp++ = inb (fifo);
1113 left--;
1114 }
1115
1116 /* scoop up anything left in the FIFO */
1117 while (left && !(inb (ECONTROL (port) & 0x01))) {
1118 *bufp++ = inb (fifo);
1119 left--;
1120 }
1121
1122 port->ieee1284.phase = IEEE1284_PH_REV_IDLE;
1123dump_parport_state ("rev idle2", port);
1124
1125out_no_data:
1126
1127 /* Go to forward idle mode to shut the peripheral up (event 47). */
1128 parport_frob_control (port, PARPORT_CONTROL_INIT, PARPORT_CONTROL_INIT);
1129
1130 /* event 49: PError goes high */
1131 r = parport_wait_peripheral (port,
1132 PARPORT_STATUS_PAPEROUT,
1133 PARPORT_STATUS_PAPEROUT);
1134 if (r) {
1135 printk (KERN_DEBUG
1136 "%s: PE timeout FWDIDLE (%d) in ecp_read_block_pio\n",
1137 port->name, r);
1138 }
1139
1140 port->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
1141
1142 /* Finish up. */
1143 {
1144 int lost = get_fifo_residue (port);
1145 if (lost)
1146 /* Shouldn't happen with compliant peripherals. */
1147 printk (KERN_DEBUG "%s: DATA LOSS (%d bytes)!\n",
1148 port->name, lost);
1149 }
1150
1151dump_parport_state ("fwd idle", port);
1152 return length - left;
1153}
1154#endif /* 0 */
1155#endif /* IEEE 1284 support */
1156#endif /* Allowed to use FIFO/DMA */
1157
1158
1159/*
1160 * ******************************************
1161 * INITIALISATION AND MODULE STUFF BELOW HERE
1162 * ******************************************
1163 */
1164
1165/* GCC is not inlining extern inline function later overwriten to non-inline,
1166 so we use outlined_ variants here. */
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001167static const struct parport_operations parport_pc_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 .write_data = parport_pc_write_data,
1170 .read_data = parport_pc_read_data,
1171
1172 .write_control = parport_pc_write_control,
1173 .read_control = parport_pc_read_control,
1174 .frob_control = parport_pc_frob_control,
1175
1176 .read_status = parport_pc_read_status,
1177
1178 .enable_irq = parport_pc_enable_irq,
1179 .disable_irq = parport_pc_disable_irq,
1180
1181 .data_forward = parport_pc_data_forward,
1182 .data_reverse = parport_pc_data_reverse,
1183
1184 .init_state = parport_pc_init_state,
1185 .save_state = parport_pc_save_state,
1186 .restore_state = parport_pc_restore_state,
1187
1188 .epp_write_data = parport_ieee1284_epp_write_data,
1189 .epp_read_data = parport_ieee1284_epp_read_data,
1190 .epp_write_addr = parport_ieee1284_epp_write_addr,
1191 .epp_read_addr = parport_ieee1284_epp_read_addr,
1192
1193 .ecp_write_data = parport_ieee1284_ecp_write_data,
1194 .ecp_read_data = parport_ieee1284_ecp_read_data,
1195 .ecp_write_addr = parport_ieee1284_ecp_write_addr,
1196
1197 .compat_write_data = parport_ieee1284_write_compat,
1198 .nibble_read_data = parport_ieee1284_read_nibble,
1199 .byte_read_data = parport_ieee1284_read_byte,
1200
1201 .owner = THIS_MODULE,
1202};
1203
1204#ifdef CONFIG_PARPORT_PC_SUPERIO
1205/* Super-IO chipset detection, Winbond, SMSC */
1206static void __devinit show_parconfig_smsc37c669(int io, int key)
1207{
1208 int cr1,cr4,cra,cr23,cr26,cr27,i=0;
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001209 static const char *const modes[]={
1210 "SPP and Bidirectional (PS/2)",
1211 "EPP and SPP",
1212 "ECP",
1213 "ECP and EPP" };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 outb(key,io);
1216 outb(key,io);
1217 outb(1,io);
1218 cr1=inb(io+1);
1219 outb(4,io);
1220 cr4=inb(io+1);
1221 outb(0x0a,io);
1222 cra=inb(io+1);
1223 outb(0x23,io);
1224 cr23=inb(io+1);
1225 outb(0x26,io);
1226 cr26=inb(io+1);
1227 outb(0x27,io);
1228 cr27=inb(io+1);
1229 outb(0xaa,io);
1230
1231 if (verbose_probing) {
1232 printk (KERN_INFO "SMSC 37c669 LPT Config: cr_1=0x%02x, 4=0x%02x, "
1233 "A=0x%2x, 23=0x%02x, 26=0x%02x, 27=0x%02x\n",
1234 cr1,cr4,cra,cr23,cr26,cr27);
1235
1236 /* The documentation calls DMA and IRQ-Lines by letters, so
1237 the board maker can/will wire them
1238 appropriately/randomly... G=reserved H=IDE-irq, */
1239 printk (KERN_INFO "SMSC LPT Config: io=0x%04x, irq=%c, dma=%c, "
1240 "fifo threshold=%d\n", cr23*4,
1241 (cr27 &0x0f) ? 'A'-1+(cr27 &0x0f): '-',
1242 (cr26 &0x0f) ? 'A'-1+(cr26 &0x0f): '-', cra & 0x0f);
1243 printk(KERN_INFO "SMSC LPT Config: enabled=%s power=%s\n",
1244 (cr23*4 >=0x100) ?"yes":"no", (cr1 & 4) ? "yes" : "no");
1245 printk(KERN_INFO "SMSC LPT Config: Port mode=%s, EPP version =%s\n",
1246 (cr1 & 0x08 ) ? "Standard mode only (SPP)" : modes[cr4 & 0x03],
1247 (cr4 & 0x40) ? "1.7" : "1.9");
1248 }
Michael Buesch73e0d482009-06-11 13:06:31 +01001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 /* Heuristics ! BIOS setup for this mainboard device limits
1251 the choices to standard settings, i.e. io-address and IRQ
1252 are related, however DMA can be 1 or 3, assume DMA_A=DMA1,
1253 DMA_C=DMA3 (this is true e.g. for TYAN 1564D Tomcat IV) */
Michael Buesch73e0d482009-06-11 13:06:31 +01001254 if (cr23 * 4 >= 0x100) { /* if active */
1255 while ((i < NR_SUPERIOS) && (superios[i].io != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 i++;
Michael Buesch73e0d482009-06-11 13:06:31 +01001257 if (i == NR_SUPERIOS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 printk(KERN_INFO "Super-IO: too many chips!\n");
Michael Buesch73e0d482009-06-11 13:06:31 +01001259 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int d;
1261 switch (cr23*4) {
1262 case 0x3bc:
1263 superios[i].io = 0x3bc;
1264 superios[i].irq = 7;
1265 break;
1266 case 0x378:
1267 superios[i].io = 0x378;
1268 superios[i].irq = 7;
1269 break;
1270 case 0x278:
1271 superios[i].io = 0x278;
1272 superios[i].irq = 5;
1273 }
1274 d=(cr26 &0x0f);
1275 if((d==1) || (d==3))
1276 superios[i].dma= d;
1277 else
1278 superios[i].dma= PARPORT_DMA_NONE;
1279 }
1280 }
1281}
1282
1283
1284static void __devinit show_parconfig_winbond(int io, int key)
1285{
1286 int cr30,cr60,cr61,cr70,cr74,crf0,i=0;
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001287 static const char *const modes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 "Standard (SPP) and Bidirectional(PS/2)", /* 0 */
1289 "EPP-1.9 and SPP",
1290 "ECP",
1291 "ECP and EPP-1.9",
1292 "Standard (SPP)",
1293 "EPP-1.7 and SPP", /* 5 */
1294 "undefined!",
1295 "ECP and EPP-1.7" };
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001296 static char *const irqtypes[] = {
1297 "pulsed low, high-Z",
1298 "follows nACK" };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /* The registers are called compatible-PnP because the
1301 register layout is modelled after ISA-PnP, the access
1302 method is just another ... */
1303 outb(key,io);
1304 outb(key,io);
1305 outb(0x07,io); /* Register 7: Select Logical Device */
1306 outb(0x01,io+1); /* LD1 is Parallel Port */
1307 outb(0x30,io);
1308 cr30=inb(io+1);
1309 outb(0x60,io);
1310 cr60=inb(io+1);
1311 outb(0x61,io);
1312 cr61=inb(io+1);
1313 outb(0x70,io);
1314 cr70=inb(io+1);
1315 outb(0x74,io);
1316 cr74=inb(io+1);
1317 outb(0xf0,io);
1318 crf0=inb(io+1);
1319 outb(0xaa,io);
1320
1321 if (verbose_probing) {
1322 printk(KERN_INFO "Winbond LPT Config: cr_30=%02x 60,61=%02x%02x "
1323 "70=%02x 74=%02x, f0=%02x\n", cr30,cr60,cr61,cr70,cr74,crf0);
1324 printk(KERN_INFO "Winbond LPT Config: active=%s, io=0x%02x%02x irq=%d, ",
1325 (cr30 & 0x01) ? "yes":"no", cr60,cr61,cr70&0x0f );
1326 if ((cr74 & 0x07) > 3)
1327 printk("dma=none\n");
1328 else
1329 printk("dma=%d\n",cr74 & 0x07);
1330 printk(KERN_INFO "Winbond LPT Config: irqtype=%s, ECP fifo threshold=%d\n",
1331 irqtypes[crf0>>7], (crf0>>3)&0x0f);
1332 printk(KERN_INFO "Winbond LPT Config: Port mode=%s\n", modes[crf0 & 0x07]);
1333 }
1334
Michael Buesch73e0d482009-06-11 13:06:31 +01001335 if (cr30 & 0x01) { /* the settings can be interrogated later ... */
1336 while ((i < NR_SUPERIOS) && (superios[i].io != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 i++;
Michael Buesch73e0d482009-06-11 13:06:31 +01001338 if (i == NR_SUPERIOS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 printk(KERN_INFO "Super-IO: too many chips!\n");
Michael Buesch73e0d482009-06-11 13:06:31 +01001340 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 superios[i].io = (cr60<<8)|cr61;
1342 superios[i].irq = cr70&0x0f;
1343 superios[i].dma = (((cr74 & 0x07) > 3) ?
1344 PARPORT_DMA_NONE : (cr74 & 0x07));
1345 }
1346 }
1347}
1348
1349static void __devinit decode_winbond(int efer, int key, int devid, int devrev, int oldid)
1350{
1351 const char *type = "unknown";
1352 int id,progif=2;
1353
1354 if (devid == devrev)
1355 /* simple heuristics, we happened to read some
1356 non-winbond register */
1357 return;
1358
1359 id=(devid<<8) | devrev;
1360
1361 /* Values are from public data sheets pdf files, I can just
1362 confirm 83977TF is correct :-) */
1363 if (id == 0x9771) type="83977F/AF";
1364 else if (id == 0x9773) type="83977TF / SMSC 97w33x/97w34x";
1365 else if (id == 0x9774) type="83977ATF";
1366 else if ((id & ~0x0f) == 0x5270) type="83977CTF / SMSC 97w36x";
1367 else if ((id & ~0x0f) == 0x52f0) type="83977EF / SMSC 97w35x";
1368 else if ((id & ~0x0f) == 0x5210) type="83627";
1369 else if ((id & ~0x0f) == 0x6010) type="83697HF";
1370 else if ((oldid &0x0f ) == 0x0a) { type="83877F"; progif=1;}
1371 else if ((oldid &0x0f ) == 0x0b) { type="83877AF"; progif=1;}
1372 else if ((oldid &0x0f ) == 0x0c) { type="83877TF"; progif=1;}
1373 else if ((oldid &0x0f ) == 0x0d) { type="83877ATF"; progif=1;}
1374 else progif=0;
1375
1376 if (verbose_probing)
1377 printk(KERN_INFO "Winbond chip at EFER=0x%x key=0x%02x "
1378 "devid=%02x devrev=%02x oldid=%02x type=%s\n",
1379 efer, key, devid, devrev, oldid, type);
1380
1381 if (progif == 2)
1382 show_parconfig_winbond(efer,key);
1383}
1384
1385static void __devinit decode_smsc(int efer, int key, int devid, int devrev)
1386{
1387 const char *type = "unknown";
1388 void (*func)(int io, int key);
1389 int id;
1390
1391 if (devid == devrev)
1392 /* simple heuristics, we happened to read some
1393 non-smsc register */
1394 return;
1395
1396 func=NULL;
1397 id=(devid<<8) | devrev;
1398
1399 if (id==0x0302) {type="37c669"; func=show_parconfig_smsc37c669;}
1400 else if (id==0x6582) type="37c665IR";
1401 else if (devid==0x65) type="37c665GT";
1402 else if (devid==0x66) type="37c666GT";
1403
1404 if (verbose_probing)
1405 printk(KERN_INFO "SMSC chip at EFER=0x%x "
1406 "key=0x%02x devid=%02x devrev=%02x type=%s\n",
1407 efer, key, devid, devrev, type);
1408
1409 if (func)
1410 func(efer,key);
1411}
1412
1413
1414static void __devinit winbond_check(int io, int key)
1415{
1416 int devid,devrev,oldid,x_devid,x_devrev,x_oldid;
1417
Harvey Harrison145980a2008-04-30 00:54:57 -07001418 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 return;
1420
1421 /* First probe without key */
1422 outb(0x20,io);
1423 x_devid=inb(io+1);
1424 outb(0x21,io);
1425 x_devrev=inb(io+1);
1426 outb(0x09,io);
1427 x_oldid=inb(io+1);
1428
1429 outb(key,io);
1430 outb(key,io); /* Write Magic Sequence to EFER, extended
1431 funtion enable register */
1432 outb(0x20,io); /* Write EFIR, extended function index register */
1433 devid=inb(io+1); /* Read EFDR, extended function data register */
1434 outb(0x21,io);
1435 devrev=inb(io+1);
1436 outb(0x09,io);
1437 oldid=inb(io+1);
1438 outb(0xaa,io); /* Magic Seal */
1439
1440 if ((x_devid == devid) && (x_devrev == devrev) && (x_oldid == oldid))
1441 goto out; /* protection against false positives */
1442
1443 decode_winbond(io,key,devid,devrev,oldid);
1444out:
1445 release_region(io, 3);
1446}
1447
1448static void __devinit winbond_check2(int io,int key)
1449{
1450 int devid,devrev,oldid,x_devid,x_devrev,x_oldid;
1451
Harvey Harrison145980a2008-04-30 00:54:57 -07001452 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return;
1454
1455 /* First probe without the key */
1456 outb(0x20,io+2);
1457 x_devid=inb(io+2);
1458 outb(0x21,io+1);
1459 x_devrev=inb(io+2);
1460 outb(0x09,io+1);
1461 x_oldid=inb(io+2);
1462
1463 outb(key,io); /* Write Magic Byte to EFER, extended
1464 funtion enable register */
1465 outb(0x20,io+2); /* Write EFIR, extended function index register */
1466 devid=inb(io+2); /* Read EFDR, extended function data register */
1467 outb(0x21,io+1);
1468 devrev=inb(io+2);
1469 outb(0x09,io+1);
1470 oldid=inb(io+2);
1471 outb(0xaa,io); /* Magic Seal */
1472
1473 if ((x_devid == devid) && (x_devrev == devrev) && (x_oldid == oldid))
1474 goto out; /* protection against false positives */
1475
1476 decode_winbond(io,key,devid,devrev,oldid);
1477out:
1478 release_region(io, 3);
1479}
1480
1481static void __devinit smsc_check(int io, int key)
1482{
1483 int id,rev,oldid,oldrev,x_id,x_rev,x_oldid,x_oldrev;
1484
Harvey Harrison145980a2008-04-30 00:54:57 -07001485 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return;
1487
1488 /* First probe without the key */
1489 outb(0x0d,io);
1490 x_oldid=inb(io+1);
1491 outb(0x0e,io);
1492 x_oldrev=inb(io+1);
1493 outb(0x20,io);
1494 x_id=inb(io+1);
1495 outb(0x21,io);
1496 x_rev=inb(io+1);
1497
1498 outb(key,io);
1499 outb(key,io); /* Write Magic Sequence to EFER, extended
1500 funtion enable register */
1501 outb(0x0d,io); /* Write EFIR, extended function index register */
1502 oldid=inb(io+1); /* Read EFDR, extended function data register */
1503 outb(0x0e,io);
1504 oldrev=inb(io+1);
1505 outb(0x20,io);
1506 id=inb(io+1);
1507 outb(0x21,io);
1508 rev=inb(io+1);
1509 outb(0xaa,io); /* Magic Seal */
1510
1511 if ((x_id == id) && (x_oldrev == oldrev) &&
1512 (x_oldid == oldid) && (x_rev == rev))
1513 goto out; /* protection against false positives */
1514
1515 decode_smsc(io,key,oldid,oldrev);
1516out:
1517 release_region(io, 3);
1518}
1519
1520
1521static void __devinit detect_and_report_winbond (void)
1522{
1523 if (verbose_probing)
1524 printk(KERN_DEBUG "Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n");
1525 winbond_check(0x3f0,0x87);
1526 winbond_check(0x370,0x87);
1527 winbond_check(0x2e ,0x87);
1528 winbond_check(0x4e ,0x87);
1529 winbond_check(0x3f0,0x86);
1530 winbond_check2(0x250,0x88);
1531 winbond_check2(0x250,0x89);
1532}
1533
1534static void __devinit detect_and_report_smsc (void)
1535{
1536 if (verbose_probing)
1537 printk(KERN_DEBUG "SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n");
1538 smsc_check(0x3f0,0x55);
1539 smsc_check(0x370,0x55);
1540 smsc_check(0x3f0,0x44);
1541 smsc_check(0x370,0x44);
1542}
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001543
1544static void __devinit detect_and_report_it87(void)
1545{
1546 u16 dev;
1547 u8 r;
1548 if (verbose_probing)
1549 printk(KERN_DEBUG "IT8705 Super-IO detection, now testing port 2E ...\n");
Harvey Harrison145980a2008-04-30 00:54:57 -07001550 if (!request_region(0x2e, 1, __func__))
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001551 return;
1552 outb(0x87, 0x2e);
1553 outb(0x01, 0x2e);
1554 outb(0x55, 0x2e);
1555 outb(0x55, 0x2e);
1556 outb(0x20, 0x2e);
1557 dev = inb(0x2f) << 8;
1558 outb(0x21, 0x2e);
1559 dev |= inb(0x2f);
1560 if (dev == 0x8712 || dev == 0x8705 || dev == 0x8715 ||
1561 dev == 0x8716 || dev == 0x8718 || dev == 0x8726) {
1562 printk(KERN_INFO "IT%04X SuperIO detected.\n", dev);
1563 outb(0x07, 0x2E); /* Parallel Port */
1564 outb(0x03, 0x2F);
1565 outb(0xF0, 0x2E); /* BOOT 0x80 off */
1566 r = inb(0x2f);
1567 outb(0xF0, 0x2E);
1568 outb(r | 8, 0x2F);
1569 outb(0x02, 0x2E); /* Lock */
1570 outb(0x02, 0x2F);
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001571 }
Linus Torvalds4ed91902008-04-04 14:30:31 -07001572 release_region(0x2e, 1);
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001573}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574#endif /* CONFIG_PARPORT_PC_SUPERIO */
1575
Jean Delvare0bb92e62007-02-20 13:58:18 -08001576static int get_superio_dma (struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Michael Buesch73e0d482009-06-11 13:06:31 +01001578 int i = 0;
1579
1580 while ((i < NR_SUPERIOS) && (superios[i].io != p->base))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 i++;
Michael Buesch73e0d482009-06-11 13:06:31 +01001582 if (i != NR_SUPERIOS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return superios[i].dma;
1584 return PARPORT_DMA_NONE;
1585}
1586
Randy.Dunlap96766a32006-04-18 22:21:57 -07001587static int get_superio_irq (struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Michael Buesch73e0d482009-06-11 13:06:31 +01001589 int i = 0;
1590
1591 while ((i < NR_SUPERIOS) && (superios[i].io != p->base))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 i++;
Michael Buesch73e0d482009-06-11 13:06:31 +01001593 if (i != NR_SUPERIOS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return superios[i].irq;
1595 return PARPORT_IRQ_NONE;
1596}
Michael Buesch73e0d482009-06-11 13:06:31 +01001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599/* --- Mode detection ------------------------------------- */
1600
1601/*
1602 * Checks for port existence, all ports support SPP MODE
1603 * Returns:
1604 * 0 : No parallel port at this address
1605 * PARPORT_MODE_PCSPP : SPP port detected
1606 * (if the user specified an ioport himself,
1607 * this shall always be the case!)
1608 *
1609 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001610static int parport_SPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 unsigned char r, w;
1613
1614 /*
1615 * first clear an eventually pending EPP timeout
1616 * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
1617 * that does not even respond to SPP cycles if an EPP
1618 * timeout is pending
1619 */
1620 clear_epp_timeout(pb);
1621
1622 /* Do a simple read-write test to make sure the port exists. */
1623 w = 0xc;
1624 outb (w, CONTROL (pb));
1625
1626 /* Is there a control register that we can read from? Some
1627 * ports don't allow reads, so read_control just returns a
1628 * software copy. Some ports _do_ allow reads, so bypass the
1629 * software copy here. In addition, some bits aren't
1630 * writable. */
1631 r = inb (CONTROL (pb));
1632 if ((r & 0xf) == w) {
1633 w = 0xe;
1634 outb (w, CONTROL (pb));
1635 r = inb (CONTROL (pb));
1636 outb (0xc, CONTROL (pb));
1637 if ((r & 0xf) == w)
1638 return PARPORT_MODE_PCSPP;
1639 }
1640
1641 if (user_specified)
1642 /* That didn't work, but the user thinks there's a
1643 * port here. */
1644 printk (KERN_INFO "parport 0x%lx (WARNING): CTR: "
1645 "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
1646
1647 /* Try the data register. The data lines aren't tri-stated at
1648 * this stage, so we expect back what we wrote. */
1649 w = 0xaa;
1650 parport_pc_write_data (pb, w);
1651 r = parport_pc_read_data (pb);
1652 if (r == w) {
1653 w = 0x55;
1654 parport_pc_write_data (pb, w);
1655 r = parport_pc_read_data (pb);
1656 if (r == w)
1657 return PARPORT_MODE_PCSPP;
1658 }
1659
1660 if (user_specified) {
1661 /* Didn't work, but the user is convinced this is the
1662 * place. */
1663 printk (KERN_INFO "parport 0x%lx (WARNING): DATA: "
1664 "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
1665 printk (KERN_INFO "parport 0x%lx: You gave this address, "
1666 "but there is probably no parallel port there!\n",
1667 pb->base);
1668 }
1669
1670 /* It's possible that we can't read the control register or
1671 * the data register. In that case just believe the user. */
1672 if (user_specified)
1673 return PARPORT_MODE_PCSPP;
1674
1675 return 0;
1676}
1677
1678/* Check for ECR
1679 *
1680 * Old style XT ports alias io ports every 0x400, hence accessing ECR
1681 * on these cards actually accesses the CTR.
1682 *
1683 * Modern cards don't do this but reading from ECR will return 0xff
1684 * regardless of what is written here if the card does NOT support
1685 * ECP.
1686 *
1687 * We first check to see if ECR is the same as CTR. If not, the low
1688 * two bits of ECR aren't writable, so we check by writing ECR and
1689 * reading it back to see if it's what we expect.
1690 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001691static int parport_ECR_present(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
1693 struct parport_pc_private *priv = pb->private_data;
1694 unsigned char r = 0xc;
1695
1696 outb (r, CONTROL (pb));
1697 if ((inb (ECONTROL (pb)) & 0x3) == (r & 0x3)) {
1698 outb (r ^ 0x2, CONTROL (pb)); /* Toggle bit 1 */
1699
1700 r = inb (CONTROL (pb));
1701 if ((inb (ECONTROL (pb)) & 0x2) == (r & 0x2))
1702 goto no_reg; /* Sure that no ECR register exists */
1703 }
1704
1705 if ((inb (ECONTROL (pb)) & 0x3 ) != 0x1)
1706 goto no_reg;
1707
1708 ECR_WRITE (pb, 0x34);
1709 if (inb (ECONTROL (pb)) != 0x35)
1710 goto no_reg;
1711
1712 priv->ecr = 1;
1713 outb (0xc, CONTROL (pb));
1714
1715 /* Go to mode 000 */
1716 frob_set_mode (pb, ECR_SPP);
1717
1718 return 1;
1719
1720 no_reg:
1721 outb (0xc, CONTROL (pb));
1722 return 0;
1723}
1724
1725#ifdef CONFIG_PARPORT_1284
1726/* Detect PS/2 support.
1727 *
1728 * Bit 5 (0x20) sets the PS/2 data direction; setting this high
1729 * allows us to read data from the data lines. In theory we would get back
1730 * 0xff but any peripheral attached to the port may drag some or all of the
1731 * lines down to zero. So if we get back anything that isn't the contents
1732 * of the data register we deem PS/2 support to be present.
1733 *
1734 * Some SPP ports have "half PS/2" ability - you can't turn off the line
1735 * drivers, but an external peripheral with sufficiently beefy drivers of
1736 * its own can overpower them and assert its own levels onto the bus, from
1737 * where they can then be read back as normal. Ports with this property
1738 * and the right type of device attached are likely to fail the SPP test,
1739 * (as they will appear to have stuck bits) and so the fact that they might
1740 * be misdetected here is rather academic.
1741 */
1742
Randy.Dunlap96766a32006-04-18 22:21:57 -07001743static int parport_PS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
1745 int ok = 0;
1746
1747 clear_epp_timeout(pb);
1748
1749 /* try to tri-state the buffer */
1750 parport_pc_data_reverse (pb);
1751
1752 parport_pc_write_data(pb, 0x55);
1753 if (parport_pc_read_data(pb) != 0x55) ok++;
1754
1755 parport_pc_write_data(pb, 0xaa);
1756 if (parport_pc_read_data(pb) != 0xaa) ok++;
1757
1758 /* cancel input mode */
1759 parport_pc_data_forward (pb);
1760
1761 if (ok) {
1762 pb->modes |= PARPORT_MODE_TRISTATE;
1763 } else {
1764 struct parport_pc_private *priv = pb->private_data;
1765 priv->ctr_writable &= ~0x20;
1766 }
1767
1768 return ok;
1769}
1770
1771#ifdef CONFIG_PARPORT_PC_FIFO
David Brownell55265b02008-02-13 15:03:21 -08001772static int parport_ECP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
1774 int i;
1775 int config, configb;
1776 int pword;
1777 struct parport_pc_private *priv = pb->private_data;
1778 /* Translate ECP intrLine to ISA irq value */
1779 static const int intrline[]= { 0, 7, 9, 10, 11, 14, 15, 5 };
1780
1781 /* If there is no ECR, we have no hope of supporting ECP. */
1782 if (!priv->ecr)
1783 return 0;
1784
1785 /* Find out FIFO depth */
1786 ECR_WRITE (pb, ECR_SPP << 5); /* Reset FIFO */
1787 ECR_WRITE (pb, ECR_TST << 5); /* TEST FIFO */
1788 for (i=0; i < 1024 && !(inb (ECONTROL (pb)) & 0x02); i++)
1789 outb (0xaa, FIFO (pb));
1790
1791 /*
1792 * Using LGS chipset it uses ECR register, but
1793 * it doesn't support ECP or FIFO MODE
1794 */
1795 if (i == 1024) {
1796 ECR_WRITE (pb, ECR_SPP << 5);
1797 return 0;
1798 }
1799
1800 priv->fifo_depth = i;
1801 if (verbose_probing)
1802 printk (KERN_DEBUG "0x%lx: FIFO is %d bytes\n", pb->base, i);
1803
1804 /* Find out writeIntrThreshold */
1805 frob_econtrol (pb, 1<<2, 1<<2);
1806 frob_econtrol (pb, 1<<2, 0);
1807 for (i = 1; i <= priv->fifo_depth; i++) {
1808 inb (FIFO (pb));
1809 udelay (50);
1810 if (inb (ECONTROL (pb)) & (1<<2))
1811 break;
1812 }
1813
1814 if (i <= priv->fifo_depth) {
1815 if (verbose_probing)
1816 printk (KERN_DEBUG "0x%lx: writeIntrThreshold is %d\n",
1817 pb->base, i);
1818 } else
1819 /* Number of bytes we know we can write if we get an
1820 interrupt. */
1821 i = 0;
1822
1823 priv->writeIntrThreshold = i;
1824
1825 /* Find out readIntrThreshold */
1826 frob_set_mode (pb, ECR_PS2); /* Reset FIFO and enable PS2 */
1827 parport_pc_data_reverse (pb); /* Must be in PS2 mode */
1828 frob_set_mode (pb, ECR_TST); /* Test FIFO */
1829 frob_econtrol (pb, 1<<2, 1<<2);
1830 frob_econtrol (pb, 1<<2, 0);
1831 for (i = 1; i <= priv->fifo_depth; i++) {
1832 outb (0xaa, FIFO (pb));
1833 if (inb (ECONTROL (pb)) & (1<<2))
1834 break;
1835 }
1836
1837 if (i <= priv->fifo_depth) {
1838 if (verbose_probing)
1839 printk (KERN_INFO "0x%lx: readIntrThreshold is %d\n",
1840 pb->base, i);
1841 } else
1842 /* Number of bytes we can read if we get an interrupt. */
1843 i = 0;
1844
1845 priv->readIntrThreshold = i;
1846
1847 ECR_WRITE (pb, ECR_SPP << 5); /* Reset FIFO */
1848 ECR_WRITE (pb, 0xf4); /* Configuration mode */
1849 config = inb (CONFIGA (pb));
1850 pword = (config >> 4) & 0x7;
1851 switch (pword) {
1852 case 0:
1853 pword = 2;
1854 printk (KERN_WARNING "0x%lx: Unsupported pword size!\n",
1855 pb->base);
1856 break;
1857 case 2:
1858 pword = 4;
1859 printk (KERN_WARNING "0x%lx: Unsupported pword size!\n",
1860 pb->base);
1861 break;
1862 default:
1863 printk (KERN_WARNING "0x%lx: Unknown implementation ID\n",
1864 pb->base);
1865 /* Assume 1 */
1866 case 1:
1867 pword = 1;
1868 }
1869 priv->pword = pword;
1870
1871 if (verbose_probing) {
1872 printk (KERN_DEBUG "0x%lx: PWord is %d bits\n", pb->base, 8 * pword);
1873
1874 printk (KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n", pb->base,
1875 config & 0x80 ? "Level" : "Pulses");
1876
1877 configb = inb (CONFIGB (pb));
1878 printk (KERN_DEBUG "0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
1879 pb->base, config, configb);
1880 printk (KERN_DEBUG "0x%lx: ECP settings irq=", pb->base);
1881 if ((configb >>3) & 0x07)
1882 printk("%d",intrline[(configb >>3) & 0x07]);
1883 else
1884 printk("<none or set by other means>");
1885 printk (" dma=");
1886 if( (configb & 0x03 ) == 0x00)
1887 printk("<none or set by other means>\n");
1888 else
1889 printk("%d\n",configb & 0x07);
1890 }
1891
1892 /* Go back to mode 000 */
1893 frob_set_mode (pb, ECR_SPP);
1894
1895 return 1;
1896}
1897#endif
1898
Randy.Dunlap96766a32006-04-18 22:21:57 -07001899static int parport_ECPPS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
1901 const struct parport_pc_private *priv = pb->private_data;
1902 int result;
1903 unsigned char oecr;
1904
1905 if (!priv->ecr)
1906 return 0;
1907
1908 oecr = inb (ECONTROL (pb));
1909 ECR_WRITE (pb, ECR_PS2 << 5);
1910 result = parport_PS2_supported(pb);
1911 ECR_WRITE (pb, oecr);
1912 return result;
1913}
1914
1915/* EPP mode detection */
1916
Randy.Dunlap96766a32006-04-18 22:21:57 -07001917static int parport_EPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
1919 const struct parport_pc_private *priv = pb->private_data;
1920
1921 /*
1922 * Theory:
1923 * Bit 0 of STR is the EPP timeout bit, this bit is 0
1924 * when EPP is possible and is set high when an EPP timeout
1925 * occurs (EPP uses the HALT line to stop the CPU while it does
1926 * the byte transfer, an EPP timeout occurs if the attached
1927 * device fails to respond after 10 micro seconds).
1928 *
1929 * This bit is cleared by either reading it (National Semi)
1930 * or writing a 1 to the bit (SMC, UMC, WinBond), others ???
1931 * This bit is always high in non EPP modes.
1932 */
1933
1934 /* If EPP timeout bit clear then EPP available */
1935 if (!clear_epp_timeout(pb)) {
1936 return 0; /* No way to clear timeout */
1937 }
1938
1939 /* Check for Intel bug. */
1940 if (priv->ecr) {
1941 unsigned char i;
1942 for (i = 0x00; i < 0x80; i += 0x20) {
1943 ECR_WRITE (pb, i);
1944 if (clear_epp_timeout (pb)) {
1945 /* Phony EPP in ECP. */
1946 return 0;
1947 }
1948 }
1949 }
1950
1951 pb->modes |= PARPORT_MODE_EPP;
1952
1953 /* Set up access functions to use EPP hardware. */
1954 pb->ops->epp_read_data = parport_pc_epp_read_data;
1955 pb->ops->epp_write_data = parport_pc_epp_write_data;
1956 pb->ops->epp_read_addr = parport_pc_epp_read_addr;
1957 pb->ops->epp_write_addr = parport_pc_epp_write_addr;
1958
1959 return 1;
1960}
1961
Randy.Dunlap96766a32006-04-18 22:21:57 -07001962static int parport_ECPEPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
1964 struct parport_pc_private *priv = pb->private_data;
1965 int result;
1966 unsigned char oecr;
1967
1968 if (!priv->ecr) {
1969 return 0;
1970 }
1971
1972 oecr = inb (ECONTROL (pb));
1973 /* Search for SMC style EPP+ECP mode */
1974 ECR_WRITE (pb, 0x80);
1975 outb (0x04, CONTROL (pb));
1976 result = parport_EPP_supported(pb);
1977
1978 ECR_WRITE (pb, oecr);
1979
1980 if (result) {
1981 /* Set up access functions to use ECP+EPP hardware. */
1982 pb->ops->epp_read_data = parport_pc_ecpepp_read_data;
1983 pb->ops->epp_write_data = parport_pc_ecpepp_write_data;
1984 pb->ops->epp_read_addr = parport_pc_ecpepp_read_addr;
1985 pb->ops->epp_write_addr = parport_pc_ecpepp_write_addr;
1986 }
1987
1988 return result;
1989}
1990
1991#else /* No IEEE 1284 support */
1992
1993/* Don't bother probing for modes we know we won't use. */
1994static int __devinit parport_PS2_supported(struct parport *pb) { return 0; }
1995#ifdef CONFIG_PARPORT_PC_FIFO
David Brownell55265b02008-02-13 15:03:21 -08001996static int parport_ECP_supported(struct parport *pb) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997#endif
1998static int __devinit parport_EPP_supported(struct parport *pb) { return 0; }
1999static int __devinit parport_ECPEPP_supported(struct parport *pb){return 0;}
2000static int __devinit parport_ECPPS2_supported(struct parport *pb){return 0;}
2001
2002#endif /* No IEEE 1284 support */
2003
2004/* --- IRQ detection -------------------------------------- */
2005
2006/* Only if supports ECP mode */
Randy Dunlap44389822006-12-06 20:38:33 -08002007static int programmable_irq_support(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 int irq, intrLine;
2010 unsigned char oecr = inb (ECONTROL (pb));
2011 static const int lookup[8] = {
2012 PARPORT_IRQ_NONE, 7, 9, 10, 11, 14, 15, 5
2013 };
2014
2015 ECR_WRITE (pb, ECR_CNF << 5); /* Configuration MODE */
2016
2017 intrLine = (inb (CONFIGB (pb)) >> 3) & 0x07;
2018 irq = lookup[intrLine];
2019
2020 ECR_WRITE (pb, oecr);
2021 return irq;
2022}
2023
Randy Dunlap44389822006-12-06 20:38:33 -08002024static int irq_probe_ECP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
2026 int i;
2027 unsigned long irqs;
2028
2029 irqs = probe_irq_on();
2030
2031 ECR_WRITE (pb, ECR_SPP << 5); /* Reset FIFO */
2032 ECR_WRITE (pb, (ECR_TST << 5) | 0x04);
2033 ECR_WRITE (pb, ECR_TST << 5);
2034
2035 /* If Full FIFO sure that writeIntrThreshold is generated */
2036 for (i=0; i < 1024 && !(inb (ECONTROL (pb)) & 0x02) ; i++)
2037 outb (0xaa, FIFO (pb));
2038
2039 pb->irq = probe_irq_off(irqs);
2040 ECR_WRITE (pb, ECR_SPP << 5);
2041
2042 if (pb->irq <= 0)
2043 pb->irq = PARPORT_IRQ_NONE;
2044
2045 return pb->irq;
2046}
2047
2048/*
2049 * This detection seems that only works in National Semiconductors
2050 * This doesn't work in SMC, LGS, and Winbond
2051 */
Randy Dunlap44389822006-12-06 20:38:33 -08002052static int irq_probe_EPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
2054#ifndef ADVANCED_DETECT
2055 return PARPORT_IRQ_NONE;
2056#else
2057 int irqs;
2058 unsigned char oecr;
2059
2060 if (pb->modes & PARPORT_MODE_PCECR)
2061 oecr = inb (ECONTROL (pb));
2062
2063 irqs = probe_irq_on();
2064
2065 if (pb->modes & PARPORT_MODE_PCECR)
2066 frob_econtrol (pb, 0x10, 0x10);
2067
2068 clear_epp_timeout(pb);
2069 parport_pc_frob_control (pb, 0x20, 0x20);
2070 parport_pc_frob_control (pb, 0x10, 0x10);
2071 clear_epp_timeout(pb);
2072
2073 /* Device isn't expecting an EPP read
2074 * and generates an IRQ.
2075 */
2076 parport_pc_read_epp(pb);
2077 udelay(20);
2078
2079 pb->irq = probe_irq_off (irqs);
2080 if (pb->modes & PARPORT_MODE_PCECR)
2081 ECR_WRITE (pb, oecr);
2082 parport_pc_write_control(pb, 0xc);
2083
2084 if (pb->irq <= 0)
2085 pb->irq = PARPORT_IRQ_NONE;
2086
2087 return pb->irq;
2088#endif /* Advanced detection */
2089}
2090
Randy Dunlap44389822006-12-06 20:38:33 -08002091static int irq_probe_SPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
2093 /* Don't even try to do this. */
2094 return PARPORT_IRQ_NONE;
2095}
2096
2097/* We will attempt to share interrupt requests since other devices
2098 * such as sound cards and network cards seem to like using the
2099 * printer IRQs.
2100 *
2101 * When ECP is available we can autoprobe for IRQs.
2102 * NOTE: If we can autoprobe it, we can register the IRQ.
2103 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07002104static int parport_irq_probe(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 struct parport_pc_private *priv = pb->private_data;
2107
2108 if (priv->ecr) {
2109 pb->irq = programmable_irq_support(pb);
2110
2111 if (pb->irq == PARPORT_IRQ_NONE)
2112 pb->irq = irq_probe_ECP(pb);
2113 }
2114
2115 if ((pb->irq == PARPORT_IRQ_NONE) && priv->ecr &&
2116 (pb->modes & PARPORT_MODE_EPP))
2117 pb->irq = irq_probe_EPP(pb);
2118
2119 clear_epp_timeout(pb);
2120
2121 if (pb->irq == PARPORT_IRQ_NONE && (pb->modes & PARPORT_MODE_EPP))
2122 pb->irq = irq_probe_EPP(pb);
2123
2124 clear_epp_timeout(pb);
2125
2126 if (pb->irq == PARPORT_IRQ_NONE)
2127 pb->irq = irq_probe_SPP(pb);
2128
2129 if (pb->irq == PARPORT_IRQ_NONE)
2130 pb->irq = get_superio_irq(pb);
2131
2132 return pb->irq;
2133}
2134
2135/* --- DMA detection -------------------------------------- */
2136
2137/* Only if chipset conforms to ECP ISA Interface Standard */
Jean Delvare0bb92e62007-02-20 13:58:18 -08002138static int programmable_dma_support (struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 unsigned char oecr = inb (ECONTROL (p));
2141 int dma;
2142
2143 frob_set_mode (p, ECR_CNF);
2144
2145 dma = inb (CONFIGB(p)) & 0x07;
2146 /* 000: Indicates jumpered 8-bit DMA if read-only.
2147 100: Indicates jumpered 16-bit DMA if read-only. */
2148 if ((dma & 0x03) == 0)
2149 dma = PARPORT_DMA_NONE;
2150
2151 ECR_WRITE (p, oecr);
2152 return dma;
2153}
2154
Jean Delvare0bb92e62007-02-20 13:58:18 -08002155static int parport_dma_probe (struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 const struct parport_pc_private *priv = p->private_data;
2158 if (priv->ecr)
2159 p->dma = programmable_dma_support(p); /* ask ECP chipset first */
2160 if (p->dma == PARPORT_DMA_NONE) {
2161 /* ask known Super-IO chips proper, although these
2162 claim ECP compatible, some don't report their DMA
2163 conforming to ECP standards */
2164 p->dma = get_superio_dma(p);
2165 }
2166
2167 return p->dma;
2168}
2169
2170/* --- Initialisation code -------------------------------- */
2171
2172static LIST_HEAD(ports_list);
2173static DEFINE_SPINLOCK(ports_lock);
2174
Alan Cox51dcdfe2009-04-07 15:30:57 +01002175struct parport *parport_pc_probe_port(unsigned long int base,
2176 unsigned long int base_hi,
2177 int irq, int dma,
2178 struct device *dev,
2179 int irqflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
2181 struct parport_pc_private *priv;
2182 struct parport_operations *ops;
2183 struct parport *p;
2184 int probedirq = PARPORT_IRQ_NONE;
2185 struct resource *base_res;
2186 struct resource *ECR_res = NULL;
2187 struct resource *EPP_res = NULL;
Jean Delvarea7d801a2007-05-08 00:27:40 -07002188 struct platform_device *pdev = NULL;
2189
2190 if (!dev) {
2191 /* We need a physical device to attach to, but none was
2192 * provided. Create our own. */
2193 pdev = platform_device_register_simple("parport_pc",
2194 base, NULL, 0);
2195 if (IS_ERR(pdev))
2196 return NULL;
2197 dev = &pdev->dev;
2198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Alan Cox51dcdfe2009-04-07 15:30:57 +01002200 ops = kmalloc(sizeof(struct parport_operations), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (!ops)
2202 goto out1;
2203
Alan Cox51dcdfe2009-04-07 15:30:57 +01002204 priv = kmalloc(sizeof(struct parport_pc_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (!priv)
2206 goto out2;
2207
2208 /* a misnomer, actually - it's allocate and reserve parport number */
2209 p = parport_register_port(base, irq, dma, ops);
2210 if (!p)
2211 goto out3;
2212
2213 base_res = request_region(base, 3, p->name);
2214 if (!base_res)
2215 goto out4;
2216
2217 memcpy(ops, &parport_pc_ops, sizeof (struct parport_operations));
2218 priv->ctr = 0xc;
2219 priv->ctr_writable = ~0x10;
2220 priv->ecr = 0;
2221 priv->fifo_depth = 0;
2222 priv->dma_buf = NULL;
2223 priv->dma_handle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 INIT_LIST_HEAD(&priv->list);
2225 priv->port = p;
David Brownellc15a3832007-05-08 00:27:35 -07002226
2227 p->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 p->base_hi = base_hi;
2229 p->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_SAFEININT;
2230 p->private_data = priv;
2231
2232 if (base_hi) {
2233 ECR_res = request_region(base_hi, 3, p->name);
2234 if (ECR_res)
2235 parport_ECR_present(p);
2236 }
2237
2238 if (base != 0x3bc) {
2239 EPP_res = request_region(base+0x3, 5, p->name);
2240 if (EPP_res)
2241 if (!parport_EPP_supported(p))
2242 parport_ECPEPP_supported(p);
2243 }
2244 if (!parport_SPP_supported (p))
2245 /* No port. */
2246 goto out5;
2247 if (priv->ecr)
2248 parport_ECPPS2_supported(p);
2249 else
2250 parport_PS2_supported(p);
2251
2252 p->size = (p->modes & PARPORT_MODE_EPP)?8:3;
2253
2254 printk(KERN_INFO "%s: PC-style at 0x%lx", p->name, p->base);
2255 if (p->base_hi && priv->ecr)
2256 printk(" (0x%lx)", p->base_hi);
2257 if (p->irq == PARPORT_IRQ_AUTO) {
2258 p->irq = PARPORT_IRQ_NONE;
2259 parport_irq_probe(p);
2260 } else if (p->irq == PARPORT_IRQ_PROBEONLY) {
2261 p->irq = PARPORT_IRQ_NONE;
2262 parport_irq_probe(p);
2263 probedirq = p->irq;
2264 p->irq = PARPORT_IRQ_NONE;
2265 }
2266 if (p->irq != PARPORT_IRQ_NONE) {
2267 printk(", irq %d", p->irq);
2268 priv->ctr_writable |= 0x10;
2269
2270 if (p->dma == PARPORT_DMA_AUTO) {
2271 p->dma = PARPORT_DMA_NONE;
2272 parport_dma_probe(p);
2273 }
2274 }
2275 if (p->dma == PARPORT_DMA_AUTO) /* To use DMA, giving the irq
2276 is mandatory (see above) */
2277 p->dma = PARPORT_DMA_NONE;
2278
2279#ifdef CONFIG_PARPORT_PC_FIFO
2280 if (parport_ECP_supported(p) &&
2281 p->dma != PARPORT_DMA_NOFIFO &&
2282 priv->fifo_depth > 0 && p->irq != PARPORT_IRQ_NONE) {
2283 p->modes |= PARPORT_MODE_ECP | PARPORT_MODE_COMPAT;
2284 p->ops->compat_write_data = parport_pc_compat_write_block_pio;
2285#ifdef CONFIG_PARPORT_1284
2286 p->ops->ecp_write_data = parport_pc_ecp_write_block_pio;
2287 /* currently broken, but working on it.. (FB) */
2288 /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */
2289#endif /* IEEE 1284 support */
2290 if (p->dma != PARPORT_DMA_NONE) {
2291 printk(", dma %d", p->dma);
2292 p->modes |= PARPORT_MODE_DMA;
2293 }
2294 else printk(", using FIFO");
2295 }
2296 else
2297 /* We can't use the DMA channel after all. */
2298 p->dma = PARPORT_DMA_NONE;
2299#endif /* Allowed to use FIFO/DMA */
2300
2301 printk(" [");
2302#define printmode(x) {if(p->modes&PARPORT_MODE_##x){printk("%s%s",f?",":"",#x);f++;}}
2303 {
2304 int f = 0;
2305 printmode(PCSPP);
2306 printmode(TRISTATE);
2307 printmode(COMPAT)
2308 printmode(EPP);
2309 printmode(ECP);
2310 printmode(DMA);
2311 }
2312#undef printmode
2313#ifndef CONFIG_PARPORT_1284
2314 printk ("(,...)");
2315#endif /* CONFIG_PARPORT_1284 */
2316 printk("]\n");
2317 if (probedirq != PARPORT_IRQ_NONE)
2318 printk(KERN_INFO "%s: irq %d detected\n", p->name, probedirq);
2319
2320 /* If No ECP release the ports grabbed above. */
2321 if (ECR_res && (p->modes & PARPORT_MODE_ECP) == 0) {
2322 release_region(base_hi, 3);
2323 ECR_res = NULL;
2324 }
2325 /* Likewise for EEP ports */
2326 if (EPP_res && (p->modes & PARPORT_MODE_EPP) == 0) {
2327 release_region(base+3, 5);
2328 EPP_res = NULL;
2329 }
2330 if (p->irq != PARPORT_IRQ_NONE) {
Alan Cox51dcdfe2009-04-07 15:30:57 +01002331 if (request_irq(p->irq, parport_irq_handler,
2332 irqflags, p->name, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 printk (KERN_WARNING "%s: irq %d in use, "
2334 "resorting to polled operation\n",
2335 p->name, p->irq);
2336 p->irq = PARPORT_IRQ_NONE;
2337 p->dma = PARPORT_DMA_NONE;
2338 }
2339
2340#ifdef CONFIG_PARPORT_PC_FIFO
Al Viro7fbacd52005-05-04 05:39:32 +01002341#ifdef HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 if (p->dma != PARPORT_DMA_NONE) {
2343 if (request_dma (p->dma, p->name)) {
2344 printk (KERN_WARNING "%s: dma %d in use, "
2345 "resorting to PIO operation\n",
2346 p->name, p->dma);
2347 p->dma = PARPORT_DMA_NONE;
2348 } else {
2349 priv->dma_buf =
David Brownellc15a3832007-05-08 00:27:35 -07002350 dma_alloc_coherent(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 PAGE_SIZE,
David Brownellc15a3832007-05-08 00:27:35 -07002352 &priv->dma_handle,
2353 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (! priv->dma_buf) {
2355 printk (KERN_WARNING "%s: "
2356 "cannot get buffer for DMA, "
2357 "resorting to PIO operation\n",
2358 p->name);
2359 free_dma(p->dma);
2360 p->dma = PARPORT_DMA_NONE;
2361 }
2362 }
2363 }
Al Viro7fbacd52005-05-04 05:39:32 +01002364#endif
2365#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367
2368 /* Done probing. Now put the port into a sensible start-up state. */
2369 if (priv->ecr)
2370 /*
2371 * Put the ECP detected port in PS2 mode.
2372 * Do this also for ports that have ECR but don't do ECP.
2373 */
2374 ECR_WRITE (p, 0x34);
2375
2376 parport_pc_write_data(p, 0);
2377 parport_pc_data_forward (p);
2378
2379 /* Now that we've told the sharing engine about the port, and
2380 found out its characteristics, let the high-level drivers
2381 know about it. */
2382 spin_lock(&ports_lock);
2383 list_add(&priv->list, &ports_list);
2384 spin_unlock(&ports_lock);
2385 parport_announce_port (p);
2386
2387 return p;
2388
2389out5:
2390 if (ECR_res)
2391 release_region(base_hi, 3);
2392 if (EPP_res)
2393 release_region(base+0x3, 5);
2394 release_region(base, 3);
2395out4:
2396 parport_put_port(p);
2397out3:
2398 kfree (priv);
2399out2:
2400 kfree (ops);
2401out1:
Jean Delvarea7d801a2007-05-08 00:27:40 -07002402 if (pdev)
2403 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 return NULL;
2405}
2406
2407EXPORT_SYMBOL (parport_pc_probe_port);
2408
2409void parport_pc_unregister_port (struct parport *p)
2410{
2411 struct parport_pc_private *priv = p->private_data;
2412 struct parport_operations *ops = p->ops;
2413
2414 parport_remove_port(p);
2415 spin_lock(&ports_lock);
2416 list_del_init(&priv->list);
2417 spin_unlock(&ports_lock);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002418#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 if (p->dma != PARPORT_DMA_NONE)
2420 free_dma(p->dma);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002421#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 if (p->irq != PARPORT_IRQ_NONE)
2423 free_irq(p->irq, p);
2424 release_region(p->base, 3);
2425 if (p->size > 3)
2426 release_region(p->base + 3, p->size - 3);
2427 if (p->modes & PARPORT_MODE_ECP)
2428 release_region(p->base_hi, 3);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002429#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 if (priv->dma_buf)
David Brownellc15a3832007-05-08 00:27:35 -07002431 dma_free_coherent(p->physport->dev, PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 priv->dma_buf,
2433 priv->dma_handle);
Al Viro7fbacd52005-05-04 05:39:32 +01002434#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 kfree (p->private_data);
2436 parport_put_port(p);
2437 kfree (ops); /* hope no-one cached it */
2438}
2439
2440EXPORT_SYMBOL (parport_pc_unregister_port);
2441
2442#ifdef CONFIG_PCI
2443
2444/* ITE support maintained by Rich Liu <richliu@poorman.org> */
2445static int __devinit sio_ite_8872_probe (struct pci_dev *pdev, int autoirq,
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002446 int autodma,
2447 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
2449 short inta_addr[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 };
2450 struct resource *base_res;
2451 u32 ite8872set;
2452 u32 ite8872_lpt, ite8872_lpthi;
2453 u8 ite8872_irq, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 int irq;
2455 int i;
2456
2457 DPRINTK (KERN_DEBUG "sio_ite_8872_probe()\n");
2458
2459 // make sure which one chip
2460 for(i = 0; i < 5; i++) {
Niels de Vose7c310c2007-07-15 23:41:35 -07002461 base_res = request_region(inta_addr[i], 32, "it887x");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 if (base_res) {
2463 int test;
2464 pci_write_config_dword (pdev, 0x60,
Niels de Vose7c310c2007-07-15 23:41:35 -07002465 0xe5000000 | inta_addr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 pci_write_config_dword (pdev, 0x78,
2467 0x00000000 | inta_addr[i]);
2468 test = inb (inta_addr[i]);
2469 if (test != 0xff) break;
2470 release_region(inta_addr[i], 0x8);
2471 }
2472 }
2473 if(i >= 5) {
2474 printk (KERN_INFO "parport_pc: cannot find ITE8872 INTA\n");
2475 return 0;
2476 }
2477
2478 type = inb (inta_addr[i] + 0x18);
2479 type &= 0x0f;
2480
2481 switch (type) {
2482 case 0x2:
2483 printk (KERN_INFO "parport_pc: ITE8871 found (1P)\n");
2484 ite8872set = 0x64200000;
2485 break;
2486 case 0xa:
2487 printk (KERN_INFO "parport_pc: ITE8875 found (1P)\n");
2488 ite8872set = 0x64200000;
2489 break;
2490 case 0xe:
2491 printk (KERN_INFO "parport_pc: ITE8872 found (2S1P)\n");
2492 ite8872set = 0x64e00000;
2493 break;
2494 case 0x6:
2495 printk (KERN_INFO "parport_pc: ITE8873 found (1S)\n");
2496 return 0;
2497 case 0x8:
2498 DPRINTK (KERN_DEBUG "parport_pc: ITE8874 found (2S)\n");
2499 return 0;
2500 default:
2501 printk (KERN_INFO "parport_pc: unknown ITE887x\n");
2502 printk (KERN_INFO "parport_pc: please mail 'lspci -nvv' "
2503 "output to Rich.Liu@ite.com.tw\n");
2504 return 0;
2505 }
2506
2507 pci_read_config_byte (pdev, 0x3c, &ite8872_irq);
2508 pci_read_config_dword (pdev, 0x1c, &ite8872_lpt);
2509 ite8872_lpt &= 0x0000ff00;
2510 pci_read_config_dword (pdev, 0x20, &ite8872_lpthi);
2511 ite8872_lpthi &= 0x0000ff00;
2512 pci_write_config_dword (pdev, 0x6c, 0xe3000000 | ite8872_lpt);
2513 pci_write_config_dword (pdev, 0x70, 0xe3000000 | ite8872_lpthi);
2514 pci_write_config_dword (pdev, 0x80, (ite8872_lpthi<<16) | ite8872_lpt);
2515 // SET SPP&EPP , Parallel Port NO DMA , Enable All Function
2516 // SET Parallel IRQ
2517 pci_write_config_dword (pdev, 0x9c,
2518 ite8872set | (ite8872_irq * 0x11111));
2519
2520 DPRINTK (KERN_DEBUG "ITE887x: The IRQ is %d.\n", ite8872_irq);
2521 DPRINTK (KERN_DEBUG "ITE887x: The PARALLEL I/O port is 0x%x.\n",
2522 ite8872_lpt);
2523 DPRINTK (KERN_DEBUG "ITE887x: The PARALLEL I/O porthi is 0x%x.\n",
2524 ite8872_lpthi);
2525
2526 /* Let the user (or defaults) steer us away from interrupts */
2527 irq = ite8872_irq;
2528 if (autoirq != PARPORT_IRQ_AUTO)
2529 irq = PARPORT_IRQ_NONE;
2530
2531 /*
2532 * Release the resource so that parport_pc_probe_port can get it.
2533 */
2534 release_resource(base_res);
2535 if (parport_pc_probe_port (ite8872_lpt, ite8872_lpthi,
Alan Cox51dcdfe2009-04-07 15:30:57 +01002536 irq, PARPORT_DMA_NONE, &pdev->dev, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 printk (KERN_INFO
2538 "parport_pc: ITE 8872 parallel port: io=0x%X",
2539 ite8872_lpt);
2540 if (irq != PARPORT_IRQ_NONE)
2541 printk (", irq=%d", irq);
2542 printk ("\n");
2543 return 1;
2544 }
2545
2546 return 0;
2547}
2548
2549/* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru>
2550 based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */
2551static int __devinitdata parport_init_mode = 0;
2552
2553/* Data for two known VIA chips */
2554static struct parport_pc_via_data via_686a_data __devinitdata = {
2555 0x51,
2556 0x50,
2557 0x85,
2558 0x02,
2559 0xE2,
2560 0xF0,
2561 0xE6
2562};
2563static struct parport_pc_via_data via_8231_data __devinitdata = {
2564 0x45,
2565 0x44,
2566 0x50,
2567 0x04,
2568 0xF2,
2569 0xFA,
2570 0xF6
2571};
2572
2573static int __devinit sio_via_probe (struct pci_dev *pdev, int autoirq,
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002574 int autodma,
2575 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576{
2577 u8 tmp, tmp2, siofunc;
2578 u8 ppcontrol = 0;
2579 int dma, irq;
2580 unsigned port1, port2;
2581 unsigned have_epp = 0;
2582
2583 printk(KERN_DEBUG "parport_pc: VIA 686A/8231 detected\n");
2584
2585 switch(parport_init_mode)
2586 {
2587 case 1:
2588 printk(KERN_DEBUG "parport_pc: setting SPP mode\n");
2589 siofunc = VIA_FUNCTION_PARPORT_SPP;
2590 break;
2591 case 2:
2592 printk(KERN_DEBUG "parport_pc: setting PS/2 mode\n");
2593 siofunc = VIA_FUNCTION_PARPORT_SPP;
2594 ppcontrol = VIA_PARPORT_BIDIR;
2595 break;
2596 case 3:
2597 printk(KERN_DEBUG "parport_pc: setting EPP mode\n");
2598 siofunc = VIA_FUNCTION_PARPORT_EPP;
2599 ppcontrol = VIA_PARPORT_BIDIR;
2600 have_epp = 1;
2601 break;
2602 case 4:
2603 printk(KERN_DEBUG "parport_pc: setting ECP mode\n");
2604 siofunc = VIA_FUNCTION_PARPORT_ECP;
2605 ppcontrol = VIA_PARPORT_BIDIR;
2606 break;
2607 case 5:
2608 printk(KERN_DEBUG "parport_pc: setting EPP+ECP mode\n");
2609 siofunc = VIA_FUNCTION_PARPORT_ECP;
2610 ppcontrol = VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP;
2611 have_epp = 1;
2612 break;
2613 default:
2614 printk(KERN_DEBUG "parport_pc: probing current configuration\n");
2615 siofunc = VIA_FUNCTION_PROBE;
2616 break;
2617 }
2618 /*
2619 * unlock super i/o configuration
2620 */
2621 pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
2622 tmp |= via->via_pci_superio_config_data;
2623 pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
2624
2625 /* Bits 1-0: Parallel Port Mode / Enable */
2626 outb(via->viacfg_function, VIA_CONFIG_INDEX);
2627 tmp = inb (VIA_CONFIG_DATA);
2628 /* Bit 5: EPP+ECP enable; bit 7: PS/2 bidirectional port enable */
2629 outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
2630 tmp2 = inb (VIA_CONFIG_DATA);
2631 if (siofunc == VIA_FUNCTION_PROBE)
2632 {
2633 siofunc = tmp & VIA_FUNCTION_PARPORT_DISABLE;
2634 ppcontrol = tmp2;
2635 }
2636 else
2637 {
2638 tmp &= ~VIA_FUNCTION_PARPORT_DISABLE;
2639 tmp |= siofunc;
2640 outb(via->viacfg_function, VIA_CONFIG_INDEX);
2641 outb(tmp, VIA_CONFIG_DATA);
2642 tmp2 &= ~(VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP);
2643 tmp2 |= ppcontrol;
2644 outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
2645 outb(tmp2, VIA_CONFIG_DATA);
2646 }
2647
2648 /* Parallel Port I/O Base Address, bits 9-2 */
2649 outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
2650 port1 = inb(VIA_CONFIG_DATA) << 2;
2651
2652 printk (KERN_DEBUG "parport_pc: Current parallel port base: 0x%X\n",port1);
2653 if ((port1 == 0x3BC) && have_epp)
2654 {
2655 outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
2656 outb((0x378 >> 2), VIA_CONFIG_DATA);
2657 printk(KERN_DEBUG "parport_pc: Parallel port base changed to 0x378\n");
2658 port1 = 0x378;
2659 }
2660
2661 /*
2662 * lock super i/o configuration
2663 */
2664 pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
2665 tmp &= ~via->via_pci_superio_config_data;
2666 pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
2667
2668 if (siofunc == VIA_FUNCTION_PARPORT_DISABLE) {
2669 printk(KERN_INFO "parport_pc: VIA parallel port disabled in BIOS\n");
2670 return 0;
2671 }
2672
2673 /* Bits 7-4: PnP Routing for Parallel Port IRQ */
2674 pci_read_config_byte(pdev, via->via_pci_parport_irq_reg, &tmp);
2675 irq = ((tmp & VIA_IRQCONTROL_PARALLEL) >> 4);
2676
2677 if (siofunc == VIA_FUNCTION_PARPORT_ECP)
2678 {
2679 /* Bits 3-2: PnP Routing for Parallel Port DMA */
2680 pci_read_config_byte(pdev, via->via_pci_parport_dma_reg, &tmp);
2681 dma = ((tmp & VIA_DMACONTROL_PARALLEL) >> 2);
2682 }
2683 else
2684 /* if ECP not enabled, DMA is not enabled, assumed bogus 'dma' value */
2685 dma = PARPORT_DMA_NONE;
2686
2687 /* Let the user (or defaults) steer us away from interrupts and DMA */
2688 if (autoirq == PARPORT_IRQ_NONE) {
2689 irq = PARPORT_IRQ_NONE;
2690 dma = PARPORT_DMA_NONE;
2691 }
2692 if (autodma == PARPORT_DMA_NONE)
2693 dma = PARPORT_DMA_NONE;
2694
2695 switch (port1) {
2696 case 0x3bc: port2 = 0x7bc; break;
2697 case 0x378: port2 = 0x778; break;
2698 case 0x278: port2 = 0x678; break;
2699 default:
2700 printk(KERN_INFO "parport_pc: Weird VIA parport base 0x%X, ignoring\n",
2701 port1);
2702 return 0;
2703 }
2704
2705 /* filter bogus IRQs */
2706 switch (irq) {
2707 case 0:
2708 case 2:
2709 case 8:
2710 case 13:
2711 irq = PARPORT_IRQ_NONE;
2712 break;
2713
2714 default: /* do nothing */
2715 break;
2716 }
2717
2718 /* finally, do the probe with values obtained */
Alan Cox51dcdfe2009-04-07 15:30:57 +01002719 if (parport_pc_probe_port (port1, port2, irq, dma, &pdev->dev, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 printk (KERN_INFO
2721 "parport_pc: VIA parallel port: io=0x%X", port1);
2722 if (irq != PARPORT_IRQ_NONE)
2723 printk (", irq=%d", irq);
2724 if (dma != PARPORT_DMA_NONE)
2725 printk (", dma=%d", dma);
2726 printk ("\n");
2727 return 1;
2728 }
2729
2730 printk(KERN_WARNING "parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n",
2731 port1, irq, dma);
2732 return 0;
2733}
2734
2735
2736enum parport_pc_sio_types {
2737 sio_via_686a = 0, /* Via VT82C686A motherboard Super I/O */
2738 sio_via_8231, /* Via VT8231 south bridge integrated Super IO */
2739 sio_ite_8872,
2740 last_sio
2741};
2742
2743/* each element directly indexed from enum list, above */
2744static struct parport_pc_superio {
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002745 int (*probe) (struct pci_dev *pdev, int autoirq, int autodma,
2746 const struct parport_pc_via_data *via);
2747 const struct parport_pc_via_data *via;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748} parport_pc_superio_info[] __devinitdata = {
2749 { sio_via_probe, &via_686a_data, },
2750 { sio_via_probe, &via_8231_data, },
2751 { sio_ite_8872_probe, NULL, },
2752};
2753
2754enum parport_pc_pci_cards {
2755 siig_1p_10x = last_sio,
2756 siig_2p_10x,
2757 siig_1p_20x,
2758 siig_2p_20x,
2759 lava_parallel,
2760 lava_parallel_dual_a,
2761 lava_parallel_dual_b,
2762 boca_ioppar,
2763 plx_9050,
2764 timedia_4078a,
2765 timedia_4079h,
2766 timedia_4085h,
2767 timedia_4088a,
2768 timedia_4089a,
2769 timedia_4095a,
2770 timedia_4096a,
2771 timedia_4078u,
2772 timedia_4079a,
2773 timedia_4085u,
2774 timedia_4079r,
2775 timedia_4079s,
2776 timedia_4079d,
2777 timedia_4079e,
2778 timedia_4079f,
2779 timedia_9079a,
2780 timedia_9079b,
2781 timedia_9079c,
2782 timedia_4006a,
2783 timedia_4014,
2784 timedia_4008a,
2785 timedia_4018,
2786 timedia_9018a,
2787 syba_2p_epp,
2788 syba_1p_ecp,
2789 titan_010l,
Maximilian Attems85747f02005-09-06 15:17:21 -07002790 titan_1284p1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 titan_1284p2,
2792 avlab_1p,
2793 avlab_2p,
Ryan Underwoodc140e112006-12-06 20:36:38 -08002794 oxsemi_952,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 oxsemi_954,
2796 oxsemi_840,
Lee Howard7106b4e2008-10-21 13:48:58 +01002797 oxsemi_pcie_pport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 aks_0100,
2799 mobility_pp,
2800 netmos_9705,
2801 netmos_9715,
2802 netmos_9755,
2803 netmos_9805,
2804 netmos_9815,
Luís P Mendesdc999152008-02-06 01:37:43 -08002805 quatech_sppxp100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806};
2807
2808
2809/* each element directly indexed from enum list, above
2810 * (but offset by last_sio) */
2811static struct parport_pc_pci {
2812 int numports;
2813 struct { /* BAR (base address registers) numbers in the config
2814 space header */
2815 int lo;
2816 int hi; /* -1 if not there, >6 for offset-method (max
2817 BAR is 6) */
2818 } addr[4];
2819
2820 /* If set, this is called immediately after pci_enable_device.
2821 * If it returns non-zero, no probing will take place and the
2822 * ports will not be used. */
2823 int (*preinit_hook) (struct pci_dev *pdev, int autoirq, int autodma);
2824
2825 /* If set, this is called after probing for ports. If 'failed'
2826 * is non-zero we couldn't use any of the ports. */
2827 void (*postinit_hook) (struct pci_dev *pdev, int failed);
Randy.Dunlap96766a32006-04-18 22:21:57 -07002828} cards[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 /* siig_1p_10x */ { 1, { { 2, 3 }, } },
2830 /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } },
2831 /* siig_1p_20x */ { 1, { { 0, 1 }, } },
2832 /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } },
2833 /* lava_parallel */ { 1, { { 0, -1 }, } },
2834 /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } },
2835 /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } },
2836 /* boca_ioppar */ { 1, { { 0, -1 }, } },
2837 /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } },
2838 /* timedia_4078a */ { 1, { { 2, -1 }, } },
2839 /* timedia_4079h */ { 1, { { 2, 3 }, } },
2840 /* timedia_4085h */ { 2, { { 2, -1 }, { 4, -1 }, } },
2841 /* timedia_4088a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2842 /* timedia_4089a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2843 /* timedia_4095a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2844 /* timedia_4096a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2845 /* timedia_4078u */ { 1, { { 2, -1 }, } },
2846 /* timedia_4079a */ { 1, { { 2, 3 }, } },
2847 /* timedia_4085u */ { 2, { { 2, -1 }, { 4, -1 }, } },
2848 /* timedia_4079r */ { 1, { { 2, 3 }, } },
2849 /* timedia_4079s */ { 1, { { 2, 3 }, } },
2850 /* timedia_4079d */ { 1, { { 2, 3 }, } },
2851 /* timedia_4079e */ { 1, { { 2, 3 }, } },
2852 /* timedia_4079f */ { 1, { { 2, 3 }, } },
2853 /* timedia_9079a */ { 1, { { 2, 3 }, } },
2854 /* timedia_9079b */ { 1, { { 2, 3 }, } },
2855 /* timedia_9079c */ { 1, { { 2, 3 }, } },
2856 /* timedia_4006a */ { 1, { { 0, -1 }, } },
2857 /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } },
2858 /* timedia_4008a */ { 1, { { 0, 1 }, } },
2859 /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2860 /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } },
2861 /* SYBA uses fixed offsets in
2862 a 1K io window */
2863 /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } },
2864 /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } },
2865 /* titan_010l */ { 1, { { 3, -1 }, } },
Maximilian Attems85747f02005-09-06 15:17:21 -07002866 /* titan_1284p1 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 /* titan_1284p2 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2868 /* avlab_1p */ { 1, { { 0, 1}, } },
2869 /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} },
2870 /* The Oxford Semi cards are unusual: 954 doesn't support ECP,
2871 * and 840 locks up if you write 1 to bit 2! */
Ryan Underwoodc140e112006-12-06 20:36:38 -08002872 /* oxsemi_952 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 /* oxsemi_954 */ { 1, { { 0, -1 }, } },
Bernhard Walleadbd3212008-07-25 19:44:56 -07002874 /* oxsemi_840 */ { 1, { { 0, 1 }, } },
Lee Howard7106b4e2008-10-21 13:48:58 +01002875 /* oxsemi_pcie_pport */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 /* aks_0100 */ { 1, { { 0, -1 }, } },
2877 /* mobility_pp */ { 1, { { 0, 1 }, } },
2878 /* netmos_9705 */ { 1, { { 0, -1 }, } }, /* untested */
2879 /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} }, /* untested */
2880 /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} }, /* untested */
2881 /* netmos_9805 */ { 1, { { 0, -1 }, } }, /* untested */
2882 /* netmos_9815 */ { 2, { { 0, -1 }, { 2, -1 }, } }, /* untested */
Luís P Mendesdc999152008-02-06 01:37:43 -08002883 /* quatech_sppxp100 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884};
2885
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002886static const struct pci_device_id parport_pc_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 /* Super-IO onboard chips */
2888 { 0x1106, 0x0686, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_686a },
2889 { 0x1106, 0x8231, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_8231 },
2890 { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8872,
2891 PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_ite_8872 },
2892
2893 /* PCI cards */
2894 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_10x,
2895 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_10x },
2896 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_10x,
2897 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_10x },
2898 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_20x,
2899 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_20x },
2900 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_20x,
2901 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_20x },
2902 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PARALLEL,
2903 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel },
2904 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_A,
2905 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_a },
2906 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_B,
2907 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_b },
2908 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR,
2909 PCI_ANY_ID, PCI_ANY_ID, 0, 0, boca_ioppar },
2910 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
2911 PCI_SUBVENDOR_ID_EXSYS, PCI_SUBDEVICE_ID_EXSYS_4014, 0,0, plx_9050 },
2912 /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
2913 { 0x1409, 0x7168, 0x1409, 0x4078, 0, 0, timedia_4078a },
2914 { 0x1409, 0x7168, 0x1409, 0x4079, 0, 0, timedia_4079h },
2915 { 0x1409, 0x7168, 0x1409, 0x4085, 0, 0, timedia_4085h },
2916 { 0x1409, 0x7168, 0x1409, 0x4088, 0, 0, timedia_4088a },
2917 { 0x1409, 0x7168, 0x1409, 0x4089, 0, 0, timedia_4089a },
2918 { 0x1409, 0x7168, 0x1409, 0x4095, 0, 0, timedia_4095a },
2919 { 0x1409, 0x7168, 0x1409, 0x4096, 0, 0, timedia_4096a },
2920 { 0x1409, 0x7168, 0x1409, 0x5078, 0, 0, timedia_4078u },
2921 { 0x1409, 0x7168, 0x1409, 0x5079, 0, 0, timedia_4079a },
2922 { 0x1409, 0x7168, 0x1409, 0x5085, 0, 0, timedia_4085u },
2923 { 0x1409, 0x7168, 0x1409, 0x6079, 0, 0, timedia_4079r },
2924 { 0x1409, 0x7168, 0x1409, 0x7079, 0, 0, timedia_4079s },
2925 { 0x1409, 0x7168, 0x1409, 0x8079, 0, 0, timedia_4079d },
2926 { 0x1409, 0x7168, 0x1409, 0x9079, 0, 0, timedia_4079e },
2927 { 0x1409, 0x7168, 0x1409, 0xa079, 0, 0, timedia_4079f },
2928 { 0x1409, 0x7168, 0x1409, 0xb079, 0, 0, timedia_9079a },
2929 { 0x1409, 0x7168, 0x1409, 0xc079, 0, 0, timedia_9079b },
2930 { 0x1409, 0x7168, 0x1409, 0xd079, 0, 0, timedia_9079c },
2931 { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a },
2932 { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014 },
2933 { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a },
2934 { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018 },
2935 { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_2P_EPP,
2937 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_2p_epp },
2938 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_1P_ECP,
2939 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_1p_ecp },
2940 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_010L,
2941 PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_010l },
Maximilian Attems85747f02005-09-06 15:17:21 -07002942 { 0x9710, 0x9805, 0x1000, 0x0010, 0, 0, titan_1284p1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 { 0x9710, 0x9815, 0x1000, 0x0020, 0, 0, titan_1284p2 },
2944 /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
2945 { 0x14db, 0x2120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1p}, /* AFAVLAB_TK9902 */
2946 { 0x14db, 0x2121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2p},
Ryan Underwoodc140e112006-12-06 20:36:38 -08002947 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952PP,
2948 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_952 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954PP,
2950 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_954 },
2951 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_12PCI840,
2952 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_840 },
Lee Howard7106b4e2008-10-21 13:48:58 +01002953 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840,
2954 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2955 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840_G,
2956 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2957 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0,
2958 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2959 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0_G,
2960 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2961 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1,
2962 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2963 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_G,
2964 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2965 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_U,
2966 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2967 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_GU,
2968 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 { PCI_VENDOR_ID_AKS, PCI_DEVICE_ID_AKS_ALADDINCARD,
2970 PCI_ANY_ID, PCI_ANY_ID, 0, 0, aks_0100 },
Lee Howard7106b4e2008-10-21 13:48:58 +01002971 { 0x14f2, 0x0121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, mobility_pp },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 /* NetMos communication controllers */
2973 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9705,
2974 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9705 },
2975 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9715,
2976 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9715 },
2977 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9755,
2978 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9755 },
2979 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9805,
2980 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9805 },
2981 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9815,
2982 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9815 },
Luís P Mendesdc999152008-02-06 01:37:43 -08002983 /* Quatech SPPXP-100 Parallel port PCI ExpressCard */
2984 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_SPPXP_100,
2985 PCI_ANY_ID, PCI_ANY_ID, 0, 0, quatech_sppxp100 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 { 0, } /* terminate list */
2987};
2988MODULE_DEVICE_TABLE(pci,parport_pc_pci_tbl);
2989
2990struct pci_parport_data {
2991 int num;
2992 struct parport *ports[2];
2993};
2994
2995static int parport_pc_pci_probe (struct pci_dev *dev,
2996 const struct pci_device_id *id)
2997{
2998 int err, count, n, i = id->driver_data;
2999 struct pci_parport_data *data;
3000
3001 if (i < last_sio)
3002 /* This is an onboard Super-IO and has already been probed */
3003 return 0;
3004
3005 /* This is a PCI card */
3006 i -= last_sio;
3007 count = 0;
3008 if ((err = pci_enable_device (dev)) != 0)
3009 return err;
3010
3011 data = kmalloc(sizeof(struct pci_parport_data), GFP_KERNEL);
3012 if (!data)
3013 return -ENOMEM;
3014
3015 if (cards[i].preinit_hook &&
3016 cards[i].preinit_hook (dev, PARPORT_IRQ_NONE, PARPORT_DMA_NONE)) {
3017 kfree(data);
3018 return -ENODEV;
3019 }
3020
3021 for (n = 0; n < cards[i].numports; n++) {
3022 int lo = cards[i].addr[n].lo;
3023 int hi = cards[i].addr[n].hi;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003024 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 unsigned long io_lo, io_hi;
3026 io_lo = pci_resource_start (dev, lo);
3027 io_hi = 0;
3028 if ((hi >= 0) && (hi <= 6))
3029 io_hi = pci_resource_start (dev, hi);
3030 else if (hi > 6)
3031 io_lo += hi; /* Reinterpret the meaning of
3032 "hi" as an offset (see SYBA
3033 def.) */
3034 /* TODO: test if sharing interrupts works */
Alan Cox51dcdfe2009-04-07 15:30:57 +01003035 irq = dev->irq;
3036 if (irq == IRQ_NONE) {
3037 printk (KERN_DEBUG
3038 "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
3039 parport_pc_pci_tbl[i + last_sio].vendor,
3040 parport_pc_pci_tbl[i + last_sio].device,
3041 io_lo, io_hi);
3042 irq = PARPORT_IRQ_NONE;
3043 } else {
3044 printk (KERN_DEBUG
3045 "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
3046 parport_pc_pci_tbl[i + last_sio].vendor,
3047 parport_pc_pci_tbl[i + last_sio].device,
3048 io_lo, io_hi, irq);
3049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 data->ports[count] =
Alan Cox51dcdfe2009-04-07 15:30:57 +01003051 parport_pc_probe_port(io_lo, io_hi, irq,
3052 PARPORT_DMA_NONE, &dev->dev,
3053 IRQF_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 if (data->ports[count])
3055 count++;
3056 }
3057
3058 data->num = count;
3059
3060 if (cards[i].postinit_hook)
3061 cards[i].postinit_hook (dev, count == 0);
3062
3063 if (count) {
3064 pci_set_drvdata(dev, data);
3065 return 0;
3066 }
3067
3068 kfree(data);
3069
3070 return -ENODEV;
3071}
3072
3073static void __devexit parport_pc_pci_remove(struct pci_dev *dev)
3074{
3075 struct pci_parport_data *data = pci_get_drvdata(dev);
3076 int i;
3077
3078 pci_set_drvdata(dev, NULL);
3079
3080 if (data) {
3081 for (i = data->num - 1; i >= 0; i--)
3082 parport_pc_unregister_port(data->ports[i]);
3083
3084 kfree(data);
3085 }
3086}
3087
3088static struct pci_driver parport_pc_pci_driver = {
3089 .name = "parport_pc",
3090 .id_table = parport_pc_pci_tbl,
3091 .probe = parport_pc_pci_probe,
3092 .remove = __devexit_p(parport_pc_pci_remove),
3093};
3094
3095static int __init parport_pc_init_superio (int autoirq, int autodma)
3096{
3097 const struct pci_device_id *id;
3098 struct pci_dev *pdev = NULL;
3099 int ret = 0;
3100
Jiri Slabyc9d80732005-08-10 02:09:39 +02003101 for_each_pci_dev(pdev) {
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07003102 id = pci_match_id(parport_pc_pci_tbl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 if (id == NULL || id->driver_data >= last_sio)
3104 continue;
3105
3106 if (parport_pc_superio_info[id->driver_data].probe
3107 (pdev, autoirq, autodma,parport_pc_superio_info[id->driver_data].via)) {
3108 ret++;
3109 }
3110 }
3111
3112 return ret; /* number of devices found */
3113}
3114#else
3115static struct pci_driver parport_pc_pci_driver;
3116static int __init parport_pc_init_superio(int autoirq, int autodma) {return 0;}
3117#endif /* CONFIG_PCI */
3118
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07003119#ifdef CONFIG_PNP
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121static const struct pnp_device_id parport_pc_pnp_tbl[] = {
3122 /* Standard LPT Printer Port */
3123 {.id = "PNP0400", .driver_data = 0},
3124 /* ECP Printer Port */
3125 {.id = "PNP0401", .driver_data = 0},
3126 { }
3127};
3128
3129MODULE_DEVICE_TABLE(pnp,parport_pc_pnp_tbl);
3130
3131static int parport_pc_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *id)
3132{
3133 struct parport *pdata;
3134 unsigned long io_lo, io_hi;
3135 int dma, irq;
3136
3137 if (pnp_port_valid(dev,0) &&
3138 !(pnp_port_flags(dev,0) & IORESOURCE_DISABLED)) {
3139 io_lo = pnp_port_start(dev,0);
3140 } else
3141 return -EINVAL;
3142
3143 if (pnp_port_valid(dev,1) &&
3144 !(pnp_port_flags(dev,1) & IORESOURCE_DISABLED)) {
3145 io_hi = pnp_port_start(dev,1);
3146 } else
3147 io_hi = 0;
3148
3149 if (pnp_irq_valid(dev,0) &&
3150 !(pnp_irq_flags(dev,0) & IORESOURCE_DISABLED)) {
3151 irq = pnp_irq(dev,0);
3152 } else
3153 irq = PARPORT_IRQ_NONE;
3154
3155 if (pnp_dma_valid(dev,0) &&
3156 !(pnp_dma_flags(dev,0) & IORESOURCE_DISABLED)) {
3157 dma = pnp_dma(dev,0);
3158 } else
3159 dma = PARPORT_DMA_NONE;
3160
David Brownellc15a3832007-05-08 00:27:35 -07003161 dev_info(&dev->dev, "reported by %s\n", dev->protocol->name);
Alan Cox51dcdfe2009-04-07 15:30:57 +01003162 if (!(pdata = parport_pc_probe_port(io_lo, io_hi,
3163 irq, dma, &dev->dev, 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 return -ENODEV;
3165
3166 pnp_set_drvdata(dev,pdata);
3167 return 0;
3168}
3169
3170static void parport_pc_pnp_remove(struct pnp_dev *dev)
3171{
3172 struct parport *pdata = (struct parport *)pnp_get_drvdata(dev);
3173 if (!pdata)
3174 return;
3175
3176 parport_pc_unregister_port(pdata);
3177}
3178
3179/* we only need the pnp layer to activate the device, at least for now */
3180static struct pnp_driver parport_pc_pnp_driver = {
3181 .name = "parport_pc",
3182 .id_table = parport_pc_pnp_tbl,
3183 .probe = parport_pc_pnp_probe,
3184 .remove = parport_pc_pnp_remove,
3185};
3186
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07003187#else
3188static struct pnp_driver parport_pc_pnp_driver;
3189#endif /* CONFIG_PNP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Jean Delvarea7d801a2007-05-08 00:27:40 -07003191static int __devinit parport_pc_platform_probe(struct platform_device *pdev)
3192{
3193 /* Always succeed, the actual probing is done in
3194 * parport_pc_probe_port(). */
3195 return 0;
3196}
3197
3198static struct platform_driver parport_pc_platform_driver = {
3199 .driver = {
3200 .owner = THIS_MODULE,
3201 .name = "parport_pc",
3202 },
3203 .probe = parport_pc_platform_probe,
3204};
3205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206/* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */
3207static int __devinit __attribute__((unused))
3208parport_pc_find_isa_ports (int autoirq, int autodma)
3209{
3210 int count = 0;
3211
Alan Cox51dcdfe2009-04-07 15:30:57 +01003212 if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003214 if (parport_pc_probe_port(0x378, 0x778, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003216 if (parport_pc_probe_port(0x278, 0x678, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 count++;
3218
3219 return count;
3220}
3221
3222/* This function is called by parport_pc_init if the user didn't
3223 * specify any ports to probe. Its job is to find some ports. Order
3224 * is important here -- we want ISA ports to be registered first,
3225 * followed by PCI cards (for least surprise), but before that we want
3226 * to do chipset-specific tests for some onboard ports that we know
3227 * about.
3228 *
3229 * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY
3230 * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO
3231 */
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003232static void __init parport_pc_find_ports (int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233{
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003234 int count = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
3236#ifdef CONFIG_PARPORT_PC_SUPERIO
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003237 detect_and_report_it87();
3238 detect_and_report_winbond();
3239 detect_and_report_smsc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240#endif
3241
3242 /* Onboard SuperIO chipsets that show themselves on the PCI bus. */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003243 count += parport_pc_init_superio(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 /* PnP ports, skip detection if SuperIO already found them */
3246 if (!count) {
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003247 err = pnp_register_driver(&parport_pc_pnp_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003248 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 pnp_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 }
3251
3252 /* ISA ports and whatever (see asm/parport.h). */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003253 parport_pc_find_nonpci_ports(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003255 err = pci_register_driver(&parport_pc_pci_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003256 if (!err)
3257 pci_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258}
3259
3260/*
3261 * Piles of crap below pretend to be a parser for module and kernel
3262 * parameters. Say "thank you" to whoever had come up with that
3263 * syntax and keep in mind that code below is a cleaned up version.
3264 */
3265
3266static int __initdata io[PARPORT_PC_MAX_PORTS+1] = { [0 ... PARPORT_PC_MAX_PORTS] = 0 };
3267static int __initdata io_hi[PARPORT_PC_MAX_PORTS+1] =
3268 { [0 ... PARPORT_PC_MAX_PORTS] = PARPORT_IOHI_AUTO };
3269static int __initdata dmaval[PARPORT_PC_MAX_PORTS] = { [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_DMA_NONE };
3270static int __initdata irqval[PARPORT_PC_MAX_PORTS] = { [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_IRQ_PROBEONLY };
3271
3272static int __init parport_parse_param(const char *s, int *val,
3273 int automatic, int none, int nofifo)
3274{
3275 if (!s)
3276 return 0;
3277 if (!strncmp(s, "auto", 4))
3278 *val = automatic;
3279 else if (!strncmp(s, "none", 4))
3280 *val = none;
3281 else if (nofifo && !strncmp(s, "nofifo", 4))
3282 *val = nofifo;
3283 else {
3284 char *ep;
3285 unsigned long r = simple_strtoul(s, &ep, 0);
3286 if (ep != s)
3287 *val = r;
3288 else {
3289 printk(KERN_ERR "parport: bad specifier `%s'\n", s);
3290 return -1;
3291 }
3292 }
3293 return 0;
3294}
3295
3296static int __init parport_parse_irq(const char *irqstr, int *val)
3297{
3298 return parport_parse_param(irqstr, val, PARPORT_IRQ_AUTO,
3299 PARPORT_IRQ_NONE, 0);
3300}
3301
3302static int __init parport_parse_dma(const char *dmastr, int *val)
3303{
3304 return parport_parse_param(dmastr, val, PARPORT_DMA_AUTO,
3305 PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO);
3306}
3307
3308#ifdef CONFIG_PCI
3309static int __init parport_init_mode_setup(char *str)
3310{
3311 printk(KERN_DEBUG "parport_pc.c: Specified parameter parport_init_mode=%s\n", str);
3312
3313 if (!strcmp (str, "spp"))
3314 parport_init_mode=1;
3315 if (!strcmp (str, "ps2"))
3316 parport_init_mode=2;
3317 if (!strcmp (str, "epp"))
3318 parport_init_mode=3;
3319 if (!strcmp (str, "ecp"))
3320 parport_init_mode=4;
3321 if (!strcmp (str, "ecpepp"))
3322 parport_init_mode=5;
3323 return 1;
3324}
3325#endif
3326
3327#ifdef MODULE
3328static const char *irq[PARPORT_PC_MAX_PORTS];
3329static const char *dma[PARPORT_PC_MAX_PORTS];
3330
3331MODULE_PARM_DESC(io, "Base I/O address (SPP regs)");
3332module_param_array(io, int, NULL, 0);
3333MODULE_PARM_DESC(io_hi, "Base I/O address (ECR)");
3334module_param_array(io_hi, int, NULL, 0);
3335MODULE_PARM_DESC(irq, "IRQ line");
3336module_param_array(irq, charp, NULL, 0);
3337MODULE_PARM_DESC(dma, "DMA channel");
3338module_param_array(dma, charp, NULL, 0);
3339#if defined(CONFIG_PARPORT_PC_SUPERIO) || \
3340 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
3341MODULE_PARM_DESC(verbose_probing, "Log chit-chat during initialisation");
3342module_param(verbose_probing, int, 0644);
3343#endif
3344#ifdef CONFIG_PCI
3345static char *init_mode;
3346MODULE_PARM_DESC(init_mode, "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
3347module_param(init_mode, charp, 0);
3348#endif
3349
3350static int __init parse_parport_params(void)
3351{
3352 unsigned int i;
3353 int val;
3354
3355#ifdef CONFIG_PCI
3356 if (init_mode)
3357 parport_init_mode_setup(init_mode);
3358#endif
3359
3360 for (i = 0; i < PARPORT_PC_MAX_PORTS && io[i]; i++) {
3361 if (parport_parse_irq(irq[i], &val))
3362 return 1;
3363 irqval[i] = val;
3364 if (parport_parse_dma(dma[i], &val))
3365 return 1;
3366 dmaval[i] = val;
3367 }
3368 if (!io[0]) {
3369 /* The user can make us use any IRQs or DMAs we find. */
3370 if (irq[0] && !parport_parse_irq(irq[0], &val))
3371 switch (val) {
3372 case PARPORT_IRQ_NONE:
3373 case PARPORT_IRQ_AUTO:
3374 irqval[0] = val;
3375 break;
3376 default:
3377 printk (KERN_WARNING
3378 "parport_pc: irq specified "
3379 "without base address. Use 'io=' "
3380 "to specify one\n");
3381 }
3382
3383 if (dma[0] && !parport_parse_dma(dma[0], &val))
3384 switch (val) {
3385 case PARPORT_DMA_NONE:
3386 case PARPORT_DMA_AUTO:
3387 dmaval[0] = val;
3388 break;
3389 default:
3390 printk (KERN_WARNING
3391 "parport_pc: dma specified "
3392 "without base address. Use 'io=' "
3393 "to specify one\n");
3394 }
3395 }
3396 return 0;
3397}
3398
3399#else
3400
3401static int parport_setup_ptr __initdata = 0;
3402
3403/*
3404 * Acceptable parameters:
3405 *
3406 * parport=0
3407 * parport=auto
3408 * parport=0xBASE[,IRQ[,DMA]]
3409 *
3410 * IRQ/DMA may be numeric or 'auto' or 'none'
3411 */
3412static int __init parport_setup (char *str)
3413{
3414 char *endptr;
3415 char *sep;
3416 int val;
3417
3418 if (!str || !*str || (*str == '0' && !*(str+1))) {
3419 /* Disable parport if "parport=0" in cmdline */
3420 io[0] = PARPORT_DISABLE;
3421 return 1;
3422 }
3423
3424 if (!strncmp (str, "auto", 4)) {
3425 irqval[0] = PARPORT_IRQ_AUTO;
3426 dmaval[0] = PARPORT_DMA_AUTO;
3427 return 1;
3428 }
3429
3430 val = simple_strtoul (str, &endptr, 0);
3431 if (endptr == str) {
3432 printk (KERN_WARNING "parport=%s not understood\n", str);
3433 return 1;
3434 }
3435
3436 if (parport_setup_ptr == PARPORT_PC_MAX_PORTS) {
3437 printk(KERN_ERR "parport=%s ignored, too many ports\n", str);
3438 return 1;
3439 }
3440
3441 io[parport_setup_ptr] = val;
3442 irqval[parport_setup_ptr] = PARPORT_IRQ_NONE;
3443 dmaval[parport_setup_ptr] = PARPORT_DMA_NONE;
3444
3445 sep = strchr(str, ',');
3446 if (sep++) {
3447 if (parport_parse_irq(sep, &val))
3448 return 1;
3449 irqval[parport_setup_ptr] = val;
3450 sep = strchr(sep, ',');
3451 if (sep++) {
3452 if (parport_parse_dma(sep, &val))
3453 return 1;
3454 dmaval[parport_setup_ptr] = val;
3455 }
3456 }
3457 parport_setup_ptr++;
3458 return 1;
3459}
3460
3461static int __init parse_parport_params(void)
3462{
3463 return io[0] == PARPORT_DISABLE;
3464}
3465
3466__setup ("parport=", parport_setup);
3467
3468/*
3469 * Acceptable parameters:
3470 *
3471 * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
3472 */
3473#ifdef CONFIG_PCI
3474__setup("parport_init_mode=",parport_init_mode_setup);
3475#endif
3476#endif
3477
3478/* "Parser" ends here */
3479
3480static int __init parport_pc_init(void)
3481{
Jean Delvarea7d801a2007-05-08 00:27:40 -07003482 int err;
3483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 if (parse_parport_params())
3485 return -EINVAL;
3486
Jean Delvarea7d801a2007-05-08 00:27:40 -07003487 err = platform_driver_register(&parport_pc_platform_driver);
3488 if (err)
3489 return err;
3490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 if (io[0]) {
3492 int i;
3493 /* Only probe the ports we were given. */
3494 user_specified = 1;
3495 for (i = 0; i < PARPORT_PC_MAX_PORTS; i++) {
3496 if (!io[i])
3497 break;
3498 if ((io_hi[i]) == PARPORT_IOHI_AUTO)
3499 io_hi[i] = 0x400 + io[i];
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003500 parport_pc_probe_port(io[i], io_hi[i],
Alan Cox51dcdfe2009-04-07 15:30:57 +01003501 irqval[i], dmaval[i], NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 }
3503 } else
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003504 parport_pc_find_ports (irqval[0], dmaval[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
3506 return 0;
3507}
3508
3509static void __exit parport_pc_exit(void)
3510{
3511 if (pci_registered_parport)
3512 pci_unregister_driver (&parport_pc_pci_driver);
3513 if (pnp_registered_parport)
3514 pnp_unregister_driver (&parport_pc_pnp_driver);
Jean Delvarea7d801a2007-05-08 00:27:40 -07003515 platform_driver_unregister(&parport_pc_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 while (!list_empty(&ports_list)) {
3518 struct parport_pc_private *priv;
3519 struct parport *port;
3520 priv = list_entry(ports_list.next,
3521 struct parport_pc_private, list);
3522 port = priv->port;
Jean Delvarea7d801a2007-05-08 00:27:40 -07003523 if (port->dev && port->dev->bus == &platform_bus_type)
3524 platform_device_unregister(
3525 to_platform_device(port->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 parport_pc_unregister_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
3530MODULE_AUTHOR("Phil Blundell, Tim Waugh, others");
3531MODULE_DESCRIPTION("PC-style parallel port driver");
3532MODULE_LICENSE("GPL");
3533module_init(parport_pc_init)
3534module_exit(parport_pc_exit)