blob: 5abffe58a9d2108c2e4fc8aa66ef39fc7bcfee33 [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}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#endif /* FIFO support */
201
202/*
203 * Clear TIMEOUT BIT in EPP MODE
204 *
205 * This is also used in SPP detection.
206 */
207static int clear_epp_timeout(struct parport *pb)
208{
209 unsigned char r;
210
211 if (!(parport_pc_read_status(pb) & 0x01))
212 return 1;
213
214 /* To clear timeout some chips require double read */
215 parport_pc_read_status(pb);
216 r = parport_pc_read_status(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100217 outb(r | 0x01, STATUS(pb)); /* Some reset by writing 1 */
218 outb(r & 0xfe, STATUS(pb)); /* Others by writing 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 r = parport_pc_read_status(pb);
220
221 return !(r & 0x01);
222}
223
224/*
225 * Access functions.
226 *
227 * Most of these aren't static because they may be used by the
228 * parport_xxx_yyy macros. extern __inline__ versions of several
229 * of these are in parport_pc.h.
230 */
231
Alan Cox3aeda9b2009-06-11 13:07:29 +0100232static void parport_pc_init_state(struct pardevice *dev,
233 struct parport_state *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 s->u.pc.ctr = 0xc;
236 if (dev->irq_func &&
237 dev->port->irq != PARPORT_IRQ_NONE)
238 /* Set ackIntEn */
239 s->u.pc.ctr |= 0x10;
240
241 s->u.pc.ecr = 0x34; /* NetMos chip can cause problems 0x24;
242 * D.Gruszka VScom */
243}
244
245static void parport_pc_save_state(struct parport *p, struct parport_state *s)
246{
247 const struct parport_pc_private *priv = p->physport->private_data;
248 s->u.pc.ctr = priv->ctr;
249 if (priv->ecr)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100250 s->u.pc.ecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Alan Cox3aeda9b2009-06-11 13:07:29 +0100253static void parport_pc_restore_state(struct parport *p,
254 struct parport_state *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct parport_pc_private *priv = p->physport->private_data;
257 register unsigned char c = s->u.pc.ctr & priv->ctr_writable;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100258 outb(c, CONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 priv->ctr = c;
260 if (priv->ecr)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100261 ECR_WRITE(p, s->u.pc.ecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
264#ifdef CONFIG_PARPORT_1284
Alan Cox3aeda9b2009-06-11 13:07:29 +0100265static size_t parport_pc_epp_read_data(struct parport *port, void *buf,
266 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 size_t got = 0;
269
270 if (flags & PARPORT_W91284PIC) {
271 unsigned char status;
272 size_t left = length;
273
274 /* use knowledge about data lines..:
275 * nFault is 0 if there is at least 1 byte in the Warp's FIFO
276 * pError is 1 if there are 16 bytes in the Warp's FIFO
277 */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100278 status = inb(STATUS(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Alan Cox3aeda9b2009-06-11 13:07:29 +0100280 while (!(status & 0x08) && got < length) {
281 if (left >= 16 && (status & 0x20) && !(status & 0x08)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* can grab 16 bytes from warp fifo */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100283 if (!((long)buf & 0x03))
284 insl(EPPDATA(port), buf, 4);
285 else
286 insb(EPPDATA(port), buf, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 buf += 16;
288 got += 16;
289 left -= 16;
290 } else {
291 /* grab single byte from the warp fifo */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100292 *((char *)buf) = inb(EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 buf++;
294 got++;
295 left--;
296 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100297 status = inb(STATUS(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (status & 0x01) {
299 /* EPP timeout should never occur... */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100300 printk(KERN_DEBUG
301"%s: EPP timeout occurred while talking to w91284pic (should not have done)\n", port->name);
302 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304 }
305 return got;
306 }
307 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100308 if (!(((long)buf | length) & 0x03))
309 insl(EPPDATA(port), buf, (length >> 2));
310 else
311 insb(EPPDATA(port), buf, length);
312 if (inb(STATUS(port)) & 0x01) {
313 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return -EIO;
315 }
316 return length;
317 }
318 for (; got < length; got++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100319 *((char *)buf) = inb(EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100321 if (inb(STATUS(port)) & 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* EPP timeout */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100323 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 break;
325 }
326 }
327
328 return got;
329}
330
Alan Cox3aeda9b2009-06-11 13:07:29 +0100331static size_t parport_pc_epp_write_data(struct parport *port, const void *buf,
332 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 size_t written = 0;
335
336 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100337 if (!(((long)buf | length) & 0x03))
338 outsl(EPPDATA(port), buf, (length >> 2));
339 else
340 outsb(EPPDATA(port), buf, length);
341 if (inb(STATUS(port)) & 0x01) {
342 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return -EIO;
344 }
345 return length;
346 }
347 for (; written < length; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100348 outb(*((char *)buf), EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100350 if (inb(STATUS(port)) & 0x01) {
351 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 break;
353 }
354 }
355
356 return written;
357}
358
Alan Cox3aeda9b2009-06-11 13:07:29 +0100359static size_t parport_pc_epp_read_addr(struct parport *port, void *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 size_t length, int flags)
361{
362 size_t got = 0;
363
364 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100365 insb(EPPADDR(port), buf, length);
366 if (inb(STATUS(port)) & 0x01) {
367 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return -EIO;
369 }
370 return length;
371 }
372 for (; got < length; got++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100373 *((char *)buf) = inb(EPPADDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100375 if (inb(STATUS(port)) & 0x01) {
376 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 break;
378 }
379 }
380
381 return got;
382}
383
Alan Cox3aeda9b2009-06-11 13:07:29 +0100384static size_t parport_pc_epp_write_addr(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 const void *buf, size_t length,
386 int flags)
387{
388 size_t written = 0;
389
390 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100391 outsb(EPPADDR(port), buf, length);
392 if (inb(STATUS(port)) & 0x01) {
393 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -EIO;
395 }
396 return length;
397 }
398 for (; written < length; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100399 outb(*((char *)buf), EPPADDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100401 if (inb(STATUS(port)) & 0x01) {
402 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 break;
404 }
405 }
406
407 return written;
408}
409
Alan Cox3aeda9b2009-06-11 13:07:29 +0100410static size_t parport_pc_ecpepp_read_data(struct parport *port, void *buf,
411 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 size_t got;
414
Alan Cox3aeda9b2009-06-11 13:07:29 +0100415 frob_set_mode(port, ECR_EPP);
416 parport_pc_data_reverse(port);
417 parport_pc_write_control(port, 0x4);
418 got = parport_pc_epp_read_data(port, buf, length, flags);
419 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 return got;
422}
423
Alan Cox3aeda9b2009-06-11 13:07:29 +0100424static size_t parport_pc_ecpepp_write_data(struct parport *port,
425 const void *buf, size_t length,
426 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 size_t written;
429
Alan Cox3aeda9b2009-06-11 13:07:29 +0100430 frob_set_mode(port, ECR_EPP);
431 parport_pc_write_control(port, 0x4);
432 parport_pc_data_forward(port);
433 written = parport_pc_epp_write_data(port, buf, length, flags);
434 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 return written;
437}
438
Alan Cox3aeda9b2009-06-11 13:07:29 +0100439static size_t parport_pc_ecpepp_read_addr(struct parport *port, void *buf,
440 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 size_t got;
443
Alan Cox3aeda9b2009-06-11 13:07:29 +0100444 frob_set_mode(port, ECR_EPP);
445 parport_pc_data_reverse(port);
446 parport_pc_write_control(port, 0x4);
447 got = parport_pc_epp_read_addr(port, buf, length, flags);
448 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 return got;
451}
452
Alan Cox3aeda9b2009-06-11 13:07:29 +0100453static size_t parport_pc_ecpepp_write_addr(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 const void *buf, size_t length,
455 int flags)
456{
457 size_t written;
458
Alan Cox3aeda9b2009-06-11 13:07:29 +0100459 frob_set_mode(port, ECR_EPP);
460 parport_pc_write_control(port, 0x4);
461 parport_pc_data_forward(port);
462 written = parport_pc_epp_write_addr(port, buf, length, flags);
463 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 return written;
466}
467#endif /* IEEE 1284 support */
468
469#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +0100470static size_t parport_pc_fifo_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 const void *buf, size_t length)
472{
473 int ret = 0;
474 const unsigned char *bufp = buf;
475 size_t left = length;
476 unsigned long expire = jiffies + port->physport->cad->timeout;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100477 const int fifo = FIFO(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int poll_for = 8; /* 80 usecs */
479 const struct parport_pc_private *priv = port->physport->private_data;
480 const int fifo_depth = priv->fifo_depth;
481
482 port = port->physport;
483
484 /* We don't want to be interrupted every character. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100485 parport_pc_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /* set nErrIntrEn and serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100487 frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 /* Forward mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100490 parport_pc_data_forward(port); /* Must be in PS2 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 while (left) {
493 unsigned char byte;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100494 unsigned char ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 int i = 0;
496
Alan Cox3aeda9b2009-06-11 13:07:29 +0100497 if (need_resched() && time_before(jiffies, expire))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /* Can't yield the port. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100499 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /* Anyone else waiting for the port? */
502 if (port->waithead) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100503 printk(KERN_DEBUG "Somebody wants the port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505 }
506
507 if (ecrval & 0x02) {
508 /* FIFO is full. Wait for interrupt. */
509
510 /* Clear serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100511 ECR_WRITE(port, ecrval & ~(1<<2));
512false_alarm:
513 ret = parport_wait_event(port, HZ);
514 if (ret < 0)
515 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 ret = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100517 if (!time_before(jiffies, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Timed out. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100519 printk(KERN_DEBUG "FIFO write timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100522 ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (!(ecrval & (1<<2))) {
524 if (need_resched() &&
Alan Cox3aeda9b2009-06-11 13:07:29 +0100525 time_before(jiffies, expire))
526 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 goto false_alarm;
529 }
530
531 continue;
532 }
533
534 /* Can't fail now. */
535 expire = jiffies + port->cad->timeout;
536
Alan Cox3aeda9b2009-06-11 13:07:29 +0100537poll:
538 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 break;
540
541 if (ecrval & 0x01) {
542 /* FIFO is empty. Blast it full. */
543 const int n = left < fifo_depth ? left : fifo_depth;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100544 outsb(fifo, bufp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 bufp += n;
546 left -= n;
547
548 /* Adjust the poll time. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100549 if (i < (poll_for - 2))
550 poll_for--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 continue;
552 } else if (i++ < poll_for) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100553 udelay(10);
554 ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto poll;
556 }
557
Alan Cox3aeda9b2009-06-11 13:07:29 +0100558 /* Half-full(call me an optimist) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 byte = *bufp++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100560 outb(byte, fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 left--;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100562 }
563 dump_parport_state("leave fifo_write_block_pio", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return length - left;
565}
566
Al Viro7fbacd52005-05-04 05:39:32 +0100567#ifdef HAS_DMA
Alan Cox3aeda9b2009-06-11 13:07:29 +0100568static size_t parport_pc_fifo_write_block_dma(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 const void *buf, size_t length)
570{
571 int ret = 0;
572 unsigned long dmaflag;
573 size_t left = length;
574 const struct parport_pc_private *priv = port->physport->private_data;
David Brownellc15a3832007-05-08 00:27:35 -0700575 struct device *dev = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 dma_addr_t dma_addr, dma_handle;
577 size_t maxlen = 0x10000; /* max 64k per DMA transfer */
578 unsigned long start = (unsigned long) buf;
579 unsigned long end = (unsigned long) buf + length - 1;
580
Alan Cox181bf1e2009-06-11 13:08:10 +0100581 dump_parport_state("enter fifo_write_block_dma", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (end < MAX_DMA_ADDRESS) {
583 /* If it would cross a 64k boundary, cap it at the end. */
584 if ((start ^ end) & ~0xffffUL)
585 maxlen = 0x10000 - (start & 0xffff);
586
David Brownellc15a3832007-05-08 00:27:35 -0700587 dma_addr = dma_handle = dma_map_single(dev, (void *)buf, length,
588 DMA_TO_DEVICE);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100589 } else {
590 /* above 16 MB we use a bounce buffer as ISA-DMA
591 is not possible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 maxlen = PAGE_SIZE; /* sizeof(priv->dma_buf) */
593 dma_addr = priv->dma_handle;
594 dma_handle = 0;
595 }
596
597 port = port->physport;
598
599 /* We don't want to be interrupted every character. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100600 parport_pc_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 /* set nErrIntrEn and serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100602 frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 /* Forward mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100605 parport_pc_data_forward(port); /* Must be in PS2 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 while (left) {
608 unsigned long expire = jiffies + port->physport->cad->timeout;
609
610 size_t count = left;
611
612 if (count > maxlen)
613 count = maxlen;
614
615 if (!dma_handle) /* bounce buffer ! */
616 memcpy(priv->dma_buf, buf, count);
617
618 dmaflag = claim_dma_lock();
619 disable_dma(port->dma);
620 clear_dma_ff(port->dma);
621 set_dma_mode(port->dma, DMA_MODE_WRITE);
622 set_dma_addr(port->dma, dma_addr);
623 set_dma_count(port->dma, count);
624
625 /* Set DMA mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100626 frob_econtrol(port, 1<<3, 1<<3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 /* Clear serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100629 frob_econtrol(port, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 enable_dma(port->dma);
632 release_dma_lock(dmaflag);
633
634 /* assume DMA will be successful */
635 left -= count;
636 buf += count;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100637 if (dma_handle)
638 dma_addr += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 /* Wait for interrupt. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100641false_alarm:
642 ret = parport_wait_event(port, HZ);
643 if (ret < 0)
644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ret = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100646 if (!time_before(jiffies, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* Timed out. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100648 printk(KERN_DEBUG "DMA write timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
650 }
651 /* Is serviceIntr set? */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100652 if (!(inb(ECONTROL(port)) & (1<<2))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 cond_resched();
654
655 goto false_alarm;
656 }
657
658 dmaflag = claim_dma_lock();
659 disable_dma(port->dma);
660 clear_dma_ff(port->dma);
661 count = get_dma_residue(port->dma);
662 release_dma_lock(dmaflag);
663
664 cond_resched(); /* Can't yield the port. */
665
666 /* Anyone else waiting for the port? */
667 if (port->waithead) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100668 printk(KERN_DEBUG "Somebody wants the port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
670 }
671
672 /* update for possible DMA residue ! */
673 buf -= count;
674 left += count;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100675 if (dma_handle)
676 dma_addr -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
679 /* Maybe got here through break, so adjust for DMA residue! */
680 dmaflag = claim_dma_lock();
681 disable_dma(port->dma);
682 clear_dma_ff(port->dma);
683 left += get_dma_residue(port->dma);
684 release_dma_lock(dmaflag);
685
686 /* Turn off DMA mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100687 frob_econtrol(port, 1<<3, 0);
David Brownellc15a3832007-05-08 00:27:35 -0700688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (dma_handle)
David Brownellc15a3832007-05-08 00:27:35 -0700690 dma_unmap_single(dev, dma_handle, length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Alan Cox181bf1e2009-06-11 13:08:10 +0100692 dump_parport_state("leave fifo_write_block_dma", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return length - left;
694}
Al Viro7fbacd52005-05-04 05:39:32 +0100695#endif
696
697static inline size_t parport_pc_fifo_write_block(struct parport *port,
698 const void *buf, size_t length)
699{
700#ifdef HAS_DMA
701 if (port->dma != PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100702 return parport_pc_fifo_write_block_dma(port, buf, length);
Al Viro7fbacd52005-05-04 05:39:32 +0100703#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +0100704 return parport_pc_fifo_write_block_pio(port, buf, length);
Al Viro7fbacd52005-05-04 05:39:32 +0100705}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707/* Parallel Port FIFO mode (ECP chipsets) */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100708static size_t parport_pc_compat_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 const void *buf, size_t length,
710 int flags)
711{
712 size_t written;
713 int r;
714 unsigned long expire;
715 const struct parport_pc_private *priv = port->physport->private_data;
716
717 /* Special case: a timeout of zero means we cannot call schedule().
718 * Also if O_NONBLOCK is set then use the default implementation. */
719 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100720 return parport_ieee1284_write_compat(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 length, flags);
722
723 /* Set up parallel port FIFO mode.*/
Alan Cox3aeda9b2009-06-11 13:07:29 +0100724 parport_pc_data_forward(port); /* Must be in PS2 mode */
725 parport_pc_frob_control(port, PARPORT_CONTROL_STROBE, 0);
726 r = change_mode(port, ECR_PPF); /* Parallel port FIFO */
727 if (r)
728 printk(KERN_DEBUG "%s: Warning change_mode ECR_PPF failed\n",
729 port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
732
733 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100734 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /* Finish up. */
737 /* For some hardware we don't want to touch the mode until
738 * the FIFO is empty, so allow 4 seconds for each position
739 * in the fifo.
740 */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100741 expire = jiffies + (priv->fifo_depth * HZ * 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 do {
743 /* Wait for the FIFO to empty */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100744 r = change_mode(port, ECR_PS2);
745 if (r != -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100747 } while (time_before(jiffies, expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 if (r == -EBUSY) {
749
Alan Cox3aeda9b2009-06-11 13:07:29 +0100750 printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 /* Prevent further data transfer. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100753 frob_set_mode(port, ECR_TST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /* Adjust for the contents of the FIFO. */
756 for (written -= priv->fifo_depth; ; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100757 if (inb(ECONTROL(port)) & 0x2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 /* Full up. */
759 break;
760 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100761 outb(0, FIFO(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763
764 /* Reset the FIFO and return to PS2 mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100765 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
Alan Cox3aeda9b2009-06-11 13:07:29 +0100768 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 PARPORT_STATUS_BUSY,
770 PARPORT_STATUS_BUSY);
771 if (r)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100772 printk(KERN_DEBUG
773 "%s: BUSY timeout (%d) in compat_write_block_pio\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 port->name, r);
775
776 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
777
778 return written;
779}
780
781/* ECP */
782#ifdef CONFIG_PARPORT_1284
Alan Cox3aeda9b2009-06-11 13:07:29 +0100783static size_t parport_pc_ecp_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 const void *buf, size_t length,
785 int flags)
786{
787 size_t written;
788 int r;
789 unsigned long expire;
790 const struct parport_pc_private *priv = port->physport->private_data;
791
792 /* Special case: a timeout of zero means we cannot call schedule().
793 * Also if O_NONBLOCK is set then use the default implementation. */
794 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100795 return parport_ieee1284_ecp_write_data(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 length, flags);
797
798 /* Switch to forward mode if necessary. */
799 if (port->physport->ieee1284.phase != IEEE1284_PH_FWD_IDLE) {
800 /* Event 47: Set nInit high. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100801 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 PARPORT_CONTROL_INIT
803 | PARPORT_CONTROL_AUTOFD,
804 PARPORT_CONTROL_INIT
805 | PARPORT_CONTROL_AUTOFD);
806
807 /* Event 49: PError goes high. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100808 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 PARPORT_STATUS_PAPEROUT,
810 PARPORT_STATUS_PAPEROUT);
811 if (r) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100812 printk(KERN_DEBUG "%s: PError timeout (%d) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 "in ecp_write_block_pio\n", port->name, r);
814 }
815 }
816
817 /* Set up ECP parallel port mode.*/
Alan Cox3aeda9b2009-06-11 13:07:29 +0100818 parport_pc_data_forward(port); /* Must be in PS2 mode */
819 parport_pc_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 PARPORT_CONTROL_STROBE |
821 PARPORT_CONTROL_AUTOFD,
822 0);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100823 r = change_mode(port, ECR_ECP); /* ECP FIFO */
824 if (r)
825 printk(KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n",
826 port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
828
829 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100830 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* Finish up. */
833 /* For some hardware we don't want to touch the mode until
834 * the FIFO is empty, so allow 4 seconds for each position
835 * in the fifo.
836 */
837 expire = jiffies + (priv->fifo_depth * (HZ * 4));
838 do {
839 /* Wait for the FIFO to empty */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100840 r = change_mode(port, ECR_PS2);
841 if (r != -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100843 } while (time_before(jiffies, expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (r == -EBUSY) {
845
Alan Cox3aeda9b2009-06-11 13:07:29 +0100846 printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Prevent further data transfer. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100849 frob_set_mode(port, ECR_TST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 /* Adjust for the contents of the FIFO. */
852 for (written -= priv->fifo_depth; ; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100853 if (inb(ECONTROL(port)) & 0x2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /* Full up. */
855 break;
856 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100857 outb(0, FIFO(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
860 /* Reset the FIFO and return to PS2 mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100861 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 /* Host transfer recovery. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100864 parport_pc_data_reverse(port); /* Must be in PS2 mode */
865 udelay(5);
866 parport_frob_control(port, PARPORT_CONTROL_INIT, 0);
867 r = parport_wait_peripheral(port, PARPORT_STATUS_PAPEROUT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (r)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100869 printk(KERN_DEBUG "%s: PE,1 timeout (%d) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 "in ecp_write_block_pio\n", port->name, r);
871
Alan Cox3aeda9b2009-06-11 13:07:29 +0100872 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 PARPORT_CONTROL_INIT,
874 PARPORT_CONTROL_INIT);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100875 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 PARPORT_STATUS_PAPEROUT,
877 PARPORT_STATUS_PAPEROUT);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100878 if (r)
879 printk(KERN_DEBUG "%s: PE,2 timeout (%d) "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 "in ecp_write_block_pio\n", port->name, r);
881 }
882
Alan Cox3aeda9b2009-06-11 13:07:29 +0100883 r = parport_wait_peripheral(port,
884 PARPORT_STATUS_BUSY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 PARPORT_STATUS_BUSY);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100886 if (r)
887 printk(KERN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 "%s: BUSY timeout (%d) in ecp_write_block_pio\n",
889 port->name, r);
890
891 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
892
893 return written;
894}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#endif /* IEEE 1284 support */
896#endif /* Allowed to use FIFO/DMA */
897
898
899/*
900 * ******************************************
901 * INITIALISATION AND MODULE STUFF BELOW HERE
902 * ******************************************
903 */
904
905/* GCC is not inlining extern inline function later overwriten to non-inline,
906 so we use outlined_ variants here. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100907static const struct parport_operations parport_pc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 .write_data = parport_pc_write_data,
909 .read_data = parport_pc_read_data,
910
911 .write_control = parport_pc_write_control,
912 .read_control = parport_pc_read_control,
913 .frob_control = parport_pc_frob_control,
914
915 .read_status = parport_pc_read_status,
916
917 .enable_irq = parport_pc_enable_irq,
918 .disable_irq = parport_pc_disable_irq,
919
920 .data_forward = parport_pc_data_forward,
921 .data_reverse = parport_pc_data_reverse,
922
923 .init_state = parport_pc_init_state,
924 .save_state = parport_pc_save_state,
925 .restore_state = parport_pc_restore_state,
926
927 .epp_write_data = parport_ieee1284_epp_write_data,
928 .epp_read_data = parport_ieee1284_epp_read_data,
929 .epp_write_addr = parport_ieee1284_epp_write_addr,
930 .epp_read_addr = parport_ieee1284_epp_read_addr,
931
932 .ecp_write_data = parport_ieee1284_ecp_write_data,
933 .ecp_read_data = parport_ieee1284_ecp_read_data,
934 .ecp_write_addr = parport_ieee1284_ecp_write_addr,
935
936 .compat_write_data = parport_ieee1284_write_compat,
937 .nibble_read_data = parport_ieee1284_read_nibble,
938 .byte_read_data = parport_ieee1284_read_byte,
939
940 .owner = THIS_MODULE,
941};
942
943#ifdef CONFIG_PARPORT_PC_SUPERIO
Alan Cox181bf1e2009-06-11 13:08:10 +0100944
945static struct superio_struct *find_free_superio(void)
946{
947 int i;
948 for (i = 0; i < NR_SUPERIOS; i++)
949 if (superios[i].io == 0)
950 return &superios[i];
951 return NULL;
952}
953
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955/* Super-IO chipset detection, Winbond, SMSC */
956static void __devinit show_parconfig_smsc37c669(int io, int key)
957{
Alan Cox181bf1e2009-06-11 13:08:10 +0100958 int cr1, cr4, cra, cr23, cr26, cr27;
959 struct superio_struct *s;
960
Alan Cox3aeda9b2009-06-11 13:07:29 +0100961 static const char *const modes[] = {
Marko Kohtalaa6767b72006-01-06 00:19:48 -0800962 "SPP and Bidirectional (PS/2)",
963 "EPP and SPP",
964 "ECP",
965 "ECP and EPP" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Alan Cox3aeda9b2009-06-11 13:07:29 +0100967 outb(key, io);
968 outb(key, io);
969 outb(1, io);
970 cr1 = inb(io + 1);
971 outb(4, io);
972 cr4 = inb(io + 1);
973 outb(0x0a, io);
974 cra = inb(io + 1);
975 outb(0x23, io);
976 cr23 = inb(io + 1);
977 outb(0x26, io);
978 cr26 = inb(io + 1);
979 outb(0x27, io);
980 cr27 = inb(io + 1);
981 outb(0xaa, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 if (verbose_probing) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100984 printk(KERN_INFO
985 "SMSC 37c669 LPT Config: cr_1=0x%02x, 4=0x%02x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 "A=0x%2x, 23=0x%02x, 26=0x%02x, 27=0x%02x\n",
Alan Cox3aeda9b2009-06-11 13:07:29 +0100987 cr1, cr4, cra, cr23, cr26, cr27);
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* The documentation calls DMA and IRQ-Lines by letters, so
990 the board maker can/will wire them
991 appropriately/randomly... G=reserved H=IDE-irq, */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100992 printk(KERN_INFO
993 "SMSC LPT Config: io=0x%04x, irq=%c, dma=%c, fifo threshold=%d\n",
994 cr23 * 4,
995 (cr27 & 0x0f) ? 'A' - 1 + (cr27 & 0x0f) : '-',
996 (cr26 & 0x0f) ? 'A' - 1 + (cr26 & 0x0f) : '-',
997 cra & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 printk(KERN_INFO "SMSC LPT Config: enabled=%s power=%s\n",
Alan Cox3aeda9b2009-06-11 13:07:29 +0100999 (cr23 * 4 >= 0x100) ? "yes" : "no",
1000 (cr1 & 4) ? "yes" : "no");
1001 printk(KERN_INFO
1002 "SMSC LPT Config: Port mode=%s, EPP version =%s\n",
1003 (cr1 & 0x08) ? "Standard mode only (SPP)"
1004 : modes[cr4 & 0x03],
1005 (cr4 & 0x40) ? "1.7" : "1.9");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Michael Buesch73e0d482009-06-11 13:06:31 +01001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /* Heuristics ! BIOS setup for this mainboard device limits
1009 the choices to standard settings, i.e. io-address and IRQ
1010 are related, however DMA can be 1 or 3, assume DMA_A=DMA1,
1011 DMA_C=DMA3 (this is true e.g. for TYAN 1564D Tomcat IV) */
Michael Buesch73e0d482009-06-11 13:06:31 +01001012 if (cr23 * 4 >= 0x100) { /* if active */
Alan Cox181bf1e2009-06-11 13:08:10 +01001013 s = find_free_superio();
1014 if (s == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 printk(KERN_INFO "Super-IO: too many chips!\n");
Alan Cox181bf1e2009-06-11 13:08:10 +01001016 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 int d;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001018 switch (cr23 * 4) {
1019 case 0x3bc:
Alan Cox181bf1e2009-06-11 13:08:10 +01001020 s->io = 0x3bc;
1021 s->irq = 7;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001022 break;
1023 case 0x378:
Alan Cox181bf1e2009-06-11 13:08:10 +01001024 s->io = 0x378;
1025 s->irq = 7;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001026 break;
1027 case 0x278:
Alan Cox181bf1e2009-06-11 13:08:10 +01001028 s->io = 0x278;
1029 s->irq = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001031 d = (cr26 & 0x0f);
1032 if (d == 1 || d == 3)
Alan Cox181bf1e2009-06-11 13:08:10 +01001033 s->dma = d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 else
Alan Cox181bf1e2009-06-11 13:08:10 +01001035 s->dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040
1041static void __devinit show_parconfig_winbond(int io, int key)
1042{
Alan Cox181bf1e2009-06-11 13:08:10 +01001043 int cr30, cr60, cr61, cr70, cr74, crf0;
1044 struct superio_struct *s;
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001045 static const char *const modes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 "Standard (SPP) and Bidirectional(PS/2)", /* 0 */
1047 "EPP-1.9 and SPP",
1048 "ECP",
1049 "ECP and EPP-1.9",
1050 "Standard (SPP)",
1051 "EPP-1.7 and SPP", /* 5 */
1052 "undefined!",
1053 "ECP and EPP-1.7" };
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001054 static char *const irqtypes[] = {
1055 "pulsed low, high-Z",
1056 "follows nACK" };
Alan Cox3aeda9b2009-06-11 13:07:29 +01001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* The registers are called compatible-PnP because the
Alan Cox3aeda9b2009-06-11 13:07:29 +01001059 register layout is modelled after ISA-PnP, the access
1060 method is just another ... */
1061 outb(key, io);
1062 outb(key, io);
1063 outb(0x07, io); /* Register 7: Select Logical Device */
1064 outb(0x01, io + 1); /* LD1 is Parallel Port */
1065 outb(0x30, io);
1066 cr30 = inb(io + 1);
1067 outb(0x60, io);
1068 cr60 = inb(io + 1);
1069 outb(0x61, io);
1070 cr61 = inb(io + 1);
1071 outb(0x70, io);
1072 cr70 = inb(io + 1);
1073 outb(0x74, io);
1074 cr74 = inb(io + 1);
1075 outb(0xf0, io);
1076 crf0 = inb(io + 1);
1077 outb(0xaa, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 if (verbose_probing) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001080 printk(KERN_INFO
1081 "Winbond LPT Config: cr_30=%02x 60,61=%02x%02x 70=%02x 74=%02x, f0=%02x\n",
1082 cr30, cr60, cr61, cr70, cr74, crf0);
1083 printk(KERN_INFO "Winbond LPT Config: active=%s, io=0x%02x%02x irq=%d, ",
1084 (cr30 & 0x01) ? "yes" : "no", cr60, cr61, cr70 & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if ((cr74 & 0x07) > 3)
1086 printk("dma=none\n");
1087 else
Alan Cox3aeda9b2009-06-11 13:07:29 +01001088 printk("dma=%d\n", cr74 & 0x07);
1089 printk(KERN_INFO
1090 "Winbond LPT Config: irqtype=%s, ECP fifo threshold=%d\n",
1091 irqtypes[crf0>>7], (crf0>>3)&0x0f);
1092 printk(KERN_INFO "Winbond LPT Config: Port mode=%s\n",
1093 modes[crf0 & 0x07]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
Michael Buesch73e0d482009-06-11 13:06:31 +01001096 if (cr30 & 0x01) { /* the settings can be interrogated later ... */
Alan Cox181bf1e2009-06-11 13:08:10 +01001097 s = find_free_superio();
1098 if (s == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 printk(KERN_INFO "Super-IO: too many chips!\n");
Alan Cox181bf1e2009-06-11 13:08:10 +01001100 else {
1101 s->io = (cr60 << 8) | cr61;
1102 s->irq = cr70 & 0x0f;
1103 s->dma = (((cr74 & 0x07) > 3) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 PARPORT_DMA_NONE : (cr74 & 0x07));
1105 }
1106 }
1107}
1108
Alan Cox3aeda9b2009-06-11 13:07:29 +01001109static void __devinit decode_winbond(int efer, int key, int devid,
1110 int devrev, int oldid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 const char *type = "unknown";
Alan Cox3aeda9b2009-06-11 13:07:29 +01001113 int id, progif = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 if (devid == devrev)
1116 /* simple heuristics, we happened to read some
Alan Cox3aeda9b2009-06-11 13:07:29 +01001117 non-winbond register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return;
1119
Alan Cox3aeda9b2009-06-11 13:07:29 +01001120 id = (devid << 8) | devrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 /* Values are from public data sheets pdf files, I can just
Alan Cox3aeda9b2009-06-11 13:07:29 +01001123 confirm 83977TF is correct :-) */
1124 if (id == 0x9771)
1125 type = "83977F/AF";
1126 else if (id == 0x9773)
1127 type = "83977TF / SMSC 97w33x/97w34x";
1128 else if (id == 0x9774)
1129 type = "83977ATF";
1130 else if ((id & ~0x0f) == 0x5270)
1131 type = "83977CTF / SMSC 97w36x";
1132 else if ((id & ~0x0f) == 0x52f0)
1133 type = "83977EF / SMSC 97w35x";
1134 else if ((id & ~0x0f) == 0x5210)
1135 type = "83627";
1136 else if ((id & ~0x0f) == 0x6010)
1137 type = "83697HF";
1138 else if ((oldid & 0x0f) == 0x0a) {
1139 type = "83877F";
1140 progif = 1;
1141 } else if ((oldid & 0x0f) == 0x0b) {
1142 type = "83877AF";
1143 progif = 1;
1144 } else if ((oldid & 0x0f) == 0x0c) {
1145 type = "83877TF";
1146 progif = 1;
1147 } else if ((oldid & 0x0f) == 0x0d) {
1148 type = "83877ATF";
1149 progif = 1;
1150 } else
1151 progif = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 if (verbose_probing)
1154 printk(KERN_INFO "Winbond chip at EFER=0x%x key=0x%02x "
Alan Cox3aeda9b2009-06-11 13:07:29 +01001155 "devid=%02x devrev=%02x oldid=%02x type=%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 efer, key, devid, devrev, oldid, type);
1157
1158 if (progif == 2)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001159 show_parconfig_winbond(efer, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
1162static void __devinit decode_smsc(int efer, int key, int devid, int devrev)
1163{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001164 const char *type = "unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 void (*func)(int io, int key);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001166 int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Alan Cox3aeda9b2009-06-11 13:07:29 +01001168 if (devid == devrev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /* simple heuristics, we happened to read some
Alan Cox3aeda9b2009-06-11 13:07:29 +01001170 non-smsc register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return;
1172
Alan Cox3aeda9b2009-06-11 13:07:29 +01001173 func = NULL;
1174 id = (devid << 8) | devrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Alan Cox3aeda9b2009-06-11 13:07:29 +01001176 if (id == 0x0302) {
1177 type = "37c669";
1178 func = show_parconfig_smsc37c669;
1179 } else if (id == 0x6582)
1180 type = "37c665IR";
1181 else if (devid == 0x65)
1182 type = "37c665GT";
1183 else if (devid == 0x66)
1184 type = "37c666GT";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 if (verbose_probing)
1187 printk(KERN_INFO "SMSC chip at EFER=0x%x "
1188 "key=0x%02x devid=%02x devrev=%02x type=%s\n",
1189 efer, key, devid, devrev, type);
1190
1191 if (func)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001192 func(efer, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
1195
1196static void __devinit winbond_check(int io, int key)
1197{
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001198 int origval, devid, devrev, oldid, x_devid, x_devrev, x_oldid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Harvey Harrison145980a2008-04-30 00:54:57 -07001200 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return;
1202
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001203 origval = inb(io); /* Save original value */
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 /* First probe without key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001206 outb(0x20, io);
1207 x_devid = inb(io + 1);
1208 outb(0x21, io);
1209 x_devrev = inb(io + 1);
1210 outb(0x09, io);
1211 x_oldid = inb(io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Alan Cox3aeda9b2009-06-11 13:07:29 +01001213 outb(key, io);
1214 outb(key, io); /* Write Magic Sequence to EFER, extended
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001215 function enable register */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001216 outb(0x20, io); /* Write EFIR, extended function index register */
1217 devid = inb(io + 1); /* Read EFDR, extended function data register */
1218 outb(0x21, io);
1219 devrev = inb(io + 1);
1220 outb(0x09, io);
1221 oldid = inb(io + 1);
1222 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001224 outb(origval, io); /* in case we poked some entirely different hardware */
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if ((x_devid == devid) && (x_devrev == devrev) && (x_oldid == oldid))
1227 goto out; /* protection against false positives */
1228
Alan Cox3aeda9b2009-06-11 13:07:29 +01001229 decode_winbond(io, key, devid, devrev, oldid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230out:
1231 release_region(io, 3);
1232}
1233
Alan Cox3aeda9b2009-06-11 13:07:29 +01001234static void __devinit winbond_check2(int io, int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001236 int origval[3], devid, devrev, oldid, x_devid, x_devrev, x_oldid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Harvey Harrison145980a2008-04-30 00:54:57 -07001238 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return;
1240
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001241 origval[0] = inb(io); /* Save original values */
1242 origval[1] = inb(io + 1);
1243 origval[2] = inb(io + 2);
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /* First probe without the key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001246 outb(0x20, io + 2);
1247 x_devid = inb(io + 2);
1248 outb(0x21, io + 1);
1249 x_devrev = inb(io + 2);
1250 outb(0x09, io + 1);
1251 x_oldid = inb(io + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Alan Cox3aeda9b2009-06-11 13:07:29 +01001253 outb(key, io); /* Write Magic Byte to EFER, extended
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001254 function enable register */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001255 outb(0x20, io + 2); /* Write EFIR, extended function index register */
1256 devid = inb(io + 2); /* Read EFDR, extended function data register */
1257 outb(0x21, io + 1);
1258 devrev = inb(io + 2);
1259 outb(0x09, io + 1);
1260 oldid = inb(io + 2);
1261 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001263 outb(origval[0], io); /* in case we poked some entirely different hardware */
1264 outb(origval[1], io + 1);
1265 outb(origval[2], io + 2);
1266
Alan Cox3aeda9b2009-06-11 13:07:29 +01001267 if (x_devid == devid && x_devrev == devrev && x_oldid == oldid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 goto out; /* protection against false positives */
1269
Alan Cox3aeda9b2009-06-11 13:07:29 +01001270 decode_winbond(io, key, devid, devrev, oldid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271out:
1272 release_region(io, 3);
1273}
1274
1275static void __devinit smsc_check(int io, int key)
1276{
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001277 int origval, id, rev, oldid, oldrev, x_id, x_rev, x_oldid, x_oldrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Harvey Harrison145980a2008-04-30 00:54:57 -07001279 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return;
1281
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001282 origval = inb(io); /* Save original value */
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /* First probe without the key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001285 outb(0x0d, io);
1286 x_oldid = inb(io + 1);
1287 outb(0x0e, io);
1288 x_oldrev = inb(io + 1);
1289 outb(0x20, io);
1290 x_id = inb(io + 1);
1291 outb(0x21, io);
1292 x_rev = inb(io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Alan Cox3aeda9b2009-06-11 13:07:29 +01001294 outb(key, io);
1295 outb(key, io); /* Write Magic Sequence to EFER, extended
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001296 function enable register */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001297 outb(0x0d, io); /* Write EFIR, extended function index register */
1298 oldid = inb(io + 1); /* Read EFDR, extended function data register */
1299 outb(0x0e, io);
1300 oldrev = inb(io + 1);
1301 outb(0x20, io);
1302 id = inb(io + 1);
1303 outb(0x21, io);
1304 rev = inb(io + 1);
1305 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001307 outb(origval, io); /* in case we poked some entirely different hardware */
1308
Alan Cox3aeda9b2009-06-11 13:07:29 +01001309 if (x_id == id && x_oldrev == oldrev &&
1310 x_oldid == oldid && x_rev == rev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 goto out; /* protection against false positives */
1312
Alan Cox3aeda9b2009-06-11 13:07:29 +01001313 decode_smsc(io, key, oldid, oldrev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314out:
1315 release_region(io, 3);
1316}
1317
1318
Alan Cox3aeda9b2009-06-11 13:07:29 +01001319static void __devinit detect_and_report_winbond(void)
1320{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (verbose_probing)
1322 printk(KERN_DEBUG "Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001323 winbond_check(0x3f0, 0x87);
1324 winbond_check(0x370, 0x87);
1325 winbond_check(0x2e , 0x87);
1326 winbond_check(0x4e , 0x87);
1327 winbond_check(0x3f0, 0x86);
1328 winbond_check2(0x250, 0x88);
1329 winbond_check2(0x250, 0x89);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Alan Cox3aeda9b2009-06-11 13:07:29 +01001332static void __devinit detect_and_report_smsc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 if (verbose_probing)
1335 printk(KERN_DEBUG "SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001336 smsc_check(0x3f0, 0x55);
1337 smsc_check(0x370, 0x55);
1338 smsc_check(0x3f0, 0x44);
1339 smsc_check(0x370, 0x44);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001341
1342static void __devinit detect_and_report_it87(void)
1343{
1344 u16 dev;
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001345 u8 origval, r;
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001346 if (verbose_probing)
1347 printk(KERN_DEBUG "IT8705 Super-IO detection, now testing port 2E ...\n");
Alan Cox868d17212011-05-04 10:18:42 +01001348 if (!request_muxed_region(0x2e, 2, __func__))
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001349 return;
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001350 origval = inb(0x2e); /* Save original value */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001351 outb(0x87, 0x2e);
1352 outb(0x01, 0x2e);
1353 outb(0x55, 0x2e);
1354 outb(0x55, 0x2e);
1355 outb(0x20, 0x2e);
1356 dev = inb(0x2f) << 8;
1357 outb(0x21, 0x2e);
1358 dev |= inb(0x2f);
1359 if (dev == 0x8712 || dev == 0x8705 || dev == 0x8715 ||
1360 dev == 0x8716 || dev == 0x8718 || dev == 0x8726) {
1361 printk(KERN_INFO "IT%04X SuperIO detected.\n", dev);
1362 outb(0x07, 0x2E); /* Parallel Port */
1363 outb(0x03, 0x2F);
1364 outb(0xF0, 0x2E); /* BOOT 0x80 off */
1365 r = inb(0x2f);
1366 outb(0xF0, 0x2E);
1367 outb(r | 8, 0x2F);
1368 outb(0x02, 0x2E); /* Lock */
1369 outb(0x02, 0x2F);
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001370 } else {
1371 outb(origval, 0x2e); /* Oops, sorry to disturb */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001372 }
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001373 release_region(0x2e, 2);
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001374}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375#endif /* CONFIG_PARPORT_PC_SUPERIO */
1376
Alan Cox181bf1e2009-06-11 13:08:10 +01001377static struct superio_struct *find_superio(struct parport *p)
1378{
1379 int i;
1380 for (i = 0; i < NR_SUPERIOS; i++)
1381 if (superios[i].io != p->base)
1382 return &superios[i];
1383 return NULL;
1384}
1385
Alan Cox3aeda9b2009-06-11 13:07:29 +01001386static int get_superio_dma(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Alan Cox181bf1e2009-06-11 13:08:10 +01001388 struct superio_struct *s = find_superio(p);
1389 if (s)
1390 return s->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return PARPORT_DMA_NONE;
1392}
1393
Alan Cox3aeda9b2009-06-11 13:07:29 +01001394static int get_superio_irq(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Alan Cox181bf1e2009-06-11 13:08:10 +01001396 struct superio_struct *s = find_superio(p);
1397 if (s)
1398 return s->irq;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001399 return PARPORT_IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
Michael Buesch73e0d482009-06-11 13:06:31 +01001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403/* --- Mode detection ------------------------------------- */
1404
1405/*
1406 * Checks for port existence, all ports support SPP MODE
Alan Cox3aeda9b2009-06-11 13:07:29 +01001407 * Returns:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 * 0 : No parallel port at this address
Alan Cox3aeda9b2009-06-11 13:07:29 +01001409 * PARPORT_MODE_PCSPP : SPP port detected
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 * (if the user specified an ioport himself,
1411 * this shall always be the case!)
1412 *
1413 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001414static int parport_SPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 unsigned char r, w;
1417
1418 /*
Alan Cox3aeda9b2009-06-11 13:07:29 +01001419 * first clear an eventually pending EPP timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
1421 * that does not even respond to SPP cycles if an EPP
1422 * timeout is pending
1423 */
1424 clear_epp_timeout(pb);
1425
1426 /* Do a simple read-write test to make sure the port exists. */
1427 w = 0xc;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001428 outb(w, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 /* Is there a control register that we can read from? Some
1431 * ports don't allow reads, so read_control just returns a
1432 * software copy. Some ports _do_ allow reads, so bypass the
1433 * software copy here. In addition, some bits aren't
1434 * writable. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001435 r = inb(CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if ((r & 0xf) == w) {
1437 w = 0xe;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001438 outb(w, CONTROL(pb));
1439 r = inb(CONTROL(pb));
1440 outb(0xc, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if ((r & 0xf) == w)
1442 return PARPORT_MODE_PCSPP;
1443 }
1444
1445 if (user_specified)
1446 /* That didn't work, but the user thinks there's a
1447 * port here. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001448 printk(KERN_INFO "parport 0x%lx (WARNING): CTR: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
1450
1451 /* Try the data register. The data lines aren't tri-stated at
1452 * this stage, so we expect back what we wrote. */
1453 w = 0xaa;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001454 parport_pc_write_data(pb, w);
1455 r = parport_pc_read_data(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (r == w) {
1457 w = 0x55;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001458 parport_pc_write_data(pb, w);
1459 r = parport_pc_read_data(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (r == w)
1461 return PARPORT_MODE_PCSPP;
1462 }
1463
1464 if (user_specified) {
1465 /* Didn't work, but the user is convinced this is the
1466 * place. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001467 printk(KERN_INFO "parport 0x%lx (WARNING): DATA: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 "wrote 0x%02x, read 0x%02x\n", pb->base, w, r);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001469 printk(KERN_INFO "parport 0x%lx: You gave this address, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 "but there is probably no parallel port there!\n",
1471 pb->base);
1472 }
1473
1474 /* It's possible that we can't read the control register or
1475 * the data register. In that case just believe the user. */
1476 if (user_specified)
1477 return PARPORT_MODE_PCSPP;
1478
1479 return 0;
1480}
1481
1482/* Check for ECR
1483 *
1484 * Old style XT ports alias io ports every 0x400, hence accessing ECR
1485 * on these cards actually accesses the CTR.
1486 *
1487 * Modern cards don't do this but reading from ECR will return 0xff
1488 * regardless of what is written here if the card does NOT support
1489 * ECP.
1490 *
1491 * We first check to see if ECR is the same as CTR. If not, the low
1492 * two bits of ECR aren't writable, so we check by writing ECR and
1493 * reading it back to see if it's what we expect.
1494 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001495static int parport_ECR_present(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
1497 struct parport_pc_private *priv = pb->private_data;
1498 unsigned char r = 0xc;
1499
Alan Cox3aeda9b2009-06-11 13:07:29 +01001500 outb(r, CONTROL(pb));
1501 if ((inb(ECONTROL(pb)) & 0x3) == (r & 0x3)) {
1502 outb(r ^ 0x2, CONTROL(pb)); /* Toggle bit 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Alan Cox3aeda9b2009-06-11 13:07:29 +01001504 r = inb(CONTROL(pb));
1505 if ((inb(ECONTROL(pb)) & 0x2) == (r & 0x2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 goto no_reg; /* Sure that no ECR register exists */
1507 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001508
1509 if ((inb(ECONTROL(pb)) & 0x3) != 0x1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 goto no_reg;
1511
Alan Cox3aeda9b2009-06-11 13:07:29 +01001512 ECR_WRITE(pb, 0x34);
1513 if (inb(ECONTROL(pb)) != 0x35)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 goto no_reg;
1515
1516 priv->ecr = 1;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001517 outb(0xc, CONTROL(pb));
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /* Go to mode 000 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001520 frob_set_mode(pb, ECR_SPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 return 1;
1523
1524 no_reg:
Alan Cox3aeda9b2009-06-11 13:07:29 +01001525 outb(0xc, CONTROL(pb));
1526 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
1529#ifdef CONFIG_PARPORT_1284
1530/* Detect PS/2 support.
1531 *
1532 * Bit 5 (0x20) sets the PS/2 data direction; setting this high
1533 * allows us to read data from the data lines. In theory we would get back
1534 * 0xff but any peripheral attached to the port may drag some or all of the
1535 * lines down to zero. So if we get back anything that isn't the contents
Alan Cox3aeda9b2009-06-11 13:07:29 +01001536 * of the data register we deem PS/2 support to be present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 *
1538 * Some SPP ports have "half PS/2" ability - you can't turn off the line
1539 * drivers, but an external peripheral with sufficiently beefy drivers of
1540 * its own can overpower them and assert its own levels onto the bus, from
1541 * where they can then be read back as normal. Ports with this property
1542 * and the right type of device attached are likely to fail the SPP test,
1543 * (as they will appear to have stuck bits) and so the fact that they might
Alan Cox3aeda9b2009-06-11 13:07:29 +01001544 * be misdetected here is rather academic.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 */
1546
Randy.Dunlap96766a32006-04-18 22:21:57 -07001547static int parport_PS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 int ok = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 clear_epp_timeout(pb);
1552
1553 /* try to tri-state the buffer */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001554 parport_pc_data_reverse(pb);
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 parport_pc_write_data(pb, 0x55);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001557 if (parport_pc_read_data(pb) != 0x55)
1558 ok++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 parport_pc_write_data(pb, 0xaa);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001561 if (parport_pc_read_data(pb) != 0xaa)
1562 ok++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 /* cancel input mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001565 parport_pc_data_forward(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 if (ok) {
1568 pb->modes |= PARPORT_MODE_TRISTATE;
1569 } else {
1570 struct parport_pc_private *priv = pb->private_data;
1571 priv->ctr_writable &= ~0x20;
1572 }
1573
1574 return ok;
1575}
1576
1577#ifdef CONFIG_PARPORT_PC_FIFO
David Brownell55265b02008-02-13 15:03:21 -08001578static int parport_ECP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 int i;
1581 int config, configb;
1582 int pword;
1583 struct parport_pc_private *priv = pb->private_data;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001584 /* Translate ECP intrLine to ISA irq value */
1585 static const int intrline[] = { 0, 7, 9, 10, 11, 14, 15, 5 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /* If there is no ECR, we have no hope of supporting ECP. */
1588 if (!priv->ecr)
1589 return 0;
1590
1591 /* Find out FIFO depth */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001592 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1593 ECR_WRITE(pb, ECR_TST << 5); /* TEST FIFO */
1594 for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02); i++)
1595 outb(0xaa, FIFO(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 /*
1598 * Using LGS chipset it uses ECR register, but
1599 * it doesn't support ECP or FIFO MODE
1600 */
1601 if (i == 1024) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001602 ECR_WRITE(pb, ECR_SPP << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return 0;
1604 }
1605
1606 priv->fifo_depth = i;
1607 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001608 printk(KERN_DEBUG "0x%lx: FIFO is %d bytes\n", pb->base, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 /* Find out writeIntrThreshold */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001611 frob_econtrol(pb, 1<<2, 1<<2);
1612 frob_econtrol(pb, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 for (i = 1; i <= priv->fifo_depth; i++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001614 inb(FIFO(pb));
1615 udelay(50);
1616 if (inb(ECONTROL(pb)) & (1<<2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 break;
1618 }
1619
1620 if (i <= priv->fifo_depth) {
1621 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001622 printk(KERN_DEBUG "0x%lx: writeIntrThreshold is %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 pb->base, i);
1624 } else
1625 /* Number of bytes we know we can write if we get an
Alan Cox3aeda9b2009-06-11 13:07:29 +01001626 interrupt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 i = 0;
1628
1629 priv->writeIntrThreshold = i;
1630
1631 /* Find out readIntrThreshold */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001632 frob_set_mode(pb, ECR_PS2); /* Reset FIFO and enable PS2 */
1633 parport_pc_data_reverse(pb); /* Must be in PS2 mode */
1634 frob_set_mode(pb, ECR_TST); /* Test FIFO */
1635 frob_econtrol(pb, 1<<2, 1<<2);
1636 frob_econtrol(pb, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 for (i = 1; i <= priv->fifo_depth; i++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001638 outb(0xaa, FIFO(pb));
1639 if (inb(ECONTROL(pb)) & (1<<2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 break;
1641 }
1642
1643 if (i <= priv->fifo_depth) {
1644 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001645 printk(KERN_INFO "0x%lx: readIntrThreshold is %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 pb->base, i);
1647 } else
1648 /* Number of bytes we can read if we get an interrupt. */
1649 i = 0;
1650
1651 priv->readIntrThreshold = i;
1652
Alan Cox3aeda9b2009-06-11 13:07:29 +01001653 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1654 ECR_WRITE(pb, 0xf4); /* Configuration mode */
1655 config = inb(CONFIGA(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 pword = (config >> 4) & 0x7;
1657 switch (pword) {
1658 case 0:
1659 pword = 2;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001660 printk(KERN_WARNING "0x%lx: Unsupported pword size!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 pb->base);
1662 break;
1663 case 2:
1664 pword = 4;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001665 printk(KERN_WARNING "0x%lx: Unsupported pword size!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 pb->base);
1667 break;
1668 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01001669 printk(KERN_WARNING "0x%lx: Unknown implementation ID\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 pb->base);
1671 /* Assume 1 */
1672 case 1:
1673 pword = 1;
1674 }
1675 priv->pword = pword;
1676
1677 if (verbose_probing) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001678 printk(KERN_DEBUG "0x%lx: PWord is %d bits\n",
1679 pb->base, 8 * pword);
1680
1681 printk(KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n", pb->base,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 config & 0x80 ? "Level" : "Pulses");
1683
Alan Cox3aeda9b2009-06-11 13:07:29 +01001684 configb = inb(CONFIGB(pb));
1685 printk(KERN_DEBUG "0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 pb->base, config, configb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001687 printk(KERN_DEBUG "0x%lx: ECP settings irq=", pb->base);
1688 if ((configb >> 3) & 0x07)
1689 printk("%d", intrline[(configb >> 3) & 0x07]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 else
1691 printk("<none or set by other means>");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001692 printk(" dma=");
1693 if ((configb & 0x03) == 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 printk("<none or set by other means>\n");
1695 else
Alan Cox3aeda9b2009-06-11 13:07:29 +01001696 printk("%d\n", configb & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698
1699 /* Go back to mode 000 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001700 frob_set_mode(pb, ECR_SPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 return 1;
1703}
1704#endif
1705
Randy.Dunlap96766a32006-04-18 22:21:57 -07001706static int parport_ECPPS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
1708 const struct parport_pc_private *priv = pb->private_data;
1709 int result;
1710 unsigned char oecr;
1711
1712 if (!priv->ecr)
1713 return 0;
1714
Alan Cox3aeda9b2009-06-11 13:07:29 +01001715 oecr = inb(ECONTROL(pb));
1716 ECR_WRITE(pb, ECR_PS2 << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 result = parport_PS2_supported(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001718 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return result;
1720}
1721
1722/* EPP mode detection */
1723
Randy.Dunlap96766a32006-04-18 22:21:57 -07001724static int parport_EPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
1726 const struct parport_pc_private *priv = pb->private_data;
1727
1728 /*
1729 * Theory:
1730 * Bit 0 of STR is the EPP timeout bit, this bit is 0
1731 * when EPP is possible and is set high when an EPP timeout
1732 * occurs (EPP uses the HALT line to stop the CPU while it does
1733 * the byte transfer, an EPP timeout occurs if the attached
1734 * device fails to respond after 10 micro seconds).
1735 *
1736 * This bit is cleared by either reading it (National Semi)
1737 * or writing a 1 to the bit (SMC, UMC, WinBond), others ???
1738 * This bit is always high in non EPP modes.
1739 */
1740
1741 /* If EPP timeout bit clear then EPP available */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001742 if (!clear_epp_timeout(pb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return 0; /* No way to clear timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 /* Check for Intel bug. */
1746 if (priv->ecr) {
1747 unsigned char i;
1748 for (i = 0x00; i < 0x80; i += 0x20) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001749 ECR_WRITE(pb, i);
1750 if (clear_epp_timeout(pb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 /* Phony EPP in ECP. */
1752 return 0;
1753 }
1754 }
1755 }
1756
1757 pb->modes |= PARPORT_MODE_EPP;
1758
1759 /* Set up access functions to use EPP hardware. */
1760 pb->ops->epp_read_data = parport_pc_epp_read_data;
1761 pb->ops->epp_write_data = parport_pc_epp_write_data;
1762 pb->ops->epp_read_addr = parport_pc_epp_read_addr;
1763 pb->ops->epp_write_addr = parport_pc_epp_write_addr;
1764
1765 return 1;
1766}
1767
Randy.Dunlap96766a32006-04-18 22:21:57 -07001768static int parport_ECPEPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
1770 struct parport_pc_private *priv = pb->private_data;
1771 int result;
1772 unsigned char oecr;
1773
Alan Cox3aeda9b2009-06-11 13:07:29 +01001774 if (!priv->ecr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Alan Cox3aeda9b2009-06-11 13:07:29 +01001777 oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 /* Search for SMC style EPP+ECP mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001779 ECR_WRITE(pb, 0x80);
1780 outb(0x04, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 result = parport_EPP_supported(pb);
1782
Alan Cox3aeda9b2009-06-11 13:07:29 +01001783 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 if (result) {
1786 /* Set up access functions to use ECP+EPP hardware. */
1787 pb->ops->epp_read_data = parport_pc_ecpepp_read_data;
1788 pb->ops->epp_write_data = parport_pc_ecpepp_write_data;
1789 pb->ops->epp_read_addr = parport_pc_ecpepp_read_addr;
1790 pb->ops->epp_write_addr = parport_pc_ecpepp_write_addr;
1791 }
1792
1793 return result;
1794}
1795
1796#else /* No IEEE 1284 support */
1797
1798/* Don't bother probing for modes we know we won't use. */
1799static int __devinit parport_PS2_supported(struct parport *pb) { return 0; }
1800#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +01001801static int parport_ECP_supported(struct parport *pb)
1802{
1803 return 0;
1804}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +01001806static int __devinit parport_EPP_supported(struct parport *pb)
1807{
1808 return 0;
1809}
1810
1811static int __devinit parport_ECPEPP_supported(struct parport *pb)
1812{
1813 return 0;
1814}
1815
1816static int __devinit parport_ECPPS2_supported(struct parport *pb)
1817{
1818 return 0;
1819}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821#endif /* No IEEE 1284 support */
1822
1823/* --- IRQ detection -------------------------------------- */
1824
1825/* Only if supports ECP mode */
Randy Dunlap44389822006-12-06 20:38:33 -08001826static int programmable_irq_support(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
1828 int irq, intrLine;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001829 unsigned char oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 static const int lookup[8] = {
1831 PARPORT_IRQ_NONE, 7, 9, 10, 11, 14, 15, 5
1832 };
1833
Alan Cox3aeda9b2009-06-11 13:07:29 +01001834 ECR_WRITE(pb, ECR_CNF << 5); /* Configuration MODE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Alan Cox3aeda9b2009-06-11 13:07:29 +01001836 intrLine = (inb(CONFIGB(pb)) >> 3) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 irq = lookup[intrLine];
1838
Alan Cox3aeda9b2009-06-11 13:07:29 +01001839 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return irq;
1841}
1842
Randy Dunlap44389822006-12-06 20:38:33 -08001843static int irq_probe_ECP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
1845 int i;
1846 unsigned long irqs;
1847
1848 irqs = probe_irq_on();
Alan Cox3aeda9b2009-06-11 13:07:29 +01001849
1850 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1851 ECR_WRITE(pb, (ECR_TST << 5) | 0x04);
1852 ECR_WRITE(pb, ECR_TST << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 /* If Full FIFO sure that writeIntrThreshold is generated */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001855 for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02) ; i++)
1856 outb(0xaa, FIFO(pb));
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 pb->irq = probe_irq_off(irqs);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001859 ECR_WRITE(pb, ECR_SPP << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 if (pb->irq <= 0)
1862 pb->irq = PARPORT_IRQ_NONE;
1863
1864 return pb->irq;
1865}
1866
1867/*
1868 * This detection seems that only works in National Semiconductors
Alan Cox3aeda9b2009-06-11 13:07:29 +01001869 * This doesn't work in SMC, LGS, and Winbond
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 */
Randy Dunlap44389822006-12-06 20:38:33 -08001871static int irq_probe_EPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
1873#ifndef ADVANCED_DETECT
1874 return PARPORT_IRQ_NONE;
1875#else
1876 int irqs;
1877 unsigned char oecr;
1878
1879 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001880 oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 irqs = probe_irq_on();
1883
1884 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001885 frob_econtrol(pb, 0x10, 0x10);
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 clear_epp_timeout(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001888 parport_pc_frob_control(pb, 0x20, 0x20);
1889 parport_pc_frob_control(pb, 0x10, 0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 clear_epp_timeout(pb);
1891
1892 /* Device isn't expecting an EPP read
1893 * and generates an IRQ.
1894 */
1895 parport_pc_read_epp(pb);
1896 udelay(20);
1897
Alan Cox3aeda9b2009-06-11 13:07:29 +01001898 pb->irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001900 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 parport_pc_write_control(pb, 0xc);
1902
1903 if (pb->irq <= 0)
1904 pb->irq = PARPORT_IRQ_NONE;
1905
1906 return pb->irq;
1907#endif /* Advanced detection */
1908}
1909
Randy Dunlap44389822006-12-06 20:38:33 -08001910static int irq_probe_SPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
1912 /* Don't even try to do this. */
1913 return PARPORT_IRQ_NONE;
1914}
1915
1916/* We will attempt to share interrupt requests since other devices
1917 * such as sound cards and network cards seem to like using the
1918 * printer IRQs.
1919 *
1920 * When ECP is available we can autoprobe for IRQs.
1921 * NOTE: If we can autoprobe it, we can register the IRQ.
1922 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001923static int parport_irq_probe(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
1925 struct parport_pc_private *priv = pb->private_data;
1926
1927 if (priv->ecr) {
1928 pb->irq = programmable_irq_support(pb);
1929
1930 if (pb->irq == PARPORT_IRQ_NONE)
1931 pb->irq = irq_probe_ECP(pb);
1932 }
1933
1934 if ((pb->irq == PARPORT_IRQ_NONE) && priv->ecr &&
1935 (pb->modes & PARPORT_MODE_EPP))
1936 pb->irq = irq_probe_EPP(pb);
1937
1938 clear_epp_timeout(pb);
1939
1940 if (pb->irq == PARPORT_IRQ_NONE && (pb->modes & PARPORT_MODE_EPP))
1941 pb->irq = irq_probe_EPP(pb);
1942
1943 clear_epp_timeout(pb);
1944
1945 if (pb->irq == PARPORT_IRQ_NONE)
1946 pb->irq = irq_probe_SPP(pb);
1947
1948 if (pb->irq == PARPORT_IRQ_NONE)
1949 pb->irq = get_superio_irq(pb);
1950
1951 return pb->irq;
1952}
1953
1954/* --- DMA detection -------------------------------------- */
1955
1956/* Only if chipset conforms to ECP ISA Interface Standard */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001957static int programmable_dma_support(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001959 unsigned char oecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 int dma;
1961
Alan Cox3aeda9b2009-06-11 13:07:29 +01001962 frob_set_mode(p, ECR_CNF);
1963
1964 dma = inb(CONFIGB(p)) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /* 000: Indicates jumpered 8-bit DMA if read-only.
1966 100: Indicates jumpered 16-bit DMA if read-only. */
1967 if ((dma & 0x03) == 0)
1968 dma = PARPORT_DMA_NONE;
1969
Alan Cox3aeda9b2009-06-11 13:07:29 +01001970 ECR_WRITE(p, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return dma;
1972}
1973
Alan Cox3aeda9b2009-06-11 13:07:29 +01001974static int parport_dma_probe(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
1976 const struct parport_pc_private *priv = p->private_data;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001977 if (priv->ecr) /* ask ECP chipset first */
1978 p->dma = programmable_dma_support(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 if (p->dma == PARPORT_DMA_NONE) {
1980 /* ask known Super-IO chips proper, although these
1981 claim ECP compatible, some don't report their DMA
1982 conforming to ECP standards */
1983 p->dma = get_superio_dma(p);
1984 }
1985
1986 return p->dma;
1987}
1988
1989/* --- Initialisation code -------------------------------- */
1990
1991static LIST_HEAD(ports_list);
1992static DEFINE_SPINLOCK(ports_lock);
1993
Alan Cox51dcdfe2009-04-07 15:30:57 +01001994struct parport *parport_pc_probe_port(unsigned long int base,
1995 unsigned long int base_hi,
1996 int irq, int dma,
1997 struct device *dev,
1998 int irqflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
2000 struct parport_pc_private *priv;
2001 struct parport_operations *ops;
2002 struct parport *p;
2003 int probedirq = PARPORT_IRQ_NONE;
2004 struct resource *base_res;
2005 struct resource *ECR_res = NULL;
2006 struct resource *EPP_res = NULL;
Jean Delvarea7d801a2007-05-08 00:27:40 -07002007 struct platform_device *pdev = NULL;
2008
2009 if (!dev) {
2010 /* We need a physical device to attach to, but none was
2011 * provided. Create our own. */
2012 pdev = platform_device_register_simple("parport_pc",
2013 base, NULL, 0);
2014 if (IS_ERR(pdev))
2015 return NULL;
2016 dev = &pdev->dev;
FUJITA Tomonoridfa7c4d2009-06-22 16:54:27 +01002017
2018 dev->coherent_dma_mask = DMA_BIT_MASK(24);
2019 dev->dma_mask = &dev->coherent_dma_mask;
Jean Delvarea7d801a2007-05-08 00:27:40 -07002020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Alan Cox51dcdfe2009-04-07 15:30:57 +01002022 ops = kmalloc(sizeof(struct parport_operations), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 if (!ops)
2024 goto out1;
2025
Alan Cox51dcdfe2009-04-07 15:30:57 +01002026 priv = kmalloc(sizeof(struct parport_pc_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (!priv)
2028 goto out2;
2029
2030 /* a misnomer, actually - it's allocate and reserve parport number */
2031 p = parport_register_port(base, irq, dma, ops);
2032 if (!p)
2033 goto out3;
2034
2035 base_res = request_region(base, 3, p->name);
2036 if (!base_res)
2037 goto out4;
2038
Alan Cox3aeda9b2009-06-11 13:07:29 +01002039 memcpy(ops, &parport_pc_ops, sizeof(struct parport_operations));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 priv->ctr = 0xc;
2041 priv->ctr_writable = ~0x10;
2042 priv->ecr = 0;
2043 priv->fifo_depth = 0;
2044 priv->dma_buf = NULL;
2045 priv->dma_handle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 INIT_LIST_HEAD(&priv->list);
2047 priv->port = p;
David Brownellc15a3832007-05-08 00:27:35 -07002048
2049 p->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 p->base_hi = base_hi;
2051 p->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_SAFEININT;
2052 p->private_data = priv;
2053
2054 if (base_hi) {
2055 ECR_res = request_region(base_hi, 3, p->name);
2056 if (ECR_res)
2057 parport_ECR_present(p);
2058 }
2059
2060 if (base != 0x3bc) {
2061 EPP_res = request_region(base+0x3, 5, p->name);
2062 if (EPP_res)
2063 if (!parport_EPP_supported(p))
2064 parport_ECPEPP_supported(p);
2065 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002066 if (!parport_SPP_supported(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 /* No port. */
2068 goto out5;
2069 if (priv->ecr)
2070 parport_ECPPS2_supported(p);
2071 else
2072 parport_PS2_supported(p);
2073
Alan Cox3aeda9b2009-06-11 13:07:29 +01002074 p->size = (p->modes & PARPORT_MODE_EPP) ? 8 : 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 printk(KERN_INFO "%s: PC-style at 0x%lx", p->name, p->base);
2077 if (p->base_hi && priv->ecr)
Kay Sievers2c03ead2012-05-08 13:14:49 +02002078 printk(KERN_CONT " (0x%lx)", p->base_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (p->irq == PARPORT_IRQ_AUTO) {
2080 p->irq = PARPORT_IRQ_NONE;
2081 parport_irq_probe(p);
2082 } else if (p->irq == PARPORT_IRQ_PROBEONLY) {
2083 p->irq = PARPORT_IRQ_NONE;
2084 parport_irq_probe(p);
2085 probedirq = p->irq;
2086 p->irq = PARPORT_IRQ_NONE;
2087 }
2088 if (p->irq != PARPORT_IRQ_NONE) {
Kay Sievers2c03ead2012-05-08 13:14:49 +02002089 printk(KERN_CONT ", irq %d", p->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 priv->ctr_writable |= 0x10;
2091
2092 if (p->dma == PARPORT_DMA_AUTO) {
2093 p->dma = PARPORT_DMA_NONE;
2094 parport_dma_probe(p);
2095 }
2096 }
2097 if (p->dma == PARPORT_DMA_AUTO) /* To use DMA, giving the irq
Alan Cox3aeda9b2009-06-11 13:07:29 +01002098 is mandatory (see above) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 p->dma = PARPORT_DMA_NONE;
2100
2101#ifdef CONFIG_PARPORT_PC_FIFO
2102 if (parport_ECP_supported(p) &&
2103 p->dma != PARPORT_DMA_NOFIFO &&
2104 priv->fifo_depth > 0 && p->irq != PARPORT_IRQ_NONE) {
2105 p->modes |= PARPORT_MODE_ECP | PARPORT_MODE_COMPAT;
2106 p->ops->compat_write_data = parport_pc_compat_write_block_pio;
2107#ifdef CONFIG_PARPORT_1284
2108 p->ops->ecp_write_data = parport_pc_ecp_write_block_pio;
2109 /* currently broken, but working on it.. (FB) */
2110 /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */
2111#endif /* IEEE 1284 support */
2112 if (p->dma != PARPORT_DMA_NONE) {
Kay Sievers2c03ead2012-05-08 13:14:49 +02002113 printk(KERN_CONT ", dma %d", p->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 p->modes |= PARPORT_MODE_DMA;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002115 } else
Kay Sievers2c03ead2012-05-08 13:14:49 +02002116 printk(KERN_CONT ", using FIFO");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002117 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 /* We can't use the DMA channel after all. */
2119 p->dma = PARPORT_DMA_NONE;
2120#endif /* Allowed to use FIFO/DMA */
2121
Kay Sievers2c03ead2012-05-08 13:14:49 +02002122 printk(KERN_CONT " [");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002123
2124#define printmode(x) \
2125 {\
2126 if (p->modes & PARPORT_MODE_##x) {\
Kay Sievers2c03ead2012-05-08 13:14:49 +02002127 printk(KERN_CONT "%s%s", f ? "," : "", #x);\
Alan Cox3aeda9b2009-06-11 13:07:29 +01002128 f++;\
2129 } \
2130 }
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 {
2133 int f = 0;
2134 printmode(PCSPP);
2135 printmode(TRISTATE);
2136 printmode(COMPAT)
2137 printmode(EPP);
2138 printmode(ECP);
2139 printmode(DMA);
2140 }
2141#undef printmode
2142#ifndef CONFIG_PARPORT_1284
Kay Sievers2c03ead2012-05-08 13:14:49 +02002143 printk(KERN_CONT "(,...)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144#endif /* CONFIG_PARPORT_1284 */
Kay Sievers2c03ead2012-05-08 13:14:49 +02002145 printk(KERN_CONT "]\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002146 if (probedirq != PARPORT_IRQ_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 printk(KERN_INFO "%s: irq %d detected\n", p->name, probedirq);
2148
2149 /* If No ECP release the ports grabbed above. */
2150 if (ECR_res && (p->modes & PARPORT_MODE_ECP) == 0) {
2151 release_region(base_hi, 3);
2152 ECR_res = NULL;
2153 }
2154 /* Likewise for EEP ports */
2155 if (EPP_res && (p->modes & PARPORT_MODE_EPP) == 0) {
2156 release_region(base+3, 5);
2157 EPP_res = NULL;
2158 }
2159 if (p->irq != PARPORT_IRQ_NONE) {
Alan Cox51dcdfe2009-04-07 15:30:57 +01002160 if (request_irq(p->irq, parport_irq_handler,
2161 irqflags, p->name, p)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002162 printk(KERN_WARNING "%s: irq %d in use, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 "resorting to polled operation\n",
2164 p->name, p->irq);
2165 p->irq = PARPORT_IRQ_NONE;
2166 p->dma = PARPORT_DMA_NONE;
2167 }
2168
2169#ifdef CONFIG_PARPORT_PC_FIFO
Al Viro7fbacd52005-05-04 05:39:32 +01002170#ifdef HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 if (p->dma != PARPORT_DMA_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002172 if (request_dma(p->dma, p->name)) {
2173 printk(KERN_WARNING "%s: dma %d in use, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 "resorting to PIO operation\n",
2175 p->name, p->dma);
2176 p->dma = PARPORT_DMA_NONE;
2177 } else {
2178 priv->dma_buf =
David Brownellc15a3832007-05-08 00:27:35 -07002179 dma_alloc_coherent(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 PAGE_SIZE,
David Brownellc15a3832007-05-08 00:27:35 -07002181 &priv->dma_handle,
2182 GFP_KERNEL);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002183 if (!priv->dma_buf) {
2184 printk(KERN_WARNING "%s: "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 "cannot get buffer for DMA, "
2186 "resorting to PIO operation\n",
2187 p->name);
2188 free_dma(p->dma);
2189 p->dma = PARPORT_DMA_NONE;
2190 }
2191 }
2192 }
Al Viro7fbacd52005-05-04 05:39:32 +01002193#endif
2194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
2196
2197 /* Done probing. Now put the port into a sensible start-up state. */
2198 if (priv->ecr)
2199 /*
2200 * Put the ECP detected port in PS2 mode.
2201 * Do this also for ports that have ECR but don't do ECP.
2202 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002203 ECR_WRITE(p, 0x34);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
2205 parport_pc_write_data(p, 0);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002206 parport_pc_data_forward(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
2208 /* Now that we've told the sharing engine about the port, and
2209 found out its characteristics, let the high-level drivers
2210 know about it. */
2211 spin_lock(&ports_lock);
2212 list_add(&priv->list, &ports_list);
2213 spin_unlock(&ports_lock);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002214 parport_announce_port(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 return p;
2217
2218out5:
2219 if (ECR_res)
2220 release_region(base_hi, 3);
2221 if (EPP_res)
2222 release_region(base+0x3, 5);
2223 release_region(base, 3);
2224out4:
2225 parport_put_port(p);
2226out3:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002227 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228out2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002229 kfree(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230out1:
Jean Delvarea7d801a2007-05-08 00:27:40 -07002231 if (pdev)
2232 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return NULL;
2234}
Alan Cox3aeda9b2009-06-11 13:07:29 +01002235EXPORT_SYMBOL(parport_pc_probe_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Alan Cox3aeda9b2009-06-11 13:07:29 +01002237void parport_pc_unregister_port(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
2239 struct parport_pc_private *priv = p->private_data;
2240 struct parport_operations *ops = p->ops;
2241
2242 parport_remove_port(p);
2243 spin_lock(&ports_lock);
2244 list_del_init(&priv->list);
2245 spin_unlock(&ports_lock);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002246#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (p->dma != PARPORT_DMA_NONE)
2248 free_dma(p->dma);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002249#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (p->irq != PARPORT_IRQ_NONE)
2251 free_irq(p->irq, p);
2252 release_region(p->base, 3);
2253 if (p->size > 3)
2254 release_region(p->base + 3, p->size - 3);
2255 if (p->modes & PARPORT_MODE_ECP)
2256 release_region(p->base_hi, 3);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002257#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (priv->dma_buf)
David Brownellc15a3832007-05-08 00:27:35 -07002259 dma_free_coherent(p->physport->dev, PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 priv->dma_buf,
2261 priv->dma_handle);
Al Viro7fbacd52005-05-04 05:39:32 +01002262#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +01002263 kfree(p->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 parport_put_port(p);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002265 kfree(ops); /* hope no-one cached it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
Alan Cox3aeda9b2009-06-11 13:07:29 +01002267EXPORT_SYMBOL(parport_pc_unregister_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269#ifdef CONFIG_PCI
2270
2271/* ITE support maintained by Rich Liu <richliu@poorman.org> */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002272static int __devinit sio_ite_8872_probe(struct pci_dev *pdev, int autoirq,
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002273 int autodma,
2274 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
2276 short inta_addr[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 u32 ite8872set;
2278 u32 ite8872_lpt, ite8872_lpthi;
2279 u8 ite8872_irq, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 int irq;
2281 int i;
2282
Alan Cox3aeda9b2009-06-11 13:07:29 +01002283 DPRINTK(KERN_DEBUG "sio_ite_8872_probe()\n");
2284
2285 /* make sure which one chip */
2286 for (i = 0; i < 5; i++) {
Niels de Vos0f6db212011-04-18 15:26:03 +01002287 if (request_region(inta_addr[i], 32, "it887x")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 int test;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002289 pci_write_config_dword(pdev, 0x60,
Niels de Vose7c310c2007-07-15 23:41:35 -07002290 0xe5000000 | inta_addr[i]);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002291 pci_write_config_dword(pdev, 0x78,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 0x00000000 | inta_addr[i]);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002293 test = inb(inta_addr[i]);
2294 if (test != 0xff)
2295 break;
Niels de Vos0f6db212011-04-18 15:26:03 +01002296 release_region(inta_addr[i], 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
2298 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002299 if (i >= 5) {
2300 printk(KERN_INFO "parport_pc: cannot find ITE8872 INTA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return 0;
2302 }
2303
Alan Cox3aeda9b2009-06-11 13:07:29 +01002304 type = inb(inta_addr[i] + 0x18);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 type &= 0x0f;
2306
2307 switch (type) {
2308 case 0x2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002309 printk(KERN_INFO "parport_pc: ITE8871 found (1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 ite8872set = 0x64200000;
2311 break;
2312 case 0xa:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002313 printk(KERN_INFO "parport_pc: ITE8875 found (1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 ite8872set = 0x64200000;
2315 break;
2316 case 0xe:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002317 printk(KERN_INFO "parport_pc: ITE8872 found (2S1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 ite8872set = 0x64e00000;
2319 break;
2320 case 0x6:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002321 printk(KERN_INFO "parport_pc: ITE8873 found (1S)\n");
Jiri Kosina9fdbdd02011-10-06 14:29:48 -07002322 release_region(inta_addr[i], 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 return 0;
2324 case 0x8:
Niels de Vos6c8e4c92010-08-23 17:20:52 +01002325 printk(KERN_INFO "parport_pc: ITE8874 found (2S)\n");
Jiri Kosina9fdbdd02011-10-06 14:29:48 -07002326 release_region(inta_addr[i], 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 return 0;
2328 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002329 printk(KERN_INFO "parport_pc: unknown ITE887x\n");
2330 printk(KERN_INFO "parport_pc: please mail 'lspci -nvv' "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 "output to Rich.Liu@ite.com.tw\n");
Jiri Kosina9fdbdd02011-10-06 14:29:48 -07002332 release_region(inta_addr[i], 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return 0;
2334 }
2335
Alan Cox3aeda9b2009-06-11 13:07:29 +01002336 pci_read_config_byte(pdev, 0x3c, &ite8872_irq);
2337 pci_read_config_dword(pdev, 0x1c, &ite8872_lpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 ite8872_lpt &= 0x0000ff00;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002339 pci_read_config_dword(pdev, 0x20, &ite8872_lpthi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 ite8872_lpthi &= 0x0000ff00;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002341 pci_write_config_dword(pdev, 0x6c, 0xe3000000 | ite8872_lpt);
2342 pci_write_config_dword(pdev, 0x70, 0xe3000000 | ite8872_lpthi);
2343 pci_write_config_dword(pdev, 0x80, (ite8872_lpthi<<16) | ite8872_lpt);
2344 /* SET SPP&EPP , Parallel Port NO DMA , Enable All Function */
2345 /* SET Parallel IRQ */
2346 pci_write_config_dword(pdev, 0x9c,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 ite8872set | (ite8872_irq * 0x11111));
2348
Alan Cox3aeda9b2009-06-11 13:07:29 +01002349 DPRINTK(KERN_DEBUG "ITE887x: The IRQ is %d.\n", ite8872_irq);
2350 DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O port is 0x%x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 ite8872_lpt);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002352 DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O porthi is 0x%x.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 ite8872_lpthi);
2354
2355 /* Let the user (or defaults) steer us away from interrupts */
2356 irq = ite8872_irq;
2357 if (autoirq != PARPORT_IRQ_AUTO)
2358 irq = PARPORT_IRQ_NONE;
2359
2360 /*
2361 * Release the resource so that parport_pc_probe_port can get it.
2362 */
Niels de Vos0f6db212011-04-18 15:26:03 +01002363 release_region(inta_addr[i], 32);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002364 if (parport_pc_probe_port(ite8872_lpt, ite8872_lpthi,
Alan Cox51dcdfe2009-04-07 15:30:57 +01002365 irq, PARPORT_DMA_NONE, &pdev->dev, 0)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002366 printk(KERN_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 "parport_pc: ITE 8872 parallel port: io=0x%X",
Alan Cox3aeda9b2009-06-11 13:07:29 +01002368 ite8872_lpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (irq != PARPORT_IRQ_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002370 printk(", irq=%d", irq);
2371 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 return 1;
2373 }
2374
2375 return 0;
2376}
2377
2378/* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru>
2379 based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002380static int __devinitdata parport_init_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382/* Data for two known VIA chips */
2383static struct parport_pc_via_data via_686a_data __devinitdata = {
2384 0x51,
2385 0x50,
2386 0x85,
2387 0x02,
2388 0xE2,
2389 0xF0,
2390 0xE6
2391};
2392static struct parport_pc_via_data via_8231_data __devinitdata = {
2393 0x45,
2394 0x44,
2395 0x50,
2396 0x04,
2397 0xF2,
2398 0xFA,
2399 0xF6
2400};
2401
Alan Cox3aeda9b2009-06-11 13:07:29 +01002402static int __devinit sio_via_probe(struct pci_dev *pdev, int autoirq,
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002403 int autodma,
2404 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405{
2406 u8 tmp, tmp2, siofunc;
2407 u8 ppcontrol = 0;
2408 int dma, irq;
2409 unsigned port1, port2;
2410 unsigned have_epp = 0;
2411
2412 printk(KERN_DEBUG "parport_pc: VIA 686A/8231 detected\n");
2413
Alan Cox3aeda9b2009-06-11 13:07:29 +01002414 switch (parport_init_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 case 1:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002416 printk(KERN_DEBUG "parport_pc: setting SPP mode\n");
2417 siofunc = VIA_FUNCTION_PARPORT_SPP;
2418 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 case 2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002420 printk(KERN_DEBUG "parport_pc: setting PS/2 mode\n");
2421 siofunc = VIA_FUNCTION_PARPORT_SPP;
2422 ppcontrol = VIA_PARPORT_BIDIR;
2423 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 case 3:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002425 printk(KERN_DEBUG "parport_pc: setting EPP mode\n");
2426 siofunc = VIA_FUNCTION_PARPORT_EPP;
2427 ppcontrol = VIA_PARPORT_BIDIR;
2428 have_epp = 1;
2429 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 case 4:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002431 printk(KERN_DEBUG "parport_pc: setting ECP mode\n");
2432 siofunc = VIA_FUNCTION_PARPORT_ECP;
2433 ppcontrol = VIA_PARPORT_BIDIR;
2434 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 case 5:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002436 printk(KERN_DEBUG "parport_pc: setting EPP+ECP mode\n");
2437 siofunc = VIA_FUNCTION_PARPORT_ECP;
2438 ppcontrol = VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP;
2439 have_epp = 1;
2440 break;
2441 default:
2442 printk(KERN_DEBUG
2443 "parport_pc: probing current configuration\n");
2444 siofunc = VIA_FUNCTION_PROBE;
2445 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 }
2447 /*
2448 * unlock super i/o configuration
2449 */
2450 pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
2451 tmp |= via->via_pci_superio_config_data;
2452 pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
2453
2454 /* Bits 1-0: Parallel Port Mode / Enable */
2455 outb(via->viacfg_function, VIA_CONFIG_INDEX);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002456 tmp = inb(VIA_CONFIG_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 /* Bit 5: EPP+ECP enable; bit 7: PS/2 bidirectional port enable */
2458 outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002459 tmp2 = inb(VIA_CONFIG_DATA);
2460 if (siofunc == VIA_FUNCTION_PROBE) {
2461 siofunc = tmp & VIA_FUNCTION_PARPORT_DISABLE;
2462 ppcontrol = tmp2;
2463 } else {
2464 tmp &= ~VIA_FUNCTION_PARPORT_DISABLE;
2465 tmp |= siofunc;
2466 outb(via->viacfg_function, VIA_CONFIG_INDEX);
2467 outb(tmp, VIA_CONFIG_DATA);
2468 tmp2 &= ~(VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP);
2469 tmp2 |= ppcontrol;
2470 outb(via->viacfg_parport_control, VIA_CONFIG_INDEX);
2471 outb(tmp2, VIA_CONFIG_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002473
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 /* Parallel Port I/O Base Address, bits 9-2 */
2475 outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
2476 port1 = inb(VIA_CONFIG_DATA) << 2;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002477
2478 printk(KERN_DEBUG "parport_pc: Current parallel port base: 0x%X\n",
2479 port1);
2480 if (port1 == 0x3BC && have_epp) {
2481 outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
2482 outb((0x378 >> 2), VIA_CONFIG_DATA);
2483 printk(KERN_DEBUG
2484 "parport_pc: Parallel port base changed to 0x378\n");
2485 port1 = 0x378;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
2487
2488 /*
2489 * lock super i/o configuration
2490 */
2491 pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
2492 tmp &= ~via->via_pci_superio_config_data;
2493 pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
2494
2495 if (siofunc == VIA_FUNCTION_PARPORT_DISABLE) {
2496 printk(KERN_INFO "parport_pc: VIA parallel port disabled in BIOS\n");
2497 return 0;
2498 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 /* Bits 7-4: PnP Routing for Parallel Port IRQ */
2501 pci_read_config_byte(pdev, via->via_pci_parport_irq_reg, &tmp);
2502 irq = ((tmp & VIA_IRQCONTROL_PARALLEL) >> 4);
2503
Alan Cox3aeda9b2009-06-11 13:07:29 +01002504 if (siofunc == VIA_FUNCTION_PARPORT_ECP) {
2505 /* Bits 3-2: PnP Routing for Parallel Port DMA */
2506 pci_read_config_byte(pdev, via->via_pci_parport_dma_reg, &tmp);
2507 dma = ((tmp & VIA_DMACONTROL_PARALLEL) >> 2);
2508 } else
2509 /* if ECP not enabled, DMA is not enabled, assumed
2510 bogus 'dma' value */
2511 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 /* Let the user (or defaults) steer us away from interrupts and DMA */
2514 if (autoirq == PARPORT_IRQ_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002515 irq = PARPORT_IRQ_NONE;
2516 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 }
2518 if (autodma == PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002519 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 switch (port1) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002522 case 0x3bc:
2523 port2 = 0x7bc; break;
2524 case 0x378:
2525 port2 = 0x778; break;
2526 case 0x278:
2527 port2 = 0x678; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002529 printk(KERN_INFO
2530 "parport_pc: Weird VIA parport base 0x%X, ignoring\n",
2531 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return 0;
2533 }
2534
2535 /* filter bogus IRQs */
2536 switch (irq) {
2537 case 0:
2538 case 2:
2539 case 8:
2540 case 13:
2541 irq = PARPORT_IRQ_NONE;
2542 break;
2543
2544 default: /* do nothing */
2545 break;
2546 }
2547
2548 /* finally, do the probe with values obtained */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002549 if (parport_pc_probe_port(port1, port2, irq, dma, &pdev->dev, 0)) {
2550 printk(KERN_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 "parport_pc: VIA parallel port: io=0x%X", port1);
2552 if (irq != PARPORT_IRQ_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002553 printk(", irq=%d", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 if (dma != PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002555 printk(", dma=%d", dma);
2556 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 return 1;
2558 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 printk(KERN_WARNING "parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n",
2561 port1, irq, dma);
2562 return 0;
2563}
2564
2565
2566enum parport_pc_sio_types {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002567 sio_via_686a = 0, /* Via VT82C686A motherboard Super I/O */
2568 sio_via_8231, /* Via VT8231 south bridge integrated Super IO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 sio_ite_8872,
2570 last_sio
2571};
2572
2573/* each element directly indexed from enum list, above */
2574static struct parport_pc_superio {
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002575 int (*probe) (struct pci_dev *pdev, int autoirq, int autodma,
2576 const struct parport_pc_via_data *via);
2577 const struct parport_pc_via_data *via;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578} parport_pc_superio_info[] __devinitdata = {
2579 { sio_via_probe, &via_686a_data, },
2580 { sio_via_probe, &via_8231_data, },
2581 { sio_ite_8872_probe, NULL, },
2582};
2583
2584enum parport_pc_pci_cards {
2585 siig_1p_10x = last_sio,
2586 siig_2p_10x,
2587 siig_1p_20x,
2588 siig_2p_20x,
2589 lava_parallel,
2590 lava_parallel_dual_a,
2591 lava_parallel_dual_b,
2592 boca_ioppar,
2593 plx_9050,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 timedia_4006a,
2595 timedia_4014,
2596 timedia_4008a,
2597 timedia_4018,
2598 timedia_9018a,
2599 syba_2p_epp,
2600 syba_1p_ecp,
2601 titan_010l,
Maximilian Attems85747f02005-09-06 15:17:21 -07002602 titan_1284p1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 titan_1284p2,
2604 avlab_1p,
2605 avlab_2p,
Ryan Underwoodc140e112006-12-06 20:36:38 -08002606 oxsemi_952,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 oxsemi_954,
2608 oxsemi_840,
Lee Howard7106b4e2008-10-21 13:48:58 +01002609 oxsemi_pcie_pport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 aks_0100,
2611 mobility_pp,
2612 netmos_9705,
2613 netmos_9715,
2614 netmos_9755,
2615 netmos_9805,
2616 netmos_9815,
Michael Bueschc4285b42009-06-30 11:41:21 -07002617 netmos_9901,
Ira W. Snyderac6ec5b2009-12-21 16:26:45 -08002618 netmos_9865,
Luís P Mendesdc999152008-02-06 01:37:43 -08002619 quatech_sppxp100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620};
2621
2622
Alan Cox3aeda9b2009-06-11 13:07:29 +01002623/* each element directly indexed from enum list, above
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 * (but offset by last_sio) */
2625static struct parport_pc_pci {
2626 int numports;
2627 struct { /* BAR (base address registers) numbers in the config
Alan Cox3aeda9b2009-06-11 13:07:29 +01002628 space header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 int lo;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002630 int hi;
2631 /* -1 if not there, >6 for offset-method (max BAR is 6) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 } addr[4];
2633
2634 /* If set, this is called immediately after pci_enable_device.
2635 * If it returns non-zero, no probing will take place and the
2636 * ports will not be used. */
2637 int (*preinit_hook) (struct pci_dev *pdev, int autoirq, int autodma);
2638
2639 /* If set, this is called after probing for ports. If 'failed'
2640 * is non-zero we couldn't use any of the ports. */
2641 void (*postinit_hook) (struct pci_dev *pdev, int failed);
Randy.Dunlap96766a32006-04-18 22:21:57 -07002642} cards[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 /* siig_1p_10x */ { 1, { { 2, 3 }, } },
2644 /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } },
2645 /* siig_1p_20x */ { 1, { { 0, 1 }, } },
2646 /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } },
2647 /* lava_parallel */ { 1, { { 0, -1 }, } },
2648 /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } },
2649 /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } },
2650 /* boca_ioppar */ { 1, { { 0, -1 }, } },
2651 /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 /* timedia_4006a */ { 1, { { 0, -1 }, } },
2653 /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } },
2654 /* timedia_4008a */ { 1, { { 0, 1 }, } },
2655 /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2656 /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } },
2657 /* SYBA uses fixed offsets in
Alan Cox3aeda9b2009-06-11 13:07:29 +01002658 a 1K io window */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } },
2660 /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } },
2661 /* titan_010l */ { 1, { { 3, -1 }, } },
Maximilian Attems85747f02005-09-06 15:17:21 -07002662 /* titan_1284p1 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 /* titan_1284p2 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2664 /* avlab_1p */ { 1, { { 0, 1}, } },
2665 /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} },
2666 /* The Oxford Semi cards are unusual: 954 doesn't support ECP,
2667 * and 840 locks up if you write 1 to bit 2! */
Ryan Underwoodc140e112006-12-06 20:36:38 -08002668 /* oxsemi_952 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 /* oxsemi_954 */ { 1, { { 0, -1 }, } },
Bernhard Walleadbd3212008-07-25 19:44:56 -07002670 /* oxsemi_840 */ { 1, { { 0, 1 }, } },
Lee Howard7106b4e2008-10-21 13:48:58 +01002671 /* oxsemi_pcie_pport */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 /* aks_0100 */ { 1, { { 0, -1 }, } },
2673 /* mobility_pp */ { 1, { { 0, 1 }, } },
Alan Cox3aeda9b2009-06-11 13:07:29 +01002674
2675 /* The netmos entries below are untested */
2676 /* netmos_9705 */ { 1, { { 0, -1 }, } },
2677 /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} },
2678 /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} },
2679 /* netmos_9805 */ { 1, { { 0, -1 }, } },
2680 /* netmos_9815 */ { 2, { { 0, -1 }, { 2, -1 }, } },
Michael Bueschc4285b42009-06-30 11:41:21 -07002681 /* netmos_9901 */ { 1, { { 0, -1 }, } },
Ira W. Snyderac6ec5b2009-12-21 16:26:45 -08002682 /* netmos_9865 */ { 1, { { 0, -1 }, } },
Luís P Mendesdc999152008-02-06 01:37:43 -08002683 /* quatech_sppxp100 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684};
2685
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002686static const struct pci_device_id parport_pc_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 /* Super-IO onboard chips */
2688 { 0x1106, 0x0686, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_686a },
2689 { 0x1106, 0x8231, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_8231 },
2690 { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8872,
2691 PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_ite_8872 },
2692
2693 /* PCI cards */
2694 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_10x,
2695 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_10x },
2696 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_10x,
2697 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_10x },
2698 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_20x,
2699 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_20x },
2700 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_20x,
2701 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_20x },
2702 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PARALLEL,
2703 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel },
2704 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_A,
2705 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_a },
2706 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_B,
2707 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_b },
2708 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR,
2709 PCI_ANY_ID, PCI_ANY_ID, 0, 0, boca_ioppar },
2710 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
Alan Cox3aeda9b2009-06-11 13:07:29 +01002711 PCI_SUBVENDOR_ID_EXSYS, PCI_SUBDEVICE_ID_EXSYS_4014, 0, 0, plx_9050 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a },
2714 { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014 },
2715 { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a },
2716 { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018 },
2717 { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_2P_EPP,
2719 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_2p_epp },
2720 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_1P_ECP,
2721 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_1p_ecp },
2722 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_010L,
2723 PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_010l },
Maximilian Attems85747f02005-09-06 15:17:21 -07002724 { 0x9710, 0x9805, 0x1000, 0x0010, 0, 0, titan_1284p1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 { 0x9710, 0x9815, 0x1000, 0x0020, 0, 0, titan_1284p2 },
2726 /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
Alan Cox3aeda9b2009-06-11 13:07:29 +01002727 /* AFAVLAB_TK9902 */
2728 { 0x14db, 0x2120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1p},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 { 0x14db, 0x2121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2p},
Ryan Underwoodc140e112006-12-06 20:36:38 -08002730 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952PP,
2731 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_952 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954PP,
2733 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_954 },
2734 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_12PCI840,
2735 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_840 },
Lee Howard7106b4e2008-10-21 13:48:58 +01002736 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840,
2737 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2738 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840_G,
2739 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2740 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0,
2741 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2742 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0_G,
2743 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2744 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1,
2745 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2746 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_G,
2747 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2748 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_U,
2749 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2750 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_GU,
2751 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 { PCI_VENDOR_ID_AKS, PCI_DEVICE_ID_AKS_ALADDINCARD,
2753 PCI_ANY_ID, PCI_ANY_ID, 0, 0, aks_0100 },
Lee Howard7106b4e2008-10-21 13:48:58 +01002754 { 0x14f2, 0x0121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, mobility_pp },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 /* NetMos communication controllers */
2756 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9705,
2757 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9705 },
2758 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9715,
2759 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9715 },
2760 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9755,
2761 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9755 },
2762 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9805,
2763 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9805 },
2764 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9815,
2765 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9815 },
Michael Bueschc4285b42009-06-30 11:41:21 -07002766 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9901,
2767 0xA000, 0x2000, 0, 0, netmos_9901 },
Ira W. Snyderac6ec5b2009-12-21 16:26:45 -08002768 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865,
2769 0xA000, 0x1000, 0, 0, netmos_9865 },
2770 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865,
2771 0xA000, 0x2000, 0, 0, netmos_9865 },
Luís P Mendesdc999152008-02-06 01:37:43 -08002772 /* Quatech SPPXP-100 Parallel port PCI ExpressCard */
2773 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_SPPXP_100,
2774 PCI_ANY_ID, PCI_ANY_ID, 0, 0, quatech_sppxp100 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 { 0, } /* terminate list */
2776};
Alan Cox3aeda9b2009-06-11 13:07:29 +01002777MODULE_DEVICE_TABLE(pci, parport_pc_pci_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
2779struct pci_parport_data {
2780 int num;
2781 struct parport *ports[2];
2782};
2783
Alan Cox3aeda9b2009-06-11 13:07:29 +01002784static int parport_pc_pci_probe(struct pci_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 const struct pci_device_id *id)
2786{
2787 int err, count, n, i = id->driver_data;
2788 struct pci_parport_data *data;
2789
2790 if (i < last_sio)
2791 /* This is an onboard Super-IO and has already been probed */
2792 return 0;
2793
2794 /* This is a PCI card */
2795 i -= last_sio;
2796 count = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002797 err = pci_enable_device(dev);
2798 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 return err;
2800
2801 data = kmalloc(sizeof(struct pci_parport_data), GFP_KERNEL);
2802 if (!data)
2803 return -ENOMEM;
2804
2805 if (cards[i].preinit_hook &&
Alan Cox3aeda9b2009-06-11 13:07:29 +01002806 cards[i].preinit_hook(dev, PARPORT_IRQ_NONE, PARPORT_DMA_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 kfree(data);
2808 return -ENODEV;
2809 }
2810
2811 for (n = 0; n < cards[i].numports; n++) {
2812 int lo = cards[i].addr[n].lo;
2813 int hi = cards[i].addr[n].hi;
Alan Cox51dcdfe2009-04-07 15:30:57 +01002814 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 unsigned long io_lo, io_hi;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002816 io_lo = pci_resource_start(dev, lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 io_hi = 0;
2818 if ((hi >= 0) && (hi <= 6))
Alan Cox3aeda9b2009-06-11 13:07:29 +01002819 io_hi = pci_resource_start(dev, hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 else if (hi > 6)
2821 io_lo += hi; /* Reinterpret the meaning of
Alan Cox3aeda9b2009-06-11 13:07:29 +01002822 "hi" as an offset (see SYBA
2823 def.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 /* TODO: test if sharing interrupts works */
Alan Cox51dcdfe2009-04-07 15:30:57 +01002825 irq = dev->irq;
2826 if (irq == IRQ_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002827 printk(KERN_DEBUG
Alan Cox51dcdfe2009-04-07 15:30:57 +01002828 "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
2829 parport_pc_pci_tbl[i + last_sio].vendor,
2830 parport_pc_pci_tbl[i + last_sio].device,
2831 io_lo, io_hi);
2832 irq = PARPORT_IRQ_NONE;
2833 } else {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002834 printk(KERN_DEBUG
Alan Cox51dcdfe2009-04-07 15:30:57 +01002835 "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
2836 parport_pc_pci_tbl[i + last_sio].vendor,
2837 parport_pc_pci_tbl[i + last_sio].device,
2838 io_lo, io_hi, irq);
2839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 data->ports[count] =
Alan Cox51dcdfe2009-04-07 15:30:57 +01002841 parport_pc_probe_port(io_lo, io_hi, irq,
2842 PARPORT_DMA_NONE, &dev->dev,
2843 IRQF_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 if (data->ports[count])
2845 count++;
2846 }
2847
2848 data->num = count;
2849
2850 if (cards[i].postinit_hook)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002851 cards[i].postinit_hook(dev, count == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853 if (count) {
2854 pci_set_drvdata(dev, data);
2855 return 0;
2856 }
2857
2858 kfree(data);
2859
2860 return -ENODEV;
2861}
2862
2863static void __devexit parport_pc_pci_remove(struct pci_dev *dev)
2864{
2865 struct pci_parport_data *data = pci_get_drvdata(dev);
2866 int i;
2867
2868 pci_set_drvdata(dev, NULL);
2869
2870 if (data) {
2871 for (i = data->num - 1; i >= 0; i--)
2872 parport_pc_unregister_port(data->ports[i]);
2873
2874 kfree(data);
2875 }
2876}
2877
2878static struct pci_driver parport_pc_pci_driver = {
2879 .name = "parport_pc",
2880 .id_table = parport_pc_pci_tbl,
2881 .probe = parport_pc_pci_probe,
2882 .remove = __devexit_p(parport_pc_pci_remove),
2883};
2884
Alan Cox3aeda9b2009-06-11 13:07:29 +01002885static int __init parport_pc_init_superio(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
2887 const struct pci_device_id *id;
2888 struct pci_dev *pdev = NULL;
2889 int ret = 0;
2890
Jiri Slabyc9d80732005-08-10 02:09:39 +02002891 for_each_pci_dev(pdev) {
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07002892 id = pci_match_id(parport_pc_pci_tbl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 if (id == NULL || id->driver_data >= last_sio)
2894 continue;
2895
Alan Cox3aeda9b2009-06-11 13:07:29 +01002896 if (parport_pc_superio_info[id->driver_data].probe(
2897 pdev, autoirq, autodma,
2898 parport_pc_superio_info[id->driver_data].via)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 ret++;
2900 }
2901 }
2902
2903 return ret; /* number of devices found */
2904}
2905#else
2906static struct pci_driver parport_pc_pci_driver;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002907static int __init parport_pc_init_superio(int autoirq, int autodma)
2908{
2909 return 0;
2910}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911#endif /* CONFIG_PCI */
2912
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07002913#ifdef CONFIG_PNP
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
2915static const struct pnp_device_id parport_pc_pnp_tbl[] = {
2916 /* Standard LPT Printer Port */
2917 {.id = "PNP0400", .driver_data = 0},
2918 /* ECP Printer Port */
2919 {.id = "PNP0401", .driver_data = 0},
2920 { }
2921};
2922
Alan Cox3aeda9b2009-06-11 13:07:29 +01002923MODULE_DEVICE_TABLE(pnp, parport_pc_pnp_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Alan Cox3aeda9b2009-06-11 13:07:29 +01002925static int parport_pc_pnp_probe(struct pnp_dev *dev,
2926 const struct pnp_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
2928 struct parport *pdata;
2929 unsigned long io_lo, io_hi;
2930 int dma, irq;
2931
Alan Cox3aeda9b2009-06-11 13:07:29 +01002932 if (pnp_port_valid(dev, 0) &&
2933 !(pnp_port_flags(dev, 0) & IORESOURCE_DISABLED)) {
2934 io_lo = pnp_port_start(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 } else
2936 return -EINVAL;
2937
Alan Cox3aeda9b2009-06-11 13:07:29 +01002938 if (pnp_port_valid(dev, 1) &&
2939 !(pnp_port_flags(dev, 1) & IORESOURCE_DISABLED)) {
2940 io_hi = pnp_port_start(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 } else
2942 io_hi = 0;
2943
Alan Cox3aeda9b2009-06-11 13:07:29 +01002944 if (pnp_irq_valid(dev, 0) &&
2945 !(pnp_irq_flags(dev, 0) & IORESOURCE_DISABLED)) {
2946 irq = pnp_irq(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 } else
2948 irq = PARPORT_IRQ_NONE;
2949
Alan Cox3aeda9b2009-06-11 13:07:29 +01002950 if (pnp_dma_valid(dev, 0) &&
2951 !(pnp_dma_flags(dev, 0) & IORESOURCE_DISABLED)) {
2952 dma = pnp_dma(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 } else
2954 dma = PARPORT_DMA_NONE;
2955
David Brownellc15a3832007-05-08 00:27:35 -07002956 dev_info(&dev->dev, "reported by %s\n", dev->protocol->name);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002957 pdata = parport_pc_probe_port(io_lo, io_hi, irq, dma, &dev->dev, 0);
2958 if (pdata == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return -ENODEV;
2960
Alan Cox3aeda9b2009-06-11 13:07:29 +01002961 pnp_set_drvdata(dev, pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 return 0;
2963}
2964
2965static void parport_pc_pnp_remove(struct pnp_dev *dev)
2966{
2967 struct parport *pdata = (struct parport *)pnp_get_drvdata(dev);
2968 if (!pdata)
2969 return;
2970
2971 parport_pc_unregister_port(pdata);
2972}
2973
2974/* we only need the pnp layer to activate the device, at least for now */
2975static struct pnp_driver parport_pc_pnp_driver = {
2976 .name = "parport_pc",
2977 .id_table = parport_pc_pnp_tbl,
2978 .probe = parport_pc_pnp_probe,
2979 .remove = parport_pc_pnp_remove,
2980};
2981
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07002982#else
2983static struct pnp_driver parport_pc_pnp_driver;
2984#endif /* CONFIG_PNP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Jean Delvarea7d801a2007-05-08 00:27:40 -07002986static int __devinit parport_pc_platform_probe(struct platform_device *pdev)
2987{
2988 /* Always succeed, the actual probing is done in
2989 * parport_pc_probe_port(). */
2990 return 0;
2991}
2992
2993static struct platform_driver parport_pc_platform_driver = {
2994 .driver = {
2995 .owner = THIS_MODULE,
2996 .name = "parport_pc",
2997 },
2998 .probe = parport_pc_platform_probe,
2999};
3000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001/* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */
3002static int __devinit __attribute__((unused))
Alan Cox3aeda9b2009-06-11 13:07:29 +01003003parport_pc_find_isa_ports(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004{
3005 int count = 0;
3006
Alan Cox51dcdfe2009-04-07 15:30:57 +01003007 if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003009 if (parport_pc_probe_port(0x378, 0x778, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01003011 if (parport_pc_probe_port(0x278, 0x678, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 count++;
3013
3014 return count;
3015}
3016
3017/* This function is called by parport_pc_init if the user didn't
3018 * specify any ports to probe. Its job is to find some ports. Order
3019 * is important here -- we want ISA ports to be registered first,
3020 * followed by PCI cards (for least surprise), but before that we want
3021 * to do chipset-specific tests for some onboard ports that we know
3022 * about.
3023 *
3024 * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY
3025 * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO
3026 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01003027static void __init parport_pc_find_ports(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003029 int count = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
3031#ifdef CONFIG_PARPORT_PC_SUPERIO
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003032 detect_and_report_it87();
3033 detect_and_report_winbond();
3034 detect_and_report_smsc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035#endif
3036
3037 /* Onboard SuperIO chipsets that show themselves on the PCI bus. */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003038 count += parport_pc_init_superio(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040 /* PnP ports, skip detection if SuperIO already found them */
3041 if (!count) {
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003042 err = pnp_register_driver(&parport_pc_pnp_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003043 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 pnp_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 }
3046
3047 /* ISA ports and whatever (see asm/parport.h). */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003048 parport_pc_find_nonpci_ports(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003050 err = pci_register_driver(&parport_pc_pci_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003051 if (!err)
3052 pci_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053}
3054
3055/*
3056 * Piles of crap below pretend to be a parser for module and kernel
3057 * parameters. Say "thank you" to whoever had come up with that
3058 * syntax and keep in mind that code below is a cleaned up version.
3059 */
3060
Alan Cox3aeda9b2009-06-11 13:07:29 +01003061static int __initdata io[PARPORT_PC_MAX_PORTS+1] = {
3062 [0 ... PARPORT_PC_MAX_PORTS] = 0
3063};
3064static int __initdata io_hi[PARPORT_PC_MAX_PORTS+1] = {
3065 [0 ... PARPORT_PC_MAX_PORTS] = PARPORT_IOHI_AUTO
3066};
3067static int __initdata dmaval[PARPORT_PC_MAX_PORTS] = {
3068 [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_DMA_NONE
3069};
3070static int __initdata irqval[PARPORT_PC_MAX_PORTS] = {
3071 [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_IRQ_PROBEONLY
3072};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
3074static int __init parport_parse_param(const char *s, int *val,
3075 int automatic, int none, int nofifo)
3076{
3077 if (!s)
3078 return 0;
3079 if (!strncmp(s, "auto", 4))
3080 *val = automatic;
3081 else if (!strncmp(s, "none", 4))
3082 *val = none;
Joe Perches1f2c19f2009-12-15 16:47:45 -08003083 else if (nofifo && !strncmp(s, "nofifo", 6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 *val = nofifo;
3085 else {
3086 char *ep;
3087 unsigned long r = simple_strtoul(s, &ep, 0);
3088 if (ep != s)
3089 *val = r;
3090 else {
3091 printk(KERN_ERR "parport: bad specifier `%s'\n", s);
3092 return -1;
3093 }
3094 }
3095 return 0;
3096}
3097
3098static int __init parport_parse_irq(const char *irqstr, int *val)
3099{
3100 return parport_parse_param(irqstr, val, PARPORT_IRQ_AUTO,
3101 PARPORT_IRQ_NONE, 0);
3102}
3103
3104static int __init parport_parse_dma(const char *dmastr, int *val)
3105{
3106 return parport_parse_param(dmastr, val, PARPORT_DMA_AUTO,
3107 PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO);
3108}
3109
3110#ifdef CONFIG_PCI
3111static int __init parport_init_mode_setup(char *str)
3112{
Alan Cox3aeda9b2009-06-11 13:07:29 +01003113 printk(KERN_DEBUG
3114 "parport_pc.c: Specified parameter parport_init_mode=%s\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Alan Cox3aeda9b2009-06-11 13:07:29 +01003116 if (!strcmp(str, "spp"))
3117 parport_init_mode = 1;
3118 if (!strcmp(str, "ps2"))
3119 parport_init_mode = 2;
3120 if (!strcmp(str, "epp"))
3121 parport_init_mode = 3;
3122 if (!strcmp(str, "ecp"))
3123 parport_init_mode = 4;
3124 if (!strcmp(str, "ecpepp"))
3125 parport_init_mode = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 return 1;
3127}
3128#endif
3129
3130#ifdef MODULE
Andrew Morton45dac902012-01-12 17:20:32 -08003131static char *irq[PARPORT_PC_MAX_PORTS];
3132static char *dma[PARPORT_PC_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
3134MODULE_PARM_DESC(io, "Base I/O address (SPP regs)");
3135module_param_array(io, int, NULL, 0);
3136MODULE_PARM_DESC(io_hi, "Base I/O address (ECR)");
3137module_param_array(io_hi, int, NULL, 0);
3138MODULE_PARM_DESC(irq, "IRQ line");
3139module_param_array(irq, charp, NULL, 0);
3140MODULE_PARM_DESC(dma, "DMA channel");
3141module_param_array(dma, charp, NULL, 0);
3142#if defined(CONFIG_PARPORT_PC_SUPERIO) || \
3143 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
3144MODULE_PARM_DESC(verbose_probing, "Log chit-chat during initialisation");
3145module_param(verbose_probing, int, 0644);
3146#endif
3147#ifdef CONFIG_PCI
3148static char *init_mode;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003149MODULE_PARM_DESC(init_mode,
3150 "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151module_param(init_mode, charp, 0);
3152#endif
3153
3154static int __init parse_parport_params(void)
3155{
3156 unsigned int i;
3157 int val;
3158
3159#ifdef CONFIG_PCI
3160 if (init_mode)
3161 parport_init_mode_setup(init_mode);
3162#endif
3163
3164 for (i = 0; i < PARPORT_PC_MAX_PORTS && io[i]; i++) {
3165 if (parport_parse_irq(irq[i], &val))
3166 return 1;
3167 irqval[i] = val;
3168 if (parport_parse_dma(dma[i], &val))
3169 return 1;
3170 dmaval[i] = val;
3171 }
3172 if (!io[0]) {
3173 /* The user can make us use any IRQs or DMAs we find. */
3174 if (irq[0] && !parport_parse_irq(irq[0], &val))
3175 switch (val) {
3176 case PARPORT_IRQ_NONE:
3177 case PARPORT_IRQ_AUTO:
3178 irqval[0] = val;
3179 break;
3180 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01003181 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 "parport_pc: irq specified "
3183 "without base address. Use 'io=' "
3184 "to specify one\n");
3185 }
3186
3187 if (dma[0] && !parport_parse_dma(dma[0], &val))
3188 switch (val) {
3189 case PARPORT_DMA_NONE:
3190 case PARPORT_DMA_AUTO:
3191 dmaval[0] = val;
3192 break;
3193 default:
Alan Cox3aeda9b2009-06-11 13:07:29 +01003194 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 "parport_pc: dma specified "
3196 "without base address. Use 'io=' "
3197 "to specify one\n");
3198 }
3199 }
3200 return 0;
3201}
3202
3203#else
3204
Alan Cox3aeda9b2009-06-11 13:07:29 +01003205static int parport_setup_ptr __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
3207/*
3208 * Acceptable parameters:
3209 *
3210 * parport=0
3211 * parport=auto
3212 * parport=0xBASE[,IRQ[,DMA]]
3213 *
3214 * IRQ/DMA may be numeric or 'auto' or 'none'
3215 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01003216static int __init parport_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
3218 char *endptr;
3219 char *sep;
3220 int val;
3221
3222 if (!str || !*str || (*str == '0' && !*(str+1))) {
3223 /* Disable parport if "parport=0" in cmdline */
3224 io[0] = PARPORT_DISABLE;
3225 return 1;
3226 }
3227
Alan Cox3aeda9b2009-06-11 13:07:29 +01003228 if (!strncmp(str, "auto", 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 irqval[0] = PARPORT_IRQ_AUTO;
3230 dmaval[0] = PARPORT_DMA_AUTO;
3231 return 1;
3232 }
3233
Alan Cox3aeda9b2009-06-11 13:07:29 +01003234 val = simple_strtoul(str, &endptr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 if (endptr == str) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01003236 printk(KERN_WARNING "parport=%s not understood\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 return 1;
3238 }
3239
3240 if (parport_setup_ptr == PARPORT_PC_MAX_PORTS) {
3241 printk(KERN_ERR "parport=%s ignored, too many ports\n", str);
3242 return 1;
3243 }
3244
3245 io[parport_setup_ptr] = val;
3246 irqval[parport_setup_ptr] = PARPORT_IRQ_NONE;
3247 dmaval[parport_setup_ptr] = PARPORT_DMA_NONE;
3248
3249 sep = strchr(str, ',');
3250 if (sep++) {
3251 if (parport_parse_irq(sep, &val))
3252 return 1;
3253 irqval[parport_setup_ptr] = val;
3254 sep = strchr(sep, ',');
3255 if (sep++) {
3256 if (parport_parse_dma(sep, &val))
3257 return 1;
3258 dmaval[parport_setup_ptr] = val;
3259 }
3260 }
3261 parport_setup_ptr++;
3262 return 1;
3263}
3264
3265static int __init parse_parport_params(void)
3266{
3267 return io[0] == PARPORT_DISABLE;
3268}
3269
Alan Cox3aeda9b2009-06-11 13:07:29 +01003270__setup("parport=", parport_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
3272/*
3273 * Acceptable parameters:
3274 *
3275 * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
3276 */
3277#ifdef CONFIG_PCI
Alan Cox3aeda9b2009-06-11 13:07:29 +01003278__setup("parport_init_mode=", parport_init_mode_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279#endif
3280#endif
3281
3282/* "Parser" ends here */
3283
3284static int __init parport_pc_init(void)
3285{
Jean Delvarea7d801a2007-05-08 00:27:40 -07003286 int err;
3287
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 if (parse_parport_params())
3289 return -EINVAL;
3290
Jean Delvarea7d801a2007-05-08 00:27:40 -07003291 err = platform_driver_register(&parport_pc_platform_driver);
3292 if (err)
3293 return err;
3294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 if (io[0]) {
3296 int i;
3297 /* Only probe the ports we were given. */
3298 user_specified = 1;
3299 for (i = 0; i < PARPORT_PC_MAX_PORTS; i++) {
3300 if (!io[i])
3301 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003302 if (io_hi[i] == PARPORT_IOHI_AUTO)
3303 io_hi[i] = 0x400 + io[i];
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003304 parport_pc_probe_port(io[i], io_hi[i],
Alan Cox3aeda9b2009-06-11 13:07:29 +01003305 irqval[i], dmaval[i], NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 }
3307 } else
Alan Cox3aeda9b2009-06-11 13:07:29 +01003308 parport_pc_find_ports(irqval[0], dmaval[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
3310 return 0;
3311}
3312
3313static void __exit parport_pc_exit(void)
3314{
3315 if (pci_registered_parport)
Alan Cox3aeda9b2009-06-11 13:07:29 +01003316 pci_unregister_driver(&parport_pc_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 if (pnp_registered_parport)
Alan Cox3aeda9b2009-06-11 13:07:29 +01003318 pnp_unregister_driver(&parport_pc_pnp_driver);
Jean Delvarea7d801a2007-05-08 00:27:40 -07003319 platform_driver_unregister(&parport_pc_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 while (!list_empty(&ports_list)) {
3322 struct parport_pc_private *priv;
3323 struct parport *port;
3324 priv = list_entry(ports_list.next,
3325 struct parport_pc_private, list);
3326 port = priv->port;
Jean Delvarea7d801a2007-05-08 00:27:40 -07003327 if (port->dev && port->dev->bus == &platform_bus_type)
3328 platform_device_unregister(
3329 to_platform_device(port->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 parport_pc_unregister_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332}
3333
3334MODULE_AUTHOR("Phil Blundell, Tim Waugh, others");
3335MODULE_DESCRIPTION("PC-style parallel port driver");
3336MODULE_LICENSE("GPL");
3337module_init(parport_pc_init)
3338module_exit(parport_pc_exit)