Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Low-level parallel-port routines for 8255-based PC-style hardware. |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Authors: Phil Blundell <philb@gnu.org> |
| 4 | * Tim Waugh <tim@cyberelk.demon.co.uk> |
| 5 | * Jose Renau <renau@acm.org> |
Adrian Bunk | bdca3f2 | 2006-06-26 18:19:23 +0200 | [diff] [blame] | 6 | * David Campbell |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Andrea Arcangeli |
| 8 | * |
| 9 | * based on work by Grant Guenther <grant@torque.net> and Phil Blundell. |
| 10 | * |
| 11 | * Cleaned up include files - Russell King <linux@arm.uk.linux.org> |
| 12 | * DMA support - Bert De Jonghe <bert@sophis.be> |
| 13 | * Many ECP bugs fixed. Fred Barnes & Jamie Lokier, 1999 |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 14 | * More PCI support now conditional on CONFIG_PCI, 03/2001, Paul G. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * Various hacks, Fred Barnes, 04/2001 |
| 16 | * Updated probing logic - Adam Belay <ambx1@neo.rr.com> |
| 17 | */ |
| 18 | |
| 19 | /* This driver should work with any hardware that is broadly compatible |
| 20 | * with that in the IBM PC. This applies to the majority of integrated |
| 21 | * I/O chipsets that are commonly available. The expected register |
| 22 | * layout is: |
| 23 | * |
| 24 | * base+0 data |
| 25 | * base+1 status |
| 26 | * base+2 control |
| 27 | * |
| 28 | * In addition, there are some optional registers: |
| 29 | * |
| 30 | * base+3 EPP address |
| 31 | * base+4 EPP data |
| 32 | * base+0x400 ECP config A |
| 33 | * base+0x401 ECP config B |
| 34 | * base+0x402 ECP control |
| 35 | * |
| 36 | * All registers are 8 bits wide and read/write. If your hardware differs |
| 37 | * only in register addresses (eg because your registers are on 32-bit |
| 38 | * word boundaries) then you can alter the constants in parport_pc.h to |
| 39 | * accommodate this. |
| 40 | * |
| 41 | * Note that the ECP registers may not start at offset 0x400 for PCI cards, |
| 42 | * but rather will start at port->base_hi. |
| 43 | */ |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/module.h> |
| 46 | #include <linux/init.h> |
| 47 | #include <linux/sched.h> |
| 48 | #include <linux/delay.h> |
| 49 | #include <linux/errno.h> |
| 50 | #include <linux/interrupt.h> |
| 51 | #include <linux/ioport.h> |
| 52 | #include <linux/kernel.h> |
| 53 | #include <linux/slab.h> |
Andrew Morton | 8382d2b | 2007-05-15 23:57:08 -0700 | [diff] [blame] | 54 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <linux/pci.h> |
| 56 | #include <linux/pnp.h> |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 57 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <linux/sysctl.h> |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 59 | #include <linux/io.h> |
| 60 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #include <asm/dma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | #include <linux/parport.h> |
| 65 | #include <linux/parport_pc.h> |
| 66 | #include <linux/via.h> |
| 67 | #include <asm/parport.h> |
| 68 | |
| 69 | #define PARPORT_PC_MAX_PORTS PARPORT_MAX |
| 70 | |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 71 | #ifdef CONFIG_ISA_DMA_API |
| 72 | #define HAS_DMA |
| 73 | #endif |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | /* ECR modes */ |
| 76 | #define ECR_SPP 00 |
| 77 | #define ECR_PS2 01 |
| 78 | #define ECR_PPF 02 |
| 79 | #define ECR_ECP 03 |
| 80 | #define ECR_EPP 04 |
| 81 | #define ECR_VND 05 |
| 82 | #define ECR_TST 06 |
| 83 | #define ECR_CNF 07 |
| 84 | #define ECR_MODE_MASK 0xe0 |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 85 | #define ECR_WRITE(p, v) frob_econtrol((p), 0xff, (v)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
| 87 | #undef DEBUG |
| 88 | |
| 89 | #ifdef DEBUG |
| 90 | #define DPRINTK printk |
| 91 | #else |
| 92 | #define DPRINTK(stuff...) |
| 93 | #endif |
| 94 | |
| 95 | |
| 96 | #define NR_SUPERIOS 3 |
| 97 | static struct superio_struct { /* For Super-IO chips autodetection */ |
| 98 | int io; |
| 99 | int irq; |
| 100 | int dma; |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 101 | } superios[NR_SUPERIOS] = { {0,},}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
| 103 | static int user_specified; |
| 104 | #if defined(CONFIG_PARPORT_PC_SUPERIO) || \ |
| 105 | (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO)) |
| 106 | static int verbose_probing; |
| 107 | #endif |
| 108 | static int pci_registered_parport; |
| 109 | static int pnp_registered_parport; |
| 110 | |
| 111 | /* frob_control, but for ECR */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 112 | static void frob_econtrol(struct parport *pb, unsigned char m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | unsigned char v) |
| 114 | { |
| 115 | unsigned char ectr = 0; |
| 116 | |
| 117 | if (m != 0xff) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 118 | ectr = inb(ECONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 120 | DPRINTK(KERN_DEBUG "frob_econtrol(%02x,%02x): %02x -> %02x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | m, v, ectr, (ectr & ~m) ^ v); |
| 122 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 123 | outb((ectr & ~m) ^ v, ECONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 126 | static inline void frob_set_mode(struct parport *p, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 128 | frob_econtrol(p, ECR_MODE_MASK, mode << 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | #ifdef CONFIG_PARPORT_PC_FIFO |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 132 | /* Safely change the mode bits in the ECR |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | Returns: |
| 134 | 0 : Success |
| 135 | -EBUSY: Could not drain FIFO in some finite amount of time, |
| 136 | mode not changed! |
| 137 | */ |
| 138 | static int change_mode(struct parport *p, int m) |
| 139 | { |
| 140 | const struct parport_pc_private *priv = p->physport->private_data; |
| 141 | unsigned char oecr; |
| 142 | int mode; |
| 143 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 144 | DPRINTK(KERN_INFO "parport change_mode ECP-ISA to mode 0x%02x\n", m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
| 146 | if (!priv->ecr) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 147 | printk(KERN_DEBUG "change_mode: but there's no ECR!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | /* Bits <7:5> contain the mode. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 152 | oecr = inb(ECONTROL(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | mode = (oecr >> 5) & 0x7; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 154 | if (mode == m) |
| 155 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | if (mode >= 2 && !(priv->ctr & 0x20)) { |
| 158 | /* This mode resets the FIFO, so we may |
| 159 | * have to wait for it to drain first. */ |
| 160 | unsigned long expire = jiffies + p->physport->cad->timeout; |
| 161 | int counter; |
| 162 | switch (mode) { |
| 163 | case ECR_PPF: /* Parallel Port FIFO mode */ |
| 164 | case ECR_ECP: /* ECP Parallel Port mode */ |
| 165 | /* Busy wait for 200us */ |
| 166 | for (counter = 0; counter < 40; counter++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 167 | if (inb(ECONTROL(p)) & 0x01) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | break; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 169 | if (signal_pending(current)) |
| 170 | break; |
| 171 | udelay(5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | /* Poll slowly. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 175 | while (!(inb(ECONTROL(p)) & 0x01)) { |
| 176 | if (time_after_eq(jiffies, expire)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | /* The FIFO is stuck. */ |
| 178 | return -EBUSY; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 179 | schedule_timeout_interruptible( |
| 180 | msecs_to_jiffies(10)); |
| 181 | if (signal_pending(current)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | break; |
| 183 | } |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | if (mode >= 2 && m >= 2) { |
| 188 | /* We have to go through mode 001 */ |
| 189 | oecr &= ~(7 << 5); |
| 190 | oecr |= ECR_PS2 << 5; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 191 | ECR_WRITE(p, oecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | /* Set the mode. */ |
| 195 | oecr &= ~(7 << 5); |
| 196 | oecr |= m << 5; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 197 | ECR_WRITE(p, oecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | return 0; |
| 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | #endif /* FIFO support */ |
| 201 | |
| 202 | /* |
| 203 | * Clear TIMEOUT BIT in EPP MODE |
| 204 | * |
| 205 | * This is also used in SPP detection. |
| 206 | */ |
| 207 | static int clear_epp_timeout(struct parport *pb) |
| 208 | { |
| 209 | unsigned char r; |
| 210 | |
| 211 | if (!(parport_pc_read_status(pb) & 0x01)) |
| 212 | return 1; |
| 213 | |
| 214 | /* To clear timeout some chips require double read */ |
| 215 | parport_pc_read_status(pb); |
| 216 | r = parport_pc_read_status(pb); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 217 | outb(r | 0x01, STATUS(pb)); /* Some reset by writing 1 */ |
| 218 | outb(r & 0xfe, STATUS(pb)); /* Others by writing 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | r = parport_pc_read_status(pb); |
| 220 | |
| 221 | return !(r & 0x01); |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Access functions. |
| 226 | * |
| 227 | * Most of these aren't static because they may be used by the |
| 228 | * parport_xxx_yyy macros. extern __inline__ versions of several |
| 229 | * of these are in parport_pc.h. |
| 230 | */ |
| 231 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 232 | static void parport_pc_init_state(struct pardevice *dev, |
| 233 | struct parport_state *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
| 235 | s->u.pc.ctr = 0xc; |
| 236 | if (dev->irq_func && |
| 237 | dev->port->irq != PARPORT_IRQ_NONE) |
| 238 | /* Set ackIntEn */ |
| 239 | s->u.pc.ctr |= 0x10; |
| 240 | |
| 241 | s->u.pc.ecr = 0x34; /* NetMos chip can cause problems 0x24; |
| 242 | * D.Gruszka VScom */ |
| 243 | } |
| 244 | |
| 245 | static void parport_pc_save_state(struct parport *p, struct parport_state *s) |
| 246 | { |
| 247 | const struct parport_pc_private *priv = p->physport->private_data; |
| 248 | s->u.pc.ctr = priv->ctr; |
| 249 | if (priv->ecr) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 250 | s->u.pc.ecr = inb(ECONTROL(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 253 | static void parport_pc_restore_state(struct parport *p, |
| 254 | struct parport_state *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
| 256 | struct parport_pc_private *priv = p->physport->private_data; |
| 257 | register unsigned char c = s->u.pc.ctr & priv->ctr_writable; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 258 | outb(c, CONTROL(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | priv->ctr = c; |
| 260 | if (priv->ecr) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 261 | ECR_WRITE(p, s->u.pc.ecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | #ifdef CONFIG_PARPORT_1284 |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 265 | static size_t parport_pc_epp_read_data(struct parport *port, void *buf, |
| 266 | size_t length, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
| 268 | size_t got = 0; |
| 269 | |
| 270 | if (flags & PARPORT_W91284PIC) { |
| 271 | unsigned char status; |
| 272 | size_t left = length; |
| 273 | |
| 274 | /* use knowledge about data lines..: |
| 275 | * nFault is 0 if there is at least 1 byte in the Warp's FIFO |
| 276 | * pError is 1 if there are 16 bytes in the Warp's FIFO |
| 277 | */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 278 | status = inb(STATUS(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 280 | while (!(status & 0x08) && got < length) { |
| 281 | if (left >= 16 && (status & 0x20) && !(status & 0x08)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | /* can grab 16 bytes from warp fifo */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 283 | if (!((long)buf & 0x03)) |
| 284 | insl(EPPDATA(port), buf, 4); |
| 285 | else |
| 286 | insb(EPPDATA(port), buf, 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | buf += 16; |
| 288 | got += 16; |
| 289 | left -= 16; |
| 290 | } else { |
| 291 | /* grab single byte from the warp fifo */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 292 | *((char *)buf) = inb(EPPDATA(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | buf++; |
| 294 | got++; |
| 295 | left--; |
| 296 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 297 | status = inb(STATUS(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | if (status & 0x01) { |
| 299 | /* EPP timeout should never occur... */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 300 | printk(KERN_DEBUG |
| 301 | "%s: EPP timeout occurred while talking to w91284pic (should not have done)\n", port->name); |
| 302 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | } |
| 305 | return got; |
| 306 | } |
| 307 | if ((flags & PARPORT_EPP_FAST) && (length > 1)) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 308 | if (!(((long)buf | length) & 0x03)) |
| 309 | insl(EPPDATA(port), buf, (length >> 2)); |
| 310 | else |
| 311 | insb(EPPDATA(port), buf, length); |
| 312 | if (inb(STATUS(port)) & 0x01) { |
| 313 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | return -EIO; |
| 315 | } |
| 316 | return length; |
| 317 | } |
| 318 | for (; got < length; got++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 319 | *((char *)buf) = inb(EPPDATA(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | buf++; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 321 | if (inb(STATUS(port)) & 0x01) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /* EPP timeout */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 323 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | break; |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | return got; |
| 329 | } |
| 330 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 331 | static size_t parport_pc_epp_write_data(struct parport *port, const void *buf, |
| 332 | size_t length, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
| 334 | size_t written = 0; |
| 335 | |
| 336 | if ((flags & PARPORT_EPP_FAST) && (length > 1)) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 337 | if (!(((long)buf | length) & 0x03)) |
| 338 | outsl(EPPDATA(port), buf, (length >> 2)); |
| 339 | else |
| 340 | outsb(EPPDATA(port), buf, length); |
| 341 | if (inb(STATUS(port)) & 0x01) { |
| 342 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return -EIO; |
| 344 | } |
| 345 | return length; |
| 346 | } |
| 347 | for (; written < length; written++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 348 | outb(*((char *)buf), EPPDATA(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | buf++; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 350 | if (inb(STATUS(port)) & 0x01) { |
| 351 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | break; |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | return written; |
| 357 | } |
| 358 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 359 | static size_t parport_pc_epp_read_addr(struct parport *port, void *buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | size_t length, int flags) |
| 361 | { |
| 362 | size_t got = 0; |
| 363 | |
| 364 | if ((flags & PARPORT_EPP_FAST) && (length > 1)) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 365 | insb(EPPADDR(port), buf, length); |
| 366 | if (inb(STATUS(port)) & 0x01) { |
| 367 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | return -EIO; |
| 369 | } |
| 370 | return length; |
| 371 | } |
| 372 | for (; got < length; got++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 373 | *((char *)buf) = inb(EPPADDR(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | buf++; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 375 | if (inb(STATUS(port)) & 0x01) { |
| 376 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | break; |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | return got; |
| 382 | } |
| 383 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 384 | static size_t parport_pc_epp_write_addr(struct parport *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | const void *buf, size_t length, |
| 386 | int flags) |
| 387 | { |
| 388 | size_t written = 0; |
| 389 | |
| 390 | if ((flags & PARPORT_EPP_FAST) && (length > 1)) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 391 | outsb(EPPADDR(port), buf, length); |
| 392 | if (inb(STATUS(port)) & 0x01) { |
| 393 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | return -EIO; |
| 395 | } |
| 396 | return length; |
| 397 | } |
| 398 | for (; written < length; written++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 399 | outb(*((char *)buf), EPPADDR(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | buf++; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 401 | if (inb(STATUS(port)) & 0x01) { |
| 402 | clear_epp_timeout(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | break; |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | return written; |
| 408 | } |
| 409 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 410 | static size_t parport_pc_ecpepp_read_data(struct parport *port, void *buf, |
| 411 | size_t length, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | { |
| 413 | size_t got; |
| 414 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 415 | frob_set_mode(port, ECR_EPP); |
| 416 | parport_pc_data_reverse(port); |
| 417 | parport_pc_write_control(port, 0x4); |
| 418 | got = parport_pc_epp_read_data(port, buf, length, flags); |
| 419 | frob_set_mode(port, ECR_PS2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | |
| 421 | return got; |
| 422 | } |
| 423 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 424 | static size_t parport_pc_ecpepp_write_data(struct parport *port, |
| 425 | const void *buf, size_t length, |
| 426 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | { |
| 428 | size_t written; |
| 429 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 430 | frob_set_mode(port, ECR_EPP); |
| 431 | parport_pc_write_control(port, 0x4); |
| 432 | parport_pc_data_forward(port); |
| 433 | written = parport_pc_epp_write_data(port, buf, length, flags); |
| 434 | frob_set_mode(port, ECR_PS2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
| 436 | return written; |
| 437 | } |
| 438 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 439 | static size_t parport_pc_ecpepp_read_addr(struct parport *port, void *buf, |
| 440 | size_t length, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | { |
| 442 | size_t got; |
| 443 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 444 | frob_set_mode(port, ECR_EPP); |
| 445 | parport_pc_data_reverse(port); |
| 446 | parport_pc_write_control(port, 0x4); |
| 447 | got = parport_pc_epp_read_addr(port, buf, length, flags); |
| 448 | frob_set_mode(port, ECR_PS2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
| 450 | return got; |
| 451 | } |
| 452 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 453 | static size_t parport_pc_ecpepp_write_addr(struct parport *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | const void *buf, size_t length, |
| 455 | int flags) |
| 456 | { |
| 457 | size_t written; |
| 458 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 459 | frob_set_mode(port, ECR_EPP); |
| 460 | parport_pc_write_control(port, 0x4); |
| 461 | parport_pc_data_forward(port); |
| 462 | written = parport_pc_epp_write_addr(port, buf, length, flags); |
| 463 | frob_set_mode(port, ECR_PS2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
| 465 | return written; |
| 466 | } |
| 467 | #endif /* IEEE 1284 support */ |
| 468 | |
| 469 | #ifdef CONFIG_PARPORT_PC_FIFO |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 470 | static size_t parport_pc_fifo_write_block_pio(struct parport *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | const void *buf, size_t length) |
| 472 | { |
| 473 | int ret = 0; |
| 474 | const unsigned char *bufp = buf; |
| 475 | size_t left = length; |
| 476 | unsigned long expire = jiffies + port->physport->cad->timeout; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 477 | const int fifo = FIFO(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | int poll_for = 8; /* 80 usecs */ |
| 479 | const struct parport_pc_private *priv = port->physport->private_data; |
| 480 | const int fifo_depth = priv->fifo_depth; |
| 481 | |
| 482 | port = port->physport; |
| 483 | |
| 484 | /* We don't want to be interrupted every character. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 485 | parport_pc_disable_irq(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | /* set nErrIntrEn and serviceIntr */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 487 | frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
| 489 | /* Forward mode. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 490 | parport_pc_data_forward(port); /* Must be in PS2 mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
| 492 | while (left) { |
| 493 | unsigned char byte; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 494 | unsigned char ecrval = inb(ECONTROL(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | int i = 0; |
| 496 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 497 | if (need_resched() && time_before(jiffies, expire)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | /* Can't yield the port. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 499 | schedule(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
| 501 | /* Anyone else waiting for the port? */ |
| 502 | if (port->waithead) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 503 | printk(KERN_DEBUG "Somebody wants the port\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | break; |
| 505 | } |
| 506 | |
| 507 | if (ecrval & 0x02) { |
| 508 | /* FIFO is full. Wait for interrupt. */ |
| 509 | |
| 510 | /* Clear serviceIntr */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 511 | ECR_WRITE(port, ecrval & ~(1<<2)); |
| 512 | false_alarm: |
| 513 | ret = parport_wait_event(port, HZ); |
| 514 | if (ret < 0) |
| 515 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | ret = 0; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 517 | if (!time_before(jiffies, expire)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | /* Timed out. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 519 | printk(KERN_DEBUG "FIFO write timed out\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | break; |
| 521 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 522 | ecrval = inb(ECONTROL(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | if (!(ecrval & (1<<2))) { |
| 524 | if (need_resched() && |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 525 | time_before(jiffies, expire)) |
| 526 | schedule(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
| 528 | goto false_alarm; |
| 529 | } |
| 530 | |
| 531 | continue; |
| 532 | } |
| 533 | |
| 534 | /* Can't fail now. */ |
| 535 | expire = jiffies + port->cad->timeout; |
| 536 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 537 | poll: |
| 538 | if (signal_pending(current)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | break; |
| 540 | |
| 541 | if (ecrval & 0x01) { |
| 542 | /* FIFO is empty. Blast it full. */ |
| 543 | const int n = left < fifo_depth ? left : fifo_depth; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 544 | outsb(fifo, bufp, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | bufp += n; |
| 546 | left -= n; |
| 547 | |
| 548 | /* Adjust the poll time. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 549 | if (i < (poll_for - 2)) |
| 550 | poll_for--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | continue; |
| 552 | } else if (i++ < poll_for) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 553 | udelay(10); |
| 554 | ecrval = inb(ECONTROL(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | goto poll; |
| 556 | } |
| 557 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 558 | /* Half-full(call me an optimist) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | byte = *bufp++; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 560 | outb(byte, fifo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | left--; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 562 | } |
| 563 | dump_parport_state("leave fifo_write_block_pio", port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | return length - left; |
| 565 | } |
| 566 | |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 567 | #ifdef HAS_DMA |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 568 | static size_t parport_pc_fifo_write_block_dma(struct parport *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | const void *buf, size_t length) |
| 570 | { |
| 571 | int ret = 0; |
| 572 | unsigned long dmaflag; |
| 573 | size_t left = length; |
| 574 | const struct parport_pc_private *priv = port->physport->private_data; |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 575 | struct device *dev = port->physport->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | dma_addr_t dma_addr, dma_handle; |
| 577 | size_t maxlen = 0x10000; /* max 64k per DMA transfer */ |
| 578 | unsigned long start = (unsigned long) buf; |
| 579 | unsigned long end = (unsigned long) buf + length - 1; |
| 580 | |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 581 | dump_parport_state("enter fifo_write_block_dma", port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | if (end < MAX_DMA_ADDRESS) { |
| 583 | /* If it would cross a 64k boundary, cap it at the end. */ |
| 584 | if ((start ^ end) & ~0xffffUL) |
| 585 | maxlen = 0x10000 - (start & 0xffff); |
| 586 | |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 587 | dma_addr = dma_handle = dma_map_single(dev, (void *)buf, length, |
| 588 | DMA_TO_DEVICE); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 589 | } else { |
| 590 | /* above 16 MB we use a bounce buffer as ISA-DMA |
| 591 | is not possible */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | maxlen = PAGE_SIZE; /* sizeof(priv->dma_buf) */ |
| 593 | dma_addr = priv->dma_handle; |
| 594 | dma_handle = 0; |
| 595 | } |
| 596 | |
| 597 | port = port->physport; |
| 598 | |
| 599 | /* We don't want to be interrupted every character. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 600 | parport_pc_disable_irq(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | /* set nErrIntrEn and serviceIntr */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 602 | frob_econtrol(port, (1<<4) | (1<<2), (1<<4) | (1<<2)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | /* Forward mode. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 605 | parport_pc_data_forward(port); /* Must be in PS2 mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
| 607 | while (left) { |
| 608 | unsigned long expire = jiffies + port->physport->cad->timeout; |
| 609 | |
| 610 | size_t count = left; |
| 611 | |
| 612 | if (count > maxlen) |
| 613 | count = maxlen; |
| 614 | |
| 615 | if (!dma_handle) /* bounce buffer ! */ |
| 616 | memcpy(priv->dma_buf, buf, count); |
| 617 | |
| 618 | dmaflag = claim_dma_lock(); |
| 619 | disable_dma(port->dma); |
| 620 | clear_dma_ff(port->dma); |
| 621 | set_dma_mode(port->dma, DMA_MODE_WRITE); |
| 622 | set_dma_addr(port->dma, dma_addr); |
| 623 | set_dma_count(port->dma, count); |
| 624 | |
| 625 | /* Set DMA mode */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 626 | frob_econtrol(port, 1<<3, 1<<3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
| 628 | /* Clear serviceIntr */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 629 | frob_econtrol(port, 1<<2, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
| 631 | enable_dma(port->dma); |
| 632 | release_dma_lock(dmaflag); |
| 633 | |
| 634 | /* assume DMA will be successful */ |
| 635 | left -= count; |
| 636 | buf += count; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 637 | if (dma_handle) |
| 638 | dma_addr += count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
| 640 | /* Wait for interrupt. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 641 | false_alarm: |
| 642 | ret = parport_wait_event(port, HZ); |
| 643 | if (ret < 0) |
| 644 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | ret = 0; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 646 | if (!time_before(jiffies, expire)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | /* Timed out. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 648 | printk(KERN_DEBUG "DMA write timed out\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | break; |
| 650 | } |
| 651 | /* Is serviceIntr set? */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 652 | if (!(inb(ECONTROL(port)) & (1<<2))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | cond_resched(); |
| 654 | |
| 655 | goto false_alarm; |
| 656 | } |
| 657 | |
| 658 | dmaflag = claim_dma_lock(); |
| 659 | disable_dma(port->dma); |
| 660 | clear_dma_ff(port->dma); |
| 661 | count = get_dma_residue(port->dma); |
| 662 | release_dma_lock(dmaflag); |
| 663 | |
| 664 | cond_resched(); /* Can't yield the port. */ |
| 665 | |
| 666 | /* Anyone else waiting for the port? */ |
| 667 | if (port->waithead) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 668 | printk(KERN_DEBUG "Somebody wants the port\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | break; |
| 670 | } |
| 671 | |
| 672 | /* update for possible DMA residue ! */ |
| 673 | buf -= count; |
| 674 | left += count; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 675 | if (dma_handle) |
| 676 | dma_addr -= count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | /* Maybe got here through break, so adjust for DMA residue! */ |
| 680 | dmaflag = claim_dma_lock(); |
| 681 | disable_dma(port->dma); |
| 682 | clear_dma_ff(port->dma); |
| 683 | left += get_dma_residue(port->dma); |
| 684 | release_dma_lock(dmaflag); |
| 685 | |
| 686 | /* Turn off DMA mode */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 687 | frob_econtrol(port, 1<<3, 0); |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | if (dma_handle) |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 690 | dma_unmap_single(dev, dma_handle, length, DMA_TO_DEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 692 | dump_parport_state("leave fifo_write_block_dma", port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | return length - left; |
| 694 | } |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 695 | #endif |
| 696 | |
| 697 | static inline size_t parport_pc_fifo_write_block(struct parport *port, |
| 698 | const void *buf, size_t length) |
| 699 | { |
| 700 | #ifdef HAS_DMA |
| 701 | if (port->dma != PARPORT_DMA_NONE) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 702 | return parport_pc_fifo_write_block_dma(port, buf, length); |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 703 | #endif |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 704 | return parport_pc_fifo_write_block_pio(port, buf, length); |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 705 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
| 707 | /* Parallel Port FIFO mode (ECP chipsets) */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 708 | static size_t parport_pc_compat_write_block_pio(struct parport *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | const void *buf, size_t length, |
| 710 | int flags) |
| 711 | { |
| 712 | size_t written; |
| 713 | int r; |
| 714 | unsigned long expire; |
| 715 | const struct parport_pc_private *priv = port->physport->private_data; |
| 716 | |
| 717 | /* Special case: a timeout of zero means we cannot call schedule(). |
| 718 | * Also if O_NONBLOCK is set then use the default implementation. */ |
| 719 | if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 720 | return parport_ieee1284_write_compat(port, buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | length, flags); |
| 722 | |
| 723 | /* Set up parallel port FIFO mode.*/ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 724 | parport_pc_data_forward(port); /* Must be in PS2 mode */ |
| 725 | parport_pc_frob_control(port, PARPORT_CONTROL_STROBE, 0); |
| 726 | r = change_mode(port, ECR_PPF); /* Parallel port FIFO */ |
| 727 | if (r) |
| 728 | printk(KERN_DEBUG "%s: Warning change_mode ECR_PPF failed\n", |
| 729 | port->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | |
| 731 | port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA; |
| 732 | |
| 733 | /* Write the data to the FIFO. */ |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 734 | written = parport_pc_fifo_write_block(port, buf, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
| 736 | /* Finish up. */ |
| 737 | /* For some hardware we don't want to touch the mode until |
| 738 | * the FIFO is empty, so allow 4 seconds for each position |
| 739 | * in the fifo. |
| 740 | */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 741 | expire = jiffies + (priv->fifo_depth * HZ * 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | do { |
| 743 | /* Wait for the FIFO to empty */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 744 | r = change_mode(port, ECR_PS2); |
| 745 | if (r != -EBUSY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | break; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 747 | } while (time_before(jiffies, expire)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | if (r == -EBUSY) { |
| 749 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 750 | printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | |
| 752 | /* Prevent further data transfer. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 753 | frob_set_mode(port, ECR_TST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
| 755 | /* Adjust for the contents of the FIFO. */ |
| 756 | for (written -= priv->fifo_depth; ; written++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 757 | if (inb(ECONTROL(port)) & 0x2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | /* Full up. */ |
| 759 | break; |
| 760 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 761 | outb(0, FIFO(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | /* Reset the FIFO and return to PS2 mode. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 765 | frob_set_mode(port, ECR_PS2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | } |
| 767 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 768 | r = parport_wait_peripheral(port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | PARPORT_STATUS_BUSY, |
| 770 | PARPORT_STATUS_BUSY); |
| 771 | if (r) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 772 | printk(KERN_DEBUG |
| 773 | "%s: BUSY timeout (%d) in compat_write_block_pio\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | port->name, r); |
| 775 | |
| 776 | port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE; |
| 777 | |
| 778 | return written; |
| 779 | } |
| 780 | |
| 781 | /* ECP */ |
| 782 | #ifdef CONFIG_PARPORT_1284 |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 783 | static size_t parport_pc_ecp_write_block_pio(struct parport *port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | const void *buf, size_t length, |
| 785 | int flags) |
| 786 | { |
| 787 | size_t written; |
| 788 | int r; |
| 789 | unsigned long expire; |
| 790 | const struct parport_pc_private *priv = port->physport->private_data; |
| 791 | |
| 792 | /* Special case: a timeout of zero means we cannot call schedule(). |
| 793 | * Also if O_NONBLOCK is set then use the default implementation. */ |
| 794 | if (port->physport->cad->timeout <= PARPORT_INACTIVITY_O_NONBLOCK) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 795 | return parport_ieee1284_ecp_write_data(port, buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | length, flags); |
| 797 | |
| 798 | /* Switch to forward mode if necessary. */ |
| 799 | if (port->physport->ieee1284.phase != IEEE1284_PH_FWD_IDLE) { |
| 800 | /* Event 47: Set nInit high. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 801 | parport_frob_control(port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | PARPORT_CONTROL_INIT |
| 803 | | PARPORT_CONTROL_AUTOFD, |
| 804 | PARPORT_CONTROL_INIT |
| 805 | | PARPORT_CONTROL_AUTOFD); |
| 806 | |
| 807 | /* Event 49: PError goes high. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 808 | r = parport_wait_peripheral(port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | PARPORT_STATUS_PAPEROUT, |
| 810 | PARPORT_STATUS_PAPEROUT); |
| 811 | if (r) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 812 | printk(KERN_DEBUG "%s: PError timeout (%d) " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | "in ecp_write_block_pio\n", port->name, r); |
| 814 | } |
| 815 | } |
| 816 | |
| 817 | /* Set up ECP parallel port mode.*/ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 818 | parport_pc_data_forward(port); /* Must be in PS2 mode */ |
| 819 | parport_pc_frob_control(port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | PARPORT_CONTROL_STROBE | |
| 821 | PARPORT_CONTROL_AUTOFD, |
| 822 | 0); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 823 | r = change_mode(port, ECR_ECP); /* ECP FIFO */ |
| 824 | if (r) |
| 825 | printk(KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n", |
| 826 | port->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA; |
| 828 | |
| 829 | /* Write the data to the FIFO. */ |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 830 | written = parport_pc_fifo_write_block(port, buf, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | |
| 832 | /* Finish up. */ |
| 833 | /* For some hardware we don't want to touch the mode until |
| 834 | * the FIFO is empty, so allow 4 seconds for each position |
| 835 | * in the fifo. |
| 836 | */ |
| 837 | expire = jiffies + (priv->fifo_depth * (HZ * 4)); |
| 838 | do { |
| 839 | /* Wait for the FIFO to empty */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 840 | r = change_mode(port, ECR_PS2); |
| 841 | if (r != -EBUSY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | break; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 843 | } while (time_before(jiffies, expire)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | if (r == -EBUSY) { |
| 845 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 846 | printk(KERN_DEBUG "%s: FIFO is stuck\n", port->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
| 848 | /* Prevent further data transfer. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 849 | frob_set_mode(port, ECR_TST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
| 851 | /* Adjust for the contents of the FIFO. */ |
| 852 | for (written -= priv->fifo_depth; ; written++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 853 | if (inb(ECONTROL(port)) & 0x2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | /* Full up. */ |
| 855 | break; |
| 856 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 857 | outb(0, FIFO(port)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | /* Reset the FIFO and return to PS2 mode. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 861 | frob_set_mode(port, ECR_PS2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
| 863 | /* Host transfer recovery. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 864 | parport_pc_data_reverse(port); /* Must be in PS2 mode */ |
| 865 | udelay(5); |
| 866 | parport_frob_control(port, PARPORT_CONTROL_INIT, 0); |
| 867 | r = parport_wait_peripheral(port, PARPORT_STATUS_PAPEROUT, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | if (r) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 869 | printk(KERN_DEBUG "%s: PE,1 timeout (%d) " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | "in ecp_write_block_pio\n", port->name, r); |
| 871 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 872 | parport_frob_control(port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | PARPORT_CONTROL_INIT, |
| 874 | PARPORT_CONTROL_INIT); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 875 | r = parport_wait_peripheral(port, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | PARPORT_STATUS_PAPEROUT, |
| 877 | PARPORT_STATUS_PAPEROUT); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 878 | if (r) |
| 879 | printk(KERN_DEBUG "%s: PE,2 timeout (%d) " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | "in ecp_write_block_pio\n", port->name, r); |
| 881 | } |
| 882 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 883 | r = parport_wait_peripheral(port, |
| 884 | PARPORT_STATUS_BUSY, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | PARPORT_STATUS_BUSY); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 886 | if (r) |
| 887 | printk(KERN_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | "%s: BUSY timeout (%d) in ecp_write_block_pio\n", |
| 889 | port->name, r); |
| 890 | |
| 891 | port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE; |
| 892 | |
| 893 | return written; |
| 894 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | #endif /* IEEE 1284 support */ |
| 896 | #endif /* Allowed to use FIFO/DMA */ |
| 897 | |
| 898 | |
| 899 | /* |
| 900 | * ****************************************** |
| 901 | * INITIALISATION AND MODULE STUFF BELOW HERE |
| 902 | * ****************************************** |
| 903 | */ |
| 904 | |
| 905 | /* GCC is not inlining extern inline function later overwriten to non-inline, |
| 906 | so we use outlined_ variants here. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 907 | static const struct parport_operations parport_pc_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | .write_data = parport_pc_write_data, |
| 909 | .read_data = parport_pc_read_data, |
| 910 | |
| 911 | .write_control = parport_pc_write_control, |
| 912 | .read_control = parport_pc_read_control, |
| 913 | .frob_control = parport_pc_frob_control, |
| 914 | |
| 915 | .read_status = parport_pc_read_status, |
| 916 | |
| 917 | .enable_irq = parport_pc_enable_irq, |
| 918 | .disable_irq = parport_pc_disable_irq, |
| 919 | |
| 920 | .data_forward = parport_pc_data_forward, |
| 921 | .data_reverse = parport_pc_data_reverse, |
| 922 | |
| 923 | .init_state = parport_pc_init_state, |
| 924 | .save_state = parport_pc_save_state, |
| 925 | .restore_state = parport_pc_restore_state, |
| 926 | |
| 927 | .epp_write_data = parport_ieee1284_epp_write_data, |
| 928 | .epp_read_data = parport_ieee1284_epp_read_data, |
| 929 | .epp_write_addr = parport_ieee1284_epp_write_addr, |
| 930 | .epp_read_addr = parport_ieee1284_epp_read_addr, |
| 931 | |
| 932 | .ecp_write_data = parport_ieee1284_ecp_write_data, |
| 933 | .ecp_read_data = parport_ieee1284_ecp_read_data, |
| 934 | .ecp_write_addr = parport_ieee1284_ecp_write_addr, |
| 935 | |
| 936 | .compat_write_data = parport_ieee1284_write_compat, |
| 937 | .nibble_read_data = parport_ieee1284_read_nibble, |
| 938 | .byte_read_data = parport_ieee1284_read_byte, |
| 939 | |
| 940 | .owner = THIS_MODULE, |
| 941 | }; |
| 942 | |
| 943 | #ifdef CONFIG_PARPORT_PC_SUPERIO |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 944 | |
| 945 | static struct superio_struct *find_free_superio(void) |
| 946 | { |
| 947 | int i; |
| 948 | for (i = 0; i < NR_SUPERIOS; i++) |
| 949 | if (superios[i].io == 0) |
| 950 | return &superios[i]; |
| 951 | return NULL; |
| 952 | } |
| 953 | |
| 954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | /* Super-IO chipset detection, Winbond, SMSC */ |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 956 | static void show_parconfig_smsc37c669(int io, int key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | { |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 958 | int cr1, cr4, cra, cr23, cr26, cr27; |
| 959 | struct superio_struct *s; |
| 960 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 961 | static const char *const modes[] = { |
Marko Kohtala | a6767b7 | 2006-01-06 00:19:48 -0800 | [diff] [blame] | 962 | "SPP and Bidirectional (PS/2)", |
| 963 | "EPP and SPP", |
| 964 | "ECP", |
| 965 | "ECP and EPP" }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 967 | outb(key, io); |
| 968 | outb(key, io); |
| 969 | outb(1, io); |
| 970 | cr1 = inb(io + 1); |
| 971 | outb(4, io); |
| 972 | cr4 = inb(io + 1); |
| 973 | outb(0x0a, io); |
| 974 | cra = inb(io + 1); |
| 975 | outb(0x23, io); |
| 976 | cr23 = inb(io + 1); |
| 977 | outb(0x26, io); |
| 978 | cr26 = inb(io + 1); |
| 979 | outb(0x27, io); |
| 980 | cr27 = inb(io + 1); |
| 981 | outb(0xaa, io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | |
| 983 | if (verbose_probing) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 984 | printk(KERN_INFO |
| 985 | "SMSC 37c669 LPT Config: cr_1=0x%02x, 4=0x%02x, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | "A=0x%2x, 23=0x%02x, 26=0x%02x, 27=0x%02x\n", |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 987 | cr1, cr4, cra, cr23, cr26, cr27); |
| 988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | /* The documentation calls DMA and IRQ-Lines by letters, so |
| 990 | the board maker can/will wire them |
| 991 | appropriately/randomly... G=reserved H=IDE-irq, */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 992 | printk(KERN_INFO |
| 993 | "SMSC LPT Config: io=0x%04x, irq=%c, dma=%c, fifo threshold=%d\n", |
| 994 | cr23 * 4, |
| 995 | (cr27 & 0x0f) ? 'A' - 1 + (cr27 & 0x0f) : '-', |
| 996 | (cr26 & 0x0f) ? 'A' - 1 + (cr26 & 0x0f) : '-', |
| 997 | cra & 0x0f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | printk(KERN_INFO "SMSC LPT Config: enabled=%s power=%s\n", |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 999 | (cr23 * 4 >= 0x100) ? "yes" : "no", |
| 1000 | (cr1 & 4) ? "yes" : "no"); |
| 1001 | printk(KERN_INFO |
| 1002 | "SMSC LPT Config: Port mode=%s, EPP version =%s\n", |
| 1003 | (cr1 & 0x08) ? "Standard mode only (SPP)" |
| 1004 | : modes[cr4 & 0x03], |
| 1005 | (cr4 & 0x40) ? "1.7" : "1.9"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | } |
Michael Buesch | 73e0d48 | 2009-06-11 13:06:31 +0100 | [diff] [blame] | 1007 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | /* Heuristics ! BIOS setup for this mainboard device limits |
| 1009 | the choices to standard settings, i.e. io-address and IRQ |
| 1010 | are related, however DMA can be 1 or 3, assume DMA_A=DMA1, |
| 1011 | DMA_C=DMA3 (this is true e.g. for TYAN 1564D Tomcat IV) */ |
Michael Buesch | 73e0d48 | 2009-06-11 13:06:31 +0100 | [diff] [blame] | 1012 | if (cr23 * 4 >= 0x100) { /* if active */ |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1013 | s = find_free_superio(); |
| 1014 | if (s == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | printk(KERN_INFO "Super-IO: too many chips!\n"); |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1016 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | int d; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1018 | switch (cr23 * 4) { |
| 1019 | case 0x3bc: |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1020 | s->io = 0x3bc; |
| 1021 | s->irq = 7; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1022 | break; |
| 1023 | case 0x378: |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1024 | s->io = 0x378; |
| 1025 | s->irq = 7; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1026 | break; |
| 1027 | case 0x278: |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1028 | s->io = 0x278; |
| 1029 | s->irq = 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1031 | d = (cr26 & 0x0f); |
| 1032 | if (d == 1 || d == 3) |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1033 | s->dma = d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | else |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1035 | s->dma = PARPORT_DMA_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1037 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | } |
| 1039 | |
| 1040 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1041 | static void show_parconfig_winbond(int io, int key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | { |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1043 | int cr30, cr60, cr61, cr70, cr74, crf0; |
| 1044 | struct superio_struct *s; |
Marko Kohtala | a6767b7 | 2006-01-06 00:19:48 -0800 | [diff] [blame] | 1045 | static const char *const modes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | "Standard (SPP) and Bidirectional(PS/2)", /* 0 */ |
| 1047 | "EPP-1.9 and SPP", |
| 1048 | "ECP", |
| 1049 | "ECP and EPP-1.9", |
| 1050 | "Standard (SPP)", |
| 1051 | "EPP-1.7 and SPP", /* 5 */ |
| 1052 | "undefined!", |
| 1053 | "ECP and EPP-1.7" }; |
Marko Kohtala | a6767b7 | 2006-01-06 00:19:48 -0800 | [diff] [blame] | 1054 | static char *const irqtypes[] = { |
| 1055 | "pulsed low, high-Z", |
| 1056 | "follows nACK" }; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | /* The registers are called compatible-PnP because the |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1059 | register layout is modelled after ISA-PnP, the access |
| 1060 | method is just another ... */ |
| 1061 | outb(key, io); |
| 1062 | outb(key, io); |
| 1063 | outb(0x07, io); /* Register 7: Select Logical Device */ |
| 1064 | outb(0x01, io + 1); /* LD1 is Parallel Port */ |
| 1065 | outb(0x30, io); |
| 1066 | cr30 = inb(io + 1); |
| 1067 | outb(0x60, io); |
| 1068 | cr60 = inb(io + 1); |
| 1069 | outb(0x61, io); |
| 1070 | cr61 = inb(io + 1); |
| 1071 | outb(0x70, io); |
| 1072 | cr70 = inb(io + 1); |
| 1073 | outb(0x74, io); |
| 1074 | cr74 = inb(io + 1); |
| 1075 | outb(0xf0, io); |
| 1076 | crf0 = inb(io + 1); |
| 1077 | outb(0xaa, io); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | |
| 1079 | if (verbose_probing) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1080 | printk(KERN_INFO |
| 1081 | "Winbond LPT Config: cr_30=%02x 60,61=%02x%02x 70=%02x 74=%02x, f0=%02x\n", |
| 1082 | cr30, cr60, cr61, cr70, cr74, crf0); |
| 1083 | printk(KERN_INFO "Winbond LPT Config: active=%s, io=0x%02x%02x irq=%d, ", |
| 1084 | (cr30 & 0x01) ? "yes" : "no", cr60, cr61, cr70 & 0x0f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | if ((cr74 & 0x07) > 3) |
| 1086 | printk("dma=none\n"); |
| 1087 | else |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1088 | printk("dma=%d\n", cr74 & 0x07); |
| 1089 | printk(KERN_INFO |
| 1090 | "Winbond LPT Config: irqtype=%s, ECP fifo threshold=%d\n", |
| 1091 | irqtypes[crf0>>7], (crf0>>3)&0x0f); |
| 1092 | printk(KERN_INFO "Winbond LPT Config: Port mode=%s\n", |
| 1093 | modes[crf0 & 0x07]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
Michael Buesch | 73e0d48 | 2009-06-11 13:06:31 +0100 | [diff] [blame] | 1096 | if (cr30 & 0x01) { /* the settings can be interrogated later ... */ |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1097 | s = find_free_superio(); |
| 1098 | if (s == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | printk(KERN_INFO "Super-IO: too many chips!\n"); |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1100 | else { |
| 1101 | s->io = (cr60 << 8) | cr61; |
| 1102 | s->irq = cr70 & 0x0f; |
| 1103 | s->dma = (((cr74 & 0x07) > 3) ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | PARPORT_DMA_NONE : (cr74 & 0x07)); |
| 1105 | } |
| 1106 | } |
| 1107 | } |
| 1108 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1109 | static void decode_winbond(int efer, int key, int devid, int devrev, int oldid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | { |
| 1111 | const char *type = "unknown"; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1112 | int id, progif = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | |
| 1114 | if (devid == devrev) |
| 1115 | /* simple heuristics, we happened to read some |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1116 | non-winbond register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | return; |
| 1118 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1119 | id = (devid << 8) | devrev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | |
| 1121 | /* Values are from public data sheets pdf files, I can just |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1122 | confirm 83977TF is correct :-) */ |
| 1123 | if (id == 0x9771) |
| 1124 | type = "83977F/AF"; |
| 1125 | else if (id == 0x9773) |
| 1126 | type = "83977TF / SMSC 97w33x/97w34x"; |
| 1127 | else if (id == 0x9774) |
| 1128 | type = "83977ATF"; |
| 1129 | else if ((id & ~0x0f) == 0x5270) |
| 1130 | type = "83977CTF / SMSC 97w36x"; |
| 1131 | else if ((id & ~0x0f) == 0x52f0) |
| 1132 | type = "83977EF / SMSC 97w35x"; |
| 1133 | else if ((id & ~0x0f) == 0x5210) |
| 1134 | type = "83627"; |
| 1135 | else if ((id & ~0x0f) == 0x6010) |
| 1136 | type = "83697HF"; |
| 1137 | else if ((oldid & 0x0f) == 0x0a) { |
| 1138 | type = "83877F"; |
| 1139 | progif = 1; |
| 1140 | } else if ((oldid & 0x0f) == 0x0b) { |
| 1141 | type = "83877AF"; |
| 1142 | progif = 1; |
| 1143 | } else if ((oldid & 0x0f) == 0x0c) { |
| 1144 | type = "83877TF"; |
| 1145 | progif = 1; |
| 1146 | } else if ((oldid & 0x0f) == 0x0d) { |
| 1147 | type = "83877ATF"; |
| 1148 | progif = 1; |
| 1149 | } else |
| 1150 | progif = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | |
| 1152 | if (verbose_probing) |
| 1153 | printk(KERN_INFO "Winbond chip at EFER=0x%x key=0x%02x " |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1154 | "devid=%02x devrev=%02x oldid=%02x type=%s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | efer, key, devid, devrev, oldid, type); |
| 1156 | |
| 1157 | if (progif == 2) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1158 | show_parconfig_winbond(efer, key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | } |
| 1160 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1161 | static void decode_smsc(int efer, int key, int devid, int devrev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1163 | const char *type = "unknown"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | void (*func)(int io, int key); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1165 | int id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1167 | if (devid == devrev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | /* simple heuristics, we happened to read some |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1169 | non-smsc register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | return; |
| 1171 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1172 | func = NULL; |
| 1173 | id = (devid << 8) | devrev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1175 | if (id == 0x0302) { |
| 1176 | type = "37c669"; |
| 1177 | func = show_parconfig_smsc37c669; |
| 1178 | } else if (id == 0x6582) |
| 1179 | type = "37c665IR"; |
| 1180 | else if (devid == 0x65) |
| 1181 | type = "37c665GT"; |
| 1182 | else if (devid == 0x66) |
| 1183 | type = "37c666GT"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | |
| 1185 | if (verbose_probing) |
| 1186 | printk(KERN_INFO "SMSC chip at EFER=0x%x " |
| 1187 | "key=0x%02x devid=%02x devrev=%02x type=%s\n", |
| 1188 | efer, key, devid, devrev, type); |
| 1189 | |
| 1190 | if (func) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1191 | func(efer, key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | } |
| 1193 | |
| 1194 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1195 | static void winbond_check(int io, int key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | { |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1197 | int origval, devid, devrev, oldid, x_devid, x_devrev, x_oldid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | |
Harvey Harrison | 145980a | 2008-04-30 00:54:57 -0700 | [diff] [blame] | 1199 | if (!request_region(io, 3, __func__)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | return; |
| 1201 | |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1202 | origval = inb(io); /* Save original value */ |
| 1203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | /* First probe without key */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1205 | outb(0x20, io); |
| 1206 | x_devid = inb(io + 1); |
| 1207 | outb(0x21, io); |
| 1208 | x_devrev = inb(io + 1); |
| 1209 | outb(0x09, io); |
| 1210 | x_oldid = inb(io + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1212 | outb(key, io); |
| 1213 | outb(key, io); /* Write Magic Sequence to EFER, extended |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1214 | function enable register */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1215 | outb(0x20, io); /* Write EFIR, extended function index register */ |
| 1216 | devid = inb(io + 1); /* Read EFDR, extended function data register */ |
| 1217 | outb(0x21, io); |
| 1218 | devrev = inb(io + 1); |
| 1219 | outb(0x09, io); |
| 1220 | oldid = inb(io + 1); |
| 1221 | outb(0xaa, io); /* Magic Seal */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1223 | outb(origval, io); /* in case we poked some entirely different hardware */ |
| 1224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | if ((x_devid == devid) && (x_devrev == devrev) && (x_oldid == oldid)) |
| 1226 | goto out; /* protection against false positives */ |
| 1227 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1228 | decode_winbond(io, key, devid, devrev, oldid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | out: |
| 1230 | release_region(io, 3); |
| 1231 | } |
| 1232 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1233 | static void winbond_check2(int io, int key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | { |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1235 | int origval[3], devid, devrev, oldid, x_devid, x_devrev, x_oldid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | |
Harvey Harrison | 145980a | 2008-04-30 00:54:57 -0700 | [diff] [blame] | 1237 | if (!request_region(io, 3, __func__)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | return; |
| 1239 | |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1240 | origval[0] = inb(io); /* Save original values */ |
| 1241 | origval[1] = inb(io + 1); |
| 1242 | origval[2] = inb(io + 2); |
| 1243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | /* First probe without the key */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1245 | outb(0x20, io + 2); |
| 1246 | x_devid = inb(io + 2); |
| 1247 | outb(0x21, io + 1); |
| 1248 | x_devrev = inb(io + 2); |
| 1249 | outb(0x09, io + 1); |
| 1250 | x_oldid = inb(io + 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1252 | outb(key, io); /* Write Magic Byte to EFER, extended |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1253 | function enable register */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1254 | outb(0x20, io + 2); /* Write EFIR, extended function index register */ |
| 1255 | devid = inb(io + 2); /* Read EFDR, extended function data register */ |
| 1256 | outb(0x21, io + 1); |
| 1257 | devrev = inb(io + 2); |
| 1258 | outb(0x09, io + 1); |
| 1259 | oldid = inb(io + 2); |
| 1260 | outb(0xaa, io); /* Magic Seal */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1262 | outb(origval[0], io); /* in case we poked some entirely different hardware */ |
| 1263 | outb(origval[1], io + 1); |
| 1264 | outb(origval[2], io + 2); |
| 1265 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1266 | if (x_devid == devid && x_devrev == devrev && x_oldid == oldid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | goto out; /* protection against false positives */ |
| 1268 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1269 | decode_winbond(io, key, devid, devrev, oldid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | out: |
| 1271 | release_region(io, 3); |
| 1272 | } |
| 1273 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1274 | static void smsc_check(int io, int key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | { |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1276 | int origval, id, rev, oldid, oldrev, x_id, x_rev, x_oldid, x_oldrev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | |
Harvey Harrison | 145980a | 2008-04-30 00:54:57 -0700 | [diff] [blame] | 1278 | if (!request_region(io, 3, __func__)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | return; |
| 1280 | |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1281 | origval = inb(io); /* Save original value */ |
| 1282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | /* First probe without the key */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1284 | outb(0x0d, io); |
| 1285 | x_oldid = inb(io + 1); |
| 1286 | outb(0x0e, io); |
| 1287 | x_oldrev = inb(io + 1); |
| 1288 | outb(0x20, io); |
| 1289 | x_id = inb(io + 1); |
| 1290 | outb(0x21, io); |
| 1291 | x_rev = inb(io + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1293 | outb(key, io); |
| 1294 | outb(key, io); /* Write Magic Sequence to EFER, extended |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1295 | function enable register */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1296 | outb(0x0d, io); /* Write EFIR, extended function index register */ |
| 1297 | oldid = inb(io + 1); /* Read EFDR, extended function data register */ |
| 1298 | outb(0x0e, io); |
| 1299 | oldrev = inb(io + 1); |
| 1300 | outb(0x20, io); |
| 1301 | id = inb(io + 1); |
| 1302 | outb(0x21, io); |
| 1303 | rev = inb(io + 1); |
| 1304 | outb(0xaa, io); /* Magic Seal */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1306 | outb(origval, io); /* in case we poked some entirely different hardware */ |
| 1307 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1308 | if (x_id == id && x_oldrev == oldrev && |
| 1309 | x_oldid == oldid && x_rev == rev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | goto out; /* protection against false positives */ |
| 1311 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1312 | decode_smsc(io, key, oldid, oldrev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | out: |
| 1314 | release_region(io, 3); |
| 1315 | } |
| 1316 | |
| 1317 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1318 | static void detect_and_report_winbond(void) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1319 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | if (verbose_probing) |
| 1321 | printk(KERN_DEBUG "Winbond Super-IO detection, now testing ports 3F0,370,250,4E,2E ...\n"); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1322 | winbond_check(0x3f0, 0x87); |
| 1323 | winbond_check(0x370, 0x87); |
| 1324 | winbond_check(0x2e , 0x87); |
| 1325 | winbond_check(0x4e , 0x87); |
| 1326 | winbond_check(0x3f0, 0x86); |
| 1327 | winbond_check2(0x250, 0x88); |
| 1328 | winbond_check2(0x250, 0x89); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | } |
| 1330 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1331 | static void detect_and_report_smsc(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | { |
| 1333 | if (verbose_probing) |
| 1334 | printk(KERN_DEBUG "SMSC Super-IO detection, now testing Ports 2F0, 370 ...\n"); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1335 | smsc_check(0x3f0, 0x55); |
| 1336 | smsc_check(0x370, 0x55); |
| 1337 | smsc_check(0x3f0, 0x44); |
| 1338 | smsc_check(0x370, 0x44); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | } |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 1340 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1341 | static void detect_and_report_it87(void) |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 1342 | { |
| 1343 | u16 dev; |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1344 | u8 origval, r; |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 1345 | if (verbose_probing) |
| 1346 | printk(KERN_DEBUG "IT8705 Super-IO detection, now testing port 2E ...\n"); |
Alan Cox | 868d1721 | 2011-05-04 10:18:42 +0100 | [diff] [blame] | 1347 | if (!request_muxed_region(0x2e, 2, __func__)) |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 1348 | return; |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1349 | origval = inb(0x2e); /* Save original value */ |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 1350 | outb(0x87, 0x2e); |
| 1351 | outb(0x01, 0x2e); |
| 1352 | outb(0x55, 0x2e); |
| 1353 | outb(0x55, 0x2e); |
| 1354 | outb(0x20, 0x2e); |
| 1355 | dev = inb(0x2f) << 8; |
| 1356 | outb(0x21, 0x2e); |
| 1357 | dev |= inb(0x2f); |
| 1358 | if (dev == 0x8712 || dev == 0x8705 || dev == 0x8715 || |
| 1359 | dev == 0x8716 || dev == 0x8718 || dev == 0x8726) { |
| 1360 | printk(KERN_INFO "IT%04X SuperIO detected.\n", dev); |
| 1361 | outb(0x07, 0x2E); /* Parallel Port */ |
| 1362 | outb(0x03, 0x2F); |
| 1363 | outb(0xF0, 0x2E); /* BOOT 0x80 off */ |
| 1364 | r = inb(0x2f); |
| 1365 | outb(0xF0, 0x2E); |
| 1366 | outb(r | 8, 0x2F); |
| 1367 | outb(0x02, 0x2E); /* Lock */ |
| 1368 | outb(0x02, 0x2F); |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1369 | } else { |
| 1370 | outb(origval, 0x2e); /* Oops, sorry to disturb */ |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 1371 | } |
Jens Rottmann | e2434dc | 2009-06-22 16:51:49 +0100 | [diff] [blame] | 1372 | release_region(0x2e, 2); |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 1373 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | #endif /* CONFIG_PARPORT_PC_SUPERIO */ |
| 1375 | |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1376 | static struct superio_struct *find_superio(struct parport *p) |
| 1377 | { |
| 1378 | int i; |
| 1379 | for (i = 0; i < NR_SUPERIOS; i++) |
| 1380 | if (superios[i].io != p->base) |
| 1381 | return &superios[i]; |
| 1382 | return NULL; |
| 1383 | } |
| 1384 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1385 | static int get_superio_dma(struct parport *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | { |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1387 | struct superio_struct *s = find_superio(p); |
| 1388 | if (s) |
| 1389 | return s->dma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | return PARPORT_DMA_NONE; |
| 1391 | } |
| 1392 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1393 | static int get_superio_irq(struct parport *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | { |
Alan Cox | 181bf1e | 2009-06-11 13:08:10 +0100 | [diff] [blame] | 1395 | struct superio_struct *s = find_superio(p); |
| 1396 | if (s) |
| 1397 | return s->irq; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1398 | return PARPORT_IRQ_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | } |
Michael Buesch | 73e0d48 | 2009-06-11 13:06:31 +0100 | [diff] [blame] | 1400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | |
| 1402 | /* --- Mode detection ------------------------------------- */ |
| 1403 | |
| 1404 | /* |
| 1405 | * Checks for port existence, all ports support SPP MODE |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1406 | * Returns: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | * 0 : No parallel port at this address |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1408 | * PARPORT_MODE_PCSPP : SPP port detected |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | * (if the user specified an ioport himself, |
| 1410 | * this shall always be the case!) |
| 1411 | * |
| 1412 | */ |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 1413 | static int parport_SPP_supported(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | { |
| 1415 | unsigned char r, w; |
| 1416 | |
| 1417 | /* |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1418 | * first clear an eventually pending EPP timeout |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | * I (sailer@ife.ee.ethz.ch) have an SMSC chipset |
| 1420 | * that does not even respond to SPP cycles if an EPP |
| 1421 | * timeout is pending |
| 1422 | */ |
| 1423 | clear_epp_timeout(pb); |
| 1424 | |
| 1425 | /* Do a simple read-write test to make sure the port exists. */ |
| 1426 | w = 0xc; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1427 | outb(w, CONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | |
| 1429 | /* Is there a control register that we can read from? Some |
| 1430 | * ports don't allow reads, so read_control just returns a |
| 1431 | * software copy. Some ports _do_ allow reads, so bypass the |
| 1432 | * software copy here. In addition, some bits aren't |
| 1433 | * writable. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1434 | r = inb(CONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | if ((r & 0xf) == w) { |
| 1436 | w = 0xe; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1437 | outb(w, CONTROL(pb)); |
| 1438 | r = inb(CONTROL(pb)); |
| 1439 | outb(0xc, CONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | if ((r & 0xf) == w) |
| 1441 | return PARPORT_MODE_PCSPP; |
| 1442 | } |
| 1443 | |
| 1444 | if (user_specified) |
| 1445 | /* That didn't work, but the user thinks there's a |
| 1446 | * port here. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1447 | printk(KERN_INFO "parport 0x%lx (WARNING): CTR: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | "wrote 0x%02x, read 0x%02x\n", pb->base, w, r); |
| 1449 | |
| 1450 | /* Try the data register. The data lines aren't tri-stated at |
| 1451 | * this stage, so we expect back what we wrote. */ |
| 1452 | w = 0xaa; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1453 | parport_pc_write_data(pb, w); |
| 1454 | r = parport_pc_read_data(pb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | if (r == w) { |
| 1456 | w = 0x55; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1457 | parport_pc_write_data(pb, w); |
| 1458 | r = parport_pc_read_data(pb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | if (r == w) |
| 1460 | return PARPORT_MODE_PCSPP; |
| 1461 | } |
| 1462 | |
| 1463 | if (user_specified) { |
| 1464 | /* Didn't work, but the user is convinced this is the |
| 1465 | * place. */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1466 | printk(KERN_INFO "parport 0x%lx (WARNING): DATA: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | "wrote 0x%02x, read 0x%02x\n", pb->base, w, r); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1468 | printk(KERN_INFO "parport 0x%lx: You gave this address, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | "but there is probably no parallel port there!\n", |
| 1470 | pb->base); |
| 1471 | } |
| 1472 | |
| 1473 | /* It's possible that we can't read the control register or |
| 1474 | * the data register. In that case just believe the user. */ |
| 1475 | if (user_specified) |
| 1476 | return PARPORT_MODE_PCSPP; |
| 1477 | |
| 1478 | return 0; |
| 1479 | } |
| 1480 | |
| 1481 | /* Check for ECR |
| 1482 | * |
| 1483 | * Old style XT ports alias io ports every 0x400, hence accessing ECR |
| 1484 | * on these cards actually accesses the CTR. |
| 1485 | * |
| 1486 | * Modern cards don't do this but reading from ECR will return 0xff |
| 1487 | * regardless of what is written here if the card does NOT support |
| 1488 | * ECP. |
| 1489 | * |
| 1490 | * We first check to see if ECR is the same as CTR. If not, the low |
| 1491 | * two bits of ECR aren't writable, so we check by writing ECR and |
| 1492 | * reading it back to see if it's what we expect. |
| 1493 | */ |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 1494 | static int parport_ECR_present(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | { |
| 1496 | struct parport_pc_private *priv = pb->private_data; |
| 1497 | unsigned char r = 0xc; |
| 1498 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1499 | outb(r, CONTROL(pb)); |
| 1500 | if ((inb(ECONTROL(pb)) & 0x3) == (r & 0x3)) { |
| 1501 | outb(r ^ 0x2, CONTROL(pb)); /* Toggle bit 1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1503 | r = inb(CONTROL(pb)); |
| 1504 | if ((inb(ECONTROL(pb)) & 0x2) == (r & 0x2)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | goto no_reg; /* Sure that no ECR register exists */ |
| 1506 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1507 | |
| 1508 | if ((inb(ECONTROL(pb)) & 0x3) != 0x1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | goto no_reg; |
| 1510 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1511 | ECR_WRITE(pb, 0x34); |
| 1512 | if (inb(ECONTROL(pb)) != 0x35) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | goto no_reg; |
| 1514 | |
| 1515 | priv->ecr = 1; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1516 | outb(0xc, CONTROL(pb)); |
| 1517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | /* Go to mode 000 */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1519 | frob_set_mode(pb, ECR_SPP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | |
| 1521 | return 1; |
| 1522 | |
| 1523 | no_reg: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1524 | outb(0xc, CONTROL(pb)); |
| 1525 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | } |
| 1527 | |
| 1528 | #ifdef CONFIG_PARPORT_1284 |
| 1529 | /* Detect PS/2 support. |
| 1530 | * |
| 1531 | * Bit 5 (0x20) sets the PS/2 data direction; setting this high |
| 1532 | * allows us to read data from the data lines. In theory we would get back |
| 1533 | * 0xff but any peripheral attached to the port may drag some or all of the |
| 1534 | * lines down to zero. So if we get back anything that isn't the contents |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1535 | * of the data register we deem PS/2 support to be present. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | * |
| 1537 | * Some SPP ports have "half PS/2" ability - you can't turn off the line |
| 1538 | * drivers, but an external peripheral with sufficiently beefy drivers of |
| 1539 | * its own can overpower them and assert its own levels onto the bus, from |
| 1540 | * where they can then be read back as normal. Ports with this property |
| 1541 | * and the right type of device attached are likely to fail the SPP test, |
| 1542 | * (as they will appear to have stuck bits) and so the fact that they might |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1543 | * be misdetected here is rather academic. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | */ |
| 1545 | |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 1546 | static int parport_PS2_supported(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | { |
| 1548 | int ok = 0; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | clear_epp_timeout(pb); |
| 1551 | |
| 1552 | /* try to tri-state the buffer */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1553 | parport_pc_data_reverse(pb); |
| 1554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | parport_pc_write_data(pb, 0x55); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1556 | if (parport_pc_read_data(pb) != 0x55) |
| 1557 | ok++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | |
| 1559 | parport_pc_write_data(pb, 0xaa); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1560 | if (parport_pc_read_data(pb) != 0xaa) |
| 1561 | ok++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | |
| 1563 | /* cancel input mode */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1564 | parport_pc_data_forward(pb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | |
| 1566 | if (ok) { |
| 1567 | pb->modes |= PARPORT_MODE_TRISTATE; |
| 1568 | } else { |
| 1569 | struct parport_pc_private *priv = pb->private_data; |
| 1570 | priv->ctr_writable &= ~0x20; |
| 1571 | } |
| 1572 | |
| 1573 | return ok; |
| 1574 | } |
| 1575 | |
| 1576 | #ifdef CONFIG_PARPORT_PC_FIFO |
David Brownell | 55265b0 | 2008-02-13 15:03:21 -0800 | [diff] [blame] | 1577 | static int parport_ECP_supported(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | { |
| 1579 | int i; |
| 1580 | int config, configb; |
| 1581 | int pword; |
| 1582 | struct parport_pc_private *priv = pb->private_data; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1583 | /* Translate ECP intrLine to ISA irq value */ |
| 1584 | static const int intrline[] = { 0, 7, 9, 10, 11, 14, 15, 5 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | |
| 1586 | /* If there is no ECR, we have no hope of supporting ECP. */ |
| 1587 | if (!priv->ecr) |
| 1588 | return 0; |
| 1589 | |
| 1590 | /* Find out FIFO depth */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1591 | ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */ |
| 1592 | ECR_WRITE(pb, ECR_TST << 5); /* TEST FIFO */ |
| 1593 | for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02); i++) |
| 1594 | outb(0xaa, FIFO(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | |
| 1596 | /* |
| 1597 | * Using LGS chipset it uses ECR register, but |
| 1598 | * it doesn't support ECP or FIFO MODE |
| 1599 | */ |
| 1600 | if (i == 1024) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1601 | ECR_WRITE(pb, ECR_SPP << 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | return 0; |
| 1603 | } |
| 1604 | |
| 1605 | priv->fifo_depth = i; |
| 1606 | if (verbose_probing) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1607 | printk(KERN_DEBUG "0x%lx: FIFO is %d bytes\n", pb->base, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | |
| 1609 | /* Find out writeIntrThreshold */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1610 | frob_econtrol(pb, 1<<2, 1<<2); |
| 1611 | frob_econtrol(pb, 1<<2, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | for (i = 1; i <= priv->fifo_depth; i++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1613 | inb(FIFO(pb)); |
| 1614 | udelay(50); |
| 1615 | if (inb(ECONTROL(pb)) & (1<<2)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | break; |
| 1617 | } |
| 1618 | |
| 1619 | if (i <= priv->fifo_depth) { |
| 1620 | if (verbose_probing) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1621 | printk(KERN_DEBUG "0x%lx: writeIntrThreshold is %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | pb->base, i); |
| 1623 | } else |
| 1624 | /* Number of bytes we know we can write if we get an |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1625 | interrupt. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | i = 0; |
| 1627 | |
| 1628 | priv->writeIntrThreshold = i; |
| 1629 | |
| 1630 | /* Find out readIntrThreshold */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1631 | frob_set_mode(pb, ECR_PS2); /* Reset FIFO and enable PS2 */ |
| 1632 | parport_pc_data_reverse(pb); /* Must be in PS2 mode */ |
| 1633 | frob_set_mode(pb, ECR_TST); /* Test FIFO */ |
| 1634 | frob_econtrol(pb, 1<<2, 1<<2); |
| 1635 | frob_econtrol(pb, 1<<2, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | for (i = 1; i <= priv->fifo_depth; i++) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1637 | outb(0xaa, FIFO(pb)); |
| 1638 | if (inb(ECONTROL(pb)) & (1<<2)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | break; |
| 1640 | } |
| 1641 | |
| 1642 | if (i <= priv->fifo_depth) { |
| 1643 | if (verbose_probing) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1644 | printk(KERN_INFO "0x%lx: readIntrThreshold is %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | pb->base, i); |
| 1646 | } else |
| 1647 | /* Number of bytes we can read if we get an interrupt. */ |
| 1648 | i = 0; |
| 1649 | |
| 1650 | priv->readIntrThreshold = i; |
| 1651 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1652 | ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */ |
| 1653 | ECR_WRITE(pb, 0xf4); /* Configuration mode */ |
| 1654 | config = inb(CONFIGA(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | pword = (config >> 4) & 0x7; |
| 1656 | switch (pword) { |
| 1657 | case 0: |
| 1658 | pword = 2; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1659 | printk(KERN_WARNING "0x%lx: Unsupported pword size!\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | pb->base); |
| 1661 | break; |
| 1662 | case 2: |
| 1663 | pword = 4; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1664 | printk(KERN_WARNING "0x%lx: Unsupported pword size!\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | pb->base); |
| 1666 | break; |
| 1667 | default: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1668 | printk(KERN_WARNING "0x%lx: Unknown implementation ID\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | pb->base); |
| 1670 | /* Assume 1 */ |
| 1671 | case 1: |
| 1672 | pword = 1; |
| 1673 | } |
| 1674 | priv->pword = pword; |
| 1675 | |
| 1676 | if (verbose_probing) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1677 | printk(KERN_DEBUG "0x%lx: PWord is %d bits\n", |
| 1678 | pb->base, 8 * pword); |
| 1679 | |
| 1680 | printk(KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n", pb->base, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | config & 0x80 ? "Level" : "Pulses"); |
| 1682 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1683 | configb = inb(CONFIGB(pb)); |
| 1684 | printk(KERN_DEBUG "0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | pb->base, config, configb); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1686 | printk(KERN_DEBUG "0x%lx: ECP settings irq=", pb->base); |
| 1687 | if ((configb >> 3) & 0x07) |
| 1688 | printk("%d", intrline[(configb >> 3) & 0x07]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | else |
| 1690 | printk("<none or set by other means>"); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1691 | printk(" dma="); |
| 1692 | if ((configb & 0x03) == 0x00) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | printk("<none or set by other means>\n"); |
| 1694 | else |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1695 | printk("%d\n", configb & 0x07); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | } |
| 1697 | |
| 1698 | /* Go back to mode 000 */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1699 | frob_set_mode(pb, ECR_SPP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | |
| 1701 | return 1; |
| 1702 | } |
| 1703 | #endif |
| 1704 | |
Matwey V. Kornilov | 0ae39cc | 2014-08-27 12:07:44 +0400 | [diff] [blame] | 1705 | #ifdef CONFIG_X86_32 |
| 1706 | static int intel_bug_present_check_epp(struct parport *pb) |
Matwey V. Kornilov | 17891c8 | 2014-08-27 12:07:43 +0400 | [diff] [blame] | 1707 | { |
| 1708 | const struct parport_pc_private *priv = pb->private_data; |
| 1709 | int bug_present = 0; |
| 1710 | |
| 1711 | if (priv->ecr) { |
| 1712 | /* store value of ECR */ |
| 1713 | unsigned char ecr = inb(ECONTROL(pb)); |
| 1714 | unsigned char i; |
| 1715 | for (i = 0x00; i < 0x80; i += 0x20) { |
| 1716 | ECR_WRITE(pb, i); |
| 1717 | if (clear_epp_timeout(pb)) { |
| 1718 | /* Phony EPP in ECP. */ |
| 1719 | bug_present = 1; |
| 1720 | break; |
| 1721 | } |
| 1722 | } |
| 1723 | /* return ECR into the inital state */ |
| 1724 | ECR_WRITE(pb, ecr); |
| 1725 | } |
| 1726 | |
| 1727 | return bug_present; |
| 1728 | } |
Matwey V. Kornilov | 0ae39cc | 2014-08-27 12:07:44 +0400 | [diff] [blame] | 1729 | static int intel_bug_present(struct parport *pb) |
| 1730 | { |
| 1731 | /* Check whether the device is legacy, not PCI or PCMCIA. Only legacy is known to be affected. */ |
| 1732 | if (pb->dev != NULL) { |
| 1733 | return 0; |
| 1734 | } |
| 1735 | |
| 1736 | return intel_bug_present_check_epp(pb); |
| 1737 | } |
| 1738 | #else |
| 1739 | static int intel_bug_present(struct parport *pb) |
| 1740 | { |
| 1741 | return 0; |
| 1742 | } |
| 1743 | #endif /* CONFIG_X86_32 */ |
Matwey V. Kornilov | 17891c8 | 2014-08-27 12:07:43 +0400 | [diff] [blame] | 1744 | |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 1745 | static int parport_ECPPS2_supported(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | { |
| 1747 | const struct parport_pc_private *priv = pb->private_data; |
| 1748 | int result; |
| 1749 | unsigned char oecr; |
| 1750 | |
| 1751 | if (!priv->ecr) |
| 1752 | return 0; |
| 1753 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1754 | oecr = inb(ECONTROL(pb)); |
| 1755 | ECR_WRITE(pb, ECR_PS2 << 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | result = parport_PS2_supported(pb); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1757 | ECR_WRITE(pb, oecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | return result; |
| 1759 | } |
| 1760 | |
| 1761 | /* EPP mode detection */ |
| 1762 | |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 1763 | static int parport_EPP_supported(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | /* |
| 1766 | * Theory: |
| 1767 | * Bit 0 of STR is the EPP timeout bit, this bit is 0 |
| 1768 | * when EPP is possible and is set high when an EPP timeout |
| 1769 | * occurs (EPP uses the HALT line to stop the CPU while it does |
| 1770 | * the byte transfer, an EPP timeout occurs if the attached |
| 1771 | * device fails to respond after 10 micro seconds). |
| 1772 | * |
| 1773 | * This bit is cleared by either reading it (National Semi) |
| 1774 | * or writing a 1 to the bit (SMC, UMC, WinBond), others ??? |
| 1775 | * This bit is always high in non EPP modes. |
| 1776 | */ |
| 1777 | |
| 1778 | /* If EPP timeout bit clear then EPP available */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1779 | if (!clear_epp_timeout(pb)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | return 0; /* No way to clear timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | |
| 1782 | /* Check for Intel bug. */ |
Matwey V. Kornilov | 17891c8 | 2014-08-27 12:07:43 +0400 | [diff] [blame] | 1783 | if (intel_bug_present(pb)) |
| 1784 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | |
| 1786 | pb->modes |= PARPORT_MODE_EPP; |
| 1787 | |
| 1788 | /* Set up access functions to use EPP hardware. */ |
| 1789 | pb->ops->epp_read_data = parport_pc_epp_read_data; |
| 1790 | pb->ops->epp_write_data = parport_pc_epp_write_data; |
| 1791 | pb->ops->epp_read_addr = parport_pc_epp_read_addr; |
| 1792 | pb->ops->epp_write_addr = parport_pc_epp_write_addr; |
| 1793 | |
| 1794 | return 1; |
| 1795 | } |
| 1796 | |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 1797 | static int parport_ECPEPP_supported(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | { |
| 1799 | struct parport_pc_private *priv = pb->private_data; |
| 1800 | int result; |
| 1801 | unsigned char oecr; |
| 1802 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1803 | if (!priv->ecr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1806 | oecr = inb(ECONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | /* Search for SMC style EPP+ECP mode */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1808 | ECR_WRITE(pb, 0x80); |
| 1809 | outb(0x04, CONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | result = parport_EPP_supported(pb); |
| 1811 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1812 | ECR_WRITE(pb, oecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | |
| 1814 | if (result) { |
| 1815 | /* Set up access functions to use ECP+EPP hardware. */ |
| 1816 | pb->ops->epp_read_data = parport_pc_ecpepp_read_data; |
| 1817 | pb->ops->epp_write_data = parport_pc_ecpepp_write_data; |
| 1818 | pb->ops->epp_read_addr = parport_pc_ecpepp_read_addr; |
| 1819 | pb->ops->epp_write_addr = parport_pc_ecpepp_write_addr; |
| 1820 | } |
| 1821 | |
| 1822 | return result; |
| 1823 | } |
| 1824 | |
| 1825 | #else /* No IEEE 1284 support */ |
| 1826 | |
| 1827 | /* Don't bother probing for modes we know we won't use. */ |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1828 | static int parport_PS2_supported(struct parport *pb) { return 0; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | #ifdef CONFIG_PARPORT_PC_FIFO |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1830 | static int parport_ECP_supported(struct parport *pb) |
| 1831 | { |
| 1832 | return 0; |
| 1833 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | #endif |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1835 | static int parport_EPP_supported(struct parport *pb) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1836 | { |
| 1837 | return 0; |
| 1838 | } |
| 1839 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1840 | static int parport_ECPEPP_supported(struct parport *pb) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1841 | { |
| 1842 | return 0; |
| 1843 | } |
| 1844 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 1845 | static int parport_ECPPS2_supported(struct parport *pb) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1846 | { |
| 1847 | return 0; |
| 1848 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | |
| 1850 | #endif /* No IEEE 1284 support */ |
| 1851 | |
| 1852 | /* --- IRQ detection -------------------------------------- */ |
| 1853 | |
| 1854 | /* Only if supports ECP mode */ |
Randy Dunlap | 4438982 | 2006-12-06 20:38:33 -0800 | [diff] [blame] | 1855 | static int programmable_irq_support(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | { |
| 1857 | int irq, intrLine; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1858 | unsigned char oecr = inb(ECONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1859 | static const int lookup[8] = { |
| 1860 | PARPORT_IRQ_NONE, 7, 9, 10, 11, 14, 15, 5 |
| 1861 | }; |
| 1862 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1863 | ECR_WRITE(pb, ECR_CNF << 5); /* Configuration MODE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1865 | intrLine = (inb(CONFIGB(pb)) >> 3) & 0x07; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | irq = lookup[intrLine]; |
| 1867 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1868 | ECR_WRITE(pb, oecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | return irq; |
| 1870 | } |
| 1871 | |
Randy Dunlap | 4438982 | 2006-12-06 20:38:33 -0800 | [diff] [blame] | 1872 | static int irq_probe_ECP(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | { |
| 1874 | int i; |
| 1875 | unsigned long irqs; |
| 1876 | |
| 1877 | irqs = probe_irq_on(); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1878 | |
| 1879 | ECR_WRITE(pb, ECR_SPP << 5); /* Reset FIFO */ |
| 1880 | ECR_WRITE(pb, (ECR_TST << 5) | 0x04); |
| 1881 | ECR_WRITE(pb, ECR_TST << 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | |
| 1883 | /* If Full FIFO sure that writeIntrThreshold is generated */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1884 | for (i = 0; i < 1024 && !(inb(ECONTROL(pb)) & 0x02) ; i++) |
| 1885 | outb(0xaa, FIFO(pb)); |
| 1886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | pb->irq = probe_irq_off(irqs); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1888 | ECR_WRITE(pb, ECR_SPP << 5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | |
| 1890 | if (pb->irq <= 0) |
| 1891 | pb->irq = PARPORT_IRQ_NONE; |
| 1892 | |
| 1893 | return pb->irq; |
| 1894 | } |
| 1895 | |
| 1896 | /* |
| 1897 | * This detection seems that only works in National Semiconductors |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1898 | * This doesn't work in SMC, LGS, and Winbond |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | */ |
Randy Dunlap | 4438982 | 2006-12-06 20:38:33 -0800 | [diff] [blame] | 1900 | static int irq_probe_EPP(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | { |
| 1902 | #ifndef ADVANCED_DETECT |
| 1903 | return PARPORT_IRQ_NONE; |
| 1904 | #else |
| 1905 | int irqs; |
| 1906 | unsigned char oecr; |
| 1907 | |
| 1908 | if (pb->modes & PARPORT_MODE_PCECR) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1909 | oecr = inb(ECONTROL(pb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | |
| 1911 | irqs = probe_irq_on(); |
| 1912 | |
| 1913 | if (pb->modes & PARPORT_MODE_PCECR) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1914 | frob_econtrol(pb, 0x10, 0x10); |
| 1915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | clear_epp_timeout(pb); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1917 | parport_pc_frob_control(pb, 0x20, 0x20); |
| 1918 | parport_pc_frob_control(pb, 0x10, 0x10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | clear_epp_timeout(pb); |
| 1920 | |
| 1921 | /* Device isn't expecting an EPP read |
| 1922 | * and generates an IRQ. |
| 1923 | */ |
| 1924 | parport_pc_read_epp(pb); |
| 1925 | udelay(20); |
| 1926 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1927 | pb->irq = probe_irq_off(irqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | if (pb->modes & PARPORT_MODE_PCECR) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1929 | ECR_WRITE(pb, oecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | parport_pc_write_control(pb, 0xc); |
| 1931 | |
| 1932 | if (pb->irq <= 0) |
| 1933 | pb->irq = PARPORT_IRQ_NONE; |
| 1934 | |
| 1935 | return pb->irq; |
| 1936 | #endif /* Advanced detection */ |
| 1937 | } |
| 1938 | |
Randy Dunlap | 4438982 | 2006-12-06 20:38:33 -0800 | [diff] [blame] | 1939 | static int irq_probe_SPP(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | { |
| 1941 | /* Don't even try to do this. */ |
| 1942 | return PARPORT_IRQ_NONE; |
| 1943 | } |
| 1944 | |
| 1945 | /* We will attempt to share interrupt requests since other devices |
| 1946 | * such as sound cards and network cards seem to like using the |
| 1947 | * printer IRQs. |
| 1948 | * |
| 1949 | * When ECP is available we can autoprobe for IRQs. |
| 1950 | * NOTE: If we can autoprobe it, we can register the IRQ. |
| 1951 | */ |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 1952 | static int parport_irq_probe(struct parport *pb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | { |
| 1954 | struct parport_pc_private *priv = pb->private_data; |
| 1955 | |
| 1956 | if (priv->ecr) { |
| 1957 | pb->irq = programmable_irq_support(pb); |
| 1958 | |
| 1959 | if (pb->irq == PARPORT_IRQ_NONE) |
| 1960 | pb->irq = irq_probe_ECP(pb); |
| 1961 | } |
| 1962 | |
| 1963 | if ((pb->irq == PARPORT_IRQ_NONE) && priv->ecr && |
| 1964 | (pb->modes & PARPORT_MODE_EPP)) |
| 1965 | pb->irq = irq_probe_EPP(pb); |
| 1966 | |
| 1967 | clear_epp_timeout(pb); |
| 1968 | |
| 1969 | if (pb->irq == PARPORT_IRQ_NONE && (pb->modes & PARPORT_MODE_EPP)) |
| 1970 | pb->irq = irq_probe_EPP(pb); |
| 1971 | |
| 1972 | clear_epp_timeout(pb); |
| 1973 | |
| 1974 | if (pb->irq == PARPORT_IRQ_NONE) |
| 1975 | pb->irq = irq_probe_SPP(pb); |
| 1976 | |
| 1977 | if (pb->irq == PARPORT_IRQ_NONE) |
| 1978 | pb->irq = get_superio_irq(pb); |
| 1979 | |
| 1980 | return pb->irq; |
| 1981 | } |
| 1982 | |
| 1983 | /* --- DMA detection -------------------------------------- */ |
| 1984 | |
| 1985 | /* Only if chipset conforms to ECP ISA Interface Standard */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1986 | static int programmable_dma_support(struct parport *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1988 | unsigned char oecr = inb(ECONTROL(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | int dma; |
| 1990 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1991 | frob_set_mode(p, ECR_CNF); |
| 1992 | |
| 1993 | dma = inb(CONFIGB(p)) & 0x07; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | /* 000: Indicates jumpered 8-bit DMA if read-only. |
| 1995 | 100: Indicates jumpered 16-bit DMA if read-only. */ |
| 1996 | if ((dma & 0x03) == 0) |
| 1997 | dma = PARPORT_DMA_NONE; |
| 1998 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 1999 | ECR_WRITE(p, oecr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | return dma; |
| 2001 | } |
| 2002 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2003 | static int parport_dma_probe(struct parport *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | { |
| 2005 | const struct parport_pc_private *priv = p->private_data; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2006 | if (priv->ecr) /* ask ECP chipset first */ |
| 2007 | p->dma = programmable_dma_support(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | if (p->dma == PARPORT_DMA_NONE) { |
| 2009 | /* ask known Super-IO chips proper, although these |
| 2010 | claim ECP compatible, some don't report their DMA |
| 2011 | conforming to ECP standards */ |
| 2012 | p->dma = get_superio_dma(p); |
| 2013 | } |
| 2014 | |
| 2015 | return p->dma; |
| 2016 | } |
| 2017 | |
| 2018 | /* --- Initialisation code -------------------------------- */ |
| 2019 | |
| 2020 | static LIST_HEAD(ports_list); |
| 2021 | static DEFINE_SPINLOCK(ports_lock); |
| 2022 | |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2023 | struct parport *parport_pc_probe_port(unsigned long int base, |
| 2024 | unsigned long int base_hi, |
| 2025 | int irq, int dma, |
| 2026 | struct device *dev, |
| 2027 | int irqflags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | { |
| 2029 | struct parport_pc_private *priv; |
| 2030 | struct parport_operations *ops; |
| 2031 | struct parport *p; |
| 2032 | int probedirq = PARPORT_IRQ_NONE; |
| 2033 | struct resource *base_res; |
| 2034 | struct resource *ECR_res = NULL; |
| 2035 | struct resource *EPP_res = NULL; |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 2036 | struct platform_device *pdev = NULL; |
Russell King | 93b11b2 | 2013-06-27 13:49:14 +0100 | [diff] [blame] | 2037 | int ret; |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 2038 | |
| 2039 | if (!dev) { |
| 2040 | /* We need a physical device to attach to, but none was |
| 2041 | * provided. Create our own. */ |
| 2042 | pdev = platform_device_register_simple("parport_pc", |
| 2043 | base, NULL, 0); |
| 2044 | if (IS_ERR(pdev)) |
| 2045 | return NULL; |
| 2046 | dev = &pdev->dev; |
FUJITA Tomonori | dfa7c4d | 2009-06-22 16:54:27 +0100 | [diff] [blame] | 2047 | |
Russell King | 93b11b2 | 2013-06-27 13:49:14 +0100 | [diff] [blame] | 2048 | ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(24)); |
| 2049 | if (ret) { |
| 2050 | dev_err(dev, "Unable to set coherent dma mask: disabling DMA\n"); |
| 2051 | dma = PARPORT_DMA_NONE; |
| 2052 | } |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 2053 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2055 | ops = kmalloc(sizeof(struct parport_operations), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | if (!ops) |
| 2057 | goto out1; |
| 2058 | |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2059 | priv = kmalloc(sizeof(struct parport_pc_private), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | if (!priv) |
| 2061 | goto out2; |
| 2062 | |
| 2063 | /* a misnomer, actually - it's allocate and reserve parport number */ |
| 2064 | p = parport_register_port(base, irq, dma, ops); |
| 2065 | if (!p) |
| 2066 | goto out3; |
| 2067 | |
| 2068 | base_res = request_region(base, 3, p->name); |
| 2069 | if (!base_res) |
| 2070 | goto out4; |
| 2071 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2072 | memcpy(ops, &parport_pc_ops, sizeof(struct parport_operations)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | priv->ctr = 0xc; |
| 2074 | priv->ctr_writable = ~0x10; |
| 2075 | priv->ecr = 0; |
| 2076 | priv->fifo_depth = 0; |
| 2077 | priv->dma_buf = NULL; |
| 2078 | priv->dma_handle = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | INIT_LIST_HEAD(&priv->list); |
| 2080 | priv->port = p; |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 2081 | |
| 2082 | p->dev = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | p->base_hi = base_hi; |
| 2084 | p->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_SAFEININT; |
| 2085 | p->private_data = priv; |
| 2086 | |
| 2087 | if (base_hi) { |
| 2088 | ECR_res = request_region(base_hi, 3, p->name); |
| 2089 | if (ECR_res) |
| 2090 | parport_ECR_present(p); |
| 2091 | } |
| 2092 | |
| 2093 | if (base != 0x3bc) { |
| 2094 | EPP_res = request_region(base+0x3, 5, p->name); |
| 2095 | if (EPP_res) |
| 2096 | if (!parport_EPP_supported(p)) |
| 2097 | parport_ECPEPP_supported(p); |
| 2098 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2099 | if (!parport_SPP_supported(p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | /* No port. */ |
| 2101 | goto out5; |
| 2102 | if (priv->ecr) |
| 2103 | parport_ECPPS2_supported(p); |
| 2104 | else |
| 2105 | parport_PS2_supported(p); |
| 2106 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2107 | p->size = (p->modes & PARPORT_MODE_EPP) ? 8 : 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | |
| 2109 | printk(KERN_INFO "%s: PC-style at 0x%lx", p->name, p->base); |
| 2110 | if (p->base_hi && priv->ecr) |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2111 | printk(KERN_CONT " (0x%lx)", p->base_hi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | if (p->irq == PARPORT_IRQ_AUTO) { |
| 2113 | p->irq = PARPORT_IRQ_NONE; |
| 2114 | parport_irq_probe(p); |
| 2115 | } else if (p->irq == PARPORT_IRQ_PROBEONLY) { |
| 2116 | p->irq = PARPORT_IRQ_NONE; |
| 2117 | parport_irq_probe(p); |
| 2118 | probedirq = p->irq; |
| 2119 | p->irq = PARPORT_IRQ_NONE; |
| 2120 | } |
| 2121 | if (p->irq != PARPORT_IRQ_NONE) { |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2122 | printk(KERN_CONT ", irq %d", p->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | priv->ctr_writable |= 0x10; |
| 2124 | |
| 2125 | if (p->dma == PARPORT_DMA_AUTO) { |
| 2126 | p->dma = PARPORT_DMA_NONE; |
| 2127 | parport_dma_probe(p); |
| 2128 | } |
| 2129 | } |
| 2130 | if (p->dma == PARPORT_DMA_AUTO) /* To use DMA, giving the irq |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2131 | is mandatory (see above) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | p->dma = PARPORT_DMA_NONE; |
| 2133 | |
| 2134 | #ifdef CONFIG_PARPORT_PC_FIFO |
| 2135 | if (parport_ECP_supported(p) && |
| 2136 | p->dma != PARPORT_DMA_NOFIFO && |
| 2137 | priv->fifo_depth > 0 && p->irq != PARPORT_IRQ_NONE) { |
| 2138 | p->modes |= PARPORT_MODE_ECP | PARPORT_MODE_COMPAT; |
| 2139 | p->ops->compat_write_data = parport_pc_compat_write_block_pio; |
| 2140 | #ifdef CONFIG_PARPORT_1284 |
| 2141 | p->ops->ecp_write_data = parport_pc_ecp_write_block_pio; |
| 2142 | /* currently broken, but working on it.. (FB) */ |
| 2143 | /* p->ops->ecp_read_data = parport_pc_ecp_read_block_pio; */ |
| 2144 | #endif /* IEEE 1284 support */ |
| 2145 | if (p->dma != PARPORT_DMA_NONE) { |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2146 | printk(KERN_CONT ", dma %d", p->dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | p->modes |= PARPORT_MODE_DMA; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2148 | } else |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2149 | printk(KERN_CONT ", using FIFO"); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2150 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | /* We can't use the DMA channel after all. */ |
| 2152 | p->dma = PARPORT_DMA_NONE; |
| 2153 | #endif /* Allowed to use FIFO/DMA */ |
| 2154 | |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2155 | printk(KERN_CONT " ["); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2156 | |
| 2157 | #define printmode(x) \ |
| 2158 | {\ |
| 2159 | if (p->modes & PARPORT_MODE_##x) {\ |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2160 | printk(KERN_CONT "%s%s", f ? "," : "", #x);\ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2161 | f++;\ |
| 2162 | } \ |
| 2163 | } |
| 2164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | { |
| 2166 | int f = 0; |
| 2167 | printmode(PCSPP); |
| 2168 | printmode(TRISTATE); |
| 2169 | printmode(COMPAT) |
| 2170 | printmode(EPP); |
| 2171 | printmode(ECP); |
| 2172 | printmode(DMA); |
| 2173 | } |
| 2174 | #undef printmode |
| 2175 | #ifndef CONFIG_PARPORT_1284 |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2176 | printk(KERN_CONT "(,...)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | #endif /* CONFIG_PARPORT_1284 */ |
Kay Sievers | 2c03ead | 2012-05-08 13:14:49 +0200 | [diff] [blame] | 2178 | printk(KERN_CONT "]\n"); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2179 | if (probedirq != PARPORT_IRQ_NONE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | printk(KERN_INFO "%s: irq %d detected\n", p->name, probedirq); |
| 2181 | |
| 2182 | /* If No ECP release the ports grabbed above. */ |
| 2183 | if (ECR_res && (p->modes & PARPORT_MODE_ECP) == 0) { |
| 2184 | release_region(base_hi, 3); |
| 2185 | ECR_res = NULL; |
| 2186 | } |
| 2187 | /* Likewise for EEP ports */ |
| 2188 | if (EPP_res && (p->modes & PARPORT_MODE_EPP) == 0) { |
| 2189 | release_region(base+3, 5); |
| 2190 | EPP_res = NULL; |
| 2191 | } |
| 2192 | if (p->irq != PARPORT_IRQ_NONE) { |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2193 | if (request_irq(p->irq, parport_irq_handler, |
| 2194 | irqflags, p->name, p)) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2195 | printk(KERN_WARNING "%s: irq %d in use, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | "resorting to polled operation\n", |
| 2197 | p->name, p->irq); |
| 2198 | p->irq = PARPORT_IRQ_NONE; |
| 2199 | p->dma = PARPORT_DMA_NONE; |
| 2200 | } |
| 2201 | |
| 2202 | #ifdef CONFIG_PARPORT_PC_FIFO |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 2203 | #ifdef HAS_DMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | if (p->dma != PARPORT_DMA_NONE) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2205 | if (request_dma(p->dma, p->name)) { |
| 2206 | printk(KERN_WARNING "%s: dma %d in use, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | "resorting to PIO operation\n", |
| 2208 | p->name, p->dma); |
| 2209 | p->dma = PARPORT_DMA_NONE; |
| 2210 | } else { |
| 2211 | priv->dma_buf = |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 2212 | dma_alloc_coherent(dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | PAGE_SIZE, |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 2214 | &priv->dma_handle, |
| 2215 | GFP_KERNEL); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2216 | if (!priv->dma_buf) { |
| 2217 | printk(KERN_WARNING "%s: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | "cannot get buffer for DMA, " |
| 2219 | "resorting to PIO operation\n", |
| 2220 | p->name); |
| 2221 | free_dma(p->dma); |
| 2222 | p->dma = PARPORT_DMA_NONE; |
| 2223 | } |
| 2224 | } |
| 2225 | } |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 2226 | #endif |
| 2227 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | } |
| 2229 | |
| 2230 | /* Done probing. Now put the port into a sensible start-up state. */ |
| 2231 | if (priv->ecr) |
| 2232 | /* |
| 2233 | * Put the ECP detected port in PS2 mode. |
| 2234 | * Do this also for ports that have ECR but don't do ECP. |
| 2235 | */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2236 | ECR_WRITE(p, 0x34); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | |
| 2238 | parport_pc_write_data(p, 0); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2239 | parport_pc_data_forward(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | |
| 2241 | /* Now that we've told the sharing engine about the port, and |
| 2242 | found out its characteristics, let the high-level drivers |
| 2243 | know about it. */ |
| 2244 | spin_lock(&ports_lock); |
| 2245 | list_add(&priv->list, &ports_list); |
| 2246 | spin_unlock(&ports_lock); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2247 | parport_announce_port(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | |
| 2249 | return p; |
| 2250 | |
| 2251 | out5: |
| 2252 | if (ECR_res) |
| 2253 | release_region(base_hi, 3); |
| 2254 | if (EPP_res) |
| 2255 | release_region(base+0x3, 5); |
| 2256 | release_region(base, 3); |
| 2257 | out4: |
Sudip Mukherjee | 6fa45a2 | 2015-05-20 20:56:57 +0530 | [diff] [blame] | 2258 | parport_del_port(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | out3: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2260 | kfree(priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | out2: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2262 | kfree(ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2263 | out1: |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 2264 | if (pdev) |
| 2265 | platform_device_unregister(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | return NULL; |
| 2267 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2268 | EXPORT_SYMBOL(parport_pc_probe_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2270 | void parport_pc_unregister_port(struct parport *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | { |
| 2272 | struct parport_pc_private *priv = p->private_data; |
| 2273 | struct parport_operations *ops = p->ops; |
| 2274 | |
| 2275 | parport_remove_port(p); |
| 2276 | spin_lock(&ports_lock); |
| 2277 | list_del_init(&priv->list); |
| 2278 | spin_unlock(&ports_lock); |
Andrew Morton | d1c4ac4 | 2006-01-08 01:05:05 -0800 | [diff] [blame] | 2279 | #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | if (p->dma != PARPORT_DMA_NONE) |
| 2281 | free_dma(p->dma); |
Andrew Morton | d1c4ac4 | 2006-01-08 01:05:05 -0800 | [diff] [blame] | 2282 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | if (p->irq != PARPORT_IRQ_NONE) |
| 2284 | free_irq(p->irq, p); |
| 2285 | release_region(p->base, 3); |
| 2286 | if (p->size > 3) |
| 2287 | release_region(p->base + 3, p->size - 3); |
| 2288 | if (p->modes & PARPORT_MODE_ECP) |
| 2289 | release_region(p->base_hi, 3); |
Andrew Morton | d1c4ac4 | 2006-01-08 01:05:05 -0800 | [diff] [blame] | 2290 | #if defined(CONFIG_PARPORT_PC_FIFO) && defined(HAS_DMA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | if (priv->dma_buf) |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 2292 | dma_free_coherent(p->physport->dev, PAGE_SIZE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | priv->dma_buf, |
| 2294 | priv->dma_handle); |
Al Viro | 7fbacd5 | 2005-05-04 05:39:32 +0100 | [diff] [blame] | 2295 | #endif |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2296 | kfree(p->private_data); |
Sudip Mukherjee | 6fa45a2 | 2015-05-20 20:56:57 +0530 | [diff] [blame] | 2297 | parport_del_port(p); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2298 | kfree(ops); /* hope no-one cached it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2300 | EXPORT_SYMBOL(parport_pc_unregister_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | |
| 2302 | #ifdef CONFIG_PCI |
| 2303 | |
| 2304 | /* ITE support maintained by Rich Liu <richliu@poorman.org> */ |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2305 | static int sio_ite_8872_probe(struct pci_dev *pdev, int autoirq, int autodma, |
| 2306 | const struct parport_pc_via_data *via) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | { |
| 2308 | short inta_addr[6] = { 0x2A0, 0x2C0, 0x220, 0x240, 0x1E0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | u32 ite8872set; |
| 2310 | u32 ite8872_lpt, ite8872_lpthi; |
| 2311 | u8 ite8872_irq, type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | int irq; |
| 2313 | int i; |
| 2314 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2315 | DPRINTK(KERN_DEBUG "sio_ite_8872_probe()\n"); |
| 2316 | |
| 2317 | /* make sure which one chip */ |
| 2318 | for (i = 0; i < 5; i++) { |
Niels de Vos | 0f6db21 | 2011-04-18 15:26:03 +0100 | [diff] [blame] | 2319 | if (request_region(inta_addr[i], 32, "it887x")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | int test; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2321 | pci_write_config_dword(pdev, 0x60, |
Niels de Vos | e7c310c | 2007-07-15 23:41:35 -0700 | [diff] [blame] | 2322 | 0xe5000000 | inta_addr[i]); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2323 | pci_write_config_dword(pdev, 0x78, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | 0x00000000 | inta_addr[i]); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2325 | test = inb(inta_addr[i]); |
| 2326 | if (test != 0xff) |
| 2327 | break; |
Niels de Vos | 0f6db21 | 2011-04-18 15:26:03 +0100 | [diff] [blame] | 2328 | release_region(inta_addr[i], 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | } |
| 2330 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2331 | if (i >= 5) { |
| 2332 | printk(KERN_INFO "parport_pc: cannot find ITE8872 INTA\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | return 0; |
| 2334 | } |
| 2335 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2336 | type = inb(inta_addr[i] + 0x18); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2337 | type &= 0x0f; |
| 2338 | |
| 2339 | switch (type) { |
| 2340 | case 0x2: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2341 | printk(KERN_INFO "parport_pc: ITE8871 found (1P)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | ite8872set = 0x64200000; |
| 2343 | break; |
| 2344 | case 0xa: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2345 | printk(KERN_INFO "parport_pc: ITE8875 found (1P)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | ite8872set = 0x64200000; |
| 2347 | break; |
| 2348 | case 0xe: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2349 | printk(KERN_INFO "parport_pc: ITE8872 found (2S1P)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | ite8872set = 0x64e00000; |
| 2351 | break; |
| 2352 | case 0x6: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2353 | printk(KERN_INFO "parport_pc: ITE8873 found (1S)\n"); |
Jiri Kosina | 9fdbdd0 | 2011-10-06 14:29:48 -0700 | [diff] [blame] | 2354 | release_region(inta_addr[i], 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2355 | return 0; |
| 2356 | case 0x8: |
Niels de Vos | 6c8e4c9 | 2010-08-23 17:20:52 +0100 | [diff] [blame] | 2357 | printk(KERN_INFO "parport_pc: ITE8874 found (2S)\n"); |
Jiri Kosina | 9fdbdd0 | 2011-10-06 14:29:48 -0700 | [diff] [blame] | 2358 | release_region(inta_addr[i], 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | return 0; |
| 2360 | default: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2361 | printk(KERN_INFO "parport_pc: unknown ITE887x\n"); |
| 2362 | printk(KERN_INFO "parport_pc: please mail 'lspci -nvv' " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | "output to Rich.Liu@ite.com.tw\n"); |
Jiri Kosina | 9fdbdd0 | 2011-10-06 14:29:48 -0700 | [diff] [blame] | 2364 | release_region(inta_addr[i], 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | return 0; |
| 2366 | } |
| 2367 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2368 | pci_read_config_byte(pdev, 0x3c, &ite8872_irq); |
| 2369 | pci_read_config_dword(pdev, 0x1c, &ite8872_lpt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | ite8872_lpt &= 0x0000ff00; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2371 | pci_read_config_dword(pdev, 0x20, &ite8872_lpthi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | ite8872_lpthi &= 0x0000ff00; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2373 | pci_write_config_dword(pdev, 0x6c, 0xe3000000 | ite8872_lpt); |
| 2374 | pci_write_config_dword(pdev, 0x70, 0xe3000000 | ite8872_lpthi); |
| 2375 | pci_write_config_dword(pdev, 0x80, (ite8872_lpthi<<16) | ite8872_lpt); |
| 2376 | /* SET SPP&EPP , Parallel Port NO DMA , Enable All Function */ |
| 2377 | /* SET Parallel IRQ */ |
| 2378 | pci_write_config_dword(pdev, 0x9c, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | ite8872set | (ite8872_irq * 0x11111)); |
| 2380 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2381 | DPRINTK(KERN_DEBUG "ITE887x: The IRQ is %d.\n", ite8872_irq); |
| 2382 | DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O port is 0x%x.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | ite8872_lpt); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2384 | DPRINTK(KERN_DEBUG "ITE887x: The PARALLEL I/O porthi is 0x%x.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | ite8872_lpthi); |
| 2386 | |
| 2387 | /* Let the user (or defaults) steer us away from interrupts */ |
| 2388 | irq = ite8872_irq; |
| 2389 | if (autoirq != PARPORT_IRQ_AUTO) |
| 2390 | irq = PARPORT_IRQ_NONE; |
| 2391 | |
| 2392 | /* |
| 2393 | * Release the resource so that parport_pc_probe_port can get it. |
| 2394 | */ |
Niels de Vos | 0f6db21 | 2011-04-18 15:26:03 +0100 | [diff] [blame] | 2395 | release_region(inta_addr[i], 32); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2396 | if (parport_pc_probe_port(ite8872_lpt, ite8872_lpthi, |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2397 | irq, PARPORT_DMA_NONE, &pdev->dev, 0)) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2398 | printk(KERN_INFO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | "parport_pc: ITE 8872 parallel port: io=0x%X", |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2400 | ite8872_lpt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | if (irq != PARPORT_IRQ_NONE) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2402 | printk(", irq=%d", irq); |
| 2403 | printk("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | return 1; |
| 2405 | } |
| 2406 | |
| 2407 | return 0; |
| 2408 | } |
| 2409 | |
| 2410 | /* VIA 8231 support by Pavel Fedin <sonic_amiga@rambler.ru> |
| 2411 | based on VIA 686a support code by Jeff Garzik <jgarzik@pobox.com> */ |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2412 | static int parport_init_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | |
| 2414 | /* Data for two known VIA chips */ |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2415 | static struct parport_pc_via_data via_686a_data = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | 0x51, |
| 2417 | 0x50, |
| 2418 | 0x85, |
| 2419 | 0x02, |
| 2420 | 0xE2, |
| 2421 | 0xF0, |
| 2422 | 0xE6 |
| 2423 | }; |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2424 | static struct parport_pc_via_data via_8231_data = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | 0x45, |
| 2426 | 0x44, |
| 2427 | 0x50, |
| 2428 | 0x04, |
| 2429 | 0xF2, |
| 2430 | 0xFA, |
| 2431 | 0xF6 |
| 2432 | }; |
| 2433 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2434 | static int sio_via_probe(struct pci_dev *pdev, int autoirq, int autodma, |
| 2435 | const struct parport_pc_via_data *via) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2436 | { |
| 2437 | u8 tmp, tmp2, siofunc; |
| 2438 | u8 ppcontrol = 0; |
| 2439 | int dma, irq; |
| 2440 | unsigned port1, port2; |
| 2441 | unsigned have_epp = 0; |
| 2442 | |
| 2443 | printk(KERN_DEBUG "parport_pc: VIA 686A/8231 detected\n"); |
| 2444 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2445 | switch (parport_init_mode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2446 | case 1: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2447 | printk(KERN_DEBUG "parport_pc: setting SPP mode\n"); |
| 2448 | siofunc = VIA_FUNCTION_PARPORT_SPP; |
| 2449 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | case 2: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2451 | printk(KERN_DEBUG "parport_pc: setting PS/2 mode\n"); |
| 2452 | siofunc = VIA_FUNCTION_PARPORT_SPP; |
| 2453 | ppcontrol = VIA_PARPORT_BIDIR; |
| 2454 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | case 3: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2456 | printk(KERN_DEBUG "parport_pc: setting EPP mode\n"); |
| 2457 | siofunc = VIA_FUNCTION_PARPORT_EPP; |
| 2458 | ppcontrol = VIA_PARPORT_BIDIR; |
| 2459 | have_epp = 1; |
| 2460 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | case 4: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2462 | printk(KERN_DEBUG "parport_pc: setting ECP mode\n"); |
| 2463 | siofunc = VIA_FUNCTION_PARPORT_ECP; |
| 2464 | ppcontrol = VIA_PARPORT_BIDIR; |
| 2465 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | case 5: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2467 | printk(KERN_DEBUG "parport_pc: setting EPP+ECP mode\n"); |
| 2468 | siofunc = VIA_FUNCTION_PARPORT_ECP; |
| 2469 | ppcontrol = VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP; |
| 2470 | have_epp = 1; |
| 2471 | break; |
| 2472 | default: |
| 2473 | printk(KERN_DEBUG |
| 2474 | "parport_pc: probing current configuration\n"); |
| 2475 | siofunc = VIA_FUNCTION_PROBE; |
| 2476 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | } |
| 2478 | /* |
| 2479 | * unlock super i/o configuration |
| 2480 | */ |
| 2481 | pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp); |
| 2482 | tmp |= via->via_pci_superio_config_data; |
| 2483 | pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp); |
| 2484 | |
| 2485 | /* Bits 1-0: Parallel Port Mode / Enable */ |
| 2486 | outb(via->viacfg_function, VIA_CONFIG_INDEX); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2487 | tmp = inb(VIA_CONFIG_DATA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2488 | /* Bit 5: EPP+ECP enable; bit 7: PS/2 bidirectional port enable */ |
| 2489 | outb(via->viacfg_parport_control, VIA_CONFIG_INDEX); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2490 | tmp2 = inb(VIA_CONFIG_DATA); |
| 2491 | if (siofunc == VIA_FUNCTION_PROBE) { |
| 2492 | siofunc = tmp & VIA_FUNCTION_PARPORT_DISABLE; |
| 2493 | ppcontrol = tmp2; |
| 2494 | } else { |
| 2495 | tmp &= ~VIA_FUNCTION_PARPORT_DISABLE; |
| 2496 | tmp |= siofunc; |
| 2497 | outb(via->viacfg_function, VIA_CONFIG_INDEX); |
| 2498 | outb(tmp, VIA_CONFIG_DATA); |
| 2499 | tmp2 &= ~(VIA_PARPORT_BIDIR|VIA_PARPORT_ECPEPP); |
| 2500 | tmp2 |= ppcontrol; |
| 2501 | outb(via->viacfg_parport_control, VIA_CONFIG_INDEX); |
| 2502 | outb(tmp2, VIA_CONFIG_DATA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | /* Parallel Port I/O Base Address, bits 9-2 */ |
| 2506 | outb(via->viacfg_parport_base, VIA_CONFIG_INDEX); |
| 2507 | port1 = inb(VIA_CONFIG_DATA) << 2; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2508 | |
| 2509 | printk(KERN_DEBUG "parport_pc: Current parallel port base: 0x%X\n", |
| 2510 | port1); |
| 2511 | if (port1 == 0x3BC && have_epp) { |
| 2512 | outb(via->viacfg_parport_base, VIA_CONFIG_INDEX); |
| 2513 | outb((0x378 >> 2), VIA_CONFIG_DATA); |
| 2514 | printk(KERN_DEBUG |
| 2515 | "parport_pc: Parallel port base changed to 0x378\n"); |
| 2516 | port1 = 0x378; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | } |
| 2518 | |
| 2519 | /* |
| 2520 | * lock super i/o configuration |
| 2521 | */ |
| 2522 | pci_read_config_byte(pdev, via->via_pci_superio_config_reg, &tmp); |
| 2523 | tmp &= ~via->via_pci_superio_config_data; |
| 2524 | pci_write_config_byte(pdev, via->via_pci_superio_config_reg, tmp); |
| 2525 | |
| 2526 | if (siofunc == VIA_FUNCTION_PARPORT_DISABLE) { |
| 2527 | printk(KERN_INFO "parport_pc: VIA parallel port disabled in BIOS\n"); |
| 2528 | return 0; |
| 2529 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2530 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | /* Bits 7-4: PnP Routing for Parallel Port IRQ */ |
| 2532 | pci_read_config_byte(pdev, via->via_pci_parport_irq_reg, &tmp); |
| 2533 | irq = ((tmp & VIA_IRQCONTROL_PARALLEL) >> 4); |
| 2534 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2535 | if (siofunc == VIA_FUNCTION_PARPORT_ECP) { |
| 2536 | /* Bits 3-2: PnP Routing for Parallel Port DMA */ |
| 2537 | pci_read_config_byte(pdev, via->via_pci_parport_dma_reg, &tmp); |
| 2538 | dma = ((tmp & VIA_DMACONTROL_PARALLEL) >> 2); |
| 2539 | } else |
| 2540 | /* if ECP not enabled, DMA is not enabled, assumed |
| 2541 | bogus 'dma' value */ |
| 2542 | dma = PARPORT_DMA_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | |
| 2544 | /* Let the user (or defaults) steer us away from interrupts and DMA */ |
| 2545 | if (autoirq == PARPORT_IRQ_NONE) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2546 | irq = PARPORT_IRQ_NONE; |
| 2547 | dma = PARPORT_DMA_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2548 | } |
| 2549 | if (autodma == PARPORT_DMA_NONE) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2550 | dma = PARPORT_DMA_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | |
| 2552 | switch (port1) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2553 | case 0x3bc: |
| 2554 | port2 = 0x7bc; break; |
| 2555 | case 0x378: |
| 2556 | port2 = 0x778; break; |
| 2557 | case 0x278: |
| 2558 | port2 = 0x678; break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | default: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2560 | printk(KERN_INFO |
| 2561 | "parport_pc: Weird VIA parport base 0x%X, ignoring\n", |
| 2562 | port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | return 0; |
| 2564 | } |
| 2565 | |
| 2566 | /* filter bogus IRQs */ |
| 2567 | switch (irq) { |
| 2568 | case 0: |
| 2569 | case 2: |
| 2570 | case 8: |
| 2571 | case 13: |
| 2572 | irq = PARPORT_IRQ_NONE; |
| 2573 | break; |
| 2574 | |
| 2575 | default: /* do nothing */ |
| 2576 | break; |
| 2577 | } |
| 2578 | |
| 2579 | /* finally, do the probe with values obtained */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2580 | if (parport_pc_probe_port(port1, port2, irq, dma, &pdev->dev, 0)) { |
| 2581 | printk(KERN_INFO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2582 | "parport_pc: VIA parallel port: io=0x%X", port1); |
| 2583 | if (irq != PARPORT_IRQ_NONE) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2584 | printk(", irq=%d", irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | if (dma != PARPORT_DMA_NONE) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2586 | printk(", dma=%d", dma); |
| 2587 | printk("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | return 1; |
| 2589 | } |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2590 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2591 | printk(KERN_WARNING "parport_pc: Strange, can't probe VIA parallel port: io=0x%X, irq=%d, dma=%d\n", |
| 2592 | port1, irq, dma); |
| 2593 | return 0; |
| 2594 | } |
| 2595 | |
| 2596 | |
| 2597 | enum parport_pc_sio_types { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2598 | sio_via_686a = 0, /* Via VT82C686A motherboard Super I/O */ |
| 2599 | sio_via_8231, /* Via VT8231 south bridge integrated Super IO */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2600 | sio_ite_8872, |
| 2601 | last_sio |
| 2602 | }; |
| 2603 | |
| 2604 | /* each element directly indexed from enum list, above */ |
| 2605 | static struct parport_pc_superio { |
Marko Kohtala | a6767b7 | 2006-01-06 00:19:48 -0800 | [diff] [blame] | 2606 | int (*probe) (struct pci_dev *pdev, int autoirq, int autodma, |
| 2607 | const struct parport_pc_via_data *via); |
| 2608 | const struct parport_pc_via_data *via; |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2609 | } parport_pc_superio_info[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2610 | { sio_via_probe, &via_686a_data, }, |
| 2611 | { sio_via_probe, &via_8231_data, }, |
| 2612 | { sio_ite_8872_probe, NULL, }, |
| 2613 | }; |
| 2614 | |
| 2615 | enum parport_pc_pci_cards { |
| 2616 | siig_1p_10x = last_sio, |
| 2617 | siig_2p_10x, |
| 2618 | siig_1p_20x, |
| 2619 | siig_2p_20x, |
| 2620 | lava_parallel, |
| 2621 | lava_parallel_dual_a, |
| 2622 | lava_parallel_dual_b, |
| 2623 | boca_ioppar, |
| 2624 | plx_9050, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2625 | timedia_4006a, |
| 2626 | timedia_4014, |
| 2627 | timedia_4008a, |
| 2628 | timedia_4018, |
| 2629 | timedia_9018a, |
| 2630 | syba_2p_epp, |
| 2631 | syba_1p_ecp, |
| 2632 | titan_010l, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2633 | avlab_1p, |
| 2634 | avlab_2p, |
Ryan Underwood | c140e11 | 2006-12-06 20:36:38 -0800 | [diff] [blame] | 2635 | oxsemi_952, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | oxsemi_954, |
| 2637 | oxsemi_840, |
Lee Howard | 7106b4e | 2008-10-21 13:48:58 +0100 | [diff] [blame] | 2638 | oxsemi_pcie_pport, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | aks_0100, |
| 2640 | mobility_pp, |
| 2641 | netmos_9705, |
| 2642 | netmos_9715, |
| 2643 | netmos_9755, |
| 2644 | netmos_9805, |
| 2645 | netmos_9815, |
Michael Buesch | c4285b4 | 2009-06-30 11:41:21 -0700 | [diff] [blame] | 2646 | netmos_9901, |
Ira W. Snyder | ac6ec5b | 2009-12-21 16:26:45 -0800 | [diff] [blame] | 2647 | netmos_9865, |
LuÃs P Mendes | dc99915 | 2008-02-06 01:37:43 -0800 | [diff] [blame] | 2648 | quatech_sppxp100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2649 | }; |
| 2650 | |
| 2651 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2652 | /* each element directly indexed from enum list, above |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | * (but offset by last_sio) */ |
| 2654 | static struct parport_pc_pci { |
| 2655 | int numports; |
| 2656 | struct { /* BAR (base address registers) numbers in the config |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2657 | space header */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | int lo; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2659 | int hi; |
| 2660 | /* -1 if not there, >6 for offset-method (max BAR is 6) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2661 | } addr[4]; |
| 2662 | |
| 2663 | /* If set, this is called immediately after pci_enable_device. |
| 2664 | * If it returns non-zero, no probing will take place and the |
| 2665 | * ports will not be used. */ |
| 2666 | int (*preinit_hook) (struct pci_dev *pdev, int autoirq, int autodma); |
| 2667 | |
| 2668 | /* If set, this is called after probing for ports. If 'failed' |
| 2669 | * is non-zero we couldn't use any of the ports. */ |
| 2670 | void (*postinit_hook) (struct pci_dev *pdev, int failed); |
Randy.Dunlap | 96766a3 | 2006-04-18 22:21:57 -0700 | [diff] [blame] | 2671 | } cards[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2672 | /* siig_1p_10x */ { 1, { { 2, 3 }, } }, |
| 2673 | /* siig_2p_10x */ { 2, { { 2, 3 }, { 4, 5 }, } }, |
| 2674 | /* siig_1p_20x */ { 1, { { 0, 1 }, } }, |
| 2675 | /* siig_2p_20x */ { 2, { { 0, 1 }, { 2, 3 }, } }, |
| 2676 | /* lava_parallel */ { 1, { { 0, -1 }, } }, |
| 2677 | /* lava_parallel_dual_a */ { 1, { { 0, -1 }, } }, |
| 2678 | /* lava_parallel_dual_b */ { 1, { { 0, -1 }, } }, |
| 2679 | /* boca_ioppar */ { 1, { { 0, -1 }, } }, |
| 2680 | /* plx_9050 */ { 2, { { 4, -1 }, { 5, -1 }, } }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | /* timedia_4006a */ { 1, { { 0, -1 }, } }, |
| 2682 | /* timedia_4014 */ { 2, { { 0, -1 }, { 2, -1 }, } }, |
| 2683 | /* timedia_4008a */ { 1, { { 0, 1 }, } }, |
| 2684 | /* timedia_4018 */ { 2, { { 0, 1 }, { 2, 3 }, } }, |
| 2685 | /* timedia_9018a */ { 2, { { 0, 1 }, { 2, 3 }, } }, |
| 2686 | /* SYBA uses fixed offsets in |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2687 | a 1K io window */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 | /* syba_2p_epp AP138B */ { 2, { { 0, 0x078 }, { 0, 0x178 }, } }, |
| 2689 | /* syba_1p_ecp W83787 */ { 1, { { 0, 0x078 }, } }, |
| 2690 | /* titan_010l */ { 1, { { 3, -1 }, } }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | /* avlab_1p */ { 1, { { 0, 1}, } }, |
| 2692 | /* avlab_2p */ { 2, { { 0, 1}, { 2, 3 },} }, |
| 2693 | /* The Oxford Semi cards are unusual: 954 doesn't support ECP, |
| 2694 | * and 840 locks up if you write 1 to bit 2! */ |
Ryan Underwood | c140e11 | 2006-12-06 20:36:38 -0800 | [diff] [blame] | 2695 | /* oxsemi_952 */ { 1, { { 0, 1 }, } }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | /* oxsemi_954 */ { 1, { { 0, -1 }, } }, |
Bernhard Walle | adbd321 | 2008-07-25 19:44:56 -0700 | [diff] [blame] | 2697 | /* oxsemi_840 */ { 1, { { 0, 1 }, } }, |
Lee Howard | 7106b4e | 2008-10-21 13:48:58 +0100 | [diff] [blame] | 2698 | /* oxsemi_pcie_pport */ { 1, { { 0, 1 }, } }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2699 | /* aks_0100 */ { 1, { { 0, -1 }, } }, |
| 2700 | /* mobility_pp */ { 1, { { 0, 1 }, } }, |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2701 | |
| 2702 | /* The netmos entries below are untested */ |
| 2703 | /* netmos_9705 */ { 1, { { 0, -1 }, } }, |
| 2704 | /* netmos_9715 */ { 2, { { 0, 1 }, { 2, 3 },} }, |
| 2705 | /* netmos_9755 */ { 2, { { 0, 1 }, { 2, 3 },} }, |
Sebastian Andrzej Siewior | d6a4845 | 2013-11-27 17:43:43 +0100 | [diff] [blame] | 2706 | /* netmos_9805 */ { 1, { { 0, 1 }, } }, |
| 2707 | /* netmos_9815 */ { 2, { { 0, 1 }, { 2, 3 }, } }, |
Michael Buesch | c4285b4 | 2009-06-30 11:41:21 -0700 | [diff] [blame] | 2708 | /* netmos_9901 */ { 1, { { 0, -1 }, } }, |
Ira W. Snyder | ac6ec5b | 2009-12-21 16:26:45 -0800 | [diff] [blame] | 2709 | /* netmos_9865 */ { 1, { { 0, -1 }, } }, |
LuÃs P Mendes | dc99915 | 2008-02-06 01:37:43 -0800 | [diff] [blame] | 2710 | /* quatech_sppxp100 */ { 1, { { 0, 1 }, } }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2711 | }; |
| 2712 | |
Marko Kohtala | a6767b7 | 2006-01-06 00:19:48 -0800 | [diff] [blame] | 2713 | static const struct pci_device_id parport_pc_pci_tbl[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | /* Super-IO onboard chips */ |
| 2715 | { 0x1106, 0x0686, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_686a }, |
| 2716 | { 0x1106, 0x8231, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_via_8231 }, |
| 2717 | { PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_8872, |
| 2718 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, sio_ite_8872 }, |
| 2719 | |
| 2720 | /* PCI cards */ |
| 2721 | { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_10x, |
| 2722 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_10x }, |
| 2723 | { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_10x, |
| 2724 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_10x }, |
| 2725 | { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_1P_20x, |
| 2726 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_1p_20x }, |
| 2727 | { PCI_VENDOR_ID_SIIG, PCI_DEVICE_ID_SIIG_2P_20x, |
| 2728 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, siig_2p_20x }, |
| 2729 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_PARALLEL, |
| 2730 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel }, |
| 2731 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_A, |
| 2732 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_a }, |
| 2733 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_DUAL_PAR_B, |
| 2734 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, lava_parallel_dual_b }, |
| 2735 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_BOCA_IOPPAR, |
| 2736 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, boca_ioppar }, |
| 2737 | { PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050, |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2738 | PCI_SUBVENDOR_ID_EXSYS, PCI_SUBDEVICE_ID_EXSYS_4014, 0, 0, plx_9050 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | /* PCI_VENDOR_ID_TIMEDIA/SUNIX has many differing cards ...*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | { 0x1409, 0x7268, 0x1409, 0x0101, 0, 0, timedia_4006a }, |
| 2741 | { 0x1409, 0x7268, 0x1409, 0x0102, 0, 0, timedia_4014 }, |
| 2742 | { 0x1409, 0x7268, 0x1409, 0x0103, 0, 0, timedia_4008a }, |
| 2743 | { 0x1409, 0x7268, 0x1409, 0x0104, 0, 0, timedia_4018 }, |
| 2744 | { 0x1409, 0x7268, 0x1409, 0x9018, 0, 0, timedia_9018a }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_2P_EPP, |
| 2746 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_2p_epp }, |
| 2747 | { PCI_VENDOR_ID_SYBA, PCI_DEVICE_ID_SYBA_1P_ECP, |
| 2748 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, syba_1p_ecp }, |
| 2749 | { PCI_VENDOR_ID_TITAN, PCI_DEVICE_ID_TITAN_010L, |
| 2750 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, titan_010l }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | /* PCI_VENDOR_ID_AVLAB/Intek21 has another bunch of cards ...*/ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2752 | /* AFAVLAB_TK9902 */ |
| 2753 | { 0x14db, 0x2120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_1p}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | { 0x14db, 0x2121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, avlab_2p}, |
Ryan Underwood | c140e11 | 2006-12-06 20:36:38 -0800 | [diff] [blame] | 2755 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952PP, |
| 2756 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_952 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI954PP, |
| 2758 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_954 }, |
| 2759 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_12PCI840, |
| 2760 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_840 }, |
Lee Howard | 7106b4e | 2008-10-21 13:48:58 +0100 | [diff] [blame] | 2761 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840, |
| 2762 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
| 2763 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe840_G, |
| 2764 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
| 2765 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0, |
| 2766 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
| 2767 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_0_G, |
| 2768 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
| 2769 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1, |
| 2770 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
| 2771 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_G, |
| 2772 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
| 2773 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_U, |
| 2774 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
| 2775 | { PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_PCIe952_1_GU, |
| 2776 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | { PCI_VENDOR_ID_AKS, PCI_DEVICE_ID_AKS_ALADDINCARD, |
| 2778 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, aks_0100 }, |
Lee Howard | 7106b4e | 2008-10-21 13:48:58 +0100 | [diff] [blame] | 2779 | { 0x14f2, 0x0121, PCI_ANY_ID, PCI_ANY_ID, 0, 0, mobility_pp }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | /* NetMos communication controllers */ |
| 2781 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9705, |
| 2782 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9705 }, |
| 2783 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9715, |
| 2784 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9715 }, |
| 2785 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9755, |
| 2786 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9755 }, |
| 2787 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9805, |
| 2788 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9805 }, |
| 2789 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9815, |
| 2790 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, netmos_9815 }, |
Michael Buesch | c4285b4 | 2009-06-30 11:41:21 -0700 | [diff] [blame] | 2791 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9901, |
| 2792 | 0xA000, 0x2000, 0, 0, netmos_9901 }, |
Ira W. Snyder | ac6ec5b | 2009-12-21 16:26:45 -0800 | [diff] [blame] | 2793 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865, |
| 2794 | 0xA000, 0x1000, 0, 0, netmos_9865 }, |
| 2795 | { PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9865, |
| 2796 | 0xA000, 0x2000, 0, 0, netmos_9865 }, |
LuÃs P Mendes | dc99915 | 2008-02-06 01:37:43 -0800 | [diff] [blame] | 2797 | /* Quatech SPPXP-100 Parallel port PCI ExpressCard */ |
| 2798 | { PCI_VENDOR_ID_QUATECH, PCI_DEVICE_ID_QUATECH_SPPXP_100, |
| 2799 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, quatech_sppxp100 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | { 0, } /* terminate list */ |
| 2801 | }; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2802 | MODULE_DEVICE_TABLE(pci, parport_pc_pci_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2803 | |
| 2804 | struct pci_parport_data { |
| 2805 | int num; |
| 2806 | struct parport *ports[2]; |
| 2807 | }; |
| 2808 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2809 | static int parport_pc_pci_probe(struct pci_dev *dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | const struct pci_device_id *id) |
| 2811 | { |
| 2812 | int err, count, n, i = id->driver_data; |
| 2813 | struct pci_parport_data *data; |
| 2814 | |
| 2815 | if (i < last_sio) |
| 2816 | /* This is an onboard Super-IO and has already been probed */ |
| 2817 | return 0; |
| 2818 | |
| 2819 | /* This is a PCI card */ |
| 2820 | i -= last_sio; |
| 2821 | count = 0; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2822 | err = pci_enable_device(dev); |
| 2823 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | return err; |
| 2825 | |
| 2826 | data = kmalloc(sizeof(struct pci_parport_data), GFP_KERNEL); |
| 2827 | if (!data) |
| 2828 | return -ENOMEM; |
| 2829 | |
| 2830 | if (cards[i].preinit_hook && |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2831 | cards[i].preinit_hook(dev, PARPORT_IRQ_NONE, PARPORT_DMA_NONE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | kfree(data); |
| 2833 | return -ENODEV; |
| 2834 | } |
| 2835 | |
| 2836 | for (n = 0; n < cards[i].numports; n++) { |
| 2837 | int lo = cards[i].addr[n].lo; |
| 2838 | int hi = cards[i].addr[n].hi; |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2839 | int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | unsigned long io_lo, io_hi; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2841 | io_lo = pci_resource_start(dev, lo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | io_hi = 0; |
| 2843 | if ((hi >= 0) && (hi <= 6)) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2844 | io_hi = pci_resource_start(dev, hi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | else if (hi > 6) |
| 2846 | io_lo += hi; /* Reinterpret the meaning of |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2847 | "hi" as an offset (see SYBA |
| 2848 | def.) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | /* TODO: test if sharing interrupts works */ |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2850 | irq = dev->irq; |
| 2851 | if (irq == IRQ_NONE) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2852 | printk(KERN_DEBUG |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2853 | "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n", |
Sebastian Andrzej Siewior | 3f6e485 | 2013-12-04 21:08:55 +0100 | [diff] [blame] | 2854 | id->vendor, id->device, io_lo, io_hi); |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2855 | irq = PARPORT_IRQ_NONE; |
| 2856 | } else { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2857 | printk(KERN_DEBUG |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2858 | "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n", |
Sebastian Andrzej Siewior | 3f6e485 | 2013-12-04 21:08:55 +0100 | [diff] [blame] | 2859 | id->vendor, id->device, io_lo, io_hi, irq); |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2860 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | data->ports[count] = |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 2862 | parport_pc_probe_port(io_lo, io_hi, irq, |
| 2863 | PARPORT_DMA_NONE, &dev->dev, |
| 2864 | IRQF_SHARED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | if (data->ports[count]) |
| 2866 | count++; |
| 2867 | } |
| 2868 | |
| 2869 | data->num = count; |
| 2870 | |
| 2871 | if (cards[i].postinit_hook) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2872 | cards[i].postinit_hook(dev, count == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | |
| 2874 | if (count) { |
| 2875 | pci_set_drvdata(dev, data); |
| 2876 | return 0; |
| 2877 | } |
| 2878 | |
| 2879 | kfree(data); |
| 2880 | |
| 2881 | return -ENODEV; |
| 2882 | } |
| 2883 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2884 | static void parport_pc_pci_remove(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | { |
| 2886 | struct pci_parport_data *data = pci_get_drvdata(dev); |
| 2887 | int i; |
| 2888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | if (data) { |
| 2890 | for (i = data->num - 1; i >= 0; i--) |
| 2891 | parport_pc_unregister_port(data->ports[i]); |
| 2892 | |
| 2893 | kfree(data); |
| 2894 | } |
| 2895 | } |
| 2896 | |
| 2897 | static struct pci_driver parport_pc_pci_driver = { |
| 2898 | .name = "parport_pc", |
| 2899 | .id_table = parport_pc_pci_tbl, |
| 2900 | .probe = parport_pc_pci_probe, |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 2901 | .remove = parport_pc_pci_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2902 | }; |
| 2903 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2904 | static int __init parport_pc_init_superio(int autoirq, int autodma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | { |
| 2906 | const struct pci_device_id *id; |
| 2907 | struct pci_dev *pdev = NULL; |
| 2908 | int ret = 0; |
| 2909 | |
Jiri Slaby | c9d8073 | 2005-08-10 02:09:39 +0200 | [diff] [blame] | 2910 | for_each_pci_dev(pdev) { |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 2911 | id = pci_match_id(parport_pc_pci_tbl, pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2912 | if (id == NULL || id->driver_data >= last_sio) |
| 2913 | continue; |
| 2914 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2915 | if (parport_pc_superio_info[id->driver_data].probe( |
| 2916 | pdev, autoirq, autodma, |
| 2917 | parport_pc_superio_info[id->driver_data].via)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2918 | ret++; |
| 2919 | } |
| 2920 | } |
| 2921 | |
| 2922 | return ret; /* number of devices found */ |
| 2923 | } |
| 2924 | #else |
| 2925 | static struct pci_driver parport_pc_pci_driver; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2926 | static int __init parport_pc_init_superio(int autoirq, int autodma) |
| 2927 | { |
| 2928 | return 0; |
| 2929 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2930 | #endif /* CONFIG_PCI */ |
| 2931 | |
Bjorn Helgaas | f2b9a39 | 2008-04-29 01:03:22 -0700 | [diff] [blame] | 2932 | #ifdef CONFIG_PNP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2933 | |
| 2934 | static const struct pnp_device_id parport_pc_pnp_tbl[] = { |
| 2935 | /* Standard LPT Printer Port */ |
| 2936 | {.id = "PNP0400", .driver_data = 0}, |
| 2937 | /* ECP Printer Port */ |
| 2938 | {.id = "PNP0401", .driver_data = 0}, |
| 2939 | { } |
| 2940 | }; |
| 2941 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2942 | MODULE_DEVICE_TABLE(pnp, parport_pc_pnp_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2944 | static int parport_pc_pnp_probe(struct pnp_dev *dev, |
| 2945 | const struct pnp_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | { |
| 2947 | struct parport *pdata; |
| 2948 | unsigned long io_lo, io_hi; |
| 2949 | int dma, irq; |
| 2950 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2951 | if (pnp_port_valid(dev, 0) && |
| 2952 | !(pnp_port_flags(dev, 0) & IORESOURCE_DISABLED)) { |
| 2953 | io_lo = pnp_port_start(dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2954 | } else |
| 2955 | return -EINVAL; |
| 2956 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2957 | if (pnp_port_valid(dev, 1) && |
| 2958 | !(pnp_port_flags(dev, 1) & IORESOURCE_DISABLED)) { |
| 2959 | io_hi = pnp_port_start(dev, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | } else |
| 2961 | io_hi = 0; |
| 2962 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2963 | if (pnp_irq_valid(dev, 0) && |
| 2964 | !(pnp_irq_flags(dev, 0) & IORESOURCE_DISABLED)) { |
| 2965 | irq = pnp_irq(dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | } else |
| 2967 | irq = PARPORT_IRQ_NONE; |
| 2968 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2969 | if (pnp_dma_valid(dev, 0) && |
| 2970 | !(pnp_dma_flags(dev, 0) & IORESOURCE_DISABLED)) { |
| 2971 | dma = pnp_dma(dev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | } else |
| 2973 | dma = PARPORT_DMA_NONE; |
| 2974 | |
David Brownell | c15a383 | 2007-05-08 00:27:35 -0700 | [diff] [blame] | 2975 | dev_info(&dev->dev, "reported by %s\n", dev->protocol->name); |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2976 | pdata = parport_pc_probe_port(io_lo, io_hi, irq, dma, &dev->dev, 0); |
| 2977 | if (pdata == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | return -ENODEV; |
| 2979 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 2980 | pnp_set_drvdata(dev, pdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | return 0; |
| 2982 | } |
| 2983 | |
| 2984 | static void parport_pc_pnp_remove(struct pnp_dev *dev) |
| 2985 | { |
| 2986 | struct parport *pdata = (struct parport *)pnp_get_drvdata(dev); |
| 2987 | if (!pdata) |
| 2988 | return; |
| 2989 | |
| 2990 | parport_pc_unregister_port(pdata); |
| 2991 | } |
| 2992 | |
| 2993 | /* we only need the pnp layer to activate the device, at least for now */ |
| 2994 | static struct pnp_driver parport_pc_pnp_driver = { |
| 2995 | .name = "parport_pc", |
| 2996 | .id_table = parport_pc_pnp_tbl, |
| 2997 | .probe = parport_pc_pnp_probe, |
| 2998 | .remove = parport_pc_pnp_remove, |
| 2999 | }; |
| 3000 | |
Bjorn Helgaas | f2b9a39 | 2008-04-29 01:03:22 -0700 | [diff] [blame] | 3001 | #else |
| 3002 | static struct pnp_driver parport_pc_pnp_driver; |
| 3003 | #endif /* CONFIG_PNP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 3005 | static int parport_pc_platform_probe(struct platform_device *pdev) |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 3006 | { |
| 3007 | /* Always succeed, the actual probing is done in |
| 3008 | * parport_pc_probe_port(). */ |
| 3009 | return 0; |
| 3010 | } |
| 3011 | |
| 3012 | static struct platform_driver parport_pc_platform_driver = { |
| 3013 | .driver = { |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 3014 | .name = "parport_pc", |
| 3015 | }, |
| 3016 | .probe = parport_pc_platform_probe, |
| 3017 | }; |
| 3018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3019 | /* This is called by parport_pc_find_nonpci_ports (in asm/parport.h) */ |
Greg Kroah-Hartman | 312faca | 2012-12-21 13:23:14 -0800 | [diff] [blame] | 3020 | static int __attribute__((unused)) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3021 | parport_pc_find_isa_ports(int autoirq, int autodma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3022 | { |
| 3023 | int count = 0; |
| 3024 | |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 3025 | if (parport_pc_probe_port(0x3bc, 0x7bc, autoirq, autodma, NULL, 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | count++; |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 3027 | if (parport_pc_probe_port(0x378, 0x778, autoirq, autodma, NULL, 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3028 | count++; |
Alan Cox | 51dcdfe | 2009-04-07 15:30:57 +0100 | [diff] [blame] | 3029 | if (parport_pc_probe_port(0x278, 0x678, autoirq, autodma, NULL, 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3030 | count++; |
| 3031 | |
| 3032 | return count; |
| 3033 | } |
| 3034 | |
| 3035 | /* This function is called by parport_pc_init if the user didn't |
| 3036 | * specify any ports to probe. Its job is to find some ports. Order |
| 3037 | * is important here -- we want ISA ports to be registered first, |
| 3038 | * followed by PCI cards (for least surprise), but before that we want |
| 3039 | * to do chipset-specific tests for some onboard ports that we know |
| 3040 | * about. |
| 3041 | * |
| 3042 | * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY |
| 3043 | * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO |
| 3044 | */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3045 | static void __init parport_pc_find_ports(int autoirq, int autodma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3046 | { |
Bjorn Helgaas | 7597fee | 2006-03-27 01:17:02 -0800 | [diff] [blame] | 3047 | int count = 0, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | |
| 3049 | #ifdef CONFIG_PARPORT_PC_SUPERIO |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 3050 | detect_and_report_it87(); |
| 3051 | detect_and_report_winbond(); |
| 3052 | detect_and_report_smsc(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3053 | #endif |
| 3054 | |
| 3055 | /* Onboard SuperIO chipsets that show themselves on the PCI bus. */ |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 3056 | count += parport_pc_init_superio(autoirq, autodma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3057 | |
| 3058 | /* PnP ports, skip detection if SuperIO already found them */ |
| 3059 | if (!count) { |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 3060 | err = pnp_register_driver(&parport_pc_pnp_driver); |
Bjorn Helgaas | 7597fee | 2006-03-27 01:17:02 -0800 | [diff] [blame] | 3061 | if (!err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3062 | pnp_registered_parport = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | } |
| 3064 | |
| 3065 | /* ISA ports and whatever (see asm/parport.h). */ |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 3066 | parport_pc_find_nonpci_ports(autoirq, autodma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | |
Petr Cvek | f63fd7e | 2008-02-06 01:37:48 -0800 | [diff] [blame] | 3068 | err = pci_register_driver(&parport_pc_pci_driver); |
Bjorn Helgaas | 7597fee | 2006-03-27 01:17:02 -0800 | [diff] [blame] | 3069 | if (!err) |
| 3070 | pci_registered_parport = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3071 | } |
| 3072 | |
| 3073 | /* |
| 3074 | * Piles of crap below pretend to be a parser for module and kernel |
| 3075 | * parameters. Say "thank you" to whoever had come up with that |
| 3076 | * syntax and keep in mind that code below is a cleaned up version. |
| 3077 | */ |
| 3078 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3079 | static int __initdata io[PARPORT_PC_MAX_PORTS+1] = { |
| 3080 | [0 ... PARPORT_PC_MAX_PORTS] = 0 |
| 3081 | }; |
| 3082 | static int __initdata io_hi[PARPORT_PC_MAX_PORTS+1] = { |
| 3083 | [0 ... PARPORT_PC_MAX_PORTS] = PARPORT_IOHI_AUTO |
| 3084 | }; |
| 3085 | static int __initdata dmaval[PARPORT_PC_MAX_PORTS] = { |
| 3086 | [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_DMA_NONE |
| 3087 | }; |
| 3088 | static int __initdata irqval[PARPORT_PC_MAX_PORTS] = { |
| 3089 | [0 ... PARPORT_PC_MAX_PORTS-1] = PARPORT_IRQ_PROBEONLY |
| 3090 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3091 | |
| 3092 | static int __init parport_parse_param(const char *s, int *val, |
| 3093 | int automatic, int none, int nofifo) |
| 3094 | { |
| 3095 | if (!s) |
| 3096 | return 0; |
| 3097 | if (!strncmp(s, "auto", 4)) |
| 3098 | *val = automatic; |
| 3099 | else if (!strncmp(s, "none", 4)) |
| 3100 | *val = none; |
Joe Perches | 1f2c19f | 2009-12-15 16:47:45 -0800 | [diff] [blame] | 3101 | else if (nofifo && !strncmp(s, "nofifo", 6)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3102 | *val = nofifo; |
| 3103 | else { |
| 3104 | char *ep; |
| 3105 | unsigned long r = simple_strtoul(s, &ep, 0); |
| 3106 | if (ep != s) |
| 3107 | *val = r; |
| 3108 | else { |
| 3109 | printk(KERN_ERR "parport: bad specifier `%s'\n", s); |
| 3110 | return -1; |
| 3111 | } |
| 3112 | } |
| 3113 | return 0; |
| 3114 | } |
| 3115 | |
| 3116 | static int __init parport_parse_irq(const char *irqstr, int *val) |
| 3117 | { |
| 3118 | return parport_parse_param(irqstr, val, PARPORT_IRQ_AUTO, |
| 3119 | PARPORT_IRQ_NONE, 0); |
| 3120 | } |
| 3121 | |
| 3122 | static int __init parport_parse_dma(const char *dmastr, int *val) |
| 3123 | { |
| 3124 | return parport_parse_param(dmastr, val, PARPORT_DMA_AUTO, |
| 3125 | PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO); |
| 3126 | } |
| 3127 | |
| 3128 | #ifdef CONFIG_PCI |
| 3129 | static int __init parport_init_mode_setup(char *str) |
| 3130 | { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3131 | printk(KERN_DEBUG |
| 3132 | "parport_pc.c: Specified parameter parport_init_mode=%s\n", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3133 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3134 | if (!strcmp(str, "spp")) |
| 3135 | parport_init_mode = 1; |
| 3136 | if (!strcmp(str, "ps2")) |
| 3137 | parport_init_mode = 2; |
| 3138 | if (!strcmp(str, "epp")) |
| 3139 | parport_init_mode = 3; |
| 3140 | if (!strcmp(str, "ecp")) |
| 3141 | parport_init_mode = 4; |
| 3142 | if (!strcmp(str, "ecpepp")) |
| 3143 | parport_init_mode = 5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3144 | return 1; |
| 3145 | } |
| 3146 | #endif |
| 3147 | |
| 3148 | #ifdef MODULE |
Andrew Morton | 45dac90 | 2012-01-12 17:20:32 -0800 | [diff] [blame] | 3149 | static char *irq[PARPORT_PC_MAX_PORTS]; |
| 3150 | static char *dma[PARPORT_PC_MAX_PORTS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3151 | |
| 3152 | MODULE_PARM_DESC(io, "Base I/O address (SPP regs)"); |
| 3153 | module_param_array(io, int, NULL, 0); |
| 3154 | MODULE_PARM_DESC(io_hi, "Base I/O address (ECR)"); |
| 3155 | module_param_array(io_hi, int, NULL, 0); |
| 3156 | MODULE_PARM_DESC(irq, "IRQ line"); |
| 3157 | module_param_array(irq, charp, NULL, 0); |
| 3158 | MODULE_PARM_DESC(dma, "DMA channel"); |
| 3159 | module_param_array(dma, charp, NULL, 0); |
| 3160 | #if defined(CONFIG_PARPORT_PC_SUPERIO) || \ |
| 3161 | (defined(CONFIG_PARPORT_1284) && defined(CONFIG_PARPORT_PC_FIFO)) |
| 3162 | MODULE_PARM_DESC(verbose_probing, "Log chit-chat during initialisation"); |
| 3163 | module_param(verbose_probing, int, 0644); |
| 3164 | #endif |
| 3165 | #ifdef CONFIG_PCI |
| 3166 | static char *init_mode; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3167 | MODULE_PARM_DESC(init_mode, |
| 3168 | "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3169 | module_param(init_mode, charp, 0); |
| 3170 | #endif |
| 3171 | |
| 3172 | static int __init parse_parport_params(void) |
| 3173 | { |
| 3174 | unsigned int i; |
| 3175 | int val; |
| 3176 | |
| 3177 | #ifdef CONFIG_PCI |
| 3178 | if (init_mode) |
| 3179 | parport_init_mode_setup(init_mode); |
| 3180 | #endif |
| 3181 | |
| 3182 | for (i = 0; i < PARPORT_PC_MAX_PORTS && io[i]; i++) { |
| 3183 | if (parport_parse_irq(irq[i], &val)) |
| 3184 | return 1; |
| 3185 | irqval[i] = val; |
| 3186 | if (parport_parse_dma(dma[i], &val)) |
| 3187 | return 1; |
| 3188 | dmaval[i] = val; |
| 3189 | } |
| 3190 | if (!io[0]) { |
| 3191 | /* The user can make us use any IRQs or DMAs we find. */ |
| 3192 | if (irq[0] && !parport_parse_irq(irq[0], &val)) |
| 3193 | switch (val) { |
| 3194 | case PARPORT_IRQ_NONE: |
| 3195 | case PARPORT_IRQ_AUTO: |
| 3196 | irqval[0] = val; |
| 3197 | break; |
| 3198 | default: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3199 | printk(KERN_WARNING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3200 | "parport_pc: irq specified " |
| 3201 | "without base address. Use 'io=' " |
| 3202 | "to specify one\n"); |
| 3203 | } |
| 3204 | |
| 3205 | if (dma[0] && !parport_parse_dma(dma[0], &val)) |
| 3206 | switch (val) { |
| 3207 | case PARPORT_DMA_NONE: |
| 3208 | case PARPORT_DMA_AUTO: |
| 3209 | dmaval[0] = val; |
| 3210 | break; |
| 3211 | default: |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3212 | printk(KERN_WARNING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3213 | "parport_pc: dma specified " |
| 3214 | "without base address. Use 'io=' " |
| 3215 | "to specify one\n"); |
| 3216 | } |
| 3217 | } |
| 3218 | return 0; |
| 3219 | } |
| 3220 | |
| 3221 | #else |
| 3222 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3223 | static int parport_setup_ptr __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3224 | |
| 3225 | /* |
| 3226 | * Acceptable parameters: |
| 3227 | * |
| 3228 | * parport=0 |
| 3229 | * parport=auto |
| 3230 | * parport=0xBASE[,IRQ[,DMA]] |
| 3231 | * |
| 3232 | * IRQ/DMA may be numeric or 'auto' or 'none' |
| 3233 | */ |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3234 | static int __init parport_setup(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | { |
| 3236 | char *endptr; |
| 3237 | char *sep; |
| 3238 | int val; |
| 3239 | |
| 3240 | if (!str || !*str || (*str == '0' && !*(str+1))) { |
| 3241 | /* Disable parport if "parport=0" in cmdline */ |
| 3242 | io[0] = PARPORT_DISABLE; |
| 3243 | return 1; |
| 3244 | } |
| 3245 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3246 | if (!strncmp(str, "auto", 4)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3247 | irqval[0] = PARPORT_IRQ_AUTO; |
| 3248 | dmaval[0] = PARPORT_DMA_AUTO; |
| 3249 | return 1; |
| 3250 | } |
| 3251 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3252 | val = simple_strtoul(str, &endptr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | if (endptr == str) { |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3254 | printk(KERN_WARNING "parport=%s not understood\n", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3255 | return 1; |
| 3256 | } |
| 3257 | |
| 3258 | if (parport_setup_ptr == PARPORT_PC_MAX_PORTS) { |
| 3259 | printk(KERN_ERR "parport=%s ignored, too many ports\n", str); |
| 3260 | return 1; |
| 3261 | } |
| 3262 | |
| 3263 | io[parport_setup_ptr] = val; |
| 3264 | irqval[parport_setup_ptr] = PARPORT_IRQ_NONE; |
| 3265 | dmaval[parport_setup_ptr] = PARPORT_DMA_NONE; |
| 3266 | |
| 3267 | sep = strchr(str, ','); |
| 3268 | if (sep++) { |
| 3269 | if (parport_parse_irq(sep, &val)) |
| 3270 | return 1; |
| 3271 | irqval[parport_setup_ptr] = val; |
| 3272 | sep = strchr(sep, ','); |
| 3273 | if (sep++) { |
| 3274 | if (parport_parse_dma(sep, &val)) |
| 3275 | return 1; |
| 3276 | dmaval[parport_setup_ptr] = val; |
| 3277 | } |
| 3278 | } |
| 3279 | parport_setup_ptr++; |
| 3280 | return 1; |
| 3281 | } |
| 3282 | |
| 3283 | static int __init parse_parport_params(void) |
| 3284 | { |
| 3285 | return io[0] == PARPORT_DISABLE; |
| 3286 | } |
| 3287 | |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3288 | __setup("parport=", parport_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | |
| 3290 | /* |
| 3291 | * Acceptable parameters: |
| 3292 | * |
| 3293 | * parport_init_mode=[spp|ps2|epp|ecp|ecpepp] |
| 3294 | */ |
| 3295 | #ifdef CONFIG_PCI |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3296 | __setup("parport_init_mode=", parport_init_mode_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | #endif |
| 3298 | #endif |
| 3299 | |
| 3300 | /* "Parser" ends here */ |
| 3301 | |
| 3302 | static int __init parport_pc_init(void) |
| 3303 | { |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 3304 | int err; |
| 3305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | if (parse_parport_params()) |
| 3307 | return -EINVAL; |
| 3308 | |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 3309 | err = platform_driver_register(&parport_pc_platform_driver); |
| 3310 | if (err) |
| 3311 | return err; |
| 3312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | if (io[0]) { |
| 3314 | int i; |
| 3315 | /* Only probe the ports we were given. */ |
| 3316 | user_specified = 1; |
| 3317 | for (i = 0; i < PARPORT_PC_MAX_PORTS; i++) { |
| 3318 | if (!io[i]) |
| 3319 | break; |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3320 | if (io_hi[i] == PARPORT_IOHI_AUTO) |
| 3321 | io_hi[i] = 0x400 + io[i]; |
Bjorn Helgaas | 7597fee | 2006-03-27 01:17:02 -0800 | [diff] [blame] | 3322 | parport_pc_probe_port(io[i], io_hi[i], |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3323 | irqval[i], dmaval[i], NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | } |
| 3325 | } else |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3326 | parport_pc_find_ports(irqval[0], dmaval[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3327 | |
| 3328 | return 0; |
| 3329 | } |
| 3330 | |
| 3331 | static void __exit parport_pc_exit(void) |
| 3332 | { |
| 3333 | if (pci_registered_parport) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3334 | pci_unregister_driver(&parport_pc_pci_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3335 | if (pnp_registered_parport) |
Alan Cox | 3aeda9b | 2009-06-11 13:07:29 +0100 | [diff] [blame] | 3336 | pnp_unregister_driver(&parport_pc_pnp_driver); |
Jean Delvare | a7d801a | 2007-05-08 00:27:40 -0700 | [diff] [blame] | 3337 | platform_driver_unregister(&parport_pc_platform_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3339 | while (!list_empty(&ports_list)) { |
| 3340 | struct parport_pc_private *priv; |
| 3341 | struct parport *port; |
Jiri Slaby | 91905b6 | 2014-11-21 10:05:09 +0100 | [diff] [blame] | 3342 | struct device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3343 | priv = list_entry(ports_list.next, |
| 3344 | struct parport_pc_private, list); |
| 3345 | port = priv->port; |
Jiri Slaby | 91905b6 | 2014-11-21 10:05:09 +0100 | [diff] [blame] | 3346 | dev = port->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3347 | parport_pc_unregister_port(port); |
Jiri Slaby | 91905b6 | 2014-11-21 10:05:09 +0100 | [diff] [blame] | 3348 | if (dev && dev->bus == &platform_bus_type) |
| 3349 | platform_device_unregister(to_platform_device(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3350 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3351 | } |
| 3352 | |
| 3353 | MODULE_AUTHOR("Phil Blundell, Tim Waugh, others"); |
| 3354 | MODULE_DESCRIPTION("PC-style parallel port driver"); |
| 3355 | MODULE_LICENSE("GPL"); |
| 3356 | module_init(parport_pc_init) |
| 3357 | module_exit(parport_pc_exit) |