1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Low-level parallel-port routines for 8255-based PC-style hardware.
4 * Authors: Phil Blundell <philb@gnu.org>
5 * Tim Waugh <tim@cyberelk.demon.co.uk>
6 * Jose Renau <renau@acm.org>
10 * based on work by Grant Guenther <grant@torque.net> and Phil Blundell.
12 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
13 * DMA support - Bert De Jonghe <bert@sophis.be>
14 * Many ECP bugs fixed. Fred Barnes & Jamie Lokier, 1999
15 * More PCI support now conditional on CONFIG_PCI, 03/2001, Paul G.
16 * Various hacks, Fred Barnes, 04/2001
17 * Updated probing logic - Adam Belay <ambx1@neo.rr.com>
20 /* This driver should work with any hardware that is broadly compatible
21 * with that in the IBM PC. This applies to the majority of integrated
22 * I/O chipsets that are commonly available. The expected register
29 * In addition, there are some optional registers:
33 * base+0x400 ECP config A
34 * base+0x401 ECP config B
35 * base+0x402 ECP control
37 * All registers are 8 bits wide and read/write. If your hardware differs
38 * only in register addresses (eg because your registers are on 32-bit
39 * word boundaries) then you can alter the constants in parport_pc.h to
42 * Note that the ECP registers may not start at offset 0x400 for PCI cards,
43 * but rather will start at port->base_hi.
46 #include <linux/module.h>
47 #include <linux/init.h>
48 #include <linux/sched/signal.h>
49 #include <linux/delay.h>
50 #include <linux/errno.h>
51 #include <linux/interrupt.h>
52 #include <linux/ioport.h>
53 #include <linux/kernel.h>
54 #include <linux/slab.h>
55 #include <linux/dma-mapping.h>
56 #include <linux/pci.h>
57 #include <linux/pnp.h>
58 #include <linux/platform_device.h>
59 #include <linux/sysctl.h>
61 #include <linux/uaccess.h>
65 #include <linux/parport.h>
66 #include <linux/parport_pc.h>
67 #include <linux/via.h>
68 #include <asm/parport.h>
70 #define PARPORT_PC_MAX_PORTS PARPORT_MAX
72 #ifdef CONFIG_ISA_DMA_API
85 #define ECR_MODE_MASK 0xe0
86 #define ECR_WRITE(p, v) frob_econtrol((p), 0xff, (v))
91 static struct superio_struct
{ /* For Super-IO chips autodetection */
95 } superios
[NR_SUPERIOS
] = { {0,},};
97 static int user_specified
;
98 #if defined(CONFIG_PARPORT_PC_SUPERIO) || \
99 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
100 static int verbose_probing
;
102 static int pci_registered_parport
;
103 static int pnp_registered_parport
;
105 /* frob_control, but for ECR */
106 static void frob_econtrol(struct parport
*pb
, unsigned char m
,
109 unsigned char ectr
= 0;
112 ectr
= inb(ECONTROL(pb
));
114 pr_debug("frob_econtrol(%02x,%02x): %02x -> %02x\n",
115 m
, v
, ectr
, (ectr
& ~m
) ^ v
);
117 outb((ectr
& ~m
) ^ v
, ECONTROL(pb
));
120 static inline void frob_set_mode(struct parport
*p
, int mode
)
122 frob_econtrol(p
, ECR_MODE_MASK
, mode
<< 5);
125 #ifdef CONFIG_PARPORT_PC_FIFO
126 /* Safely change the mode bits in the ECR
129 -EBUSY: Could not drain FIFO in some finite amount of time,
132 static int change_mode(struct parport
*p
, int m
)
134 const struct parport_pc_private
*priv
= p
->physport
->private_data
;
138 pr_debug("parport change_mode ECP-ISA to mode 0x%02x\n", m
);
141 printk(KERN_DEBUG
"change_mode: but there's no ECR!\n");
145 /* Bits <7:5> contain the mode. */
146 oecr
= inb(ECONTROL(p
));
147 mode
= (oecr
>> 5) & 0x7;
151 if (mode
>= 2 && !(priv
->ctr
& 0x20)) {
152 /* This mode resets the FIFO, so we may
153 * have to wait for it to drain first. */
154 unsigned long expire
= jiffies
+ p
->physport
->cad
->timeout
;
157 case ECR_PPF
: /* Parallel Port FIFO mode */
158 case ECR_ECP
: /* ECP Parallel Port mode */
159 /* Busy wait for 200us */
160 for (counter
= 0; counter
< 40; counter
++) {
161 if (inb(ECONTROL(p
)) & 0x01)
163 if (signal_pending(current
))
169 while (!(inb(ECONTROL(p
)) & 0x01)) {
170 if (time_after_eq(jiffies
, expire
))
171 /* The FIFO is stuck. */
173 schedule_timeout_interruptible(
174 msecs_to_jiffies(10));
175 if (signal_pending(current
))
181 if (mode
>= 2 && m
>= 2) {
182 /* We have to go through mode 001 */
184 oecr
|= ECR_PS2
<< 5;
194 #endif /* FIFO support */
197 * Clear TIMEOUT BIT in EPP MODE
199 * This is also used in SPP detection.
201 static int clear_epp_timeout(struct parport
*pb
)
205 if (!(parport_pc_read_status(pb
) & 0x01))
208 /* To clear timeout some chips require double read */
209 parport_pc_read_status(pb
);
210 r
= parport_pc_read_status(pb
);
211 outb(r
| 0x01, STATUS(pb
)); /* Some reset by writing 1 */
212 outb(r
& 0xfe, STATUS(pb
)); /* Others by writing 0 */
213 r
= parport_pc_read_status(pb
);
221 * Most of these aren't static because they may be used by the
222 * parport_xxx_yyy macros. extern __inline__ versions of several
223 * of these are in parport_pc.h.
226 static void parport_pc_init_state(struct pardevice
*dev
,
227 struct parport_state
*s
)
231 dev
->port
->irq
!= PARPORT_IRQ_NONE
)
235 s
->u
.pc
.ecr
= 0x34; /* NetMos chip can cause problems 0x24;
239 static void parport_pc_save_state(struct parport
*p
, struct parport_state
*s
)
241 const struct parport_pc_private
*priv
= p
->physport
->private_data
;
242 s
->u
.pc
.ctr
= priv
->ctr
;
244 s
->u
.pc
.ecr
= inb(ECONTROL(p
));
247 static void parport_pc_restore_state(struct parport
*p
,
248 struct parport_state
*s
)
250 struct parport_pc_private
*priv
= p
->physport
->private_data
;
251 register unsigned char c
= s
->u
.pc
.ctr
& priv
->ctr_writable
;
255 ECR_WRITE(p
, s
->u
.pc
.ecr
);
258 #ifdef CONFIG_PARPORT_1284
259 static size_t parport_pc_epp_read_data(struct parport
*port
, void *buf
,
260 size_t length
, int flags
)
264 if (flags
& PARPORT_W91284PIC
) {
265 unsigned char status
;
266 size_t left
= length
;
268 /* use knowledge about data lines..:
269 * nFault is 0 if there is at least 1 byte in the Warp's FIFO
270 * pError is 1 if there are 16 bytes in the Warp's FIFO
272 status
= inb(STATUS(port
));
274 while (!(status
& 0x08) && got
< length
) {
275 if (left
>= 16 && (status
& 0x20) && !(status
& 0x08)) {
276 /* can grab 16 bytes from warp fifo */
277 if (!((long)buf
& 0x03))
278 insl(EPPDATA(port
), buf
, 4);
280 insb(EPPDATA(port
), buf
, 16);
285 /* grab single byte from the warp fifo */
286 *((char *)buf
) = inb(EPPDATA(port
));
291 status
= inb(STATUS(port
));
293 /* EPP timeout should never occur... */
294 printk(KERN_DEBUG
"%s: EPP timeout occurred while talking to w91284pic (should not have done)\n",
296 clear_epp_timeout(port
);
301 if ((flags
& PARPORT_EPP_FAST
) && (length
> 1)) {
302 if (!(((long)buf
| length
) & 0x03))
303 insl(EPPDATA(port
), buf
, (length
>> 2));
305 insb(EPPDATA(port
), buf
, length
);
306 if (inb(STATUS(port
)) & 0x01) {
307 clear_epp_timeout(port
);
312 for (; got
< length
; got
++) {
313 *((char *)buf
) = inb(EPPDATA(port
));
315 if (inb(STATUS(port
)) & 0x01) {
317 clear_epp_timeout(port
);
325 static size_t parport_pc_epp_write_data(struct parport
*port
, const void *buf
,
326 size_t length
, int flags
)
330 if ((flags
& PARPORT_EPP_FAST
) && (length
> 1)) {
331 if (!(((long)buf
| length
) & 0x03))
332 outsl(EPPDATA(port
), buf
, (length
>> 2));
334 outsb(EPPDATA(port
), buf
, length
);
335 if (inb(STATUS(port
)) & 0x01) {
336 clear_epp_timeout(port
);
341 for (; written
< length
; written
++) {
342 outb(*((char *)buf
), EPPDATA(port
));
344 if (inb(STATUS(port
)) & 0x01) {
345 clear_epp_timeout(port
);
353 static size_t parport_pc_epp_read_addr(struct parport
*port
, void *buf
,
354 size_t length
, int flags
)
358 if ((flags
& PARPORT_EPP_FAST
) && (length
> 1)) {
359 insb(EPPADDR(port
), buf
, length
);
360 if (inb(STATUS(port
)) & 0x01) {
361 clear_epp_timeout(port
);
366 for (; got
< length
; got
++) {
367 *((char *)buf
) = inb(EPPADDR(port
));
369 if (inb(STATUS(port
)) & 0x01) {
370 clear_epp_timeout(port
);
378 static size_t parport_pc_epp_write_addr(struct parport
*port
,
379 const void *buf
, size_t length
,
384 if ((flags
& PARPORT_EPP_FAST
) && (length
> 1)) {
385 outsb(EPPADDR(port
), buf
, length
);
386 if (inb(STATUS(port
)) & 0x01) {
387 clear_epp_timeout(port
);
392 for (; written
< length
; written
++) {
393 outb(*((char *)buf
), EPPADDR(port
));
395 if (inb(STATUS(port
)) & 0x01) {
396 clear_epp_timeout(port
);
404 static size_t parport_pc_ecpepp_read_data(struct parport
*port
, void *buf
,
405 size_t length
, int flags
)
409 frob_set_mode(port
, ECR_EPP
);
410 parport_pc_data_reverse(port
);
411 parport_pc_write_control(port
, 0x4);
412 got
= parport_pc_epp_read_data(port
, buf
, length
, flags
);
413 frob_set_mode(port
, ECR_PS2
);
418 static size_t parport_pc_ecpepp_write_data(struct parport
*port
,
419 const void *buf
, size_t length
,
424 frob_set_mode(port
, ECR_EPP
);
425 parport_pc_write_control(port
, 0x4);
426 parport_pc_data_forward(port
);
427 written
= parport_pc_epp_write_data(port
, buf
, length
, flags
);
428 frob_set_mode(port
, ECR_PS2
);
433 static size_t parport_pc_ecpepp_read_addr(struct parport
*port
, void *buf
,
434 size_t length
, int flags
)
438 frob_set_mode(port
, ECR_EPP
);
439 parport_pc_data_reverse(port
);
440 parport_pc_write_control(port
, 0x4);
441 got
= parport_pc_epp_read_addr(port
, buf
, length
, flags
);
442 frob_set_mode(port
, ECR_PS2
);
447 static size_t parport_pc_ecpepp_write_addr(struct parport
*port
,
448 const void *buf
, size_t length
,
453 frob_set_mode(port
, ECR_EPP
);
454 parport_pc_write_control(port
, 0x4);
455 parport_pc_data_forward(port
);
456 written
= parport_pc_epp_write_addr(port
, buf
, length
, flags
);
457 frob_set_mode(port
, ECR_PS2
);
461 #endif /* IEEE 1284 support */
463 #ifdef CONFIG_PARPORT_PC_FIFO
464 static size_t parport_pc_fifo_write_block_pio(struct parport
*port
,
465 const void *buf
, size_t length
)
468 const unsigned char *bufp
= buf
;
469 size_t left
= length
;
470 unsigned long expire
= jiffies
+ port
->physport
->cad
->timeout
;
471 const int fifo
= FIFO(port
);
472 int poll_for
= 8; /* 80 usecs */
473 const struct parport_pc_private
*priv
= port
->physport
->private_data
;
474 const int fifo_depth
= priv
->fifo_depth
;
476 port
= port
->physport
;
478 /* We don't want to be interrupted every character. */
479 parport_pc_disable_irq(port
);
480 /* set nErrIntrEn and serviceIntr */
481 frob_econtrol(port
, (1<<4) | (1<<2), (1<<4) | (1<<2));
484 parport_pc_data_forward(port
); /* Must be in PS2 mode */
488 unsigned char ecrval
= inb(ECONTROL(port
));
491 if (need_resched() && time_before(jiffies
, expire
))
492 /* Can't yield the port. */
495 /* Anyone else waiting for the port? */
496 if (port
->waithead
) {
497 printk(KERN_DEBUG
"Somebody wants the port\n");
502 /* FIFO is full. Wait for interrupt. */
504 /* Clear serviceIntr */
505 ECR_WRITE(port
, ecrval
& ~(1<<2));
507 ret
= parport_wait_event(port
, HZ
);
511 if (!time_before(jiffies
, expire
)) {
513 printk(KERN_DEBUG
"FIFO write timed out\n");
516 ecrval
= inb(ECONTROL(port
));
517 if (!(ecrval
& (1<<2))) {
518 if (need_resched() &&
519 time_before(jiffies
, expire
))
528 /* Can't fail now. */
529 expire
= jiffies
+ port
->cad
->timeout
;
532 if (signal_pending(current
))
536 /* FIFO is empty. Blast it full. */
537 const int n
= left
< fifo_depth
? left
: fifo_depth
;
538 outsb(fifo
, bufp
, n
);
542 /* Adjust the poll time. */
543 if (i
< (poll_for
- 2))
546 } else if (i
++ < poll_for
) {
548 ecrval
= inb(ECONTROL(port
));
552 /* Half-full(call me an optimist) */
557 dump_parport_state("leave fifo_write_block_pio", port
);
558 return length
- left
;
562 static size_t parport_pc_fifo_write_block_dma(struct parport
*port
,
563 const void *buf
, size_t length
)
566 unsigned long dmaflag
;
567 size_t left
= length
;
568 const struct parport_pc_private
*priv
= port
->physport
->private_data
;
569 struct device
*dev
= port
->physport
->dev
;
570 dma_addr_t dma_addr
, dma_handle
;
571 size_t maxlen
= 0x10000; /* max 64k per DMA transfer */
572 unsigned long start
= (unsigned long) buf
;
573 unsigned long end
= (unsigned long) buf
+ length
- 1;
575 dump_parport_state("enter fifo_write_block_dma", port
);
576 if (end
< MAX_DMA_ADDRESS
) {
577 /* If it would cross a 64k boundary, cap it at the end. */
578 if ((start
^ end
) & ~0xffffUL
)
579 maxlen
= 0x10000 - (start
& 0xffff);
581 dma_addr
= dma_handle
= dma_map_single(dev
, (void *)buf
, length
,
584 /* above 16 MB we use a bounce buffer as ISA-DMA
586 maxlen
= PAGE_SIZE
; /* sizeof(priv->dma_buf) */
587 dma_addr
= priv
->dma_handle
;
591 port
= port
->physport
;
593 /* We don't want to be interrupted every character. */
594 parport_pc_disable_irq(port
);
595 /* set nErrIntrEn and serviceIntr */
596 frob_econtrol(port
, (1<<4) | (1<<2), (1<<4) | (1<<2));
599 parport_pc_data_forward(port
); /* Must be in PS2 mode */
602 unsigned long expire
= jiffies
+ port
->physport
->cad
->timeout
;
609 if (!dma_handle
) /* bounce buffer ! */
610 memcpy(priv
->dma_buf
, buf
, count
);
612 dmaflag
= claim_dma_lock();
613 disable_dma(port
->dma
);
614 clear_dma_ff(port
->dma
);
615 set_dma_mode(port
->dma
, DMA_MODE_WRITE
);
616 set_dma_addr(port
->dma
, dma_addr
);
617 set_dma_count(port
->dma
, count
);
620 frob_econtrol(port
, 1<<3, 1<<3);
622 /* Clear serviceIntr */
623 frob_econtrol(port
, 1<<2, 0);
625 enable_dma(port
->dma
);
626 release_dma_lock(dmaflag
);
628 /* assume DMA will be successful */
634 /* Wait for interrupt. */
636 ret
= parport_wait_event(port
, HZ
);
640 if (!time_before(jiffies
, expire
)) {
642 printk(KERN_DEBUG
"DMA write timed out\n");
645 /* Is serviceIntr set? */
646 if (!(inb(ECONTROL(port
)) & (1<<2))) {
652 dmaflag
= claim_dma_lock();
653 disable_dma(port
->dma
);
654 clear_dma_ff(port
->dma
);
655 count
= get_dma_residue(port
->dma
);
656 release_dma_lock(dmaflag
);
658 cond_resched(); /* Can't yield the port. */
660 /* Anyone else waiting for the port? */
661 if (port
->waithead
) {
662 printk(KERN_DEBUG
"Somebody wants the port\n");
666 /* update for possible DMA residue ! */
673 /* Maybe got here through break, so adjust for DMA residue! */
674 dmaflag
= claim_dma_lock();
675 disable_dma(port
->dma
);
676 clear_dma_ff(port
->dma
);
677 left
+= get_dma_residue(port
->dma
);
678 release_dma_lock(dmaflag
);
680 /* Turn off DMA mode */
681 frob_econtrol(port
, 1<<3, 0);
684 dma_unmap_single(dev
, dma_handle
, length
, DMA_TO_DEVICE
);
686 dump_parport_state("leave fifo_write_block_dma", port
);
687 return length
- left
;
691 static inline size_t parport_pc_fifo_write_block(struct parport
*port
,
692 const void *buf
, size_t length
)
695 if (port
->dma
!= PARPORT_DMA_NONE
)
696 return parport_pc_fifo_write_block_dma(port
, buf
, length
);
698 return parport_pc_fifo_write_block_pio(port
, buf
, length
);
701 /* Parallel Port FIFO mode (ECP chipsets) */
702 static size_t parport_pc_compat_write_block_pio(struct parport
*port
,
703 const void *buf
, size_t length
,
708 unsigned long expire
;
709 const struct parport_pc_private
*priv
= port
->physport
->private_data
;
711 /* Special case: a timeout of zero means we cannot call schedule().
712 * Also if O_NONBLOCK is set then use the default implementation. */
713 if (port
->physport
->cad
->timeout
<= PARPORT_INACTIVITY_O_NONBLOCK
)
714 return parport_ieee1284_write_compat(port
, buf
,
717 /* Set up parallel port FIFO mode.*/
718 parport_pc_data_forward(port
); /* Must be in PS2 mode */
719 parport_pc_frob_control(port
, PARPORT_CONTROL_STROBE
, 0);
720 r
= change_mode(port
, ECR_PPF
); /* Parallel port FIFO */
722 printk(KERN_DEBUG
"%s: Warning change_mode ECR_PPF failed\n",
725 port
->physport
->ieee1284
.phase
= IEEE1284_PH_FWD_DATA
;
727 /* Write the data to the FIFO. */
728 written
= parport_pc_fifo_write_block(port
, buf
, length
);
731 /* For some hardware we don't want to touch the mode until
732 * the FIFO is empty, so allow 4 seconds for each position
735 expire
= jiffies
+ (priv
->fifo_depth
* HZ
* 4);
737 /* Wait for the FIFO to empty */
738 r
= change_mode(port
, ECR_PS2
);
741 } while (time_before(jiffies
, expire
));
744 printk(KERN_DEBUG
"%s: FIFO is stuck\n", port
->name
);
746 /* Prevent further data transfer. */
747 frob_set_mode(port
, ECR_TST
);
749 /* Adjust for the contents of the FIFO. */
750 for (written
-= priv
->fifo_depth
; ; written
++) {
751 if (inb(ECONTROL(port
)) & 0x2) {
758 /* Reset the FIFO and return to PS2 mode. */
759 frob_set_mode(port
, ECR_PS2
);
762 r
= parport_wait_peripheral(port
,
764 PARPORT_STATUS_BUSY
);
766 printk(KERN_DEBUG
"%s: BUSY timeout (%d) in compat_write_block_pio\n",
769 port
->physport
->ieee1284
.phase
= IEEE1284_PH_FWD_IDLE
;
775 #ifdef CONFIG_PARPORT_1284
776 static size_t parport_pc_ecp_write_block_pio(struct parport
*port
,
777 const void *buf
, size_t length
,
782 unsigned long expire
;
783 const struct parport_pc_private
*priv
= port
->physport
->private_data
;
785 /* Special case: a timeout of zero means we cannot call schedule().
786 * Also if O_NONBLOCK is set then use the default implementation. */
787 if (port
->physport
->cad
->timeout
<= PARPORT_INACTIVITY_O_NONBLOCK
)
788 return parport_ieee1284_ecp_write_data(port
, buf
,
791 /* Switch to forward mode if necessary. */
792 if (port
->physport
->ieee1284
.phase
!= IEEE1284_PH_FWD_IDLE
) {
793 /* Event 47: Set nInit high. */
794 parport_frob_control(port
,
796 | PARPORT_CONTROL_AUTOFD
,
798 | PARPORT_CONTROL_AUTOFD
);
800 /* Event 49: PError goes high. */
801 r
= parport_wait_peripheral(port
,
802 PARPORT_STATUS_PAPEROUT
,
803 PARPORT_STATUS_PAPEROUT
);
805 printk(KERN_DEBUG
"%s: PError timeout (%d) in ecp_write_block_pio\n",
810 /* Set up ECP parallel port mode.*/
811 parport_pc_data_forward(port
); /* Must be in PS2 mode */
812 parport_pc_frob_control(port
,
813 PARPORT_CONTROL_STROBE
|
814 PARPORT_CONTROL_AUTOFD
,
816 r
= change_mode(port
, ECR_ECP
); /* ECP FIFO */
818 printk(KERN_DEBUG
"%s: Warning change_mode ECR_ECP failed\n",
820 port
->physport
->ieee1284
.phase
= IEEE1284_PH_FWD_DATA
;
822 /* Write the data to the FIFO. */
823 written
= parport_pc_fifo_write_block(port
, buf
, length
);
826 /* For some hardware we don't want to touch the mode until
827 * the FIFO is empty, so allow 4 seconds for each position
830 expire
= jiffies
+ (priv
->fifo_depth
* (HZ
* 4));
832 /* Wait for the FIFO to empty */
833 r
= change_mode(port
, ECR_PS2
);
836 } while (time_before(jiffies
, expire
));
839 printk(KERN_DEBUG
"%s: FIFO is stuck\n", port
->name
);
841 /* Prevent further data transfer. */
842 frob_set_mode(port
, ECR_TST
);
844 /* Adjust for the contents of the FIFO. */
845 for (written
-= priv
->fifo_depth
; ; written
++) {
846 if (inb(ECONTROL(port
)) & 0x2) {
853 /* Reset the FIFO and return to PS2 mode. */
854 frob_set_mode(port
, ECR_PS2
);
856 /* Host transfer recovery. */
857 parport_pc_data_reverse(port
); /* Must be in PS2 mode */
859 parport_frob_control(port
, PARPORT_CONTROL_INIT
, 0);
860 r
= parport_wait_peripheral(port
, PARPORT_STATUS_PAPEROUT
, 0);
862 printk(KERN_DEBUG
"%s: PE,1 timeout (%d) in ecp_write_block_pio\n",
865 parport_frob_control(port
,
866 PARPORT_CONTROL_INIT
,
867 PARPORT_CONTROL_INIT
);
868 r
= parport_wait_peripheral(port
,
869 PARPORT_STATUS_PAPEROUT
,
870 PARPORT_STATUS_PAPEROUT
);
872 printk(KERN_DEBUG
"%s: PE,2 timeout (%d) in ecp_write_block_pio\n",
876 r
= parport_wait_peripheral(port
,
878 PARPORT_STATUS_BUSY
);
880 printk(KERN_DEBUG
"%s: BUSY timeout (%d) in ecp_write_block_pio\n",
883 port
->physport
->ieee1284
.phase
= IEEE1284_PH_FWD_IDLE
;
887 #endif /* IEEE 1284 support */
888 #endif /* Allowed to use FIFO/DMA */
892 * ******************************************
893 * INITIALISATION AND MODULE STUFF BELOW HERE
894 * ******************************************
897 /* GCC is not inlining extern inline function later overwritten to non-inline,
898 so we use outlined_ variants here. */
899 static const struct parport_operations parport_pc_ops
= {
900 .write_data
= parport_pc_write_data
,
901 .read_data
= parport_pc_read_data
,
903 .write_control
= parport_pc_write_control
,
904 .read_control
= parport_pc_read_control
,
905 .frob_control
= parport_pc_frob_control
,
907 .read_status
= parport_pc_read_status
,
909 .enable_irq
= parport_pc_enable_irq
,
910 .disable_irq
= parport_pc_disable_irq
,
912 .data_forward
= parport_pc_data_forward
,
913 .data_reverse
= parport_pc_data_reverse
,
915 .init_state
= parport_pc_init_state
,
916 .save_state
= parport_pc_save_state
,
917 .restore_state
= parport_pc_restore_state
,
919 .epp_write_data
= parport_ieee1284_epp_write_data
,
920 .epp_read_data
= parport_ieee1284_epp_read_data
,
921 .epp_write_addr
= parport_ieee1284_epp_write_addr
,
922 .epp_read_addr
= parport_ieee1284_epp_read_addr
,
924 .ecp_write_data
= parport_ieee1284_ecp_write_data
,
925 .ecp_read_data
= parport_ieee1284_ecp_read_data
,
926 .ecp_write_addr
= parport_ieee1284_ecp_write_addr
,
928 .compat_write_data
= parport_ieee1284_write_compat
,
929 .nibble_read_data
= parport_ieee1284_read_nibble
,
930 .byte_read_data
= parport_ieee1284_read_byte
,
932 .owner
= THIS_MODULE
,
935 #ifdef CONFIG_PARPORT_PC_SUPERIO
937 static struct superio_struct
*find_free_superio(void)
940 for (i
= 0; i
< NR_SUPERIOS
; i
++)
941 if (superios
[i
].io
== 0)
947 /* Super-IO chipset detection, Winbond, SMSC */
948 static void show_parconfig_smsc37c669(int io
, int key
)
950 int cr1
, cr4
, cra
, cr23
, cr26
, cr27
;
951 struct superio_struct
*s
;
953 static const char *const modes
[] = {
954 "SPP and Bidirectional (PS/2)",
975 if (verbose_probing
) {
976 pr_info("SMSC 37c669 LPT Config: cr_1=0x%02x, 4=0x%02x, A=0x%2x, 23=0x%02x, 26=0x%02x, 27=0x%02x\n",
977 cr1
, cr4
, cra
, cr23
, cr26
, cr27
);
979 /* The documentation calls DMA and IRQ-Lines by letters, so
980 the board maker can/will wire them
981 appropriately/randomly... G=reserved H=IDE-irq, */
982 pr_info("SMSC LPT Config: io=0x%04x, irq=%c, dma=%c, fifo threshold=%d\n",
984 (cr27
& 0x0f) ? 'A' - 1 + (cr27
& 0x0f) : '-',
985 (cr26
& 0x0f) ? 'A' - 1 + (cr26
& 0x0f) : '-',
987 pr_info("SMSC LPT Config: enabled=%s power=%s\n",
988 (cr23
* 4 >= 0x100) ? "yes" : "no",
989 (cr1
& 4) ? "yes" : "no");
990 pr_info("SMSC LPT Config: Port mode=%s, EPP version =%s\n",
991 (cr1
& 0x08) ? "Standard mode only (SPP)"
993 (cr4
& 0x40) ? "1.7" : "1.9");
996 /* Heuristics ! BIOS setup for this mainboard device limits
997 the choices to standard settings, i.e. io-address and IRQ
998 are related, however DMA can be 1 or 3, assume DMA_A=DMA1,
999 DMA_C=DMA3 (this is true e.g. for TYAN 1564D Tomcat IV) */
1000 if (cr23
* 4 >= 0x100) { /* if active */
1001 s
= find_free_superio();
1003 pr_info("Super-IO: too many chips!\n");
1020 if (d
== 1 || d
== 3)
1023 s
->dma
= PARPORT_DMA_NONE
;
1029 static void show_parconfig_winbond(int io
, int key
)
1031 int cr30
, cr60
, cr61
, cr70
, cr74
, crf0
;
1032 struct superio_struct
*s
;
1033 static const char *const modes
[] = {
1034 "Standard (SPP) and Bidirectional(PS/2)", /* 0 */
1039 "EPP-1.7 and SPP", /* 5 */
1041 "ECP and EPP-1.7" };
1042 static char *const irqtypes
[] = {
1043 "pulsed low, high-Z",
1046 /* The registers are called compatible-PnP because the
1047 register layout is modelled after ISA-PnP, the access
1048 method is just another ... */
1051 outb(0x07, io
); /* Register 7: Select Logical Device */
1052 outb(0x01, io
+ 1); /* LD1 is Parallel Port */
1067 if (verbose_probing
) {
1068 pr_info("Winbond LPT Config: cr_30=%02x 60,61=%02x%02x 70=%02x 74=%02x, f0=%02x\n",
1069 cr30
, cr60
, cr61
, cr70
, cr74
, crf0
);
1070 pr_info("Winbond LPT Config: active=%s, io=0x%02x%02x irq=%d, ",
1071 (cr30
& 0x01) ? "yes" : "no", cr60
, cr61
, cr70
& 0x0f);
1072 if ((cr74
& 0x07) > 3)
1073 pr_cont("dma=none\n");
1075 pr_cont("dma=%d\n", cr74
& 0x07);
1076 pr_info("Winbond LPT Config: irqtype=%s, ECP fifo threshold=%d\n",
1077 irqtypes
[crf0
>> 7], (crf0
>> 3) & 0x0f);
1078 pr_info("Winbond LPT Config: Port mode=%s\n",
1079 modes
[crf0
& 0x07]);
1082 if (cr30
& 0x01) { /* the settings can be interrogated later ... */
1083 s
= find_free_superio();
1085 pr_info("Super-IO: too many chips!\n");
1087 s
->io
= (cr60
<< 8) | cr61
;
1088 s
->irq
= cr70
& 0x0f;
1089 s
->dma
= (((cr74
& 0x07) > 3) ?
1090 PARPORT_DMA_NONE
: (cr74
& 0x07));
1095 static void decode_winbond(int efer
, int key
, int devid
, int devrev
, int oldid
)
1097 const char *type
= "unknown";
1100 if (devid
== devrev
)
1101 /* simple heuristics, we happened to read some
1102 non-winbond register */
1105 id
= (devid
<< 8) | devrev
;
1107 /* Values are from public data sheets pdf files, I can just
1108 confirm 83977TF is correct :-) */
1111 else if (id
== 0x9773)
1112 type
= "83977TF / SMSC 97w33x/97w34x";
1113 else if (id
== 0x9774)
1115 else if ((id
& ~0x0f) == 0x5270)
1116 type
= "83977CTF / SMSC 97w36x";
1117 else if ((id
& ~0x0f) == 0x52f0)
1118 type
= "83977EF / SMSC 97w35x";
1119 else if ((id
& ~0x0f) == 0x5210)
1121 else if ((id
& ~0x0f) == 0x6010)
1123 else if ((oldid
& 0x0f) == 0x0a) {
1126 } else if ((oldid
& 0x0f) == 0x0b) {
1129 } else if ((oldid
& 0x0f) == 0x0c) {
1132 } else if ((oldid
& 0x0f) == 0x0d) {
1138 if (verbose_probing
)
1139 pr_info("Winbond chip at EFER=0x%x key=0x%02x devid=%02x devrev=%02x oldid=%02x type=%s\n",
1140 efer
, key
, devid
, devrev
, oldid
, type
);
1143 show_parconfig_winbond(efer
, key
);
1146 static void decode_smsc(int efer
, int key
, int devid
, int devrev
)
1148 const char *type
= "unknown";
1149 void (*func
)(int io
, int key
);
1152 if (devid
== devrev
)
1153 /* simple heuristics, we happened to read some
1154 non-smsc register */
1158 id
= (devid
<< 8) | devrev
;
1162 func
= show_parconfig_smsc37c669
;
1163 } else if (id
== 0x6582)
1165 else if (devid
== 0x65)
1167 else if (devid
== 0x66)
1170 if (verbose_probing
)
1171 pr_info("SMSC chip at EFER=0x%x key=0x%02x devid=%02x devrev=%02x type=%s\n",
1172 efer
, key
, devid
, devrev
, type
);
1179 static void winbond_check(int io
, int key
)
1181 int origval
, devid
, devrev
, oldid
, x_devid
, x_devrev
, x_oldid
;
1183 if (!request_region(io
, 3, __func__
))
1186 origval
= inb(io
); /* Save original value */
1188 /* First probe without key */
1190 x_devid
= inb(io
+ 1);
1192 x_devrev
= inb(io
+ 1);
1194 x_oldid
= inb(io
+ 1);
1197 outb(key
, io
); /* Write Magic Sequence to EFER, extended
1198 function enable register */
1199 outb(0x20, io
); /* Write EFIR, extended function index register */
1200 devid
= inb(io
+ 1); /* Read EFDR, extended function data register */
1202 devrev
= inb(io
+ 1);
1204 oldid
= inb(io
+ 1);
1205 outb(0xaa, io
); /* Magic Seal */
1207 outb(origval
, io
); /* in case we poked some entirely different hardware */
1209 if ((x_devid
== devid
) && (x_devrev
== devrev
) && (x_oldid
== oldid
))
1210 goto out
; /* protection against false positives */
1212 decode_winbond(io
, key
, devid
, devrev
, oldid
);
1214 release_region(io
, 3);
1217 static void winbond_check2(int io
, int key
)
1219 int origval
[3], devid
, devrev
, oldid
, x_devid
, x_devrev
, x_oldid
;
1221 if (!request_region(io
, 3, __func__
))
1224 origval
[0] = inb(io
); /* Save original values */
1225 origval
[1] = inb(io
+ 1);
1226 origval
[2] = inb(io
+ 2);
1228 /* First probe without the key */
1230 x_devid
= inb(io
+ 2);
1232 x_devrev
= inb(io
+ 2);
1234 x_oldid
= inb(io
+ 2);
1236 outb(key
, io
); /* Write Magic Byte to EFER, extended
1237 function enable register */
1238 outb(0x20, io
+ 2); /* Write EFIR, extended function index register */
1239 devid
= inb(io
+ 2); /* Read EFDR, extended function data register */
1241 devrev
= inb(io
+ 2);
1243 oldid
= inb(io
+ 2);
1244 outb(0xaa, io
); /* Magic Seal */
1246 outb(origval
[0], io
); /* in case we poked some entirely different hardware */
1247 outb(origval
[1], io
+ 1);
1248 outb(origval
[2], io
+ 2);
1250 if (x_devid
== devid
&& x_devrev
== devrev
&& x_oldid
== oldid
)
1251 goto out
; /* protection against false positives */
1253 decode_winbond(io
, key
, devid
, devrev
, oldid
);
1255 release_region(io
, 3);
1258 static void smsc_check(int io
, int key
)
1260 int origval
, id
, rev
, oldid
, oldrev
, x_id
, x_rev
, x_oldid
, x_oldrev
;
1262 if (!request_region(io
, 3, __func__
))
1265 origval
= inb(io
); /* Save original value */
1267 /* First probe without the key */
1269 x_oldid
= inb(io
+ 1);
1271 x_oldrev
= inb(io
+ 1);
1275 x_rev
= inb(io
+ 1);
1278 outb(key
, io
); /* Write Magic Sequence to EFER, extended
1279 function enable register */
1280 outb(0x0d, io
); /* Write EFIR, extended function index register */
1281 oldid
= inb(io
+ 1); /* Read EFDR, extended function data register */
1283 oldrev
= inb(io
+ 1);
1288 outb(0xaa, io
); /* Magic Seal */
1290 outb(origval
, io
); /* in case we poked some entirely different hardware */
1292 if (x_id
== id
&& x_oldrev
== oldrev
&&
1293 x_oldid
== oldid
&& x_rev
== rev
)
1294 goto out
; /* protection against false positives */
1296 decode_smsc(io
, key
, oldid
, oldrev
);
1298 release_region(io
, 3);
1302 static void detect_and_report_winbond(void)
1304 if (verbose_probing
)
1305 printk(KERN_DEBUG
"Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n");
1306 winbond_check(0x3f0, 0x87);
1307 winbond_check(0x370, 0x87);
1308 winbond_check(0x2e , 0x87);
1309 winbond_check(0x4e , 0x87);
1310 winbond_check(0x3f0, 0x86);
1311 winbond_check2(0x250, 0x88);
1312 winbond_check2(0x250, 0x89);
1315 static void detect_and_report_smsc(void)
1317 if (verbose_probing
)
1318 printk(KERN_DEBUG
"SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n");
1319 smsc_check(0x3f0, 0x55);
1320 smsc_check(0x370, 0x55);
1321 smsc_check(0x3f0, 0x44);
1322 smsc_check(0x370, 0x44);
1325 static void detect_and_report_it87(void)
1329 if (verbose_probing
)
1330 printk(KERN_DEBUG
"IT8705 Super-IO detection, now testing port 2E ...\n");
1331 if (!request_muxed_region(0x2e, 2, __func__
))
1333 origval
= inb(0x2e); /* Save original value */
1339 dev
= inb(0x2f) << 8;
1342 if (dev
== 0x8712 || dev
== 0x8705 || dev
== 0x8715 ||
1343 dev
== 0x8716 || dev
== 0x8718 || dev
== 0x8726) {
1344 pr_info("IT%04X SuperIO detected\n", dev
);
1345 outb(0x07, 0x2E); /* Parallel Port */
1347 outb(0xF0, 0x2E); /* BOOT 0x80 off */
1351 outb(0x02, 0x2E); /* Lock */
1354 outb(origval
, 0x2e); /* Oops, sorry to disturb */
1356 release_region(0x2e, 2);
1358 #endif /* CONFIG_PARPORT_PC_SUPERIO */
1360 static struct superio_struct
*find_superio(struct parport
*p
)
1363 for (i
= 0; i
< NR_SUPERIOS
; i
++)
1364 if (superios
[i
].io
== p
->base
)
1365 return &superios
[i
];
1369 static int get_superio_dma(struct parport
*p
)
1371 struct superio_struct
*s
= find_superio(p
);
1374 return PARPORT_DMA_NONE
;
1377 static int get_superio_irq(struct parport
*p
)
1379 struct superio_struct
*s
= find_superio(p
);
1382 return PARPORT_IRQ_NONE
;
1386 /* --- Mode detection ------------------------------------- */
1389 * Checks for port existence, all ports support SPP MODE
1391 * 0 : No parallel port at this address
1392 * PARPORT_MODE_PCSPP : SPP port detected
1393 * (if the user specified an ioport himself,
1394 * this shall always be the case!)
1397 static int parport_SPP_supported(struct parport
*pb
)
1402 * first clear an eventually pending EPP timeout
1403 * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
1404 * that does not even respond to SPP cycles if an EPP
1405 * timeout is pending
1407 clear_epp_timeout(pb
);
1409 /* Do a simple read-write test to make sure the port exists. */
1411 outb(w
, CONTROL(pb
));
1413 /* Is there a control register that we can read from? Some
1414 * ports don't allow reads, so read_control just returns a
1415 * software copy. Some ports _do_ allow reads, so bypass the
1416 * software copy here. In addition, some bits aren't
1418 r
= inb(CONTROL(pb
));
1419 if ((r
& 0xf) == w
) {
1421 outb(w
, CONTROL(pb
));
1422 r
= inb(CONTROL(pb
));
1423 outb(0xc, CONTROL(pb
));
1425 return PARPORT_MODE_PCSPP
;
1429 /* That didn't work, but the user thinks there's a
1431 pr_info("parport 0x%lx (WARNING): CTR: wrote 0x%02x, read 0x%02x\n",
1434 /* Try the data register. The data lines aren't tri-stated at
1435 * this stage, so we expect back what we wrote. */
1437 parport_pc_write_data(pb
, w
);
1438 r
= parport_pc_read_data(pb
);
1441 parport_pc_write_data(pb
, w
);
1442 r
= parport_pc_read_data(pb
);
1444 return PARPORT_MODE_PCSPP
;
1447 if (user_specified
) {
1448 /* Didn't work, but the user is convinced this is the
1450 pr_info("parport 0x%lx (WARNING): DATA: wrote 0x%02x, read 0x%02x\n",
1452 pr_info("parport 0x%lx: You gave this address, but there is probably no parallel port there!\n",
1456 /* It's possible that we can't read the control register or
1457 * the data register. In that case just believe the user. */
1459 return PARPORT_MODE_PCSPP
;
1466 * Old style XT ports alias io ports every 0x400, hence accessing ECR
1467 * on these cards actually accesses the CTR.
1469 * Modern cards don't do this but reading from ECR will return 0xff
1470 * regardless of what is written here if the card does NOT support
1473 * We first check to see if ECR is the same as CTR. If not, the low
1474 * two bits of ECR aren't writable, so we check by writing ECR and
1475 * reading it back to see if it's what we expect.
1477 static int parport_ECR_present(struct parport
*pb
)
1479 struct parport_pc_private
*priv
= pb
->private_data
;
1480 unsigned char r
= 0xc;
1482 outb(r
, CONTROL(pb
));
1483 if ((inb(ECONTROL(pb
)) & 0x3) == (r
& 0x3)) {
1484 outb(r
^ 0x2, CONTROL(pb
)); /* Toggle bit 1 */
1486 r
= inb(CONTROL(pb
));
1487 if ((inb(ECONTROL(pb
)) & 0x2) == (r
& 0x2))
1488 goto no_reg
; /* Sure that no ECR register exists */
1491 if ((inb(ECONTROL(pb
)) & 0x3) != 0x1)
1494 ECR_WRITE(pb
, 0x34);
1495 if (inb(ECONTROL(pb
)) != 0x35)
1499 outb(0xc, CONTROL(pb
));
1501 /* Go to mode 000 */
1502 frob_set_mode(pb
, ECR_SPP
);
1507 outb(0xc, CONTROL(pb
));
1511 #ifdef CONFIG_PARPORT_1284
1512 /* Detect PS/2 support.
1514 * Bit 5 (0x20) sets the PS/2 data direction; setting this high
1515 * allows us to read data from the data lines. In theory we would get back
1516 * 0xff but any peripheral attached to the port may drag some or all of the
1517 * lines down to zero. So if we get back anything that isn't the contents
1518 * of the data register we deem PS/2 support to be present.
1520 * Some SPP ports have "half PS/2" ability - you can't turn off the line
1521 * drivers, but an external peripheral with sufficiently beefy drivers of
1522 * its own can overpower them and assert its own levels onto the bus, from
1523 * where they can then be read back as normal. Ports with this property
1524 * and the right type of device attached are likely to fail the SPP test,
1525 * (as they will appear to have stuck bits) and so the fact that they might
1526 * be misdetected here is rather academic.
1529 static int parport_PS2_supported(struct parport
*pb
)
1533 clear_epp_timeout(pb
);
1535 /* try to tri-state the buffer */
1536 parport_pc_data_reverse(pb
);
1538 parport_pc_write_data(pb
, 0x55);
1539 if (parport_pc_read_data(pb
) != 0x55)
1542 parport_pc_write_data(pb
, 0xaa);
1543 if (parport_pc_read_data(pb
) != 0xaa)
1546 /* cancel input mode */
1547 parport_pc_data_forward(pb
);
1550 pb
->modes
|= PARPORT_MODE_TRISTATE
;
1552 struct parport_pc_private
*priv
= pb
->private_data
;
1553 priv
->ctr_writable
&= ~0x20;
1559 #ifdef CONFIG_PARPORT_PC_FIFO
1560 static int parport_ECP_supported(struct parport
*pb
)
1563 int config
, configb
;
1565 struct parport_pc_private
*priv
= pb
->private_data
;
1566 /* Translate ECP intrLine to ISA irq value */
1567 static const int intrline
[] = { 0, 7, 9, 10, 11, 14, 15, 5 };
1569 /* If there is no ECR, we have no hope of supporting ECP. */
1573 /* Find out FIFO depth */
1574 ECR_WRITE(pb
, ECR_SPP
<< 5); /* Reset FIFO */
1575 ECR_WRITE(pb
, ECR_TST
<< 5); /* TEST FIFO */
1576 for (i
= 0; i
< 1024 && !(inb(ECONTROL(pb
)) & 0x02); i
++)
1577 outb(0xaa, FIFO(pb
));
1580 * Using LGS chipset it uses ECR register, but
1581 * it doesn't support ECP or FIFO MODE
1584 ECR_WRITE(pb
, ECR_SPP
<< 5);
1588 priv
->fifo_depth
= i
;
1589 if (verbose_probing
)
1590 printk(KERN_DEBUG
"0x%lx: FIFO is %d bytes\n", pb
->base
, i
);
1592 /* Find out writeIntrThreshold */
1593 frob_econtrol(pb
, 1<<2, 1<<2);
1594 frob_econtrol(pb
, 1<<2, 0);
1595 for (i
= 1; i
<= priv
->fifo_depth
; i
++) {
1598 if (inb(ECONTROL(pb
)) & (1<<2))
1602 if (i
<= priv
->fifo_depth
) {
1603 if (verbose_probing
)
1604 printk(KERN_DEBUG
"0x%lx: writeIntrThreshold is %d\n",
1607 /* Number of bytes we know we can write if we get an
1611 priv
->writeIntrThreshold
= i
;
1613 /* Find out readIntrThreshold */
1614 frob_set_mode(pb
, ECR_PS2
); /* Reset FIFO and enable PS2 */
1615 parport_pc_data_reverse(pb
); /* Must be in PS2 mode */
1616 frob_set_mode(pb
, ECR_TST
); /* Test FIFO */
1617 frob_econtrol(pb
, 1<<2, 1<<2);
1618 frob_econtrol(pb
, 1<<2, 0);
1619 for (i
= 1; i
<= priv
->fifo_depth
; i
++) {
1620 outb(0xaa, FIFO(pb
));
1621 if (inb(ECONTROL(pb
)) & (1<<2))
1625 if (i
<= priv
->fifo_depth
) {
1626 if (verbose_probing
)
1627 pr_info("0x%lx: readIntrThreshold is %d\n",
1630 /* Number of bytes we can read if we get an interrupt. */
1633 priv
->readIntrThreshold
= i
;
1635 ECR_WRITE(pb
, ECR_SPP
<< 5); /* Reset FIFO */
1636 ECR_WRITE(pb
, 0xf4); /* Configuration mode */
1637 config
= inb(CONFIGA(pb
));
1638 pword
= (config
>> 4) & 0x7;
1642 pr_warn("0x%lx: Unsupported pword size!\n", pb
->base
);
1646 pr_warn("0x%lx: Unsupported pword size!\n", pb
->base
);
1649 pr_warn("0x%lx: Unknown implementation ID\n", pb
->base
);
1650 fallthrough
; /* Assume 1 */
1654 priv
->pword
= pword
;
1656 if (verbose_probing
) {
1657 printk(KERN_DEBUG
"0x%lx: PWord is %d bits\n",
1658 pb
->base
, 8 * pword
);
1660 printk(KERN_DEBUG
"0x%lx: Interrupts are ISA-%s\n",
1661 pb
->base
, config
& 0x80 ? "Level" : "Pulses");
1663 configb
= inb(CONFIGB(pb
));
1664 printk(KERN_DEBUG
"0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
1665 pb
->base
, config
, configb
);
1666 printk(KERN_DEBUG
"0x%lx: ECP settings irq=", pb
->base
);
1667 if ((configb
>> 3) & 0x07)
1668 pr_cont("%d", intrline
[(configb
>> 3) & 0x07]);
1670 pr_cont("<none or set by other means>");
1672 if ((configb
& 0x03) == 0x00)
1673 pr_cont("<none or set by other means>\n");
1675 pr_cont("%d\n", configb
& 0x07);
1678 /* Go back to mode 000 */
1679 frob_set_mode(pb
, ECR_SPP
);
1685 #ifdef CONFIG_X86_32
1686 static int intel_bug_present_check_epp(struct parport
*pb
)
1688 const struct parport_pc_private
*priv
= pb
->private_data
;
1689 int bug_present
= 0;
1692 /* store value of ECR */
1693 unsigned char ecr
= inb(ECONTROL(pb
));
1695 for (i
= 0x00; i
< 0x80; i
+= 0x20) {
1697 if (clear_epp_timeout(pb
)) {
1698 /* Phony EPP in ECP. */
1703 /* return ECR into the inital state */
1709 static int intel_bug_present(struct parport
*pb
)
1711 /* Check whether the device is legacy, not PCI or PCMCIA. Only legacy is known to be affected. */
1712 if (pb
->dev
!= NULL
) {
1716 return intel_bug_present_check_epp(pb
);
1719 static int intel_bug_present(struct parport
*pb
)
1723 #endif /* CONFIG_X86_32 */
1725 static int parport_ECPPS2_supported(struct parport
*pb
)
1727 const struct parport_pc_private
*priv
= pb
->private_data
;
1734 oecr
= inb(ECONTROL(pb
));
1735 ECR_WRITE(pb
, ECR_PS2
<< 5);
1736 result
= parport_PS2_supported(pb
);
1737 ECR_WRITE(pb
, oecr
);
1741 /* EPP mode detection */
1743 static int parport_EPP_supported(struct parport
*pb
)
1747 * Bit 0 of STR is the EPP timeout bit, this bit is 0
1748 * when EPP is possible and is set high when an EPP timeout
1749 * occurs (EPP uses the HALT line to stop the CPU while it does
1750 * the byte transfer, an EPP timeout occurs if the attached
1751 * device fails to respond after 10 micro seconds).
1753 * This bit is cleared by either reading it (National Semi)
1754 * or writing a 1 to the bit (SMC, UMC, WinBond), others ???
1755 * This bit is always high in non EPP modes.
1758 /* If EPP timeout bit clear then EPP available */
1759 if (!clear_epp_timeout(pb
))
1760 return 0; /* No way to clear timeout */
1762 /* Check for Intel bug. */
1763 if (intel_bug_present(pb
))
1766 pb
->modes
|= PARPORT_MODE_EPP
;
1768 /* Set up access functions to use EPP hardware. */
1769 pb
->ops
->epp_read_data
= parport_pc_epp_read_data
;
1770 pb
->ops
->epp_write_data
= parport_pc_epp_write_data
;
1771 pb
->ops
->epp_read_addr
= parport_pc_epp_read_addr
;
1772 pb
->ops
->epp_write_addr
= parport_pc_epp_write_addr
;
1777 static int parport_ECPEPP_supported(struct parport
*pb
)
1779 struct parport_pc_private
*priv
= pb
->private_data
;
1786 oecr
= inb(ECONTROL(pb
));
1787 /* Search for SMC style EPP+ECP mode */
1788 ECR_WRITE(pb
, 0x80);
1789 outb(0x04, CONTROL(pb
));
1790 result
= parport_EPP_supported(pb
);
1792 ECR_WRITE(pb
, oecr
);
1795 /* Set up access functions to use ECP+EPP hardware. */
1796 pb
->ops
->epp_read_data
= parport_pc_ecpepp_read_data
;
1797 pb
->ops
->epp_write_data
= parport_pc_ecpepp_write_data
;
1798 pb
->ops
->epp_read_addr
= parport_pc_ecpepp_read_addr
;
1799 pb
->ops
->epp_write_addr
= parport_pc_ecpepp_write_addr
;
1805 #else /* No IEEE 1284 support */
1807 /* Don't bother probing for modes we know we won't use. */
1808 static int parport_PS2_supported(struct parport
*pb
) { return 0; }
1809 #ifdef CONFIG_PARPORT_PC_FIFO
1810 static int parport_ECP_supported(struct parport
*pb
)
1815 static int parport_EPP_supported(struct parport
*pb
)
1820 static int parport_ECPEPP_supported(struct parport
*pb
)
1825 static int parport_ECPPS2_supported(struct parport
*pb
)
1830 #endif /* No IEEE 1284 support */
1832 /* --- IRQ detection -------------------------------------- */
1834 /* Only if supports ECP mode */
1835 static int programmable_irq_support(struct parport
*pb
)
1838 unsigned char oecr
= inb(ECONTROL(pb
));
1839 static const int lookup
[8] = {
1840 PARPORT_IRQ_NONE
, 7, 9, 10, 11, 14, 15, 5
1843 ECR_WRITE(pb
, ECR_CNF
<< 5); /* Configuration MODE */
1845 intrLine
= (inb(CONFIGB(pb
)) >> 3) & 0x07;
1846 irq
= lookup
[intrLine
];
1848 ECR_WRITE(pb
, oecr
);
1852 static int irq_probe_ECP(struct parport
*pb
)
1857 irqs
= probe_irq_on();
1859 ECR_WRITE(pb
, ECR_SPP
<< 5); /* Reset FIFO */
1860 ECR_WRITE(pb
, (ECR_TST
<< 5) | 0x04);
1861 ECR_WRITE(pb
, ECR_TST
<< 5);
1863 /* If Full FIFO sure that writeIntrThreshold is generated */
1864 for (i
= 0; i
< 1024 && !(inb(ECONTROL(pb
)) & 0x02) ; i
++)
1865 outb(0xaa, FIFO(pb
));
1867 pb
->irq
= probe_irq_off(irqs
);
1868 ECR_WRITE(pb
, ECR_SPP
<< 5);
1871 pb
->irq
= PARPORT_IRQ_NONE
;
1877 * This detection seems that only works in National Semiconductors
1878 * This doesn't work in SMC, LGS, and Winbond
1880 static int irq_probe_EPP(struct parport
*pb
)
1882 #ifndef ADVANCED_DETECT
1883 return PARPORT_IRQ_NONE
;
1888 if (pb
->modes
& PARPORT_MODE_PCECR
)
1889 oecr
= inb(ECONTROL(pb
));
1891 irqs
= probe_irq_on();
1893 if (pb
->modes
& PARPORT_MODE_PCECR
)
1894 frob_econtrol(pb
, 0x10, 0x10);
1896 clear_epp_timeout(pb
);
1897 parport_pc_frob_control(pb
, 0x20, 0x20);
1898 parport_pc_frob_control(pb
, 0x10, 0x10);
1899 clear_epp_timeout(pb
);
1901 /* Device isn't expecting an EPP read
1902 * and generates an IRQ.
1904 parport_pc_read_epp(pb
);
1907 pb
->irq
= probe_irq_off(irqs
);
1908 if (pb
->modes
& PARPORT_MODE_PCECR
)
1909 ECR_WRITE(pb
, oecr
);
1910 parport_pc_write_control(pb
, 0xc);
1913 pb
->irq
= PARPORT_IRQ_NONE
;
1916 #endif /* Advanced detection */
1919 static int irq_probe_SPP(struct parport
*pb
)
1921 /* Don't even try to do this. */
1922 return PARPORT_IRQ_NONE
;
1925 /* We will attempt to share interrupt requests since other devices
1926 * such as sound cards and network cards seem to like using the
1929 * When ECP is available we can autoprobe for IRQs.
1930 * NOTE: If we can autoprobe it, we can register the IRQ.
1932 static int parport_irq_probe(struct parport
*pb
)
1934 struct parport_pc_private
*priv
= pb
->private_data
;
1937 pb
->irq
= programmable_irq_support(pb
);
1939 if (pb
->irq
== PARPORT_IRQ_NONE
)
1940 pb
->irq
= irq_probe_ECP(pb
);
1943 if ((pb
->irq
== PARPORT_IRQ_NONE
) && priv
->ecr
&&
1944 (pb
->modes
& PARPORT_MODE_EPP
))
1945 pb
->irq
= irq_probe_EPP(pb
);
1947 clear_epp_timeout(pb
);
1949 if (pb
->irq
== PARPORT_IRQ_NONE
&& (pb
->modes
& PARPORT_MODE_EPP
))
1950 pb
->irq
= irq_probe_EPP(pb
);
1952 clear_epp_timeout(pb
);
1954 if (pb
->irq
== PARPORT_IRQ_NONE
)
1955 pb
->irq
= irq_probe_SPP(pb
);
1957 if (pb
->irq
== PARPORT_IRQ_NONE
)
1958 pb
->irq
= get_superio_irq(pb
);
1963 /* --- DMA detection -------------------------------------- */
1965 /* Only if chipset conforms to ECP ISA Interface Standard */
1966 static int programmable_dma_support(struct parport
*p
)
1968 unsigned char oecr
= inb(ECONTROL(p
));
1971 frob_set_mode(p
, ECR_CNF
);
1973 dma
= inb(CONFIGB(p
)) & 0x07;
1974 /* 000: Indicates jumpered 8-bit DMA if read-only.
1975 100: Indicates jumpered 16-bit DMA if read-only. */
1976 if ((dma
& 0x03) == 0)
1977 dma
= PARPORT_DMA_NONE
;
1983 static int parport_dma_probe(struct parport
*p
)
1985 const struct parport_pc_private
*priv
= p
->private_data
;
1986 if (priv
->ecr
) /* ask ECP chipset first */
1987 p
->dma
= programmable_dma_support(p
);
1988 if (p
->dma
== PARPORT_DMA_NONE
) {
1989 /* ask known Super-IO chips proper, although these
1990 claim ECP compatible, some don't report their DMA
1991 conforming to ECP standards */
1992 p
->dma
= get_superio_dma(p
);
1998 /* --- Initialisation code -------------------------------- */
2000 static LIST_HEAD(ports_list
);
2001 static DEFINE_SPINLOCK(ports_lock
);
2003 struct parport
*parport_pc_probe_port(unsigned long int base
,
2004 unsigned long int base_hi
,
2009 struct parport_pc_private
*priv
;
2010 struct parport_operations
*ops
;
2012 int probedirq
= PARPORT_IRQ_NONE
;
2013 struct resource
*base_res
;
2014 struct resource
*ECR_res
= NULL
;
2015 struct resource
*EPP_res
= NULL
;
2016 struct platform_device
*pdev
= NULL
;
2020 /* We need a physical device to attach to, but none was
2021 * provided. Create our own. */
2022 pdev
= platform_device_register_simple("parport_pc",
2028 ret
= dma_coerce_mask_and_coherent(dev
, DMA_BIT_MASK(24));
2030 dev_err(dev
, "Unable to set coherent dma mask: disabling DMA\n");
2031 dma
= PARPORT_DMA_NONE
;
2035 ops
= kmalloc(sizeof(struct parport_operations
), GFP_KERNEL
);
2039 priv
= kmalloc(sizeof(struct parport_pc_private
), GFP_KERNEL
);
2043 /* a misnomer, actually - it's allocate and reserve parport number */
2044 p
= parport_register_port(base
, irq
, dma
, ops
);
2048 base_res
= request_region(base
, 3, p
->name
);
2052 memcpy(ops
, &parport_pc_ops
, sizeof(struct parport_operations
));
2054 priv
->ctr_writable
= ~0x10;
2056 priv
->fifo_depth
= 0;
2057 priv
->dma_buf
= NULL
;
2058 priv
->dma_handle
= 0;
2059 INIT_LIST_HEAD(&priv
->list
);
2063 p
->base_hi
= base_hi
;
2064 p
->modes
= PARPORT_MODE_PCSPP
| PARPORT_MODE_SAFEININT
;
2065 p
->private_data
= priv
;
2068 ECR_res
= request_region(base_hi
, 3, p
->name
);
2070 parport_ECR_present(p
);
2073 if (base
!= 0x3bc) {
2074 EPP_res
= request_region(base
+0x3, 5, p
->name
);
2076 if (!parport_EPP_supported(p
))
2077 parport_ECPEPP_supported(p
);
2079 if (!parport_SPP_supported(p
))
2083 parport_ECPPS2_supported(p
);
2085 parport_PS2_supported(p
);
2087 p
->size
= (p
->modes
& PARPORT_MODE_EPP
) ? 8 : 3;
2089 pr_info("%s: PC-style at 0x%lx", p
->name
, p
->base
);
2090 if (p
->base_hi
&& priv
->ecr
)
2091 pr_cont(" (0x%lx)", p
->base_hi
);
2092 if (p
->irq
== PARPORT_IRQ_AUTO
) {
2093 p
->irq
= PARPORT_IRQ_NONE
;
2094 parport_irq_probe(p
);
2095 } else if (p
->irq
== PARPORT_IRQ_PROBEONLY
) {
2096 p
->irq
= PARPORT_IRQ_NONE
;
2097 parport_irq_probe(p
);
2099 p
->irq
= PARPORT_IRQ_NONE
;
2101 if (p
->irq
!= PARPORT_IRQ_NONE
) {
2102 pr_cont(", irq %d", p
->irq
);
2103 priv
->ctr_writable
|= 0x10;
2105 if (p
->dma
== PARPORT_DMA_AUTO
) {
2106 p
->dma
= PARPORT_DMA_NONE
;
2107 parport_dma_probe(p
);
2110 if (p
->dma
== PARPORT_DMA_AUTO
) /* To use DMA, giving the irq
2111 is mandatory (see above) */
2112 p
->dma
= PARPORT_DMA_NONE
;
2114 #ifdef CONFIG_PARPORT_PC_FIFO
2115 if (parport_ECP_supported(p
) &&
2116 p
->dma
!= PARPORT_DMA_NOFIFO
&&
2117 priv
->fifo_depth
> 0 && p
->irq
!= PARPORT_IRQ_NONE
) {
2118 p
->modes
|= PARPORT_MODE_ECP
| PARPORT_MODE_COMPAT
;
2119 p
->ops
->compat_write_data
= parport_pc_compat_write_block_pio
;
2120 #ifdef CONFIG_PARPORT_1284
2121 p
->ops
->ecp_write_data
= parport_pc_ecp_write_block_pio
;
2122 /* currently broken, but working on it.. (FB) */
2123 /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */
2124 #endif /* IEEE 1284 support */
2125 if (p
->dma
!= PARPORT_DMA_NONE
) {
2126 pr_cont(", dma %d", p
->dma
);
2127 p
->modes
|= PARPORT_MODE_DMA
;
2129 pr_cont(", using FIFO");
2131 /* We can't use the DMA channel after all. */
2132 p
->dma
= PARPORT_DMA_NONE
;
2133 #endif /* Allowed to use FIFO/DMA */
2137 #define printmode(x) \
2139 if (p->modes & PARPORT_MODE_##x) \
2140 pr_cont("%s%s", f++ ? "," : "", #x); \
2146 printmode(TRISTATE
);
2153 #ifndef CONFIG_PARPORT_1284
2155 #endif /* CONFIG_PARPORT_1284 */
2157 if (probedirq
!= PARPORT_IRQ_NONE
)
2158 pr_info("%s: irq %d detected\n", p
->name
, probedirq
);
2160 /* If No ECP release the ports grabbed above. */
2161 if (ECR_res
&& (p
->modes
& PARPORT_MODE_ECP
) == 0) {
2162 release_region(base_hi
, 3);
2165 /* Likewise for EEP ports */
2166 if (EPP_res
&& (p
->modes
& PARPORT_MODE_EPP
) == 0) {
2167 release_region(base
+3, 5);
2170 if (p
->irq
!= PARPORT_IRQ_NONE
) {
2171 if (request_irq(p
->irq
, parport_irq_handler
,
2172 irqflags
, p
->name
, p
)) {
2173 pr_warn("%s: irq %d in use, resorting to polled operation\n",
2175 p
->irq
= PARPORT_IRQ_NONE
;
2176 p
->dma
= PARPORT_DMA_NONE
;
2179 #ifdef CONFIG_PARPORT_PC_FIFO
2181 if (p
->dma
!= PARPORT_DMA_NONE
) {
2182 if (request_dma(p
->dma
, p
->name
)) {
2183 pr_warn("%s: dma %d in use, resorting to PIO operation\n",
2185 p
->dma
= PARPORT_DMA_NONE
;
2188 dma_alloc_coherent(dev
,
2192 if (!priv
->dma_buf
) {
2193 pr_warn("%s: cannot get buffer for DMA, resorting to PIO operation\n",
2196 p
->dma
= PARPORT_DMA_NONE
;
2204 /* Done probing. Now put the port into a sensible start-up state. */
2207 * Put the ECP detected port in PS2 mode.
2208 * Do this also for ports that have ECR but don't do ECP.
2212 parport_pc_write_data(p
, 0);
2213 parport_pc_data_forward(p
);
2215 /* Now that we've told the sharing engine about the port, and
2216 found out its characteristics, let the high-level drivers
2218 spin_lock(&ports_lock
);
2219 list_add(&priv
->list
, &ports_list
);
2220 spin_unlock(&ports_lock
);
2221 parport_announce_port(p
);
2227 release_region(base_hi
, 3);
2229 release_region(base
+0x3, 5);
2230 release_region(base
, 3);
2232 parport_del_port(p
);
2239 platform_device_unregister(pdev
);
2242 EXPORT_SYMBOL(parport_pc_probe_port
);
2244 void parport_pc_unregister_port(struct parport
*p
)
2246 struct parport_pc_private
*priv
= p
->private_data
;
2247 struct parport_operations
*ops
= p
->ops
;
2249 parport_remove_port(p
);
2250 spin_lock(&ports_lock
);
2251 list_del_init(&priv
->list
);
2252 spin_unlock(&ports_lock
);
2253 #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
2254 if (p
->dma
!= PARPORT_DMA_NONE
)
2257 if (p
->irq
!= PARPORT_IRQ_NONE
)
2258 free_irq(p
->irq
, p
);
2259 release_region(p
->base
, 3);
2261 release_region(p
->base
+ 3, p
->size
- 3);
2262 if (p
->modes
& PARPORT_MODE_ECP
)
2263 release_region(p
->base_hi
, 3);
2264 #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
2266 dma_free_coherent(p
->physport
->dev
, PAGE_SIZE
,
2270 kfree(p
->private_data
);
2271 parport_del_port(p
);
2272 kfree(ops
); /* hope no-one cached it */
2274 EXPORT_SYMBOL(parport_pc_unregister_port
);
2278 /* ITE support maintained by Rich Liu <richliu@poorman.org> */
2279 static int sio_ite_8872_probe(struct pci_dev
*pdev
, int autoirq
, int autodma
,
2280 const struct parport_pc_via_data
*via
)
2282 short inta_addr
[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 };
2284 u32 ite8872_lpt
, ite8872_lpthi
;
2285 u8 ite8872_irq
, type
;
2289 pr_debug("sio_ite_8872_probe()\n");
2291 /* make sure which one chip */
2292 for (i
= 0; i
< 5; i
++) {
2293 if (request_region(inta_addr
[i
], 32, "it887x")) {
2295 pci_write_config_dword(pdev
, 0x60,
2296 0xe5000000 | inta_addr
[i
]);
2297 pci_write_config_dword(pdev
, 0x78,
2298 0x00000000 | inta_addr
[i
]);
2299 test
= inb(inta_addr
[i
]);
2302 release_region(inta_addr
[i
], 32);
2306 pr_info("parport_pc: cannot find ITE8872 INTA\n");
2310 type
= inb(inta_addr
[i
] + 0x18);
2315 pr_info("parport_pc: ITE8871 found (1P)\n");
2316 ite8872set
= 0x64200000;
2319 pr_info("parport_pc: ITE8875 found (1P)\n");
2320 ite8872set
= 0x64200000;
2323 pr_info("parport_pc: ITE8872 found (2S1P)\n");
2324 ite8872set
= 0x64e00000;
2327 pr_info("parport_pc: ITE8873 found (1S)\n");
2328 release_region(inta_addr
[i
], 32);
2331 pr_info("parport_pc: ITE8874 found (2S)\n");
2332 release_region(inta_addr
[i
], 32);
2335 pr_info("parport_pc: unknown ITE887x\n");
2336 pr_info("parport_pc: please mail 'lspci -nvv' output to Rich.Liu@ite.com.tw\n");
2337 release_region(inta_addr
[i
], 32);
2341 pci_read_config_byte(pdev
, 0x3c, &ite8872_irq
);
2342 pci_read_config_dword(pdev
, 0x1c, &ite8872_lpt
);
2343 ite8872_lpt
&= 0x0000ff00;
2344 pci_read_config_dword(pdev
, 0x20, &ite8872_lpthi
);
2345 ite8872_lpthi
&= 0x0000ff00;
2346 pci_write_config_dword(pdev
, 0x6c, 0xe3000000 | ite8872_lpt
);
2347 pci_write_config_dword(pdev
, 0x70, 0xe3000000 | ite8872_lpthi
);
2348 pci_write_config_dword(pdev
, 0x80, (ite8872_lpthi
<<16) | ite8872_lpt
);
2349 /* SET SPP&EPP , Parallel Port NO DMA , Enable All Function */
2350 /* SET Parallel IRQ */
2351 pci_write_config_dword(pdev
, 0x9c,
2352 ite8872set
| (ite8872_irq
* 0x11111));
2354 pr_debug("ITE887x: The IRQ is %d\n", ite8872_irq
);
2355 pr_debug("ITE887x: The PARALLEL I/O port is 0x%x\n", ite8872_lpt
);
2356 pr_debug("ITE887x: The PARALLEL I/O porthi is 0x%x\n", ite8872_lpthi
);
2358 /* Let the user (or defaults) steer us away from interrupts */
2360 if (autoirq
!= PARPORT_IRQ_AUTO
)
2361 irq
= PARPORT_IRQ_NONE
;
2364 * Release the resource so that parport_pc_probe_port can get it.
2366 release_region(inta_addr
[i
], 32);
2367 if (parport_pc_probe_port(ite8872_lpt
, ite8872_lpthi
,
2368 irq
, PARPORT_DMA_NONE
, &pdev
->dev
, 0)) {
2369 pr_info("parport_pc: ITE 8872 parallel port: io=0x%X",
2371 if (irq
!= PARPORT_IRQ_NONE
)
2372 pr_cont(", irq=%d", irq
);
2380 /* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru>
2381 based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */
2382 static int parport_init_mode
;
2384 /* Data for two known VIA chips */
2385 static struct parport_pc_via_data via_686a_data
= {
2394 static struct parport_pc_via_data via_8231_data
= {
2404 static int sio_via_probe(struct pci_dev
*pdev
, int autoirq
, int autodma
,
2405 const struct parport_pc_via_data
*via
)
2407 u8 tmp
, tmp2
, siofunc
;
2410 unsigned port1
, port2
;
2411 unsigned have_epp
= 0;
2413 printk(KERN_DEBUG
"parport_pc: VIA 686A/8231 detected\n");
2415 switch (parport_init_mode
) {
2417 printk(KERN_DEBUG
"parport_pc: setting SPP mode\n");
2418 siofunc
= VIA_FUNCTION_PARPORT_SPP
;
2421 printk(KERN_DEBUG
"parport_pc: setting PS/2 mode\n");
2422 siofunc
= VIA_FUNCTION_PARPORT_SPP
;
2423 ppcontrol
= VIA_PARPORT_BIDIR
;
2426 printk(KERN_DEBUG
"parport_pc: setting EPP mode\n");
2427 siofunc
= VIA_FUNCTION_PARPORT_EPP
;
2428 ppcontrol
= VIA_PARPORT_BIDIR
;
2432 printk(KERN_DEBUG
"parport_pc: setting ECP mode\n");
2433 siofunc
= VIA_FUNCTION_PARPORT_ECP
;
2434 ppcontrol
= VIA_PARPORT_BIDIR
;
2437 printk(KERN_DEBUG
"parport_pc: setting EPP+ECP mode\n");
2438 siofunc
= VIA_FUNCTION_PARPORT_ECP
;
2439 ppcontrol
= VIA_PARPORT_BIDIR
|VIA_PARPORT_ECPEPP
;
2443 printk(KERN_DEBUG
"parport_pc: probing current configuration\n");
2444 siofunc
= VIA_FUNCTION_PROBE
;
2448 * unlock super i/o configuration
2450 pci_read_config_byte(pdev
, via
->via_pci_superio_config_reg
, &tmp
);
2451 tmp
|= via
->via_pci_superio_config_data
;
2452 pci_write_config_byte(pdev
, via
->via_pci_superio_config_reg
, tmp
);
2454 /* Bits 1-0: Parallel Port Mode / Enable */
2455 outb(via
->viacfg_function
, VIA_CONFIG_INDEX
);
2456 tmp
= inb(VIA_CONFIG_DATA
);
2457 /* Bit 5: EPP+ECP enable; bit 7: PS/2 bidirectional port enable */
2458 outb(via
->viacfg_parport_control
, VIA_CONFIG_INDEX
);
2459 tmp2
= inb(VIA_CONFIG_DATA
);
2460 if (siofunc
== VIA_FUNCTION_PROBE
) {
2461 siofunc
= tmp
& VIA_FUNCTION_PARPORT_DISABLE
;
2464 tmp
&= ~VIA_FUNCTION_PARPORT_DISABLE
;
2466 outb(via
->viacfg_function
, VIA_CONFIG_INDEX
);
2467 outb(tmp
, VIA_CONFIG_DATA
);
2468 tmp2
&= ~(VIA_PARPORT_BIDIR
|VIA_PARPORT_ECPEPP
);
2470 outb(via
->viacfg_parport_control
, VIA_CONFIG_INDEX
);
2471 outb(tmp2
, VIA_CONFIG_DATA
);
2474 /* Parallel Port I/O Base Address, bits 9-2 */
2475 outb(via
->viacfg_parport_base
, VIA_CONFIG_INDEX
);
2476 port1
= inb(VIA_CONFIG_DATA
) << 2;
2478 printk(KERN_DEBUG
"parport_pc: Current parallel port base: 0x%X\n",
2480 if (port1
== 0x3BC && have_epp
) {
2481 outb(via
->viacfg_parport_base
, VIA_CONFIG_INDEX
);
2482 outb((0x378 >> 2), VIA_CONFIG_DATA
);
2483 printk(KERN_DEBUG
"parport_pc: Parallel port base changed to 0x378\n");
2488 * lock super i/o configuration
2490 pci_read_config_byte(pdev
, via
->via_pci_superio_config_reg
, &tmp
);
2491 tmp
&= ~via
->via_pci_superio_config_data
;
2492 pci_write_config_byte(pdev
, via
->via_pci_superio_config_reg
, tmp
);
2494 if (siofunc
== VIA_FUNCTION_PARPORT_DISABLE
) {
2495 pr_info("parport_pc: VIA parallel port disabled in BIOS\n");
2499 /* Bits 7-4: PnP Routing for Parallel Port IRQ */
2500 pci_read_config_byte(pdev
, via
->via_pci_parport_irq_reg
, &tmp
);
2501 irq
= ((tmp
& VIA_IRQCONTROL_PARALLEL
) >> 4);
2503 if (siofunc
== VIA_FUNCTION_PARPORT_ECP
) {
2504 /* Bits 3-2: PnP Routing for Parallel Port DMA */
2505 pci_read_config_byte(pdev
, via
->via_pci_parport_dma_reg
, &tmp
);
2506 dma
= ((tmp
& VIA_DMACONTROL_PARALLEL
) >> 2);
2508 /* if ECP not enabled, DMA is not enabled, assumed
2509 bogus 'dma' value */
2510 dma
= PARPORT_DMA_NONE
;
2512 /* Let the user (or defaults) steer us away from interrupts and DMA */
2513 if (autoirq
== PARPORT_IRQ_NONE
) {
2514 irq
= PARPORT_IRQ_NONE
;
2515 dma
= PARPORT_DMA_NONE
;
2517 if (autodma
== PARPORT_DMA_NONE
)
2518 dma
= PARPORT_DMA_NONE
;
2522 port2
= 0x7bc; break;
2524 port2
= 0x778; break;
2526 port2
= 0x678; break;
2528 pr_info("parport_pc: Weird VIA parport base 0x%X, ignoring\n",
2533 /* filter bogus IRQs */
2539 irq
= PARPORT_IRQ_NONE
;
2542 default: /* do nothing */
2546 /* finally, do the probe with values obtained */
2547 if (parport_pc_probe_port(port1
, port2
, irq
, dma
, &pdev
->dev
, 0)) {
2548 pr_info("parport_pc: VIA parallel port: io=0x%X", port1
);
2549 if (irq
!= PARPORT_IRQ_NONE
)
2550 pr_cont(", irq=%d", irq
);
2551 if (dma
!= PARPORT_DMA_NONE
)
2552 pr_cont(", dma=%d", dma
);
2557 pr_warn("parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n",
2563 enum parport_pc_sio_types
{
2564 sio_via_686a
= 0, /* Via VT82C686A motherboard Super I/O */
2565 sio_via_8231
, /* Via VT8231 south bridge integrated Super IO */
2570 /* each element directly indexed from enum list, above */
2571 static struct parport_pc_superio
{
2572 int (*probe
) (struct pci_dev
*pdev
, int autoirq
, int autodma
,
2573 const struct parport_pc_via_data
*via
);
2574 const struct parport_pc_via_data
*via
;
2575 } parport_pc_superio_info
[] = {
2576 { sio_via_probe
, &via_686a_data
, },
2577 { sio_via_probe
, &via_8231_data
, },
2578 { sio_ite_8872_probe
, NULL
, },
2581 enum parport_pc_pci_cards
{
2582 siig_1p_10x
= last_sio
,
2587 lava_parallel_dual_a
,
2588 lava_parallel_dual_b
,
2619 /* each element directly indexed from enum list, above
2620 * (but offset by last_sio) */
2621 static struct parport_pc_pci
{
2623 struct { /* BAR (base address registers) numbers in the config
2627 /* -1 if not there, >6 for offset-method (max BAR is 6) */
2630 /* If set, this is called immediately after pci_enable_device.
2631 * If it returns non-zero, no probing will take place and the
2632 * ports will not be used. */
2633 int (*preinit_hook
) (struct pci_dev
*pdev
, int autoirq
, int autodma
);
2635 /* If set, this is called after probing for ports. If 'failed'
2636 * is non-zero we couldn't use any of the ports. */
2637 void (*postinit_hook
) (struct pci_dev
*pdev
, int failed
);
2639 /* siig_1p_10x */ { 1, { { 2, 3 }, } },
2640 /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } },
2641 /* siig_1p_20x */ { 1, { { 0, 1 }, } },
2642 /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } },
2643 /* lava_parallel */ { 1, { { 0, -1 }, } },
2644 /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } },
2645 /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } },
2646 /* boca_ioppar */ { 1, { { 0, -1 }, } },
2647 /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } },
2648 /* timedia_4006a */ { 1, { { 0, -1 }, } },
2649 /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } },
2650 /* timedia_4008a */ { 1, { { 0, 1 }, } },
2651 /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2652 /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } },
2653 /* SYBA uses fixed offsets in
2655 /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } },
2656 /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } },
2657 /* titan_010l */ { 1, { { 3, -1 }, } },
2658 /* avlab_1p */ { 1, { { 0, 1}, } },
2659 /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} },
2660 /* The Oxford Semi cards are unusual: 954 doesn't support ECP,
2661 * and 840 locks up if you write 1 to bit 2! */
2662 /* oxsemi_952 */ { 1, { { 0, 1 }, } },
2663 /* oxsemi_954 */ { 1, { { 0, -1 }, } },
2664 /* oxsemi_840 */ { 1, { { 0, 1 }, } },
2665 /* oxsemi_pcie_pport */ { 1, { { 0, 1 }, } },
2666 /* aks_0100 */ { 1, { { 0, -1 }, } },
2667 /* mobility_pp */ { 1, { { 0, 1 }, } },
2669 /* The netmos entries below are untested */
2670 /* netmos_9705 */ { 1, { { 0, -1 }, } },
2671 /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} },
2672 /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} },
2673 /* netmos_9805 */ { 1, { { 0, 1 }, } },
2674 /* netmos_9815 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2675 /* netmos_9901 */ { 1, { { 0, -1 }, } },
2676 /* netmos_9865 */ { 1, { { 0, -1 }, } },
2677 /* quatech_sppxp100 */ { 1, { { 0, 1 }, } },
2678 /* wch_ch382l */ { 1, { { 2, -1 }, } },
2681 static const struct pci_device_id parport_pc_pci_tbl
[] = {
2682 /* Super-IO onboard chips */
2683 { 0x1106, 0x0686, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, sio_via_686a
},
2684 { 0x1106, 0x8231, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, sio_via_8231
},
2685 { PCI_VENDOR_ID_ITE
, PCI_DEVICE_ID_ITE_8872
,
2686 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, sio_ite_8872
},
2689 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_1P_10x
,
2690 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_1p_10x
},
2691 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_2P_10x
,
2692 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_2p_10x
},
2693 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_1P_20x
,
2694 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_1p_20x
},
2695 { PCI_VENDOR_ID_SIIG
, PCI_DEVICE_ID_SIIG_2P_20x
,
2696 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, siig_2p_20x
},
2697 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_PARALLEL
,
2698 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, lava_parallel
},
2699 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_DUAL_PAR_A
,
2700 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, lava_parallel_dual_a
},
2701 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_DUAL_PAR_B
,
2702 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, lava_parallel_dual_b
},
2703 { PCI_VENDOR_ID_LAVA
, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR
,
2704 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, boca_ioppar
},
2705 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9050
,
2706 PCI_SUBVENDOR_ID_EXSYS
, PCI_SUBDEVICE_ID_EXSYS_4014
, 0, 0, plx_9050
},
2707 /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
2708 { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a
},
2709 { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014
},
2710 { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a
},
2711 { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018
},
2712 { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a
},
2713 { PCI_VENDOR_ID_SYBA
, PCI_DEVICE_ID_SYBA_2P_EPP
,
2714 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, syba_2p_epp
},
2715 { PCI_VENDOR_ID_SYBA
, PCI_DEVICE_ID_SYBA_1P_ECP
,
2716 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, syba_1p_ecp
},
2717 { PCI_VENDOR_ID_TITAN
, PCI_DEVICE_ID_TITAN_010L
,
2718 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, titan_010l
},
2719 /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
2720 /* AFAVLAB_TK9902 */
2721 { 0x14db, 0x2120, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, avlab_1p
},
2722 { 0x14db, 0x2121, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, avlab_2p
},
2723 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_16PCI952PP
,
2724 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_952
},
2725 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_16PCI954PP
,
2726 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_954
},
2727 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_12PCI840
,
2728 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_840
},
2729 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe840
,
2730 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2731 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe840_G
,
2732 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2733 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe952_0
,
2734 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2735 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe952_0_G
,
2736 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2737 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe952_1
,
2738 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2739 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe952_1_G
,
2740 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2741 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe952_1_U
,
2742 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2743 { PCI_VENDOR_ID_OXSEMI
, PCI_DEVICE_ID_OXSEMI_PCIe952_1_GU
,
2744 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, oxsemi_pcie_pport
},
2745 { PCI_VENDOR_ID_AKS
, PCI_DEVICE_ID_AKS_ALADDINCARD
,
2746 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, aks_0100
},
2747 { 0x14f2, 0x0121, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, mobility_pp
},
2748 /* NetMos communication controllers */
2749 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9705
,
2750 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9705
},
2751 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9715
,
2752 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9715
},
2753 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9755
,
2754 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9755
},
2755 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9805
,
2756 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9805
},
2757 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9815
,
2758 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, netmos_9815
},
2759 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9901
,
2760 0xA000, 0x2000, 0, 0, netmos_9901
},
2761 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9865
,
2762 0xA000, 0x1000, 0, 0, netmos_9865
},
2763 { PCI_VENDOR_ID_NETMOS
, PCI_DEVICE_ID_NETMOS_9865
,
2764 0xA000, 0x2000, 0, 0, netmos_9865
},
2765 /* Quatech SPPXP-100 Parallel port PCI ExpressCard */
2766 { PCI_VENDOR_ID_QUATECH
, PCI_DEVICE_ID_QUATECH_SPPXP_100
,
2767 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, quatech_sppxp100
},
2768 /* WCH CH382L PCI-E single parallel port card */
2769 { 0x1c00, 0x3050, 0x1c00, 0x3050, 0, 0, wch_ch382l
},
2770 { 0, } /* terminate list */
2772 MODULE_DEVICE_TABLE(pci
, parport_pc_pci_tbl
);
2774 struct pci_parport_data
{
2776 struct parport
*ports
[2];
2779 static int parport_pc_pci_probe(struct pci_dev
*dev
,
2780 const struct pci_device_id
*id
)
2782 int err
, count
, n
, i
= id
->driver_data
;
2783 struct pci_parport_data
*data
;
2786 /* This is an onboard Super-IO and has already been probed */
2789 /* This is a PCI card */
2792 err
= pci_enable_device(dev
);
2796 data
= kmalloc(sizeof(struct pci_parport_data
), GFP_KERNEL
);
2800 if (cards
[i
].preinit_hook
&&
2801 cards
[i
].preinit_hook(dev
, PARPORT_IRQ_NONE
, PARPORT_DMA_NONE
)) {
2806 for (n
= 0; n
< cards
[i
].numports
; n
++) {
2807 int lo
= cards
[i
].addr
[n
].lo
;
2808 int hi
= cards
[i
].addr
[n
].hi
;
2810 unsigned long io_lo
, io_hi
;
2811 io_lo
= pci_resource_start(dev
, lo
);
2813 if ((hi
>= 0) && (hi
<= 6))
2814 io_hi
= pci_resource_start(dev
, hi
);
2816 io_lo
+= hi
; /* Reinterpret the meaning of
2817 "hi" as an offset (see SYBA
2819 /* TODO: test if sharing interrupts works */
2821 if (irq
== IRQ_NONE
) {
2822 printk(KERN_DEBUG
"PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
2823 id
->vendor
, id
->device
, io_lo
, io_hi
);
2824 irq
= PARPORT_IRQ_NONE
;
2826 printk(KERN_DEBUG
"PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
2827 id
->vendor
, id
->device
, io_lo
, io_hi
, irq
);
2829 data
->ports
[count
] =
2830 parport_pc_probe_port(io_lo
, io_hi
, irq
,
2831 PARPORT_DMA_NONE
, &dev
->dev
,
2833 if (data
->ports
[count
])
2839 if (cards
[i
].postinit_hook
)
2840 cards
[i
].postinit_hook(dev
, count
== 0);
2843 pci_set_drvdata(dev
, data
);
2852 static void parport_pc_pci_remove(struct pci_dev
*dev
)
2854 struct pci_parport_data
*data
= pci_get_drvdata(dev
);
2858 for (i
= data
->num
- 1; i
>= 0; i
--)
2859 parport_pc_unregister_port(data
->ports
[i
]);
2865 static struct pci_driver parport_pc_pci_driver
= {
2866 .name
= "parport_pc",
2867 .id_table
= parport_pc_pci_tbl
,
2868 .probe
= parport_pc_pci_probe
,
2869 .remove
= parport_pc_pci_remove
,
2872 static int __init
parport_pc_init_superio(int autoirq
, int autodma
)
2874 const struct pci_device_id
*id
;
2875 struct pci_dev
*pdev
= NULL
;
2878 for_each_pci_dev(pdev
) {
2879 id
= pci_match_id(parport_pc_pci_tbl
, pdev
);
2880 if (id
== NULL
|| id
->driver_data
>= last_sio
)
2883 if (parport_pc_superio_info
[id
->driver_data
].probe(
2884 pdev
, autoirq
, autodma
,
2885 parport_pc_superio_info
[id
->driver_data
].via
)) {
2890 return ret
; /* number of devices found */
2893 static struct pci_driver parport_pc_pci_driver
;
2894 static int __init
parport_pc_init_superio(int autoirq
, int autodma
)
2898 #endif /* CONFIG_PCI */
2902 static const struct pnp_device_id parport_pc_pnp_tbl
[] = {
2903 /* Standard LPT Printer Port */
2904 {.id
= "PNP0400", .driver_data
= 0},
2905 /* ECP Printer Port */
2906 {.id
= "PNP0401", .driver_data
= 0},
2910 MODULE_DEVICE_TABLE(pnp
, parport_pc_pnp_tbl
);
2912 static int parport_pc_pnp_probe(struct pnp_dev
*dev
,
2913 const struct pnp_device_id
*id
)
2915 struct parport
*pdata
;
2916 unsigned long io_lo
, io_hi
;
2919 if (pnp_port_valid(dev
, 0) &&
2920 !(pnp_port_flags(dev
, 0) & IORESOURCE_DISABLED
)) {
2921 io_lo
= pnp_port_start(dev
, 0);
2925 if (pnp_port_valid(dev
, 1) &&
2926 !(pnp_port_flags(dev
, 1) & IORESOURCE_DISABLED
)) {
2927 io_hi
= pnp_port_start(dev
, 1);
2931 if (pnp_irq_valid(dev
, 0) &&
2932 !(pnp_irq_flags(dev
, 0) & IORESOURCE_DISABLED
)) {
2933 irq
= pnp_irq(dev
, 0);
2935 irq
= PARPORT_IRQ_NONE
;
2937 if (pnp_dma_valid(dev
, 0) &&
2938 !(pnp_dma_flags(dev
, 0) & IORESOURCE_DISABLED
)) {
2939 dma
= pnp_dma(dev
, 0);
2941 dma
= PARPORT_DMA_NONE
;
2943 dev_info(&dev
->dev
, "reported by %s\n", dev
->protocol
->name
);
2944 pdata
= parport_pc_probe_port(io_lo
, io_hi
, irq
, dma
, &dev
->dev
, 0);
2948 pnp_set_drvdata(dev
, pdata
);
2952 static void parport_pc_pnp_remove(struct pnp_dev
*dev
)
2954 struct parport
*pdata
= (struct parport
*)pnp_get_drvdata(dev
);
2958 parport_pc_unregister_port(pdata
);
2961 /* we only need the pnp layer to activate the device, at least for now */
2962 static struct pnp_driver parport_pc_pnp_driver
= {
2963 .name
= "parport_pc",
2964 .id_table
= parport_pc_pnp_tbl
,
2965 .probe
= parport_pc_pnp_probe
,
2966 .remove
= parport_pc_pnp_remove
,
2970 static struct pnp_driver parport_pc_pnp_driver
;
2971 #endif /* CONFIG_PNP */
2973 static int parport_pc_platform_probe(struct platform_device
*pdev
)
2975 /* Always succeed, the actual probing is done in
2976 * parport_pc_probe_port(). */
2980 static struct platform_driver parport_pc_platform_driver
= {
2982 .name
= "parport_pc",
2984 .probe
= parport_pc_platform_probe
,
2987 /* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */
2988 static int __attribute__((unused
))
2989 parport_pc_find_isa_ports(int autoirq
, int autodma
)
2993 if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq
, autodma
, NULL
, 0))
2995 if (parport_pc_probe_port(0x378, 0x778, autoirq
, autodma
, NULL
, 0))
2997 if (parport_pc_probe_port(0x278, 0x678, autoirq
, autodma
, NULL
, 0))
3003 /* This function is called by parport_pc_init if the user didn't
3004 * specify any ports to probe. Its job is to find some ports. Order
3005 * is important here -- we want ISA ports to be registered first,
3006 * followed by PCI cards (for least surprise), but before that we want
3007 * to do chipset-specific tests for some onboard ports that we know
3010 * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY
3011 * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO
3013 static void __init
parport_pc_find_ports(int autoirq
, int autodma
)
3017 #ifdef CONFIG_PARPORT_PC_SUPERIO
3018 detect_and_report_it87();
3019 detect_and_report_winbond();
3020 detect_and_report_smsc();
3023 /* Onboard SuperIO chipsets that show themselves on the PCI bus. */
3024 count
+= parport_pc_init_superio(autoirq
, autodma
);
3026 /* PnP ports, skip detection if SuperIO already found them */
3028 err
= pnp_register_driver(&parport_pc_pnp_driver
);
3030 pnp_registered_parport
= 1;
3033 /* ISA ports and whatever (see asm/parport.h). */
3034 parport_pc_find_nonpci_ports(autoirq
, autodma
);
3036 err
= pci_register_driver(&parport_pc_pci_driver
);
3038 pci_registered_parport
= 1;
3042 * Piles of crap below pretend to be a parser for module and kernel
3043 * parameters. Say "thank you" to whoever had come up with that
3044 * syntax and keep in mind that code below is a cleaned up version.
3047 static int __initdata io
[PARPORT_PC_MAX_PORTS
+1] = {
3048 [0 ... PARPORT_PC_MAX_PORTS
] = 0
3050 static int __initdata io_hi
[PARPORT_PC_MAX_PORTS
+1] = {
3051 [0 ... PARPORT_PC_MAX_PORTS
] = PARPORT_IOHI_AUTO
3053 static int __initdata dmaval
[PARPORT_PC_MAX_PORTS
] = {
3054 [0 ... PARPORT_PC_MAX_PORTS
-1] = PARPORT_DMA_NONE
3056 static int __initdata irqval
[PARPORT_PC_MAX_PORTS
] = {
3057 [0 ... PARPORT_PC_MAX_PORTS
-1] = PARPORT_IRQ_PROBEONLY
3060 static int __init
parport_parse_param(const char *s
, int *val
,
3061 int automatic
, int none
, int nofifo
)
3065 if (!strncmp(s
, "auto", 4))
3067 else if (!strncmp(s
, "none", 4))
3069 else if (nofifo
&& !strncmp(s
, "nofifo", 6))
3073 unsigned long r
= simple_strtoul(s
, &ep
, 0);
3077 pr_err("parport: bad specifier `%s'\n", s
);
3084 static int __init
parport_parse_irq(const char *irqstr
, int *val
)
3086 return parport_parse_param(irqstr
, val
, PARPORT_IRQ_AUTO
,
3087 PARPORT_IRQ_NONE
, 0);
3090 static int __init
parport_parse_dma(const char *dmastr
, int *val
)
3092 return parport_parse_param(dmastr
, val
, PARPORT_DMA_AUTO
,
3093 PARPORT_DMA_NONE
, PARPORT_DMA_NOFIFO
);
3097 static int __init
parport_init_mode_setup(char *str
)
3099 printk(KERN_DEBUG
"parport_pc.c: Specified parameter parport_init_mode=%s\n",
3102 if (!strcmp(str
, "spp"))
3103 parport_init_mode
= 1;
3104 if (!strcmp(str
, "ps2"))
3105 parport_init_mode
= 2;
3106 if (!strcmp(str
, "epp"))
3107 parport_init_mode
= 3;
3108 if (!strcmp(str
, "ecp"))
3109 parport_init_mode
= 4;
3110 if (!strcmp(str
, "ecpepp"))
3111 parport_init_mode
= 5;
3117 static char *irq
[PARPORT_PC_MAX_PORTS
];
3118 static char *dma
[PARPORT_PC_MAX_PORTS
];
3120 MODULE_PARM_DESC(io
, "Base I/O address (SPP regs)");
3121 module_param_hw_array(io
, int, ioport
, NULL
, 0);
3122 MODULE_PARM_DESC(io_hi
, "Base I/O address (ECR)");
3123 module_param_hw_array(io_hi
, int, ioport
, NULL
, 0);
3124 MODULE_PARM_DESC(irq
, "IRQ line");
3125 module_param_hw_array(irq
, charp
, irq
, NULL
, 0);
3126 MODULE_PARM_DESC(dma
, "DMA channel");
3127 module_param_hw_array(dma
, charp
, dma
, NULL
, 0);
3128 #if defined(CONFIG_PARPORT_PC_SUPERIO) || \
3129 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
3130 MODULE_PARM_DESC(verbose_probing
, "Log chit-chat during initialisation");
3131 module_param(verbose_probing
, int, 0644);
3134 static char *init_mode
;
3135 MODULE_PARM_DESC(init_mode
,
3136 "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
3137 module_param(init_mode
, charp
, 0);
3140 static int __init
parse_parport_params(void)
3147 parport_init_mode_setup(init_mode
);
3150 for (i
= 0; i
< PARPORT_PC_MAX_PORTS
&& io
[i
]; i
++) {
3151 if (parport_parse_irq(irq
[i
], &val
))
3154 if (parport_parse_dma(dma
[i
], &val
))
3159 /* The user can make us use any IRQs or DMAs we find. */
3160 if (irq
[0] && !parport_parse_irq(irq
[0], &val
))
3162 case PARPORT_IRQ_NONE
:
3163 case PARPORT_IRQ_AUTO
:
3167 pr_warn("parport_pc: irq specified without base address. Use 'io=' to specify one\n");
3170 if (dma
[0] && !parport_parse_dma(dma
[0], &val
))
3172 case PARPORT_DMA_NONE
:
3173 case PARPORT_DMA_AUTO
:
3177 pr_warn("parport_pc: dma specified without base address. Use 'io=' to specify one\n");
3185 static int parport_setup_ptr __initdata
;
3188 * Acceptable parameters:
3192 * parport=0xBASE[,IRQ[,DMA]]
3194 * IRQ/DMA may be numeric or 'auto' or 'none'
3196 static int __init
parport_setup(char *str
)
3202 if (!str
|| !*str
|| (*str
== '0' && !*(str
+1))) {
3203 /* Disable parport if "parport=0" in cmdline */
3204 io
[0] = PARPORT_DISABLE
;
3208 if (!strncmp(str
, "auto", 4)) {
3209 irqval
[0] = PARPORT_IRQ_AUTO
;
3210 dmaval
[0] = PARPORT_DMA_AUTO
;
3214 val
= simple_strtoul(str
, &endptr
, 0);
3215 if (endptr
== str
) {
3216 pr_warn("parport=%s not understood\n", str
);
3220 if (parport_setup_ptr
== PARPORT_PC_MAX_PORTS
) {
3221 pr_err("parport=%s ignored, too many ports\n", str
);
3225 io
[parport_setup_ptr
] = val
;
3226 irqval
[parport_setup_ptr
] = PARPORT_IRQ_NONE
;
3227 dmaval
[parport_setup_ptr
] = PARPORT_DMA_NONE
;
3229 sep
= strchr(str
, ',');
3231 if (parport_parse_irq(sep
, &val
))
3233 irqval
[parport_setup_ptr
] = val
;
3234 sep
= strchr(sep
, ',');
3236 if (parport_parse_dma(sep
, &val
))
3238 dmaval
[parport_setup_ptr
] = val
;
3241 parport_setup_ptr
++;
3245 static int __init
parse_parport_params(void)
3247 return io
[0] == PARPORT_DISABLE
;
3250 __setup("parport=", parport_setup
);
3253 * Acceptable parameters:
3255 * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
3258 __setup("parport_init_mode=", parport_init_mode_setup
);
3262 /* "Parser" ends here */
3264 static int __init
parport_pc_init(void)
3268 if (parse_parport_params())
3271 err
= platform_driver_register(&parport_pc_platform_driver
);
3277 /* Only probe the ports we were given. */
3279 for (i
= 0; i
< PARPORT_PC_MAX_PORTS
; i
++) {
3282 if (io_hi
[i
] == PARPORT_IOHI_AUTO
)
3283 io_hi
[i
] = 0x400 + io
[i
];
3284 parport_pc_probe_port(io
[i
], io_hi
[i
],
3285 irqval
[i
], dmaval
[i
], NULL
, 0);
3288 parport_pc_find_ports(irqval
[0], dmaval
[0]);
3293 static void __exit
parport_pc_exit(void)
3295 if (pci_registered_parport
)
3296 pci_unregister_driver(&parport_pc_pci_driver
);
3297 if (pnp_registered_parport
)
3298 pnp_unregister_driver(&parport_pc_pnp_driver
);
3299 platform_driver_unregister(&parport_pc_platform_driver
);
3301 while (!list_empty(&ports_list
)) {
3302 struct parport_pc_private
*priv
;
3303 struct parport
*port
;
3305 priv
= list_entry(ports_list
.next
,
3306 struct parport_pc_private
, list
);
3309 parport_pc_unregister_port(port
);
3310 if (dev
&& dev
->bus
== &platform_bus_type
)
3311 platform_device_unregister(to_platform_device(dev
));
3315 MODULE_AUTHOR("Phil Blundell, Tim Waugh, others");
3316 MODULE_DESCRIPTION("PC-style parallel port driver");
3317 MODULE_LICENSE("GPL");
3318 module_init(parport_pc_init
)
3319 module_exit(parport_pc_exit
)