1 /*
2 * Parallel-port resource manager code.
3 *
4 * Authors: David Campbell <campbell@tirian.che.curtin.edu.au>
5 * Tim Waugh <tim@cyberelk.demon.co.uk>
6 * Jose Renau <renau@acm.org>
7 * Philip Blundell <philb@gnu.org>
8 * Andrea Arcangeli
9 *
10 * based on work by Grant Guenther <grant@torque.net>
11 * and Philip Blundell
12 *
13 * Any part of this program may be used in documents licensed under
14 * the GNU Free Documentation License, Version 1.1 or any later version
15 * published by the Free Software Foundation.
16 */
17
18 #undef PARPORT_DEBUG_SHARING /* undef for production */
19
20 #include <linux/module.h>
21 #include <linux/string.h>
22 #include <linux/threads.h>
23 #include <linux/parport.h>
24 #include <linux/delay.h>
25 #include <linux/errno.h>
26 #include <linux/interrupt.h>
27 #include <linux/ioport.h>
28 #include <linux/kernel.h>
29 #include <linux/slab.h>
30 #include <linux/sched.h>
31 #include <linux/kmod.h>
32 #include <linux/device.h>
33
34 #include <linux/spinlock.h>
35 #include <linux/mutex.h>
36 #include <asm/irq.h>
37
38 #undef PARPORT_PARANOID
39
40 #define PARPORT_DEFAULT_TIMESLICE (HZ/5)
41
42 unsigned long parport_default_timeslice = PARPORT_DEFAULT_TIMESLICE;
43 int parport_default_spintime = DEFAULT_SPIN_TIME;
44
45 static LIST_HEAD(portlist);
46 static DEFINE_SPINLOCK(parportlist_lock);
47
48 /* list of all allocated ports, sorted by ->number */
49 static LIST_HEAD(all_ports);
50 static DEFINE_SPINLOCK(full_list_lock);
51
52 static LIST_HEAD(drivers);
53
54 static DEFINE_MUTEX(registration_lock);
55
56 /* What you can do to a port that's gone away.. */
dead_write_lines(struct parport * p,unsigned char b)57 static void dead_write_lines (struct parport *p, unsigned char b){}
dead_read_lines(struct parport * p)58 static unsigned char dead_read_lines (struct parport *p) { return 0; }
dead_frob_lines(struct parport * p,unsigned char b,unsigned char c)59 static unsigned char dead_frob_lines (struct parport *p, unsigned char b,
60 unsigned char c) { return 0; }
dead_onearg(struct parport * p)61 static void dead_onearg (struct parport *p){}
dead_initstate(struct pardevice * d,struct parport_state * s)62 static void dead_initstate (struct pardevice *d, struct parport_state *s) { }
dead_state(struct parport * p,struct parport_state * s)63 static void dead_state (struct parport *p, struct parport_state *s) { }
dead_write(struct parport * p,const void * b,size_t l,int f)64 static size_t dead_write (struct parport *p, const void *b, size_t l, int f)
65 { return 0; }
dead_read(struct parport * p,void * b,size_t l,int f)66 static size_t dead_read (struct parport *p, void *b, size_t l, int f)
67 { return 0; }
68 static struct parport_operations dead_ops = {
69 .write_data = dead_write_lines, /* data */
70 .read_data = dead_read_lines,
71
72 .write_control = dead_write_lines, /* control */
73 .read_control = dead_read_lines,
74 .frob_control = dead_frob_lines,
75
76 .read_status = dead_read_lines, /* status */
77
78 .enable_irq = dead_onearg, /* enable_irq */
79 .disable_irq = dead_onearg, /* disable_irq */
80
81 .data_forward = dead_onearg, /* data_forward */
82 .data_reverse = dead_onearg, /* data_reverse */
83
84 .init_state = dead_initstate, /* init_state */
85 .save_state = dead_state,
86 .restore_state = dead_state,
87
88 .epp_write_data = dead_write, /* epp */
89 .epp_read_data = dead_read,
90 .epp_write_addr = dead_write,
91 .epp_read_addr = dead_read,
92
93 .ecp_write_data = dead_write, /* ecp */
94 .ecp_read_data = dead_read,
95 .ecp_write_addr = dead_write,
96
97 .compat_write_data = dead_write, /* compat */
98 .nibble_read_data = dead_read, /* nibble */
99 .byte_read_data = dead_read, /* byte */
100
101 .owner = NULL,
102 };
103
104 static struct device_type parport_device_type = {
105 .name = "parport",
106 };
107
is_parport(struct device * dev)108 static int is_parport(struct device *dev)
109 {
110 return dev->type == &parport_device_type;
111 }
112
parport_probe(struct device * dev)113 static int parport_probe(struct device *dev)
114 {
115 struct parport_driver *drv;
116
117 if (is_parport(dev))
118 return -ENODEV;
119
120 drv = to_parport_driver(dev->driver);
121 if (!drv->probe) {
122 /* if driver has not defined a custom probe */
123 struct pardevice *par_dev = to_pardevice(dev);
124
125 if (strcmp(par_dev->name, drv->name))
126 return -ENODEV;
127 return 0;
128 }
129 /* if driver defined its own probe */
130 return drv->probe(to_pardevice(dev));
131 }
132
133 static struct bus_type parport_bus_type = {
134 .name = "parport",
135 .probe = parport_probe,
136 };
137
parport_bus_init(void)138 int parport_bus_init(void)
139 {
140 return bus_register(&parport_bus_type);
141 }
142
parport_bus_exit(void)143 void parport_bus_exit(void)
144 {
145 bus_unregister(&parport_bus_type);
146 }
147
148 /*
149 * iterates through all the drivers registered with the bus and sends the port
150 * details to the match_port callback of the driver, so that the driver can
151 * know about the new port that just regsitered with the bus and decide if it
152 * wants to use this new port.
153 */
driver_check(struct device_driver * dev_drv,void * _port)154 static int driver_check(struct device_driver *dev_drv, void *_port)
155 {
156 struct parport *port = _port;
157 struct parport_driver *drv = to_parport_driver(dev_drv);
158
159 if (drv->match_port)
160 drv->match_port(port);
161 return 0;
162 }
163
164 /* Call attach(port) for each registered driver. */
attach_driver_chain(struct parport * port)165 static void attach_driver_chain(struct parport *port)
166 {
167 /* caller has exclusive registration_lock */
168 struct parport_driver *drv;
169
170 list_for_each_entry(drv, &drivers, list)
171 drv->attach(port);
172
173 /*
174 * call the driver_check function of the drivers registered in
175 * new device model
176 */
177
178 bus_for_each_drv(&parport_bus_type, NULL, port, driver_check);
179 }
180
driver_detach(struct device_driver * _drv,void * _port)181 static int driver_detach(struct device_driver *_drv, void *_port)
182 {
183 struct parport *port = _port;
184 struct parport_driver *drv = to_parport_driver(_drv);
185
186 if (drv->detach)
187 drv->detach(port);
188 return 0;
189 }
190
191 /* Call detach(port) for each registered driver. */
detach_driver_chain(struct parport * port)192 static void detach_driver_chain(struct parport *port)
193 {
194 struct parport_driver *drv;
195 /* caller has exclusive registration_lock */
196 list_for_each_entry(drv, &drivers, list)
197 drv->detach (port);
198
199 /*
200 * call the detach function of the drivers registered in
201 * new device model
202 */
203
204 bus_for_each_drv(&parport_bus_type, NULL, port, driver_detach);
205 }
206
207 /* Ask kmod for some lowlevel drivers. */
get_lowlevel_driver(void)208 static void get_lowlevel_driver (void)
209 {
210 /* There is no actual module called this: you should set
211 * up an alias for modutils. */
212 request_module ("parport_lowlevel");
213 }
214
215 /*
216 * iterates through all the devices connected to the bus and sends the device
217 * details to the match_port callback of the driver, so that the driver can
218 * know what are all the ports that are connected to the bus and choose the
219 * port to which it wants to register its device.
220 */
port_check(struct device * dev,void * dev_drv)221 static int port_check(struct device *dev, void *dev_drv)
222 {
223 struct parport_driver *drv = dev_drv;
224
225 /* only send ports, do not send other devices connected to bus */
226 if (is_parport(dev))
227 drv->match_port(to_parport_dev(dev));
228 return 0;
229 }
230
231 /*
232 * Iterates through all the devices connected to the bus and return 1
233 * if the device is a parallel port.
234 */
235
port_detect(struct device * dev,void * dev_drv)236 static int port_detect(struct device *dev, void *dev_drv)
237 {
238 if (is_parport(dev))
239 return 1;
240 return 0;
241 }
242
243 /**
244 * parport_register_driver - register a parallel port device driver
245 * @drv: structure describing the driver
246 * @owner: owner module of drv
247 * @mod_name: module name string
248 *
249 * This can be called by a parallel port device driver in order
250 * to receive notifications about ports being found in the
251 * system, as well as ports no longer available.
252 *
253 * If devmodel is true then the new device model is used
254 * for registration.
255 *
256 * The @drv structure is allocated by the caller and must not be
257 * deallocated until after calling parport_unregister_driver().
258 *
259 * If using the non device model:
260 * The driver's attach() function may block. The port that
261 * attach() is given will be valid for the duration of the
262 * callback, but if the driver wants to take a copy of the
263 * pointer it must call parport_get_port() to do so. Calling
264 * parport_register_device() on that port will do this for you.
265 *
266 * The driver's detach() function may block. The port that
267 * detach() is given will be valid for the duration of the
268 * callback, but if the driver wants to take a copy of the
269 * pointer it must call parport_get_port() to do so.
270 *
271 *
272 * Returns 0 on success. The non device model will always succeeds.
273 * but the new device model can fail and will return the error code.
274 **/
275
__parport_register_driver(struct parport_driver * drv,struct module * owner,const char * mod_name)276 int __parport_register_driver(struct parport_driver *drv, struct module *owner,
277 const char *mod_name)
278 {
279 if (list_empty(&portlist))
280 get_lowlevel_driver ();
281
282 if (drv->devmodel) {
283 /* using device model */
284 int ret;
285
286 /* initialize common driver fields */
287 drv->driver.name = drv->name;
288 drv->driver.bus = &parport_bus_type;
289 drv->driver.owner = owner;
290 drv->driver.mod_name = mod_name;
291 ret = driver_register(&drv->driver);
292 if (ret)
293 return ret;
294
295 /*
296 * check if bus has any parallel port registered, if
297 * none is found then load the lowlevel driver.
298 */
299 ret = bus_for_each_dev(&parport_bus_type, NULL, NULL,
300 port_detect);
301 if (!ret)
302 get_lowlevel_driver();
303
304 mutex_lock(®istration_lock);
305 if (drv->match_port)
306 bus_for_each_dev(&parport_bus_type, NULL, drv,
307 port_check);
308 mutex_unlock(®istration_lock);
309 } else {
310 struct parport *port;
311
312 drv->devmodel = false;
313
314 mutex_lock(®istration_lock);
315 list_for_each_entry(port, &portlist, list)
316 drv->attach(port);
317 list_add(&drv->list, &drivers);
318 mutex_unlock(®istration_lock);
319 }
320
321 return 0;
322 }
323 EXPORT_SYMBOL(__parport_register_driver);
324
port_detach(struct device * dev,void * _drv)325 static int port_detach(struct device *dev, void *_drv)
326 {
327 struct parport_driver *drv = _drv;
328
329 if (is_parport(dev) && drv->detach)
330 drv->detach(to_parport_dev(dev));
331
332 return 0;
333 }
334
335 /**
336 * parport_unregister_driver - deregister a parallel port device driver
337 * @drv: structure describing the driver that was given to
338 * parport_register_driver()
339 *
340 * This should be called by a parallel port device driver that
341 * has registered itself using parport_register_driver() when it
342 * is about to be unloaded.
343 *
344 * When it returns, the driver's attach() routine will no longer
345 * be called, and for each port that attach() was called for, the
346 * detach() routine will have been called.
347 *
348 * All the driver's attach() and detach() calls are guaranteed to have
349 * finished by the time this function returns.
350 **/
351
parport_unregister_driver(struct parport_driver * drv)352 void parport_unregister_driver (struct parport_driver *drv)
353 {
354 struct parport *port;
355
356 mutex_lock(®istration_lock);
357 if (drv->devmodel) {
358 bus_for_each_dev(&parport_bus_type, NULL, drv, port_detach);
359 driver_unregister(&drv->driver);
360 } else {
361 list_del_init(&drv->list);
362 list_for_each_entry(port, &portlist, list)
363 drv->detach(port);
364 }
365 mutex_unlock(®istration_lock);
366 }
367
free_port(struct device * dev)368 static void free_port(struct device *dev)
369 {
370 int d;
371 struct parport *port = to_parport_dev(dev);
372
373 spin_lock(&full_list_lock);
374 list_del(&port->full_list);
375 spin_unlock(&full_list_lock);
376 for (d = 0; d < 5; d++) {
377 kfree(port->probe_info[d].class_name);
378 kfree(port->probe_info[d].mfr);
379 kfree(port->probe_info[d].model);
380 kfree(port->probe_info[d].cmdset);
381 kfree(port->probe_info[d].description);
382 }
383
384 kfree(port->name);
385 kfree(port);
386 }
387
388 /**
389 * parport_get_port - increment a port's reference count
390 * @port: the port
391 *
392 * This ensures that a struct parport pointer remains valid
393 * until the matching parport_put_port() call.
394 **/
395
parport_get_port(struct parport * port)396 struct parport *parport_get_port (struct parport *port)
397 {
398 struct device *dev = get_device(&port->bus_dev);
399
400 return to_parport_dev(dev);
401 }
402
parport_del_port(struct parport * port)403 void parport_del_port(struct parport *port)
404 {
405 device_unregister(&port->bus_dev);
406 }
407 EXPORT_SYMBOL(parport_del_port);
408
409 /**
410 * parport_put_port - decrement a port's reference count
411 * @port: the port
412 *
413 * This should be called once for each call to parport_get_port(),
414 * once the port is no longer needed. When the reference count reaches
415 * zero (port is no longer used), free_port is called.
416 **/
417
parport_put_port(struct parport * port)418 void parport_put_port (struct parport *port)
419 {
420 put_device(&port->bus_dev);
421 }
422
423 /**
424 * parport_register_port - register a parallel port
425 * @base: base I/O address
426 * @irq: IRQ line
427 * @dma: DMA channel
428 * @ops: pointer to the port driver's port operations structure
429 *
430 * When a parallel port (lowlevel) driver finds a port that
431 * should be made available to parallel port device drivers, it
432 * should call parport_register_port(). The @base, @irq, and
433 * @dma parameters are for the convenience of port drivers, and
434 * for ports where they aren't meaningful needn't be set to
435 * anything special. They can be altered afterwards by adjusting
436 * the relevant members of the parport structure that is returned
437 * and represents the port. They should not be tampered with
438 * after calling parport_announce_port, however.
439 *
440 * If there are parallel port device drivers in the system that
441 * have registered themselves using parport_register_driver(),
442 * they are not told about the port at this time; that is done by
443 * parport_announce_port().
444 *
445 * The @ops structure is allocated by the caller, and must not be
446 * deallocated before calling parport_remove_port().
447 *
448 * If there is no memory to allocate a new parport structure,
449 * this function will return %NULL.
450 **/
451
parport_register_port(unsigned long base,int irq,int dma,struct parport_operations * ops)452 struct parport *parport_register_port(unsigned long base, int irq, int dma,
453 struct parport_operations *ops)
454 {
455 struct list_head *l;
456 struct parport *tmp;
457 int num;
458 int device;
459 char *name;
460 int ret;
461
462 tmp = kzalloc(sizeof(struct parport), GFP_KERNEL);
463 if (!tmp) {
464 printk(KERN_WARNING "parport: memory squeeze\n");
465 return NULL;
466 }
467
468 /* Init our structure */
469 tmp->base = base;
470 tmp->irq = irq;
471 tmp->dma = dma;
472 tmp->muxport = tmp->daisy = tmp->muxsel = -1;
473 tmp->modes = 0;
474 INIT_LIST_HEAD(&tmp->list);
475 tmp->devices = tmp->cad = NULL;
476 tmp->flags = 0;
477 tmp->ops = ops;
478 tmp->physport = tmp;
479 memset (tmp->probe_info, 0, 5 * sizeof (struct parport_device_info));
480 rwlock_init(&tmp->cad_lock);
481 spin_lock_init(&tmp->waitlist_lock);
482 spin_lock_init(&tmp->pardevice_lock);
483 tmp->ieee1284.mode = IEEE1284_MODE_COMPAT;
484 tmp->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
485 sema_init(&tmp->ieee1284.irq, 0);
486 tmp->spintime = parport_default_spintime;
487 atomic_set (&tmp->ref_count, 1);
488 INIT_LIST_HEAD(&tmp->full_list);
489
490 name = kmalloc(15, GFP_KERNEL);
491 if (!name) {
492 printk(KERN_ERR "parport: memory squeeze\n");
493 kfree(tmp);
494 return NULL;
495 }
496 /* Search for the lowest free parport number. */
497
498 spin_lock(&full_list_lock);
499 for (l = all_ports.next, num = 0; l != &all_ports; l = l->next, num++) {
500 struct parport *p = list_entry(l, struct parport, full_list);
501 if (p->number != num)
502 break;
503 }
504 tmp->portnum = tmp->number = num;
505 list_add_tail(&tmp->full_list, l);
506 spin_unlock(&full_list_lock);
507
508 /*
509 * Now that the portnum is known finish doing the Init.
510 */
511 sprintf(name, "parport%d", tmp->portnum = tmp->number);
512 tmp->name = name;
513 tmp->bus_dev.bus = &parport_bus_type;
514 tmp->bus_dev.release = free_port;
515 dev_set_name(&tmp->bus_dev, name);
516 tmp->bus_dev.type = &parport_device_type;
517
518 for (device = 0; device < 5; device++)
519 /* assume the worst */
520 tmp->probe_info[device].class = PARPORT_CLASS_LEGACY;
521
522 tmp->waithead = tmp->waittail = NULL;
523
524 ret = device_register(&tmp->bus_dev);
525 if (ret) {
526 put_device(&tmp->bus_dev);
527 return NULL;
528 }
529
530 return tmp;
531 }
532
533 /**
534 * parport_announce_port - tell device drivers about a parallel port
535 * @port: parallel port to announce
536 *
537 * After a port driver has registered a parallel port with
538 * parport_register_port, and performed any necessary
539 * initialisation or adjustments, it should call
540 * parport_announce_port() in order to notify all device drivers
541 * that have called parport_register_driver(). Their attach()
542 * functions will be called, with @port as the parameter.
543 **/
544
parport_announce_port(struct parport * port)545 void parport_announce_port (struct parport *port)
546 {
547 int i;
548
549 #ifdef CONFIG_PARPORT_1284
550 /* Analyse the IEEE1284.3 topology of the port. */
551 parport_daisy_init(port);
552 #endif
553
554 if (!port->dev)
555 printk(KERN_WARNING "%s: fix this legacy "
556 "no-device port driver!\n",
557 port->name);
558
559 parport_proc_register(port);
560 mutex_lock(®istration_lock);
561 spin_lock_irq(&parportlist_lock);
562 list_add_tail(&port->list, &portlist);
563 for (i = 1; i < 3; i++) {
564 struct parport *slave = port->slaves[i-1];
565 if (slave)
566 list_add_tail(&slave->list, &portlist);
567 }
568 spin_unlock_irq(&parportlist_lock);
569
570 /* Let drivers know that new port(s) has arrived. */
571 attach_driver_chain (port);
572 for (i = 1; i < 3; i++) {
573 struct parport *slave = port->slaves[i-1];
574 if (slave)
575 attach_driver_chain(slave);
576 }
577 mutex_unlock(®istration_lock);
578 }
579
580 /**
581 * parport_remove_port - deregister a parallel port
582 * @port: parallel port to deregister
583 *
584 * When a parallel port driver is forcibly unloaded, or a
585 * parallel port becomes inaccessible, the port driver must call
586 * this function in order to deal with device drivers that still
587 * want to use it.
588 *
589 * The parport structure associated with the port has its
590 * operations structure replaced with one containing 'null'
591 * operations that return errors or just don't do anything.
592 *
593 * Any drivers that have registered themselves using
594 * parport_register_driver() are notified that the port is no
595 * longer accessible by having their detach() routines called
596 * with @port as the parameter.
597 **/
598
parport_remove_port(struct parport * port)599 void parport_remove_port(struct parport *port)
600 {
601 int i;
602
603 mutex_lock(®istration_lock);
604
605 /* Spread the word. */
606 detach_driver_chain (port);
607
608 #ifdef CONFIG_PARPORT_1284
609 /* Forget the IEEE1284.3 topology of the port. */
610 parport_daisy_fini(port);
611 for (i = 1; i < 3; i++) {
612 struct parport *slave = port->slaves[i-1];
613 if (!slave)
614 continue;
615 detach_driver_chain(slave);
616 parport_daisy_fini(slave);
617 }
618 #endif
619
620 port->ops = &dead_ops;
621 spin_lock(&parportlist_lock);
622 list_del_init(&port->list);
623 for (i = 1; i < 3; i++) {
624 struct parport *slave = port->slaves[i-1];
625 if (slave)
626 list_del_init(&slave->list);
627 }
628 spin_unlock(&parportlist_lock);
629
630 mutex_unlock(®istration_lock);
631
632 parport_proc_unregister(port);
633
634 for (i = 1; i < 3; i++) {
635 struct parport *slave = port->slaves[i-1];
636 if (slave)
637 parport_put_port(slave);
638 }
639 }
640
641 /**
642 * parport_register_device - register a device on a parallel port
643 * @port: port to which the device is attached
644 * @name: a name to refer to the device
645 * @pf: preemption callback
646 * @kf: kick callback (wake-up)
647 * @irq_func: interrupt handler
648 * @flags: registration flags
649 * @handle: data for callback functions
650 *
651 * This function, called by parallel port device drivers,
652 * declares that a device is connected to a port, and tells the
653 * system all it needs to know.
654 *
655 * The @name is allocated by the caller and must not be
656 * deallocated until the caller calls @parport_unregister_device
657 * for that device.
658 *
659 * The preemption callback function, @pf, is called when this
660 * device driver has claimed access to the port but another
661 * device driver wants to use it. It is given @handle as its
662 * parameter, and should return zero if it is willing for the
663 * system to release the port to another driver on its behalf.
664 * If it wants to keep control of the port it should return
665 * non-zero, and no action will be taken. It is good manners for
666 * the driver to try to release the port at the earliest
667 * opportunity after its preemption callback rejects a preemption
668 * attempt. Note that if a preemption callback is happy for
669 * preemption to go ahead, there is no need to release the port;
670 * it is done automatically. This function may not block, as it
671 * may be called from interrupt context. If the device driver
672 * does not support preemption, @pf can be %NULL.
673 *
674 * The wake-up ("kick") callback function, @kf, is called when
675 * the port is available to be claimed for exclusive access; that
676 * is, parport_claim() is guaranteed to succeed when called from
677 * inside the wake-up callback function. If the driver wants to
678 * claim the port it should do so; otherwise, it need not take
679 * any action. This function may not block, as it may be called
680 * from interrupt context. If the device driver does not want to
681 * be explicitly invited to claim the port in this way, @kf can
682 * be %NULL.
683 *
684 * The interrupt handler, @irq_func, is called when an interrupt
685 * arrives from the parallel port. Note that if a device driver
686 * wants to use interrupts it should use parport_enable_irq(),
687 * and can also check the irq member of the parport structure
688 * representing the port.
689 *
690 * The parallel port (lowlevel) driver is the one that has called
691 * request_irq() and whose interrupt handler is called first.
692 * This handler does whatever needs to be done to the hardware to
693 * acknowledge the interrupt (for PC-style ports there is nothing
694 * special to be done). It then tells the IEEE 1284 code about
695 * the interrupt, which may involve reacting to an IEEE 1284
696 * event depending on the current IEEE 1284 phase. After this,
697 * it calls @irq_func. Needless to say, @irq_func will be called
698 * from interrupt context, and may not block.
699 *
700 * The %PARPORT_DEV_EXCL flag is for preventing port sharing, and
701 * so should only be used when sharing the port with other device
702 * drivers is impossible and would lead to incorrect behaviour.
703 * Use it sparingly! Normally, @flags will be zero.
704 *
705 * This function returns a pointer to a structure that represents
706 * the device on the port, or %NULL if there is not enough memory
707 * to allocate space for that structure.
708 **/
709
710 struct pardevice *
parport_register_device(struct parport * port,const char * name,int (* pf)(void *),void (* kf)(void *),void (* irq_func)(void *),int flags,void * handle)711 parport_register_device(struct parport *port, const char *name,
712 int (*pf)(void *), void (*kf)(void *),
713 void (*irq_func)(void *),
714 int flags, void *handle)
715 {
716 struct pardevice *tmp;
717
718 if (port->physport->flags & PARPORT_FLAG_EXCL) {
719 /* An exclusive device is registered. */
720 printk (KERN_DEBUG "%s: no more devices allowed\n",
721 port->name);
722 return NULL;
723 }
724
725 if (flags & PARPORT_DEV_LURK) {
726 if (!pf || !kf) {
727 printk(KERN_INFO "%s: refused to register lurking device (%s) without callbacks\n", port->name, name);
728 return NULL;
729 }
730 }
731
732 if (flags & PARPORT_DEV_EXCL) {
733 if (port->physport->devices) {
734 /*
735 * If a device is already registered and this new
736 * device wants exclusive access, then no need to
737 * continue as we can not grant exclusive access to
738 * this device.
739 */
740 pr_err("%s: cannot grant exclusive access for device %s\n",
741 port->name, name);
742 return NULL;
743 }
744 }
745
746 /* We up our own module reference count, and that of the port
747 on which a device is to be registered, to ensure that
748 neither of us gets unloaded while we sleep in (e.g.)
749 kmalloc.
750 */
751 if (!try_module_get(port->ops->owner)) {
752 return NULL;
753 }
754
755 parport_get_port (port);
756
757 tmp = kmalloc(sizeof(struct pardevice), GFP_KERNEL);
758 if (tmp == NULL) {
759 printk(KERN_WARNING "%s: memory squeeze, couldn't register %s.\n", port->name, name);
760 goto out;
761 }
762
763 tmp->state = kmalloc(sizeof(struct parport_state), GFP_KERNEL);
764 if (tmp->state == NULL) {
765 printk(KERN_WARNING "%s: memory squeeze, couldn't register %s.\n", port->name, name);
766 goto out_free_pardevice;
767 }
768
769 tmp->name = name;
770 tmp->port = port;
771 tmp->daisy = -1;
772 tmp->preempt = pf;
773 tmp->wakeup = kf;
774 tmp->private = handle;
775 tmp->flags = flags;
776 tmp->irq_func = irq_func;
777 tmp->waiting = 0;
778 tmp->timeout = 5 * HZ;
779 tmp->devmodel = false;
780
781 /* Chain this onto the list */
782 tmp->prev = NULL;
783 /*
784 * This function must not run from an irq handler so we don' t need
785 * to clear irq on the local CPU. -arca
786 */
787 spin_lock(&port->physport->pardevice_lock);
788
789 if (flags & PARPORT_DEV_EXCL) {
790 if (port->physport->devices) {
791 spin_unlock (&port->physport->pardevice_lock);
792 printk (KERN_DEBUG
793 "%s: cannot grant exclusive access for "
794 "device %s\n", port->name, name);
795 goto out_free_all;
796 }
797 port->flags |= PARPORT_FLAG_EXCL;
798 }
799
800 tmp->next = port->physport->devices;
801 wmb(); /* Make sure that tmp->next is written before it's
802 added to the list; see comments marked 'no locking
803 required' */
804 if (port->physport->devices)
805 port->physport->devices->prev = tmp;
806 port->physport->devices = tmp;
807 spin_unlock(&port->physport->pardevice_lock);
808
809 init_waitqueue_head(&tmp->wait_q);
810 tmp->timeslice = parport_default_timeslice;
811 tmp->waitnext = tmp->waitprev = NULL;
812
813 /*
814 * This has to be run as last thing since init_state may need other
815 * pardevice fields. -arca
816 */
817 port->ops->init_state(tmp, tmp->state);
818 if (!test_and_set_bit(PARPORT_DEVPROC_REGISTERED, &port->devflags)) {
819 port->proc_device = tmp;
820 parport_device_proc_register(tmp);
821 }
822 return tmp;
823
824 out_free_all:
825 kfree(tmp->state);
826 out_free_pardevice:
827 kfree(tmp);
828 out:
829 parport_put_port (port);
830 module_put(port->ops->owner);
831
832 return NULL;
833 }
834
free_pardevice(struct device * dev)835 static void free_pardevice(struct device *dev)
836 {
837 struct pardevice *par_dev = to_pardevice(dev);
838
839 kfree(par_dev->name);
840 kfree(par_dev);
841 }
842
843 struct pardevice *
parport_register_dev_model(struct parport * port,const char * name,const struct pardev_cb * par_dev_cb,int id)844 parport_register_dev_model(struct parport *port, const char *name,
845 const struct pardev_cb *par_dev_cb, int id)
846 {
847 struct pardevice *par_dev;
848 int ret;
849 char *devname;
850
851 if (port->physport->flags & PARPORT_FLAG_EXCL) {
852 /* An exclusive device is registered. */
853 pr_err("%s: no more devices allowed\n", port->name);
854 return NULL;
855 }
856
857 if (par_dev_cb->flags & PARPORT_DEV_LURK) {
858 if (!par_dev_cb->preempt || !par_dev_cb->wakeup) {
859 pr_info("%s: refused to register lurking device (%s) without callbacks\n",
860 port->name, name);
861 return NULL;
862 }
863 }
864
865 if (par_dev_cb->flags & PARPORT_DEV_EXCL) {
866 if (port->physport->devices) {
867 /*
868 * If a device is already registered and this new
869 * device wants exclusive access, then no need to
870 * continue as we can not grant exclusive access to
871 * this device.
872 */
873 pr_err("%s: cannot grant exclusive access for device %s\n",
874 port->name, name);
875 return NULL;
876 }
877 }
878
879 if (!try_module_get(port->ops->owner))
880 return NULL;
881
882 parport_get_port(port);
883
884 par_dev = kzalloc(sizeof(*par_dev), GFP_KERNEL);
885 if (!par_dev)
886 goto err_put_port;
887
888 par_dev->state = kzalloc(sizeof(*par_dev->state), GFP_KERNEL);
889 if (!par_dev->state)
890 goto err_put_par_dev;
891
892 devname = kstrdup(name, GFP_KERNEL);
893 if (!devname)
894 goto err_free_par_dev;
895
896 par_dev->name = devname;
897 par_dev->port = port;
898 par_dev->daisy = -1;
899 par_dev->preempt = par_dev_cb->preempt;
900 par_dev->wakeup = par_dev_cb->wakeup;
901 par_dev->private = par_dev_cb->private;
902 par_dev->flags = par_dev_cb->flags;
903 par_dev->irq_func = par_dev_cb->irq_func;
904 par_dev->waiting = 0;
905 par_dev->timeout = 5 * HZ;
906
907 par_dev->dev.parent = &port->bus_dev;
908 par_dev->dev.bus = &parport_bus_type;
909 ret = dev_set_name(&par_dev->dev, "%s.%d", devname, id);
910 if (ret)
911 goto err_free_devname;
912 par_dev->dev.release = free_pardevice;
913 par_dev->devmodel = true;
914 ret = device_register(&par_dev->dev);
915 if (ret) {
916 kfree(par_dev->state);
917 put_device(&par_dev->dev);
918 goto err_put_port;
919 }
920
921 /* Chain this onto the list */
922 par_dev->prev = NULL;
923 /*
924 * This function must not run from an irq handler so we don' t need
925 * to clear irq on the local CPU. -arca
926 */
927 spin_lock(&port->physport->pardevice_lock);
928
929 if (par_dev_cb->flags & PARPORT_DEV_EXCL) {
930 if (port->physport->devices) {
931 spin_unlock(&port->physport->pardevice_lock);
932 pr_debug("%s: cannot grant exclusive access for device %s\n",
933 port->name, name);
934 kfree(par_dev->state);
935 device_unregister(&par_dev->dev);
936 goto err_put_port;
937 }
938 port->flags |= PARPORT_FLAG_EXCL;
939 }
940
941 par_dev->next = port->physport->devices;
942 wmb(); /*
943 * Make sure that tmp->next is written before it's
944 * added to the list; see comments marked 'no locking
945 * required'
946 */
947 if (port->physport->devices)
948 port->physport->devices->prev = par_dev;
949 port->physport->devices = par_dev;
950 spin_unlock(&port->physport->pardevice_lock);
951
952 init_waitqueue_head(&par_dev->wait_q);
953 par_dev->timeslice = parport_default_timeslice;
954 par_dev->waitnext = NULL;
955 par_dev->waitprev = NULL;
956
957 /*
958 * This has to be run as last thing since init_state may need other
959 * pardevice fields. -arca
960 */
961 port->ops->init_state(par_dev, par_dev->state);
962 if (!test_and_set_bit(PARPORT_DEVPROC_REGISTERED, &port->devflags)) {
963 port->proc_device = par_dev;
964 parport_device_proc_register(par_dev);
965 }
966
967 return par_dev;
968
969 err_free_devname:
970 kfree(devname);
971 err_free_par_dev:
972 kfree(par_dev->state);
973 err_put_par_dev:
974 if (!par_dev->devmodel)
975 kfree(par_dev);
976 err_put_port:
977 parport_put_port(port);
978 module_put(port->ops->owner);
979
980 return NULL;
981 }
982 EXPORT_SYMBOL(parport_register_dev_model);
983
984 /**
985 * parport_unregister_device - deregister a device on a parallel port
986 * @dev: pointer to structure representing device
987 *
988 * This undoes the effect of parport_register_device().
989 **/
990
parport_unregister_device(struct pardevice * dev)991 void parport_unregister_device(struct pardevice *dev)
992 {
993 struct parport *port;
994
995 #ifdef PARPORT_PARANOID
996 if (dev == NULL) {
997 printk(KERN_ERR "parport_unregister_device: passed NULL\n");
998 return;
999 }
1000 #endif
1001
1002 port = dev->port->physport;
1003
1004 if (port->proc_device == dev) {
1005 port->proc_device = NULL;
1006 clear_bit(PARPORT_DEVPROC_REGISTERED, &port->devflags);
1007 parport_device_proc_unregister(dev);
1008 }
1009
1010 if (port->cad == dev) {
1011 printk(KERN_DEBUG "%s: %s forgot to release port\n",
1012 port->name, dev->name);
1013 parport_release (dev);
1014 }
1015
1016 spin_lock(&port->pardevice_lock);
1017 if (dev->next)
1018 dev->next->prev = dev->prev;
1019 if (dev->prev)
1020 dev->prev->next = dev->next;
1021 else
1022 port->devices = dev->next;
1023
1024 if (dev->flags & PARPORT_DEV_EXCL)
1025 port->flags &= ~PARPORT_FLAG_EXCL;
1026
1027 spin_unlock(&port->pardevice_lock);
1028
1029 /* Make sure we haven't left any pointers around in the wait
1030 * list. */
1031 spin_lock_irq(&port->waitlist_lock);
1032 if (dev->waitprev || dev->waitnext || port->waithead == dev) {
1033 if (dev->waitprev)
1034 dev->waitprev->waitnext = dev->waitnext;
1035 else
1036 port->waithead = dev->waitnext;
1037 if (dev->waitnext)
1038 dev->waitnext->waitprev = dev->waitprev;
1039 else
1040 port->waittail = dev->waitprev;
1041 }
1042 spin_unlock_irq(&port->waitlist_lock);
1043
1044 kfree(dev->state);
1045 if (dev->devmodel)
1046 device_unregister(&dev->dev);
1047 else
1048 kfree(dev);
1049
1050 module_put(port->ops->owner);
1051 parport_put_port (port);
1052 }
1053
1054 /**
1055 * parport_find_number - find a parallel port by number
1056 * @number: parallel port number
1057 *
1058 * This returns the parallel port with the specified number, or
1059 * %NULL if there is none.
1060 *
1061 * There is an implicit parport_get_port() done already; to throw
1062 * away the reference to the port that parport_find_number()
1063 * gives you, use parport_put_port().
1064 */
1065
parport_find_number(int number)1066 struct parport *parport_find_number (int number)
1067 {
1068 struct parport *port, *result = NULL;
1069
1070 if (list_empty(&portlist))
1071 get_lowlevel_driver ();
1072
1073 spin_lock (&parportlist_lock);
1074 list_for_each_entry(port, &portlist, list) {
1075 if (port->number == number) {
1076 result = parport_get_port (port);
1077 break;
1078 }
1079 }
1080 spin_unlock (&parportlist_lock);
1081 return result;
1082 }
1083
1084 /**
1085 * parport_find_base - find a parallel port by base address
1086 * @base: base I/O address
1087 *
1088 * This returns the parallel port with the specified base
1089 * address, or %NULL if there is none.
1090 *
1091 * There is an implicit parport_get_port() done already; to throw
1092 * away the reference to the port that parport_find_base()
1093 * gives you, use parport_put_port().
1094 */
1095
parport_find_base(unsigned long base)1096 struct parport *parport_find_base (unsigned long base)
1097 {
1098 struct parport *port, *result = NULL;
1099
1100 if (list_empty(&portlist))
1101 get_lowlevel_driver ();
1102
1103 spin_lock (&parportlist_lock);
1104 list_for_each_entry(port, &portlist, list) {
1105 if (port->base == base) {
1106 result = parport_get_port (port);
1107 break;
1108 }
1109 }
1110 spin_unlock (&parportlist_lock);
1111 return result;
1112 }
1113
1114 /**
1115 * parport_claim - claim access to a parallel port device
1116 * @dev: pointer to structure representing a device on the port
1117 *
1118 * This function will not block and so can be used from interrupt
1119 * context. If parport_claim() succeeds in claiming access to
1120 * the port it returns zero and the port is available to use. It
1121 * may fail (returning non-zero) if the port is in use by another
1122 * driver and that driver is not willing to relinquish control of
1123 * the port.
1124 **/
1125
parport_claim(struct pardevice * dev)1126 int parport_claim(struct pardevice *dev)
1127 {
1128 struct pardevice *oldcad;
1129 struct parport *port = dev->port->physport;
1130 unsigned long flags;
1131
1132 if (port->cad == dev) {
1133 printk(KERN_INFO "%s: %s already owner\n",
1134 dev->port->name,dev->name);
1135 return 0;
1136 }
1137
1138 /* Preempt any current device */
1139 write_lock_irqsave (&port->cad_lock, flags);
1140 if ((oldcad = port->cad) != NULL) {
1141 if (oldcad->preempt) {
1142 if (oldcad->preempt(oldcad->private))
1143 goto blocked;
1144 port->ops->save_state(port, dev->state);
1145 } else
1146 goto blocked;
1147
1148 if (port->cad != oldcad) {
1149 /* I think we'll actually deadlock rather than
1150 get here, but just in case.. */
1151 printk(KERN_WARNING
1152 "%s: %s released port when preempted!\n",
1153 port->name, oldcad->name);
1154 if (port->cad)
1155 goto blocked;
1156 }
1157 }
1158
1159 /* Can't fail from now on, so mark ourselves as no longer waiting. */
1160 if (dev->waiting & 1) {
1161 dev->waiting = 0;
1162
1163 /* Take ourselves out of the wait list again. */
1164 spin_lock_irq (&port->waitlist_lock);
1165 if (dev->waitprev)
1166 dev->waitprev->waitnext = dev->waitnext;
1167 else
1168 port->waithead = dev->waitnext;
1169 if (dev->waitnext)
1170 dev->waitnext->waitprev = dev->waitprev;
1171 else
1172 port->waittail = dev->waitprev;
1173 spin_unlock_irq (&port->waitlist_lock);
1174 dev->waitprev = dev->waitnext = NULL;
1175 }
1176
1177 /* Now we do the change of devices */
1178 port->cad = dev;
1179
1180 #ifdef CONFIG_PARPORT_1284
1181 /* If it's a mux port, select it. */
1182 if (dev->port->muxport >= 0) {
1183 /* FIXME */
1184 port->muxsel = dev->port->muxport;
1185 }
1186
1187 /* If it's a daisy chain device, select it. */
1188 if (dev->daisy >= 0) {
1189 /* This could be lazier. */
1190 if (!parport_daisy_select (port, dev->daisy,
1191 IEEE1284_MODE_COMPAT))
1192 port->daisy = dev->daisy;
1193 }
1194 #endif /* IEEE1284.3 support */
1195
1196 /* Restore control registers */
1197 port->ops->restore_state(port, dev->state);
1198 write_unlock_irqrestore(&port->cad_lock, flags);
1199 dev->time = jiffies;
1200 return 0;
1201
1202 blocked:
1203 /* If this is the first time we tried to claim the port, register an
1204 interest. This is only allowed for devices sleeping in
1205 parport_claim_or_block(), or those with a wakeup function. */
1206
1207 /* The cad_lock is still held for writing here */
1208 if (dev->waiting & 2 || dev->wakeup) {
1209 spin_lock (&port->waitlist_lock);
1210 if (test_and_set_bit(0, &dev->waiting) == 0) {
1211 /* First add ourselves to the end of the wait list. */
1212 dev->waitnext = NULL;
1213 dev->waitprev = port->waittail;
1214 if (port->waittail) {
1215 port->waittail->waitnext = dev;
1216 port->waittail = dev;
1217 } else
1218 port->waithead = port->waittail = dev;
1219 }
1220 spin_unlock (&port->waitlist_lock);
1221 }
1222 write_unlock_irqrestore (&port->cad_lock, flags);
1223 return -EAGAIN;
1224 }
1225
1226 /**
1227 * parport_claim_or_block - claim access to a parallel port device
1228 * @dev: pointer to structure representing a device on the port
1229 *
1230 * This behaves like parport_claim(), but will block if necessary
1231 * to wait for the port to be free. A return value of 1
1232 * indicates that it slept; 0 means that it succeeded without
1233 * needing to sleep. A negative error code indicates failure.
1234 **/
1235
parport_claim_or_block(struct pardevice * dev)1236 int parport_claim_or_block(struct pardevice *dev)
1237 {
1238 int r;
1239
1240 /* Signal to parport_claim() that we can wait even without a
1241 wakeup function. */
1242 dev->waiting = 2;
1243
1244 /* Try to claim the port. If this fails, we need to sleep. */
1245 r = parport_claim(dev);
1246 if (r == -EAGAIN) {
1247 #ifdef PARPORT_DEBUG_SHARING
1248 printk(KERN_DEBUG "%s: parport_claim() returned -EAGAIN\n", dev->name);
1249 #endif
1250 /*
1251 * FIXME!!! Use the proper locking for dev->waiting,
1252 * and make this use the "wait_event_interruptible()"
1253 * interfaces. The cli/sti that used to be here
1254 * did nothing.
1255 *
1256 * See also parport_release()
1257 */
1258
1259 /* If dev->waiting is clear now, an interrupt
1260 gave us the port and we would deadlock if we slept. */
1261 if (dev->waiting) {
1262 wait_event_interruptible(dev->wait_q,
1263 !dev->waiting);
1264 if (signal_pending (current)) {
1265 return -EINTR;
1266 }
1267 r = 1;
1268 } else {
1269 r = 0;
1270 #ifdef PARPORT_DEBUG_SHARING
1271 printk(KERN_DEBUG "%s: didn't sleep in parport_claim_or_block()\n",
1272 dev->name);
1273 #endif
1274 }
1275
1276 #ifdef PARPORT_DEBUG_SHARING
1277 if (dev->port->physport->cad != dev)
1278 printk(KERN_DEBUG "%s: exiting parport_claim_or_block "
1279 "but %s owns port!\n", dev->name,
1280 dev->port->physport->cad ?
1281 dev->port->physport->cad->name:"nobody");
1282 #endif
1283 }
1284 dev->waiting = 0;
1285 return r;
1286 }
1287
1288 /**
1289 * parport_release - give up access to a parallel port device
1290 * @dev: pointer to structure representing parallel port device
1291 *
1292 * This function cannot fail, but it should not be called without
1293 * the port claimed. Similarly, if the port is already claimed
1294 * you should not try claiming it again.
1295 **/
1296
parport_release(struct pardevice * dev)1297 void parport_release(struct pardevice *dev)
1298 {
1299 struct parport *port = dev->port->physport;
1300 struct pardevice *pd;
1301 unsigned long flags;
1302
1303 /* Make sure that dev is the current device */
1304 write_lock_irqsave(&port->cad_lock, flags);
1305 if (port->cad != dev) {
1306 write_unlock_irqrestore (&port->cad_lock, flags);
1307 printk(KERN_WARNING "%s: %s tried to release parport "
1308 "when not owner\n", port->name, dev->name);
1309 return;
1310 }
1311
1312 #ifdef CONFIG_PARPORT_1284
1313 /* If this is on a mux port, deselect it. */
1314 if (dev->port->muxport >= 0) {
1315 /* FIXME */
1316 port->muxsel = -1;
1317 }
1318
1319 /* If this is a daisy device, deselect it. */
1320 if (dev->daisy >= 0) {
1321 parport_daisy_deselect_all (port);
1322 port->daisy = -1;
1323 }
1324 #endif
1325
1326 port->cad = NULL;
1327 write_unlock_irqrestore(&port->cad_lock, flags);
1328
1329 /* Save control registers */
1330 port->ops->save_state(port, dev->state);
1331
1332 /* If anybody is waiting, find out who's been there longest and
1333 then wake them up. (Note: no locking required) */
1334 /* !!! LOCKING IS NEEDED HERE */
1335 for (pd = port->waithead; pd; pd = pd->waitnext) {
1336 if (pd->waiting & 2) { /* sleeping in claim_or_block */
1337 parport_claim(pd);
1338 if (waitqueue_active(&pd->wait_q))
1339 wake_up_interruptible(&pd->wait_q);
1340 return;
1341 } else if (pd->wakeup) {
1342 pd->wakeup(pd->private);
1343 if (dev->port->cad) /* racy but no matter */
1344 return;
1345 } else {
1346 printk(KERN_ERR "%s: don't know how to wake %s\n", port->name, pd->name);
1347 }
1348 }
1349
1350 /* Nobody was waiting, so walk the list to see if anyone is
1351 interested in being woken up. (Note: no locking required) */
1352 /* !!! LOCKING IS NEEDED HERE */
1353 for (pd = port->devices; (port->cad == NULL) && pd; pd = pd->next) {
1354 if (pd->wakeup && pd != dev)
1355 pd->wakeup(pd->private);
1356 }
1357 }
1358
parport_irq_handler(int irq,void * dev_id)1359 irqreturn_t parport_irq_handler(int irq, void *dev_id)
1360 {
1361 struct parport *port = dev_id;
1362
1363 parport_generic_irq(port);
1364
1365 return IRQ_HANDLED;
1366 }
1367
1368 /* Exported symbols for modules. */
1369
1370 EXPORT_SYMBOL(parport_claim);
1371 EXPORT_SYMBOL(parport_claim_or_block);
1372 EXPORT_SYMBOL(parport_release);
1373 EXPORT_SYMBOL(parport_register_port);
1374 EXPORT_SYMBOL(parport_announce_port);
1375 EXPORT_SYMBOL(parport_remove_port);
1376 EXPORT_SYMBOL(parport_unregister_driver);
1377 EXPORT_SYMBOL(parport_register_device);
1378 EXPORT_SYMBOL(parport_unregister_device);
1379 EXPORT_SYMBOL(parport_get_port);
1380 EXPORT_SYMBOL(parport_put_port);
1381 EXPORT_SYMBOL(parport_find_number);
1382 EXPORT_SYMBOL(parport_find_base);
1383 EXPORT_SYMBOL(parport_irq_handler);
1384
1385 MODULE_LICENSE("GPL");
1386