Blame view

drivers/parport/parport_gsc.c 11 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  /*
   *      Low-level parallel-support for PC-style hardware integrated in the 
   *	LASI-Controller (on GSC-Bus) for HP-PARISC Workstations
   *
   *	This program is free software; you can redistribute it and/or modify
   *	it under the terms of the GNU General Public License as published by
   *      the Free Software Foundation; either version 2 of the License, or
   *      (at your option) any later version.
   *
   *	(C) 1999-2001 by Helge Deller <deller@gmx.de>
   *
   * 
   * based on parport_pc.c by 
   * 	    Grant Guenther <grant@torque.net>
   * 	    Phil Blundell <philb@gnu.org>
   *          Tim Waugh <tim@cyberelk.demon.co.uk>
   *	    Jose Renau <renau@acm.org>
bdca3f202   Adrian Bunk   remove the bounci...
18
   *          David Campbell
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
22
23
24
25
   *          Andrea Arcangeli
   */
  
  #undef DEBUG	/* undef for production */
  
  #include <linux/module.h>
  #include <linux/init.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
  #include <linux/delay.h>
  #include <linux/errno.h>
  #include <linux/interrupt.h>
  #include <linux/ioport.h>
  #include <linux/kernel.h>
  #include <linux/slab.h>
  #include <linux/pci.h>
  #include <linux/sysctl.h>
  
  #include <asm/io.h>
  #include <asm/dma.h>
  #include <asm/uaccess.h>
  #include <asm/superio.h>
  
  #include <linux/parport.h>
  #include <asm/pdc.h>
  #include <asm/parisc-device.h>
  #include <asm/hardware.h>
  #include "parport_gsc.h"
  
  
  MODULE_AUTHOR("Helge Deller <deller@gmx.de>");
  MODULE_DESCRIPTION("HP-PARISC PC-style parallel port driver");
  MODULE_SUPPORTED_DEVICE("integrated PC-style parallel port");
  MODULE_LICENSE("GPL");
  
  
  /*
   * Clear TIMEOUT BIT in EPP MODE
   *
   * This is also used in SPP detection.
   */
  static int clear_epp_timeout(struct parport *pb)
  {
  	unsigned char r;
  
  	if (!(parport_gsc_read_status(pb) & 0x01))
  		return 1;
  
  	/* To clear timeout some chips require double read */
  	parport_gsc_read_status(pb);
  	r = parport_gsc_read_status(pb);
  	parport_writeb (r | 0x01, STATUS (pb)); /* Some reset by writing 1 */
  	parport_writeb (r & 0xfe, STATUS (pb)); /* Others by writing 0 */
  	r = parport_gsc_read_status(pb);
  
  	return !(r & 0x01);
  }
  
  /*
   * Access functions.
   *
   * Most of these aren't static because they may be used by the
   * parport_xxx_yyy macros.  extern __inline__ versions of several
   * of these are in parport_gsc.h.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  void parport_gsc_init_state(struct pardevice *dev, struct parport_state *s)
  {
  	s->u.pc.ctr = 0xc | (dev->irq_func ? 0x10 : 0x0);
  }
  
  void parport_gsc_save_state(struct parport *p, struct parport_state *s)
  {
  	s->u.pc.ctr = parport_readb (CONTROL (p));
  }
  
  void parport_gsc_restore_state(struct parport *p, struct parport_state *s)
  {
  	parport_writeb (s->u.pc.ctr, CONTROL (p));
  }
  
  struct parport_operations parport_gsc_ops = 
  {
  	.write_data	= parport_gsc_write_data,
  	.read_data	= parport_gsc_read_data,
  
  	.write_control	= parport_gsc_write_control,
  	.read_control	= parport_gsc_read_control,
  	.frob_control	= parport_gsc_frob_control,
  
  	.read_status	= parport_gsc_read_status,
  
  	.enable_irq	= parport_gsc_enable_irq,
  	.disable_irq	= parport_gsc_disable_irq,
  
  	.data_forward	= parport_gsc_data_forward,
  	.data_reverse	= parport_gsc_data_reverse,
  
  	.init_state	= parport_gsc_init_state,
  	.save_state	= parport_gsc_save_state,
  	.restore_state	= parport_gsc_restore_state,
  
  	.epp_write_data	= parport_ieee1284_epp_write_data,
  	.epp_read_data	= parport_ieee1284_epp_read_data,
  	.epp_write_addr	= parport_ieee1284_epp_write_addr,
  	.epp_read_addr	= parport_ieee1284_epp_read_addr,
  
  	.ecp_write_data	= parport_ieee1284_ecp_write_data,
  	.ecp_read_data	= parport_ieee1284_ecp_read_data,
  	.ecp_write_addr	= parport_ieee1284_ecp_write_addr,
  
  	.compat_write_data 	= parport_ieee1284_write_compat,
  	.nibble_read_data	= parport_ieee1284_read_nibble,
  	.byte_read_data		= parport_ieee1284_read_byte,
  
  	.owner		= THIS_MODULE,
  };
  
  /* --- Mode detection ------------------------------------- */
  
  /*
   * Checks for port existence, all ports support SPP MODE
   */
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
139
  static int parport_SPP_supported(struct parport *pb)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
  {
  	unsigned char r, w;
  
  	/*
  	 * first clear an eventually pending EPP timeout 
  	 * I (sailer@ife.ee.ethz.ch) have an SMSC chipset
  	 * that does not even respond to SPP cycles if an EPP
  	 * timeout is pending
  	 */
  	clear_epp_timeout(pb);
  
  	/* Do a simple read-write test to make sure the port exists. */
  	w = 0xc;
  	parport_writeb (w, CONTROL (pb));
  
  	/* Is there a control register that we can read from?  Some
  	 * ports don't allow reads, so read_control just returns a
  	 * software copy. Some ports _do_ allow reads, so bypass the
  	 * software copy here.  In addition, some bits aren't
  	 * writable. */
  	r = parport_readb (CONTROL (pb));
  	if ((r & 0xf) == w) {
  		w = 0xe;
  		parport_writeb (w, CONTROL (pb));
  		r = parport_readb (CONTROL (pb));
  		parport_writeb (0xc, CONTROL (pb));
  		if ((r & 0xf) == w)
  			return PARPORT_MODE_PCSPP;
  	}
  
  	/* Try the data register.  The data lines aren't tri-stated at
  	 * this stage, so we expect back what we wrote. */
  	w = 0xaa;
  	parport_gsc_write_data (pb, w);
  	r = parport_gsc_read_data (pb);
  	if (r == w) {
  		w = 0x55;
  		parport_gsc_write_data (pb, w);
  		r = parport_gsc_read_data (pb);
  		if (r == w)
  			return PARPORT_MODE_PCSPP;
  	}
  
  	return 0;
  }
  
  /* Detect PS/2 support.
   *
   * Bit 5 (0x20) sets the PS/2 data direction; setting this high
   * allows us to read data from the data lines.  In theory we would get back
   * 0xff but any peripheral attached to the port may drag some or all of the
   * lines down to zero.  So if we get back anything that isn't the contents
   * of the data register we deem PS/2 support to be present. 
   *
   * Some SPP ports have "half PS/2" ability - you can't turn off the line
   * drivers, but an external peripheral with sufficiently beefy drivers of
   * its own can overpower them and assert its own levels onto the bus, from
   * where they can then be read back as normal.  Ports with this property
   * and the right type of device attached are likely to fail the SPP test,
   * (as they will appear to have stuck bits) and so the fact that they might
   * be misdetected here is rather academic. 
   */
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
202
  static int parport_PS2_supported(struct parport *pb)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
  {
  	int ok = 0;
    
  	clear_epp_timeout(pb);
  
  	/* try to tri-state the buffer */
  	parport_gsc_data_reverse (pb);
  	
  	parport_gsc_write_data(pb, 0x55);
  	if (parport_gsc_read_data(pb) != 0x55) ok++;
  
  	parport_gsc_write_data(pb, 0xaa);
  	if (parport_gsc_read_data(pb) != 0xaa) ok++;
  
  	/* cancel input mode */
  	parport_gsc_data_forward (pb);
  
  	if (ok) {
  		pb->modes |= PARPORT_MODE_TRISTATE;
  	} else {
  		struct parport_gsc_private *priv = pb->private_data;
  		priv->ctr_writable &= ~0x20;
  	}
  
  	return ok;
  }
  
  
  /* --- Initialisation code -------------------------------- */
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
232
233
  struct parport *parport_gsc_probe_port(unsigned long base,
  				       unsigned long base_hi, int irq,
4edb38695   Helge Deller   parisc: parport0:...
234
  				       int dma, struct parisc_device *padev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
236
237
238
239
  {
  	struct parport_gsc_private *priv;
  	struct parport_operations *ops;
  	struct parport tmp;
  	struct parport *p = &tmp;
cb6fc18e9   Helge Deller   [PARISC] Use kzal...
240
  	priv = kzalloc (sizeof (struct parport_gsc_private), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
241
242
243
244
245
  	if (!priv) {
  		printk (KERN_DEBUG "parport (0x%lx): no memory!
  ", base);
  		return NULL;
  	}
2451a8483   Silviu-Mihai Popescu   parport: use kmem...
246
247
  	ops = kmemdup(&parport_gsc_ops, sizeof(struct parport_operations),
  		      GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
248
249
250
251
252
253
254
  	if (!ops) {
  		printk (KERN_DEBUG "parport (0x%lx): no memory for ops!
  ",
  			base);
  		kfree (priv);
  		return NULL;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
256
257
258
  	priv->ctr = 0xc;
  	priv->ctr_writable = 0xff;
  	priv->dma_buf = 0;
  	priv->dma_handle = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
259
260
261
262
263
264
265
266
267
268
269
  	p->base = base;
  	p->base_hi = base_hi;
  	p->irq = irq;
  	p->dma = dma;
  	p->modes = PARPORT_MODE_PCSPP | PARPORT_MODE_SAFEININT;
  	p->ops = ops;
  	p->private_data = priv;
  	p->physport = p;
  	if (!parport_SPP_supported (p)) {
  		/* No port. */
  		kfree (priv);
9986ffd90   Wei Yongjun   parport: fix poss...
270
  		kfree(ops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271
272
273
274
275
276
277
278
279
280
  		return NULL;
  	}
  	parport_PS2_supported (p);
  
  	if (!(p = parport_register_port(base, PARPORT_IRQ_NONE,
  					PARPORT_DMA_NONE, ops))) {
  		kfree (priv);
  		kfree (ops);
  		return NULL;
  	}
4edb38695   Helge Deller   parisc: parport0:...
281
  	p->dev = &padev->dev;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
  	p->base_hi = base_hi;
  	p->modes = tmp.modes;
  	p->size = (p->modes & PARPORT_MODE_EPP)?8:3;
  	p->private_data = priv;
  
  	printk(KERN_INFO "%s: PC-style at 0x%lx", p->name, p->base);
  	p->irq = irq;
  	if (p->irq == PARPORT_IRQ_AUTO) {
  		p->irq = PARPORT_IRQ_NONE;
  	}
  	if (p->irq != PARPORT_IRQ_NONE) {
  		printk(", irq %d", p->irq);
  
  		if (p->dma == PARPORT_DMA_AUTO) {
  			p->dma = PARPORT_DMA_NONE;
  		}
  	}
  	if (p->dma == PARPORT_DMA_AUTO) /* To use DMA, giving the irq
                                             is mandatory (see above) */
  		p->dma = PARPORT_DMA_NONE;
  
  	printk(" [");
  #define printmode(x) {if(p->modes&PARPORT_MODE_##x){printk("%s%s",f?",":"",#x);f++;}}
  	{
  		int f = 0;
  		printmode(PCSPP);
  		printmode(TRISTATE);
  		printmode(COMPAT)
  		printmode(EPP);
  //		printmode(ECP);
  //		printmode(DMA);
  	}
  #undef printmode
  	printk("]
  ");
  
  	if (p->irq != PARPORT_IRQ_NONE) {
3f2e40df0   Jeff Garzik   [PARPORT] Consoli...
319
  		if (request_irq (p->irq, parport_irq_handler,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
  				 0, p->name, p)) {
  			printk (KERN_WARNING "%s: irq %d in use, "
  				"resorting to polled operation
  ",
  				p->name, p->irq);
  			p->irq = PARPORT_IRQ_NONE;
  			p->dma = PARPORT_DMA_NONE;
  		}
  	}
  
  	/* Done probing.  Now put the port into a sensible start-up state. */
  
  	parport_gsc_write_data(p, 0);
  	parport_gsc_data_forward (p);
  
  	/* Now that we've told the sharing engine about the port, and
  	   found out its characteristics, let the high-level drivers
  	   know about it. */
  	parport_announce_port (p);
  
  	return p;
  }
  
  
  #define PARPORT_GSC_OFFSET 0x800
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
345
  static int parport_count;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
346

312facaf9   Greg Kroah-Hartman   Drivers: parport:...
347
  static int parport_init_chip(struct parisc_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
348
349
350
351
352
  {
  	struct parport *p;
  	unsigned long port;
  
  	if (!dev->irq) {
b5d598b41   Alexander Beregalov   parport_gsc: fix ...
353
354
355
  		printk(KERN_WARNING "IRQ not found for parallel device at 0x%llx
  ",
  			(unsigned long long)dev->hpa.start);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
356
357
  		return -ENODEV;
  	}
53f01bba4   Matthew Wilcox   [PARISC] Convert ...
358
  	port = dev->hpa.start + PARPORT_GSC_OFFSET;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
359
360
361
362
363
364
365
  	
  	/* some older machines with ASP-chip don't support
  	 * the enhanced parport modes.
  	 */
  	if (boot_cpu_data.cpu_type > pcxt && !pdc_add_valid(port+4)) {
  
  		/* Initialize bidirectional-mode (0x10) & data-tranfer-mode #1 (0x20) */
145980a0b   Harvey Harrison   drivers: replace ...
366
367
  		printk("%s: initialize bidirectional-mode.
  ", __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
368
369
370
  		parport_writeb ( (0x10 + 0x20), port + 4);
  
  	} else {
145980a0b   Harvey Harrison   drivers: replace ...
371
372
  		printk("%s: enhanced parport-modes not supported.
  ", __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
373
374
375
  	}
  	
  	p = parport_gsc_probe_port(port, 0, dev->irq,
4edb38695   Helge Deller   parisc: parport0:...
376
  			/* PARPORT_IRQ_NONE */ PARPORT_DMA_NONE, dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
377
378
  	if (p)
  		parport_count++;
61616115d   Greg Kroah-Hartman   parport: remove d...
379
  	dev_set_drvdata(&dev->dev, p);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
380
381
382
  
  	return 0;
  }
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
383
  static int parport_remove_chip(struct parisc_device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
384
  {
61616115d   Greg Kroah-Hartman   parport: remove d...
385
  	struct parport *p = dev_get_drvdata(&dev->dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
  	if (p) {
  		struct parport_gsc_private *priv = p->private_data;
  		struct parport_operations *ops = p->ops;
  		parport_remove_port(p);
  		if (p->dma != PARPORT_DMA_NONE)
  			free_dma(p->dma);
  		if (p->irq != PARPORT_IRQ_NONE)
  			free_irq(p->irq, p);
  		if (priv->dma_buf)
  			pci_free_consistent(priv->dev, PAGE_SIZE,
  					    priv->dma_buf,
  					    priv->dma_handle);
  		kfree (p->private_data);
  		parport_put_port(p);
  		kfree (ops); /* hope no-one cached it */
  	}
  	return 0;
  }
  
  static struct parisc_device_id parport_tbl[] = {
  	{ HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x74 },
  	{ 0, }
  };
  
  MODULE_DEVICE_TABLE(parisc, parport_tbl);
  
  static struct parisc_driver parport_driver = {
  	.name		= "Parallel",
  	.id_table	= parport_tbl,
  	.probe		= parport_init_chip,
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
416
  	.remove		= parport_remove_chip,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
417
  };
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
418
  int parport_gsc_init(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
419
420
421
  {
  	return register_parisc_driver(&parport_driver);
  }
312facaf9   Greg Kroah-Hartman   Drivers: parport:...
422
  static void parport_gsc_exit(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
423
424
425
426
427
428
  {
  	unregister_parisc_driver(&parport_driver);
  }
  
  module_init(parport_gsc_init);
  module_exit(parport_gsc_exit);