blob: 151bf5bc8afe968d196702bad526c38b2797a4f8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Low-level parallel-port routines for 8255-based PC-style hardware.
Alan Cox3aeda9b2009-06-11 13:07:29 +01002 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Authors: Phil Blundell <philb@gnu.org>
4 * Tim Waugh <tim@cyberelk.demon.co.uk>
5 * Jose Renau <renau@acm.org>
Adrian Bunkbdca3f22006-06-26 18:19:23 +02006 * David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Andrea Arcangeli
8 *
9 * based on work by Grant Guenther <grant@torque.net> and Phil Blundell.
10 *
11 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
12 * DMA support - Bert De Jonghe <bert@sophis.be>
13 * Many ECP bugs fixed. Fred Barnes & Jamie Lokier, 1999
Alan Cox3aeda9b2009-06-11 13:07:29 +010014 * More PCI support now conditional on CONFIG_PCI, 03/2001, Paul G.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Various hacks, Fred Barnes, 04/2001
16 * Updated probing logic - Adam Belay <ambx1@neo.rr.com>
17 */
18
19/* This driver should work with any hardware that is broadly compatible
20 * with that in the IBM PC. This applies to the majority of integrated
21 * I/O chipsets that are commonly available. The expected register
22 * layout is:
23 *
24 * base+0 data
25 * base+1 status
26 * base+2 control
27 *
28 * In addition, there are some optional registers:
29 *
30 * base+3 EPP address
31 * base+4 EPP data
32 * base+0x400 ECP config A
33 * base+0x401 ECP config B
34 * base+0x402 ECP control
35 *
36 * All registers are 8 bits wide and read/write. If your hardware differs
37 * only in register addresses (eg because your registers are on 32-bit
38 * word boundaries) then you can alter the constants in parport_pc.h to
39 * accommodate this.
40 *
41 * Note that the ECP registers may not start at offset 0x400 for PCI cards,
42 * but rather will start at port->base_hi.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/module.h>
46#include <linux/init.h>
47#include <linux/sched.h>
48#include <linux/delay.h>
49#include <linux/errno.h>
50#include <linux/interrupt.h>
51#include <linux/ioport.h>
52#include <linux/kernel.h>
53#include <linux/slab.h>
Andrew Morton8382d2b2007-05-15 23:57:08 -070054#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/pci.h>
56#include <linux/pnp.h>
Jean Delvarea7d801a2007-05-08 00:27:40 -070057#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/sysctl.h>
Alan Cox3aeda9b2009-06-11 13:07:29 +010059#include <linux/io.h>
60#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#include <linux/parport.h>
65#include <linux/parport_pc.h>
66#include <linux/via.h>
67#include <asm/parport.h>
68
69#define PARPORT_PC_MAX_PORTS PARPORT_MAX
70
Al Viro7fbacd52005-05-04 05:39:32 +010071#ifdef CONFIG_ISA_DMA_API
72#define HAS_DMA
73#endif
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* ECR modes */
76#define ECR_SPP 00
77#define ECR_PS2 01
78#define ECR_PPF 02
79#define ECR_ECP 03
80#define ECR_EPP 04
81#define ECR_VND 05
82#define ECR_TST 06
83#define ECR_CNF 07
84#define ECR_MODE_MASK 0xe0
Alan Cox3aeda9b2009-06-11 13:07:29 +010085#define ECR_WRITE(p, v) frob_econtrol((p), 0xff, (v))
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#undef DEBUG
88
89#ifdef DEBUG
90#define DPRINTK printk
91#else
92#define DPRINTK(stuff...)
93#endif
94
95
96#define NR_SUPERIOS 3
97static struct superio_struct { /* For Super-IO chips autodetection */
98 int io;
99 int irq;
100 int dma;
Randy.Dunlap96766a32006-04-18 22:21:57 -0700101} superios[NR_SUPERIOS] = { {0,},};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103static int user_specified;
104#if defined(CONFIG_PARPORT_PC_SUPERIO) || \
105 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
106static int verbose_probing;
107#endif
108static int pci_registered_parport;
109static int pnp_registered_parport;
110
111/* frob_control, but for ECR */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100112static void frob_econtrol(struct parport *pb, unsigned char m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned char v)
114{
115 unsigned char ectr = 0;
116
117 if (m != 0xff)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100118 ectr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Alan Cox3aeda9b2009-06-11 13:07:29 +0100120 DPRINTK(KERN_DEBUG "frob_econtrol(%02x,%02x): %02x -> %02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 m, v, ectr, (ectr & ~m) ^ v);
122
Alan Cox3aeda9b2009-06-11 13:07:29 +0100123 outb((ectr & ~m) ^ v, ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Alan Cox3aeda9b2009-06-11 13:07:29 +0100126static inline void frob_set_mode(struct parport *p, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Alan Cox3aeda9b2009-06-11 13:07:29 +0100128 frob_econtrol(p, ECR_MODE_MASK, mode << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
131#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +0100132/* Safely change the mode bits in the ECR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 Returns:
134 0 : Success
135 -EBUSY: Could not drain FIFO in some finite amount of time,
136 mode not changed!
137 */
138static int change_mode(struct parport *p, int m)
139{
140 const struct parport_pc_private *priv = p->physport->private_data;
141 unsigned char oecr;
142 int mode;
143
Alan Cox3aeda9b2009-06-11 13:07:29 +0100144 DPRINTK(KERN_INFO "parport change_mode ECP-ISA to mode 0x%02x\n", m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 if (!priv->ecr) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100147 printk(KERN_DEBUG "change_mode: but there's no ECR!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return 0;
149 }
150
151 /* Bits <7:5> contain the mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100152 oecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 mode = (oecr >> 5) & 0x7;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100154 if (mode == m)
155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 if (mode >= 2 && !(priv->ctr & 0x20)) {
158 /* This mode resets the FIFO, so we may
159 * have to wait for it to drain first. */
160 unsigned long expire = jiffies + p->physport->cad->timeout;
161 int counter;
162 switch (mode) {
163 case ECR_PPF: /* Parallel Port FIFO mode */
164 case ECR_ECP: /* ECP Parallel Port mode */
165 /* Busy wait for 200us */
166 for (counter = 0; counter < 40; counter++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100167 if (inb(ECONTROL(p)) & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100169 if (signal_pending(current))
170 break;
171 udelay(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
174 /* Poll slowly. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100175 while (!(inb(ECONTROL(p)) & 0x01)) {
176 if (time_after_eq(jiffies, expire))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* The FIFO is stuck. */
178 return -EBUSY;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100179 schedule_timeout_interruptible(
180 msecs_to_jiffies(10));
181 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 break;
183 }
184 }
185 }
186
187 if (mode >= 2 && m >= 2) {
188 /* We have to go through mode 001 */
189 oecr &= ~(7 << 5);
190 oecr |= ECR_PS2 << 5;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100191 ECR_WRITE(p, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
194 /* Set the mode. */
195 oecr &= ~(7 << 5);
196 oecr |= m << 5;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100197 ECR_WRITE(p, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return 0;
199}
200
201#ifdef CONFIG_PARPORT_1284
202/* Find FIFO lossage; FIFO is reset */
203#if 0
Alan Cox3aeda9b2009-06-11 13:07:29 +0100204static int get_fifo_residue(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 int residue;
207 int cnfga;
208 const struct parport_pc_private *priv = p->physport->private_data;
209
210 /* Adjust for the contents of the FIFO. */
211 for (residue = priv->fifo_depth; ; residue--) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100212 if (inb(ECONTROL(p)) & 0x2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /* Full up. */
214 break;
215
Alan Cox3aeda9b2009-06-11 13:07:29 +0100216 outb(0, FIFO(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
Alan Cox3aeda9b2009-06-11 13:07:29 +0100219 printk(KERN_DEBUG "%s: %d PWords were left in FIFO\n", p->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 residue);
221
222 /* Reset the FIFO. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100223 frob_set_mode(p, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* Now change to config mode and clean up. FIXME */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100226 frob_set_mode(p, ECR_CNF);
227 cnfga = inb(CONFIGA(p));
228 printk(KERN_DEBUG "%s: cnfgA contains 0x%02x\n", p->name, cnfga);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if (!(cnfga & (1<<2))) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100231 printk(KERN_DEBUG "%s: Accounting for extra byte\n", p->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 residue++;
233 }
234
235 /* Don't care about partial PWords until support is added for
236 * PWord != 1 byte. */
237
238 /* Back to PS2 mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100239 frob_set_mode(p, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Alan Cox3aeda9b2009-06-11 13:07:29 +0100241 DPRINTK(KERN_DEBUG
242 "*** get_fifo_residue: done residue collecting (ecr = 0x%2.2x)\n",
243 inb(ECONTROL(p)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return residue;
245}
246#endif /* 0 */
247#endif /* IEEE 1284 support */
248#endif /* FIFO support */
249
250/*
251 * Clear TIMEOUT BIT in EPP MODE
252 *
253 * This is also used in SPP detection.
254 */
255static int clear_epp_timeout(struct parport *pb)
256{
257 unsigned char r;
258
259 if (!(parport_pc_read_status(pb) & 0x01))
260 return 1;
261
262 /* To clear timeout some chips require double read */
263 parport_pc_read_status(pb);
264 r = parport_pc_read_status(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100265 outb(r | 0x01, STATUS(pb)); /* Some reset by writing 1 */
266 outb(r & 0xfe, STATUS(pb)); /* Others by writing 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 r = parport_pc_read_status(pb);
268
269 return !(r & 0x01);
270}
271
272/*
273 * Access functions.
274 *
275 * Most of these aren't static because they may be used by the
276 * parport_xxx_yyy macros. extern __inline__ versions of several
277 * of these are in parport_pc.h.
278 */
279
Alan Cox3aeda9b2009-06-11 13:07:29 +0100280static void parport_pc_init_state(struct pardevice *dev,
281 struct parport_state *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 s->u.pc.ctr = 0xc;
284 if (dev->irq_func &&
285 dev->port->irq != PARPORT_IRQ_NONE)
286 /* Set ackIntEn */
287 s->u.pc.ctr |= 0x10;
288
289 s->u.pc.ecr = 0x34; /* NetMos chip can cause problems 0x24;
290 * D.Gruszka VScom */
291}
292
293static void parport_pc_save_state(struct parport *p, struct parport_state *s)
294{
295 const struct parport_pc_private *priv = p->physport->private_data;
296 s->u.pc.ctr = priv->ctr;
297 if (priv->ecr)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100298 s->u.pc.ecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Alan Cox3aeda9b2009-06-11 13:07:29 +0100301static void parport_pc_restore_state(struct parport *p,
302 struct parport_state *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct parport_pc_private *priv = p->physport->private_data;
305 register unsigned char c = s->u.pc.ctr & priv->ctr_writable;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100306 outb(c, CONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 priv->ctr = c;
308 if (priv->ecr)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100309 ECR_WRITE(p, s->u.pc.ecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
312#ifdef CONFIG_PARPORT_1284
Alan Cox3aeda9b2009-06-11 13:07:29 +0100313static size_t parport_pc_epp_read_data(struct parport *port, void *buf,
314 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 size_t got = 0;
317
318 if (flags & PARPORT_W91284PIC) {
319 unsigned char status;
320 size_t left = length;
321
322 /* use knowledge about data lines..:
323 * nFault is 0 if there is at least 1 byte in the Warp's FIFO
324 * pError is 1 if there are 16 bytes in the Warp's FIFO
325 */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100326 status = inb(STATUS(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Alan Cox3aeda9b2009-06-11 13:07:29 +0100328 while (!(status & 0x08) && got < length) {
329 if (left >= 16 && (status & 0x20) && !(status & 0x08)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* can grab 16 bytes from warp fifo */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100331 if (!((long)buf & 0x03))
332 insl(EPPDATA(port), buf, 4);
333 else
334 insb(EPPDATA(port), buf, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 buf += 16;
336 got += 16;
337 left -= 16;
338 } else {
339 /* grab single byte from the warp fifo */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100340 *((char *)buf) = inb(EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 buf++;
342 got++;
343 left--;
344 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100345 status = inb(STATUS(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (status & 0x01) {
347 /* EPP timeout should never occur... */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100348 printk(KERN_DEBUG
349"%s: EPP timeout occurred while talking to w91284pic (should not have done)\n", port->name);
350 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352 }
353 return got;
354 }
355 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100356 if (!(((long)buf | length) & 0x03))
357 insl(EPPDATA(port), buf, (length >> 2));
358 else
359 insb(EPPDATA(port), buf, length);
360 if (inb(STATUS(port)) & 0x01) {
361 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return -EIO;
363 }
364 return length;
365 }
366 for (; got < length; got++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100367 *((char *)buf) = inb(EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100369 if (inb(STATUS(port)) & 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /* EPP timeout */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100371 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 break;
373 }
374 }
375
376 return got;
377}
378
Alan Cox3aeda9b2009-06-11 13:07:29 +0100379static size_t parport_pc_epp_write_data(struct parport *port, const void *buf,
380 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 size_t written = 0;
383
384 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100385 if (!(((long)buf | length) & 0x03))
386 outsl(EPPDATA(port), buf, (length >> 2));
387 else
388 outsb(EPPDATA(port), buf, length);
389 if (inb(STATUS(port)) & 0x01) {
390 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -EIO;
392 }
393 return length;
394 }
395 for (; written < length; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100396 outb(*((char *)buf), EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100398 if (inb(STATUS(port)) & 0x01) {
399 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 break;
401 }
402 }
403
404 return written;
405}
406
Alan Cox3aeda9b2009-06-11 13:07:29 +0100407static size_t parport_pc_epp_read_addr(struct parport *port, void *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 size_t length, int flags)
409{
410 size_t got = 0;
411
412 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100413 insb(EPPADDR(port), buf, length);
414 if (inb(STATUS(port)) & 0x01) {
415 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return -EIO;
417 }
418 return length;
419 }
420 for (; got < length; got++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100421 *((char *)buf) = inb(EPPADDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100423 if (inb(STATUS(port)) & 0x01) {
424 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 break;
426 }
427 }
428
429 return got;
430}
431
Alan Cox3aeda9b2009-06-11 13:07:29 +0100432static size_t parport_pc_epp_write_addr(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 const void *buf, size_t length,
434 int flags)
435{
436 size_t written = 0;
437
438 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100439 outsb(EPPADDR(port), buf, length);
440 if (inb(STATUS(port)) & 0x01) {
441 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return -EIO;
443 }
444 return length;
445 }
446 for (; written < length; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100447 outb(*((char *)buf), EPPADDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100449 if (inb(STATUS(port)) & 0x01) {
450 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 }
453 }
454
455 return written;
456}
457
Alan Cox3aeda9b2009-06-11 13:07:29 +0100458static size_t parport_pc_ecpepp_read_data(struct parport *port, void *buf,
459 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 size_t got;
462
Alan Cox3aeda9b2009-06-11 13:07:29 +0100463 frob_set_mode(port, ECR_EPP);
464 parport_pc_data_reverse(port);
465 parport_pc_write_control(port, 0x4);
466 got = parport_pc_epp_read_data(port, buf, length, flags);
467 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 return got;
470}
471
Alan Cox3aeda9b2009-06-11 13:07:29 +0100472static size_t parport_pc_ecpepp_write_data(struct parport *port,
473 const void *buf, size_t length,
474 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 size_t written;
477
Alan Cox3aeda9b2009-06-11 13:07:29 +0100478 frob_set_mode(port, ECR_EPP);
479 parport_pc_write_control(port, 0x4);
480 parport_pc_data_forward(port);
481 written = parport_pc_epp_write_data(port, buf, length, flags);
482 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 return written;
485}
486
Alan Cox3aeda9b2009-06-11 13:07:29 +0100487static size_t parport_pc_ecpepp_read_addr(struct parport *port, void *buf,
488 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 size_t got;
491
Alan Cox3aeda9b2009-06-11 13:07:29 +0100492 frob_set_mode(port, ECR_EPP);
493 parport_pc_data_reverse(port);
494 parport_pc_write_control(port, 0x4);
495 got = parport_pc_epp_read_addr(port, buf, length, flags);
496 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 return got;
499}
500
Alan Cox3aeda9b2009-06-11 13:07:29 +0100501static size_t parport_pc_ecpepp_write_addr(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 const void *buf, size_t length,
503 int flags)
504{
505 size_t written;
506
Alan Cox3aeda9b2009-06-11 13:07:29 +0100507 frob_set_mode(port, ECR_EPP);
508 parport_pc_write_control(port, 0x4);
509 parport_pc_data_forward(port);
510 written = parport_pc_epp_write_addr(port, buf, length, flags);
511 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 return written;
514}
515#endif /* IEEE 1284 support */
516
517#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +0100518static size_t parport_pc_fifo_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 const void *buf, size_t length)
520{
521 int ret = 0;
522 const unsigned char *bufp = buf;
523 size_t left = length;
524 unsigned long expire = jiffies + port->physport->cad->timeout;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100525 const int fifo = FIFO(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 int poll_for = 8; /* 80 usecs */
527 const struct parport_pc_private *priv = port->physport->private_data;
528 const int fifo_depth = priv->fifo_depth;
529
530 port = port->physport;
531
532 /* We don't want to be interrupted every character. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100533 parport_pc_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /* set nErrIntrEn and serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100535 frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /* Forward mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100538 parport_pc_data_forward(port); /* Must be in PS2 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 while (left) {
541 unsigned char byte;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100542 unsigned char ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int i = 0;
544
Alan Cox3aeda9b2009-06-11 13:07:29 +0100545 if (need_resched() && time_before(jiffies, expire))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* Can't yield the port. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100547 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /* Anyone else waiting for the port? */
550 if (port->waithead) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100551 printk(KERN_DEBUG "Somebody wants the port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 break;
553 }
554
555 if (ecrval & 0x02) {
556 /* FIFO is full. Wait for interrupt. */
557
558 /* Clear serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100559 ECR_WRITE(port, ecrval & ~(1<<2));
560false_alarm:
561 ret = parport_wait_event(port, HZ);
562 if (ret < 0)
563 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 ret = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100565 if (!time_before(jiffies, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /* Timed out. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100567 printk(KERN_DEBUG "FIFO write timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 break;
569 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100570 ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (!(ecrval & (1<<2))) {
572 if (need_resched() &&
Alan Cox3aeda9b2009-06-11 13:07:29 +0100573 time_before(jiffies, expire))
574 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 goto false_alarm;
577 }
578
579 continue;
580 }
581
582 /* Can't fail now. */
583 expire = jiffies + port->cad->timeout;
584
Alan Cox3aeda9b2009-06-11 13:07:29 +0100585poll:
586 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 break;
588
589 if (ecrval & 0x01) {
590 /* FIFO is empty. Blast it full. */
591 const int n = left < fifo_depth ? left : fifo_depth;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100592 outsb(fifo, bufp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 bufp += n;
594 left -= n;
595
596 /* Adjust the poll time. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100597 if (i < (poll_for - 2))
598 poll_for--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 continue;
600 } else if (i++ < poll_for) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100601 udelay(10);
602 ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto poll;
604 }
605
Alan Cox3aeda9b2009-06-11 13:07:29 +0100606 /* Half-full(call me an optimist) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 byte = *bufp++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100608 outb(byte, fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 left--;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100610 }
611 dump_parport_state("leave fifo_write_block_pio", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return length - left;
613}
614
Al Viro7fbacd52005-05-04 05:39:32 +0100615#ifdef HAS_DMA
Alan Cox3aeda9b2009-06-11 13:07:29 +0100616static size_t parport_pc_fifo_write_block_dma(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 const void *buf, size_t length)
618{
619 int ret = 0;
620 unsigned long dmaflag;
621 size_t left = length;
622 const struct parport_pc_private *priv = port->physport->private_data;
David Brownellc15a3832007-05-08 00:27:35 -0700623 struct device *dev = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 dma_addr_t dma_addr, dma_handle;
625 size_t maxlen = 0x10000; /* max 64k per DMA transfer */
626 unsigned long start = (unsigned long) buf;
627 unsigned long end = (unsigned long) buf + length - 1;
628
Alan Cox181bf1e2009-06-11 13:08:10 +0100629 dump_parport_state("enter fifo_write_block_dma", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (end < MAX_DMA_ADDRESS) {
631 /* If it would cross a 64k boundary, cap it at the end. */
632 if ((start ^ end) & ~0xffffUL)
633 maxlen = 0x10000 - (start & 0xffff);
634
David Brownellc15a3832007-05-08 00:27:35 -0700635 dma_addr = dma_handle = dma_map_single(dev, (void *)buf, length,
636 DMA_TO_DEVICE);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100637 } else {
638 /* above 16 MB we use a bounce buffer as ISA-DMA
639 is not possible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 maxlen = PAGE_SIZE; /* sizeof(priv->dma_buf) */
641 dma_addr = priv->dma_handle;
642 dma_handle = 0;
643 }
644
645 port = port->physport;
646
647 /* We don't want to be interrupted every character. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100648 parport_pc_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /* set nErrIntrEn and serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100650 frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /* Forward mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100653 parport_pc_data_forward(port); /* Must be in PS2 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 while (left) {
656 unsigned long expire = jiffies + port->physport->cad->timeout;
657
658 size_t count = left;
659
660 if (count > maxlen)
661 count = maxlen;
662
663 if (!dma_handle) /* bounce buffer ! */
664 memcpy(priv->dma_buf, buf, count);
665
666 dmaflag = claim_dma_lock();
667 disable_dma(port->dma);
668 clear_dma_ff(port->dma);
669 set_dma_mode(port->dma, DMA_MODE_WRITE);
670 set_dma_addr(port->dma, dma_addr);
671 set_dma_count(port->dma, count);
672
673 /* Set DMA mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100674 frob_econtrol(port, 1<<3, 1<<3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /* Clear serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100677 frob_econtrol(port, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 enable_dma(port->dma);
680 release_dma_lock(dmaflag);
681
682 /* assume DMA will be successful */
683 left -= count;
684 buf += count;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100685 if (dma_handle)
686 dma_addr += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 /* Wait for interrupt. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100689false_alarm:
690 ret = parport_wait_event(port, HZ);
691 if (ret < 0)
692 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 ret = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100694 if (!time_before(jiffies, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /* Timed out. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100696 printk(KERN_DEBUG "DMA write timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 break;
698 }
699 /* Is serviceIntr set? */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100700 if (!(inb(ECONTROL(port)) & (1<<2))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 cond_resched();
702
703 goto false_alarm;
704 }
705
706 dmaflag = claim_dma_lock();
707 disable_dma(port->dma);
708 clear_dma_ff(port->dma);
709 count = get_dma_residue(port->dma);
710 release_dma_lock(dmaflag);
711
712 cond_resched(); /* Can't yield the port. */
713
714 /* Anyone else waiting for the port? */
715 if (port->waithead) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100716 printk(KERN_DEBUG "Somebody wants the port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 break;
718 }
719
720 /* update for possible DMA residue ! */
721 buf -= count;
722 left += count;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100723 if (dma_handle)
724 dma_addr -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726
727 /* Maybe got here through break, so adjust for DMA residue! */
728 dmaflag = claim_dma_lock();
729 disable_dma(port->dma);
730 clear_dma_ff(port->dma);
731 left += get_dma_residue(port->dma);
732 release_dma_lock(dmaflag);
733
734 /* Turn off DMA mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100735 frob_econtrol(port, 1<<3, 0);
David Brownellc15a3832007-05-08 00:27:35 -0700736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (dma_handle)
David Brownellc15a3832007-05-08 00:27:35 -0700738 dma_unmap_single(dev, dma_handle, length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Alan Cox181bf1e2009-06-11 13:08:10 +0100740 dump_parport_state("leave fifo_write_block_dma", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return length - left;
742}
Al Viro7fbacd52005-05-04 05:39:32 +0100743#endif
744
745static inline size_t parport_pc_fifo_write_block(struct parport *port,
746 const void *buf, size_t length)
747{
748#ifdef HAS_DMA
749 if (port->dma != PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100750 return parport_pc_fifo_write_block_dma(port, buf, length);
Al Viro7fbacd52005-05-04 05:39:32 +0100751#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +0100752 return parport_pc_fifo_write_block_pio(port, buf, length);
Al Viro7fbacd52005-05-04 05:39:32 +0100753}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755/* Parallel Port FIFO mode (ECP chipsets) */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100756static size_t parport_pc_compat_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 const void *buf, size_t length,
758 int flags)
759{
760 size_t written;
761 int r;
762 unsigned long expire;
763 const struct parport_pc_private *priv = port->physport->private_data;
764
765 /* Special case: a timeout of zero means we cannot call schedule().
766 * Also if O_NONBLOCK is set then use the default implementation. */
767 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100768 return parport_ieee1284_write_compat(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 length, flags);
770
771 /* Set up parallel port FIFO mode.*/
Alan Cox3aeda9b2009-06-11 13:07:29 +0100772 parport_pc_data_forward(port); /* Must be in PS2 mode */
773 parport_pc_frob_control(port, PARPORT_CONTROL_STROBE, 0);
774 r = change_mode(port, ECR_PPF); /* Parallel port FIFO */
775 if (r)
776 printk(KERN_DEBUG "%s: Warning change_mode ECR_PPF failed\n",
777 port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
780
781 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100782 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 /* Finish up. */
785 /* For some hardware we don't want to touch the mode until
786 * the FIFO is empty, so allow 4 seconds for each position
787 * in the fifo.
788 */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100789 expire = jiffies + (priv->fifo_depth * HZ * 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 do {
791 /* Wait for the FIFO to empty */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100792 r = change_mode(port, ECR_PS2);
793 if (r != -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100795 } while (time_before(jiffies, expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (r == -EBUSY) {
797
Alan Cox3aeda9b2009-06-11 13:07:29 +0100798 printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 /* Prevent further data transfer. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100801 frob_set_mode(port, ECR_TST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /* Adjust for the contents of the FIFO. */
804 for (written -= priv->fifo_depth; ; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100805 if (inb(ECONTROL(port)) & 0x2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* Full up. */
807 break;
808 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100809 outb(0, FIFO(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811
812 /* Reset the FIFO and return to PS2 mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100813 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Alan Cox3aeda9b2009-06-11 13:07:29 +0100816 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 PARPORT_STATUS_BUSY,
818 PARPORT_STATUS_BUSY);
819 if (r)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100820 printk(KERN_DEBUG
821 "%s: BUSY timeout (%d) in compat_write_block_pio\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 port->name, r);
823
824 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
825
826 return written;
827}
828
829/* ECP */
830#ifdef CONFIG_PARPORT_1284
Alan Cox3aeda9b2009-06-11 13:07:29 +0100831static size_t parport_pc_ecp_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 const void *buf, size_t length,
833 int flags)
834{
835 size_t written;
836 int r;
837 unsigned long expire;
838 const struct parport_pc_private *priv = port->physport->private_data;
839
840 /* Special case: a timeout of zero means we cannot call schedule().
841 * Also if O_NONBLOCK is set then use the default implementation. */
842 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100843 return parport_ieee1284_ecp_write_data(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 length, flags);
845
846 /* Switch to forward mode if necessary. */
847 if (port->physport->ieee1284.phase != IEEE1284_PH_FWD_IDLE) {
848 /* Event 47: Set nInit high. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100849 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 PARPORT_CONTROL_INIT
851 | PARPORT_CONTROL_AUTOFD,
852 PARPORT_CONTROL_INIT
853 | PARPORT_CONTROL_AUTOFD);
854
855 /* Event 49: PError goes high. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100856 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 PARPORT_STATUS_PAPEROUT,
858 PARPORT_STATUS_PAPEROUT);
859 if (r) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100860 printk(KERN_DEBUG "%s: PError timeout (%d) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 "in ecp_write_block_pio\n", port->name, r);
862 }
863 }
864
865 /* Set up ECP parallel port mode.*/
Alan Cox3aeda9b2009-06-11 13:07:29 +0100866 parport_pc_data_forward(port); /* Must be in PS2 mode */
867 parport_pc_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 PARPORT_CONTROL_STROBE |
869 PARPORT_CONTROL_AUTOFD,
870 0);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100871 r = change_mode(port, ECR_ECP); /* ECP FIFO */
872 if (r)
873 printk(KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n",
874 port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
876
877 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100878 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 /* Finish up. */
881 /* For some hardware we don't want to touch the mode until
882 * the FIFO is empty, so allow 4 seconds for each position
883 * in the fifo.
884 */
885 expire = jiffies + (priv->fifo_depth * (HZ * 4));
886 do {
887 /* Wait for the FIFO to empty */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100888 r = change_mode(port, ECR_PS2);
889 if (r != -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100891 } while (time_before(jiffies, expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (r == -EBUSY) {
893
Alan Cox3aeda9b2009-06-11 13:07:29 +0100894 printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 /* Prevent further data transfer. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100897 frob_set_mode(port, ECR_TST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 /* Adjust for the contents of the FIFO. */
900 for (written -= priv->fifo_depth; ; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100901 if (inb(ECONTROL(port)) & 0x2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /* Full up. */
903 break;
904 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100905 outb(0, FIFO(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
907
908 /* Reset the FIFO and return to PS2 mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100909 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 /* Host transfer recovery. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100912 parport_pc_data_reverse(port); /* Must be in PS2 mode */
913 udelay(5);
914 parport_frob_control(port, PARPORT_CONTROL_INIT, 0);
915 r = parport_wait_peripheral(port, PARPORT_STATUS_PAPEROUT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (r)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100917 printk(KERN_DEBUG "%s: PE,1 timeout (%d) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 "in ecp_write_block_pio\n", port->name, r);
919
Alan Cox3aeda9b2009-06-11 13:07:29 +0100920 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 PARPORT_CONTROL_INIT,
922 PARPORT_CONTROL_INIT);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100923 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 PARPORT_STATUS_PAPEROUT,
925 PARPORT_STATUS_PAPEROUT);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100926 if (r)
927 printk(KERN_DEBUG "%s: PE,2 timeout (%d) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 "in ecp_write_block_pio\n", port->name, r);
929 }
930
Alan Cox3aeda9b2009-06-11 13:07:29 +0100931 r = parport_wait_peripheral(port,
932 PARPORT_STATUS_BUSY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 PARPORT_STATUS_BUSY);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100934 if (r)
935 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 "%s: BUSY timeout (%d) in ecp_write_block_pio\n",
937 port->name, r);
938
939 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
940
941 return written;
942}
943
944#if 0
Alan Cox3aeda9b2009-06-11 13:07:29 +0100945static size_t parport_pc_ecp_read_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 void *buf, size_t length,
947 int flags)
948{
949 size_t left = length;
950 size_t fifofull;
951 int r;
952 const int fifo = FIFO(port);
953 const struct parport_pc_private *priv = port->physport->private_data;
954 const int fifo_depth = priv->fifo_depth;
955 char *bufp = buf;
956
957 port = port->physport;
Alan Cox181bf1e2009-06-11 13:08:10 +0100958 DPRINTK(KERN_DEBUG "parport_pc: parport_pc_ecp_read_block_pio\n");
959 dump_parport_state("enter fcn", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 /* Special case: a timeout of zero means we cannot call schedule().
962 * Also if O_NONBLOCK is set then use the default implementation. */
963 if (port->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100964 return parport_ieee1284_ecp_read_data(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 length, flags);
966
967 if (port->ieee1284.mode == IEEE1284_MODE_ECPRLE) {
968 /* If the peripheral is allowed to send RLE compressed
969 * data, it is possible for a byte to expand to 128
970 * bytes in the FIFO. */
971 fifofull = 128;
972 } else {
973 fifofull = fifo_depth;
974 }
975
976 /* If the caller wants less than a full FIFO's worth of data,
977 * go through software emulation. Otherwise we may have to throw
978 * away data. */
979 if (length < fifofull)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100980 return parport_ieee1284_ecp_read_data(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 length, flags);
982
983 if (port->ieee1284.phase != IEEE1284_PH_REV_IDLE) {
984 /* change to reverse-idle phase (must be in forward-idle) */
985
986 /* Event 38: Set nAutoFd low (also make sure nStrobe is high) */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100987 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 PARPORT_CONTROL_AUTOFD
989 | PARPORT_CONTROL_STROBE,
990 PARPORT_CONTROL_AUTOFD);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100991 parport_pc_data_reverse(port); /* Must be in PS2 mode */
992 udelay(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 /* Event 39: Set nInit low to initiate bus reversal */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100994 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 PARPORT_CONTROL_INIT,
996 0);
997 /* Event 40: Wait for nAckReverse (PError) to go low */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100998 r = parport_wait_peripheral(port, PARPORT_STATUS_PAPEROUT, 0);
999 if (r) {
1000 printk(KERN_DEBUG "%s: PE timeout Event 40 (%d) "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 "in ecp_read_block_pio\n", port->name, r);
1002 return 0;
1003 }
1004 }
1005
1006 /* Set up ECP FIFO mode.*/
Alan Cox3aeda9b2009-06-11 13:07:29 +01001007/* parport_pc_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 PARPORT_CONTROL_STROBE |
1009 PARPORT_CONTROL_AUTOFD,
1010 PARPORT_CONTROL_AUTOFD); */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001011 r = change_mode(port, ECR_ECP); /* ECP FIFO */
1012 if (r)
1013 printk(KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n",
1014 port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 port->ieee1284.phase = IEEE1284_PH_REV_DATA;
1017
1018 /* the first byte must be collected manually */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001019 dump_parport_state("pre 43", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* Event 43: Wait for nAck to go low */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001021 r = parport_wait_peripheral(port, PARPORT_STATUS_ACK, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (r) {
1023 /* timed out while reading -- no data */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001024 printk(KERN_DEBUG "PIO read timed out (initial byte)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 goto out_no_data;
1026 }
1027 /* read byte */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001028 *bufp++ = inb(DATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 left--;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001030 dump_parport_state("43-44", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 /* Event 44: nAutoFd (HostAck) goes high to acknowledge */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001032 parport_pc_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 PARPORT_CONTROL_AUTOFD,
1034 0);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001035 dump_parport_state("pre 45", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 /* Event 45: Wait for nAck to go high */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001037 /* r = parport_wait_peripheral(port, PARPORT_STATUS_ACK,
1038 PARPORT_STATUS_ACK); */
1039 dump_parport_state("post 45", port);
1040 r = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (r) {
1042 /* timed out while waiting for peripheral to respond to ack */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001043 printk(KERN_DEBUG "ECP PIO read timed out (waiting for nAck)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 /* keep hold of the byte we've got already */
1046 goto out_no_data;
1047 }
1048 /* Event 46: nAutoFd (HostAck) goes low to accept more data */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001049 parport_pc_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 PARPORT_CONTROL_AUTOFD,
1051 PARPORT_CONTROL_AUTOFD);
1052
1053
Alan Cox3aeda9b2009-06-11 13:07:29 +01001054 dump_parport_state("rev idle", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 /* Do the transfer. */
1056 while (left > fifofull) {
1057 int ret;
1058 unsigned long expire = jiffies + port->cad->timeout;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001059 unsigned char ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Alan Cox3aeda9b2009-06-11 13:07:29 +01001061 if (need_resched() && time_before(jiffies, expire))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 /* Can't yield the port. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001063 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 /* At this point, the FIFO may already be full. In
Alan Cox3aeda9b2009-06-11 13:07:29 +01001066 * that case ECP is already holding back the
1067 * peripheral (assuming proper design) with a delayed
1068 * handshake. Work fast to avoid a peripheral
1069 * timeout. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 if (ecrval & 0x01) {
1072 /* FIFO is empty. Wait for interrupt. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001073 dump_parport_state("FIFO empty", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 /* Anyone else waiting for the port? */
1076 if (port->waithead) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001077 printk(KERN_DEBUG "Somebody wants the port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 break;
1079 }
1080
1081 /* Clear serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001082 ECR_WRITE(port, ecrval & ~(1<<2));
1083false_alarm:
1084 dump_parport_state("waiting", port);
1085 ret = parport_wait_event(port, HZ);
1086 DPRINTK(KERN_DEBUG "parport_wait_event returned %d\n",
1087 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (ret < 0)
1089 break;
1090 ret = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001091 if (!time_before(jiffies, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 /* Timed out. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001093 dump_parport_state("timeout", port);
1094 printk(KERN_DEBUG "PIO read timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 break;
1096 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001097 ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (!(ecrval & (1<<2))) {
1099 if (need_resched() &&
Alan Cox3aeda9b2009-06-11 13:07:29 +01001100 time_before(jiffies, expire)) {
1101 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103 goto false_alarm;
1104 }
1105
1106 /* Depending on how the FIFO threshold was
Alan Cox3aeda9b2009-06-11 13:07:29 +01001107 * set, how long interrupt service took, and
1108 * how fast the peripheral is, we might be
1109 * lucky and have a just filled FIFO. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 continue;
1111 }
1112
1113 if (ecrval & 0x02) {
1114 /* FIFO is full. */
Alan Cox181bf1e2009-06-11 13:08:10 +01001115 dump_parport_state("FIFO full", port);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001116 insb(fifo, bufp, fifo_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 bufp += fifo_depth;
1118 left -= fifo_depth;
1119 continue;
1120 }
1121
Alan Cox181bf1e2009-06-11 13:08:10 +01001122 DPRINTK(KERN_DEBUG
1123 "*** ecp_read_block_pio: reading one byte from the FIFO\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 /* FIFO not filled. We will cycle this loop for a while
Alan Cox3aeda9b2009-06-11 13:07:29 +01001126 * and either the peripheral will fill it faster,
1127 * tripping a fast empty with insb, or we empty it. */
1128 *bufp++ = inb(fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 left--;
1130 }
1131
1132 /* scoop up anything left in the FIFO */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001133 while (left && !(inb(ECONTROL(port) & 0x01))) {
1134 *bufp++ = inb(fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 left--;
1136 }
1137
1138 port->ieee1284.phase = IEEE1284_PH_REV_IDLE;
Alan Cox181bf1e2009-06-11 13:08:10 +01001139 dump_parport_state("rev idle2", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141out_no_data:
1142
1143 /* Go to forward idle mode to shut the peripheral up (event 47). */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001144 parport_frob_control(port, PARPORT_CONTROL_INIT, PARPORT_CONTROL_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /* event 49: PError goes high */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001147 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 PARPORT_STATUS_PAPEROUT,
1149 PARPORT_STATUS_PAPEROUT);
1150 if (r) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001151 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 "%s: PE timeout FWDIDLE (%d) in ecp_read_block_pio\n",
1153 port->name, r);
1154 }
1155
1156 port->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
1157
1158 /* Finish up. */
1159 {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001160 int lost = get_fifo_residue(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (lost)
1162 /* Shouldn't happen with compliant peripherals. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001163 printk(KERN_DEBUG "%s: DATA LOSS (%d bytes)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 port->name, lost);
1165 }
1166
Alan Cox181bf1e2009-06-11 13:08:10 +01001167 dump_parport_state("fwd idle", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return length - left;
1169}
1170#endif /* 0 */
1171#endif /* IEEE 1284 support */
1172#endif /* Allowed to use FIFO/DMA */
1173
1174
1175/*
1176 * ******************************************
1177 * INITIALISATION AND MODULE STUFF BELOW HERE
1178 * ******************************************
1179 */
1180
1181/* GCC is not inlining extern inline function later overwriten to non-inline,
1182 so we use outlined_ variants here. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001183static const struct parport_operations parport_pc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 .write_data = parport_pc_write_data,
1185 .read_data = parport_pc_read_data,
1186
1187 .write_control = parport_pc_write_control,
1188 .read_control = parport_pc_read_control,
1189 .frob_control = parport_pc_frob_control,
1190
1191 .read_status = parport_pc_read_status,
1192
1193 .enable_irq = parport_pc_enable_irq,
1194 .disable_irq = parport_pc_disable_irq,
1195
1196 .data_forward = parport_pc_data_forward,
1197 .data_reverse = parport_pc_data_reverse,
1198
1199 .init_state = parport_pc_init_state,
1200 .save_state = parport_pc_save_state,
1201 .restore_state = parport_pc_restore_state,
1202
1203 .epp_write_data = parport_ieee1284_epp_write_data,
1204 .epp_read_data = parport_ieee1284_epp_read_data,
1205 .epp_write_addr = parport_ieee1284_epp_write_addr,
1206 .epp_read_addr = parport_ieee1284_epp_read_addr,
1207
1208 .ecp_write_data = parport_ieee1284_ecp_write_data,
1209 .ecp_read_data = parport_ieee1284_ecp_read_data,
1210 .ecp_write_addr = parport_ieee1284_ecp_write_addr,
1211
1212 .compat_write_data = parport_ieee1284_write_compat,
1213 .nibble_read_data = parport_ieee1284_read_nibble,
1214 .byte_read_data = parport_ieee1284_read_byte,
1215
1216 .owner = THIS_MODULE,
1217};
1218
1219#ifdef CONFIG_PARPORT_PC_SUPERIO
Alan Cox181bf1e2009-06-11 13:08:10 +01001220
1221static struct superio_struct *find_free_superio(void)
1222{
1223 int i;
1224 for (i = 0; i < NR_SUPERIOS; i++)
1225 if (superios[i].io == 0)
1226 return &superios[i];
1227 return NULL;
1228}
1229
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231/* Super-IO chipset detection, Winbond, SMSC */
1232static void __devinit show_parconfig_smsc37c669(int io, int key)
1233{
Alan Cox181bf1e2009-06-11 13:08:10 +01001234 int cr1, cr4, cra, cr23, cr26, cr27;
1235 struct superio_struct *s;
1236
Alan Cox3aeda9b2009-06-11 13:07:29 +01001237 static const char *const modes[] = {
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001238 "SPP and Bidirectional (PS/2)",
1239 "EPP and SPP",
1240 "ECP",
1241 "ECP and EPP" };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Alan Cox3aeda9b2009-06-11 13:07:29 +01001243 outb(key, io);
1244 outb(key, io);
1245 outb(1, io);
1246 cr1 = inb(io + 1);
1247 outb(4, io);
1248 cr4 = inb(io + 1);
1249 outb(0x0a, io);
1250 cra = inb(io + 1);
1251 outb(0x23, io);
1252 cr23 = inb(io + 1);
1253 outb(0x26, io);
1254 cr26 = inb(io + 1);
1255 outb(0x27, io);
1256 cr27 = inb(io + 1);
1257 outb(0xaa, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 if (verbose_probing) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001260 printk(KERN_INFO
1261 "SMSC 37c669 LPT Config: cr_1=0x%02x, 4=0x%02x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 "A=0x%2x, 23=0x%02x, 26=0x%02x, 27=0x%02x\n",
Alan Cox3aeda9b2009-06-11 13:07:29 +01001263 cr1, cr4, cra, cr23, cr26, cr27);
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* The documentation calls DMA and IRQ-Lines by letters, so
1266 the board maker can/will wire them
1267 appropriately/randomly... G=reserved H=IDE-irq, */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001268 printk(KERN_INFO
1269 "SMSC LPT Config: io=0x%04x, irq=%c, dma=%c, fifo threshold=%d\n",
1270 cr23 * 4,
1271 (cr27 & 0x0f) ? 'A' - 1 + (cr27 & 0x0f) : '-',
1272 (cr26 & 0x0f) ? 'A' - 1 + (cr26 & 0x0f) : '-',
1273 cra & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 printk(KERN_INFO "SMSC LPT Config: enabled=%s power=%s\n",
Alan Cox3aeda9b2009-06-11 13:07:29 +01001275 (cr23 * 4 >= 0x100) ? "yes" : "no",
1276 (cr1 & 4) ? "yes" : "no");
1277 printk(KERN_INFO
1278 "SMSC LPT Config: Port mode=%s, EPP version =%s\n",
1279 (cr1 & 0x08) ? "Standard mode only (SPP)"
1280 : modes[cr4 & 0x03],
1281 (cr4 & 0x40) ? "1.7" : "1.9");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
Michael Buesch73e0d482009-06-11 13:06:31 +01001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /* Heuristics ! BIOS setup for this mainboard device limits
1285 the choices to standard settings, i.e. io-address and IRQ
1286 are related, however DMA can be 1 or 3, assume DMA_A=DMA1,
1287 DMA_C=DMA3 (this is true e.g. for TYAN 1564D Tomcat IV) */
Michael Buesch73e0d482009-06-11 13:06:31 +01001288 if (cr23 * 4 >= 0x100) { /* if active */
Alan Cox181bf1e2009-06-11 13:08:10 +01001289 s = find_free_superio();
1290 if (s == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 printk(KERN_INFO "Super-IO: too many chips!\n");
Alan Cox181bf1e2009-06-11 13:08:10 +01001292 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 int d;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001294 switch (cr23 * 4) {
1295 case 0x3bc:
Alan Cox181bf1e2009-06-11 13:08:10 +01001296 s->io = 0x3bc;
1297 s->irq = 7;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001298 break;
1299 case 0x378:
Alan Cox181bf1e2009-06-11 13:08:10 +01001300 s->io = 0x378;
1301 s->irq = 7;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001302 break;
1303 case 0x278:
Alan Cox181bf1e2009-06-11 13:08:10 +01001304 s->io = 0x278;
1305 s->irq = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001307 d = (cr26 & 0x0f);
1308 if (d == 1 || d == 3)
Alan Cox181bf1e2009-06-11 13:08:10 +01001309 s->dma = d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 else
Alan Cox181bf1e2009-06-11 13:08:10 +01001311 s->dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
1316
1317static void __devinit show_parconfig_winbond(int io, int key)
1318{
Alan Cox181bf1e2009-06-11 13:08:10 +01001319 int cr30, cr60, cr61, cr70, cr74, crf0;
1320 struct superio_struct *s;
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001321 static const char *const modes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 "Standard (SPP) and Bidirectional(PS/2)", /* 0 */
1323 "EPP-1.9 and SPP",
1324 "ECP",
1325 "ECP and EPP-1.9",
1326 "Standard (SPP)",
1327 "EPP-1.7 and SPP", /* 5 */
1328 "undefined!",
1329 "ECP and EPP-1.7" };
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001330 static char *const irqtypes[] = {
1331 "pulsed low, high-Z",
1332 "follows nACK" };
Alan Cox3aeda9b2009-06-11 13:07:29 +01001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /* The registers are called compatible-PnP because the
Alan Cox3aeda9b2009-06-11 13:07:29 +01001335 register layout is modelled after ISA-PnP, the access
1336 method is just another ... */
1337 outb(key, io);
1338 outb(key, io);
1339 outb(0x07, io); /* Register 7: Select Logical Device */
1340 outb(0x01, io + 1); /* LD1 is Parallel Port */
1341 outb(0x30, io);
1342 cr30 = inb(io + 1);
1343 outb(0x60, io);
1344 cr60 = inb(io + 1);
1345 outb(0x61, io);
1346 cr61 = inb(io + 1);
1347 outb(0x70, io);
1348 cr70 = inb(io + 1);
1349 outb(0x74, io);
1350 cr74 = inb(io + 1);
1351 outb(0xf0, io);
1352 crf0 = inb(io + 1);
1353 outb(0xaa, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 if (verbose_probing) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001356 printk(KERN_INFO
1357 "Winbond LPT Config: cr_30=%02x 60,61=%02x%02x 70=%02x 74=%02x, f0=%02x\n",
1358 cr30, cr60, cr61, cr70, cr74, crf0);
1359 printk(KERN_INFO "Winbond LPT Config: active=%s, io=0x%02x%02x irq=%d, ",
1360 (cr30 & 0x01) ? "yes" : "no", cr60, cr61, cr70 & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if ((cr74 & 0x07) > 3)
1362 printk("dma=none\n");
1363 else
Alan Cox3aeda9b2009-06-11 13:07:29 +01001364 printk("dma=%d\n", cr74 & 0x07);
1365 printk(KERN_INFO
1366 "Winbond LPT Config: irqtype=%s, ECP fifo threshold=%d\n",
1367 irqtypes[crf0>>7], (crf0>>3)&0x0f);
1368 printk(KERN_INFO "Winbond LPT Config: Port mode=%s\n",
1369 modes[crf0 & 0x07]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371
Michael Buesch73e0d482009-06-11 13:06:31 +01001372 if (cr30 & 0x01) { /* the settings can be interrogated later ... */
Alan Cox181bf1e2009-06-11 13:08:10 +01001373 s = find_free_superio();
1374 if (s == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 printk(KERN_INFO "Super-IO: too many chips!\n");
Alan Cox181bf1e2009-06-11 13:08:10 +01001376 else {
1377 s->io = (cr60 << 8) | cr61;
1378 s->irq = cr70 & 0x0f;
1379 s->dma = (((cr74 & 0x07) > 3) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 PARPORT_DMA_NONE : (cr74 & 0x07));
1381 }
1382 }
1383}
1384
Alan Cox3aeda9b2009-06-11 13:07:29 +01001385static void __devinit decode_winbond(int efer, int key, int devid,
1386 int devrev, int oldid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 const char *type = "unknown";
Alan Cox3aeda9b2009-06-11 13:07:29 +01001389 int id, progif = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 if (devid == devrev)
1392 /* simple heuristics, we happened to read some
Alan Cox3aeda9b2009-06-11 13:07:29 +01001393 non-winbond register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return;
1395
Alan Cox3aeda9b2009-06-11 13:07:29 +01001396 id = (devid << 8) | devrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 /* Values are from public data sheets pdf files, I can just
Alan Cox3aeda9b2009-06-11 13:07:29 +01001399 confirm 83977TF is correct :-) */
1400 if (id == 0x9771)
1401 type = "83977F/AF";
1402 else if (id == 0x9773)
1403 type = "83977TF / SMSC 97w33x/97w34x";
1404 else if (id == 0x9774)
1405 type = "83977ATF";
1406 else if ((id & ~0x0f) == 0x5270)
1407 type = "83977CTF / SMSC 97w36x";
1408 else if ((id & ~0x0f) == 0x52f0)
1409 type = "83977EF / SMSC 97w35x";
1410 else if ((id & ~0x0f) == 0x5210)
1411 type = "83627";
1412 else if ((id & ~0x0f) == 0x6010)
1413 type = "83697HF";
1414 else if ((oldid & 0x0f) == 0x0a) {
1415 type = "83877F";
1416 progif = 1;
1417 } else if ((oldid & 0x0f) == 0x0b) {
1418 type = "83877AF";
1419 progif = 1;
1420 } else if ((oldid & 0x0f) == 0x0c) {
1421 type = "83877TF";
1422 progif = 1;
1423 } else if ((oldid & 0x0f) == 0x0d) {
1424 type = "83877ATF";
1425 progif = 1;
1426 } else
1427 progif = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 if (verbose_probing)
1430 printk(KERN_INFO "Winbond chip at EFER=0x%x key=0x%02x "
Alan Cox3aeda9b2009-06-11 13:07:29 +01001431 "devid=%02x devrev=%02x oldid=%02x type=%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 efer, key, devid, devrev, oldid, type);
1433
1434 if (progif == 2)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001435 show_parconfig_winbond(efer, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438static void __devinit decode_smsc(int efer, int key, int devid, int devrev)
1439{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001440 const char *type = "unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 void (*func)(int io, int key);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001442 int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Alan Cox3aeda9b2009-06-11 13:07:29 +01001444 if (devid == devrev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 /* simple heuristics, we happened to read some
Alan Cox3aeda9b2009-06-11 13:07:29 +01001446 non-smsc register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 return;
1448
Alan Cox3aeda9b2009-06-11 13:07:29 +01001449 func = NULL;
1450 id = (devid << 8) | devrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Alan Cox3aeda9b2009-06-11 13:07:29 +01001452 if (id == 0x0302) {
1453 type = "37c669";
1454 func = show_parconfig_smsc37c669;
1455 } else if (id == 0x6582)
1456 type = "37c665IR";
1457 else if (devid == 0x65)
1458 type = "37c665GT";
1459 else if (devid == 0x66)
1460 type = "37c666GT";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 if (verbose_probing)
1463 printk(KERN_INFO "SMSC chip at EFER=0x%x "
1464 "key=0x%02x devid=%02x devrev=%02x type=%s\n",
1465 efer, key, devid, devrev, type);
1466
1467 if (func)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001468 func(efer, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469}
1470
1471
1472static void __devinit winbond_check(int io, int key)
1473{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001474 int devid, devrev, oldid, x_devid, x_devrev, x_oldid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Harvey Harrison145980a2008-04-30 00:54:57 -07001476 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return;
1478
1479 /* First probe without key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001480 outb(0x20, io);
1481 x_devid = inb(io + 1);
1482 outb(0x21, io);
1483 x_devrev = inb(io + 1);
1484 outb(0x09, io);
1485 x_oldid = inb(io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Alan Cox3aeda9b2009-06-11 13:07:29 +01001487 outb(key, io);
1488 outb(key, io); /* Write Magic Sequence to EFER, extended
1489 funtion enable register */
1490 outb(0x20, io); /* Write EFIR, extended function index register */
1491 devid = inb(io + 1); /* Read EFDR, extended function data register */
1492 outb(0x21, io);
1493 devrev = inb(io + 1);
1494 outb(0x09, io);
1495 oldid = inb(io + 1);
1496 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if ((x_devid == devid) && (x_devrev == devrev) && (x_oldid == oldid))
1499 goto out; /* protection against false positives */
1500
Alan Cox3aeda9b2009-06-11 13:07:29 +01001501 decode_winbond(io, key, devid, devrev, oldid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502out:
1503 release_region(io, 3);
1504}
1505
Alan Cox3aeda9b2009-06-11 13:07:29 +01001506static void __devinit winbond_check2(int io, int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001508 int devid, devrev, oldid, x_devid, x_devrev, x_oldid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Harvey Harrison145980a2008-04-30 00:54:57 -07001510 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 return;
1512
1513 /* First probe without the key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001514 outb(0x20, io + 2);
1515 x_devid = inb(io + 2);
1516 outb(0x21, io + 1);
1517 x_devrev = inb(io + 2);
1518 outb(0x09, io + 1);
1519 x_oldid = inb(io + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Alan Cox3aeda9b2009-06-11 13:07:29 +01001521 outb(key, io); /* Write Magic Byte to EFER, extended
1522 funtion enable register */
1523 outb(0x20, io + 2); /* Write EFIR, extended function index register */
1524 devid = inb(io + 2); /* Read EFDR, extended function data register */
1525 outb(0x21, io + 1);
1526 devrev = inb(io + 2);
1527 outb(0x09, io + 1);
1528 oldid = inb(io + 2);
1529 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Alan Cox3aeda9b2009-06-11 13:07:29 +01001531 if (x_devid == devid && x_devrev == devrev && x_oldid == oldid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 goto out; /* protection against false positives */
1533
Alan Cox3aeda9b2009-06-11 13:07:29 +01001534 decode_winbond(io, key, devid, devrev, oldid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535out:
1536 release_region(io, 3);
1537}
1538
1539static void __devinit smsc_check(int io, int key)
1540{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001541 int id, rev, oldid, oldrev, x_id, x_rev, x_oldid, x_oldrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Harvey Harrison145980a2008-04-30 00:54:57 -07001543 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return;
1545
1546 /* First probe without the key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001547 outb(0x0d, io);
1548 x_oldid = inb(io + 1);
1549 outb(0x0e, io);
1550 x_oldrev = inb(io + 1);
1551 outb(0x20, io);
1552 x_id = inb(io + 1);
1553 outb(0x21, io);
1554 x_rev = inb(io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Alan Cox3aeda9b2009-06-11 13:07:29 +01001556 outb(key, io);
1557 outb(key, io); /* Write Magic Sequence to EFER, extended
1558 funtion enable register */
1559 outb(0x0d, io); /* Write EFIR, extended function index register */
1560 oldid = inb(io + 1); /* Read EFDR, extended function data register */
1561 outb(0x0e, io);
1562 oldrev = inb(io + 1);
1563 outb(0x20, io);
1564 id = inb(io + 1);
1565 outb(0x21, io);
1566 rev = inb(io + 1);
1567 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Alan Cox3aeda9b2009-06-11 13:07:29 +01001569 if (x_id == id && x_oldrev == oldrev &&
1570 x_oldid == oldid && x_rev == rev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 goto out; /* protection against false positives */
1572
Alan Cox3aeda9b2009-06-11 13:07:29 +01001573 decode_smsc(io, key, oldid, oldrev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574out:
1575 release_region(io, 3);
1576}
1577
1578
Alan Cox3aeda9b2009-06-11 13:07:29 +01001579static void __devinit detect_and_report_winbond(void)
1580{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (verbose_probing)
1582 printk(KERN_DEBUG "Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001583 winbond_check(0x3f0, 0x87);
1584 winbond_check(0x370, 0x87);
1585 winbond_check(0x2e , 0x87);
1586 winbond_check(0x4e , 0x87);
1587 winbond_check(0x3f0, 0x86);
1588 winbond_check2(0x250, 0x88);
1589 winbond_check2(0x250, 0x89);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
Alan Cox3aeda9b2009-06-11 13:07:29 +01001592static void __devinit detect_and_report_smsc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 if (verbose_probing)
1595 printk(KERN_DEBUG "SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001596 smsc_check(0x3f0, 0x55);
1597 smsc_check(0x370, 0x55);
1598 smsc_check(0x3f0, 0x44);
1599 smsc_check(0x370, 0x44);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001601
1602static void __devinit detect_and_report_it87(void)
1603{
1604 u16 dev;
1605 u8 r;
1606 if (verbose_probing)
1607 printk(KERN_DEBUG "IT8705 Super-IO detection, now testing port 2E ...\n");
Harvey Harrison145980a2008-04-30 00:54:57 -07001608 if (!request_region(0x2e, 1, __func__))
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001609 return;
1610 outb(0x87, 0x2e);
1611 outb(0x01, 0x2e);
1612 outb(0x55, 0x2e);
1613 outb(0x55, 0x2e);
1614 outb(0x20, 0x2e);
1615 dev = inb(0x2f) << 8;
1616 outb(0x21, 0x2e);
1617 dev |= inb(0x2f);
1618 if (dev == 0x8712 || dev == 0x8705 || dev == 0x8715 ||
1619 dev == 0x8716 || dev == 0x8718 || dev == 0x8726) {
1620 printk(KERN_INFO "IT%04X SuperIO detected.\n", dev);
1621 outb(0x07, 0x2E); /* Parallel Port */
1622 outb(0x03, 0x2F);
1623 outb(0xF0, 0x2E); /* BOOT 0x80 off */
1624 r = inb(0x2f);
1625 outb(0xF0, 0x2E);
1626 outb(r | 8, 0x2F);
1627 outb(0x02, 0x2E); /* Lock */
1628 outb(0x02, 0x2F);
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001629 }
Linus Torvalds4ed91902008-04-04 14:30:31 -07001630 release_region(0x2e, 1);
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001631}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632#endif /* CONFIG_PARPORT_PC_SUPERIO */
1633
Alan Cox181bf1e2009-06-11 13:08:10 +01001634static struct superio_struct *find_superio(struct parport *p)
1635{
1636 int i;
1637 for (i = 0; i < NR_SUPERIOS; i++)
1638 if (superios[i].io != p->base)
1639 return &superios[i];
1640 return NULL;
1641}
1642
Alan Cox3aeda9b2009-06-11 13:07:29 +01001643static int get_superio_dma(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Alan Cox181bf1e2009-06-11 13:08:10 +01001645 struct superio_struct *s = find_superio(p);
1646 if (s)
1647 return s->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return PARPORT_DMA_NONE;
1649}
1650
Alan Cox3aeda9b2009-06-11 13:07:29 +01001651static int get_superio_irq(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Alan Cox181bf1e2009-06-11 13:08:10 +01001653 struct superio_struct *s = find_superio(p);
1654 if (s)
1655 return s->irq;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001656 return PARPORT_IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
Michael Buesch73e0d482009-06-11 13:06:31 +01001658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660/* --- Mode detection ------------------------------------- */
1661
1662/*
1663 * Checks for port existence, all ports support SPP MODE
Alan Cox3aeda9b2009-06-11 13:07:29 +01001664 * Returns:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 * 0 : No parallel port at this address
Alan Cox3aeda9b2009-06-11 13:07:29 +01001666 * PARPORT_MODE_PCSPP : SPP port detected
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 * (if the user specified an ioport himself,
1668 * this shall always be the case!)
1669 *
1670 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001671static int parport_SPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 unsigned char r, w;
1674
1675 /*
Alan Cox3aeda9b2009-06-11 13:07:29 +01001676 * first clear an eventually pending EPP timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
1678 * that does not even respond to SPP cycles if an EPP
1679 * timeout is pending
1680 */
1681 clear_epp_timeout(pb);
1682
1683 /* Do a simple read-write test to make sure the port exists. */
1684 w = 0xc;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001685 outb(w, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 /* Is there a control register that we can read from? Some
1688 * ports don't allow reads, so read_control just returns a
1689 * software copy. Some ports _do_ allow reads, so bypass the
1690 * software copy here. In addition, some bits aren't
1691 * writable. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001692 r = inb(CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 if ((r & 0xf) == w) {
1694 w = 0xe;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001695 outb(w, CONTROL(pb));
1696 r = inb(CONTROL(pb));
1697 outb(0xc, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if ((r & 0xf) == w)
1699 return PARPORT_MODE_PCSPP;
1700 }
1701
1702 if (user_specified)
1703 /* That didn't work, but the user thinks there's a
1704 * port here. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001705 printk(KERN_INFO "parport 0x%lx (WARNING): CTR: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
1707
1708 /* Try the data register. The data lines aren't tri-stated at
1709 * this stage, so we expect back what we wrote. */
1710 w = 0xaa;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001711 parport_pc_write_data(pb, w);
1712 r = parport_pc_read_data(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (r == w) {
1714 w = 0x55;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001715 parport_pc_write_data(pb, w);
1716 r = parport_pc_read_data(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (r == w)
1718 return PARPORT_MODE_PCSPP;
1719 }
1720
1721 if (user_specified) {
1722 /* Didn't work, but the user is convinced this is the
1723 * place. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001724 printk(KERN_INFO "parport 0x%lx (WARNING): DATA: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001726 printk(KERN_INFO "parport 0x%lx: You gave this address, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 "but there is probably no parallel port there!\n",
1728 pb->base);
1729 }
1730
1731 /* It's possible that we can't read the control register or
1732 * the data register. In that case just believe the user. */
1733 if (user_specified)
1734 return PARPORT_MODE_PCSPP;
1735
1736 return 0;
1737}
1738
1739/* Check for ECR
1740 *
1741 * Old style XT ports alias io ports every 0x400, hence accessing ECR
1742 * on these cards actually accesses the CTR.
1743 *
1744 * Modern cards don't do this but reading from ECR will return 0xff
1745 * regardless of what is written here if the card does NOT support
1746 * ECP.
1747 *
1748 * We first check to see if ECR is the same as CTR. If not, the low
1749 * two bits of ECR aren't writable, so we check by writing ECR and
1750 * reading it back to see if it's what we expect.
1751 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001752static int parport_ECR_present(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
1754 struct parport_pc_private *priv = pb->private_data;
1755 unsigned char r = 0xc;
1756
Alan Cox3aeda9b2009-06-11 13:07:29 +01001757 outb(r, CONTROL(pb));
1758 if ((inb(ECONTROL(pb)) & 0x3) == (r & 0x3)) {
1759 outb(r ^ 0x2, CONTROL(pb)); /* Toggle bit 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Alan Cox3aeda9b2009-06-11 13:07:29 +01001761 r = inb(CONTROL(pb));
1762 if ((inb(ECONTROL(pb)) & 0x2) == (r & 0x2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 goto no_reg; /* Sure that no ECR register exists */
1764 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001765
1766 if ((inb(ECONTROL(pb)) & 0x3) != 0x1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 goto no_reg;
1768
Alan Cox3aeda9b2009-06-11 13:07:29 +01001769 ECR_WRITE(pb, 0x34);
1770 if (inb(ECONTROL(pb)) != 0x35)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 goto no_reg;
1772
1773 priv->ecr = 1;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001774 outb(0xc, CONTROL(pb));
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 /* Go to mode 000 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001777 frob_set_mode(pb, ECR_SPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 return 1;
1780
1781 no_reg:
Alan Cox3aeda9b2009-06-11 13:07:29 +01001782 outb(0xc, CONTROL(pb));
1783 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784}
1785
1786#ifdef CONFIG_PARPORT_1284
1787/* Detect PS/2 support.
1788 *
1789 * Bit 5 (0x20) sets the PS/2 data direction; setting this high
1790 * allows us to read data from the data lines. In theory we would get back
1791 * 0xff but any peripheral attached to the port may drag some or all of the
1792 * lines down to zero. So if we get back anything that isn't the contents
Alan Cox3aeda9b2009-06-11 13:07:29 +01001793 * of the data register we deem PS/2 support to be present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 *
1795 * Some SPP ports have "half PS/2" ability - you can't turn off the line
1796 * drivers, but an external peripheral with sufficiently beefy drivers of
1797 * its own can overpower them and assert its own levels onto the bus, from
1798 * where they can then be read back as normal. Ports with this property
1799 * and the right type of device attached are likely to fail the SPP test,
1800 * (as they will appear to have stuck bits) and so the fact that they might
Alan Cox3aeda9b2009-06-11 13:07:29 +01001801 * be misdetected here is rather academic.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 */
1803
Randy.Dunlap96766a32006-04-18 22:21:57 -07001804static int parport_PS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
1806 int ok = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 clear_epp_timeout(pb);
1809
1810 /* try to tri-state the buffer */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001811 parport_pc_data_reverse(pb);
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 parport_pc_write_data(pb, 0x55);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001814 if (parport_pc_read_data(pb) != 0x55)
1815 ok++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 parport_pc_write_data(pb, 0xaa);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001818 if (parport_pc_read_data(pb) != 0xaa)
1819 ok++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 /* cancel input mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001822 parport_pc_data_forward(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 if (ok) {
1825 pb->modes |= PARPORT_MODE_TRISTATE;
1826 } else {
1827 struct parport_pc_private *priv = pb->private_data;
1828 priv->ctr_writable &= ~0x20;
1829 }
1830
1831 return ok;
1832}
1833
1834#ifdef CONFIG_PARPORT_PC_FIFO
David Brownell55265b02008-02-13 15:03:21 -08001835static int parport_ECP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
1837 int i;
1838 int config, configb;
1839 int pword;
1840 struct parport_pc_private *priv = pb->private_data;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001841 /* Translate ECP intrLine to ISA irq value */
1842 static const int intrline[] = { 0, 7, 9, 10, 11, 14, 15, 5 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 /* If there is no ECR, we have no hope of supporting ECP. */
1845 if (!priv->ecr)
1846 return 0;
1847
1848 /* Find out FIFO depth */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001849 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1850 ECR_WRITE(pb, ECR_TST << 5); /* TEST FIFO */
1851 for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02); i++)
1852 outb(0xaa, FIFO(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 /*
1855 * Using LGS chipset it uses ECR register, but
1856 * it doesn't support ECP or FIFO MODE
1857 */
1858 if (i == 1024) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001859 ECR_WRITE(pb, ECR_SPP << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 return 0;
1861 }
1862
1863 priv->fifo_depth = i;
1864 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001865 printk(KERN_DEBUG "0x%lx: FIFO is %d bytes\n", pb->base, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 /* Find out writeIntrThreshold */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001868 frob_econtrol(pb, 1<<2, 1<<2);
1869 frob_econtrol(pb, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 for (i = 1; i <= priv->fifo_depth; i++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001871 inb(FIFO(pb));
1872 udelay(50);
1873 if (inb(ECONTROL(pb)) & (1<<2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 break;
1875 }
1876
1877 if (i <= priv->fifo_depth) {
1878 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001879 printk(KERN_DEBUG "0x%lx: writeIntrThreshold is %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 pb->base, i);
1881 } else
1882 /* Number of bytes we know we can write if we get an
Alan Cox3aeda9b2009-06-11 13:07:29 +01001883 interrupt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 i = 0;
1885
1886 priv->writeIntrThreshold = i;
1887
1888 /* Find out readIntrThreshold */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001889 frob_set_mode(pb, ECR_PS2); /* Reset FIFO and enable PS2 */
1890 parport_pc_data_reverse(pb); /* Must be in PS2 mode */
1891 frob_set_mode(pb, ECR_TST); /* Test FIFO */
1892 frob_econtrol(pb, 1<<2, 1<<2);
1893 frob_econtrol(pb, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 for (i = 1; i <= priv->fifo_depth; i++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001895 outb(0xaa, FIFO(pb));
1896 if (inb(ECONTROL(pb)) & (1<<2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 break;
1898 }
1899
1900 if (i <= priv->fifo_depth) {
1901 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001902 printk(KERN_INFO "0x%lx: readIntrThreshold is %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 pb->base, i);
1904 } else
1905 /* Number of bytes we can read if we get an interrupt. */
1906 i = 0;
1907
1908 priv->readIntrThreshold = i;
1909
Alan Cox3aeda9b2009-06-11 13:07:29 +01001910 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1911 ECR_WRITE(pb, 0xf4); /* Configuration mode */
1912 config = inb(CONFIGA(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 pword = (config >> 4) & 0x7;
1914 switch (pword) {
1915 case 0:
1916 pword = 2;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001917 printk(KERN_WARNING "0x%lx: Unsupported pword size!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 pb->base);
1919 break;
1920 case 2:
1921 pword = 4;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001922 printk(KERN_WARNING "0x%lx: Unsupported pword size!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 pb->base);
1924 break;
1925 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01001926 printk(KERN_WARNING "0x%lx: Unknown implementation ID\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 pb->base);
1928 /* Assume 1 */
1929 case 1:
1930 pword = 1;
1931 }
1932 priv->pword = pword;
1933
1934 if (verbose_probing) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001935 printk(KERN_DEBUG "0x%lx: PWord is %d bits\n",
1936 pb->base, 8 * pword);
1937
1938 printk(KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n", pb->base,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 config & 0x80 ? "Level" : "Pulses");
1940
Alan Cox3aeda9b2009-06-11 13:07:29 +01001941 configb = inb(CONFIGB(pb));
1942 printk(KERN_DEBUG "0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 pb->base, config, configb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001944 printk(KERN_DEBUG "0x%lx: ECP settings irq=", pb->base);
1945 if ((configb >> 3) & 0x07)
1946 printk("%d", intrline[(configb >> 3) & 0x07]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 else
1948 printk("<none or set by other means>");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001949 printk(" dma=");
1950 if ((configb & 0x03) == 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 printk("<none or set by other means>\n");
1952 else
Alan Cox3aeda9b2009-06-11 13:07:29 +01001953 printk("%d\n", configb & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955
1956 /* Go back to mode 000 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001957 frob_set_mode(pb, ECR_SPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 return 1;
1960}
1961#endif
1962
Randy.Dunlap96766a32006-04-18 22:21:57 -07001963static int parport_ECPPS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
1965 const struct parport_pc_private *priv = pb->private_data;
1966 int result;
1967 unsigned char oecr;
1968
1969 if (!priv->ecr)
1970 return 0;
1971
Alan Cox3aeda9b2009-06-11 13:07:29 +01001972 oecr = inb(ECONTROL(pb));
1973 ECR_WRITE(pb, ECR_PS2 << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 result = parport_PS2_supported(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001975 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return result;
1977}
1978
1979/* EPP mode detection */
1980
Randy.Dunlap96766a32006-04-18 22:21:57 -07001981static int parport_EPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
1983 const struct parport_pc_private *priv = pb->private_data;
1984
1985 /*
1986 * Theory:
1987 * Bit 0 of STR is the EPP timeout bit, this bit is 0
1988 * when EPP is possible and is set high when an EPP timeout
1989 * occurs (EPP uses the HALT line to stop the CPU while it does
1990 * the byte transfer, an EPP timeout occurs if the attached
1991 * device fails to respond after 10 micro seconds).
1992 *
1993 * This bit is cleared by either reading it (National Semi)
1994 * or writing a 1 to the bit (SMC, UMC, WinBond), others ???
1995 * This bit is always high in non EPP modes.
1996 */
1997
1998 /* If EPP timeout bit clear then EPP available */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001999 if (!clear_epp_timeout(pb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return 0; /* No way to clear timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 /* Check for Intel bug. */
2003 if (priv->ecr) {
2004 unsigned char i;
2005 for (i = 0x00; i < 0x80; i += 0x20) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002006 ECR_WRITE(pb, i);
2007 if (clear_epp_timeout(pb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 /* Phony EPP in ECP. */
2009 return 0;
2010 }
2011 }
2012 }
2013
2014 pb->modes |= PARPORT_MODE_EPP;
2015
2016 /* Set up access functions to use EPP hardware. */
2017 pb->ops->epp_read_data = parport_pc_epp_read_data;
2018 pb->ops->epp_write_data = parport_pc_epp_write_data;
2019 pb->ops->epp_read_addr = parport_pc_epp_read_addr;
2020 pb->ops->epp_write_addr = parport_pc_epp_write_addr;
2021
2022 return 1;
2023}
2024
Randy.Dunlap96766a32006-04-18 22:21:57 -07002025static int parport_ECPEPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
2027 struct parport_pc_private *priv = pb->private_data;
2028 int result;
2029 unsigned char oecr;
2030
Alan Cox3aeda9b2009-06-11 13:07:29 +01002031 if (!priv->ecr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Alan Cox3aeda9b2009-06-11 13:07:29 +01002034 oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /* Search for SMC style EPP+ECP mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002036 ECR_WRITE(pb, 0x80);
2037 outb(0x04, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 result = parport_EPP_supported(pb);
2039
Alan Cox3aeda9b2009-06-11 13:07:29 +01002040 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 if (result) {
2043 /* Set up access functions to use ECP+EPP hardware. */
2044 pb->ops->epp_read_data = parport_pc_ecpepp_read_data;
2045 pb->ops->epp_write_data = parport_pc_ecpepp_write_data;
2046 pb->ops->epp_read_addr = parport_pc_ecpepp_read_addr;
2047 pb->ops->epp_write_addr = parport_pc_ecpepp_write_addr;
2048 }
2049
2050 return result;
2051}
2052
2053#else /* No IEEE 1284 support */
2054
2055/* Don't bother probing for modes we know we won't use. */
2056static int __devinit parport_PS2_supported(struct parport *pb) { return 0; }
2057#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +01002058static int parport_ECP_supported(struct parport *pb)
2059{
2060 return 0;
2061}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +01002063static int __devinit parport_EPP_supported(struct parport *pb)
2064{
2065 return 0;
2066}
2067
2068static int __devinit parport_ECPEPP_supported(struct parport *pb)
2069{
2070 return 0;
2071}
2072
2073static int __devinit parport_ECPPS2_supported(struct parport *pb)
2074{
2075 return 0;
2076}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078#endif /* No IEEE 1284 support */
2079
2080/* --- IRQ detection -------------------------------------- */
2081
2082/* Only if supports ECP mode */
Randy Dunlap44389822006-12-06 20:38:33 -08002083static int programmable_irq_support(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 int irq, intrLine;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002086 unsigned char oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 static const int lookup[8] = {
2088 PARPORT_IRQ_NONE, 7, 9, 10, 11, 14, 15, 5
2089 };
2090
Alan Cox3aeda9b2009-06-11 13:07:29 +01002091 ECR_WRITE(pb, ECR_CNF << 5); /* Configuration MODE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Alan Cox3aeda9b2009-06-11 13:07:29 +01002093 intrLine = (inb(CONFIGB(pb)) >> 3) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 irq = lookup[intrLine];
2095
Alan Cox3aeda9b2009-06-11 13:07:29 +01002096 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return irq;
2098}
2099
Randy Dunlap44389822006-12-06 20:38:33 -08002100static int irq_probe_ECP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
2102 int i;
2103 unsigned long irqs;
2104
2105 irqs = probe_irq_on();
Alan Cox3aeda9b2009-06-11 13:07:29 +01002106
2107 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
2108 ECR_WRITE(pb, (ECR_TST << 5) | 0x04);
2109 ECR_WRITE(pb, ECR_TST << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111 /* If Full FIFO sure that writeIntrThreshold is generated */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002112 for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02) ; i++)
2113 outb(0xaa, FIFO(pb));
2114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 pb->irq = probe_irq_off(irqs);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002116 ECR_WRITE(pb, ECR_SPP << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 if (pb->irq <= 0)
2119 pb->irq = PARPORT_IRQ_NONE;
2120
2121 return pb->irq;
2122}
2123
2124/*
2125 * This detection seems that only works in National Semiconductors
Alan Cox3aeda9b2009-06-11 13:07:29 +01002126 * This doesn't work in SMC, LGS, and Winbond
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 */
Randy Dunlap44389822006-12-06 20:38:33 -08002128static int irq_probe_EPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
2130#ifndef ADVANCED_DETECT
2131 return PARPORT_IRQ_NONE;
2132#else
2133 int irqs;
2134 unsigned char oecr;
2135
2136 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002137 oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 irqs = probe_irq_on();
2140
2141 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002142 frob_econtrol(pb, 0x10, 0x10);
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 clear_epp_timeout(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002145 parport_pc_frob_control(pb, 0x20, 0x20);
2146 parport_pc_frob_control(pb, 0x10, 0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 clear_epp_timeout(pb);
2148
2149 /* Device isn't expecting an EPP read
2150 * and generates an IRQ.
2151 */
2152 parport_pc_read_epp(pb);
2153 udelay(20);
2154
Alan Cox3aeda9b2009-06-11 13:07:29 +01002155 pb->irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002157 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 parport_pc_write_control(pb, 0xc);
2159
2160 if (pb->irq <= 0)
2161 pb->irq = PARPORT_IRQ_NONE;
2162
2163 return pb->irq;
2164#endif /* Advanced detection */
2165}
2166
Randy Dunlap44389822006-12-06 20:38:33 -08002167static int irq_probe_SPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 /* Don't even try to do this. */
2170 return PARPORT_IRQ_NONE;
2171}
2172
2173/* We will attempt to share interrupt requests since other devices
2174 * such as sound cards and network cards seem to like using the
2175 * printer IRQs.
2176 *
2177 * When ECP is available we can autoprobe for IRQs.
2178 * NOTE: If we can autoprobe it, we can register the IRQ.
2179 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07002180static int parport_irq_probe(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 struct parport_pc_private *priv = pb->private_data;
2183
2184 if (priv->ecr) {
2185 pb->irq = programmable_irq_support(pb);
2186
2187 if (pb->irq == PARPORT_IRQ_NONE)
2188 pb->irq = irq_probe_ECP(pb);
2189 }
2190
2191 if ((pb->irq == PARPORT_IRQ_NONE) && priv->ecr &&
2192 (pb->modes & PARPORT_MODE_EPP))
2193 pb->irq = irq_probe_EPP(pb);
2194
2195 clear_epp_timeout(pb);
2196
2197 if (pb->irq == PARPORT_IRQ_NONE && (pb->modes & PARPORT_MODE_EPP))
2198 pb->irq = irq_probe_EPP(pb);
2199
2200 clear_epp_timeout(pb);
2201
2202 if (pb->irq == PARPORT_IRQ_NONE)
2203 pb->irq = irq_probe_SPP(pb);
2204
2205 if (pb->irq == PARPORT_IRQ_NONE)
2206 pb->irq = get_superio_irq(pb);
2207
2208 return pb->irq;
2209}
2210
2211/* --- DMA detection -------------------------------------- */
2212
2213/* Only if chipset conforms to ECP ISA Interface Standard */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002214static int programmable_dma_support(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
Alan Cox3aeda9b2009-06-11 13:07:29 +01002216 unsigned char oecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 int dma;
2218
Alan Cox3aeda9b2009-06-11 13:07:29 +01002219 frob_set_mode(p, ECR_CNF);
2220
2221 dma = inb(CONFIGB(p)) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 /* 000: Indicates jumpered 8-bit DMA if read-only.
2223 100: Indicates jumpered 16-bit DMA if read-only. */
2224 if ((dma & 0x03) == 0)
2225 dma = PARPORT_DMA_NONE;
2226
Alan Cox3aeda9b2009-06-11 13:07:29 +01002227 ECR_WRITE(p, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 return dma;
2229}
2230
Alan Cox3aeda9b2009-06-11 13:07:29 +01002231static int parport_dma_probe(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
2233 const struct parport_pc_private *priv = p->private_data;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002234 if (priv->ecr) /* ask ECP chipset first */
2235 p->dma = programmable_dma_support(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (p->dma == PARPORT_DMA_NONE) {
2237 /* ask known Super-IO chips proper, although these
2238 claim ECP compatible, some don't report their DMA
2239 conforming to ECP standards */
2240 p->dma = get_superio_dma(p);
2241 }
2242
2243 return p->dma;
2244}
2245
2246/* --- Initialisation code -------------------------------- */
2247
2248static LIST_HEAD(ports_list);
2249static DEFINE_SPINLOCK(ports_lock);
2250
Alan Cox51dcdfe2009-04-07 15:30:57 +01002251struct parport *parport_pc_probe_port(unsigned long int base,
2252 unsigned long int base_hi,
2253 int irq, int dma,
2254 struct device *dev,
2255 int irqflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 struct parport_pc_private *priv;
2258 struct parport_operations *ops;
2259 struct parport *p;
2260 int probedirq = PARPORT_IRQ_NONE;
2261 struct resource *base_res;
2262 struct resource *ECR_res = NULL;
2263 struct resource *EPP_res = NULL;
Jean Delvarea7d801a2007-05-08 00:27:40 -07002264 struct platform_device *pdev = NULL;
2265
2266 if (!dev) {
2267 /* We need a physical device to attach to, but none was
2268 * provided. Create our own. */
2269 pdev = platform_device_register_simple("parport_pc",
2270 base, NULL, 0);
2271 if (IS_ERR(pdev))
2272 return NULL;
2273 dev = &pdev->dev;
2274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Alan Cox51dcdfe2009-04-07 15:30:57 +01002276 ops = kmalloc(sizeof(struct parport_operations), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 if (!ops)
2278 goto out1;
2279
Alan Cox51dcdfe2009-04-07 15:30:57 +01002280 priv = kmalloc(sizeof(struct parport_pc_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (!priv)
2282 goto out2;
2283
2284 /* a misnomer, actually - it's allocate and reserve parport number */
2285 p = parport_register_port(base, irq, dma, ops);
2286 if (!p)
2287 goto out3;
2288
2289 base_res = request_region(base, 3, p->name);
2290 if (!base_res)
2291 goto out4;
2292
Alan Cox3aeda9b2009-06-11 13:07:29 +01002293 memcpy(ops, &parport_pc_ops, sizeof(struct parport_operations));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 priv->ctr = 0xc;
2295 priv->ctr_writable = ~0x10;
2296 priv->ecr = 0;
2297 priv->fifo_depth = 0;
2298 priv->dma_buf = NULL;
2299 priv->dma_handle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 INIT_LIST_HEAD(&priv->list);
2301 priv->port = p;
David Brownellc15a3832007-05-08 00:27:35 -07002302
2303 p->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 p->base_hi = base_hi;
2305 p->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_SAFEININT;
2306 p->private_data = priv;
2307
2308 if (base_hi) {
2309 ECR_res = request_region(base_hi, 3, p->name);
2310 if (ECR_res)
2311 parport_ECR_present(p);
2312 }
2313
2314 if (base != 0x3bc) {
2315 EPP_res = request_region(base+0x3, 5, p->name);
2316 if (EPP_res)
2317 if (!parport_EPP_supported(p))
2318 parport_ECPEPP_supported(p);
2319 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002320 if (!parport_SPP_supported(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 /* No port. */
2322 goto out5;
2323 if (priv->ecr)
2324 parport_ECPPS2_supported(p);
2325 else
2326 parport_PS2_supported(p);
2327
Alan Cox3aeda9b2009-06-11 13:07:29 +01002328 p->size = (p->modes & PARPORT_MODE_EPP) ? 8 : 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 printk(KERN_INFO "%s: PC-style at 0x%lx", p->name, p->base);
2331 if (p->base_hi && priv->ecr)
2332 printk(" (0x%lx)", p->base_hi);
2333 if (p->irq == PARPORT_IRQ_AUTO) {
2334 p->irq = PARPORT_IRQ_NONE;
2335 parport_irq_probe(p);
2336 } else if (p->irq == PARPORT_IRQ_PROBEONLY) {
2337 p->irq = PARPORT_IRQ_NONE;
2338 parport_irq_probe(p);
2339 probedirq = p->irq;
2340 p->irq = PARPORT_IRQ_NONE;
2341 }
2342 if (p->irq != PARPORT_IRQ_NONE) {
2343 printk(", irq %d", p->irq);
2344 priv->ctr_writable |= 0x10;
2345
2346 if (p->dma == PARPORT_DMA_AUTO) {
2347 p->dma = PARPORT_DMA_NONE;
2348 parport_dma_probe(p);
2349 }
2350 }
2351 if (p->dma == PARPORT_DMA_AUTO) /* To use DMA, giving the irq
Alan Cox3aeda9b2009-06-11 13:07:29 +01002352 is mandatory (see above) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 p->dma = PARPORT_DMA_NONE;
2354
2355#ifdef CONFIG_PARPORT_PC_FIFO
2356 if (parport_ECP_supported(p) &&
2357 p->dma != PARPORT_DMA_NOFIFO &&
2358 priv->fifo_depth > 0 && p->irq != PARPORT_IRQ_NONE) {
2359 p->modes |= PARPORT_MODE_ECP | PARPORT_MODE_COMPAT;
2360 p->ops->compat_write_data = parport_pc_compat_write_block_pio;
2361#ifdef CONFIG_PARPORT_1284
2362 p->ops->ecp_write_data = parport_pc_ecp_write_block_pio;
2363 /* currently broken, but working on it.. (FB) */
2364 /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */
2365#endif /* IEEE 1284 support */
2366 if (p->dma != PARPORT_DMA_NONE) {
2367 printk(", dma %d", p->dma);
2368 p->modes |= PARPORT_MODE_DMA;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002369 } else
2370 printk(", using FIFO");
2371 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 /* We can't use the DMA channel after all. */
2373 p->dma = PARPORT_DMA_NONE;
2374#endif /* Allowed to use FIFO/DMA */
2375
2376 printk(" [");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002377
2378#define printmode(x) \
2379 {\
2380 if (p->modes & PARPORT_MODE_##x) {\
2381 printk("%s%s", f ? "," : "", #x);\
2382 f++;\
2383 } \
2384 }
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 {
2387 int f = 0;
2388 printmode(PCSPP);
2389 printmode(TRISTATE);
2390 printmode(COMPAT)
2391 printmode(EPP);
2392 printmode(ECP);
2393 printmode(DMA);
2394 }
2395#undef printmode
2396#ifndef CONFIG_PARPORT_1284
Alan Cox3aeda9b2009-06-11 13:07:29 +01002397 printk("(,...)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398#endif /* CONFIG_PARPORT_1284 */
2399 printk("]\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002400 if (probedirq != PARPORT_IRQ_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 printk(KERN_INFO "%s: irq %d detected\n", p->name, probedirq);
2402
2403 /* If No ECP release the ports grabbed above. */
2404 if (ECR_res && (p->modes & PARPORT_MODE_ECP) == 0) {
2405 release_region(base_hi, 3);
2406 ECR_res = NULL;
2407 }
2408 /* Likewise for EEP ports */
2409 if (EPP_res && (p->modes & PARPORT_MODE_EPP) == 0) {
2410 release_region(base+3, 5);
2411 EPP_res = NULL;
2412 }
2413 if (p->irq != PARPORT_IRQ_NONE) {
Alan Cox51dcdfe2009-04-07 15:30:57 +01002414 if (request_irq(p->irq, parport_irq_handler,
2415 irqflags, p->name, p)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002416 printk(KERN_WARNING "%s: irq %d in use, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 "resorting to polled operation\n",
2418 p->name, p->irq);
2419 p->irq = PARPORT_IRQ_NONE;
2420 p->dma = PARPORT_DMA_NONE;
2421 }
2422
2423#ifdef CONFIG_PARPORT_PC_FIFO
Al Viro7fbacd52005-05-04 05:39:32 +01002424#ifdef HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (p->dma != PARPORT_DMA_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002426 if (request_dma(p->dma, p->name)) {
2427 printk(KERN_WARNING "%s: dma %d in use, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 "resorting to PIO operation\n",
2429 p->name, p->dma);
2430 p->dma = PARPORT_DMA_NONE;
2431 } else {
2432 priv->dma_buf =
David Brownellc15a3832007-05-08 00:27:35 -07002433 dma_alloc_coherent(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 PAGE_SIZE,
David Brownellc15a3832007-05-08 00:27:35 -07002435 &priv->dma_handle,
2436 GFP_KERNEL);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002437 if (!priv->dma_buf) {
2438 printk(KERN_WARNING "%s: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 "cannot get buffer for DMA, "
2440 "resorting to PIO operation\n",
2441 p->name);
2442 free_dma(p->dma);
2443 p->dma = PARPORT_DMA_NONE;
2444 }
2445 }
2446 }
Al Viro7fbacd52005-05-04 05:39:32 +01002447#endif
2448#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 }
2450
2451 /* Done probing. Now put the port into a sensible start-up state. */
2452 if (priv->ecr)
2453 /*
2454 * Put the ECP detected port in PS2 mode.
2455 * Do this also for ports that have ECR but don't do ECP.
2456 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002457 ECR_WRITE(p, 0x34);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
2459 parport_pc_write_data(p, 0);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002460 parport_pc_data_forward(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
2462 /* Now that we've told the sharing engine about the port, and
2463 found out its characteristics, let the high-level drivers
2464 know about it. */
2465 spin_lock(&ports_lock);
2466 list_add(&priv->list, &ports_list);
2467 spin_unlock(&ports_lock);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002468 parport_announce_port(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 return p;
2471
2472out5:
2473 if (ECR_res)
2474 release_region(base_hi, 3);
2475 if (EPP_res)
2476 release_region(base+0x3, 5);
2477 release_region(base, 3);
2478out4:
2479 parport_put_port(p);
2480out3:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002481 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482out2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002483 kfree(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484out1:
Jean Delvarea7d801a2007-05-08 00:27:40 -07002485 if (pdev)
2486 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return NULL;
2488}
Alan Cox3aeda9b2009-06-11 13:07:29 +01002489EXPORT_SYMBOL(parport_pc_probe_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Alan Cox3aeda9b2009-06-11 13:07:29 +01002491void parport_pc_unregister_port(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
2493 struct parport_pc_private *priv = p->private_data;
2494 struct parport_operations *ops = p->ops;
2495
2496 parport_remove_port(p);
2497 spin_lock(&ports_lock);
2498 list_del_init(&priv->list);
2499 spin_unlock(&ports_lock);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002500#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 if (p->dma != PARPORT_DMA_NONE)
2502 free_dma(p->dma);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 if (p->irq != PARPORT_IRQ_NONE)
2505 free_irq(p->irq, p);
2506 release_region(p->base, 3);
2507 if (p->size > 3)
2508 release_region(p->base + 3, p->size - 3);
2509 if (p->modes & PARPORT_MODE_ECP)
2510 release_region(p->base_hi, 3);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002511#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 if (priv->dma_buf)
David Brownellc15a3832007-05-08 00:27:35 -07002513 dma_free_coherent(p->physport->dev, PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 priv->dma_buf,
2515 priv->dma_handle);
Al Viro7fbacd52005-05-04 05:39:32 +01002516#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +01002517 kfree(p->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 parport_put_port(p);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002519 kfree(ops); /* hope no-one cached it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
Alan Cox3aeda9b2009-06-11 13:07:29 +01002521EXPORT_SYMBOL(parport_pc_unregister_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523#ifdef CONFIG_PCI
2524
2525/* ITE support maintained by Rich Liu <richliu@poorman.org> */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002526static int __devinit sio_ite_8872_probe(struct pci_dev *pdev, int autoirq,
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002527 int autodma,
2528 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
2530 short inta_addr[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 };
2531 struct resource *base_res;
2532 u32 ite8872set;
2533 u32 ite8872_lpt, ite8872_lpthi;
2534 u8 ite8872_irq, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 int irq;
2536 int i;
2537
Alan Cox3aeda9b2009-06-11 13:07:29 +01002538 DPRINTK(KERN_DEBUG "sio_ite_8872_probe()\n");
2539
2540 /* make sure which one chip */
2541 for (i = 0; i < 5; i++) {
Niels de Vose7c310c2007-07-15 23:41:35 -07002542 base_res = request_region(inta_addr[i], 32, "it887x");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (base_res) {
2544 int test;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002545 pci_write_config_dword(pdev, 0x60,
Niels de Vose7c310c2007-07-15 23:41:35 -07002546 0xe5000000 | inta_addr[i]);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002547 pci_write_config_dword(pdev, 0x78,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 0x00000000 | inta_addr[i]);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002549 test = inb(inta_addr[i]);
2550 if (test != 0xff)
2551 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 release_region(inta_addr[i], 0x8);
2553 }
2554 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002555 if (i >= 5) {
2556 printk(KERN_INFO "parport_pc: cannot find ITE8872 INTA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 return 0;
2558 }
2559
Alan Cox3aeda9b2009-06-11 13:07:29 +01002560 type = inb(inta_addr[i] + 0x18);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 type &= 0x0f;
2562
2563 switch (type) {
2564 case 0x2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002565 printk(KERN_INFO "parport_pc: ITE8871 found (1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 ite8872set = 0x64200000;
2567 break;
2568 case 0xa:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002569 printk(KERN_INFO "parport_pc: ITE8875 found (1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 ite8872set = 0x64200000;
2571 break;
2572 case 0xe:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002573 printk(KERN_INFO "parport_pc: ITE8872 found (2S1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 ite8872set = 0x64e00000;
2575 break;
2576 case 0x6:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002577 printk(KERN_INFO "parport_pc: ITE8873 found (1S)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 return 0;
2579 case 0x8:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002580 DPRINTK(KERN_DEBUG "parport_pc: ITE8874 found (2S)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 return 0;
2582 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002583 printk(KERN_INFO "parport_pc: unknown ITE887x\n");
2584 printk(KERN_INFO "parport_pc: please mail 'lspci -nvv' "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 "output to Rich.Liu@ite.com.tw\n");
2586 return 0;
2587 }
2588
Alan Cox3aeda9b2009-06-11 13:07:29 +01002589 pci_read_config_byte(pdev, 0x3c, &ite8872_irq);
2590 pci_read_config_dword(pdev, 0x1c, &ite8872_lpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 ite8872_lpt &= 0x0000ff00;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002592 pci_read_config_dword(pdev, 0x20, &ite8872_lpthi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 ite8872_lpthi &= 0x0000ff00;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002594 pci_write_config_dword(pdev, 0x6c, 0xe3000000 | ite8872_lpt);
2595 pci_write_config_dword(pdev, 0x70, 0xe3000000 | ite8872_lpthi);
2596 pci_write_config_dword(pdev, 0x80, (ite8872_lpthi<<16) | ite8872_lpt);
2597 /* SET SPP&EPP , Parallel Port NO DMA , Enable All Function */
2598 /* SET Parallel IRQ */
2599 pci_write_config_dword(pdev, 0x9c,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 ite8872set | (ite8872_irq * 0x11111));
2601
Alan Cox3aeda9b2009-06-11 13:07:29 +01002602 DPRINTK(KERN_DEBUG "ITE887x: The IRQ is %d.\n", ite8872_irq);
2603 DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O port is 0x%x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 ite8872_lpt);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002605 DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O porthi is 0x%x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 ite8872_lpthi);
2607
2608 /* Let the user (or defaults) steer us away from interrupts */
2609 irq = ite8872_irq;
2610 if (autoirq != PARPORT_IRQ_AUTO)
2611 irq = PARPORT_IRQ_NONE;
2612
2613 /*
2614 * Release the resource so that parport_pc_probe_port can get it.
2615 */
2616 release_resource(base_res);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002617 if (parport_pc_probe_port(ite8872_lpt, ite8872_lpthi,
Alan Cox51dcdfe2009-04-07 15:30:57 +01002618 irq, PARPORT_DMA_NONE, &pdev->dev, 0)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002619 printk(KERN_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 "parport_pc: ITE 8872 parallel port: io=0x%X",
Alan Cox3aeda9b2009-06-11 13:07:29 +01002621 ite8872_lpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (irq != PARPORT_IRQ_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002623 printk(", irq=%d", irq);
2624 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 return 1;
2626 }
2627
2628 return 0;
2629}
2630
2631/* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru>
2632 based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002633static int __devinitdata parport_init_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635/* Data for two known VIA chips */
2636static struct parport_pc_via_data via_686a_data __devinitdata = {
2637 0x51,
2638 0x50,
2639 0x85,
2640 0x02,
2641 0xE2,
2642 0xF0,
2643 0xE6
2644};
2645static struct parport_pc_via_data via_8231_data __devinitdata = {
2646 0x45,
2647 0x44,
2648 0x50,
2649 0x04,
2650 0xF2,
2651 0xFA,
2652 0xF6
2653};
2654
Alan Cox3aeda9b2009-06-11 13:07:29 +01002655static int __devinit sio_via_probe(struct pci_dev *pdev, int autoirq,
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002656 int autodma,
2657 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
2659 u8 tmp, tmp2, siofunc;
2660 u8 ppcontrol = 0;
2661 int dma, irq;
2662 unsigned port1, port2;
2663 unsigned have_epp = 0;
2664
2665 printk(KERN_DEBUG "parport_pc: VIA 686A/8231 detected\n");
2666
Alan Cox3aeda9b2009-06-11 13:07:29 +01002667 switch (parport_init_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 case 1:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002669 printk(KERN_DEBUG "parport_pc: setting SPP mode\n");
2670 siofunc = VIA_FUNCTION_PARPORT_SPP;
2671 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 case 2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002673 printk(KERN_DEBUG "parport_pc: setting PS/2 mode\n");
2674 siofunc = VIA_FUNCTION_PARPORT_SPP;
2675 ppcontrol = VIA_PARPORT_BIDIR;
2676 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 case 3:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002678 printk(KERN_DEBUG "parport_pc: setting EPP mode\n");
2679 siofunc = VIA_FUNCTION_PARPORT_EPP;
2680 ppcontrol = VIA_PARPORT_BIDIR;
2681 have_epp = 1;
2682 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 case 4:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002684 printk(KERN_DEBUG "parport_pc: setting ECP mode\n");
2685 siofunc = VIA_FUNCTION_PARPORT_ECP;
2686 ppcontrol = VIA_PARPORT_BIDIR;
2687 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 case 5:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002689 printk(KERN_DEBUG "parport_pc: setting EPP+ECP mode\n");
2690 siofunc = VIA_FUNCTION_PARPORT_ECP;
2691 ppcontrol = VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP;
2692 have_epp = 1;
2693 break;
2694 default:
2695 printk(KERN_DEBUG
2696 "parport_pc: probing current configuration\n");
2697 siofunc = VIA_FUNCTION_PROBE;
2698 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 }
2700 /*
2701 * unlock super i/o configuration
2702 */
2703 pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
2704 tmp |= via->via_pci_superio_config_data;
2705 pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
2706
2707 /* Bits 1-0: Parallel Port Mode / Enable */
2708 outb(via->viacfg_function, VIA_CONFIG_INDEX);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002709 tmp = inb(VIA_CONFIG_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 /* Bit 5: EPP+ECP enable; bit 7: PS/2 bidirectional port enable */
2711 outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002712 tmp2 = inb(VIA_CONFIG_DATA);
2713 if (siofunc == VIA_FUNCTION_PROBE) {
2714 siofunc = tmp & VIA_FUNCTION_PARPORT_DISABLE;
2715 ppcontrol = tmp2;
2716 } else {
2717 tmp &= ~VIA_FUNCTION_PARPORT_DISABLE;
2718 tmp |= siofunc;
2719 outb(via->viacfg_function, VIA_CONFIG_INDEX);
2720 outb(tmp, VIA_CONFIG_DATA);
2721 tmp2 &= ~(VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP);
2722 tmp2 |= ppcontrol;
2723 outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
2724 outb(tmp2, VIA_CONFIG_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 /* Parallel Port I/O Base Address, bits 9-2 */
2728 outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
2729 port1 = inb(VIA_CONFIG_DATA) << 2;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002730
2731 printk(KERN_DEBUG "parport_pc: Current parallel port base: 0x%X\n",
2732 port1);
2733 if (port1 == 0x3BC && have_epp) {
2734 outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
2735 outb((0x378 >> 2), VIA_CONFIG_DATA);
2736 printk(KERN_DEBUG
2737 "parport_pc: Parallel port base changed to 0x378\n");
2738 port1 = 0x378;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 }
2740
2741 /*
2742 * lock super i/o configuration
2743 */
2744 pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
2745 tmp &= ~via->via_pci_superio_config_data;
2746 pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
2747
2748 if (siofunc == VIA_FUNCTION_PARPORT_DISABLE) {
2749 printk(KERN_INFO "parport_pc: VIA parallel port disabled in BIOS\n");
2750 return 0;
2751 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 /* Bits 7-4: PnP Routing for Parallel Port IRQ */
2754 pci_read_config_byte(pdev, via->via_pci_parport_irq_reg, &tmp);
2755 irq = ((tmp & VIA_IRQCONTROL_PARALLEL) >> 4);
2756
Alan Cox3aeda9b2009-06-11 13:07:29 +01002757 if (siofunc == VIA_FUNCTION_PARPORT_ECP) {
2758 /* Bits 3-2: PnP Routing for Parallel Port DMA */
2759 pci_read_config_byte(pdev, via->via_pci_parport_dma_reg, &tmp);
2760 dma = ((tmp & VIA_DMACONTROL_PARALLEL) >> 2);
2761 } else
2762 /* if ECP not enabled, DMA is not enabled, assumed
2763 bogus 'dma' value */
2764 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 /* Let the user (or defaults) steer us away from interrupts and DMA */
2767 if (autoirq == PARPORT_IRQ_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002768 irq = PARPORT_IRQ_NONE;
2769 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 }
2771 if (autodma == PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002772 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 switch (port1) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002775 case 0x3bc:
2776 port2 = 0x7bc; break;
2777 case 0x378:
2778 port2 = 0x778; break;
2779 case 0x278:
2780 port2 = 0x678; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002782 printk(KERN_INFO
2783 "parport_pc: Weird VIA parport base 0x%X, ignoring\n",
2784 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 return 0;
2786 }
2787
2788 /* filter bogus IRQs */
2789 switch (irq) {
2790 case 0:
2791 case 2:
2792 case 8:
2793 case 13:
2794 irq = PARPORT_IRQ_NONE;
2795 break;
2796
2797 default: /* do nothing */
2798 break;
2799 }
2800
2801 /* finally, do the probe with values obtained */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002802 if (parport_pc_probe_port(port1, port2, irq, dma, &pdev->dev, 0)) {
2803 printk(KERN_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 "parport_pc: VIA parallel port: io=0x%X", port1);
2805 if (irq != PARPORT_IRQ_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002806 printk(", irq=%d", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (dma != PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002808 printk(", dma=%d", dma);
2809 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 return 1;
2811 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002812
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 printk(KERN_WARNING "parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n",
2814 port1, irq, dma);
2815 return 0;
2816}
2817
2818
2819enum parport_pc_sio_types {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002820 sio_via_686a = 0, /* Via VT82C686A motherboard Super I/O */
2821 sio_via_8231, /* Via VT8231 south bridge integrated Super IO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 sio_ite_8872,
2823 last_sio
2824};
2825
2826/* each element directly indexed from enum list, above */
2827static struct parport_pc_superio {
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002828 int (*probe) (struct pci_dev *pdev, int autoirq, int autodma,
2829 const struct parport_pc_via_data *via);
2830 const struct parport_pc_via_data *via;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831} parport_pc_superio_info[] __devinitdata = {
2832 { sio_via_probe, &via_686a_data, },
2833 { sio_via_probe, &via_8231_data, },
2834 { sio_ite_8872_probe, NULL, },
2835};
2836
2837enum parport_pc_pci_cards {
2838 siig_1p_10x = last_sio,
2839 siig_2p_10x,
2840 siig_1p_20x,
2841 siig_2p_20x,
2842 lava_parallel,
2843 lava_parallel_dual_a,
2844 lava_parallel_dual_b,
2845 boca_ioppar,
2846 plx_9050,
2847 timedia_4078a,
2848 timedia_4079h,
2849 timedia_4085h,
2850 timedia_4088a,
2851 timedia_4089a,
2852 timedia_4095a,
2853 timedia_4096a,
2854 timedia_4078u,
2855 timedia_4079a,
2856 timedia_4085u,
2857 timedia_4079r,
2858 timedia_4079s,
2859 timedia_4079d,
2860 timedia_4079e,
2861 timedia_4079f,
2862 timedia_9079a,
2863 timedia_9079b,
2864 timedia_9079c,
2865 timedia_4006a,
2866 timedia_4014,
2867 timedia_4008a,
2868 timedia_4018,
2869 timedia_9018a,
2870 syba_2p_epp,
2871 syba_1p_ecp,
2872 titan_010l,
Maximilian Attems85747f02005-09-06 15:17:21 -07002873 titan_1284p1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 titan_1284p2,
2875 avlab_1p,
2876 avlab_2p,
Ryan Underwoodc140e112006-12-06 20:36:38 -08002877 oxsemi_952,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 oxsemi_954,
2879 oxsemi_840,
Lee Howard7106b4e2008-10-21 13:48:58 +01002880 oxsemi_pcie_pport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 aks_0100,
2882 mobility_pp,
2883 netmos_9705,
2884 netmos_9715,
2885 netmos_9755,
2886 netmos_9805,
2887 netmos_9815,
Luís P Mendesdc999152008-02-06 01:37:43 -08002888 quatech_sppxp100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889};
2890
2891
Alan Cox3aeda9b2009-06-11 13:07:29 +01002892/* each element directly indexed from enum list, above
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 * (but offset by last_sio) */
2894static struct parport_pc_pci {
2895 int numports;
2896 struct { /* BAR (base address registers) numbers in the config
Alan Cox3aeda9b2009-06-11 13:07:29 +01002897 space header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 int lo;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002899 int hi;
2900 /* -1 if not there, >6 for offset-method (max BAR is 6) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 } addr[4];
2902
2903 /* If set, this is called immediately after pci_enable_device.
2904 * If it returns non-zero, no probing will take place and the
2905 * ports will not be used. */
2906 int (*preinit_hook) (struct pci_dev *pdev, int autoirq, int autodma);
2907
2908 /* If set, this is called after probing for ports. If 'failed'
2909 * is non-zero we couldn't use any of the ports. */
2910 void (*postinit_hook) (struct pci_dev *pdev, int failed);
Randy.Dunlap96766a32006-04-18 22:21:57 -07002911} cards[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 /* siig_1p_10x */ { 1, { { 2, 3 }, } },
2913 /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } },
2914 /* siig_1p_20x */ { 1, { { 0, 1 }, } },
2915 /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } },
2916 /* lava_parallel */ { 1, { { 0, -1 }, } },
2917 /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } },
2918 /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } },
2919 /* boca_ioppar */ { 1, { { 0, -1 }, } },
2920 /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } },
2921 /* timedia_4078a */ { 1, { { 2, -1 }, } },
2922 /* timedia_4079h */ { 1, { { 2, 3 }, } },
2923 /* timedia_4085h */ { 2, { { 2, -1 }, { 4, -1 }, } },
2924 /* timedia_4088a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2925 /* timedia_4089a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2926 /* timedia_4095a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2927 /* timedia_4096a */ { 2, { { 2, 3 }, { 4, 5 }, } },
2928 /* timedia_4078u */ { 1, { { 2, -1 }, } },
2929 /* timedia_4079a */ { 1, { { 2, 3 }, } },
2930 /* timedia_4085u */ { 2, { { 2, -1 }, { 4, -1 }, } },
2931 /* timedia_4079r */ { 1, { { 2, 3 }, } },
2932 /* timedia_4079s */ { 1, { { 2, 3 }, } },
2933 /* timedia_4079d */ { 1, { { 2, 3 }, } },
2934 /* timedia_4079e */ { 1, { { 2, 3 }, } },
2935 /* timedia_4079f */ { 1, { { 2, 3 }, } },
2936 /* timedia_9079a */ { 1, { { 2, 3 }, } },
2937 /* timedia_9079b */ { 1, { { 2, 3 }, } },
2938 /* timedia_9079c */ { 1, { { 2, 3 }, } },
2939 /* timedia_4006a */ { 1, { { 0, -1 }, } },
2940 /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } },
2941 /* timedia_4008a */ { 1, { { 0, 1 }, } },
2942 /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2943 /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } },
2944 /* SYBA uses fixed offsets in
Alan Cox3aeda9b2009-06-11 13:07:29 +01002945 a 1K io window */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } },
2947 /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } },
2948 /* titan_010l */ { 1, { { 3, -1 }, } },
Maximilian Attems85747f02005-09-06 15:17:21 -07002949 /* titan_1284p1 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 /* titan_1284p2 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2951 /* avlab_1p */ { 1, { { 0, 1}, } },
2952 /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} },
2953 /* The Oxford Semi cards are unusual: 954 doesn't support ECP,
2954 * and 840 locks up if you write 1 to bit 2! */
Ryan Underwoodc140e112006-12-06 20:36:38 -08002955 /* oxsemi_952 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 /* oxsemi_954 */ { 1, { { 0, -1 }, } },
Bernhard Walleadbd3212008-07-25 19:44:56 -07002957 /* oxsemi_840 */ { 1, { { 0, 1 }, } },
Lee Howard7106b4e2008-10-21 13:48:58 +01002958 /* oxsemi_pcie_pport */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 /* aks_0100 */ { 1, { { 0, -1 }, } },
2960 /* mobility_pp */ { 1, { { 0, 1 }, } },
Alan Cox3aeda9b2009-06-11 13:07:29 +01002961
2962 /* The netmos entries below are untested */
2963 /* netmos_9705 */ { 1, { { 0, -1 }, } },
2964 /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} },
2965 /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} },
2966 /* netmos_9805 */ { 1, { { 0, -1 }, } },
2967 /* netmos_9815 */ { 2, { { 0, -1 }, { 2, -1 }, } },
2968
Luís P Mendesdc999152008-02-06 01:37:43 -08002969 /* quatech_sppxp100 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970};
2971
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002972static const struct pci_device_id parport_pc_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 /* Super-IO onboard chips */
2974 { 0x1106, 0x0686, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_686a },
2975 { 0x1106, 0x8231, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_8231 },
2976 { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8872,
2977 PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_ite_8872 },
2978
2979 /* PCI cards */
2980 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_10x,
2981 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_10x },
2982 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_10x,
2983 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_10x },
2984 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_20x,
2985 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_20x },
2986 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_20x,
2987 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_20x },
2988 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PARALLEL,
2989 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel },
2990 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_A,
2991 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_a },
2992 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_B,
2993 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_b },
2994 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR,
2995 PCI_ANY_ID, PCI_ANY_ID, 0, 0, boca_ioppar },
2996 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
Alan Cox3aeda9b2009-06-11 13:07:29 +01002997 PCI_SUBVENDOR_ID_EXSYS, PCI_SUBDEVICE_ID_EXSYS_4014, 0, 0, plx_9050 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
2999 { 0x1409, 0x7168, 0x1409, 0x4078, 0, 0, timedia_4078a },
3000 { 0x1409, 0x7168, 0x1409, 0x4079, 0, 0, timedia_4079h },
3001 { 0x1409, 0x7168, 0x1409, 0x4085, 0, 0, timedia_4085h },
3002 { 0x1409, 0x7168, 0x1409, 0x4088, 0, 0, timedia_4088a },
3003 { 0x1409, 0x7168, 0x1409, 0x4089, 0, 0, timedia_4089a },
3004 { 0x1409, 0x7168, 0x1409, 0x4095, 0, 0, timedia_4095a },
3005 { 0x1409, 0x7168, 0x1409, 0x4096, 0, 0, timedia_4096a },
3006 { 0x1409, 0x7168, 0x1409, 0x5078, 0, 0, timedia_4078u },
3007 { 0x1409, 0x7168, 0x1409, 0x5079, 0, 0, timedia_4079a },
3008 { 0x1409, 0x7168, 0x1409, 0x5085, 0, 0, timedia_4085u },
3009 { 0x1409, 0x7168, 0x1409, 0x6079, 0, 0, timedia_4079r },
3010 { 0x1409, 0x7168, 0x1409, 0x7079, 0, 0, timedia_4079s },
3011 { 0x1409, 0x7168, 0x1409, 0x8079, 0, 0, timedia_4079d },
3012 { 0x1409, 0x7168, 0x1409, 0x9079, 0, 0, timedia_4079e },
3013 { 0x1409, 0x7168, 0x1409, 0xa079, 0, 0, timedia_4079f },
3014 { 0x1409, 0x7168, 0x1409, 0xb079, 0, 0, timedia_9079a },
3015 { 0x1409, 0x7168, 0x1409, 0xc079, 0, 0, timedia_9079b },
3016 { 0x1409, 0x7168, 0x1409, 0xd079, 0, 0, timedia_9079c },
3017 { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a },
3018 { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014 },
3019 { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a },
3020 { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018 },
3021 { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_2P_EPP,
3023 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_2p_epp },
3024 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_1P_ECP,
3025 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_1p_ecp },
3026 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_010L,
3027 PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_010l },
Maximilian Attems85747f02005-09-06 15:17:21 -07003028 { 0x9710, 0x9805, 0x1000, 0x0010, 0, 0, titan_1284p1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 { 0x9710, 0x9815, 0x1000, 0x0020, 0, 0, titan_1284p2 },
3030 /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
Alan Cox3aeda9b2009-06-11 13:07:29 +01003031 /* AFAVLAB_TK9902 */
3032 { 0x14db, 0x2120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1p},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 { 0x14db, 0x2121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2p},
Ryan Underwoodc140e112006-12-06 20:36:38 -08003034 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952PP,
3035 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_952 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954PP,
3037 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_954 },
3038 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_12PCI840,
3039 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_840 },
Lee Howard7106b4e2008-10-21 13:48:58 +01003040 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840,
3041 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
3042 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840_G,
3043 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
3044 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0,
3045 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
3046 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0_G,
3047 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
3048 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1,
3049 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
3050 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_G,
3051 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
3052 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_U,
3053 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
3054 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_GU,
3055 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 { PCI_VENDOR_ID_AKS, PCI_DEVICE_ID_AKS_ALADDINCARD,
3057 PCI_ANY_ID, PCI_ANY_ID, 0, 0, aks_0100 },
Lee Howard7106b4e2008-10-21 13:48:58 +01003058 { 0x14f2, 0x0121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, mobility_pp },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 /* NetMos communication controllers */
3060 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9705,
3061 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9705 },
3062 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9715,
3063 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9715 },
3064 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9755,
3065 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9755 },
3066 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9805,
3067 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9805 },
3068 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9815,
3069 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9815 },
Luís P Mendesdc999152008-02-06 01:37:43 -08003070 /* Quatech SPPXP-100 Parallel port PCI ExpressCard */
3071 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_SPPXP_100,
3072 PCI_ANY_ID, PCI_ANY_ID, 0, 0, quatech_sppxp100 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 { 0, } /* terminate list */
3074};
Alan Cox3aeda9b2009-06-11 13:07:29 +01003075MODULE_DEVICE_TABLE(pci, parport_pc_pci_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077struct pci_parport_data {
3078 int num;
3079 struct parport *ports[2];
3080};
3081
Alan Cox3aeda9b2009-06-11 13:07:29 +01003082static int parport_pc_pci_probe(struct pci_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 const struct pci_device_id *id)
3084{
3085 int err, count, n, i = id->driver_data;
3086 struct pci_parport_data *data;
3087
3088 if (i < last_sio)
3089 /* This is an onboard Super-IO and has already been probed */
3090 return 0;
3091
3092 /* This is a PCI card */
3093 i -= last_sio;
3094 count = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003095 err = pci_enable_device(dev);
3096 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 return err;
3098
3099 data = kmalloc(sizeof(struct pci_parport_data), GFP_KERNEL);
3100 if (!data)
3101 return -ENOMEM;
3102
3103 if (cards[i].preinit_hook &&
Alan Cox3aeda9b2009-06-11 13:07:29 +01003104 cards[i].preinit_hook(dev, PARPORT_IRQ_NONE, PARPORT_DMA_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 kfree(data);
3106 return -ENODEV;
3107 }
3108
3109 for (n = 0; n < cards[i].numports; n++) {
3110 int lo = cards[i].addr[n].lo;
3111 int hi = cards[i].addr[n].hi;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003112 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 unsigned long io_lo, io_hi;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003114 io_lo = pci_resource_start(dev, lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 io_hi = 0;
3116 if ((hi >= 0) && (hi <= 6))
Alan Cox3aeda9b2009-06-11 13:07:29 +01003117 io_hi = pci_resource_start(dev, hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 else if (hi > 6)
3119 io_lo += hi; /* Reinterpret the meaning of
Alan Cox3aeda9b2009-06-11 13:07:29 +01003120 "hi" as an offset (see SYBA
3121 def.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 /* TODO: test if sharing interrupts works */
Alan Cox51dcdfe2009-04-07 15:30:57 +01003123 irq = dev->irq;
3124 if (irq == IRQ_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01003125 printk(KERN_DEBUG
Alan Cox51dcdfe2009-04-07 15:30:57 +01003126 "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
3127 parport_pc_pci_tbl[i + last_sio].vendor,
3128 parport_pc_pci_tbl[i + last_sio].device,
3129 io_lo, io_hi);
3130 irq = PARPORT_IRQ_NONE;
3131 } else {
Alan Cox3aeda9b2009-06-11 13:07:29 +01003132 printk(KERN_DEBUG
Alan Cox51dcdfe2009-04-07 15:30:57 +01003133 "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
3134 parport_pc_pci_tbl[i + last_sio].vendor,
3135 parport_pc_pci_tbl[i + last_sio].device,
3136 io_lo, io_hi, irq);
3137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 data->ports[count] =
Alan Cox51dcdfe2009-04-07 15:30:57 +01003139 parport_pc_probe_port(io_lo, io_hi, irq,
3140 PARPORT_DMA_NONE, &dev->dev,
3141 IRQF_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 if (data->ports[count])
3143 count++;
3144 }
3145
3146 data->num = count;
3147
3148 if (cards[i].postinit_hook)
Alan Cox3aeda9b2009-06-11 13:07:29 +01003149 cards[i].postinit_hook(dev, count == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151 if (count) {
3152 pci_set_drvdata(dev, data);
3153 return 0;
3154 }
3155
3156 kfree(data);
3157
3158 return -ENODEV;
3159}
3160
3161static void __devexit parport_pc_pci_remove(struct pci_dev *dev)
3162{
3163 struct pci_parport_data *data = pci_get_drvdata(dev);
3164 int i;
3165
3166 pci_set_drvdata(dev, NULL);
3167
3168 if (data) {
3169 for (i = data->num - 1; i >= 0; i--)
3170 parport_pc_unregister_port(data->ports[i]);
3171
3172 kfree(data);
3173 }
3174}
3175
3176static struct pci_driver parport_pc_pci_driver = {
3177 .name = "parport_pc",
3178 .id_table = parport_pc_pci_tbl,
3179 .probe = parport_pc_pci_probe,
3180 .remove = __devexit_p(parport_pc_pci_remove),
3181};
3182
Alan Cox3aeda9b2009-06-11 13:07:29 +01003183static int __init parport_pc_init_superio(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184{
3185 const struct pci_device_id *id;
3186 struct pci_dev *pdev = NULL;
3187 int ret = 0;
3188
Jiri Slabyc9d80732005-08-10 02:09:39 +02003189 for_each_pci_dev(pdev) {
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07003190 id = pci_match_id(parport_pc_pci_tbl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (id == NULL || id->driver_data >= last_sio)
3192 continue;
3193
Alan Cox3aeda9b2009-06-11 13:07:29 +01003194 if (parport_pc_superio_info[id->driver_data].probe(
3195 pdev, autoirq, autodma,
3196 parport_pc_superio_info[id->driver_data].via)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 ret++;
3198 }
3199 }
3200
3201 return ret; /* number of devices found */
3202}
3203#else
3204static struct pci_driver parport_pc_pci_driver;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003205static int __init parport_pc_init_superio(int autoirq, int autodma)
3206{
3207 return 0;
3208}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209#endif /* CONFIG_PCI */
3210
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07003211#ifdef CONFIG_PNP
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213static const struct pnp_device_id parport_pc_pnp_tbl[] = {
3214 /* Standard LPT Printer Port */
3215 {.id = "PNP0400", .driver_data = 0},
3216 /* ECP Printer Port */
3217 {.id = "PNP0401", .driver_data = 0},
3218 { }
3219};
3220
Alan Cox3aeda9b2009-06-11 13:07:29 +01003221MODULE_DEVICE_TABLE(pnp, parport_pc_pnp_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Alan Cox3aeda9b2009-06-11 13:07:29 +01003223static int parport_pc_pnp_probe(struct pnp_dev *dev,
3224 const struct pnp_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225{
3226 struct parport *pdata;
3227 unsigned long io_lo, io_hi;
3228 int dma, irq;
3229
Alan Cox3aeda9b2009-06-11 13:07:29 +01003230 if (pnp_port_valid(dev, 0) &&
3231 !(pnp_port_flags(dev, 0) & IORESOURCE_DISABLED)) {
3232 io_lo = pnp_port_start(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 } else
3234 return -EINVAL;
3235
Alan Cox3aeda9b2009-06-11 13:07:29 +01003236 if (pnp_port_valid(dev, 1) &&
3237 !(pnp_port_flags(dev, 1) & IORESOURCE_DISABLED)) {
3238 io_hi = pnp_port_start(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 } else
3240 io_hi = 0;
3241
Alan Cox3aeda9b2009-06-11 13:07:29 +01003242 if (pnp_irq_valid(dev, 0) &&
3243 !(pnp_irq_flags(dev, 0) & IORESOURCE_DISABLED)) {
3244 irq = pnp_irq(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 } else
3246 irq = PARPORT_IRQ_NONE;
3247
Alan Cox3aeda9b2009-06-11 13:07:29 +01003248 if (pnp_dma_valid(dev, 0) &&
3249 !(pnp_dma_flags(dev, 0) & IORESOURCE_DISABLED)) {
3250 dma = pnp_dma(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 } else
3252 dma = PARPORT_DMA_NONE;
3253
David Brownellc15a3832007-05-08 00:27:35 -07003254 dev_info(&dev->dev, "reported by %s\n", dev->protocol->name);
Alan Cox3aeda9b2009-06-11 13:07:29 +01003255 pdata = parport_pc_probe_port(io_lo, io_hi, irq, dma, &dev->dev, 0);
3256 if (pdata == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 return -ENODEV;
3258
Alan Cox3aeda9b2009-06-11 13:07:29 +01003259 pnp_set_drvdata(dev, pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 return 0;
3261}
3262
3263static void parport_pc_pnp_remove(struct pnp_dev *dev)
3264{
3265 struct parport *pdata = (struct parport *)pnp_get_drvdata(dev);
3266 if (!pdata)
3267 return;
3268
3269 parport_pc_unregister_port(pdata);
3270}
3271
3272/* we only need the pnp layer to activate the device, at least for now */
3273static struct pnp_driver parport_pc_pnp_driver = {
3274 .name = "parport_pc",
3275 .id_table = parport_pc_pnp_tbl,
3276 .probe = parport_pc_pnp_probe,
3277 .remove = parport_pc_pnp_remove,
3278};
3279
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07003280#else
3281static struct pnp_driver parport_pc_pnp_driver;
3282#endif /* CONFIG_PNP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Jean Delvarea7d801a2007-05-08 00:27:40 -07003284static int __devinit parport_pc_platform_probe(struct platform_device *pdev)
3285{
3286 /* Always succeed, the actual probing is done in
3287 * parport_pc_probe_port(). */
3288 return 0;
3289}
3290
3291static struct platform_driver parport_pc_platform_driver = {
3292 .driver = {
3293 .owner = THIS_MODULE,
3294 .name = "parport_pc",
3295 },
3296 .probe = parport_pc_platform_probe,
3297};
3298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299/* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */
3300static int __devinit __attribute__((unused))
Alan Cox3aeda9b2009-06-11 13:07:29 +01003301parport_pc_find_isa_ports(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302{
3303 int count = 0;
3304
Alan Cox51dcdfe2009-04-07 15:30:57 +01003305 if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003307 if (parport_pc_probe_port(0x378, 0x778, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003309 if (parport_pc_probe_port(0x278, 0x678, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 count++;
3311
3312 return count;
3313}
3314
3315/* This function is called by parport_pc_init if the user didn't
3316 * specify any ports to probe. Its job is to find some ports. Order
3317 * is important here -- we want ISA ports to be registered first,
3318 * followed by PCI cards (for least surprise), but before that we want
3319 * to do chipset-specific tests for some onboard ports that we know
3320 * about.
3321 *
3322 * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY
3323 * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO
3324 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01003325static void __init parport_pc_find_ports(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326{
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003327 int count = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
3329#ifdef CONFIG_PARPORT_PC_SUPERIO
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003330 detect_and_report_it87();
3331 detect_and_report_winbond();
3332 detect_and_report_smsc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333#endif
3334
3335 /* Onboard SuperIO chipsets that show themselves on the PCI bus. */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003336 count += parport_pc_init_superio(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
3338 /* PnP ports, skip detection if SuperIO already found them */
3339 if (!count) {
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003340 err = pnp_register_driver(&parport_pc_pnp_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003341 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 pnp_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 }
3344
3345 /* ISA ports and whatever (see asm/parport.h). */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003346 parport_pc_find_nonpci_ports(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003348 err = pci_register_driver(&parport_pc_pci_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003349 if (!err)
3350 pci_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351}
3352
3353/*
3354 * Piles of crap below pretend to be a parser for module and kernel
3355 * parameters. Say "thank you" to whoever had come up with that
3356 * syntax and keep in mind that code below is a cleaned up version.
3357 */
3358
Alan Cox3aeda9b2009-06-11 13:07:29 +01003359static int __initdata io[PARPORT_PC_MAX_PORTS+1] = {
3360 [0 ... PARPORT_PC_MAX_PORTS] = 0
3361};
3362static int __initdata io_hi[PARPORT_PC_MAX_PORTS+1] = {
3363 [0 ... PARPORT_PC_MAX_PORTS] = PARPORT_IOHI_AUTO
3364};
3365static int __initdata dmaval[PARPORT_PC_MAX_PORTS] = {
3366 [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_DMA_NONE
3367};
3368static int __initdata irqval[PARPORT_PC_MAX_PORTS] = {
3369 [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_IRQ_PROBEONLY
3370};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
3372static int __init parport_parse_param(const char *s, int *val,
3373 int automatic, int none, int nofifo)
3374{
3375 if (!s)
3376 return 0;
3377 if (!strncmp(s, "auto", 4))
3378 *val = automatic;
3379 else if (!strncmp(s, "none", 4))
3380 *val = none;
3381 else if (nofifo && !strncmp(s, "nofifo", 4))
3382 *val = nofifo;
3383 else {
3384 char *ep;
3385 unsigned long r = simple_strtoul(s, &ep, 0);
3386 if (ep != s)
3387 *val = r;
3388 else {
3389 printk(KERN_ERR "parport: bad specifier `%s'\n", s);
3390 return -1;
3391 }
3392 }
3393 return 0;
3394}
3395
3396static int __init parport_parse_irq(const char *irqstr, int *val)
3397{
3398 return parport_parse_param(irqstr, val, PARPORT_IRQ_AUTO,
3399 PARPORT_IRQ_NONE, 0);
3400}
3401
3402static int __init parport_parse_dma(const char *dmastr, int *val)
3403{
3404 return parport_parse_param(dmastr, val, PARPORT_DMA_AUTO,
3405 PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO);
3406}
3407
3408#ifdef CONFIG_PCI
3409static int __init parport_init_mode_setup(char *str)
3410{
Alan Cox3aeda9b2009-06-11 13:07:29 +01003411 printk(KERN_DEBUG
3412 "parport_pc.c: Specified parameter parport_init_mode=%s\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Alan Cox3aeda9b2009-06-11 13:07:29 +01003414 if (!strcmp(str, "spp"))
3415 parport_init_mode = 1;
3416 if (!strcmp(str, "ps2"))
3417 parport_init_mode = 2;
3418 if (!strcmp(str, "epp"))
3419 parport_init_mode = 3;
3420 if (!strcmp(str, "ecp"))
3421 parport_init_mode = 4;
3422 if (!strcmp(str, "ecpepp"))
3423 parport_init_mode = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 return 1;
3425}
3426#endif
3427
3428#ifdef MODULE
3429static const char *irq[PARPORT_PC_MAX_PORTS];
3430static const char *dma[PARPORT_PC_MAX_PORTS];
3431
3432MODULE_PARM_DESC(io, "Base I/O address (SPP regs)");
3433module_param_array(io, int, NULL, 0);
3434MODULE_PARM_DESC(io_hi, "Base I/O address (ECR)");
3435module_param_array(io_hi, int, NULL, 0);
3436MODULE_PARM_DESC(irq, "IRQ line");
3437module_param_array(irq, charp, NULL, 0);
3438MODULE_PARM_DESC(dma, "DMA channel");
3439module_param_array(dma, charp, NULL, 0);
3440#if defined(CONFIG_PARPORT_PC_SUPERIO) || \
3441 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
3442MODULE_PARM_DESC(verbose_probing, "Log chit-chat during initialisation");
3443module_param(verbose_probing, int, 0644);
3444#endif
3445#ifdef CONFIG_PCI
3446static char *init_mode;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003447MODULE_PARM_DESC(init_mode,
3448 "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449module_param(init_mode, charp, 0);
3450#endif
3451
3452static int __init parse_parport_params(void)
3453{
3454 unsigned int i;
3455 int val;
3456
3457#ifdef CONFIG_PCI
3458 if (init_mode)
3459 parport_init_mode_setup(init_mode);
3460#endif
3461
3462 for (i = 0; i < PARPORT_PC_MAX_PORTS && io[i]; i++) {
3463 if (parport_parse_irq(irq[i], &val))
3464 return 1;
3465 irqval[i] = val;
3466 if (parport_parse_dma(dma[i], &val))
3467 return 1;
3468 dmaval[i] = val;
3469 }
3470 if (!io[0]) {
3471 /* The user can make us use any IRQs or DMAs we find. */
3472 if (irq[0] && !parport_parse_irq(irq[0], &val))
3473 switch (val) {
3474 case PARPORT_IRQ_NONE:
3475 case PARPORT_IRQ_AUTO:
3476 irqval[0] = val;
3477 break;
3478 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01003479 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 "parport_pc: irq specified "
3481 "without base address. Use 'io=' "
3482 "to specify one\n");
3483 }
3484
3485 if (dma[0] && !parport_parse_dma(dma[0], &val))
3486 switch (val) {
3487 case PARPORT_DMA_NONE:
3488 case PARPORT_DMA_AUTO:
3489 dmaval[0] = val;
3490 break;
3491 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01003492 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 "parport_pc: dma specified "
3494 "without base address. Use 'io=' "
3495 "to specify one\n");
3496 }
3497 }
3498 return 0;
3499}
3500
3501#else
3502
Alan Cox3aeda9b2009-06-11 13:07:29 +01003503static int parport_setup_ptr __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
3505/*
3506 * Acceptable parameters:
3507 *
3508 * parport=0
3509 * parport=auto
3510 * parport=0xBASE[,IRQ[,DMA]]
3511 *
3512 * IRQ/DMA may be numeric or 'auto' or 'none'
3513 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01003514static int __init parport_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515{
3516 char *endptr;
3517 char *sep;
3518 int val;
3519
3520 if (!str || !*str || (*str == '0' && !*(str+1))) {
3521 /* Disable parport if "parport=0" in cmdline */
3522 io[0] = PARPORT_DISABLE;
3523 return 1;
3524 }
3525
Alan Cox3aeda9b2009-06-11 13:07:29 +01003526 if (!strncmp(str, "auto", 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 irqval[0] = PARPORT_IRQ_AUTO;
3528 dmaval[0] = PARPORT_DMA_AUTO;
3529 return 1;
3530 }
3531
Alan Cox3aeda9b2009-06-11 13:07:29 +01003532 val = simple_strtoul(str, &endptr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 if (endptr == str) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01003534 printk(KERN_WARNING "parport=%s not understood\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 return 1;
3536 }
3537
3538 if (parport_setup_ptr == PARPORT_PC_MAX_PORTS) {
3539 printk(KERN_ERR "parport=%s ignored, too many ports\n", str);
3540 return 1;
3541 }
3542
3543 io[parport_setup_ptr] = val;
3544 irqval[parport_setup_ptr] = PARPORT_IRQ_NONE;
3545 dmaval[parport_setup_ptr] = PARPORT_DMA_NONE;
3546
3547 sep = strchr(str, ',');
3548 if (sep++) {
3549 if (parport_parse_irq(sep, &val))
3550 return 1;
3551 irqval[parport_setup_ptr] = val;
3552 sep = strchr(sep, ',');
3553 if (sep++) {
3554 if (parport_parse_dma(sep, &val))
3555 return 1;
3556 dmaval[parport_setup_ptr] = val;
3557 }
3558 }
3559 parport_setup_ptr++;
3560 return 1;
3561}
3562
3563static int __init parse_parport_params(void)
3564{
3565 return io[0] == PARPORT_DISABLE;
3566}
3567
Alan Cox3aeda9b2009-06-11 13:07:29 +01003568__setup("parport=", parport_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
3570/*
3571 * Acceptable parameters:
3572 *
3573 * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
3574 */
3575#ifdef CONFIG_PCI
Alan Cox3aeda9b2009-06-11 13:07:29 +01003576__setup("parport_init_mode=", parport_init_mode_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577#endif
3578#endif
3579
3580/* "Parser" ends here */
3581
3582static int __init parport_pc_init(void)
3583{
Jean Delvarea7d801a2007-05-08 00:27:40 -07003584 int err;
3585
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 if (parse_parport_params())
3587 return -EINVAL;
3588
Jean Delvarea7d801a2007-05-08 00:27:40 -07003589 err = platform_driver_register(&parport_pc_platform_driver);
3590 if (err)
3591 return err;
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 if (io[0]) {
3594 int i;
3595 /* Only probe the ports we were given. */
3596 user_specified = 1;
3597 for (i = 0; i < PARPORT_PC_MAX_PORTS; i++) {
3598 if (!io[i])
3599 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003600 if (io_hi[i] == PARPORT_IOHI_AUTO)
3601 io_hi[i] = 0x400 + io[i];
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003602 parport_pc_probe_port(io[i], io_hi[i],
Alan Cox3aeda9b2009-06-11 13:07:29 +01003603 irqval[i], dmaval[i], NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 }
3605 } else
Alan Cox3aeda9b2009-06-11 13:07:29 +01003606 parport_pc_find_ports(irqval[0], dmaval[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
3608 return 0;
3609}
3610
3611static void __exit parport_pc_exit(void)
3612{
3613 if (pci_registered_parport)
Alan Cox3aeda9b2009-06-11 13:07:29 +01003614 pci_unregister_driver(&parport_pc_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 if (pnp_registered_parport)
Alan Cox3aeda9b2009-06-11 13:07:29 +01003616 pnp_unregister_driver(&parport_pc_pnp_driver);
Jean Delvarea7d801a2007-05-08 00:27:40 -07003617 platform_driver_unregister(&parport_pc_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 while (!list_empty(&ports_list)) {
3620 struct parport_pc_private *priv;
3621 struct parport *port;
3622 priv = list_entry(ports_list.next,
3623 struct parport_pc_private, list);
3624 port = priv->port;
Jean Delvarea7d801a2007-05-08 00:27:40 -07003625 if (port->dev && port->dev->bus == &platform_bus_type)
3626 platform_device_unregister(
3627 to_platform_device(port->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 parport_pc_unregister_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630}
3631
3632MODULE_AUTHOR("Phil Blundell, Tim Waugh, others");
3633MODULE_DESCRIPTION("PC-style parallel port driver");
3634MODULE_LICENSE("GPL");
3635module_init(parport_pc_init)
3636module_exit(parport_pc_exit)