blob: 77e37e3cb3a091c65d31023ac3d850dd5559ecf2 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* Low-level parallel-port routines for 8255-based PC-style hardware.
Alan Cox3aeda9b2009-06-11 13:07:29 +01003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Phil Blundell <philb@gnu.org>
5 * Tim Waugh <tim@cyberelk.demon.co.uk>
6 * Jose Renau <renau@acm.org>
Adrian Bunkbdca3f22006-06-26 18:19:23 +02007 * David Campbell
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Andrea Arcangeli
9 *
10 * based on work by Grant Guenther <grant@torque.net> and Phil Blundell.
11 *
12 * Cleaned up include files - Russell King <linux@arm.uk.linux.org>
13 * DMA support - Bert De Jonghe <bert@sophis.be>
14 * Many ECP bugs fixed. Fred Barnes & Jamie Lokier, 1999
Alan Cox3aeda9b2009-06-11 13:07:29 +010015 * More PCI support now conditional on CONFIG_PCI, 03/2001, Paul G.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Various hacks, Fred Barnes, 04/2001
17 * Updated probing logic - Adam Belay <ambx1@neo.rr.com>
18 */
19
20/* This driver should work with any hardware that is broadly compatible
21 * with that in the IBM PC. This applies to the majority of integrated
22 * I/O chipsets that are commonly available. The expected register
23 * layout is:
24 *
25 * base+0 data
26 * base+1 status
27 * base+2 control
28 *
29 * In addition, there are some optional registers:
30 *
31 * base+3 EPP address
32 * base+4 EPP data
33 * base+0x400 ECP config A
34 * base+0x401 ECP config B
35 * base+0x402 ECP control
36 *
37 * All registers are 8 bits wide and read/write. If your hardware differs
38 * only in register addresses (eg because your registers are on 32-bit
39 * word boundaries) then you can alter the constants in parport_pc.h to
40 * accommodate this.
41 *
42 * Note that the ECP registers may not start at offset 0x400 for PCI cards,
43 * but rather will start at port->base_hi.
44 */
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/module.h>
47#include <linux/init.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010048#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/delay.h>
50#include <linux/errno.h>
51#include <linux/interrupt.h>
52#include <linux/ioport.h>
53#include <linux/kernel.h>
54#include <linux/slab.h>
Andrew Morton8382d2b2007-05-15 23:57:08 -070055#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <linux/pci.h>
57#include <linux/pnp.h>
Jean Delvarea7d801a2007-05-08 00:27:40 -070058#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/sysctl.h>
Alan Cox3aeda9b2009-06-11 13:07:29 +010060#include <linux/io.h>
61#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <asm/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include <linux/parport.h>
66#include <linux/parport_pc.h>
67#include <linux/via.h>
68#include <asm/parport.h>
69
70#define PARPORT_PC_MAX_PORTS PARPORT_MAX
71
Al Viro7fbacd52005-05-04 05:39:32 +010072#ifdef CONFIG_ISA_DMA_API
73#define HAS_DMA
74#endif
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* ECR modes */
77#define ECR_SPP 00
78#define ECR_PS2 01
79#define ECR_PPF 02
80#define ECR_ECP 03
81#define ECR_EPP 04
82#define ECR_VND 05
83#define ECR_TST 06
84#define ECR_CNF 07
85#define ECR_MODE_MASK 0xe0
Alan Cox3aeda9b2009-06-11 13:07:29 +010086#define ECR_WRITE(p, v) frob_econtrol((p), 0xff, (v))
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#undef DEBUG
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define NR_SUPERIOS 3
91static struct superio_struct { /* For Super-IO chips autodetection */
92 int io;
93 int irq;
94 int dma;
Randy.Dunlap96766a32006-04-18 22:21:57 -070095} superios[NR_SUPERIOS] = { {0,},};
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97static int user_specified;
98#if defined(CONFIG_PARPORT_PC_SUPERIO) || \
99 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
100static int verbose_probing;
101#endif
102static int pci_registered_parport;
103static int pnp_registered_parport;
104
105/* frob_control, but for ECR */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100106static void frob_econtrol(struct parport *pb, unsigned char m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 unsigned char v)
108{
109 unsigned char ectr = 0;
110
111 if (m != 0xff)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100112 ectr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perches7b399252020-04-03 14:43:21 +0100114 pr_debug("frob_econtrol(%02x,%02x): %02x -> %02x\n",
115 m, v, ectr, (ectr & ~m) ^ v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Alan Cox3aeda9b2009-06-11 13:07:29 +0100117 outb((ectr & ~m) ^ v, ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Alan Cox3aeda9b2009-06-11 13:07:29 +0100120static inline void frob_set_mode(struct parport *p, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Alan Cox3aeda9b2009-06-11 13:07:29 +0100122 frob_econtrol(p, ECR_MODE_MASK, mode << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
125#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +0100126/* Safely change the mode bits in the ECR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 Returns:
128 0 : Success
129 -EBUSY: Could not drain FIFO in some finite amount of time,
130 mode not changed!
131 */
132static int change_mode(struct parport *p, int m)
133{
134 const struct parport_pc_private *priv = p->physport->private_data;
135 unsigned char oecr;
136 int mode;
137
Joe Perches7b399252020-04-03 14:43:21 +0100138 pr_debug("parport change_mode ECP-ISA to mode 0x%02x\n", m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 if (!priv->ecr) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100141 printk(KERN_DEBUG "change_mode: but there's no ECR!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return 0;
143 }
144
145 /* Bits <7:5> contain the mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100146 oecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 mode = (oecr >> 5) & 0x7;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100148 if (mode == m)
149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 if (mode >= 2 && !(priv->ctr & 0x20)) {
152 /* This mode resets the FIFO, so we may
153 * have to wait for it to drain first. */
154 unsigned long expire = jiffies + p->physport->cad->timeout;
155 int counter;
156 switch (mode) {
157 case ECR_PPF: /* Parallel Port FIFO mode */
158 case ECR_ECP: /* ECP Parallel Port mode */
159 /* Busy wait for 200us */
160 for (counter = 0; counter < 40; counter++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100161 if (inb(ECONTROL(p)) & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100163 if (signal_pending(current))
164 break;
165 udelay(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
168 /* Poll slowly. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100169 while (!(inb(ECONTROL(p)) & 0x01)) {
170 if (time_after_eq(jiffies, expire))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /* The FIFO is stuck. */
172 return -EBUSY;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100173 schedule_timeout_interruptible(
174 msecs_to_jiffies(10));
175 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 break;
177 }
178 }
179 }
180
181 if (mode >= 2 && m >= 2) {
182 /* We have to go through mode 001 */
183 oecr &= ~(7 << 5);
184 oecr |= ECR_PS2 << 5;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100185 ECR_WRITE(p, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
188 /* Set the mode. */
189 oecr &= ~(7 << 5);
190 oecr |= m << 5;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100191 ECR_WRITE(p, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return 0;
193}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#endif /* FIFO support */
195
196/*
197 * Clear TIMEOUT BIT in EPP MODE
198 *
199 * This is also used in SPP detection.
200 */
201static int clear_epp_timeout(struct parport *pb)
202{
203 unsigned char r;
204
205 if (!(parport_pc_read_status(pb) & 0x01))
206 return 1;
207
208 /* To clear timeout some chips require double read */
209 parport_pc_read_status(pb);
210 r = parport_pc_read_status(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100211 outb(r | 0x01, STATUS(pb)); /* Some reset by writing 1 */
212 outb(r & 0xfe, STATUS(pb)); /* Others by writing 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 r = parport_pc_read_status(pb);
214
215 return !(r & 0x01);
216}
217
218/*
219 * Access functions.
220 *
221 * Most of these aren't static because they may be used by the
222 * parport_xxx_yyy macros. extern __inline__ versions of several
223 * of these are in parport_pc.h.
224 */
225
Alan Cox3aeda9b2009-06-11 13:07:29 +0100226static void parport_pc_init_state(struct pardevice *dev,
227 struct parport_state *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 s->u.pc.ctr = 0xc;
230 if (dev->irq_func &&
231 dev->port->irq != PARPORT_IRQ_NONE)
232 /* Set ackIntEn */
233 s->u.pc.ctr |= 0x10;
234
235 s->u.pc.ecr = 0x34; /* NetMos chip can cause problems 0x24;
236 * D.Gruszka VScom */
237}
238
239static void parport_pc_save_state(struct parport *p, struct parport_state *s)
240{
241 const struct parport_pc_private *priv = p->physport->private_data;
242 s->u.pc.ctr = priv->ctr;
243 if (priv->ecr)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100244 s->u.pc.ecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Alan Cox3aeda9b2009-06-11 13:07:29 +0100247static void parport_pc_restore_state(struct parport *p,
248 struct parport_state *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct parport_pc_private *priv = p->physport->private_data;
251 register unsigned char c = s->u.pc.ctr & priv->ctr_writable;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100252 outb(c, CONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 priv->ctr = c;
254 if (priv->ecr)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100255 ECR_WRITE(p, s->u.pc.ecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
258#ifdef CONFIG_PARPORT_1284
Alan Cox3aeda9b2009-06-11 13:07:29 +0100259static size_t parport_pc_epp_read_data(struct parport *port, void *buf,
260 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 size_t got = 0;
263
264 if (flags & PARPORT_W91284PIC) {
265 unsigned char status;
266 size_t left = length;
267
268 /* use knowledge about data lines..:
269 * nFault is 0 if there is at least 1 byte in the Warp's FIFO
270 * pError is 1 if there are 16 bytes in the Warp's FIFO
271 */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100272 status = inb(STATUS(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Alan Cox3aeda9b2009-06-11 13:07:29 +0100274 while (!(status & 0x08) && got < length) {
275 if (left >= 16 && (status & 0x20) && !(status & 0x08)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* can grab 16 bytes from warp fifo */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100277 if (!((long)buf & 0x03))
278 insl(EPPDATA(port), buf, 4);
279 else
280 insb(EPPDATA(port), buf, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 buf += 16;
282 got += 16;
283 left -= 16;
284 } else {
285 /* grab single byte from the warp fifo */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100286 *((char *)buf) = inb(EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 buf++;
288 got++;
289 left--;
290 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100291 status = inb(STATUS(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (status & 0x01) {
293 /* EPP timeout should never occur... */
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100294 printk(KERN_DEBUG "%s: EPP timeout occurred while talking to w91284pic (should not have done)\n",
295 port->name);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100296 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298 }
299 return got;
300 }
301 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100302 if (!(((long)buf | length) & 0x03))
303 insl(EPPDATA(port), buf, (length >> 2));
304 else
305 insb(EPPDATA(port), buf, length);
306 if (inb(STATUS(port)) & 0x01) {
307 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return -EIO;
309 }
310 return length;
311 }
312 for (; got < length; got++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100313 *((char *)buf) = inb(EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100315 if (inb(STATUS(port)) & 0x01) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* EPP timeout */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100317 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 break;
319 }
320 }
321
322 return got;
323}
324
Alan Cox3aeda9b2009-06-11 13:07:29 +0100325static size_t parport_pc_epp_write_data(struct parport *port, const void *buf,
326 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 size_t written = 0;
329
330 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100331 if (!(((long)buf | length) & 0x03))
332 outsl(EPPDATA(port), buf, (length >> 2));
333 else
334 outsb(EPPDATA(port), buf, length);
335 if (inb(STATUS(port)) & 0x01) {
336 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return -EIO;
338 }
339 return length;
340 }
341 for (; written < length; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100342 outb(*((char *)buf), EPPDATA(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100344 if (inb(STATUS(port)) & 0x01) {
345 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 break;
347 }
348 }
349
350 return written;
351}
352
Alan Cox3aeda9b2009-06-11 13:07:29 +0100353static size_t parport_pc_epp_read_addr(struct parport *port, void *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 size_t length, int flags)
355{
356 size_t got = 0;
357
358 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100359 insb(EPPADDR(port), buf, length);
360 if (inb(STATUS(port)) & 0x01) {
361 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return -EIO;
363 }
364 return length;
365 }
366 for (; got < length; got++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100367 *((char *)buf) = inb(EPPADDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100369 if (inb(STATUS(port)) & 0x01) {
370 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 break;
372 }
373 }
374
375 return got;
376}
377
Alan Cox3aeda9b2009-06-11 13:07:29 +0100378static size_t parport_pc_epp_write_addr(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 const void *buf, size_t length,
380 int flags)
381{
382 size_t written = 0;
383
384 if ((flags & PARPORT_EPP_FAST) && (length > 1)) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100385 outsb(EPPADDR(port), buf, length);
386 if (inb(STATUS(port)) & 0x01) {
387 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -EIO;
389 }
390 return length;
391 }
392 for (; written < length; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100393 outb(*((char *)buf), EPPADDR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 buf++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100395 if (inb(STATUS(port)) & 0x01) {
396 clear_epp_timeout(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 break;
398 }
399 }
400
401 return written;
402}
403
Alan Cox3aeda9b2009-06-11 13:07:29 +0100404static size_t parport_pc_ecpepp_read_data(struct parport *port, void *buf,
405 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 size_t got;
408
Alan Cox3aeda9b2009-06-11 13:07:29 +0100409 frob_set_mode(port, ECR_EPP);
410 parport_pc_data_reverse(port);
411 parport_pc_write_control(port, 0x4);
412 got = parport_pc_epp_read_data(port, buf, length, flags);
413 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 return got;
416}
417
Alan Cox3aeda9b2009-06-11 13:07:29 +0100418static size_t parport_pc_ecpepp_write_data(struct parport *port,
419 const void *buf, size_t length,
420 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 size_t written;
423
Alan Cox3aeda9b2009-06-11 13:07:29 +0100424 frob_set_mode(port, ECR_EPP);
425 parport_pc_write_control(port, 0x4);
426 parport_pc_data_forward(port);
427 written = parport_pc_epp_write_data(port, buf, length, flags);
428 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 return written;
431}
432
Alan Cox3aeda9b2009-06-11 13:07:29 +0100433static size_t parport_pc_ecpepp_read_addr(struct parport *port, void *buf,
434 size_t length, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 size_t got;
437
Alan Cox3aeda9b2009-06-11 13:07:29 +0100438 frob_set_mode(port, ECR_EPP);
439 parport_pc_data_reverse(port);
440 parport_pc_write_control(port, 0x4);
441 got = parport_pc_epp_read_addr(port, buf, length, flags);
442 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 return got;
445}
446
Alan Cox3aeda9b2009-06-11 13:07:29 +0100447static size_t parport_pc_ecpepp_write_addr(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 const void *buf, size_t length,
449 int flags)
450{
451 size_t written;
452
Alan Cox3aeda9b2009-06-11 13:07:29 +0100453 frob_set_mode(port, ECR_EPP);
454 parport_pc_write_control(port, 0x4);
455 parport_pc_data_forward(port);
456 written = parport_pc_epp_write_addr(port, buf, length, flags);
457 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 return written;
460}
461#endif /* IEEE 1284 support */
462
463#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +0100464static size_t parport_pc_fifo_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 const void *buf, size_t length)
466{
467 int ret = 0;
468 const unsigned char *bufp = buf;
469 size_t left = length;
470 unsigned long expire = jiffies + port->physport->cad->timeout;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100471 const int fifo = FIFO(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int poll_for = 8; /* 80 usecs */
473 const struct parport_pc_private *priv = port->physport->private_data;
474 const int fifo_depth = priv->fifo_depth;
475
476 port = port->physport;
477
478 /* We don't want to be interrupted every character. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100479 parport_pc_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 /* set nErrIntrEn and serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100481 frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* Forward mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100484 parport_pc_data_forward(port); /* Must be in PS2 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 while (left) {
487 unsigned char byte;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100488 unsigned char ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 int i = 0;
490
Alan Cox3aeda9b2009-06-11 13:07:29 +0100491 if (need_resched() && time_before(jiffies, expire))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /* Can't yield the port. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100493 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* Anyone else waiting for the port? */
496 if (port->waithead) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100497 printk(KERN_DEBUG "Somebody wants the port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 break;
499 }
500
501 if (ecrval & 0x02) {
502 /* FIFO is full. Wait for interrupt. */
503
504 /* Clear serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100505 ECR_WRITE(port, ecrval & ~(1<<2));
506false_alarm:
507 ret = parport_wait_event(port, HZ);
508 if (ret < 0)
509 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 ret = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100511 if (!time_before(jiffies, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* Timed out. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100513 printk(KERN_DEBUG "FIFO write timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100516 ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (!(ecrval & (1<<2))) {
518 if (need_resched() &&
Alan Cox3aeda9b2009-06-11 13:07:29 +0100519 time_before(jiffies, expire))
520 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 goto false_alarm;
523 }
524
525 continue;
526 }
527
528 /* Can't fail now. */
529 expire = jiffies + port->cad->timeout;
530
Alan Cox3aeda9b2009-06-11 13:07:29 +0100531poll:
532 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 break;
534
535 if (ecrval & 0x01) {
536 /* FIFO is empty. Blast it full. */
537 const int n = left < fifo_depth ? left : fifo_depth;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100538 outsb(fifo, bufp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 bufp += n;
540 left -= n;
541
542 /* Adjust the poll time. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100543 if (i < (poll_for - 2))
544 poll_for--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 continue;
546 } else if (i++ < poll_for) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100547 udelay(10);
548 ecrval = inb(ECONTROL(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 goto poll;
550 }
551
Alan Cox3aeda9b2009-06-11 13:07:29 +0100552 /* Half-full(call me an optimist) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 byte = *bufp++;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100554 outb(byte, fifo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 left--;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100556 }
557 dump_parport_state("leave fifo_write_block_pio", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return length - left;
559}
560
Al Viro7fbacd52005-05-04 05:39:32 +0100561#ifdef HAS_DMA
Alan Cox3aeda9b2009-06-11 13:07:29 +0100562static size_t parport_pc_fifo_write_block_dma(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 const void *buf, size_t length)
564{
565 int ret = 0;
566 unsigned long dmaflag;
567 size_t left = length;
568 const struct parport_pc_private *priv = port->physport->private_data;
David Brownellc15a3832007-05-08 00:27:35 -0700569 struct device *dev = port->physport->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 dma_addr_t dma_addr, dma_handle;
571 size_t maxlen = 0x10000; /* max 64k per DMA transfer */
572 unsigned long start = (unsigned long) buf;
573 unsigned long end = (unsigned long) buf + length - 1;
574
Alan Cox181bf1e2009-06-11 13:08:10 +0100575 dump_parport_state("enter fifo_write_block_dma", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (end < MAX_DMA_ADDRESS) {
577 /* If it would cross a 64k boundary, cap it at the end. */
578 if ((start ^ end) & ~0xffffUL)
579 maxlen = 0x10000 - (start & 0xffff);
580
David Brownellc15a3832007-05-08 00:27:35 -0700581 dma_addr = dma_handle = dma_map_single(dev, (void *)buf, length,
582 DMA_TO_DEVICE);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100583 } else {
584 /* above 16 MB we use a bounce buffer as ISA-DMA
585 is not possible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 maxlen = PAGE_SIZE; /* sizeof(priv->dma_buf) */
587 dma_addr = priv->dma_handle;
588 dma_handle = 0;
589 }
590
591 port = port->physport;
592
593 /* We don't want to be interrupted every character. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100594 parport_pc_disable_irq(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* set nErrIntrEn and serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100596 frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 /* Forward mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100599 parport_pc_data_forward(port); /* Must be in PS2 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 while (left) {
602 unsigned long expire = jiffies + port->physport->cad->timeout;
603
604 size_t count = left;
605
606 if (count > maxlen)
607 count = maxlen;
608
609 if (!dma_handle) /* bounce buffer ! */
610 memcpy(priv->dma_buf, buf, count);
611
612 dmaflag = claim_dma_lock();
613 disable_dma(port->dma);
614 clear_dma_ff(port->dma);
615 set_dma_mode(port->dma, DMA_MODE_WRITE);
616 set_dma_addr(port->dma, dma_addr);
617 set_dma_count(port->dma, count);
618
619 /* Set DMA mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100620 frob_econtrol(port, 1<<3, 1<<3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /* Clear serviceIntr */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100623 frob_econtrol(port, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 enable_dma(port->dma);
626 release_dma_lock(dmaflag);
627
628 /* assume DMA will be successful */
629 left -= count;
630 buf += count;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100631 if (dma_handle)
632 dma_addr += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /* Wait for interrupt. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100635false_alarm:
636 ret = parport_wait_event(port, HZ);
637 if (ret < 0)
638 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 ret = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100640 if (!time_before(jiffies, expire)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* Timed out. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100642 printk(KERN_DEBUG "DMA write timed out\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 break;
644 }
645 /* Is serviceIntr set? */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100646 if (!(inb(ECONTROL(port)) & (1<<2))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 cond_resched();
648
649 goto false_alarm;
650 }
651
652 dmaflag = claim_dma_lock();
653 disable_dma(port->dma);
654 clear_dma_ff(port->dma);
655 count = get_dma_residue(port->dma);
656 release_dma_lock(dmaflag);
657
658 cond_resched(); /* Can't yield the port. */
659
660 /* Anyone else waiting for the port? */
661 if (port->waithead) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100662 printk(KERN_DEBUG "Somebody wants the port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 break;
664 }
665
666 /* update for possible DMA residue ! */
667 buf -= count;
668 left += count;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100669 if (dma_handle)
670 dma_addr -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672
673 /* Maybe got here through break, so adjust for DMA residue! */
674 dmaflag = claim_dma_lock();
675 disable_dma(port->dma);
676 clear_dma_ff(port->dma);
677 left += get_dma_residue(port->dma);
678 release_dma_lock(dmaflag);
679
680 /* Turn off DMA mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100681 frob_econtrol(port, 1<<3, 0);
David Brownellc15a3832007-05-08 00:27:35 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (dma_handle)
David Brownellc15a3832007-05-08 00:27:35 -0700684 dma_unmap_single(dev, dma_handle, length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Alan Cox181bf1e2009-06-11 13:08:10 +0100686 dump_parport_state("leave fifo_write_block_dma", port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return length - left;
688}
Al Viro7fbacd52005-05-04 05:39:32 +0100689#endif
690
691static inline size_t parport_pc_fifo_write_block(struct parport *port,
692 const void *buf, size_t length)
693{
694#ifdef HAS_DMA
695 if (port->dma != PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100696 return parport_pc_fifo_write_block_dma(port, buf, length);
Al Viro7fbacd52005-05-04 05:39:32 +0100697#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +0100698 return parport_pc_fifo_write_block_pio(port, buf, length);
Al Viro7fbacd52005-05-04 05:39:32 +0100699}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701/* Parallel Port FIFO mode (ECP chipsets) */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100702static size_t parport_pc_compat_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 const void *buf, size_t length,
704 int flags)
705{
706 size_t written;
707 int r;
708 unsigned long expire;
709 const struct parport_pc_private *priv = port->physport->private_data;
710
711 /* Special case: a timeout of zero means we cannot call schedule().
712 * Also if O_NONBLOCK is set then use the default implementation. */
713 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100714 return parport_ieee1284_write_compat(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 length, flags);
716
717 /* Set up parallel port FIFO mode.*/
Alan Cox3aeda9b2009-06-11 13:07:29 +0100718 parport_pc_data_forward(port); /* Must be in PS2 mode */
719 parport_pc_frob_control(port, PARPORT_CONTROL_STROBE, 0);
720 r = change_mode(port, ECR_PPF); /* Parallel port FIFO */
721 if (r)
722 printk(KERN_DEBUG "%s: Warning change_mode ECR_PPF failed\n",
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100723 port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
726
727 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100728 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /* Finish up. */
731 /* For some hardware we don't want to touch the mode until
732 * the FIFO is empty, so allow 4 seconds for each position
733 * in the fifo.
734 */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100735 expire = jiffies + (priv->fifo_depth * HZ * 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 do {
737 /* Wait for the FIFO to empty */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100738 r = change_mode(port, ECR_PS2);
739 if (r != -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100741 } while (time_before(jiffies, expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (r == -EBUSY) {
743
Alan Cox3aeda9b2009-06-11 13:07:29 +0100744 printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* Prevent further data transfer. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100747 frob_set_mode(port, ECR_TST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 /* Adjust for the contents of the FIFO. */
750 for (written -= priv->fifo_depth; ; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100751 if (inb(ECONTROL(port)) & 0x2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /* Full up. */
753 break;
754 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100755 outb(0, FIFO(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
758 /* Reset the FIFO and return to PS2 mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100759 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761
Alan Cox3aeda9b2009-06-11 13:07:29 +0100762 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 PARPORT_STATUS_BUSY,
764 PARPORT_STATUS_BUSY);
765 if (r)
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100766 printk(KERN_DEBUG "%s: BUSY timeout (%d) in compat_write_block_pio\n",
767 port->name, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
770
771 return written;
772}
773
774/* ECP */
775#ifdef CONFIG_PARPORT_1284
Alan Cox3aeda9b2009-06-11 13:07:29 +0100776static size_t parport_pc_ecp_write_block_pio(struct parport *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 const void *buf, size_t length,
778 int flags)
779{
780 size_t written;
781 int r;
782 unsigned long expire;
783 const struct parport_pc_private *priv = port->physport->private_data;
784
785 /* Special case: a timeout of zero means we cannot call schedule().
786 * Also if O_NONBLOCK is set then use the default implementation. */
787 if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK)
Alan Cox3aeda9b2009-06-11 13:07:29 +0100788 return parport_ieee1284_ecp_write_data(port, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 length, flags);
790
791 /* Switch to forward mode if necessary. */
792 if (port->physport->ieee1284.phase != IEEE1284_PH_FWD_IDLE) {
793 /* Event 47: Set nInit high. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100794 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 PARPORT_CONTROL_INIT
796 | PARPORT_CONTROL_AUTOFD,
797 PARPORT_CONTROL_INIT
798 | PARPORT_CONTROL_AUTOFD);
799
800 /* Event 49: PError goes high. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100801 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 PARPORT_STATUS_PAPEROUT,
803 PARPORT_STATUS_PAPEROUT);
804 if (r) {
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100805 printk(KERN_DEBUG "%s: PError timeout (%d) in ecp_write_block_pio\n",
806 port->name, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808 }
809
810 /* Set up ECP parallel port mode.*/
Alan Cox3aeda9b2009-06-11 13:07:29 +0100811 parport_pc_data_forward(port); /* Must be in PS2 mode */
812 parport_pc_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 PARPORT_CONTROL_STROBE |
814 PARPORT_CONTROL_AUTOFD,
815 0);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100816 r = change_mode(port, ECR_ECP); /* ECP FIFO */
817 if (r)
818 printk(KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n",
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100819 port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
821
822 /* Write the data to the FIFO. */
Al Viro7fbacd52005-05-04 05:39:32 +0100823 written = parport_pc_fifo_write_block(port, buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 /* Finish up. */
826 /* For some hardware we don't want to touch the mode until
827 * the FIFO is empty, so allow 4 seconds for each position
828 * in the fifo.
829 */
830 expire = jiffies + (priv->fifo_depth * (HZ * 4));
831 do {
832 /* Wait for the FIFO to empty */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100833 r = change_mode(port, ECR_PS2);
834 if (r != -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +0100836 } while (time_before(jiffies, expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (r == -EBUSY) {
838
Alan Cox3aeda9b2009-06-11 13:07:29 +0100839 printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 /* Prevent further data transfer. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100842 frob_set_mode(port, ECR_TST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 /* Adjust for the contents of the FIFO. */
845 for (written -= priv->fifo_depth; ; written++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +0100846 if (inb(ECONTROL(port)) & 0x2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 /* Full up. */
848 break;
849 }
Alan Cox3aeda9b2009-06-11 13:07:29 +0100850 outb(0, FIFO(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852
853 /* Reset the FIFO and return to PS2 mode. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100854 frob_set_mode(port, ECR_PS2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 /* Host transfer recovery. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100857 parport_pc_data_reverse(port); /* Must be in PS2 mode */
858 udelay(5);
859 parport_frob_control(port, PARPORT_CONTROL_INIT, 0);
860 r = parport_wait_peripheral(port, PARPORT_STATUS_PAPEROUT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (r)
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100862 printk(KERN_DEBUG "%s: PE,1 timeout (%d) in ecp_write_block_pio\n",
863 port->name, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Alan Cox3aeda9b2009-06-11 13:07:29 +0100865 parport_frob_control(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 PARPORT_CONTROL_INIT,
867 PARPORT_CONTROL_INIT);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100868 r = parport_wait_peripheral(port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 PARPORT_STATUS_PAPEROUT,
870 PARPORT_STATUS_PAPEROUT);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100871 if (r)
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100872 printk(KERN_DEBUG "%s: PE,2 timeout (%d) in ecp_write_block_pio\n",
873 port->name, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
Alan Cox3aeda9b2009-06-11 13:07:29 +0100876 r = parport_wait_peripheral(port,
877 PARPORT_STATUS_BUSY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 PARPORT_STATUS_BUSY);
Alan Cox3aeda9b2009-06-11 13:07:29 +0100879 if (r)
Joe Perchesaa3d6e72020-04-03 14:43:17 +0100880 printk(KERN_DEBUG "%s: BUSY timeout (%d) in ecp_write_block_pio\n",
881 port->name, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
884
885 return written;
886}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887#endif /* IEEE 1284 support */
888#endif /* Allowed to use FIFO/DMA */
889
890
891/*
892 * ******************************************
893 * INITIALISATION AND MODULE STUFF BELOW HERE
894 * ******************************************
895 */
896
Masahiro Yamadab8a14f32017-02-27 14:29:50 -0800897/* GCC is not inlining extern inline function later overwritten to non-inline,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 so we use outlined_ variants here. */
Alan Cox3aeda9b2009-06-11 13:07:29 +0100899static const struct parport_operations parport_pc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 .write_data = parport_pc_write_data,
901 .read_data = parport_pc_read_data,
902
903 .write_control = parport_pc_write_control,
904 .read_control = parport_pc_read_control,
905 .frob_control = parport_pc_frob_control,
906
907 .read_status = parport_pc_read_status,
908
909 .enable_irq = parport_pc_enable_irq,
910 .disable_irq = parport_pc_disable_irq,
911
912 .data_forward = parport_pc_data_forward,
913 .data_reverse = parport_pc_data_reverse,
914
915 .init_state = parport_pc_init_state,
916 .save_state = parport_pc_save_state,
917 .restore_state = parport_pc_restore_state,
918
919 .epp_write_data = parport_ieee1284_epp_write_data,
920 .epp_read_data = parport_ieee1284_epp_read_data,
921 .epp_write_addr = parport_ieee1284_epp_write_addr,
922 .epp_read_addr = parport_ieee1284_epp_read_addr,
923
924 .ecp_write_data = parport_ieee1284_ecp_write_data,
925 .ecp_read_data = parport_ieee1284_ecp_read_data,
926 .ecp_write_addr = parport_ieee1284_ecp_write_addr,
927
928 .compat_write_data = parport_ieee1284_write_compat,
929 .nibble_read_data = parport_ieee1284_read_nibble,
930 .byte_read_data = parport_ieee1284_read_byte,
931
932 .owner = THIS_MODULE,
933};
934
935#ifdef CONFIG_PARPORT_PC_SUPERIO
Alan Cox181bf1e2009-06-11 13:08:10 +0100936
937static struct superio_struct *find_free_superio(void)
938{
939 int i;
940 for (i = 0; i < NR_SUPERIOS; i++)
941 if (superios[i].io == 0)
942 return &superios[i];
943 return NULL;
944}
945
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947/* Super-IO chipset detection, Winbond, SMSC */
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -0800948static void show_parconfig_smsc37c669(int io, int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Alan Cox181bf1e2009-06-11 13:08:10 +0100950 int cr1, cr4, cra, cr23, cr26, cr27;
951 struct superio_struct *s;
952
Alan Cox3aeda9b2009-06-11 13:07:29 +0100953 static const char *const modes[] = {
Marko Kohtalaa6767b72006-01-06 00:19:48 -0800954 "SPP and Bidirectional (PS/2)",
955 "EPP and SPP",
956 "ECP",
957 "ECP and EPP" };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Alan Cox3aeda9b2009-06-11 13:07:29 +0100959 outb(key, io);
960 outb(key, io);
961 outb(1, io);
962 cr1 = inb(io + 1);
963 outb(4, io);
964 cr4 = inb(io + 1);
965 outb(0x0a, io);
966 cra = inb(io + 1);
967 outb(0x23, io);
968 cr23 = inb(io + 1);
969 outb(0x26, io);
970 cr26 = inb(io + 1);
971 outb(0x27, io);
972 cr27 = inb(io + 1);
973 outb(0xaa, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 if (verbose_probing) {
Joe Perchesdecf26f2020-04-03 14:43:16 +0100976 pr_info("SMSC 37c669 LPT Config: cr_1=0x%02x, 4=0x%02x, A=0x%2x, 23=0x%02x, 26=0x%02x, 27=0x%02x\n",
Alan Cox3aeda9b2009-06-11 13:07:29 +0100977 cr1, cr4, cra, cr23, cr26, cr27);
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 /* The documentation calls DMA and IRQ-Lines by letters, so
980 the board maker can/will wire them
981 appropriately/randomly... G=reserved H=IDE-irq, */
Joe Perchesdecf26f2020-04-03 14:43:16 +0100982 pr_info("SMSC LPT Config: io=0x%04x, irq=%c, dma=%c, fifo threshold=%d\n",
983 cr23 * 4,
984 (cr27 & 0x0f) ? 'A' - 1 + (cr27 & 0x0f) : '-',
985 (cr26 & 0x0f) ? 'A' - 1 + (cr26 & 0x0f) : '-',
986 cra & 0x0f);
987 pr_info("SMSC LPT Config: enabled=%s power=%s\n",
988 (cr23 * 4 >= 0x100) ? "yes" : "no",
989 (cr1 & 4) ? "yes" : "no");
990 pr_info("SMSC LPT Config: Port mode=%s, EPP version =%s\n",
991 (cr1 & 0x08) ? "Standard mode only (SPP)"
992 : modes[cr4 & 0x03],
993 (cr4 & 0x40) ? "1.7" : "1.9");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Michael Buesch73e0d482009-06-11 13:06:31 +0100995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /* Heuristics ! BIOS setup for this mainboard device limits
997 the choices to standard settings, i.e. io-address and IRQ
998 are related, however DMA can be 1 or 3, assume DMA_A=DMA1,
999 DMA_C=DMA3 (this is true e.g. for TYAN 1564D Tomcat IV) */
Michael Buesch73e0d482009-06-11 13:06:31 +01001000 if (cr23 * 4 >= 0x100) { /* if active */
Alan Cox181bf1e2009-06-11 13:08:10 +01001001 s = find_free_superio();
1002 if (s == NULL)
Joe Perchesdecf26f2020-04-03 14:43:16 +01001003 pr_info("Super-IO: too many chips!\n");
Alan Cox181bf1e2009-06-11 13:08:10 +01001004 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 int d;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001006 switch (cr23 * 4) {
1007 case 0x3bc:
Alan Cox181bf1e2009-06-11 13:08:10 +01001008 s->io = 0x3bc;
1009 s->irq = 7;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001010 break;
1011 case 0x378:
Alan Cox181bf1e2009-06-11 13:08:10 +01001012 s->io = 0x378;
1013 s->irq = 7;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001014 break;
1015 case 0x278:
Alan Cox181bf1e2009-06-11 13:08:10 +01001016 s->io = 0x278;
1017 s->irq = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001019 d = (cr26 & 0x0f);
1020 if (d == 1 || d == 3)
Alan Cox181bf1e2009-06-11 13:08:10 +01001021 s->dma = d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 else
Alan Cox181bf1e2009-06-11 13:08:10 +01001023 s->dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001029static void show_parconfig_winbond(int io, int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Alan Cox181bf1e2009-06-11 13:08:10 +01001031 int cr30, cr60, cr61, cr70, cr74, crf0;
1032 struct superio_struct *s;
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001033 static const char *const modes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 "Standard (SPP) and Bidirectional(PS/2)", /* 0 */
1035 "EPP-1.9 and SPP",
1036 "ECP",
1037 "ECP and EPP-1.9",
1038 "Standard (SPP)",
1039 "EPP-1.7 and SPP", /* 5 */
1040 "undefined!",
1041 "ECP and EPP-1.7" };
Marko Kohtalaa6767b72006-01-06 00:19:48 -08001042 static char *const irqtypes[] = {
1043 "pulsed low, high-Z",
1044 "follows nACK" };
Alan Cox3aeda9b2009-06-11 13:07:29 +01001045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 /* The registers are called compatible-PnP because the
Alan Cox3aeda9b2009-06-11 13:07:29 +01001047 register layout is modelled after ISA-PnP, the access
1048 method is just another ... */
1049 outb(key, io);
1050 outb(key, io);
1051 outb(0x07, io); /* Register 7: Select Logical Device */
1052 outb(0x01, io + 1); /* LD1 is Parallel Port */
1053 outb(0x30, io);
1054 cr30 = inb(io + 1);
1055 outb(0x60, io);
1056 cr60 = inb(io + 1);
1057 outb(0x61, io);
1058 cr61 = inb(io + 1);
1059 outb(0x70, io);
1060 cr70 = inb(io + 1);
1061 outb(0x74, io);
1062 cr74 = inb(io + 1);
1063 outb(0xf0, io);
1064 crf0 = inb(io + 1);
1065 outb(0xaa, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 if (verbose_probing) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01001068 pr_info("Winbond LPT Config: cr_30=%02x 60,61=%02x%02x 70=%02x 74=%02x, f0=%02x\n",
1069 cr30, cr60, cr61, cr70, cr74, crf0);
1070 pr_info("Winbond LPT Config: active=%s, io=0x%02x%02x irq=%d, ",
1071 (cr30 & 0x01) ? "yes" : "no", cr60, cr61, cr70 & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if ((cr74 & 0x07) > 3)
Mikulas Patocka6979b922017-08-12 22:45:48 +01001073 pr_cont("dma=none\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 else
Mikulas Patocka6979b922017-08-12 22:45:48 +01001075 pr_cont("dma=%d\n", cr74 & 0x07);
Joe Perchesdecf26f2020-04-03 14:43:16 +01001076 pr_info("Winbond LPT Config: irqtype=%s, ECP fifo threshold=%d\n",
1077 irqtypes[crf0 >> 7], (crf0 >> 3) & 0x0f);
1078 pr_info("Winbond LPT Config: Port mode=%s\n",
1079 modes[crf0 & 0x07]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
Michael Buesch73e0d482009-06-11 13:06:31 +01001082 if (cr30 & 0x01) { /* the settings can be interrogated later ... */
Alan Cox181bf1e2009-06-11 13:08:10 +01001083 s = find_free_superio();
1084 if (s == NULL)
Joe Perchesdecf26f2020-04-03 14:43:16 +01001085 pr_info("Super-IO: too many chips!\n");
Alan Cox181bf1e2009-06-11 13:08:10 +01001086 else {
1087 s->io = (cr60 << 8) | cr61;
1088 s->irq = cr70 & 0x0f;
1089 s->dma = (((cr74 & 0x07) > 3) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 PARPORT_DMA_NONE : (cr74 & 0x07));
1091 }
1092 }
1093}
1094
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001095static void decode_winbond(int efer, int key, int devid, int devrev, int oldid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 const char *type = "unknown";
Alan Cox3aeda9b2009-06-11 13:07:29 +01001098 int id, progif = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 if (devid == devrev)
1101 /* simple heuristics, we happened to read some
Alan Cox3aeda9b2009-06-11 13:07:29 +01001102 non-winbond register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return;
1104
Alan Cox3aeda9b2009-06-11 13:07:29 +01001105 id = (devid << 8) | devrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 /* Values are from public data sheets pdf files, I can just
Alan Cox3aeda9b2009-06-11 13:07:29 +01001108 confirm 83977TF is correct :-) */
1109 if (id == 0x9771)
1110 type = "83977F/AF";
1111 else if (id == 0x9773)
1112 type = "83977TF / SMSC 97w33x/97w34x";
1113 else if (id == 0x9774)
1114 type = "83977ATF";
1115 else if ((id & ~0x0f) == 0x5270)
1116 type = "83977CTF / SMSC 97w36x";
1117 else if ((id & ~0x0f) == 0x52f0)
1118 type = "83977EF / SMSC 97w35x";
1119 else if ((id & ~0x0f) == 0x5210)
1120 type = "83627";
1121 else if ((id & ~0x0f) == 0x6010)
1122 type = "83697HF";
1123 else if ((oldid & 0x0f) == 0x0a) {
1124 type = "83877F";
1125 progif = 1;
1126 } else if ((oldid & 0x0f) == 0x0b) {
1127 type = "83877AF";
1128 progif = 1;
1129 } else if ((oldid & 0x0f) == 0x0c) {
1130 type = "83877TF";
1131 progif = 1;
1132 } else if ((oldid & 0x0f) == 0x0d) {
1133 type = "83877ATF";
1134 progif = 1;
1135 } else
1136 progif = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 if (verbose_probing)
Joe Perchesdecf26f2020-04-03 14:43:16 +01001139 pr_info("Winbond chip at EFER=0x%x key=0x%02x devid=%02x devrev=%02x oldid=%02x type=%s\n",
1140 efer, key, devid, devrev, oldid, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 if (progif == 2)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001143 show_parconfig_winbond(efer, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001146static void decode_smsc(int efer, int key, int devid, int devrev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001148 const char *type = "unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 void (*func)(int io, int key);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001150 int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Alan Cox3aeda9b2009-06-11 13:07:29 +01001152 if (devid == devrev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /* simple heuristics, we happened to read some
Alan Cox3aeda9b2009-06-11 13:07:29 +01001154 non-smsc register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return;
1156
Alan Cox3aeda9b2009-06-11 13:07:29 +01001157 func = NULL;
1158 id = (devid << 8) | devrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Alan Cox3aeda9b2009-06-11 13:07:29 +01001160 if (id == 0x0302) {
1161 type = "37c669";
1162 func = show_parconfig_smsc37c669;
1163 } else if (id == 0x6582)
1164 type = "37c665IR";
1165 else if (devid == 0x65)
1166 type = "37c665GT";
1167 else if (devid == 0x66)
1168 type = "37c666GT";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 if (verbose_probing)
Joe Perchesdecf26f2020-04-03 14:43:16 +01001171 pr_info("SMSC chip at EFER=0x%x key=0x%02x devid=%02x devrev=%02x type=%s\n",
1172 efer, key, devid, devrev, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 if (func)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001175 func(efer, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
1178
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001179static void winbond_check(int io, int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001181 int origval, devid, devrev, oldid, x_devid, x_devrev, x_oldid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Harvey Harrison145980a2008-04-30 00:54:57 -07001183 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return;
1185
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001186 origval = inb(io); /* Save original value */
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 /* First probe without key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001189 outb(0x20, io);
1190 x_devid = inb(io + 1);
1191 outb(0x21, io);
1192 x_devrev = inb(io + 1);
1193 outb(0x09, io);
1194 x_oldid = inb(io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Alan Cox3aeda9b2009-06-11 13:07:29 +01001196 outb(key, io);
1197 outb(key, io); /* Write Magic Sequence to EFER, extended
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001198 function enable register */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001199 outb(0x20, io); /* Write EFIR, extended function index register */
1200 devid = inb(io + 1); /* Read EFDR, extended function data register */
1201 outb(0x21, io);
1202 devrev = inb(io + 1);
1203 outb(0x09, io);
1204 oldid = inb(io + 1);
1205 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001207 outb(origval, io); /* in case we poked some entirely different hardware */
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if ((x_devid == devid) && (x_devrev == devrev) && (x_oldid == oldid))
1210 goto out; /* protection against false positives */
1211
Alan Cox3aeda9b2009-06-11 13:07:29 +01001212 decode_winbond(io, key, devid, devrev, oldid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213out:
1214 release_region(io, 3);
1215}
1216
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001217static void winbond_check2(int io, int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001219 int origval[3], devid, devrev, oldid, x_devid, x_devrev, x_oldid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Harvey Harrison145980a2008-04-30 00:54:57 -07001221 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return;
1223
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001224 origval[0] = inb(io); /* Save original values */
1225 origval[1] = inb(io + 1);
1226 origval[2] = inb(io + 2);
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /* First probe without the key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001229 outb(0x20, io + 2);
1230 x_devid = inb(io + 2);
1231 outb(0x21, io + 1);
1232 x_devrev = inb(io + 2);
1233 outb(0x09, io + 1);
1234 x_oldid = inb(io + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Alan Cox3aeda9b2009-06-11 13:07:29 +01001236 outb(key, io); /* Write Magic Byte to EFER, extended
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001237 function enable register */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001238 outb(0x20, io + 2); /* Write EFIR, extended function index register */
1239 devid = inb(io + 2); /* Read EFDR, extended function data register */
1240 outb(0x21, io + 1);
1241 devrev = inb(io + 2);
1242 outb(0x09, io + 1);
1243 oldid = inb(io + 2);
1244 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001246 outb(origval[0], io); /* in case we poked some entirely different hardware */
1247 outb(origval[1], io + 1);
1248 outb(origval[2], io + 2);
1249
Alan Cox3aeda9b2009-06-11 13:07:29 +01001250 if (x_devid == devid && x_devrev == devrev && x_oldid == oldid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 goto out; /* protection against false positives */
1252
Alan Cox3aeda9b2009-06-11 13:07:29 +01001253 decode_winbond(io, key, devid, devrev, oldid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254out:
1255 release_region(io, 3);
1256}
1257
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001258static void smsc_check(int io, int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001260 int origval, id, rev, oldid, oldrev, x_id, x_rev, x_oldid, x_oldrev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Harvey Harrison145980a2008-04-30 00:54:57 -07001262 if (!request_region(io, 3, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return;
1264
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001265 origval = inb(io); /* Save original value */
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 /* First probe without the key */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001268 outb(0x0d, io);
1269 x_oldid = inb(io + 1);
1270 outb(0x0e, io);
1271 x_oldrev = inb(io + 1);
1272 outb(0x20, io);
1273 x_id = inb(io + 1);
1274 outb(0x21, io);
1275 x_rev = inb(io + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Alan Cox3aeda9b2009-06-11 13:07:29 +01001277 outb(key, io);
1278 outb(key, io); /* Write Magic Sequence to EFER, extended
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001279 function enable register */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001280 outb(0x0d, io); /* Write EFIR, extended function index register */
1281 oldid = inb(io + 1); /* Read EFDR, extended function data register */
1282 outb(0x0e, io);
1283 oldrev = inb(io + 1);
1284 outb(0x20, io);
1285 id = inb(io + 1);
1286 outb(0x21, io);
1287 rev = inb(io + 1);
1288 outb(0xaa, io); /* Magic Seal */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001290 outb(origval, io); /* in case we poked some entirely different hardware */
1291
Alan Cox3aeda9b2009-06-11 13:07:29 +01001292 if (x_id == id && x_oldrev == oldrev &&
1293 x_oldid == oldid && x_rev == rev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 goto out; /* protection against false positives */
1295
Alan Cox3aeda9b2009-06-11 13:07:29 +01001296 decode_smsc(io, key, oldid, oldrev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297out:
1298 release_region(io, 3);
1299}
1300
1301
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001302static void detect_and_report_winbond(void)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001303{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (verbose_probing)
1305 printk(KERN_DEBUG "Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001306 winbond_check(0x3f0, 0x87);
1307 winbond_check(0x370, 0x87);
1308 winbond_check(0x2e , 0x87);
1309 winbond_check(0x4e , 0x87);
1310 winbond_check(0x3f0, 0x86);
1311 winbond_check2(0x250, 0x88);
1312 winbond_check2(0x250, 0x89);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001315static void detect_and_report_smsc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 if (verbose_probing)
1318 printk(KERN_DEBUG "SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001319 smsc_check(0x3f0, 0x55);
1320 smsc_check(0x370, 0x55);
1321 smsc_check(0x3f0, 0x44);
1322 smsc_check(0x370, 0x44);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001324
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001325static void detect_and_report_it87(void)
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001326{
1327 u16 dev;
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001328 u8 origval, r;
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001329 if (verbose_probing)
1330 printk(KERN_DEBUG "IT8705 Super-IO detection, now testing port 2E ...\n");
Alan Cox868d17212011-05-04 10:18:42 +01001331 if (!request_muxed_region(0x2e, 2, __func__))
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001332 return;
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001333 origval = inb(0x2e); /* Save original value */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001334 outb(0x87, 0x2e);
1335 outb(0x01, 0x2e);
1336 outb(0x55, 0x2e);
1337 outb(0x55, 0x2e);
1338 outb(0x20, 0x2e);
1339 dev = inb(0x2f) << 8;
1340 outb(0x21, 0x2e);
1341 dev |= inb(0x2f);
1342 if (dev == 0x8712 || dev == 0x8705 || dev == 0x8715 ||
1343 dev == 0x8716 || dev == 0x8718 || dev == 0x8726) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01001344 pr_info("IT%04X SuperIO detected\n", dev);
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001345 outb(0x07, 0x2E); /* Parallel Port */
1346 outb(0x03, 0x2F);
1347 outb(0xF0, 0x2E); /* BOOT 0x80 off */
1348 r = inb(0x2f);
1349 outb(0xF0, 0x2E);
1350 outb(r | 8, 0x2F);
1351 outb(0x02, 0x2E); /* Lock */
1352 outb(0x02, 0x2F);
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001353 } else {
1354 outb(origval, 0x2e); /* Oops, sorry to disturb */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001355 }
Jens Rottmanne2434dc2009-06-22 16:51:49 +01001356 release_region(0x2e, 2);
Petr Cvekf63fd7e2008-02-06 01:37:48 -08001357}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358#endif /* CONFIG_PARPORT_PC_SUPERIO */
1359
Alan Cox181bf1e2009-06-11 13:08:10 +01001360static struct superio_struct *find_superio(struct parport *p)
1361{
1362 int i;
1363 for (i = 0; i < NR_SUPERIOS; i++)
QiaoChong21698fd2019-02-09 20:59:07 +00001364 if (superios[i].io == p->base)
Alan Cox181bf1e2009-06-11 13:08:10 +01001365 return &superios[i];
1366 return NULL;
1367}
1368
Alan Cox3aeda9b2009-06-11 13:07:29 +01001369static int get_superio_dma(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Alan Cox181bf1e2009-06-11 13:08:10 +01001371 struct superio_struct *s = find_superio(p);
1372 if (s)
1373 return s->dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return PARPORT_DMA_NONE;
1375}
1376
Alan Cox3aeda9b2009-06-11 13:07:29 +01001377static int get_superio_irq(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Alan Cox181bf1e2009-06-11 13:08:10 +01001379 struct superio_struct *s = find_superio(p);
1380 if (s)
1381 return s->irq;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001382 return PARPORT_IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
Michael Buesch73e0d482009-06-11 13:06:31 +01001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386/* --- Mode detection ------------------------------------- */
1387
1388/*
1389 * Checks for port existence, all ports support SPP MODE
Alan Cox3aeda9b2009-06-11 13:07:29 +01001390 * Returns:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 * 0 : No parallel port at this address
Alan Cox3aeda9b2009-06-11 13:07:29 +01001392 * PARPORT_MODE_PCSPP : SPP port detected
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 * (if the user specified an ioport himself,
1394 * this shall always be the case!)
1395 *
1396 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001397static int parport_SPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 unsigned char r, w;
1400
1401 /*
Alan Cox3aeda9b2009-06-11 13:07:29 +01001402 * first clear an eventually pending EPP timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
1404 * that does not even respond to SPP cycles if an EPP
1405 * timeout is pending
1406 */
1407 clear_epp_timeout(pb);
1408
1409 /* Do a simple read-write test to make sure the port exists. */
1410 w = 0xc;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001411 outb(w, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 /* Is there a control register that we can read from? Some
1414 * ports don't allow reads, so read_control just returns a
1415 * software copy. Some ports _do_ allow reads, so bypass the
1416 * software copy here. In addition, some bits aren't
1417 * writable. */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001418 r = inb(CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if ((r & 0xf) == w) {
1420 w = 0xe;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001421 outb(w, CONTROL(pb));
1422 r = inb(CONTROL(pb));
1423 outb(0xc, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if ((r & 0xf) == w)
1425 return PARPORT_MODE_PCSPP;
1426 }
1427
1428 if (user_specified)
1429 /* That didn't work, but the user thinks there's a
1430 * port here. */
Joe Perchesdecf26f2020-04-03 14:43:16 +01001431 pr_info("parport 0x%lx (WARNING): CTR: wrote 0x%02x, read 0x%02x\n",
1432 pb->base, w, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 /* Try the data register. The data lines aren't tri-stated at
1435 * this stage, so we expect back what we wrote. */
1436 w = 0xaa;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001437 parport_pc_write_data(pb, w);
1438 r = parport_pc_read_data(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (r == w) {
1440 w = 0x55;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001441 parport_pc_write_data(pb, w);
1442 r = parport_pc_read_data(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (r == w)
1444 return PARPORT_MODE_PCSPP;
1445 }
1446
1447 if (user_specified) {
1448 /* Didn't work, but the user is convinced this is the
1449 * place. */
Joe Perchesdecf26f2020-04-03 14:43:16 +01001450 pr_info("parport 0x%lx (WARNING): DATA: wrote 0x%02x, read 0x%02x\n",
1451 pb->base, w, r);
1452 pr_info("parport 0x%lx: You gave this address, but there is probably no parallel port there!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 pb->base);
1454 }
1455
1456 /* It's possible that we can't read the control register or
1457 * the data register. In that case just believe the user. */
1458 if (user_specified)
1459 return PARPORT_MODE_PCSPP;
1460
1461 return 0;
1462}
1463
1464/* Check for ECR
1465 *
1466 * Old style XT ports alias io ports every 0x400, hence accessing ECR
1467 * on these cards actually accesses the CTR.
1468 *
1469 * Modern cards don't do this but reading from ECR will return 0xff
1470 * regardless of what is written here if the card does NOT support
1471 * ECP.
1472 *
1473 * We first check to see if ECR is the same as CTR. If not, the low
1474 * two bits of ECR aren't writable, so we check by writing ECR and
1475 * reading it back to see if it's what we expect.
1476 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001477static int parport_ECR_present(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 struct parport_pc_private *priv = pb->private_data;
1480 unsigned char r = 0xc;
1481
Alan Cox3aeda9b2009-06-11 13:07:29 +01001482 outb(r, CONTROL(pb));
1483 if ((inb(ECONTROL(pb)) & 0x3) == (r & 0x3)) {
1484 outb(r ^ 0x2, CONTROL(pb)); /* Toggle bit 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Alan Cox3aeda9b2009-06-11 13:07:29 +01001486 r = inb(CONTROL(pb));
1487 if ((inb(ECONTROL(pb)) & 0x2) == (r & 0x2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 goto no_reg; /* Sure that no ECR register exists */
1489 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01001490
1491 if ((inb(ECONTROL(pb)) & 0x3) != 0x1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 goto no_reg;
1493
Alan Cox3aeda9b2009-06-11 13:07:29 +01001494 ECR_WRITE(pb, 0x34);
1495 if (inb(ECONTROL(pb)) != 0x35)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 goto no_reg;
1497
1498 priv->ecr = 1;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001499 outb(0xc, CONTROL(pb));
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 /* Go to mode 000 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001502 frob_set_mode(pb, ECR_SPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 return 1;
1505
1506 no_reg:
Alan Cox3aeda9b2009-06-11 13:07:29 +01001507 outb(0xc, CONTROL(pb));
1508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
1511#ifdef CONFIG_PARPORT_1284
1512/* Detect PS/2 support.
1513 *
1514 * Bit 5 (0x20) sets the PS/2 data direction; setting this high
1515 * allows us to read data from the data lines. In theory we would get back
1516 * 0xff but any peripheral attached to the port may drag some or all of the
1517 * lines down to zero. So if we get back anything that isn't the contents
Alan Cox3aeda9b2009-06-11 13:07:29 +01001518 * of the data register we deem PS/2 support to be present.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 *
1520 * Some SPP ports have "half PS/2" ability - you can't turn off the line
1521 * drivers, but an external peripheral with sufficiently beefy drivers of
1522 * its own can overpower them and assert its own levels onto the bus, from
1523 * where they can then be read back as normal. Ports with this property
1524 * and the right type of device attached are likely to fail the SPP test,
1525 * (as they will appear to have stuck bits) and so the fact that they might
Alan Cox3aeda9b2009-06-11 13:07:29 +01001526 * be misdetected here is rather academic.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 */
1528
Randy.Dunlap96766a32006-04-18 22:21:57 -07001529static int parport_PS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
1531 int ok = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 clear_epp_timeout(pb);
1534
1535 /* try to tri-state the buffer */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001536 parport_pc_data_reverse(pb);
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 parport_pc_write_data(pb, 0x55);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001539 if (parport_pc_read_data(pb) != 0x55)
1540 ok++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 parport_pc_write_data(pb, 0xaa);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001543 if (parport_pc_read_data(pb) != 0xaa)
1544 ok++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* cancel input mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001547 parport_pc_data_forward(pb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 if (ok) {
1550 pb->modes |= PARPORT_MODE_TRISTATE;
1551 } else {
1552 struct parport_pc_private *priv = pb->private_data;
1553 priv->ctr_writable &= ~0x20;
1554 }
1555
1556 return ok;
1557}
1558
1559#ifdef CONFIG_PARPORT_PC_FIFO
David Brownell55265b02008-02-13 15:03:21 -08001560static int parport_ECP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
1562 int i;
1563 int config, configb;
1564 int pword;
1565 struct parport_pc_private *priv = pb->private_data;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001566 /* Translate ECP intrLine to ISA irq value */
1567 static const int intrline[] = { 0, 7, 9, 10, 11, 14, 15, 5 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 /* If there is no ECR, we have no hope of supporting ECP. */
1570 if (!priv->ecr)
1571 return 0;
1572
1573 /* Find out FIFO depth */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001574 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1575 ECR_WRITE(pb, ECR_TST << 5); /* TEST FIFO */
1576 for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02); i++)
1577 outb(0xaa, FIFO(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 /*
1580 * Using LGS chipset it uses ECR register, but
1581 * it doesn't support ECP or FIFO MODE
1582 */
1583 if (i == 1024) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001584 ECR_WRITE(pb, ECR_SPP << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 return 0;
1586 }
1587
1588 priv->fifo_depth = i;
1589 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001590 printk(KERN_DEBUG "0x%lx: FIFO is %d bytes\n", pb->base, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 /* Find out writeIntrThreshold */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001593 frob_econtrol(pb, 1<<2, 1<<2);
1594 frob_econtrol(pb, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 for (i = 1; i <= priv->fifo_depth; i++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001596 inb(FIFO(pb));
1597 udelay(50);
1598 if (inb(ECONTROL(pb)) & (1<<2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 break;
1600 }
1601
1602 if (i <= priv->fifo_depth) {
1603 if (verbose_probing)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001604 printk(KERN_DEBUG "0x%lx: writeIntrThreshold is %d\n",
Joe Perchesaa3d6e72020-04-03 14:43:17 +01001605 pb->base, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 } else
1607 /* Number of bytes we know we can write if we get an
Alan Cox3aeda9b2009-06-11 13:07:29 +01001608 interrupt. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 i = 0;
1610
1611 priv->writeIntrThreshold = i;
1612
1613 /* Find out readIntrThreshold */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001614 frob_set_mode(pb, ECR_PS2); /* Reset FIFO and enable PS2 */
1615 parport_pc_data_reverse(pb); /* Must be in PS2 mode */
1616 frob_set_mode(pb, ECR_TST); /* Test FIFO */
1617 frob_econtrol(pb, 1<<2, 1<<2);
1618 frob_econtrol(pb, 1<<2, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 for (i = 1; i <= priv->fifo_depth; i++) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001620 outb(0xaa, FIFO(pb));
1621 if (inb(ECONTROL(pb)) & (1<<2))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 break;
1623 }
1624
1625 if (i <= priv->fifo_depth) {
1626 if (verbose_probing)
Joe Perchesdecf26f2020-04-03 14:43:16 +01001627 pr_info("0x%lx: readIntrThreshold is %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 pb->base, i);
1629 } else
1630 /* Number of bytes we can read if we get an interrupt. */
1631 i = 0;
1632
1633 priv->readIntrThreshold = i;
1634
Alan Cox3aeda9b2009-06-11 13:07:29 +01001635 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1636 ECR_WRITE(pb, 0xf4); /* Configuration mode */
1637 config = inb(CONFIGA(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 pword = (config >> 4) & 0x7;
1639 switch (pword) {
1640 case 0:
1641 pword = 2;
Joe Perchesdecf26f2020-04-03 14:43:16 +01001642 pr_warn("0x%lx: Unsupported pword size!\n", pb->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 break;
1644 case 2:
1645 pword = 4;
Joe Perchesdecf26f2020-04-03 14:43:16 +01001646 pr_warn("0x%lx: Unsupported pword size!\n", pb->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 break;
1648 default:
Joe Perchesdecf26f2020-04-03 14:43:16 +01001649 pr_warn("0x%lx: Unknown implementation ID\n", pb->base);
Gustavo A. R. Silvaaa1f0fa2018-11-25 21:48:45 +00001650 /* Fall through - Assume 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 case 1:
1652 pword = 1;
1653 }
1654 priv->pword = pword;
1655
1656 if (verbose_probing) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01001657 printk(KERN_DEBUG "0x%lx: PWord is %d bits\n",
Joe Perchesaa3d6e72020-04-03 14:43:17 +01001658 pb->base, 8 * pword);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001659
Joe Perchesaa3d6e72020-04-03 14:43:17 +01001660 printk(KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n",
1661 pb->base, config & 0x80 ? "Level" : "Pulses");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Alan Cox3aeda9b2009-06-11 13:07:29 +01001663 configb = inb(CONFIGB(pb));
1664 printk(KERN_DEBUG "0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
Joe Perchesaa3d6e72020-04-03 14:43:17 +01001665 pb->base, config, configb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001666 printk(KERN_DEBUG "0x%lx: ECP settings irq=", pb->base);
1667 if ((configb >> 3) & 0x07)
Mikulas Patocka6979b922017-08-12 22:45:48 +01001668 pr_cont("%d", intrline[(configb >> 3) & 0x07]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 else
Mikulas Patocka6979b922017-08-12 22:45:48 +01001670 pr_cont("<none or set by other means>");
1671 pr_cont(" dma=");
Alan Cox3aeda9b2009-06-11 13:07:29 +01001672 if ((configb & 0x03) == 0x00)
Mikulas Patocka6979b922017-08-12 22:45:48 +01001673 pr_cont("<none or set by other means>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 else
Mikulas Patocka6979b922017-08-12 22:45:48 +01001675 pr_cont("%d\n", configb & 0x07);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
1677
1678 /* Go back to mode 000 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001679 frob_set_mode(pb, ECR_SPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 return 1;
1682}
1683#endif
1684
Matwey V. Kornilov0ae39cc2014-08-27 12:07:44 +04001685#ifdef CONFIG_X86_32
1686static int intel_bug_present_check_epp(struct parport *pb)
Matwey V. Kornilov17891c82014-08-27 12:07:43 +04001687{
1688 const struct parport_pc_private *priv = pb->private_data;
1689 int bug_present = 0;
1690
1691 if (priv->ecr) {
1692 /* store value of ECR */
1693 unsigned char ecr = inb(ECONTROL(pb));
1694 unsigned char i;
1695 for (i = 0x00; i < 0x80; i += 0x20) {
1696 ECR_WRITE(pb, i);
1697 if (clear_epp_timeout(pb)) {
1698 /* Phony EPP in ECP. */
1699 bug_present = 1;
1700 break;
1701 }
1702 }
1703 /* return ECR into the inital state */
1704 ECR_WRITE(pb, ecr);
1705 }
1706
1707 return bug_present;
1708}
Matwey V. Kornilov0ae39cc2014-08-27 12:07:44 +04001709static int intel_bug_present(struct parport *pb)
1710{
1711/* Check whether the device is legacy, not PCI or PCMCIA. Only legacy is known to be affected. */
1712 if (pb->dev != NULL) {
1713 return 0;
1714 }
1715
1716 return intel_bug_present_check_epp(pb);
1717}
1718#else
1719static int intel_bug_present(struct parport *pb)
1720{
1721 return 0;
1722}
1723#endif /* CONFIG_X86_32 */
Matwey V. Kornilov17891c82014-08-27 12:07:43 +04001724
Randy.Dunlap96766a32006-04-18 22:21:57 -07001725static int parport_ECPPS2_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
1727 const struct parport_pc_private *priv = pb->private_data;
1728 int result;
1729 unsigned char oecr;
1730
1731 if (!priv->ecr)
1732 return 0;
1733
Alan Cox3aeda9b2009-06-11 13:07:29 +01001734 oecr = inb(ECONTROL(pb));
1735 ECR_WRITE(pb, ECR_PS2 << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 result = parport_PS2_supported(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001737 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return result;
1739}
1740
1741/* EPP mode detection */
1742
Randy.Dunlap96766a32006-04-18 22:21:57 -07001743static int parport_EPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 /*
1746 * Theory:
1747 * Bit 0 of STR is the EPP timeout bit, this bit is 0
1748 * when EPP is possible and is set high when an EPP timeout
1749 * occurs (EPP uses the HALT line to stop the CPU while it does
1750 * the byte transfer, an EPP timeout occurs if the attached
1751 * device fails to respond after 10 micro seconds).
1752 *
1753 * This bit is cleared by either reading it (National Semi)
1754 * or writing a 1 to the bit (SMC, UMC, WinBond), others ???
1755 * This bit is always high in non EPP modes.
1756 */
1757
1758 /* If EPP timeout bit clear then EPP available */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001759 if (!clear_epp_timeout(pb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return 0; /* No way to clear timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 /* Check for Intel bug. */
Matwey V. Kornilov17891c82014-08-27 12:07:43 +04001763 if (intel_bug_present(pb))
1764 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 pb->modes |= PARPORT_MODE_EPP;
1767
1768 /* Set up access functions to use EPP hardware. */
1769 pb->ops->epp_read_data = parport_pc_epp_read_data;
1770 pb->ops->epp_write_data = parport_pc_epp_write_data;
1771 pb->ops->epp_read_addr = parport_pc_epp_read_addr;
1772 pb->ops->epp_write_addr = parport_pc_epp_write_addr;
1773
1774 return 1;
1775}
1776
Randy.Dunlap96766a32006-04-18 22:21:57 -07001777static int parport_ECPEPP_supported(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 struct parport_pc_private *priv = pb->private_data;
1780 int result;
1781 unsigned char oecr;
1782
Alan Cox3aeda9b2009-06-11 13:07:29 +01001783 if (!priv->ecr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Alan Cox3aeda9b2009-06-11 13:07:29 +01001786 oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 /* Search for SMC style EPP+ECP mode */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001788 ECR_WRITE(pb, 0x80);
1789 outb(0x04, CONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 result = parport_EPP_supported(pb);
1791
Alan Cox3aeda9b2009-06-11 13:07:29 +01001792 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 if (result) {
1795 /* Set up access functions to use ECP+EPP hardware. */
1796 pb->ops->epp_read_data = parport_pc_ecpepp_read_data;
1797 pb->ops->epp_write_data = parport_pc_ecpepp_write_data;
1798 pb->ops->epp_read_addr = parport_pc_ecpepp_read_addr;
1799 pb->ops->epp_write_addr = parport_pc_ecpepp_write_addr;
1800 }
1801
1802 return result;
1803}
1804
1805#else /* No IEEE 1284 support */
1806
1807/* Don't bother probing for modes we know we won't use. */
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001808static int parport_PS2_supported(struct parport *pb) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809#ifdef CONFIG_PARPORT_PC_FIFO
Alan Cox3aeda9b2009-06-11 13:07:29 +01001810static int parport_ECP_supported(struct parport *pb)
1811{
1812 return 0;
1813}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814#endif
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001815static int parport_EPP_supported(struct parport *pb)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001816{
1817 return 0;
1818}
1819
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001820static int parport_ECPEPP_supported(struct parport *pb)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001821{
1822 return 0;
1823}
1824
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08001825static int parport_ECPPS2_supported(struct parport *pb)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001826{
1827 return 0;
1828}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830#endif /* No IEEE 1284 support */
1831
1832/* --- IRQ detection -------------------------------------- */
1833
1834/* Only if supports ECP mode */
Randy Dunlap44389822006-12-06 20:38:33 -08001835static int programmable_irq_support(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
1837 int irq, intrLine;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001838 unsigned char oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 static const int lookup[8] = {
1840 PARPORT_IRQ_NONE, 7, 9, 10, 11, 14, 15, 5
1841 };
1842
Alan Cox3aeda9b2009-06-11 13:07:29 +01001843 ECR_WRITE(pb, ECR_CNF << 5); /* Configuration MODE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Alan Cox3aeda9b2009-06-11 13:07:29 +01001845 intrLine = (inb(CONFIGB(pb)) >> 3) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 irq = lookup[intrLine];
1847
Alan Cox3aeda9b2009-06-11 13:07:29 +01001848 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return irq;
1850}
1851
Randy Dunlap44389822006-12-06 20:38:33 -08001852static int irq_probe_ECP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
1854 int i;
1855 unsigned long irqs;
1856
1857 irqs = probe_irq_on();
Alan Cox3aeda9b2009-06-11 13:07:29 +01001858
1859 ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */
1860 ECR_WRITE(pb, (ECR_TST << 5) | 0x04);
1861 ECR_WRITE(pb, ECR_TST << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 /* If Full FIFO sure that writeIntrThreshold is generated */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001864 for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02) ; i++)
1865 outb(0xaa, FIFO(pb));
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 pb->irq = probe_irq_off(irqs);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001868 ECR_WRITE(pb, ECR_SPP << 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 if (pb->irq <= 0)
1871 pb->irq = PARPORT_IRQ_NONE;
1872
1873 return pb->irq;
1874}
1875
1876/*
1877 * This detection seems that only works in National Semiconductors
Alan Cox3aeda9b2009-06-11 13:07:29 +01001878 * This doesn't work in SMC, LGS, and Winbond
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
Randy Dunlap44389822006-12-06 20:38:33 -08001880static int irq_probe_EPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882#ifndef ADVANCED_DETECT
1883 return PARPORT_IRQ_NONE;
1884#else
1885 int irqs;
1886 unsigned char oecr;
1887
1888 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001889 oecr = inb(ECONTROL(pb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 irqs = probe_irq_on();
1892
1893 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001894 frob_econtrol(pb, 0x10, 0x10);
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 clear_epp_timeout(pb);
Alan Cox3aeda9b2009-06-11 13:07:29 +01001897 parport_pc_frob_control(pb, 0x20, 0x20);
1898 parport_pc_frob_control(pb, 0x10, 0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 clear_epp_timeout(pb);
1900
1901 /* Device isn't expecting an EPP read
1902 * and generates an IRQ.
1903 */
1904 parport_pc_read_epp(pb);
1905 udelay(20);
1906
Alan Cox3aeda9b2009-06-11 13:07:29 +01001907 pb->irq = probe_irq_off(irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (pb->modes & PARPORT_MODE_PCECR)
Alan Cox3aeda9b2009-06-11 13:07:29 +01001909 ECR_WRITE(pb, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 parport_pc_write_control(pb, 0xc);
1911
1912 if (pb->irq <= 0)
1913 pb->irq = PARPORT_IRQ_NONE;
1914
1915 return pb->irq;
1916#endif /* Advanced detection */
1917}
1918
Randy Dunlap44389822006-12-06 20:38:33 -08001919static int irq_probe_SPP(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 /* Don't even try to do this. */
1922 return PARPORT_IRQ_NONE;
1923}
1924
1925/* We will attempt to share interrupt requests since other devices
1926 * such as sound cards and network cards seem to like using the
1927 * printer IRQs.
1928 *
1929 * When ECP is available we can autoprobe for IRQs.
1930 * NOTE: If we can autoprobe it, we can register the IRQ.
1931 */
Randy.Dunlap96766a32006-04-18 22:21:57 -07001932static int parport_irq_probe(struct parport *pb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 struct parport_pc_private *priv = pb->private_data;
1935
1936 if (priv->ecr) {
1937 pb->irq = programmable_irq_support(pb);
1938
1939 if (pb->irq == PARPORT_IRQ_NONE)
1940 pb->irq = irq_probe_ECP(pb);
1941 }
1942
1943 if ((pb->irq == PARPORT_IRQ_NONE) && priv->ecr &&
1944 (pb->modes & PARPORT_MODE_EPP))
1945 pb->irq = irq_probe_EPP(pb);
1946
1947 clear_epp_timeout(pb);
1948
1949 if (pb->irq == PARPORT_IRQ_NONE && (pb->modes & PARPORT_MODE_EPP))
1950 pb->irq = irq_probe_EPP(pb);
1951
1952 clear_epp_timeout(pb);
1953
1954 if (pb->irq == PARPORT_IRQ_NONE)
1955 pb->irq = irq_probe_SPP(pb);
1956
1957 if (pb->irq == PARPORT_IRQ_NONE)
1958 pb->irq = get_superio_irq(pb);
1959
1960 return pb->irq;
1961}
1962
1963/* --- DMA detection -------------------------------------- */
1964
1965/* Only if chipset conforms to ECP ISA Interface Standard */
Alan Cox3aeda9b2009-06-11 13:07:29 +01001966static int programmable_dma_support(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Alan Cox3aeda9b2009-06-11 13:07:29 +01001968 unsigned char oecr = inb(ECONTROL(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 int dma;
1970
Alan Cox3aeda9b2009-06-11 13:07:29 +01001971 frob_set_mode(p, ECR_CNF);
1972
1973 dma = inb(CONFIGB(p)) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 /* 000: Indicates jumpered 8-bit DMA if read-only.
1975 100: Indicates jumpered 16-bit DMA if read-only. */
1976 if ((dma & 0x03) == 0)
1977 dma = PARPORT_DMA_NONE;
1978
Alan Cox3aeda9b2009-06-11 13:07:29 +01001979 ECR_WRITE(p, oecr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return dma;
1981}
1982
Alan Cox3aeda9b2009-06-11 13:07:29 +01001983static int parport_dma_probe(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
1985 const struct parport_pc_private *priv = p->private_data;
Alan Cox3aeda9b2009-06-11 13:07:29 +01001986 if (priv->ecr) /* ask ECP chipset first */
1987 p->dma = programmable_dma_support(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 if (p->dma == PARPORT_DMA_NONE) {
1989 /* ask known Super-IO chips proper, although these
1990 claim ECP compatible, some don't report their DMA
1991 conforming to ECP standards */
1992 p->dma = get_superio_dma(p);
1993 }
1994
1995 return p->dma;
1996}
1997
1998/* --- Initialisation code -------------------------------- */
1999
2000static LIST_HEAD(ports_list);
2001static DEFINE_SPINLOCK(ports_lock);
2002
Alan Cox51dcdfe2009-04-07 15:30:57 +01002003struct parport *parport_pc_probe_port(unsigned long int base,
2004 unsigned long int base_hi,
2005 int irq, int dma,
2006 struct device *dev,
2007 int irqflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 struct parport_pc_private *priv;
2010 struct parport_operations *ops;
2011 struct parport *p;
2012 int probedirq = PARPORT_IRQ_NONE;
2013 struct resource *base_res;
2014 struct resource *ECR_res = NULL;
2015 struct resource *EPP_res = NULL;
Jean Delvarea7d801a2007-05-08 00:27:40 -07002016 struct platform_device *pdev = NULL;
Russell King93b11b22013-06-27 13:49:14 +01002017 int ret;
Jean Delvarea7d801a2007-05-08 00:27:40 -07002018
2019 if (!dev) {
2020 /* We need a physical device to attach to, but none was
2021 * provided. Create our own. */
2022 pdev = platform_device_register_simple("parport_pc",
2023 base, NULL, 0);
2024 if (IS_ERR(pdev))
2025 return NULL;
2026 dev = &pdev->dev;
FUJITA Tomonoridfa7c4d2009-06-22 16:54:27 +01002027
Russell King93b11b22013-06-27 13:49:14 +01002028 ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(24));
2029 if (ret) {
2030 dev_err(dev, "Unable to set coherent dma mask: disabling DMA\n");
2031 dma = PARPORT_DMA_NONE;
2032 }
Jean Delvarea7d801a2007-05-08 00:27:40 -07002033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Alan Cox51dcdfe2009-04-07 15:30:57 +01002035 ops = kmalloc(sizeof(struct parport_operations), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (!ops)
2037 goto out1;
2038
Alan Cox51dcdfe2009-04-07 15:30:57 +01002039 priv = kmalloc(sizeof(struct parport_pc_private), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (!priv)
2041 goto out2;
2042
2043 /* a misnomer, actually - it's allocate and reserve parport number */
2044 p = parport_register_port(base, irq, dma, ops);
2045 if (!p)
2046 goto out3;
2047
2048 base_res = request_region(base, 3, p->name);
2049 if (!base_res)
2050 goto out4;
2051
Alan Cox3aeda9b2009-06-11 13:07:29 +01002052 memcpy(ops, &parport_pc_ops, sizeof(struct parport_operations));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 priv->ctr = 0xc;
2054 priv->ctr_writable = ~0x10;
2055 priv->ecr = 0;
2056 priv->fifo_depth = 0;
2057 priv->dma_buf = NULL;
2058 priv->dma_handle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 INIT_LIST_HEAD(&priv->list);
2060 priv->port = p;
David Brownellc15a3832007-05-08 00:27:35 -07002061
2062 p->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 p->base_hi = base_hi;
2064 p->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_SAFEININT;
2065 p->private_data = priv;
2066
2067 if (base_hi) {
2068 ECR_res = request_region(base_hi, 3, p->name);
2069 if (ECR_res)
2070 parport_ECR_present(p);
2071 }
2072
2073 if (base != 0x3bc) {
2074 EPP_res = request_region(base+0x3, 5, p->name);
2075 if (EPP_res)
2076 if (!parport_EPP_supported(p))
2077 parport_ECPEPP_supported(p);
2078 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002079 if (!parport_SPP_supported(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 /* No port. */
2081 goto out5;
2082 if (priv->ecr)
2083 parport_ECPPS2_supported(p);
2084 else
2085 parport_PS2_supported(p);
2086
Alan Cox3aeda9b2009-06-11 13:07:29 +01002087 p->size = (p->modes & PARPORT_MODE_EPP) ? 8 : 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Joe Perchesdecf26f2020-04-03 14:43:16 +01002089 pr_info("%s: PC-style at 0x%lx", p->name, p->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 if (p->base_hi && priv->ecr)
Joe Perchesdecf26f2020-04-03 14:43:16 +01002091 pr_cont(" (0x%lx)", p->base_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (p->irq == PARPORT_IRQ_AUTO) {
2093 p->irq = PARPORT_IRQ_NONE;
2094 parport_irq_probe(p);
2095 } else if (p->irq == PARPORT_IRQ_PROBEONLY) {
2096 p->irq = PARPORT_IRQ_NONE;
2097 parport_irq_probe(p);
2098 probedirq = p->irq;
2099 p->irq = PARPORT_IRQ_NONE;
2100 }
2101 if (p->irq != PARPORT_IRQ_NONE) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002102 pr_cont(", irq %d", p->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 priv->ctr_writable |= 0x10;
2104
2105 if (p->dma == PARPORT_DMA_AUTO) {
2106 p->dma = PARPORT_DMA_NONE;
2107 parport_dma_probe(p);
2108 }
2109 }
2110 if (p->dma == PARPORT_DMA_AUTO) /* To use DMA, giving the irq
Alan Cox3aeda9b2009-06-11 13:07:29 +01002111 is mandatory (see above) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 p->dma = PARPORT_DMA_NONE;
2113
2114#ifdef CONFIG_PARPORT_PC_FIFO
2115 if (parport_ECP_supported(p) &&
2116 p->dma != PARPORT_DMA_NOFIFO &&
2117 priv->fifo_depth > 0 && p->irq != PARPORT_IRQ_NONE) {
2118 p->modes |= PARPORT_MODE_ECP | PARPORT_MODE_COMPAT;
2119 p->ops->compat_write_data = parport_pc_compat_write_block_pio;
2120#ifdef CONFIG_PARPORT_1284
2121 p->ops->ecp_write_data = parport_pc_ecp_write_block_pio;
2122 /* currently broken, but working on it.. (FB) */
2123 /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */
2124#endif /* IEEE 1284 support */
2125 if (p->dma != PARPORT_DMA_NONE) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002126 pr_cont(", dma %d", p->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 p->modes |= PARPORT_MODE_DMA;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002128 } else
Joe Perchesdecf26f2020-04-03 14:43:16 +01002129 pr_cont(", using FIFO");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002130 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 /* We can't use the DMA channel after all. */
2132 p->dma = PARPORT_DMA_NONE;
2133#endif /* Allowed to use FIFO/DMA */
2134
Joe Perchesdecf26f2020-04-03 14:43:16 +01002135 pr_cont(" [");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002136
Joe Perchesa6abfdf2020-04-03 14:43:22 +01002137#define printmode(x) \
2138do { \
2139 if (p->modes & PARPORT_MODE_##x) \
2140 pr_cont("%s%s", f++ ? "," : "", #x); \
2141} while (0)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 {
2144 int f = 0;
2145 printmode(PCSPP);
2146 printmode(TRISTATE);
Joe Perchesa6abfdf2020-04-03 14:43:22 +01002147 printmode(COMPAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 printmode(EPP);
2149 printmode(ECP);
2150 printmode(DMA);
2151 }
2152#undef printmode
2153#ifndef CONFIG_PARPORT_1284
Joe Perchesdecf26f2020-04-03 14:43:16 +01002154 pr_cont("(,...)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155#endif /* CONFIG_PARPORT_1284 */
Joe Perchesdecf26f2020-04-03 14:43:16 +01002156 pr_cont("]\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002157 if (probedirq != PARPORT_IRQ_NONE)
Joe Perchesdecf26f2020-04-03 14:43:16 +01002158 pr_info("%s: irq %d detected\n", p->name, probedirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 /* If No ECP release the ports grabbed above. */
2161 if (ECR_res && (p->modes & PARPORT_MODE_ECP) == 0) {
2162 release_region(base_hi, 3);
2163 ECR_res = NULL;
2164 }
2165 /* Likewise for EEP ports */
2166 if (EPP_res && (p->modes & PARPORT_MODE_EPP) == 0) {
2167 release_region(base+3, 5);
2168 EPP_res = NULL;
2169 }
2170 if (p->irq != PARPORT_IRQ_NONE) {
Alan Cox51dcdfe2009-04-07 15:30:57 +01002171 if (request_irq(p->irq, parport_irq_handler,
2172 irqflags, p->name, p)) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002173 pr_warn("%s: irq %d in use, resorting to polled operation\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 p->name, p->irq);
2175 p->irq = PARPORT_IRQ_NONE;
2176 p->dma = PARPORT_DMA_NONE;
2177 }
2178
2179#ifdef CONFIG_PARPORT_PC_FIFO
Al Viro7fbacd52005-05-04 05:39:32 +01002180#ifdef HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (p->dma != PARPORT_DMA_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002182 if (request_dma(p->dma, p->name)) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002183 pr_warn("%s: dma %d in use, resorting to PIO operation\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 p->name, p->dma);
2185 p->dma = PARPORT_DMA_NONE;
2186 } else {
2187 priv->dma_buf =
David Brownellc15a3832007-05-08 00:27:35 -07002188 dma_alloc_coherent(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 PAGE_SIZE,
David Brownellc15a3832007-05-08 00:27:35 -07002190 &priv->dma_handle,
2191 GFP_KERNEL);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002192 if (!priv->dma_buf) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002193 pr_warn("%s: cannot get buffer for DMA, resorting to PIO operation\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 p->name);
2195 free_dma(p->dma);
2196 p->dma = PARPORT_DMA_NONE;
2197 }
2198 }
2199 }
Al Viro7fbacd52005-05-04 05:39:32 +01002200#endif
2201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203
2204 /* Done probing. Now put the port into a sensible start-up state. */
2205 if (priv->ecr)
2206 /*
2207 * Put the ECP detected port in PS2 mode.
2208 * Do this also for ports that have ECR but don't do ECP.
2209 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002210 ECR_WRITE(p, 0x34);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 parport_pc_write_data(p, 0);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002213 parport_pc_data_forward(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 /* Now that we've told the sharing engine about the port, and
2216 found out its characteristics, let the high-level drivers
2217 know about it. */
2218 spin_lock(&ports_lock);
2219 list_add(&priv->list, &ports_list);
2220 spin_unlock(&ports_lock);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002221 parport_announce_port(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 return p;
2224
2225out5:
2226 if (ECR_res)
2227 release_region(base_hi, 3);
2228 if (EPP_res)
2229 release_region(base+0x3, 5);
2230 release_region(base, 3);
2231out4:
Sudip Mukherjee6fa45a22015-05-20 20:56:57 +05302232 parport_del_port(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233out3:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002234 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235out2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002236 kfree(ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237out1:
Jean Delvarea7d801a2007-05-08 00:27:40 -07002238 if (pdev)
2239 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return NULL;
2241}
Alan Cox3aeda9b2009-06-11 13:07:29 +01002242EXPORT_SYMBOL(parport_pc_probe_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Alan Cox3aeda9b2009-06-11 13:07:29 +01002244void parport_pc_unregister_port(struct parport *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
2246 struct parport_pc_private *priv = p->private_data;
2247 struct parport_operations *ops = p->ops;
2248
2249 parport_remove_port(p);
2250 spin_lock(&ports_lock);
2251 list_del_init(&priv->list);
2252 spin_unlock(&ports_lock);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002253#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (p->dma != PARPORT_DMA_NONE)
2255 free_dma(p->dma);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002256#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 if (p->irq != PARPORT_IRQ_NONE)
2258 free_irq(p->irq, p);
2259 release_region(p->base, 3);
2260 if (p->size > 3)
2261 release_region(p->base + 3, p->size - 3);
2262 if (p->modes & PARPORT_MODE_ECP)
2263 release_region(p->base_hi, 3);
Andrew Mortond1c4ac42006-01-08 01:05:05 -08002264#if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (priv->dma_buf)
David Brownellc15a3832007-05-08 00:27:35 -07002266 dma_free_coherent(p->physport->dev, PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 priv->dma_buf,
2268 priv->dma_handle);
Al Viro7fbacd52005-05-04 05:39:32 +01002269#endif
Alan Cox3aeda9b2009-06-11 13:07:29 +01002270 kfree(p->private_data);
Sudip Mukherjee6fa45a22015-05-20 20:56:57 +05302271 parport_del_port(p);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002272 kfree(ops); /* hope no-one cached it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
Alan Cox3aeda9b2009-06-11 13:07:29 +01002274EXPORT_SYMBOL(parport_pc_unregister_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276#ifdef CONFIG_PCI
2277
2278/* ITE support maintained by Rich Liu <richliu@poorman.org> */
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002279static int sio_ite_8872_probe(struct pci_dev *pdev, int autoirq, int autodma,
2280 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
2282 short inta_addr[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 u32 ite8872set;
2284 u32 ite8872_lpt, ite8872_lpthi;
2285 u8 ite8872_irq, type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 int irq;
2287 int i;
2288
Joe Perches7b399252020-04-03 14:43:21 +01002289 pr_debug("sio_ite_8872_probe()\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002290
2291 /* make sure which one chip */
2292 for (i = 0; i < 5; i++) {
Niels de Vos0f6db212011-04-18 15:26:03 +01002293 if (request_region(inta_addr[i], 32, "it887x")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 int test;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002295 pci_write_config_dword(pdev, 0x60,
Niels de Vose7c310c2007-07-15 23:41:35 -07002296 0xe5000000 | inta_addr[i]);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002297 pci_write_config_dword(pdev, 0x78,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 0x00000000 | inta_addr[i]);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002299 test = inb(inta_addr[i]);
2300 if (test != 0xff)
2301 break;
Niels de Vos0f6db212011-04-18 15:26:03 +01002302 release_region(inta_addr[i], 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 }
2304 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002305 if (i >= 5) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002306 pr_info("parport_pc: cannot find ITE8872 INTA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return 0;
2308 }
2309
Alan Cox3aeda9b2009-06-11 13:07:29 +01002310 type = inb(inta_addr[i] + 0x18);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 type &= 0x0f;
2312
2313 switch (type) {
2314 case 0x2:
Joe Perchesdecf26f2020-04-03 14:43:16 +01002315 pr_info("parport_pc: ITE8871 found (1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 ite8872set = 0x64200000;
2317 break;
2318 case 0xa:
Joe Perchesdecf26f2020-04-03 14:43:16 +01002319 pr_info("parport_pc: ITE8875 found (1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 ite8872set = 0x64200000;
2321 break;
2322 case 0xe:
Joe Perchesdecf26f2020-04-03 14:43:16 +01002323 pr_info("parport_pc: ITE8872 found (2S1P)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 ite8872set = 0x64e00000;
2325 break;
2326 case 0x6:
Joe Perchesdecf26f2020-04-03 14:43:16 +01002327 pr_info("parport_pc: ITE8873 found (1S)\n");
Jiri Kosina9fdbdd02011-10-06 14:29:48 -07002328 release_region(inta_addr[i], 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return 0;
2330 case 0x8:
Joe Perchesdecf26f2020-04-03 14:43:16 +01002331 pr_info("parport_pc: ITE8874 found (2S)\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 default:
Joe Perchesdecf26f2020-04-03 14:43:16 +01002335 pr_info("parport_pc: unknown ITE887x\n");
2336 pr_info("parport_pc: please mail 'lspci -nvv' output to Rich.Liu@ite.com.tw\n");
Jiri Kosina9fdbdd02011-10-06 14:29:48 -07002337 release_region(inta_addr[i], 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 return 0;
2339 }
2340
Alan Cox3aeda9b2009-06-11 13:07:29 +01002341 pci_read_config_byte(pdev, 0x3c, &ite8872_irq);
2342 pci_read_config_dword(pdev, 0x1c, &ite8872_lpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 ite8872_lpt &= 0x0000ff00;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002344 pci_read_config_dword(pdev, 0x20, &ite8872_lpthi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 ite8872_lpthi &= 0x0000ff00;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002346 pci_write_config_dword(pdev, 0x6c, 0xe3000000 | ite8872_lpt);
2347 pci_write_config_dword(pdev, 0x70, 0xe3000000 | ite8872_lpthi);
2348 pci_write_config_dword(pdev, 0x80, (ite8872_lpthi<<16) | ite8872_lpt);
2349 /* SET SPP&EPP , Parallel Port NO DMA , Enable All Function */
2350 /* SET Parallel IRQ */
2351 pci_write_config_dword(pdev, 0x9c,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 ite8872set | (ite8872_irq * 0x11111));
2353
Joe Perches7b399252020-04-03 14:43:21 +01002354 pr_debug("ITE887x: The IRQ is %d\n", ite8872_irq);
2355 pr_debug("ITE887x: The PARALLEL I/O port is 0x%x\n", ite8872_lpt);
2356 pr_debug("ITE887x: The PARALLEL I/O porthi is 0x%x\n", ite8872_lpthi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358 /* Let the user (or defaults) steer us away from interrupts */
2359 irq = ite8872_irq;
2360 if (autoirq != PARPORT_IRQ_AUTO)
2361 irq = PARPORT_IRQ_NONE;
2362
2363 /*
2364 * Release the resource so that parport_pc_probe_port can get it.
2365 */
Niels de Vos0f6db212011-04-18 15:26:03 +01002366 release_region(inta_addr[i], 32);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002367 if (parport_pc_probe_port(ite8872_lpt, ite8872_lpthi,
Alan Cox51dcdfe2009-04-07 15:30:57 +01002368 irq, PARPORT_DMA_NONE, &pdev->dev, 0)) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002369 pr_info("parport_pc: ITE 8872 parallel port: io=0x%X",
2370 ite8872_lpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 if (irq != PARPORT_IRQ_NONE)
Mikulas Patocka6979b922017-08-12 22:45:48 +01002372 pr_cont(", irq=%d", irq);
2373 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 return 1;
2375 }
2376
2377 return 0;
2378}
2379
2380/* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru>
2381 based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002382static int parport_init_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384/* Data for two known VIA chips */
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002385static struct parport_pc_via_data via_686a_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 0x51,
2387 0x50,
2388 0x85,
2389 0x02,
2390 0xE2,
2391 0xF0,
2392 0xE6
2393};
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002394static struct parport_pc_via_data via_8231_data = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 0x45,
2396 0x44,
2397 0x50,
2398 0x04,
2399 0xF2,
2400 0xFA,
2401 0xF6
2402};
2403
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002404static int sio_via_probe(struct pci_dev *pdev, int autoirq, int autodma,
2405 const struct parport_pc_via_data *via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
2407 u8 tmp, tmp2, siofunc;
2408 u8 ppcontrol = 0;
2409 int dma, irq;
2410 unsigned port1, port2;
2411 unsigned have_epp = 0;
2412
2413 printk(KERN_DEBUG "parport_pc: VIA 686A/8231 detected\n");
2414
Alan Cox3aeda9b2009-06-11 13:07:29 +01002415 switch (parport_init_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 case 1:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002417 printk(KERN_DEBUG "parport_pc: setting SPP mode\n");
2418 siofunc = VIA_FUNCTION_PARPORT_SPP;
2419 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 case 2:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002421 printk(KERN_DEBUG "parport_pc: setting PS/2 mode\n");
2422 siofunc = VIA_FUNCTION_PARPORT_SPP;
2423 ppcontrol = VIA_PARPORT_BIDIR;
2424 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 case 3:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002426 printk(KERN_DEBUG "parport_pc: setting EPP mode\n");
2427 siofunc = VIA_FUNCTION_PARPORT_EPP;
2428 ppcontrol = VIA_PARPORT_BIDIR;
2429 have_epp = 1;
2430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 case 4:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002432 printk(KERN_DEBUG "parport_pc: setting ECP mode\n");
2433 siofunc = VIA_FUNCTION_PARPORT_ECP;
2434 ppcontrol = VIA_PARPORT_BIDIR;
2435 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 case 5:
Alan Cox3aeda9b2009-06-11 13:07:29 +01002437 printk(KERN_DEBUG "parport_pc: setting EPP+ECP mode\n");
2438 siofunc = VIA_FUNCTION_PARPORT_ECP;
2439 ppcontrol = VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP;
2440 have_epp = 1;
2441 break;
2442 default:
Joe Perchesaa3d6e72020-04-03 14:43:17 +01002443 printk(KERN_DEBUG "parport_pc: probing current configuration\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002444 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",
Joe Perchesaa3d6e72020-04-03 14:43:17 +01002479 port1);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002480 if (port1 == 0x3BC && have_epp) {
2481 outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
2482 outb((0x378 >> 2), VIA_CONFIG_DATA);
Joe Perchesaa3d6e72020-04-03 14:43:17 +01002483 printk(KERN_DEBUG "parport_pc: Parallel port base changed to 0x378\n");
Alan Cox3aeda9b2009-06-11 13:07:29 +01002484 port1 = 0x378;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
2486
2487 /*
2488 * lock super i/o configuration
2489 */
2490 pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp);
2491 tmp &= ~via->via_pci_superio_config_data;
2492 pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp);
2493
2494 if (siofunc == VIA_FUNCTION_PARPORT_DISABLE) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002495 pr_info("parport_pc: VIA parallel port disabled in BIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 return 0;
2497 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 /* Bits 7-4: PnP Routing for Parallel Port IRQ */
2500 pci_read_config_byte(pdev, via->via_pci_parport_irq_reg, &tmp);
2501 irq = ((tmp & VIA_IRQCONTROL_PARALLEL) >> 4);
2502
Alan Cox3aeda9b2009-06-11 13:07:29 +01002503 if (siofunc == VIA_FUNCTION_PARPORT_ECP) {
2504 /* Bits 3-2: PnP Routing for Parallel Port DMA */
2505 pci_read_config_byte(pdev, via->via_pci_parport_dma_reg, &tmp);
2506 dma = ((tmp & VIA_DMACONTROL_PARALLEL) >> 2);
2507 } else
2508 /* if ECP not enabled, DMA is not enabled, assumed
2509 bogus 'dma' value */
2510 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512 /* Let the user (or defaults) steer us away from interrupts and DMA */
2513 if (autoirq == PARPORT_IRQ_NONE) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002514 irq = PARPORT_IRQ_NONE;
2515 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
2517 if (autodma == PARPORT_DMA_NONE)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002518 dma = PARPORT_DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520 switch (port1) {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002521 case 0x3bc:
2522 port2 = 0x7bc; break;
2523 case 0x378:
2524 port2 = 0x778; break;
2525 case 0x278:
2526 port2 = 0x678; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 default:
Joe Perchesdecf26f2020-04-03 14:43:16 +01002528 pr_info("parport_pc: Weird VIA parport base 0x%X, ignoring\n",
2529 port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 return 0;
2531 }
2532
2533 /* filter bogus IRQs */
2534 switch (irq) {
2535 case 0:
2536 case 2:
2537 case 8:
2538 case 13:
2539 irq = PARPORT_IRQ_NONE;
2540 break;
2541
2542 default: /* do nothing */
2543 break;
2544 }
2545
2546 /* finally, do the probe with values obtained */
Alan Cox3aeda9b2009-06-11 13:07:29 +01002547 if (parport_pc_probe_port(port1, port2, irq, dma, &pdev->dev, 0)) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01002548 pr_info("parport_pc: VIA parallel port: io=0x%X", port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 if (irq != PARPORT_IRQ_NONE)
Mikulas Patocka6979b922017-08-12 22:45:48 +01002550 pr_cont(", irq=%d", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if (dma != PARPORT_DMA_NONE)
Mikulas Patocka6979b922017-08-12 22:45:48 +01002552 pr_cont(", dma=%d", dma);
2553 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 return 1;
2555 }
Alan Cox3aeda9b2009-06-11 13:07:29 +01002556
Joe Perchesdecf26f2020-04-03 14:43:16 +01002557 pr_warn("parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 port1, irq, dma);
2559 return 0;
2560}
2561
2562
2563enum parport_pc_sio_types {
Alan Cox3aeda9b2009-06-11 13:07:29 +01002564 sio_via_686a = 0, /* Via VT82C686A motherboard Super I/O */
2565 sio_via_8231, /* Via VT8231 south bridge integrated Super IO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 sio_ite_8872,
2567 last_sio
2568};
2569
2570/* each element directly indexed from enum list, above */
2571static struct parport_pc_superio {
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002572 int (*probe) (struct pci_dev *pdev, int autoirq, int autodma,
2573 const struct parport_pc_via_data *via);
2574 const struct parport_pc_via_data *via;
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002575} parport_pc_superio_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 { sio_via_probe, &via_686a_data, },
2577 { sio_via_probe, &via_8231_data, },
2578 { sio_ite_8872_probe, NULL, },
2579};
2580
2581enum parport_pc_pci_cards {
2582 siig_1p_10x = last_sio,
2583 siig_2p_10x,
2584 siig_1p_20x,
2585 siig_2p_20x,
2586 lava_parallel,
2587 lava_parallel_dual_a,
2588 lava_parallel_dual_b,
2589 boca_ioppar,
2590 plx_9050,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 timedia_4006a,
2592 timedia_4014,
2593 timedia_4008a,
2594 timedia_4018,
2595 timedia_9018a,
2596 syba_2p_epp,
2597 syba_1p_ecp,
2598 titan_010l,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 avlab_1p,
2600 avlab_2p,
Ryan Underwoodc140e112006-12-06 20:36:38 -08002601 oxsemi_952,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 oxsemi_954,
2603 oxsemi_840,
Lee Howard7106b4e2008-10-21 13:48:58 +01002604 oxsemi_pcie_pport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 aks_0100,
2606 mobility_pp,
2607 netmos_9705,
2608 netmos_9715,
2609 netmos_9755,
2610 netmos_9805,
2611 netmos_9815,
Michael Bueschc4285b42009-06-30 11:41:21 -07002612 netmos_9901,
Ira W. Snyderac6ec5b2009-12-21 16:26:45 -08002613 netmos_9865,
Luís P Mendesdc999152008-02-06 01:37:43 -08002614 quatech_sppxp100,
Alexander Gerasiov823f7922018-02-04 02:50:22 +03002615 wch_ch382l,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616};
2617
2618
Alan Cox3aeda9b2009-06-11 13:07:29 +01002619/* each element directly indexed from enum list, above
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 * (but offset by last_sio) */
2621static struct parport_pc_pci {
2622 int numports;
2623 struct { /* BAR (base address registers) numbers in the config
Alan Cox3aeda9b2009-06-11 13:07:29 +01002624 space header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 int lo;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002626 int hi;
2627 /* -1 if not there, >6 for offset-method (max BAR is 6) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 } addr[4];
2629
2630 /* If set, this is called immediately after pci_enable_device.
2631 * If it returns non-zero, no probing will take place and the
2632 * ports will not be used. */
2633 int (*preinit_hook) (struct pci_dev *pdev, int autoirq, int autodma);
2634
2635 /* If set, this is called after probing for ports. If 'failed'
2636 * is non-zero we couldn't use any of the ports. */
2637 void (*postinit_hook) (struct pci_dev *pdev, int failed);
Randy.Dunlap96766a32006-04-18 22:21:57 -07002638} cards[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 /* siig_1p_10x */ { 1, { { 2, 3 }, } },
2640 /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } },
2641 /* siig_1p_20x */ { 1, { { 0, 1 }, } },
2642 /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } },
2643 /* lava_parallel */ { 1, { { 0, -1 }, } },
2644 /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } },
2645 /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } },
2646 /* boca_ioppar */ { 1, { { 0, -1 }, } },
2647 /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 /* timedia_4006a */ { 1, { { 0, -1 }, } },
2649 /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } },
2650 /* timedia_4008a */ { 1, { { 0, 1 }, } },
2651 /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } },
2652 /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } },
2653 /* SYBA uses fixed offsets in
Alan Cox3aeda9b2009-06-11 13:07:29 +01002654 a 1K io window */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } },
2656 /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } },
2657 /* titan_010l */ { 1, { { 3, -1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 /* avlab_1p */ { 1, { { 0, 1}, } },
2659 /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} },
2660 /* The Oxford Semi cards are unusual: 954 doesn't support ECP,
2661 * and 840 locks up if you write 1 to bit 2! */
Ryan Underwoodc140e112006-12-06 20:36:38 -08002662 /* oxsemi_952 */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 /* oxsemi_954 */ { 1, { { 0, -1 }, } },
Bernhard Walleadbd3212008-07-25 19:44:56 -07002664 /* oxsemi_840 */ { 1, { { 0, 1 }, } },
Lee Howard7106b4e2008-10-21 13:48:58 +01002665 /* oxsemi_pcie_pport */ { 1, { { 0, 1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 /* aks_0100 */ { 1, { { 0, -1 }, } },
2667 /* mobility_pp */ { 1, { { 0, 1 }, } },
Alan Cox3aeda9b2009-06-11 13:07:29 +01002668
2669 /* The netmos entries below are untested */
2670 /* netmos_9705 */ { 1, { { 0, -1 }, } },
2671 /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} },
2672 /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} },
Sebastian Andrzej Siewiord6a48452013-11-27 17:43:43 +01002673 /* netmos_9805 */ { 1, { { 0, 1 }, } },
2674 /* netmos_9815 */ { 2, { { 0, 1 }, { 2, 3 }, } },
Michael Bueschc4285b42009-06-30 11:41:21 -07002675 /* netmos_9901 */ { 1, { { 0, -1 }, } },
Ira W. Snyderac6ec5b2009-12-21 16:26:45 -08002676 /* netmos_9865 */ { 1, { { 0, -1 }, } },
Luís P Mendesdc999152008-02-06 01:37:43 -08002677 /* quatech_sppxp100 */ { 1, { { 0, 1 }, } },
Alexander Gerasiov823f7922018-02-04 02:50:22 +03002678 /* wch_ch382l */ { 1, { { 2, -1 }, } },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679};
2680
Marko Kohtalaa6767b72006-01-06 00:19:48 -08002681static const struct pci_device_id parport_pc_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 /* Super-IO onboard chips */
2683 { 0x1106, 0x0686, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_686a },
2684 { 0x1106, 0x8231, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_8231 },
2685 { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8872,
2686 PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_ite_8872 },
2687
2688 /* PCI cards */
2689 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_10x,
2690 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_10x },
2691 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_10x,
2692 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_10x },
2693 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_20x,
2694 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_20x },
2695 { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_20x,
2696 PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_20x },
2697 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PARALLEL,
2698 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel },
2699 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_A,
2700 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_a },
2701 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_B,
2702 PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_b },
2703 { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR,
2704 PCI_ANY_ID, PCI_ANY_ID, 0, 0, boca_ioppar },
2705 { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,
Alan Cox3aeda9b2009-06-11 13:07:29 +01002706 PCI_SUBVENDOR_ID_EXSYS, PCI_SUBDEVICE_ID_EXSYS_4014, 0, 0, plx_9050 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a },
2709 { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014 },
2710 { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a },
2711 { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018 },
2712 { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_2P_EPP,
2714 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_2p_epp },
2715 { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_1P_ECP,
2716 PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_1p_ecp },
2717 { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_010L,
2718 PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_010l },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/
Alan Cox3aeda9b2009-06-11 13:07:29 +01002720 /* AFAVLAB_TK9902 */
2721 { 0x14db, 0x2120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1p},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 { 0x14db, 0x2121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2p},
Ryan Underwoodc140e112006-12-06 20:36:38 -08002723 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952PP,
2724 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_952 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954PP,
2726 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_954 },
2727 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_12PCI840,
2728 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_840 },
Lee Howard7106b4e2008-10-21 13:48:58 +01002729 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840,
2730 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2731 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840_G,
2732 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2733 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0,
2734 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2735 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0_G,
2736 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2737 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1,
2738 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2739 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_G,
2740 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2741 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_U,
2742 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
2743 { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_GU,
2744 PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 { PCI_VENDOR_ID_AKS, PCI_DEVICE_ID_AKS_ALADDINCARD,
2746 PCI_ANY_ID, PCI_ANY_ID, 0, 0, aks_0100 },
Lee Howard7106b4e2008-10-21 13:48:58 +01002747 { 0x14f2, 0x0121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, mobility_pp },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 /* NetMos communication controllers */
2749 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9705,
2750 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9705 },
2751 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9715,
2752 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9715 },
2753 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9755,
2754 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9755 },
2755 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9805,
2756 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9805 },
2757 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9815,
2758 PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9815 },
Michael Bueschc4285b42009-06-30 11:41:21 -07002759 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9901,
2760 0xA000, 0x2000, 0, 0, netmos_9901 },
Ira W. Snyderac6ec5b2009-12-21 16:26:45 -08002761 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865,
2762 0xA000, 0x1000, 0, 0, netmos_9865 },
2763 { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865,
2764 0xA000, 0x2000, 0, 0, netmos_9865 },
Luís P Mendesdc999152008-02-06 01:37:43 -08002765 /* Quatech SPPXP-100 Parallel port PCI ExpressCard */
2766 { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_SPPXP_100,
2767 PCI_ANY_ID, PCI_ANY_ID, 0, 0, quatech_sppxp100 },
Alexander Gerasiov823f7922018-02-04 02:50:22 +03002768 /* WCH CH382L PCI-E single parallel port card */
2769 { 0x1c00, 0x3050, 0x1c00, 0x3050, 0, 0, wch_ch382l },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 { 0, } /* terminate list */
2771};
Alan Cox3aeda9b2009-06-11 13:07:29 +01002772MODULE_DEVICE_TABLE(pci, parport_pc_pci_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774struct pci_parport_data {
2775 int num;
2776 struct parport *ports[2];
2777};
2778
Alan Cox3aeda9b2009-06-11 13:07:29 +01002779static int parport_pc_pci_probe(struct pci_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 const struct pci_device_id *id)
2781{
2782 int err, count, n, i = id->driver_data;
2783 struct pci_parport_data *data;
2784
2785 if (i < last_sio)
2786 /* This is an onboard Super-IO and has already been probed */
2787 return 0;
2788
2789 /* This is a PCI card */
2790 i -= last_sio;
2791 count = 0;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002792 err = pci_enable_device(dev);
2793 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 return err;
2795
2796 data = kmalloc(sizeof(struct pci_parport_data), GFP_KERNEL);
2797 if (!data)
2798 return -ENOMEM;
2799
2800 if (cards[i].preinit_hook &&
Alan Cox3aeda9b2009-06-11 13:07:29 +01002801 cards[i].preinit_hook(dev, PARPORT_IRQ_NONE, PARPORT_DMA_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 kfree(data);
2803 return -ENODEV;
2804 }
2805
2806 for (n = 0; n < cards[i].numports; n++) {
2807 int lo = cards[i].addr[n].lo;
2808 int hi = cards[i].addr[n].hi;
Alan Cox51dcdfe2009-04-07 15:30:57 +01002809 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 unsigned long io_lo, io_hi;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002811 io_lo = pci_resource_start(dev, lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 io_hi = 0;
2813 if ((hi >= 0) && (hi <= 6))
Alan Cox3aeda9b2009-06-11 13:07:29 +01002814 io_hi = pci_resource_start(dev, hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 else if (hi > 6)
2816 io_lo += hi; /* Reinterpret the meaning of
Alan Cox3aeda9b2009-06-11 13:07:29 +01002817 "hi" as an offset (see SYBA
2818 def.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 /* TODO: test if sharing interrupts works */
Alan Cox51dcdfe2009-04-07 15:30:57 +01002820 irq = dev->irq;
2821 if (irq == IRQ_NONE) {
Joe Perchesaa3d6e72020-04-03 14:43:17 +01002822 printk(KERN_DEBUG "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
2823 id->vendor, id->device, io_lo, io_hi);
Alan Cox51dcdfe2009-04-07 15:30:57 +01002824 irq = PARPORT_IRQ_NONE;
2825 } else {
Joe Perchesaa3d6e72020-04-03 14:43:17 +01002826 printk(KERN_DEBUG "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
2827 id->vendor, id->device, io_lo, io_hi, irq);
Alan Cox51dcdfe2009-04-07 15:30:57 +01002828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 data->ports[count] =
Alan Cox51dcdfe2009-04-07 15:30:57 +01002830 parport_pc_probe_port(io_lo, io_hi, irq,
2831 PARPORT_DMA_NONE, &dev->dev,
2832 IRQF_SHARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 if (data->ports[count])
2834 count++;
2835 }
2836
2837 data->num = count;
2838
2839 if (cards[i].postinit_hook)
Alan Cox3aeda9b2009-06-11 13:07:29 +01002840 cards[i].postinit_hook(dev, count == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842 if (count) {
2843 pci_set_drvdata(dev, data);
2844 return 0;
2845 }
2846
2847 kfree(data);
2848
2849 return -ENODEV;
2850}
2851
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002852static void parport_pc_pci_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853{
2854 struct pci_parport_data *data = pci_get_drvdata(dev);
2855 int i;
2856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 if (data) {
2858 for (i = data->num - 1; i >= 0; i--)
2859 parport_pc_unregister_port(data->ports[i]);
2860
2861 kfree(data);
2862 }
2863}
2864
2865static struct pci_driver parport_pc_pci_driver = {
2866 .name = "parport_pc",
2867 .id_table = parport_pc_pci_tbl,
2868 .probe = parport_pc_pci_probe,
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002869 .remove = parport_pc_pci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870};
2871
Alan Cox3aeda9b2009-06-11 13:07:29 +01002872static int __init parport_pc_init_superio(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
2874 const struct pci_device_id *id;
2875 struct pci_dev *pdev = NULL;
2876 int ret = 0;
2877
Jiri Slabyc9d80732005-08-10 02:09:39 +02002878 for_each_pci_dev(pdev) {
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07002879 id = pci_match_id(parport_pc_pci_tbl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 if (id == NULL || id->driver_data >= last_sio)
2881 continue;
2882
Alan Cox3aeda9b2009-06-11 13:07:29 +01002883 if (parport_pc_superio_info[id->driver_data].probe(
2884 pdev, autoirq, autodma,
2885 parport_pc_superio_info[id->driver_data].via)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 ret++;
2887 }
2888 }
2889
2890 return ret; /* number of devices found */
2891}
2892#else
2893static struct pci_driver parport_pc_pci_driver;
Alan Cox3aeda9b2009-06-11 13:07:29 +01002894static int __init parport_pc_init_superio(int autoirq, int autodma)
2895{
2896 return 0;
2897}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898#endif /* CONFIG_PCI */
2899
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07002900#ifdef CONFIG_PNP
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902static const struct pnp_device_id parport_pc_pnp_tbl[] = {
2903 /* Standard LPT Printer Port */
2904 {.id = "PNP0400", .driver_data = 0},
2905 /* ECP Printer Port */
2906 {.id = "PNP0401", .driver_data = 0},
2907 { }
2908};
2909
Alan Cox3aeda9b2009-06-11 13:07:29 +01002910MODULE_DEVICE_TABLE(pnp, parport_pc_pnp_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Alan Cox3aeda9b2009-06-11 13:07:29 +01002912static int parport_pc_pnp_probe(struct pnp_dev *dev,
2913 const struct pnp_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
2915 struct parport *pdata;
2916 unsigned long io_lo, io_hi;
2917 int dma, irq;
2918
Alan Cox3aeda9b2009-06-11 13:07:29 +01002919 if (pnp_port_valid(dev, 0) &&
2920 !(pnp_port_flags(dev, 0) & IORESOURCE_DISABLED)) {
2921 io_lo = pnp_port_start(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 } else
2923 return -EINVAL;
2924
Alan Cox3aeda9b2009-06-11 13:07:29 +01002925 if (pnp_port_valid(dev, 1) &&
2926 !(pnp_port_flags(dev, 1) & IORESOURCE_DISABLED)) {
2927 io_hi = pnp_port_start(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 } else
2929 io_hi = 0;
2930
Alan Cox3aeda9b2009-06-11 13:07:29 +01002931 if (pnp_irq_valid(dev, 0) &&
2932 !(pnp_irq_flags(dev, 0) & IORESOURCE_DISABLED)) {
2933 irq = pnp_irq(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 } else
2935 irq = PARPORT_IRQ_NONE;
2936
Alan Cox3aeda9b2009-06-11 13:07:29 +01002937 if (pnp_dma_valid(dev, 0) &&
2938 !(pnp_dma_flags(dev, 0) & IORESOURCE_DISABLED)) {
2939 dma = pnp_dma(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 } else
2941 dma = PARPORT_DMA_NONE;
2942
David Brownellc15a3832007-05-08 00:27:35 -07002943 dev_info(&dev->dev, "reported by %s\n", dev->protocol->name);
Alan Cox3aeda9b2009-06-11 13:07:29 +01002944 pdata = parport_pc_probe_port(io_lo, io_hi, irq, dma, &dev->dev, 0);
2945 if (pdata == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return -ENODEV;
2947
Alan Cox3aeda9b2009-06-11 13:07:29 +01002948 pnp_set_drvdata(dev, pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 return 0;
2950}
2951
2952static void parport_pc_pnp_remove(struct pnp_dev *dev)
2953{
2954 struct parport *pdata = (struct parport *)pnp_get_drvdata(dev);
2955 if (!pdata)
2956 return;
2957
2958 parport_pc_unregister_port(pdata);
2959}
2960
2961/* we only need the pnp layer to activate the device, at least for now */
2962static struct pnp_driver parport_pc_pnp_driver = {
2963 .name = "parport_pc",
2964 .id_table = parport_pc_pnp_tbl,
2965 .probe = parport_pc_pnp_probe,
2966 .remove = parport_pc_pnp_remove,
2967};
2968
Bjorn Helgaasf2b9a392008-04-29 01:03:22 -07002969#else
2970static struct pnp_driver parport_pc_pnp_driver;
2971#endif /* CONFIG_PNP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002973static int parport_pc_platform_probe(struct platform_device *pdev)
Jean Delvarea7d801a2007-05-08 00:27:40 -07002974{
2975 /* Always succeed, the actual probing is done in
2976 * parport_pc_probe_port(). */
2977 return 0;
2978}
2979
2980static struct platform_driver parport_pc_platform_driver = {
2981 .driver = {
Jean Delvarea7d801a2007-05-08 00:27:40 -07002982 .name = "parport_pc",
2983 },
2984 .probe = parport_pc_platform_probe,
2985};
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987/* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */
Greg Kroah-Hartman312faca2012-12-21 13:23:14 -08002988static int __attribute__((unused))
Alan Cox3aeda9b2009-06-11 13:07:29 +01002989parport_pc_find_isa_ports(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990{
2991 int count = 0;
2992
Alan Cox51dcdfe2009-04-07 15:30:57 +01002993 if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01002995 if (parport_pc_probe_port(0x378, 0x778, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 count++;
Alan Cox51dcdfe2009-04-07 15:30:57 +01002997 if (parport_pc_probe_port(0x278, 0x678, autoirq, autodma, NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 count++;
2999
3000 return count;
3001}
3002
3003/* This function is called by parport_pc_init if the user didn't
3004 * specify any ports to probe. Its job is to find some ports. Order
3005 * is important here -- we want ISA ports to be registered first,
3006 * followed by PCI cards (for least surprise), but before that we want
3007 * to do chipset-specific tests for some onboard ports that we know
3008 * about.
3009 *
3010 * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY
3011 * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO
3012 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01003013static void __init parport_pc_find_ports(int autoirq, int autodma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014{
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003015 int count = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
3017#ifdef CONFIG_PARPORT_PC_SUPERIO
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003018 detect_and_report_it87();
3019 detect_and_report_winbond();
3020 detect_and_report_smsc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021#endif
3022
3023 /* Onboard SuperIO chipsets that show themselves on the PCI bus. */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003024 count += parport_pc_init_superio(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026 /* PnP ports, skip detection if SuperIO already found them */
3027 if (!count) {
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003028 err = pnp_register_driver(&parport_pc_pnp_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003029 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 pnp_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 }
3032
3033 /* ISA ports and whatever (see asm/parport.h). */
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003034 parport_pc_find_nonpci_ports(autoirq, autodma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Petr Cvekf63fd7e2008-02-06 01:37:48 -08003036 err = pci_register_driver(&parport_pc_pci_driver);
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003037 if (!err)
3038 pci_registered_parport = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039}
3040
3041/*
3042 * Piles of crap below pretend to be a parser for module and kernel
3043 * parameters. Say "thank you" to whoever had come up with that
3044 * syntax and keep in mind that code below is a cleaned up version.
3045 */
3046
Alan Cox3aeda9b2009-06-11 13:07:29 +01003047static int __initdata io[PARPORT_PC_MAX_PORTS+1] = {
3048 [0 ... PARPORT_PC_MAX_PORTS] = 0
3049};
3050static int __initdata io_hi[PARPORT_PC_MAX_PORTS+1] = {
3051 [0 ... PARPORT_PC_MAX_PORTS] = PARPORT_IOHI_AUTO
3052};
3053static int __initdata dmaval[PARPORT_PC_MAX_PORTS] = {
3054 [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_DMA_NONE
3055};
3056static int __initdata irqval[PARPORT_PC_MAX_PORTS] = {
3057 [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_IRQ_PROBEONLY
3058};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060static int __init parport_parse_param(const char *s, int *val,
3061 int automatic, int none, int nofifo)
3062{
3063 if (!s)
3064 return 0;
3065 if (!strncmp(s, "auto", 4))
3066 *val = automatic;
3067 else if (!strncmp(s, "none", 4))
3068 *val = none;
Joe Perches1f2c19f2009-12-15 16:47:45 -08003069 else if (nofifo && !strncmp(s, "nofifo", 6))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 *val = nofifo;
3071 else {
3072 char *ep;
3073 unsigned long r = simple_strtoul(s, &ep, 0);
3074 if (ep != s)
3075 *val = r;
3076 else {
Joe Perchesdecf26f2020-04-03 14:43:16 +01003077 pr_err("parport: bad specifier `%s'\n", s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 return -1;
3079 }
3080 }
3081 return 0;
3082}
3083
3084static int __init parport_parse_irq(const char *irqstr, int *val)
3085{
3086 return parport_parse_param(irqstr, val, PARPORT_IRQ_AUTO,
3087 PARPORT_IRQ_NONE, 0);
3088}
3089
3090static int __init parport_parse_dma(const char *dmastr, int *val)
3091{
3092 return parport_parse_param(dmastr, val, PARPORT_DMA_AUTO,
3093 PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO);
3094}
3095
3096#ifdef CONFIG_PCI
3097static int __init parport_init_mode_setup(char *str)
3098{
Joe Perchesaa3d6e72020-04-03 14:43:17 +01003099 printk(KERN_DEBUG "parport_pc.c: Specified parameter parport_init_mode=%s\n",
3100 str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Alan Cox3aeda9b2009-06-11 13:07:29 +01003102 if (!strcmp(str, "spp"))
3103 parport_init_mode = 1;
3104 if (!strcmp(str, "ps2"))
3105 parport_init_mode = 2;
3106 if (!strcmp(str, "epp"))
3107 parport_init_mode = 3;
3108 if (!strcmp(str, "ecp"))
3109 parport_init_mode = 4;
3110 if (!strcmp(str, "ecpepp"))
3111 parport_init_mode = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 return 1;
3113}
3114#endif
3115
3116#ifdef MODULE
Andrew Morton45dac902012-01-12 17:20:32 -08003117static char *irq[PARPORT_PC_MAX_PORTS];
3118static char *dma[PARPORT_PC_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
3120MODULE_PARM_DESC(io, "Base I/O address (SPP regs)");
David Howellsc8fc0742017-04-04 16:54:27 +01003121module_param_hw_array(io, int, ioport, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122MODULE_PARM_DESC(io_hi, "Base I/O address (ECR)");
David Howellsc8fc0742017-04-04 16:54:27 +01003123module_param_hw_array(io_hi, int, ioport, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124MODULE_PARM_DESC(irq, "IRQ line");
David Howellsc8fc0742017-04-04 16:54:27 +01003125module_param_hw_array(irq, charp, irq, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126MODULE_PARM_DESC(dma, "DMA channel");
David Howellsc8fc0742017-04-04 16:54:27 +01003127module_param_hw_array(dma, charp, dma, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128#if defined(CONFIG_PARPORT_PC_SUPERIO) || \
3129 (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO))
3130MODULE_PARM_DESC(verbose_probing, "Log chit-chat during initialisation");
3131module_param(verbose_probing, int, 0644);
3132#endif
3133#ifdef CONFIG_PCI
3134static char *init_mode;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003135MODULE_PARM_DESC(init_mode,
3136 "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137module_param(init_mode, charp, 0);
3138#endif
3139
3140static int __init parse_parport_params(void)
3141{
3142 unsigned int i;
3143 int val;
3144
3145#ifdef CONFIG_PCI
3146 if (init_mode)
3147 parport_init_mode_setup(init_mode);
3148#endif
3149
3150 for (i = 0; i < PARPORT_PC_MAX_PORTS && io[i]; i++) {
3151 if (parport_parse_irq(irq[i], &val))
3152 return 1;
3153 irqval[i] = val;
3154 if (parport_parse_dma(dma[i], &val))
3155 return 1;
3156 dmaval[i] = val;
3157 }
3158 if (!io[0]) {
3159 /* The user can make us use any IRQs or DMAs we find. */
3160 if (irq[0] && !parport_parse_irq(irq[0], &val))
3161 switch (val) {
3162 case PARPORT_IRQ_NONE:
3163 case PARPORT_IRQ_AUTO:
3164 irqval[0] = val;
3165 break;
3166 default:
Joe Perchesdecf26f2020-04-03 14:43:16 +01003167 pr_warn("parport_pc: irq specified without base address. Use 'io=' to specify one\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 }
3169
3170 if (dma[0] && !parport_parse_dma(dma[0], &val))
3171 switch (val) {
3172 case PARPORT_DMA_NONE:
3173 case PARPORT_DMA_AUTO:
3174 dmaval[0] = val;
3175 break;
3176 default:
Joe Perchesdecf26f2020-04-03 14:43:16 +01003177 pr_warn("parport_pc: dma specified without base address. Use 'io=' to specify one\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 }
3179 }
3180 return 0;
3181}
3182
3183#else
3184
Alan Cox3aeda9b2009-06-11 13:07:29 +01003185static int parport_setup_ptr __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187/*
3188 * Acceptable parameters:
3189 *
3190 * parport=0
3191 * parport=auto
3192 * parport=0xBASE[,IRQ[,DMA]]
3193 *
3194 * IRQ/DMA may be numeric or 'auto' or 'none'
3195 */
Alan Cox3aeda9b2009-06-11 13:07:29 +01003196static int __init parport_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
3198 char *endptr;
3199 char *sep;
3200 int val;
3201
3202 if (!str || !*str || (*str == '0' && !*(str+1))) {
3203 /* Disable parport if "parport=0" in cmdline */
3204 io[0] = PARPORT_DISABLE;
3205 return 1;
3206 }
3207
Alan Cox3aeda9b2009-06-11 13:07:29 +01003208 if (!strncmp(str, "auto", 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 irqval[0] = PARPORT_IRQ_AUTO;
3210 dmaval[0] = PARPORT_DMA_AUTO;
3211 return 1;
3212 }
3213
Alan Cox3aeda9b2009-06-11 13:07:29 +01003214 val = simple_strtoul(str, &endptr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 if (endptr == str) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01003216 pr_warn("parport=%s not understood\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return 1;
3218 }
3219
3220 if (parport_setup_ptr == PARPORT_PC_MAX_PORTS) {
Joe Perchesdecf26f2020-04-03 14:43:16 +01003221 pr_err("parport=%s ignored, too many ports\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 return 1;
3223 }
3224
3225 io[parport_setup_ptr] = val;
3226 irqval[parport_setup_ptr] = PARPORT_IRQ_NONE;
3227 dmaval[parport_setup_ptr] = PARPORT_DMA_NONE;
3228
3229 sep = strchr(str, ',');
3230 if (sep++) {
3231 if (parport_parse_irq(sep, &val))
3232 return 1;
3233 irqval[parport_setup_ptr] = val;
3234 sep = strchr(sep, ',');
3235 if (sep++) {
3236 if (parport_parse_dma(sep, &val))
3237 return 1;
3238 dmaval[parport_setup_ptr] = val;
3239 }
3240 }
3241 parport_setup_ptr++;
3242 return 1;
3243}
3244
3245static int __init parse_parport_params(void)
3246{
3247 return io[0] == PARPORT_DISABLE;
3248}
3249
Alan Cox3aeda9b2009-06-11 13:07:29 +01003250__setup("parport=", parport_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
3252/*
3253 * Acceptable parameters:
3254 *
3255 * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
3256 */
3257#ifdef CONFIG_PCI
Alan Cox3aeda9b2009-06-11 13:07:29 +01003258__setup("parport_init_mode=", parport_init_mode_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259#endif
3260#endif
3261
3262/* "Parser" ends here */
3263
3264static int __init parport_pc_init(void)
3265{
Jean Delvarea7d801a2007-05-08 00:27:40 -07003266 int err;
3267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (parse_parport_params())
3269 return -EINVAL;
3270
Jean Delvarea7d801a2007-05-08 00:27:40 -07003271 err = platform_driver_register(&parport_pc_platform_driver);
3272 if (err)
3273 return err;
3274
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 if (io[0]) {
3276 int i;
3277 /* Only probe the ports we were given. */
3278 user_specified = 1;
3279 for (i = 0; i < PARPORT_PC_MAX_PORTS; i++) {
3280 if (!io[i])
3281 break;
Alan Cox3aeda9b2009-06-11 13:07:29 +01003282 if (io_hi[i] == PARPORT_IOHI_AUTO)
3283 io_hi[i] = 0x400 + io[i];
Bjorn Helgaas7597fee2006-03-27 01:17:02 -08003284 parport_pc_probe_port(io[i], io_hi[i],
Alan Cox3aeda9b2009-06-11 13:07:29 +01003285 irqval[i], dmaval[i], NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 }
3287 } else
Alan Cox3aeda9b2009-06-11 13:07:29 +01003288 parport_pc_find_ports(irqval[0], dmaval[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
3290 return 0;
3291}
3292
3293static void __exit parport_pc_exit(void)
3294{
3295 if (pci_registered_parport)
Alan Cox3aeda9b2009-06-11 13:07:29 +01003296 pci_unregister_driver(&parport_pc_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 if (pnp_registered_parport)
Alan Cox3aeda9b2009-06-11 13:07:29 +01003298 pnp_unregister_driver(&parport_pc_pnp_driver);
Jean Delvarea7d801a2007-05-08 00:27:40 -07003299 platform_driver_unregister(&parport_pc_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 while (!list_empty(&ports_list)) {
3302 struct parport_pc_private *priv;
3303 struct parport *port;
Jiri Slaby91905b62014-11-21 10:05:09 +01003304 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 priv = list_entry(ports_list.next,
3306 struct parport_pc_private, list);
3307 port = priv->port;
Jiri Slaby91905b62014-11-21 10:05:09 +01003308 dev = port->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 parport_pc_unregister_port(port);
Jiri Slaby91905b62014-11-21 10:05:09 +01003310 if (dev && dev->bus == &platform_bus_type)
3311 platform_device_unregister(to_platform_device(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313}
3314
3315MODULE_AUTHOR("Phil Blundell, Tim Waugh, others");
3316MODULE_DESCRIPTION("PC-style parallel port driver");
3317MODULE_LICENSE("GPL");
3318module_init(parport_pc_init)
3319module_exit(parport_pc_exit)