1 /* Low-level parallel-port routines for 8255-based PC-style hardware.
3 * Authors: Phil Blundell <philb@gnu.org>
4 * Tim Waugh <tim@cyberelk.demon.co.uk>
5 * Jose Renau <renau@acm.org>
9 * based on work by Grant Guenther <grant@torque.net> and Phil Blundell.
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>
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
28 * In addition, there are some optional registers:
32 * base+0x400 ECP config A
33 * base+0x401 ECP config B
34 * base+0x402 ECP control
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
41 * Note that the ECP registers may not start at offset 0x400 for PCI cards,
42 * but rather will start at port->base_hi.
45 #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>
54 #include <linux/dma-mapping.h>
55 #include <linux/pci.h>
56 #include <linux/pnp.h>
57 #include <linux/platform_device.h>
58 #include <linux/sysctl.h>
62 #include <asm/uaccess.h>
64 #include <linux/parport.h>
65 #include <linux/parport_pc.h>
66 #include <linux/via.h>
67 #include <asm/parport.h>
69 #define PARPORT_PC_MAX_PORTS PARPORT_MAX
71 #ifdef CONFIG_ISA_DMA_API
84 #define ECR_MODE_MASK 0xe0
85 #define ECR_WRITE(p,v) frob_econtrol((p),0xff,(v))
90 #define DPRINTK printk
92 #define DPRINTK(stuff...)
97 static struct superio_struct
{ /* For Super-IO chips autodetection */
101 } superios
[NR_SUPERIOS
] = { {0,},};
103 static int user_specified
;
104 #if defined(CONFIG_PARPORT_PC_SUPERIO) || \
105 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
106 static int verbose_probing
;
108 static int pci_registered_parport
;
109 static int pnp_registered_parport
;
111 /* frob_control, but for ECR */
112 static void frob_econtrol (struct parport
*pb
, unsigned char m
,
115 unsigned char ectr
= 0;
118 ectr
= inb (ECONTROL (pb
));
120 DPRINTK (KERN_DEBUG
"frob_econtrol(%02x,%02x): %02x -> %02x\n",
121 m
, v
, ectr
, (ectr
& ~m
) ^ v
);
123 outb ((ectr
& ~m
) ^ v
, ECONTROL (pb
));
126 static __inline__
void frob_set_mode (struct parport
*p
, int mode
)
128 frob_econtrol (p
, ECR_MODE_MASK
, mode
<< 5);
131 #ifdef CONFIG_PARPORT_PC_FIFO
132 /* Safely change the mode bits in the ECR
135 -EBUSY: Could not drain FIFO in some finite amount of time,
138 static int change_mode(struct parport
*p
, int m
)
140 const struct parport_pc_private
*priv
= p
->physport
->private_data
;
144 DPRINTK(KERN_INFO
"parport change_mode ECP-ISA to mode 0x%02x\n",m
);
147 printk (KERN_DEBUG
"change_mode: but there's no ECR!\n");
151 /* Bits <7:5> contain the mode. */
152 oecr
= inb (ECONTROL (p
));
153 mode
= (oecr
>> 5) & 0x7;
154 if (mode
== m
) return 0;
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
;
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)
168 if (signal_pending (current
)) break;
173 while (!(inb (ECONTROL (p
)) & 0x01)) {
174 if (time_after_eq (jiffies
, expire
))
175 /* The FIFO is stuck. */
177 schedule_timeout_interruptible(msecs_to_jiffies(10));
178 if (signal_pending (current
))
184 if (mode
>= 2 && m
>= 2) {
185 /* We have to go through mode 001 */
187 oecr
|= ECR_PS2
<< 5;
198 #ifdef CONFIG_PARPORT_1284
199 /* Find FIFO lossage; FIFO is reset */
201 static int get_fifo_residue (struct parport
*p
)
205 const struct parport_pc_private
*priv
= p
->physport
->private_data
;
207 /* Adjust for the contents of the FIFO. */
208 for (residue
= priv
->fifo_depth
; ; residue
--) {
209 if (inb (ECONTROL (p
)) & 0x2)
216 printk (KERN_DEBUG
"%s: %d PWords were left in FIFO\n", p
->name
,
219 /* Reset the FIFO. */
220 frob_set_mode (p
, ECR_PS2
);
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
);
227 if (!(cnfga
& (1<<2))) {
228 printk (KERN_DEBUG
"%s: Accounting for extra byte\n", p
->name
);
232 /* Don't care about partial PWords until support is added for
233 * PWord != 1 byte. */
235 /* Back to PS2 mode. */
236 frob_set_mode (p
, ECR_PS2
);
238 DPRINTK (KERN_DEBUG
"*** get_fifo_residue: done residue collecting (ecr = 0x%2.2x)\n", inb (ECONTROL (p
)));
242 #endif /* IEEE 1284 support */
243 #endif /* FIFO support */
246 * Clear TIMEOUT BIT in EPP MODE
248 * This is also used in SPP detection.
250 static int clear_epp_timeout(struct parport
*pb
)
254 if (!(parport_pc_read_status(pb
) & 0x01))
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
);
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.
275 static void parport_pc_init_state(struct pardevice
*dev
, struct parport_state
*s
)
279 dev
->port
->irq
!= PARPORT_IRQ_NONE
)
283 s
->u
.pc
.ecr
= 0x34; /* NetMos chip can cause problems 0x24;
287 static void parport_pc_save_state(struct parport
*p
, struct parport_state
*s
)
289 const struct parport_pc_private
*priv
= p
->physport
->private_data
;
290 s
->u
.pc
.ctr
= priv
->ctr
;
292 s
->u
.pc
.ecr
= inb (ECONTROL (p
));
295 static void parport_pc_restore_state(struct parport
*p
, struct parport_state
*s
)
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
));
302 ECR_WRITE (p
, s
->u
.pc
.ecr
);
305 #ifdef CONFIG_PARPORT_1284
306 static size_t parport_pc_epp_read_data (struct parport
*port
, void *buf
,
307 size_t length
, int flags
)
311 if (flags
& PARPORT_W91284PIC
) {
312 unsigned char status
;
313 size_t left
= length
;
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
319 status
= inb (STATUS (port
));
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);
327 insb (EPPDATA (port
), buf
, 16);
333 /* grab single byte from the warp fifo */
334 *((char *)buf
) = inb (EPPDATA (port
));
339 status
= inb (STATUS (port
));
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
);
349 if ((flags
& PARPORT_EPP_FAST
) && (length
> 1)) {
350 if (!(((long)buf
| length
) & 0x03)) {
351 insl (EPPDATA (port
), buf
, (length
>> 2));
353 insb (EPPDATA (port
), buf
, length
);
355 if (inb (STATUS (port
)) & 0x01) {
356 clear_epp_timeout (port
);
361 for (; got
< length
; got
++) {
362 *((char*)buf
) = inb (EPPDATA(port
));
364 if (inb (STATUS (port
)) & 0x01) {
366 clear_epp_timeout (port
);
374 static size_t parport_pc_epp_write_data (struct parport
*port
, const void *buf
,
375 size_t length
, int flags
)
379 if ((flags
& PARPORT_EPP_FAST
) && (length
> 1)) {
380 if (!(((long)buf
| length
) & 0x03)) {
381 outsl (EPPDATA (port
), buf
, (length
>> 2));
383 outsb (EPPDATA (port
), buf
, length
);
385 if (inb (STATUS (port
)) & 0x01) {
386 clear_epp_timeout (port
);
391 for (; written
< length
; written
++) {
392 outb (*((char*)buf
), EPPDATA(port
));
394 if (inb (STATUS(port
)) & 0x01) {
395 clear_epp_timeout (port
);
403 static size_t parport_pc_epp_read_addr (struct parport
*port
, void *buf
,
404 size_t length
, int flags
)
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
);
416 for (; got
< length
; got
++) {
417 *((char*)buf
) = inb (EPPADDR (port
));
419 if (inb (STATUS (port
)) & 0x01) {
420 clear_epp_timeout (port
);
428 static size_t parport_pc_epp_write_addr (struct parport
*port
,
429 const void *buf
, size_t length
,
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
);
442 for (; written
< length
; written
++) {
443 outb (*((char*)buf
), EPPADDR (port
));
445 if (inb (STATUS (port
)) & 0x01) {
446 clear_epp_timeout (port
);
454 static size_t parport_pc_ecpepp_read_data (struct parport
*port
, void *buf
,
455 size_t length
, int flags
)
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
);
468 static size_t parport_pc_ecpepp_write_data (struct parport
*port
,
469 const void *buf
, size_t length
,
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
);
483 static size_t parport_pc_ecpepp_read_addr (struct parport
*port
, void *buf
,
484 size_t length
, int flags
)
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
);
497 static size_t parport_pc_ecpepp_write_addr (struct parport
*port
,
498 const void *buf
, size_t length
,
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
);
511 #endif /* IEEE 1284 support */
513 #ifdef CONFIG_PARPORT_PC_FIFO
514 static size_t parport_pc_fifo_write_block_pio (struct parport
*port
,
515 const void *buf
, size_t length
)
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
;
526 port
= port
->physport
;
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));
534 parport_pc_data_forward (port
); /* Must be in PS2 mode */
538 unsigned char ecrval
= inb (ECONTROL (port
));
541 if (need_resched() && time_before (jiffies
, expire
))
542 /* Can't yield the port. */
545 /* Anyone else waiting for the port? */
546 if (port
->waithead
) {
547 printk (KERN_DEBUG
"Somebody wants the port\n");
552 /* FIFO is full. Wait for interrupt. */
554 /* Clear serviceIntr */
555 ECR_WRITE (port
, ecrval
& ~(1<<2));
557 ret
= parport_wait_event (port
, HZ
);
560 if (!time_before (jiffies
, expire
)) {
562 printk (KERN_DEBUG
"FIFO write timed out\n");
565 ecrval
= inb (ECONTROL (port
));
566 if (!(ecrval
& (1<<2))) {
567 if (need_resched() &&
568 time_before (jiffies
, expire
))
577 /* Can't fail now. */
578 expire
= jiffies
+ port
->cad
->timeout
;
581 if (signal_pending (current
))
585 /* FIFO is empty. Blast it full. */
586 const int n
= left
< fifo_depth
? left
: fifo_depth
;
587 outsb (fifo
, bufp
, n
);
591 /* Adjust the poll time. */
592 if (i
< (poll_for
- 2)) poll_for
--;
594 } else if (i
++ < poll_for
) {
596 ecrval
= inb (ECONTROL (port
));
600 /* Half-full (call me an optimist) */
606 dump_parport_state ("leave fifo_write_block_pio", port
);
607 return length
- left
;
611 static size_t parport_pc_fifo_write_block_dma (struct parport
*port
,
612 const void *buf
, size_t length
)
615 unsigned long dmaflag
;
616 size_t left
= length
;
617 const struct parport_pc_private
*priv
= port
->physport
->private_data
;
618 struct device
*dev
= port
->physport
->dev
;
619 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;
624 dump_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);
630 dma_addr
= dma_handle
= dma_map_single(dev
, (void *)buf
, length
,
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
;
639 port
= port
->physport
;
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));
647 parport_pc_data_forward (port
); /* Must be in PS2 mode */
650 unsigned long expire
= jiffies
+ port
->physport
->cad
->timeout
;
657 if (!dma_handle
) /* bounce buffer ! */
658 memcpy(priv
->dma_buf
, buf
, count
);
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
);
668 frob_econtrol (port
, 1<<3, 1<<3);
670 /* Clear serviceIntr */
671 frob_econtrol (port
, 1<<2, 0);
673 enable_dma(port
->dma
);
674 release_dma_lock(dmaflag
);
676 /* assume DMA will be successful */
679 if (dma_handle
) dma_addr
+= count
;
681 /* Wait for interrupt. */
683 ret
= parport_wait_event (port
, HZ
);
686 if (!time_before (jiffies
, expire
)) {
688 printk (KERN_DEBUG
"DMA write timed out\n");
691 /* Is serviceIntr set? */
692 if (!(inb (ECONTROL (port
)) & (1<<2))) {
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
);
704 cond_resched(); /* Can't yield the port. */
706 /* Anyone else waiting for the port? */
707 if (port
->waithead
) {
708 printk (KERN_DEBUG
"Somebody wants the port\n");
712 /* update for possible DMA residue ! */
715 if (dma_handle
) dma_addr
-= count
;
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
);
725 /* Turn off DMA mode */
726 frob_econtrol (port
, 1<<3, 0);
729 dma_unmap_single(dev
, dma_handle
, length
, DMA_TO_DEVICE
);
731 dump_parport_state ("leave fifo_write_block_dma", port
);
732 return length
- left
;
736 static inline size_t parport_pc_fifo_write_block(struct parport
*port
,
737 const void *buf
, size_t length
)
740 if (port
->dma
!= PARPORT_DMA_NONE
)
741 return parport_pc_fifo_write_block_dma (port
, buf
, length
);
743 return parport_pc_fifo_write_block_pio (port
, buf
, length
);
746 /* Parallel Port FIFO mode (ECP chipsets) */
747 static size_t parport_pc_compat_write_block_pio (struct parport
*port
,
748 const void *buf
, size_t length
,
753 unsigned long expire
;
754 const struct parport_pc_private
*priv
= port
->physport
->private_data
;
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
,
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
);
768 port
->physport
->ieee1284
.phase
= IEEE1284_PH_FWD_DATA
;
770 /* Write the data to the FIFO. */
771 written
= parport_pc_fifo_write_block(port
, buf
, length
);
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
778 expire
= jiffies
+ (priv
->fifo_depth
* HZ
* 4);
780 /* Wait for the FIFO to empty */
781 r
= change_mode (port
, ECR_PS2
);
785 } while (time_before (jiffies
, expire
));
788 printk (KERN_DEBUG
"%s: FIFO is stuck\n", port
->name
);
790 /* Prevent further data transfer. */
791 frob_set_mode (port
, ECR_TST
);
793 /* Adjust for the contents of the FIFO. */
794 for (written
-= priv
->fifo_depth
; ; written
++) {
795 if (inb (ECONTROL (port
)) & 0x2) {
799 outb (0, FIFO (port
));
802 /* Reset the FIFO and return to PS2 mode. */
803 frob_set_mode (port
, ECR_PS2
);
806 r
= parport_wait_peripheral (port
,
808 PARPORT_STATUS_BUSY
);
811 "%s: BUSY timeout (%d) in compat_write_block_pio\n",
814 port
->physport
->ieee1284
.phase
= IEEE1284_PH_FWD_IDLE
;
820 #ifdef CONFIG_PARPORT_1284
821 static size_t parport_pc_ecp_write_block_pio (struct parport
*port
,
822 const void *buf
, size_t length
,
827 unsigned long expire
;
828 const struct parport_pc_private
*priv
= port
->physport
->private_data
;
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
,
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
,
841 | PARPORT_CONTROL_AUTOFD
,
843 | PARPORT_CONTROL_AUTOFD
);
845 /* Event 49: PError goes high. */
846 r
= parport_wait_peripheral (port
,
847 PARPORT_STATUS_PAPEROUT
,
848 PARPORT_STATUS_PAPEROUT
);
850 printk (KERN_DEBUG
"%s: PError timeout (%d) "
851 "in ecp_write_block_pio\n", port
->name
, r
);
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
,
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
;
865 /* Write the data to the FIFO. */
866 written
= parport_pc_fifo_write_block(port
, buf
, length
);
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
873 expire
= jiffies
+ (priv
->fifo_depth
* (HZ
* 4));
875 /* Wait for the FIFO to empty */
876 r
= change_mode (port
, ECR_PS2
);
880 } while (time_before (jiffies
, expire
));
883 printk (KERN_DEBUG
"%s: FIFO is stuck\n", port
->name
);
885 /* Prevent further data transfer. */
886 frob_set_mode (port
, ECR_TST
);
888 /* Adjust for the contents of the FIFO. */
889 for (written
-= priv
->fifo_depth
; ; written
++) {
890 if (inb (ECONTROL (port
)) & 0x2) {
894 outb (0, FIFO (port
));
897 /* Reset the FIFO and return to PS2 mode. */
898 frob_set_mode (port
, ECR_PS2
);
900 /* Host transfer recovery. */
901 parport_pc_data_reverse (port
); /* Must be in PS2 mode */
903 parport_frob_control (port
, PARPORT_CONTROL_INIT
, 0);
904 r
= parport_wait_peripheral (port
, PARPORT_STATUS_PAPEROUT
, 0);
906 printk (KERN_DEBUG
"%s: PE,1 timeout (%d) "
907 "in ecp_write_block_pio\n", port
->name
, r
);
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
);
916 printk (KERN_DEBUG
"%s: PE,2 timeout (%d) "
917 "in ecp_write_block_pio\n", port
->name
, r
);
920 r
= parport_wait_peripheral (port
,
922 PARPORT_STATUS_BUSY
);
925 "%s: BUSY timeout (%d) in ecp_write_block_pio\n",
928 port
->physport
->ieee1284
.phase
= IEEE1284_PH_FWD_IDLE
;
934 static size_t parport_pc_ecp_read_block_pio (struct parport
*port
,
935 void *buf
, size_t length
,
938 size_t left
= length
;
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
;
946 port
= port
->physport
;
947 DPRINTK (KERN_DEBUG
"parport_pc: parport_pc_ecp_read_block_pio\n");
948 dump_parport_state ("enter fcn", port
);
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
,
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. */
962 fifofull
= fifo_depth
;
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
968 if (length
< fifofull
)
969 return parport_ieee1284_ecp_read_data (port
, buf
,
972 if (port
->ieee1284
.phase
!= IEEE1284_PH_REV_IDLE
) {
973 /* change to reverse-idle phase (must be in forward-idle) */
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 */
982 /* Event 39: Set nInit low to initiate bus reversal */
983 parport_frob_control (port
,
984 PARPORT_CONTROL_INIT
,
986 /* Event 40: Wait for nAckReverse (PError) to go low */
987 r
= parport_wait_peripheral (port
, PARPORT_STATUS_PAPEROUT
, 0);
989 printk (KERN_DEBUG
"%s: PE timeout Event 40 (%d) "
990 "in ecp_read_block_pio\n", port
->name
, r
);
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
);
1003 port
->ieee1284
.phase
= IEEE1284_PH_REV_DATA
;
1005 /* the first byte must be collected manually */
1006 dump_parport_state ("pre 43", port
);
1007 /* Event 43: Wait for nAck to go low */
1008 r
= parport_wait_peripheral (port
, PARPORT_STATUS_ACK
, 0);
1010 /* timed out while reading -- no data */
1011 printk (KERN_DEBUG
"PIO read timed out (initial byte)\n");
1015 *bufp
++ = inb (DATA (port
));
1017 dump_parport_state ("43-44", port
);
1018 /* Event 44: nAutoFd (HostAck) goes high to acknowledge */
1019 parport_pc_frob_control (port
,
1020 PARPORT_CONTROL_AUTOFD
,
1022 dump_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); */
1025 dump_parport_state ("post 45", port
);
1028 /* timed out while waiting for peripheral to respond to ack */
1029 printk (KERN_DEBUG
"ECP PIO read timed out (waiting for nAck)\n");
1031 /* keep hold of the byte we've got already */
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
);
1040 dump_parport_state ("rev idle", port
);
1041 /* Do the transfer. */
1042 while (left
> fifofull
) {
1044 unsigned long expire
= jiffies
+ port
->cad
->timeout
;
1045 unsigned char ecrval
= inb (ECONTROL (port
));
1047 if (need_resched() && time_before (jiffies
, expire
))
1048 /* Can't yield the port. */
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
1057 if (ecrval
& 0x01) {
1058 /* FIFO is empty. Wait for interrupt. */
1059 dump_parport_state ("FIFO empty", port
);
1061 /* Anyone else waiting for the port? */
1062 if (port
->waithead
) {
1063 printk (KERN_DEBUG
"Somebody wants the port\n");
1067 /* Clear serviceIntr */
1068 ECR_WRITE (port
, ecrval
& ~(1<<2));
1070 dump_parport_state ("waiting", port
);
1071 ret
= parport_wait_event (port
, HZ
);
1072 DPRINTK (KERN_DEBUG
"parport_wait_event returned %d\n", ret
);
1076 if (!time_before (jiffies
, expire
)) {
1078 dump_parport_state ("timeout", port
);
1079 printk (KERN_DEBUG
"PIO read timed out\n");
1082 ecrval
= inb (ECONTROL (port
));
1083 if (!(ecrval
& (1<<2))) {
1084 if (need_resched() &&
1085 time_before (jiffies
, expire
)) {
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. */
1098 if (ecrval
& 0x02) {
1100 dump_parport_state ("FIFO full", port
);
1101 insb (fifo
, bufp
, fifo_depth
);
1107 DPRINTK (KERN_DEBUG
"*** ecp_read_block_pio: reading one byte from the FIFO\n");
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
);
1116 /* scoop up anything left in the FIFO */
1117 while (left
&& !(inb (ECONTROL (port
) & 0x01))) {
1118 *bufp
++ = inb (fifo
);
1122 port
->ieee1284
.phase
= IEEE1284_PH_REV_IDLE
;
1123 dump_parport_state ("rev idle2", port
);
1127 /* Go to forward idle mode to shut the peripheral up (event 47). */
1128 parport_frob_control (port
, PARPORT_CONTROL_INIT
, PARPORT_CONTROL_INIT
);
1130 /* event 49: PError goes high */
1131 r
= parport_wait_peripheral (port
,
1132 PARPORT_STATUS_PAPEROUT
,
1133 PARPORT_STATUS_PAPEROUT
);
1136 "%s: PE timeout FWDIDLE (%d) in ecp_read_block_pio\n",
1140 port
->ieee1284
.phase
= IEEE1284_PH_FWD_IDLE
;
1144 int lost
= get_fifo_residue (port
);
1146 /* Shouldn't happen with compliant peripherals. */
1147 printk (KERN_DEBUG
"%s: DATA LOSS (%d bytes)!\n",
1151 dump_parport_state ("fwd idle", port
);
1152 return length
- left
;
1155 #endif /* IEEE 1284 support */
1156 #endif /* Allowed to use FIFO/DMA */
1160 * ******************************************
1161 * INITIALISATION AND MODULE STUFF BELOW HERE
1162 * ******************************************
1165 /* GCC is not inlining extern inline function later overwriten to non-inline,
1166 so we use outlined_ variants here. */
1167 static const struct parport_operations parport_pc_ops
=
1169 .write_data
= parport_pc_write_data
,
1170 .read_data
= parport_pc_read_data
,
1172 .write_control
= parport_pc_write_control
,
1173 .read_control
= parport_pc_read_control
,
1174 .frob_control
= parport_pc_frob_control
,
1176 .read_status
= parport_pc_read_status
,
1178 .enable_irq
= parport_pc_enable_irq
,
1179 .disable_irq
= parport_pc_disable_irq
,
1181 .data_forward
= parport_pc_data_forward
,
1182 .data_reverse
= parport_pc_data_reverse
,
1184 .init_state
= parport_pc_init_state
,
1185 .save_state
= parport_pc_save_state
,
1186 .restore_state
= parport_pc_restore_state
,
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
,
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
,
1197 .compat_write_data
= parport_ieee1284_write_compat
,
1198 .nibble_read_data
= parport_ieee1284_read_nibble
,
1199 .byte_read_data
= parport_ieee1284_read_byte
,
1201 .owner
= THIS_MODULE
,
1204 #ifdef CONFIG_PARPORT_PC_SUPERIO
1205 /* Super-IO chipset detection, Winbond, SMSC */
1206 static void __devinit
show_parconfig_smsc37c669(int io
, int key
)
1208 int cr1
,cr4
,cra
,cr23
,cr26
,cr27
,i
=0;
1209 static const char *const modes
[]={
1210 "SPP and Bidirectional (PS/2)",
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
);
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");
1250 /* 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) */
1254 if(cr23
*4 >=0x100) { /* if active */
1255 while((superios
[i
].io
!= 0) && (i
<NR_SUPERIOS
))
1258 printk(KERN_INFO
"Super-IO: too many chips!\n");
1263 superios
[i
].io
= 0x3bc;
1264 superios
[i
].irq
= 7;
1267 superios
[i
].io
= 0x378;
1268 superios
[i
].irq
= 7;
1271 superios
[i
].io
= 0x278;
1272 superios
[i
].irq
= 5;
1275 if((d
==1) || (d
==3))
1278 superios
[i
].dma
= PARPORT_DMA_NONE
;
1284 static void __devinit
show_parconfig_winbond(int io
, int key
)
1286 int cr30
,cr60
,cr61
,cr70
,cr74
,crf0
,i
=0;
1287 static const char *const modes
[] = {
1288 "Standard (SPP) and Bidirectional(PS/2)", /* 0 */
1293 "EPP-1.7 and SPP", /* 5 */
1295 "ECP and EPP-1.7" };
1296 static char *const irqtypes
[] = {
1297 "pulsed low, high-Z",
1300 /* The registers are called compatible-PnP because the
1301 register layout is modelled after ISA-PnP, the access
1302 method is just another ... */
1305 outb(0x07,io
); /* Register 7: Select Logical Device */
1306 outb(0x01,io
+1); /* LD1 is Parallel Port */
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");
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]);
1335 if(cr30
& 0x01) { /* the settings can be interrogated later ... */
1336 while((superios
[i
].io
!= 0) && (i
<NR_SUPERIOS
))
1339 printk(KERN_INFO
"Super-IO: too many chips!\n");
1341 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));
1349 static void __devinit
decode_winbond(int efer
, int key
, int devid
, int devrev
, int oldid
)
1351 const char *type
= "unknown";
1354 if (devid
== devrev
)
1355 /* simple heuristics, we happened to read some
1356 non-winbond register */
1359 id
=(devid
<<8) | devrev
;
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;}
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
);
1382 show_parconfig_winbond(efer
,key
);
1385 static void __devinit
decode_smsc(int efer
, int key
, int devid
, int devrev
)
1387 const char *type
= "unknown";
1388 void (*func
)(int io
, int key
);
1391 if (devid
== devrev
)
1392 /* simple heuristics, we happened to read some
1393 non-smsc register */
1397 id
=(devid
<<8) | devrev
;
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";
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
);
1414 static void __devinit
winbond_check(int io
, int key
)
1416 int origval
, devid
, devrev
, oldid
, x_devid
, x_devrev
, x_oldid
;
1418 if (!request_region(io
, 3, __func__
))
1421 origval
= inb(io
); /* Save original value */
1423 /* First probe without key */
1432 outb(key
,io
); /* Write Magic Sequence to EFER, extended
1433 funtion enable register */
1434 outb(0x20,io
); /* Write EFIR, extended function index register */
1435 devid
=inb(io
+1); /* Read EFDR, extended function data register */
1440 outb(0xaa,io
); /* Magic Seal */
1442 outb(origval
, io
); /* in case we poked some entirely different hardware */
1444 if ((x_devid
== devid
) && (x_devrev
== devrev
) && (x_oldid
== oldid
))
1445 goto out
; /* protection against false positives */
1447 decode_winbond(io
,key
,devid
,devrev
,oldid
);
1449 release_region(io
, 3);
1452 static void __devinit
winbond_check2(int io
,int key
)
1454 int origval
[3], devid
, devrev
, oldid
, x_devid
, x_devrev
, x_oldid
;
1456 if (!request_region(io
, 3, __func__
))
1459 origval
[0] = inb(io
); /* Save original values */
1460 origval
[1] = inb(io
+ 1);
1461 origval
[2] = inb(io
+ 2);
1463 /* First probe without the key */
1471 outb(key
,io
); /* Write Magic Byte to EFER, extended
1472 funtion enable register */
1473 outb(0x20,io
+2); /* Write EFIR, extended function index register */
1474 devid
=inb(io
+2); /* Read EFDR, extended function data register */
1479 outb(0xaa,io
); /* Magic Seal */
1481 outb(origval
[0], io
); /* in case we poked some entirely different hardware */
1482 outb(origval
[1], io
+ 1);
1483 outb(origval
[2], io
+ 2);
1485 if ((x_devid
== devid
) && (x_devrev
== devrev
) && (x_oldid
== oldid
))
1486 goto out
; /* protection against false positives */
1488 decode_winbond(io
,key
,devid
,devrev
,oldid
);
1490 release_region(io
, 3);
1493 static void __devinit
smsc_check(int io
, int key
)
1495 int origval
, id
, rev
, oldid
, oldrev
, x_id
, x_rev
, x_oldid
, x_oldrev
;
1497 if (!request_region(io
, 3, __func__
))
1500 origval
= inb(io
); /* Save original value */
1502 /* First probe without the key */
1513 outb(key
,io
); /* Write Magic Sequence to EFER, extended
1514 funtion enable register */
1515 outb(0x0d,io
); /* Write EFIR, extended function index register */
1516 oldid
=inb(io
+1); /* Read EFDR, extended function data register */
1523 outb(0xaa,io
); /* Magic Seal */
1525 outb(origval
, io
); /* in case we poked some entirely different hardware */
1527 if ((x_id
== id
) && (x_oldrev
== oldrev
) &&
1528 (x_oldid
== oldid
) && (x_rev
== rev
))
1529 goto out
; /* protection against false positives */
1531 decode_smsc(io
,key
,oldid
,oldrev
);
1533 release_region(io
, 3);
1537 static void __devinit
detect_and_report_winbond (void)
1539 if (verbose_probing
)
1540 printk(KERN_DEBUG
"Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n");
1541 winbond_check(0x3f0,0x87);
1542 winbond_check(0x370,0x87);
1543 winbond_check(0x2e ,0x87);
1544 winbond_check(0x4e ,0x87);
1545 winbond_check(0x3f0,0x86);
1546 winbond_check2(0x250,0x88);
1547 winbond_check2(0x250,0x89);
1550 static void __devinit
detect_and_report_smsc (void)
1552 if (verbose_probing
)
1553 printk(KERN_DEBUG
"SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n");
1554 smsc_check(0x3f0,0x55);
1555 smsc_check(0x370,0x55);
1556 smsc_check(0x3f0,0x44);
1557 smsc_check(0x370,0x44);
1560 static void __devinit
detect_and_report_it87(void)
1564 if (verbose_probing
)
1565 printk(KERN_DEBUG
"IT8705 Super-IO detection, now testing port 2E ...\n");
1566 if (!request_region(0x2e, 2, __func__
))
1568 origval
= inb(0x2e); /* Save original value */
1574 dev
= inb(0x2f) << 8;
1577 if (dev
== 0x8712 || dev
== 0x8705 || dev
== 0x8715 ||
1578 dev
== 0x8716 || dev
== 0x8718 || dev
== 0x8726) {
1579 printk(KERN_INFO
"IT%04X SuperIO detected.\n", dev
);
1580 outb(0x07, 0x2E); /* Parallel Port */
1582 outb(0xF0, 0x2E); /* BOOT 0x80 off */
1586 outb(0x02, 0x2E); /* Lock */
1589 outb(origval
, 0x2e); /* Oops, sorry to disturb */
1591 release_region(0x2e, 2);
1593 #endif /* CONFIG_PARPORT_PC_SUPERIO */
1595 static int get_superio_dma (struct parport
*p
)
1598 while( (superios
[i
].io
!= p
->base
) && (i
<NR_SUPERIOS
))
1601 return superios
[i
].dma
;
1602 return PARPORT_DMA_NONE
;
1605 static int get_superio_irq (struct parport
*p
)
1608 while( (superios
[i
].io
!= p
->base
) && (i
<NR_SUPERIOS
))
1611 return superios
[i
].irq
;
1612 return PARPORT_IRQ_NONE
;
1616 /* --- Mode detection ------------------------------------- */
1619 * Checks for port existence, all ports support SPP MODE
1621 * 0 : No parallel port at this address
1622 * PARPORT_MODE_PCSPP : SPP port detected
1623 * (if the user specified an ioport himself,
1624 * this shall always be the case!)
1627 static int parport_SPP_supported(struct parport
*pb
)
1632 * first clear an eventually pending EPP timeout
1633 * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
1634 * that does not even respond to SPP cycles if an EPP
1635 * timeout is pending
1637 clear_epp_timeout(pb
);
1639 /* Do a simple read-write test to make sure the port exists. */
1641 outb (w
, CONTROL (pb
));
1643 /* Is there a control register that we can read from? Some
1644 * ports don't allow reads, so read_control just returns a
1645 * software copy. Some ports _do_ allow reads, so bypass the
1646 * software copy here. In addition, some bits aren't
1648 r
= inb (CONTROL (pb
));
1649 if ((r
& 0xf) == w
) {
1651 outb (w
, CONTROL (pb
));
1652 r
= inb (CONTROL (pb
));
1653 outb (0xc, CONTROL (pb
));
1655 return PARPORT_MODE_PCSPP
;
1659 /* That didn't work, but the user thinks there's a
1661 printk (KERN_INFO
"parport 0x%lx (WARNING): CTR: "
1662 "wrote 0x%02x, read 0x%02x\n", pb
->base
, w
, r
);
1664 /* Try the data register. The data lines aren't tri-stated at
1665 * this stage, so we expect back what we wrote. */
1667 parport_pc_write_data (pb
, w
);
1668 r
= parport_pc_read_data (pb
);
1671 parport_pc_write_data (pb
, w
);
1672 r
= parport_pc_read_data (pb
);
1674 return PARPORT_MODE_PCSPP
;
1677 if (user_specified
) {
1678 /* Didn't work, but the user is convinced this is the
1680 printk (KERN_INFO
"parport 0x%lx (WARNING): DATA: "
1681 "wrote 0x%02x, read 0x%02x\n", pb
->base
, w
, r
);
1682 printk (KERN_INFO
"parport 0x%lx: You gave this address, "
1683 "but there is probably no parallel port there!\n",
1687 /* It's possible that we can't read the control register or
1688 * the data register. In that case just believe the user. */
1690 return PARPORT_MODE_PCSPP
;
1697 * Old style XT ports alias io ports every 0x400, hence accessing ECR
1698 * on these cards actually accesses the CTR.
1700 * Modern cards don't do this but reading from ECR will return 0xff
1701 * regardless of what is written here if the card does NOT support
1704 * We first check to see if ECR is the same as CTR. If not, the low
1705 * two bits of ECR aren't writable, so we check by writing ECR and
1706 * reading it back to see if it's what we expect.
1708 static int parport_ECR_present(struct parport
*pb
)
1710 struct parport_pc_private
*priv
= pb
->private_data
;
1711 unsigned char r
= 0xc;
1713 outb (r
, CONTROL (pb
));
1714 if ((inb (ECONTROL (pb
)) & 0x3) == (r
& 0x3)) {
1715 outb (r
^ 0x2, CONTROL (pb
)); /* Toggle bit 1 */
1717 r
= inb (CONTROL (pb
));
1718 if ((inb (ECONTROL (pb
)) & 0x2) == (r
& 0x2))
1719 goto no_reg
; /* Sure that no ECR register exists */
1722 if ((inb (ECONTROL (pb
)) & 0x3 ) != 0x1)
1725 ECR_WRITE (pb
, 0x34);
1726 if (inb (ECONTROL (pb
)) != 0x35)
1730 outb (0xc, CONTROL (pb
));
1732 /* Go to mode 000 */
1733 frob_set_mode (pb
, ECR_SPP
);
1738 outb (0xc, CONTROL (pb
));
1742 #ifdef CONFIG_PARPORT_1284
1743 /* Detect PS/2 support.
1745 * Bit 5 (0x20) sets the PS/2 data direction; setting this high
1746 * allows us to read data from the data lines. In theory we would get back
1747 * 0xff but any peripheral attached to the port may drag some or all of the
1748 * lines down to zero. So if we get back anything that isn't the contents
1749 * of the data register we deem PS/2 support to be present.
1751 * Some SPP ports have "half PS/2" ability - you can't turn off the line
1752 * drivers, but an external peripheral with sufficiently beefy drivers of
1753 * its own can overpower them and assert its own levels onto the bus, from
1754 * where they can then be read back as normal. Ports with this property
1755 * and the right type of device attached are likely to fail the SPP test,
1756 * (as they will appear to have stuck bits) and so the fact that they might
1757 * be misdetected here is rather academic.
1760 static int parport_PS2_supported(struct parport
*pb
)
1764 clear_epp_timeout(pb
);
1766 /* try to tri-state the buffer */
1767 parport_pc_data_reverse (pb
);
1769 parport_pc_write_data(pb
, 0x55);
1770 if (parport_pc_read_data(pb
) != 0x55) ok
++;
1772 parport_pc_write_data(pb
, 0xaa);
1773 if (parport_pc_read_data(pb
) != 0xaa) ok
++;
1775 /* cancel input mode */
1776 parport_pc_data_forward (pb
);
1779 pb
->modes
|= PARPORT_MODE_TRISTATE
;
1781 struct parport_pc_private
*priv
= pb
->private_data
;
1782 priv
->ctr_writable
&= ~0x20;
1788 #ifdef CONFIG_PARPORT_PC_FIFO
1789 static int parport_ECP_supported(struct parport
*pb
)
1792 int config
, configb
;
1794 struct parport_pc_private
*priv
= pb
->private_data
;
1795 /* Translate ECP intrLine to ISA irq value */
1796 static const int intrline
[]= { 0, 7, 9, 10, 11, 14, 15, 5 };
1798 /* If there is no ECR, we have no hope of supporting ECP. */
1802 /* Find out FIFO depth */
1803 ECR_WRITE (pb
, ECR_SPP
<< 5); /* Reset FIFO */
1804 ECR_WRITE (pb
, ECR_TST
<< 5); /* TEST FIFO */
1805 for (i
=0; i
< 1024 && !(inb (ECONTROL (pb
)) & 0x02); i
++)
1806 outb (0xaa, FIFO (pb
));
1809 * Using LGS chipset it uses ECR register, but
1810 * it doesn't support ECP or FIFO MODE
1813 ECR_WRITE (pb
, ECR_SPP
<< 5);
1817 priv
->fifo_depth
= i
;
1818 if (verbose_probing
)
1819 printk (KERN_DEBUG
"0x%lx: FIFO is %d bytes\n", pb
->base
, i
);
1821 /* Find out writeIntrThreshold */
1822 frob_econtrol (pb
, 1<<2, 1<<2);
1823 frob_econtrol (pb
, 1<<2, 0);
1824 for (i
= 1; i
<= priv
->fifo_depth
; i
++) {
1827 if (inb (ECONTROL (pb
)) & (1<<2))
1831 if (i
<= priv
->fifo_depth
) {
1832 if (verbose_probing
)
1833 printk (KERN_DEBUG
"0x%lx: writeIntrThreshold is %d\n",
1836 /* Number of bytes we know we can write if we get an
1840 priv
->writeIntrThreshold
= i
;
1842 /* Find out readIntrThreshold */
1843 frob_set_mode (pb
, ECR_PS2
); /* Reset FIFO and enable PS2 */
1844 parport_pc_data_reverse (pb
); /* Must be in PS2 mode */
1845 frob_set_mode (pb
, ECR_TST
); /* Test FIFO */
1846 frob_econtrol (pb
, 1<<2, 1<<2);
1847 frob_econtrol (pb
, 1<<2, 0);
1848 for (i
= 1; i
<= priv
->fifo_depth
; i
++) {
1849 outb (0xaa, FIFO (pb
));
1850 if (inb (ECONTROL (pb
)) & (1<<2))
1854 if (i
<= priv
->fifo_depth
) {
1855 if (verbose_probing
)
1856 printk (KERN_INFO
"0x%lx: readIntrThreshold is %d\n",
1859 /* Number of bytes we can read if we get an interrupt. */
1862 priv
->readIntrThreshold
= i
;
1864 ECR_WRITE (pb
, ECR_SPP
<< 5); /* Reset FIFO */
1865 ECR_WRITE (pb
, 0xf4); /* Configuration mode */
1866 config
= inb (CONFIGA (pb
));
1867 pword
= (config
>> 4) & 0x7;
1871 printk (KERN_WARNING
"0x%lx: Unsupported pword size!\n",
1876 printk (KERN_WARNING
"0x%lx: Unsupported pword size!\n",
1880 printk (KERN_WARNING
"0x%lx: Unknown implementation ID\n",
1886 priv
->pword
= pword
;
1888 if (verbose_probing
) {
1889 printk (KERN_DEBUG
"0x%lx: PWord is %d bits\n", pb
->base
, 8 * pword
);
1891 printk (KERN_DEBUG
"0x%lx: Interrupts are ISA-%s\n", pb
->base
,
1892 config
& 0x80 ? "Level" : "Pulses");
1894 configb
= inb (CONFIGB (pb
));
1895 printk (KERN_DEBUG
"0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
1896 pb
->base
, config
, configb
);
1897 printk (KERN_DEBUG
"0x%lx: ECP settings irq=", pb
->base
);
1898 if ((configb
>>3) & 0x07)
1899 printk("%d",intrline
[(configb
>>3) & 0x07]);
1901 printk("<none or set by other means>");
1903 if( (configb
& 0x03 ) == 0x00)
1904 printk("<none or set by other means>\n");
1906 printk("%d\n",configb
& 0x07);
1909 /* Go back to mode 000 */
1910 frob_set_mode (pb
, ECR_SPP
);
1916 static int parport_ECPPS2_supported(struct parport
*pb
)
1918 const struct parport_pc_private
*priv
= pb
->private_data
;
1925 oecr
= inb (ECONTROL (pb
));
1926 ECR_WRITE (pb
, ECR_PS2
<< 5);
1927 result
= parport_PS2_supported(pb
);
1928 ECR_WRITE (pb
, oecr
);
1932 /* EPP mode detection */
1934 static int parport_EPP_supported(struct parport
*pb
)
1936 const struct parport_pc_private
*priv
= pb
->private_data
;
1940 * Bit 0 of STR is the EPP timeout bit, this bit is 0
1941 * when EPP is possible and is set high when an EPP timeout
1942 * occurs (EPP uses the HALT line to stop the CPU while it does
1943 * the byte transfer, an EPP timeout occurs if the attached
1944 * device fails to respond after 10 micro seconds).
1946 * This bit is cleared by either reading it (National Semi)
1947 * or writing a 1 to the bit (SMC, UMC, WinBond), others ???
1948 * This bit is always high in non EPP modes.
1951 /* If EPP timeout bit clear then EPP available */
1952 if (!clear_epp_timeout(pb
)) {
1953 return 0; /* No way to clear timeout */
1956 /* Check for Intel bug. */
1959 for (i
= 0x00; i
< 0x80; i
+= 0x20) {
1961 if (clear_epp_timeout (pb
)) {
1962 /* Phony EPP in ECP. */
1968 pb
->modes
|= PARPORT_MODE_EPP
;
1970 /* Set up access functions to use EPP hardware. */
1971 pb
->ops
->epp_read_data
= parport_pc_epp_read_data
;
1972 pb
->ops
->epp_write_data
= parport_pc_epp_write_data
;
1973 pb
->ops
->epp_read_addr
= parport_pc_epp_read_addr
;
1974 pb
->ops
->epp_write_addr
= parport_pc_epp_write_addr
;
1979 static int parport_ECPEPP_supported(struct parport
*pb
)
1981 struct parport_pc_private
*priv
= pb
->private_data
;
1989 oecr
= inb (ECONTROL (pb
));
1990 /* Search for SMC style EPP+ECP mode */
1991 ECR_WRITE (pb
, 0x80);
1992 outb (0x04, CONTROL (pb
));
1993 result
= parport_EPP_supported(pb
);
1995 ECR_WRITE (pb
, oecr
);
1998 /* Set up access functions to use ECP+EPP hardware. */
1999 pb
->ops
->epp_read_data
= parport_pc_ecpepp_read_data
;
2000 pb
->ops
->epp_write_data
= parport_pc_ecpepp_write_data
;
2001 pb
->ops
->epp_read_addr
= parport_pc_ecpepp_read_addr
;
2002 pb
->ops
->epp_write_addr
= parport_pc_ecpepp_write_addr
;
2008 #else /* No IEEE 1284 support */
2010 /* Don't bother probing for modes we know we won't use. */
2011 static int __devinit
parport_PS2_supported(struct parport
*pb
) { return 0; }
2012 #ifdef CONFIG_PARPORT_PC_FIFO
2013 static int parport_ECP_supported(struct parport
*pb
) { return 0; }
2015 static int __devinit
parport_EPP_supported(struct parport
*pb
) { return 0; }
2016 static int __devinit
parport_ECPEPP_supported(struct parport
*pb
){return 0;}
2017 static int __devinit
parport_ECPPS2_supported(struct parport
*pb
){return 0;}
2019 #endif /* No IEEE 1284 support */
2021 /* --- IRQ detection -------------------------------------- */
2023 /* Only if supports ECP mode */
2024 static int programmable_irq_support(struct parport
*pb
)
2027 unsigned char oecr
= inb (ECONTROL (pb
));
2028 static const int lookup
[8] = {
2029 PARPORT_IRQ_NONE
, 7, 9, 10, 11, 14, 15, 5
2032 ECR_WRITE (pb
, ECR_CNF
<< 5); /* Configuration MODE */
2034 intrLine
= (inb (CONFIGB (pb
)) >> 3) & 0x07;
2035 irq
= lookup
[intrLine
];
2037 ECR_WRITE (pb
, oecr
);
2041 static int irq_probe_ECP(struct parport
*pb
)
2046 irqs
= probe_irq_on();
2048 ECR_WRITE (pb
, ECR_SPP
<< 5); /* Reset FIFO */
2049 ECR_WRITE (pb
, (ECR_TST
<< 5) | 0x04);
2050 ECR_WRITE (pb
, ECR_TST
<< 5);
2052 /* If Full FIFO sure that writeIntrThreshold is generated */
2053 for (i
=0; i
< 1024 && !(inb (ECONTROL (pb
)) & 0x02) ; i
++)
2054 outb (0xaa, FIFO (pb
));
2056 pb
->irq
= probe_irq_off(irqs
);
2057 ECR_WRITE (pb
, ECR_SPP
<< 5);
2060 pb
->irq
= PARPORT_IRQ_NONE
;
2066 * This detection seems that only works in National Semiconductors
2067 * This doesn't work in SMC, LGS, and Winbond
2069 static int irq_probe_EPP(struct parport
*pb
)
2071 #ifndef ADVANCED_DETECT
2072 return PARPORT_IRQ_NONE
;
2077 if (pb
->modes
& PARPORT_MODE_PCECR
)
2078 oecr
= inb (ECONTROL (pb
));
2080 irqs
= probe_irq_on();
2082 if (pb
->modes
& PARPORT_MODE_PCECR
)
2083 frob_econtrol (pb
, 0x10, 0x10);
2085 clear_epp_timeout(pb
);
2086 parport_pc_frob_control (pb
, 0x20, 0x20);
2087 parport_pc_frob_control (pb
, 0x10, 0x10);
2088 clear_epp_timeout(pb
);
2090 /* Device isn't expecting an EPP read
2091 * and generates an IRQ.
2093 parport_pc_read_epp(pb
);
2096 pb
->irq
= probe_irq_off (irqs
);
2097 if (pb
->modes
& PARPORT_MODE_PCECR
)
2098 ECR_WRITE (pb
, oecr
);
2099 parport_pc_write_control(pb
, 0xc);
2102 pb
->irq
= PARPORT_IRQ_NONE
;
2105 #endif /* Advanced detection */
2108 static int irq_probe_SPP(struct parport
*pb
)
2110 /* Don't even try to do this. */
2111 return PARPORT_IRQ_NONE
;
2114 /* We will attempt to share interrupt requests since other devices
2115 * such as sound cards and network cards seem to like using the
2118 * When ECP is available we can autoprobe for IRQs.
2119 * NOTE: If we can autoprobe it, we can register the IRQ.
2121 static int parport_irq_probe(struct parport
*pb
)
2123 struct parport_pc_private
*priv
= pb
->private_data
;
2126 pb
->irq
= programmable_irq_support(pb
);
2128 if (pb
->irq
== PARPORT_IRQ_NONE
)
2129 pb
->irq
= irq_probe_ECP(pb
);
2132 if ((pb
->irq
== PARPORT_IRQ_NONE
) && priv
->ecr
&&
2133 (pb
->modes
& PARPORT_MODE_EPP
))
2134 pb
->irq
= irq_probe_EPP(pb
);
2136 clear_epp_timeout(pb
);
2138 if (pb
->irq
== PARPORT_IRQ_NONE
&& (pb
->modes
& PARPORT_MODE_EPP
))
2139 pb
->irq
= irq_probe_EPP(pb
);
2141 clear_epp_timeout(pb
);
2143 if (pb
->irq
== PARPORT_IRQ_NONE
)
2144 pb
->irq
= irq_probe_SPP(pb
);
2146 if (pb
->irq
== PARPORT_IRQ_NONE
)
2147 pb
->irq
= get_superio_irq(pb
);
2152 /* --- DMA detection -------------------------------------- */
2154 /* Only if chipset conforms to ECP ISA Interface Standard */
2155 static int programmable_dma_support (struct parport
*p
)
2157 unsigned char oecr
= inb (ECONTROL (p
));
2160 frob_set_mode (p
, ECR_CNF
);
2162 dma
= inb (CONFIGB(p
)) & 0x07;
2163 /* 000: Indicates jumpered 8-bit DMA if read-only.
2164 100: Indicates jumpered 16-bit DMA if read-only. */
2165 if ((dma
& 0x03) == 0)
2166 dma
= PARPORT_DMA_NONE
;
2168 ECR_WRITE (p
, oecr
);
2172 static int parport_dma_probe (struct parport
*p
)
2174 const struct parport_pc_private
*priv
= p
->private_data
;
2176 p
->dma
= programmable_dma_support(p
); /* ask ECP chipset first */
2177 if (p
->dma
== PARPORT_DMA_NONE
) {
2178 /* ask known Super-IO chips proper, although these
2179 claim ECP compatible, some don't report their DMA
2180 conforming to ECP standards */
2181 p
->dma
= get_superio_dma(p
);
2187 /* --- Initialisation code -------------------------------- */
2189 static LIST_HEAD(ports_list
);
2190 static DEFINE_SPINLOCK(ports_lock
);
2192 struct parport
*parport_pc_probe_port (unsigned long int base
,
2193 unsigned long int base_hi
,
2197 struct parport_pc_private
*priv
;
2198 struct parport_operations
*ops
;
2200 int probedirq
= PARPORT_IRQ_NONE
;
2201 struct resource
*base_res
;
2202 struct resource
*ECR_res
= NULL
;
2203 struct resource
*EPP_res
= NULL
;
2204 struct platform_device
*pdev
= NULL
;
2207 /* We need a physical device to attach to, but none was
2208 * provided. Create our own. */
2209 pdev
= platform_device_register_simple("parport_pc",
2215 dev
->coherent_dma_mask
= DMA_BIT_MASK(24);
2216 dev
->dma_mask
= &dev
->coherent_dma_mask
;
2219 ops
= kmalloc(sizeof (struct parport_operations
), GFP_KERNEL
);
2223 priv
= kmalloc (sizeof (struct parport_pc_private
), GFP_KERNEL
);
2227 /* a misnomer, actually - it's allocate and reserve parport number */
2228 p
= parport_register_port(base
, irq
, dma
, ops
);
2232 base_res
= request_region(base
, 3, p
->name
);
2236 memcpy(ops
, &parport_pc_ops
, sizeof (struct parport_operations
));
2238 priv
->ctr_writable
= ~0x10;
2240 priv
->fifo_depth
= 0;
2241 priv
->dma_buf
= NULL
;
2242 priv
->dma_handle
= 0;
2243 INIT_LIST_HEAD(&priv
->list
);
2247 p
->base_hi
= base_hi
;
2248 p
->modes
= PARPORT_MODE_PCSPP
| PARPORT_MODE_SAFEININT
;
2249 p
->private_data
= priv
;
2252 ECR_res
= request_region(base_hi
, 3, p
->name
);
2254 parport_ECR_present(p
);
2257 if (base
!= 0x3bc) {
2258 EPP_res
= request_region(base
+0x3, 5, p
->name
);
2260 if (!parport_EPP_supported(p
))
2261 parport_ECPEPP_supported(p
);
2263 if (!parport_SPP_supported (p
))
2267 parport_ECPPS2_supported(p
);
2269 parport_PS2_supported(p
);
2271 p
->size
= (p
->modes
& PARPORT_MODE_EPP
)?8:3;
2273 printk(KERN_INFO
"%s: PC-style at 0x%lx", p
->name
, p
->base
);
2274 if (p
->base_hi
&& priv
->ecr
)
2275 printk(" (0x%lx)", p
->base_hi
);
2276 if (p
->irq
== PARPORT_IRQ_AUTO
) {
2277 p
->irq
= PARPORT_IRQ_NONE
;
2278 parport_irq_probe(p
);
2279 } else if (p
->irq
== PARPORT_IRQ_PROBEONLY
) {
2280 p
->irq
= PARPORT_IRQ_NONE
;
2281 parport_irq_probe(p
);
2283 p
->irq
= PARPORT_IRQ_NONE
;
2285 if (p
->irq
!= PARPORT_IRQ_NONE
) {
2286 printk(", irq %d", p
->irq
);
2287 priv
->ctr_writable
|= 0x10;
2289 if (p
->dma
== PARPORT_DMA_AUTO
) {
2290 p
->dma
= PARPORT_DMA_NONE
;
2291 parport_dma_probe(p
);
2294 if (p
->dma
== PARPORT_DMA_AUTO
) /* To use DMA, giving the irq
2295 is mandatory (see above) */
2296 p
->dma
= PARPORT_DMA_NONE
;
2298 #ifdef CONFIG_PARPORT_PC_FIFO
2299 if (parport_ECP_supported(p
) &&
2300 p
->dma
!= PARPORT_DMA_NOFIFO
&&
2301 priv
->fifo_depth
> 0 && p
->irq
!= PARPORT_IRQ_NONE
) {
2302 p
->modes
|= PARPORT_MODE_ECP
| PARPORT_MODE_COMPAT
;
2303 p
->ops
->compat_write_data
= parport_pc_compat_write_block_pio
;
2304 #ifdef CONFIG_PARPORT_1284
2305 p
->ops
->ecp_write_data
= parport_pc_ecp_write_block_pio
;
2306 /* currently broken, but working on it.. (FB) */
2307 /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */
2308 #endif /* IEEE 1284 support */
2309 if (p
->dma
!= PARPORT_DMA_NONE
) {
2310 printk(", dma %d", p
->dma
);
2311 p
->modes
|= PARPORT_MODE_DMA
;
2313 else printk(", using FIFO");
2316 /* We can't use the DMA channel after all. */
2317 p
->dma
= PARPORT_DMA_NONE
;
2318 #endif /* Allowed to use FIFO/DMA */
2321 #define printmode(x) {if(p->modes&PARPORT_MODE_##x){printk("%s%s",f?",":"",#x);f++;}}
2325 printmode(TRISTATE
);
2332 #ifndef CONFIG_PARPORT_1284
2334 #endif /* CONFIG_PARPORT_1284 */
2336 if (probedirq
!= PARPORT_IRQ_NONE
)
2337 printk(KERN_INFO
"%s: irq %d detected\n", p
->name
, probedirq
);
2339 /* If No ECP release the ports grabbed above. */
2340 if (ECR_res
&& (p
->modes
& PARPORT_MODE_ECP
) == 0) {
2341 release_region(base_hi
, 3);
2344 /* Likewise for EEP ports */
2345 if (EPP_res
&& (p
->modes
& PARPORT_MODE_EPP
) == 0) {
2346 release_region(base
+3, 5);
2349 if (p
->irq
!= PARPORT_IRQ_NONE
) {
2350 if (request_irq (p
->irq
, parport_irq_handler
,
2352 printk (KERN_WARNING
"%s: irq %d in use, "
2353 "resorting to polled operation\n",
2355 p
->irq
= PARPORT_IRQ_NONE
;
2356 p
->dma
= PARPORT_DMA_NONE
;
2359 #ifdef CONFIG_PARPORT_PC_FIFO
2361 if (p
->dma
!= PARPORT_DMA_NONE
) {
2362 if (request_dma (p
->dma
, p
->name
)) {
2363 printk (KERN_WARNING
"%s: dma %d in use, "
2364 "resorting to PIO operation\n",
2366 p
->dma
= PARPORT_DMA_NONE
;
2369 dma_alloc_coherent(dev
,
2373 if (! priv
->dma_buf
) {
2374 printk (KERN_WARNING
"%s: "
2375 "cannot get buffer for DMA, "
2376 "resorting to PIO operation\n",
2379 p
->dma
= PARPORT_DMA_NONE
;
2387 /* Done probing. Now put the port into a sensible start-up state. */
2390 * Put the ECP detected port in PS2 mode.
2391 * Do this also for ports that have ECR but don't do ECP.
2393 ECR_WRITE (p
, 0x34);
2395 parport_pc_write_data(p
, 0);
2396 parport_pc_data_forward (p
);
2398 /* Now that we've told the sharing engine about the port, and
2399 found out its characteristics, let the high-level drivers
2401 spin_lock(&ports_lock
);
2402 list_add(&priv
->list
, &ports_list
);
2403 spin_unlock(&ports_lock
);
2404 parport_announce_port (p
);
2410 release_region(base_hi
, 3);
2412 release_region(base
+0x3, 5);
2413 release_region(base
, 3);
2415 parport_put_port(p
);
2422 platform_device_unregister(pdev
);
2426 EXPORT_SYMBOL (parport_pc_probe_port
);
2428 void parport_pc_unregister_port (struct parport
*p
)
2430 struct parport_pc_private
*priv
= p
->private_data
;
2431 struct parport_operations
*ops
= p
->ops
;
2433 parport_remove_port(p
);
2434 spin_lock(&ports_lock
);
2435 list_del_init(&priv
->list
);
2436 spin_unlock(&ports_lock
);
2437 #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
2438 if (p
->dma
!= PARPORT_DMA_NONE
)
2441 if (p
->irq
!= PARPORT_IRQ_NONE
)
2442 free_irq(p
->irq
, p
);
2443 release_region(p
->base
, 3);
2445 release_region(p
->base
+ 3, p
->size
- 3);
2446 if (p
->modes
& PARPORT_MODE_ECP
)
2447 release_region(p
->base_hi
, 3);
2448 #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
2450 dma_free_coherent(p
->physport
->dev
, PAGE_SIZE
,
2454 kfree (p
->private_data
);
2455 parport_put_port(p
);
2456 kfree (ops
); /* hope no-one cached it */
2459 EXPORT_SYMBOL (parport_pc_unregister_port
);
2463 /* ITE support maintained by Rich Liu <richliu@poorman.org> */
2464 static int __devinit
sio_ite_8872_probe (struct pci_dev
*pdev
, int autoirq
,
2466 const struct parport_pc_via_data
*via
)
2468 short inta_addr
[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 };
2469 struct resource
*base_res
;
2471 u32 ite8872_lpt
, ite8872_lpthi
;
2472 u8 ite8872_irq
, type
;
2476 DPRINTK (KERN_DEBUG
"sio_ite_8872_probe()\n");
2478 // make sure which one chip
2479 for(i
= 0; i
< 5; i
++) {
2480 base_res
= request_region(inta_addr
[i
], 32, "it887x");
2483 pci_write_config_dword (pdev
, 0x60,
2484 0xe5000000 | inta_addr
[i
]);
2485 pci_write_config_dword (pdev
, 0x78,
2486 0x00000000 | inta_addr
[i
]);
2487 test
= inb (inta_addr
[i
]);
2488 if (test
!= 0xff) break;
2489 release_region(inta_addr
[i
], 0x8);
2493 printk (KERN_INFO
"parport_pc: cannot find ITE8872 INTA\n");
2497 type
= inb (inta_addr
[i
] + 0x18);
2502 printk (KERN_INFO
"parport_pc: ITE8871 found (1P)\n");
2503 ite8872set
= 0x64200000;
2506 printk (KERN_INFO
"parport_pc: ITE8875 found (1P)\n");
2507 ite8872set
= 0x64200000;
2510 printk (KERN_INFO
"parport_pc: ITE8872 found (2S1P)\n");
2511 ite8872set
= 0x64e00000;
2514 printk (KERN_INFO
"parport_pc: ITE8873 found (1S)\n");
2517 DPRINTK (KERN_DEBUG
"parport_pc: ITE8874 found (2S)\n");
2520 printk (KERN_INFO
"parport_pc: unknown ITE887x\n");
2521 printk (KERN_INFO
"parport_pc: please mail 'lspci -nvv' "
2522 "output to Rich.Liu@ite.com.tw\n");
2526 pci_read_config_byte (pdev
, 0x3c, &ite8872_irq
);
2527 pci_read_config_dword (pdev
, 0x1c, &ite8872_lpt
);
2528 ite8872_lpt
&= 0x0000ff00;
2529 pci_read_config_dword (pdev
, 0x20, &ite8872_lpthi
);
2530 ite8872_lpthi
&= 0x0000ff00;
2531 pci_write_config_dword (pdev
, 0x6c, 0xe3000000 | ite8872_lpt
);
2532 pci_write_config_dword (pdev
, 0x70, 0xe3000000 | ite8872_lpthi
);
2533 pci_write_config_dword (pdev
, 0x80, (ite8872_lpthi
<<16) | ite8872_lpt
);
2534 // SET SPP&EPP , Parallel Port NO DMA , Enable All Function
2536 pci_write_config_dword (pdev
, 0x9c,
2537 ite8872set
| (ite8872_irq
* 0x11111));
2539 DPRINTK (KERN_DEBUG
"ITE887x: The IRQ is %d.\n", ite8872_irq
);
2540 DPRINTK (KERN_DEBUG
"ITE887x: The PARALLEL I/O port is 0x%x.\n",
2542 DPRINTK (KERN_DEBUG
"ITE887x: The PARALLEL I/O porthi is 0x%x.\n",
2545 /* Let the user (or defaults) steer us away from interrupts */
2547 if (autoirq
!= PARPORT_IRQ_AUTO
)
2548 irq
= PARPORT_IRQ_NONE
;
2551 * Release the resource so that parport_pc_probe_port can get it.
2553 release_resource(base_res
);
2554 if (parport_pc_probe_port (ite8872_lpt
, ite8872_lpthi
,
2555 irq
, PARPORT_DMA_NONE
, &pdev
->dev
)) {
2557 "parport_pc: ITE 8872 parallel port: io=0x%X",
2559 if (irq
!= PARPORT_IRQ_NONE
)
2560 printk (", irq=%d", irq
);
2568 /* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru>
2569 based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */
2570 static int __devinitdata parport_init_mode
= 0;
2572 /* Data for two known VIA chips */
2573 static struct parport_pc_via_data via_686a_data __devinitdata
= {
2582 static struct parport_pc_via_data via_8231_data __devinitdata
= {
2592 static int __devinit
sio_via_probe (struct pci_dev
*pdev
, int autoirq
,
2594 const struct parport_pc_via_data
*via
)
2596 u8 tmp
, tmp2
, siofunc
;
2599 unsigned port1
, port2
;
2600 unsigned have_epp
= 0;
2602 printk(KERN_DEBUG
"parport_pc: VIA 686A/8231 detected\n");
2604 switch(parport_init_mode
)
2607 printk(KERN_DEBUG
"parport_pc: setting SPP mode\n");
2608 siofunc
= VIA_FUNCTION_PARPORT_SPP
;
2611 printk(KERN_DEBUG
"parport_pc: setting PS/2 mode\n");
2612 siofunc
= VIA_FUNCTION_PARPORT_SPP
;
2613 ppcontrol
= VIA_PARPORT_BIDIR
;
2616 printk(KERN_DEBUG
"parport_pc: setting EPP mode\n");
2617 siofunc
= VIA_FUNCTION_PARPORT_EPP
;
2618 ppcontrol
= VIA_PARPORT_BIDIR
;
2622 printk(KERN_DEBUG
"parport_pc: setting ECP mode\n");
2623 siofunc
= VIA_FUNCTION_PARPORT_ECP
;
2624 ppcontrol
= VIA_PARPORT_BIDIR
;
2627 printk(KERN_DEBUG
"parport_pc: setting EPP+ECP mode\n");
2628 siofunc
= VIA_FUNCTION_PARPORT_ECP
;
2629 ppcontrol
= VIA_PARPORT_BIDIR
|VIA_PARPORT_ECPEPP
;
2633 printk(KERN_DEBUG
"parport_pc: probing current configuration\n");
2634 siofunc
= VIA_FUNCTION_PROBE
;
2638 * unlock super i/o configuration
2640 pci_read_config_byte(pdev
, via
->via_pci_superio_config_reg
, &tmp
);
2641 tmp
|= via
->via_pci_superio_config_data
;
2642 pci_write_config_byte(pdev
, via
->via_pci_superio_config_reg
, tmp
);
2644 /* Bits 1-0: Parallel Port Mode / Enable */
2645 outb(via
->viacfg_function
, VIA_CONFIG_INDEX
);
2646 tmp
= inb (VIA_CONFIG_DATA
);
2647 /* Bit 5: EPP+ECP enable; bit 7: PS/2 bidirectional port enable */
2648 outb(via
->viacfg_parport_control
, VIA_CONFIG_INDEX
);
2649 tmp2
= inb (VIA_CONFIG_DATA
);
2650 if (siofunc
== VIA_FUNCTION_PROBE
)
2652 siofunc
= tmp
& VIA_FUNCTION_PARPORT_DISABLE
;
2657 tmp
&= ~VIA_FUNCTION_PARPORT_DISABLE
;
2659 outb(via
->viacfg_function
, VIA_CONFIG_INDEX
);
2660 outb(tmp
, VIA_CONFIG_DATA
);
2661 tmp2
&= ~(VIA_PARPORT_BIDIR
|VIA_PARPORT_ECPEPP
);
2663 outb(via
->viacfg_parport_control
, VIA_CONFIG_INDEX
);
2664 outb(tmp2
, VIA_CONFIG_DATA
);
2667 /* Parallel Port I/O Base Address, bits 9-2 */
2668 outb(via
->viacfg_parport_base
, VIA_CONFIG_INDEX
);
2669 port1
= inb(VIA_CONFIG_DATA
) << 2;
2671 printk (KERN_DEBUG
"parport_pc: Current parallel port base: 0x%X\n",port1
);
2672 if ((port1
== 0x3BC) && have_epp
)
2674 outb(via
->viacfg_parport_base
, VIA_CONFIG_INDEX
);
2675 outb((0x378 >> 2), VIA_CONFIG_DATA
);
2676 printk(KERN_DEBUG
"parport_pc: Parallel port base changed to 0x378\n");
2681 * lock super i/o configuration
2683 pci_read_config_byte(pdev
, via
->via_pci_superio_config_reg
, &tmp
);
2684 tmp
&= ~via
->via_pci_superio_config_data
;
2685 pci_write_config_byte(pdev
, via
->via_pci_superio_config_reg
, tmp
);
2687 if (siofunc
== VIA_FUNCTION_PARPORT_DISABLE
) {
2688 printk(KERN_INFO
"parport_pc: VIA parallel port disabled in BIOS\n");
2692 /* Bits 7-4: PnP Routing for Parallel Port IRQ */
2693 pci_read_config_byte(pdev
, via
->via_pci_parport_irq_reg
, &tmp
);
2694 irq
= ((tmp
& VIA_IRQCONTROL_PARALLEL
) >> 4);
2696 if (siofunc
== VIA_FUNCTION_PARPORT_ECP
)
2698 /* Bits 3-2: PnP Routing for Parallel Port DMA */
2699 pci_read_config_byte(pdev
, via
->via_pci_parport_dma_reg
, &tmp
);
2700 dma
= ((tmp
& VIA_DMACONTROL_PARALLEL
) >> 2);
2703 /* if ECP not enabled, DMA is not enabled, assumed bogus 'dma' value */
2704 dma
= PARPORT_DMA_NONE
;
2706 /* Let the user (or defaults) steer us away from interrupts and DMA */
2707 if (autoirq
== PARPORT_IRQ_NONE
) {
2708 irq
= PARPORT_IRQ_NONE
;
2709 dma
= PARPORT_DMA_NONE
;
2711 if (autodma
== PARPORT_DMA_NONE
)
2712 dma
= PARPORT_DMA_NONE
;
2715 case 0x3bc: port2
= 0x7bc; break;
2716 case 0x378: port2
= 0x778; break;
2717 case 0x278: port2
= 0x678; break;
2719 printk(KERN_INFO
"parport_pc: Weird VIA parport base 0x%X, ignoring\n",
2724 /* filter bogus IRQs */
2730 irq
= PARPORT_IRQ_NONE
;
2733 default: /* do nothing */
2737 /* finally, do the probe with values obtained */
2738 if (parport_pc_probe_port (port1
, port2
, irq
, dma
, &pdev
->dev
)) {
2740 "parport_pc: VIA parallel port: io=0x%X", port1
);
2741 if (irq
!= PARPORT_IRQ_NONE
)
2742 printk (", irq=%d", irq
);
2743 if (dma
!= PARPORT_DMA_NONE
)
2744 printk (", dma=%d", dma
);
2749 printk(KERN_WARNING
"parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n",
2755 enum parport_pc_sio_types
{
2756 sio_via_686a
= 0, /* Via VT82C686A motherboard Super I/O */
2757 sio_via_8231
, /* Via VT8231 south bridge integrated Super IO */
2762 /* each element directly indexed from enum list, above */
2763 static struct parport_pc_superio
{
2764 int (*probe
) (struct pci_dev
*pdev
, int autoirq
, int autodma
,
2765 const struct parport_pc_via_data
*via
);
2766 const struct parport_pc_via_data
*via
;
2767 } parport_pc_superio_info
[] __devinitdata
= {
2768 { sio_via_probe
, &via_686a_data
, },
2769 { sio_via_probe
, &via_8231_data
, },
2770 { sio_ite_8872_probe
, NULL
, },
2773 enum parport_pc_pci_cards
{
2774 siig_1p_10x
= last_sio
,
2779 lava_parallel_dual_a
,
2780 lava_parallel_dual_b
,
2827 /* each element directly indexed from enum list, above
2828 * (but offset by last_sio) */
2829 static struct parport_pc_pci
{
2831 struct { /* BAR (base address registers) numbers in the config
2834 int hi
; /* -1 if not there, >6 for offset-method (max
2838 /* If set, this is called immediately after pci_enable_device.
2839 * If it returns non-zero, no probing will take place and the
2840 * ports will not be used. */
2841 int (*preinit_hook
) (struct pci_dev
*pdev
, int autoirq
, int autodma
);
2843 /* If set, this is called after probing for ports. If 'failed'
2844 * is non-zero we couldn't use any of the ports. */
2845 void (*postinit_hook
) (struct pci_dev
*pdev
, int failed
);
2847 /* siig_1p_10x */ { 1, { { 2, 3 }, } },
2848 /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } },
2849 /* siig_1p_20x */ { 1, { { 0, 1 }, } },
2850 /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } },
2851 /* lava_parallel */ { 1, { { 0, -1 }, } },
2852 /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } },
2853 /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } },
2854 /* boca_ioppar */ { 1, { { 0, -1 }, } },
2855 /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } },
2856 /* timedia_4078a */ { 1, { { 2, -1 }, } },
2857 /* timedia_4079h */ { 1, { { 2, 3 }, } },
2858 /* timedia_4085h */ { 2, { { 2, -1 }, { 4, -1 }, } },
2859 /* timedia_4088a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2860 /* timedia_4089a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2861 /* timedia_4095a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2862 /* timedia_4096a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2863 /* timedia_4078u */ { 1, { { 2, -1 }, } },
2864 /* timedia_4079a */ { 1, { { 2, 3 }, } },
2865 /* timedia_4085u */ { 2, { { 2, -1 }, { 4, -1 }, } },
2866 /* timedia_4079r */ { 1, { { 2, 3 }, } },
2867 /* timedia_4079s */ { 1, { { 2, 3 }, } },
2868 /* timedia_4079d */ { 1, { { 2, 3 }, } },
2869 /* timedia_4079e */ { 1, { { 2, 3 }, } },
2870 /* timedia_4079f */ { 1, { { 2, 3 }, } },
2871 /* timedia_9079a */ { 1, { { 2, 3 }, } },
2872 /* timedia_9079b */ { 1, { { 2, 3 }, } },
2873 /* timedia_9079c */ { 1, { { 2, 3 }, } },
2874 /* timedia_4006a */ { 1, { { 0, -1 }, } },
2875 /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } },
2876 /* timedia_4008a */ { 1, { { 0, 1 }, } },
2877 /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2878 /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } },
2879 /* SYBA uses fixed offsets in
2881 /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } },
2882 /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } },
2883 /* titan_010l */ { 1, { { 3, -1 }, } },
2884 /* titan_1284p1 */ { 1, { { 0, 1 }, } },
2885 /* titan_1284p2 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2886 /* avlab_1p */ { 1, { { 0, 1}, } },
2887 /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} },
2888 /* The Oxford Semi cards are unusual: 954 doesn't support ECP,
2889 * and 840 locks up if you write 1 to bit 2! */
2890 /* oxsemi_952 */ { 1, { { 0, 1 }, } },
2891 /* oxsemi_954 */ { 1, { { 0, -1 }, } },
2892 /* oxsemi_840 */ { 1, { { 0, 1 }, } },
2893 /* aks_0100 */ { 1, { { 0, -1 }, } },
2894 /* mobility_pp */ { 1, { { 0, 1 }, } },
2895 /* netmos_9705 */ { 1, { { 0, -1 }, } }, /* untested */
2896 /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} }, /* untested */
2897 /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} }, /* untested */
2898 /* netmos_9805 */ { 1, { { 0, -1 }, } }, /* untested */
2899 /* netmos_9815 */ { 2, { { 0, -1 }, { 2, -1 }, } }, /* untested */
2900 /* quatech_sppxp100 */ { 1, { { 0, 1 }, } },
2903 static const struct pci_device_id parport_pc_pci_tbl
[] = {
2904 /* Super-IO onboard chips */
2905 { 0x1106, 0x0686, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, sio_via_686a
},
2906 { 0x1106, 0x8231, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, sio_via_8231
},
2907 { PCI_VENDOR_ID_ITE
, PCI_DEVICE_ID_ITE_8872
,
2908 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, sio_ite_8872
},
2911 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_1P_10x
,
2912 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_1p_10x
},
2913 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_2P_10x
,
2914 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_2p_10x
},
2915 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_1P_20x
,
2916 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_1p_20x
},
2917 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_2P_20x
,
2918 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_2p_20x
},
2919 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_PARALLEL
,
2920 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, lava_parallel
},
2921 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_DUAL_PAR_A
,
2922 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, lava_parallel_dual_a
},
2923 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_DUAL_PAR_B
,
2924 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, lava_parallel_dual_b
},
2925 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR
,
2926 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, boca_ioppar
},
2927 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9050
,
2928 PCI_SUBVENDOR_ID_EXSYS
, PCI_SUBDEVICE_ID_EXSYS_4014
, 0,0, plx_9050
},
2929 /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
2930 { 0x1409, 0x7168, 0x1409, 0x4078, 0, 0, timedia_4078a
},
2931 { 0x1409, 0x7168, 0x1409, 0x4079, 0, 0, timedia_4079h
},
2932 { 0x1409, 0x7168, 0x1409, 0x4085, 0, 0, timedia_4085h
},
2933 { 0x1409, 0x7168, 0x1409, 0x4088, 0, 0, timedia_4088a
},
2934 { 0x1409, 0x7168, 0x1409, 0x4089, 0, 0, timedia_4089a
},
2935 { 0x1409, 0x7168, 0x1409, 0x4095, 0, 0, timedia_4095a
},
2936 { 0x1409, 0x7168, 0x1409, 0x4096, 0, 0, timedia_4096a
},
2937 { 0x1409, 0x7168, 0x1409, 0x5078, 0, 0, timedia_4078u
},
2938 { 0x1409, 0x7168, 0x1409, 0x5079, 0, 0, timedia_4079a
},
2939 { 0x1409, 0x7168, 0x1409, 0x5085, 0, 0, timedia_4085u
},
2940 { 0x1409, 0x7168, 0x1409, 0x6079, 0, 0, timedia_4079r
},
2941 { 0x1409, 0x7168, 0x1409, 0x7079, 0, 0, timedia_4079s
},
2942 { 0x1409, 0x7168, 0x1409, 0x8079, 0, 0, timedia_4079d
},
2943 { 0x1409, 0x7168, 0x1409, 0x9079, 0, 0, timedia_4079e
},
2944 { 0x1409, 0x7168, 0x1409, 0xa079, 0, 0, timedia_4079f
},
2945 { 0x1409, 0x7168, 0x1409, 0xb079, 0, 0, timedia_9079a
},
2946 { 0x1409, 0x7168, 0x1409, 0xc079, 0, 0, timedia_9079b
},
2947 { 0x1409, 0x7168, 0x1409, 0xd079, 0, 0, timedia_9079c
},
2948 { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a
},
2949 { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014
},
2950 { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a
},
2951 { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018
},
2952 { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a
},
2953 { 0x14f2, 0x0121, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, mobility_pp
},
2954 { PCI_VENDOR_ID_SYBA
, PCI_DEVICE_ID_SYBA_2P_EPP
,
2955 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, syba_2p_epp
},
2956 { PCI_VENDOR_ID_SYBA
, PCI_DEVICE_ID_SYBA_1P_ECP
,
2957 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, syba_1p_ecp
},
2958 { PCI_VENDOR_ID_TITAN
, PCI_DEVICE_ID_TITAN_010L
,
2959 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, titan_010l
},
2960 { 0x9710, 0x9805, 0x1000, 0x0010, 0, 0, titan_1284p1
},
2961 { 0x9710, 0x9815, 0x1000, 0x0020, 0, 0, titan_1284p2
},
2962 /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
2963 { 0x14db, 0x2120, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, avlab_1p
}, /* AFAVLAB_TK9902 */
2964 { 0x14db, 0x2121, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, avlab_2p
},
2965 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_16PCI952PP
,
2966 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_952
},
2967 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_16PCI954PP
,
2968 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_954
},
2969 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_12PCI840
,
2970 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_840
},
2971 { PCI_VENDOR_ID_AKS
, PCI_DEVICE_ID_AKS_ALADDINCARD
,
2972 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, aks_0100
},
2973 /* NetMos communication controllers */
2974 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9705
,
2975 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9705
},
2976 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9715
,
2977 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9715
},
2978 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9755
,
2979 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9755
},
2980 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9805
,
2981 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9805
},
2982 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9815
,
2983 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9815
},
2984 /* Quatech SPPXP-100 Parallel port PCI ExpressCard */
2985 { PCI_VENDOR_ID_QUATECH
, PCI_DEVICE_ID_QUATECH_SPPXP_100
,
2986 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, quatech_sppxp100
},
2987 { 0, } /* terminate list */
2989 MODULE_DEVICE_TABLE(pci
,parport_pc_pci_tbl
);
2991 struct pci_parport_data
{
2993 struct parport
*ports
[2];
2996 static int parport_pc_pci_probe (struct pci_dev
*dev
,
2997 const struct pci_device_id
*id
)
2999 int err
, count
, n
, i
= id
->driver_data
;
3000 struct pci_parport_data
*data
;
3003 /* This is an onboard Super-IO and has already been probed */
3006 /* This is a PCI card */
3009 if ((err
= pci_enable_device (dev
)) != 0)
3012 data
= kmalloc(sizeof(struct pci_parport_data
), GFP_KERNEL
);
3016 if (cards
[i
].preinit_hook
&&
3017 cards
[i
].preinit_hook (dev
, PARPORT_IRQ_NONE
, PARPORT_DMA_NONE
)) {
3022 for (n
= 0; n
< cards
[i
].numports
; n
++) {
3023 int lo
= cards
[i
].addr
[n
].lo
;
3024 int hi
= cards
[i
].addr
[n
].hi
;
3025 unsigned long io_lo
, io_hi
;
3026 io_lo
= pci_resource_start (dev
, lo
);
3028 if ((hi
>= 0) && (hi
<= 6))
3029 io_hi
= pci_resource_start (dev
, hi
);
3031 io_lo
+= hi
; /* Reinterpret the meaning of
3032 "hi" as an offset (see SYBA
3034 /* TODO: test if sharing interrupts works */
3035 printk (KERN_DEBUG
"PCI parallel port detected: %04x:%04x, "
3036 "I/O at %#lx(%#lx)\n",
3037 parport_pc_pci_tbl
[i
+ last_sio
].vendor
,
3038 parport_pc_pci_tbl
[i
+ last_sio
].device
, io_lo
, io_hi
);
3039 data
->ports
[count
] =
3040 parport_pc_probe_port (io_lo
, io_hi
, PARPORT_IRQ_NONE
,
3041 PARPORT_DMA_NONE
, &dev
->dev
);
3042 if (data
->ports
[count
])
3048 if (cards
[i
].postinit_hook
)
3049 cards
[i
].postinit_hook (dev
, count
== 0);
3052 pci_set_drvdata(dev
, data
);
3061 static void __devexit
parport_pc_pci_remove(struct pci_dev
*dev
)
3063 struct pci_parport_data
*data
= pci_get_drvdata(dev
);
3066 pci_set_drvdata(dev
, NULL
);
3069 for (i
= data
->num
- 1; i
>= 0; i
--)
3070 parport_pc_unregister_port(data
->ports
[i
]);
3076 static struct pci_driver parport_pc_pci_driver
= {
3077 .name
= "parport_pc",
3078 .id_table
= parport_pc_pci_tbl
,
3079 .probe
= parport_pc_pci_probe
,
3080 .remove
= __devexit_p(parport_pc_pci_remove
),
3083 static int __init
parport_pc_init_superio (int autoirq
, int autodma
)
3085 const struct pci_device_id
*id
;
3086 struct pci_dev
*pdev
= NULL
;
3089 for_each_pci_dev(pdev
) {
3090 id
= pci_match_id(parport_pc_pci_tbl
, pdev
);
3091 if (id
== NULL
|| id
->driver_data
>= last_sio
)
3094 if (parport_pc_superio_info
[id
->driver_data
].probe
3095 (pdev
, autoirq
, autodma
,parport_pc_superio_info
[id
->driver_data
].via
)) {
3100 return ret
; /* number of devices found */
3103 static struct pci_driver parport_pc_pci_driver
;
3104 static int __init
parport_pc_init_superio(int autoirq
, int autodma
) {return 0;}
3105 #endif /* CONFIG_PCI */
3109 static const struct pnp_device_id parport_pc_pnp_tbl
[] = {
3110 /* Standard LPT Printer Port */
3111 {.id
= "PNP0400", .driver_data
= 0},
3112 /* ECP Printer Port */
3113 {.id
= "PNP0401", .driver_data
= 0},
3117 MODULE_DEVICE_TABLE(pnp
,parport_pc_pnp_tbl
);
3119 static int parport_pc_pnp_probe(struct pnp_dev
*dev
, const struct pnp_device_id
*id
)
3121 struct parport
*pdata
;
3122 unsigned long io_lo
, io_hi
;
3125 if (pnp_port_valid(dev
,0) &&
3126 !(pnp_port_flags(dev
,0) & IORESOURCE_DISABLED
)) {
3127 io_lo
= pnp_port_start(dev
,0);
3131 if (pnp_port_valid(dev
,1) &&
3132 !(pnp_port_flags(dev
,1) & IORESOURCE_DISABLED
)) {
3133 io_hi
= pnp_port_start(dev
,1);
3137 if (pnp_irq_valid(dev
,0) &&
3138 !(pnp_irq_flags(dev
,0) & IORESOURCE_DISABLED
)) {
3139 irq
= pnp_irq(dev
,0);
3141 irq
= PARPORT_IRQ_NONE
;
3143 if (pnp_dma_valid(dev
,0) &&
3144 !(pnp_dma_flags(dev
,0) & IORESOURCE_DISABLED
)) {
3145 dma
= pnp_dma(dev
,0);
3147 dma
= PARPORT_DMA_NONE
;
3149 dev_info(&dev
->dev
, "reported by %s\n", dev
->protocol
->name
);
3150 if (!(pdata
= parport_pc_probe_port (io_lo
, io_hi
, irq
, dma
, &dev
->dev
)))
3153 pnp_set_drvdata(dev
,pdata
);
3157 static void parport_pc_pnp_remove(struct pnp_dev
*dev
)
3159 struct parport
*pdata
= (struct parport
*)pnp_get_drvdata(dev
);
3163 parport_pc_unregister_port(pdata
);
3166 /* we only need the pnp layer to activate the device, at least for now */
3167 static struct pnp_driver parport_pc_pnp_driver
= {
3168 .name
= "parport_pc",
3169 .id_table
= parport_pc_pnp_tbl
,
3170 .probe
= parport_pc_pnp_probe
,
3171 .remove
= parport_pc_pnp_remove
,
3175 static struct pnp_driver parport_pc_pnp_driver
;
3176 #endif /* CONFIG_PNP */
3178 static int __devinit
parport_pc_platform_probe(struct platform_device
*pdev
)
3180 /* Always succeed, the actual probing is done in
3181 * parport_pc_probe_port(). */
3185 static struct platform_driver parport_pc_platform_driver
= {
3187 .owner
= THIS_MODULE
,
3188 .name
= "parport_pc",
3190 .probe
= parport_pc_platform_probe
,
3193 /* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */
3194 static int __devinit
__attribute__((unused
))
3195 parport_pc_find_isa_ports (int autoirq
, int autodma
)
3199 if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq
, autodma
, NULL
))
3201 if (parport_pc_probe_port(0x378, 0x778, autoirq
, autodma
, NULL
))
3203 if (parport_pc_probe_port(0x278, 0x678, autoirq
, autodma
, NULL
))
3209 /* This function is called by parport_pc_init if the user didn't
3210 * specify any ports to probe. Its job is to find some ports. Order
3211 * is important here -- we want ISA ports to be registered first,
3212 * followed by PCI cards (for least surprise), but before that we want
3213 * to do chipset-specific tests for some onboard ports that we know
3216 * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY
3217 * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO
3219 static void __init
parport_pc_find_ports (int autoirq
, int autodma
)
3223 #ifdef CONFIG_PARPORT_PC_SUPERIO
3224 detect_and_report_it87();
3225 detect_and_report_winbond();
3226 detect_and_report_smsc();
3229 /* Onboard SuperIO chipsets that show themselves on the PCI bus. */
3230 count
+= parport_pc_init_superio(autoirq
, autodma
);
3232 /* PnP ports, skip detection if SuperIO already found them */
3234 err
= pnp_register_driver(&parport_pc_pnp_driver
);
3236 pnp_registered_parport
= 1;
3239 /* ISA ports and whatever (see asm/parport.h). */
3240 parport_pc_find_nonpci_ports(autoirq
, autodma
);
3242 err
= pci_register_driver(&parport_pc_pci_driver
);
3244 pci_registered_parport
= 1;
3248 * Piles of crap below pretend to be a parser for module and kernel
3249 * parameters. Say "thank you" to whoever had come up with that
3250 * syntax and keep in mind that code below is a cleaned up version.
3253 static int __initdata io
[PARPORT_PC_MAX_PORTS
+1] = { [0 ... PARPORT_PC_MAX_PORTS
] = 0 };
3254 static int __initdata io_hi
[PARPORT_PC_MAX_PORTS
+1] =
3255 { [0 ... PARPORT_PC_MAX_PORTS
] = PARPORT_IOHI_AUTO
};
3256 static int __initdata dmaval
[PARPORT_PC_MAX_PORTS
] = { [0 ... PARPORT_PC_MAX_PORTS
-1] = PARPORT_DMA_NONE
};
3257 static int __initdata irqval
[PARPORT_PC_MAX_PORTS
] = { [0 ... PARPORT_PC_MAX_PORTS
-1] = PARPORT_IRQ_PROBEONLY
};
3259 static int __init
parport_parse_param(const char *s
, int *val
,
3260 int automatic
, int none
, int nofifo
)
3264 if (!strncmp(s
, "auto", 4))
3266 else if (!strncmp(s
, "none", 4))
3268 else if (nofifo
&& !strncmp(s
, "nofifo", 4))
3272 unsigned long r
= simple_strtoul(s
, &ep
, 0);
3276 printk(KERN_ERR
"parport: bad specifier `%s'\n", s
);
3283 static int __init
parport_parse_irq(const char *irqstr
, int *val
)
3285 return parport_parse_param(irqstr
, val
, PARPORT_IRQ_AUTO
,
3286 PARPORT_IRQ_NONE
, 0);
3289 static int __init
parport_parse_dma(const char *dmastr
, int *val
)
3291 return parport_parse_param(dmastr
, val
, PARPORT_DMA_AUTO
,
3292 PARPORT_DMA_NONE
, PARPORT_DMA_NOFIFO
);
3296 static int __init
parport_init_mode_setup(char *str
)
3298 printk(KERN_DEBUG
"parport_pc.c: Specified parameter parport_init_mode=%s\n", str
);
3300 if (!strcmp (str
, "spp"))
3301 parport_init_mode
=1;
3302 if (!strcmp (str
, "ps2"))
3303 parport_init_mode
=2;
3304 if (!strcmp (str
, "epp"))
3305 parport_init_mode
=3;
3306 if (!strcmp (str
, "ecp"))
3307 parport_init_mode
=4;
3308 if (!strcmp (str
, "ecpepp"))
3309 parport_init_mode
=5;
3315 static const char *irq
[PARPORT_PC_MAX_PORTS
];
3316 static const char *dma
[PARPORT_PC_MAX_PORTS
];
3318 MODULE_PARM_DESC(io
, "Base I/O address (SPP regs)");
3319 module_param_array(io
, int, NULL
, 0);
3320 MODULE_PARM_DESC(io_hi
, "Base I/O address (ECR)");
3321 module_param_array(io_hi
, int, NULL
, 0);
3322 MODULE_PARM_DESC(irq
, "IRQ line");
3323 module_param_array(irq
, charp
, NULL
, 0);
3324 MODULE_PARM_DESC(dma
, "DMA channel");
3325 module_param_array(dma
, charp
, NULL
, 0);
3326 #if defined(CONFIG_PARPORT_PC_SUPERIO) || \
3327 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
3328 MODULE_PARM_DESC(verbose_probing
, "Log chit-chat during initialisation");
3329 module_param(verbose_probing
, int, 0644);
3332 static char *init_mode
;
3333 MODULE_PARM_DESC(init_mode
, "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
3334 module_param(init_mode
, charp
, 0);
3337 static int __init
parse_parport_params(void)
3344 parport_init_mode_setup(init_mode
);
3347 for (i
= 0; i
< PARPORT_PC_MAX_PORTS
&& io
[i
]; i
++) {
3348 if (parport_parse_irq(irq
[i
], &val
))
3351 if (parport_parse_dma(dma
[i
], &val
))
3356 /* The user can make us use any IRQs or DMAs we find. */
3357 if (irq
[0] && !parport_parse_irq(irq
[0], &val
))
3359 case PARPORT_IRQ_NONE
:
3360 case PARPORT_IRQ_AUTO
:
3364 printk (KERN_WARNING
3365 "parport_pc: irq specified "
3366 "without base address. Use 'io=' "
3367 "to specify one\n");
3370 if (dma
[0] && !parport_parse_dma(dma
[0], &val
))
3372 case PARPORT_DMA_NONE
:
3373 case PARPORT_DMA_AUTO
:
3377 printk (KERN_WARNING
3378 "parport_pc: dma specified "
3379 "without base address. Use 'io=' "
3380 "to specify one\n");
3388 static int parport_setup_ptr __initdata
= 0;
3391 * Acceptable parameters:
3395 * parport=0xBASE[,IRQ[,DMA]]
3397 * IRQ/DMA may be numeric or 'auto' or 'none'
3399 static int __init
parport_setup (char *str
)
3405 if (!str
|| !*str
|| (*str
== '0' && !*(str
+1))) {
3406 /* Disable parport if "parport=0" in cmdline */
3407 io
[0] = PARPORT_DISABLE
;
3411 if (!strncmp (str
, "auto", 4)) {
3412 irqval
[0] = PARPORT_IRQ_AUTO
;
3413 dmaval
[0] = PARPORT_DMA_AUTO
;
3417 val
= simple_strtoul (str
, &endptr
, 0);
3418 if (endptr
== str
) {
3419 printk (KERN_WARNING
"parport=%s not understood\n", str
);
3423 if (parport_setup_ptr
== PARPORT_PC_MAX_PORTS
) {
3424 printk(KERN_ERR
"parport=%s ignored, too many ports\n", str
);
3428 io
[parport_setup_ptr
] = val
;
3429 irqval
[parport_setup_ptr
] = PARPORT_IRQ_NONE
;
3430 dmaval
[parport_setup_ptr
] = PARPORT_DMA_NONE
;
3432 sep
= strchr(str
, ',');
3434 if (parport_parse_irq(sep
, &val
))
3436 irqval
[parport_setup_ptr
] = val
;
3437 sep
= strchr(sep
, ',');
3439 if (parport_parse_dma(sep
, &val
))
3441 dmaval
[parport_setup_ptr
] = val
;
3444 parport_setup_ptr
++;
3448 static int __init
parse_parport_params(void)
3450 return io
[0] == PARPORT_DISABLE
;
3453 __setup ("parport=", parport_setup
);
3456 * Acceptable parameters:
3458 * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
3461 __setup("parport_init_mode=",parport_init_mode_setup
);
3465 /* "Parser" ends here */
3467 static int __init
parport_pc_init(void)
3471 if (parse_parport_params())
3474 err
= platform_driver_register(&parport_pc_platform_driver
);
3480 /* Only probe the ports we were given. */
3482 for (i
= 0; i
< PARPORT_PC_MAX_PORTS
; i
++) {
3485 if ((io_hi
[i
]) == PARPORT_IOHI_AUTO
)
3486 io_hi
[i
] = 0x400 + io
[i
];
3487 parport_pc_probe_port(io
[i
], io_hi
[i
],
3488 irqval
[i
], dmaval
[i
], NULL
);
3491 parport_pc_find_ports (irqval
[0], dmaval
[0]);
3496 static void __exit
parport_pc_exit(void)
3498 if (pci_registered_parport
)
3499 pci_unregister_driver (&parport_pc_pci_driver
);
3500 if (pnp_registered_parport
)
3501 pnp_unregister_driver (&parport_pc_pnp_driver
);
3502 platform_driver_unregister(&parport_pc_platform_driver
);
3504 while (!list_empty(&ports_list
)) {
3505 struct parport_pc_private
*priv
;
3506 struct parport
*port
;
3507 priv
= list_entry(ports_list
.next
,
3508 struct parport_pc_private
, list
);
3510 if (port
->dev
&& port
->dev
->bus
== &platform_bus_type
)
3511 platform_device_unregister(
3512 to_platform_device(port
->dev
));
3513 parport_pc_unregister_port(port
);
3517 MODULE_AUTHOR("Phil Blundell, Tim Waugh, others");
3518 MODULE_DESCRIPTION("PC-style parallel port driver");
3519 MODULE_LICENSE("GPL");
3520 module_init(parport_pc_init
)
3521 module_exit(parport_pc_exit
)