share.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:33k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: parport_share.c,v 1.15 1998/01/11 12:06:17 philip Exp $
  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. #undef PARPORT_DEBUG_SHARING /* undef for production */
  18. #include <linux/config.h>
  19. #include <linux/module.h>
  20. #include <linux/string.h>
  21. #include <linux/threads.h>
  22. #include <linux/parport.h>
  23. #include <linux/delay.h>
  24. #include <linux/errno.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/ioport.h>
  27. #include <linux/kernel.h>
  28. #include <linux/slab.h>
  29. #include <linux/sched.h>
  30. #include <linux/kmod.h>
  31. #include <linux/spinlock.h>
  32. #include <asm/irq.h>
  33. #undef PARPORT_PARANOID
  34. #define PARPORT_DEFAULT_TIMESLICE (HZ/5)
  35. unsigned long parport_default_timeslice = PARPORT_DEFAULT_TIMESLICE;
  36. int parport_default_spintime =  DEFAULT_SPIN_TIME;
  37. static struct parport *portlist = NULL, *portlist_tail = NULL;
  38. static spinlock_t parportlist_lock = SPIN_LOCK_UNLOCKED;
  39. static struct parport_driver *driver_chain = NULL;
  40. static spinlock_t driverlist_lock = SPIN_LOCK_UNLOCKED;
  41. /* What you can do to a port that's gone away.. */
  42. static void dead_write_lines (struct parport *p, unsigned char b){}
  43. static unsigned char dead_read_lines (struct parport *p) { return 0; }
  44. static unsigned char dead_frob_lines (struct parport *p, unsigned char b,
  45.      unsigned char c) { return 0; }
  46. static void dead_onearg (struct parport *p){}
  47. static void dead_initstate (struct pardevice *d, struct parport_state *s) { }
  48. static void dead_state (struct parport *p, struct parport_state *s) { }
  49. static void dead_noargs (void) { }
  50. static size_t dead_write (struct parport *p, const void *b, size_t l, int f)
  51. { return 0; }
  52. static size_t dead_read (struct parport *p, void *b, size_t l, int f)
  53. { return 0; }
  54. static struct parport_operations dead_ops = {
  55. dead_write_lines, /* data */
  56. dead_read_lines,
  57. dead_write_lines, /* control */
  58. dead_read_lines,
  59. dead_frob_lines,
  60. dead_read_lines, /* status */
  61. dead_onearg, /* enable_irq */
  62. dead_onearg, /* disable_irq */
  63. dead_onearg, /* data_forward */
  64. dead_onearg, /* data_reverse */
  65. dead_initstate, /* init_state */
  66. dead_state,
  67. dead_state,
  68. dead_noargs, /* xxx_use_count */
  69. dead_noargs,
  70. dead_write, /* epp */
  71. dead_read,
  72. dead_write,
  73. dead_read,
  74. dead_write, /* ecp */
  75. dead_read,
  76. dead_write,
  77. dead_write, /* compat */
  78. dead_read, /* nibble */
  79. dead_read /* byte */
  80. };
  81. /* Call attach(port) for each registered driver. */
  82. static void attach_driver_chain(struct parport *port)
  83. {
  84. struct parport_driver *drv;
  85. void (**attach) (struct parport *);
  86. int count = 0, i;
  87. /* This is complicated because attach() must be able to block,
  88.  * but we can't let it do that while we're holding a
  89.  * spinlock. */
  90. spin_lock (&driverlist_lock);
  91. for (drv = driver_chain; drv; drv = drv->next)
  92. count++;
  93. spin_unlock (&driverlist_lock);
  94. /* Drivers can unregister here; that's okay.  If they register
  95.  * they'll be given an attach during parport_register_driver,
  96.  * so that's okay too.  The only worry is that someone might
  97.  * get given an attach twice if they registered just before
  98.  * this function gets called. */
  99. /* Hmm, this could be fixed with a generation number..
  100.  * FIXME */
  101. attach = kmalloc (sizeof (void(*)(struct parport *)) * count,
  102.   GFP_KERNEL);
  103. if (!attach) {
  104. printk (KERN_WARNING "parport: not enough memory to attachn");
  105. return;
  106. }
  107. spin_lock (&driverlist_lock);
  108. for (i = 0, drv = driver_chain; drv && i < count; drv = drv->next)
  109. attach[i++] = drv->attach;
  110. spin_unlock (&driverlist_lock);
  111. for (count = 0; count < i; count++)
  112. (*attach[count]) (port);
  113. kfree (attach);
  114. }
  115. /* Call detach(port) for each registered driver. */
  116. static void detach_driver_chain(struct parport *port)
  117. {
  118. struct parport_driver *drv;
  119. spin_lock (&driverlist_lock);
  120. for (drv = driver_chain; drv; drv = drv->next)
  121. drv->detach (port);
  122. spin_unlock (&driverlist_lock);
  123. }
  124. /* Ask kmod for some lowlevel drivers. */
  125. static void get_lowlevel_driver (void)
  126. {
  127. /* There is no actual module called this: you should set
  128.  * up an alias for modutils. */
  129. request_module ("parport_lowlevel");
  130. }
  131. /**
  132.  * parport_register_driver - register a parallel port device driver
  133.  * @drv: structure describing the driver
  134.  *
  135.  * This can be called by a parallel port device driver in order
  136.  * to receive notifications about ports being found in the
  137.  * system, as well as ports no longer available.
  138.  *
  139.  * The @drv structure is allocated by the caller and must not be
  140.  * deallocated until after calling parport_unregister_driver().
  141.  *
  142.  * The driver's attach() function may block.  The port that
  143.  * attach() is given will be valid for the duration of the
  144.  * callback, but if the driver wants to take a copy of the
  145.  * pointer it must call parport_get_port() to do so.  Calling
  146.  * parport_register_device() on that port will do this for you.
  147.  *
  148.  * The driver's detach() function may not block.  The port that
  149.  * detach() is given will be valid for the duration of the
  150.  * callback, but if the driver wants to take a copy of the
  151.  * pointer it must call parport_get_port() to do so.
  152.  *
  153.  * Returns 0 on success.  Currently it always succeeds.
  154.  **/
  155. int parport_register_driver (struct parport_driver *drv)
  156. {
  157. struct parport *port;
  158. struct parport **ports;
  159. int count = 0, i;
  160. if (!portlist)
  161. get_lowlevel_driver ();
  162. /* We have to take the portlist lock for this to be sure
  163.  * that port is valid for the duration of the callback. */
  164. /* This is complicated by the fact that attach must be allowed
  165.  * to block, so we can't be holding any spinlocks when we call
  166.  * it.  But we need to hold a spinlock to iterate over the
  167.  * list of ports.. */
  168. spin_lock (&parportlist_lock);
  169. for (port = portlist; port; port = port->next)
  170. count++;
  171. spin_unlock (&parportlist_lock);
  172. ports = kmalloc (sizeof (struct parport *) * count, GFP_KERNEL);
  173. if (!ports)
  174. printk (KERN_WARNING "parport: not enough memory to attachn");
  175. else {
  176. spin_lock (&parportlist_lock);
  177. for (i = 0, port = portlist; port && i < count;
  178.      port = port->next)
  179. ports[i++] = port;
  180. spin_unlock (&parportlist_lock);
  181. for (count = 0; count < i; count++)
  182. drv->attach (ports[count]);
  183. kfree (ports);
  184. }
  185. spin_lock (&driverlist_lock);
  186. drv->next = driver_chain;
  187. driver_chain = drv;
  188. spin_unlock (&driverlist_lock);
  189. return 0;
  190. }
  191. /**
  192.  * parport_unregister_driver - deregister a parallel port device driver
  193.  * @arg: structure describing the driver that was given to
  194.  *       parport_register_driver()
  195.  *
  196.  * This should be called by a parallel port device driver that
  197.  * has registered itself using parport_register_driver() when it
  198.  * is about to be unloaded.
  199.  *
  200.  * When it returns, the driver's attach() routine will no longer
  201.  * be called, and for each port that attach() was called for, the
  202.  * detach() routine will have been called.
  203.  *
  204.  * If the caller's attach() function can block, it is their
  205.  * responsibility to make sure to wait for it to exit before
  206.  * unloading.
  207.  *
  208.  * All the driver's detach() calls are guaranteed to have
  209.  * finished by the time this function returns.
  210.  *
  211.  * The driver's detach() call is not allowed to block.
  212.  **/
  213. void parport_unregister_driver (struct parport_driver *arg)
  214. {
  215. struct parport_driver *drv = driver_chain, *olddrv = NULL;
  216. while (drv) {
  217. if (drv == arg) {
  218. struct parport *port;
  219. spin_lock (&driverlist_lock);
  220. if (olddrv)
  221. olddrv->next = drv->next;
  222. else
  223. driver_chain = drv->next;
  224. spin_unlock (&driverlist_lock);
  225. /* Call the driver's detach routine for each
  226.  * port to clean up any resources that the
  227.  * attach routine acquired. */
  228. spin_lock (&parportlist_lock);
  229. for (port = portlist; port; port = port->next)
  230. drv->detach (port);
  231. spin_unlock (&parportlist_lock);
  232. return;
  233. }
  234. olddrv = drv;
  235. drv = drv->next;
  236. }
  237. }
  238. static void free_port (struct parport *port)
  239. {
  240. int d;
  241. for (d = 0; d < 5; d++) {
  242. if (port->probe_info[d].class_name)
  243. kfree (port->probe_info[d].class_name);
  244. if (port->probe_info[d].mfr)
  245. kfree (port->probe_info[d].mfr);
  246. if (port->probe_info[d].model)
  247. kfree (port->probe_info[d].model);
  248. if (port->probe_info[d].cmdset)
  249. kfree (port->probe_info[d].cmdset);
  250. if (port->probe_info[d].description)
  251. kfree (port->probe_info[d].description);
  252. }
  253. kfree(port->name);
  254. kfree(port);
  255. }
  256. /**
  257.  * parport_get_port - increment a port's reference count
  258.  * @port: the port
  259.  *
  260.  * This ensure's that a struct parport pointer remains valid
  261.  * until the matching parport_put_port() call.
  262.  **/
  263. struct parport *parport_get_port (struct parport *port)
  264. {
  265. atomic_inc (&port->ref_count);
  266. return port;
  267. }
  268. /**
  269.  * parport_put_port - decrement a port's reference count
  270.  * @port: the port
  271.  *
  272.  * This should be called once for each call to parport_get_port(),
  273.  * once the port is no longer needed.
  274.  **/
  275. void parport_put_port (struct parport *port)
  276. {
  277. if (atomic_dec_and_test (&port->ref_count))
  278. /* Can destroy it now. */
  279. free_port (port);
  280. return;
  281. }
  282. /**
  283.  * parport_enumerate - return a list of the system's parallel ports
  284.  *
  285.  * This returns the head of the list of parallel ports in the
  286.  * system, as a &struct parport.  The structure that is returned
  287.  * describes the first port in the list, and its 'next' member
  288.  * points to the next port, or %NULL if it's the last port.
  289.  *
  290.  * If there are no parallel ports in the system,
  291.  * parport_enumerate() will return %NULL.
  292.  **/
  293. struct parport *parport_enumerate(void)
  294. {
  295. /* Don't use this: use parport_register_driver instead. */
  296. if (!portlist)
  297. get_lowlevel_driver ();
  298. return portlist;
  299. }
  300. /**
  301.  * parport_register_port - register a parallel port
  302.  * @base: base I/O address
  303.  * @irq: IRQ line
  304.  * @dma: DMA channel
  305.  * @ops: pointer to the port driver's port operations structure
  306.  *
  307.  * When a parallel port (lowlevel) driver finds a port that
  308.  * should be made available to parallel port device drivers, it
  309.  * should call parport_register_port().  The @base, @irq, and
  310.  * @dma parameters are for the convenience of port drivers, and
  311.  * for ports where they aren't meaningful needn't be set to
  312.  * anything special.  They can be altered afterwards by adjusting
  313.  * the relevant members of the parport structure that is returned
  314.  * and represents the port.  They should not be tampered with
  315.  * after calling parport_announce_port, however.
  316.  *
  317.  * If there are parallel port device drivers in the system that
  318.  * have registered themselves using parport_register_driver(),
  319.  * they are not told about the port at this time; that is done by
  320.  * parport_announce_port().
  321.  *
  322.  * The @ops structure is allocated by the caller, and must not be
  323.  * deallocated before calling parport_unregister_port().
  324.  *
  325.  * If there is no memory to allocate a new parport structure,
  326.  * this function will return %NULL.
  327.  **/
  328. struct parport *parport_register_port(unsigned long base, int irq, int dma,
  329.       struct parport_operations *ops)
  330. {
  331. struct parport *tmp;
  332. int portnum;
  333. int device;
  334. char *name;
  335. tmp = kmalloc(sizeof(struct parport), GFP_KERNEL);
  336. if (!tmp) {
  337. printk(KERN_WARNING "parport: memory squeezen");
  338. return NULL;
  339. }
  340. /* Search for the lowest free parport number. */
  341. spin_lock_irq (&parportlist_lock);
  342. for (portnum = 0; ; portnum++) {
  343. struct parport *itr = portlist;
  344. while (itr) {
  345. if (itr->number == portnum)
  346. /* No good, already used. */
  347. break;
  348. else
  349. itr = itr->next;
  350. }
  351. if (itr == NULL)
  352. /* Got to the end of the list. */
  353. break;
  354. }
  355. spin_unlock_irq (&parportlist_lock);
  356. /* Init our structure */
  357.   memset(tmp, 0, sizeof(struct parport));
  358. tmp->base = base;
  359. tmp->irq = irq;
  360. tmp->dma = dma;
  361. tmp->muxport = tmp->daisy = tmp->muxsel = -1;
  362. tmp->modes = 0;
  363.   tmp->next = NULL;
  364. tmp->devices = tmp->cad = NULL;
  365. tmp->flags = 0;
  366. tmp->ops = ops;
  367. tmp->portnum = tmp->number = portnum;
  368. tmp->physport = tmp;
  369. memset (tmp->probe_info, 0, 5 * sizeof (struct parport_device_info));
  370. tmp->cad_lock = RW_LOCK_UNLOCKED;
  371. spin_lock_init(&tmp->waitlist_lock);
  372. spin_lock_init(&tmp->pardevice_lock);
  373. tmp->ieee1284.mode = IEEE1284_MODE_COMPAT;
  374. tmp->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
  375. init_MUTEX_LOCKED (&tmp->ieee1284.irq); /* actually a semaphore at 0 */
  376. tmp->spintime = parport_default_spintime;
  377. atomic_set (&tmp->ref_count, 1);
  378. name = kmalloc(15, GFP_KERNEL);
  379. if (!name) {
  380. printk(KERN_ERR "parport: memory squeezen");
  381. kfree(tmp);
  382. return NULL;
  383. }
  384. sprintf(name, "parport%d", portnum);
  385. tmp->name = name;
  386. /*
  387.  * Chain the entry to our list.
  388.  *
  389.  * This function must not run from an irq handler so we don' t need
  390.  * to clear irq on the local CPU. -arca
  391.  */
  392. spin_lock(&parportlist_lock);
  393. /* We are locked against anyone else performing alterations, but
  394.  * because of parport_enumerate people can still _read_ the list
  395.  * while we are changing it; so be careful..
  396.  *
  397.  * It's okay to have portlist_tail a little bit out of sync
  398.  * since it's only used for changing the list, not for reading
  399.  * from it.
  400.  */
  401. if (portlist_tail)
  402. portlist_tail->next = tmp;
  403. portlist_tail = tmp;
  404. if (!portlist)
  405. portlist = tmp;
  406. spin_unlock(&parportlist_lock);
  407. for (device = 0; device < 5; device++)
  408. /* assume the worst */
  409. tmp->probe_info[device].class = PARPORT_CLASS_LEGACY;
  410. tmp->waithead = tmp->waittail = NULL;
  411. return tmp;
  412. }
  413. /**
  414.  * parport_announce_port - tell device drivers about a parallel port
  415.  * @port: parallel port to announce
  416.  *
  417.  * After a port driver has registered a parallel port with
  418.  * parport_register_port, and performed any necessary
  419.  * initialisation or adjustments, it should call
  420.  * parport_announce_port() in order to notify all device drivers
  421.  * that have called parport_register_driver().  Their attach()
  422.  * functions will be called, with @port as the parameter.
  423.  **/
  424. void parport_announce_port (struct parport *port)
  425. {
  426. #ifdef CONFIG_PARPORT_1284
  427. /* Analyse the IEEE1284.3 topology of the port. */
  428. if (parport_daisy_init (port) == 0) {
  429. /* No devices were detected.  Perhaps they are in some
  430.                    funny state; let's try to reset them and see if
  431.                    they wake up. */
  432. parport_daisy_fini (port);
  433. parport_write_control (port, PARPORT_CONTROL_SELECT);
  434. udelay (50);
  435. parport_write_control (port,
  436.        PARPORT_CONTROL_SELECT |
  437.        PARPORT_CONTROL_INIT);
  438. udelay (50);
  439. parport_daisy_init (port);
  440. }
  441. #endif
  442. /* Let drivers know that a new port has arrived. */
  443. attach_driver_chain (port);
  444. }
  445. /**
  446.  * parport_unregister_port - deregister a parallel port
  447.  * @port: parallel port to deregister
  448.  *
  449.  * When a parallel port driver is forcibly unloaded, or a
  450.  * parallel port becomes inaccessible, the port driver must call
  451.  * this function in order to deal with device drivers that still
  452.  * want to use it.
  453.  *
  454.  * The parport structure associated with the port has its
  455.  * operations structure replaced with one containing 'null'
  456.  * operations that return errors or just don't do anything.
  457.  *
  458.  * Any drivers that have registered themselves using
  459.  * parport_register_driver() are notified that the port is no
  460.  * longer accessible by having their detach() routines called
  461.  * with @port as the parameter.
  462.  **/
  463. void parport_unregister_port(struct parport *port)
  464. {
  465. struct parport *p;
  466. port->ops = &dead_ops;
  467. /* Spread the word. */
  468. detach_driver_chain (port);
  469. #ifdef CONFIG_PARPORT_1284
  470. /* Forget the IEEE1284.3 topology of the port. */
  471. parport_daisy_fini (port);
  472. #endif
  473. spin_lock(&parportlist_lock);
  474. /* We are protected from other people changing the list, but
  475.  * they can still see it (using parport_enumerate).  So be
  476.  * careful about the order of writes.. */
  477. if (portlist == port) {
  478. if ((portlist = port->next) == NULL)
  479. portlist_tail = NULL;
  480. } else {
  481. for (p = portlist; (p != NULL) && (p->next != port); 
  482.      p=p->next);
  483. if (p) {
  484. if ((p->next = port->next) == NULL)
  485. portlist_tail = p;
  486. }
  487. else printk (KERN_WARNING
  488.      "%s not found in port list!n", port->name);
  489. }
  490. spin_unlock(&parportlist_lock);
  491. /* Yes, parport_enumerate _is_ unsafe.  Don't use it. */
  492. parport_put_port (port);
  493. }
  494. /**
  495.  * parport_register_device - register a device on a parallel port
  496.  * @port: port to which the device is attached
  497.  * @name: a name to refer to the device
  498.  * @pf: preemption callback
  499.  * @kf: kick callback (wake-up)
  500.  * @irq_func: interrupt handler
  501.  * @flags: registration flags
  502.  * @handle: data for callback functions
  503.  *
  504.  * This function, called by parallel port device drivers,
  505.  * declares that a device is connected to a port, and tells the
  506.  * system all it needs to know.
  507.  *
  508.  * The @name is allocated by the caller and must not be
  509.  * deallocated until the caller calls @parport_unregister_device
  510.  * for that device.
  511.  *
  512.  * The preemption callback function, @pf, is called when this
  513.  * device driver has claimed access to the port but another
  514.  * device driver wants to use it.  It is given @handle as its
  515.  * parameter, and should return zero if it is willing for the
  516.  * system to release the port to another driver on its behalf.
  517.  * If it wants to keep control of the port it should return
  518.  * non-zero, and no action will be taken.  It is good manners for
  519.  * the driver to try to release the port at the earliest
  520.  * opportunity after its preemption callback rejects a preemption
  521.  * attempt.  Note that if a preemption callback is happy for
  522.  * preemption to go ahead, there is no need to release the port;
  523.  * it is done automatically.  This function may not block, as it
  524.  * may be called from interrupt context.  If the device driver
  525.  * does not support preemption, @pf can be %NULL.
  526.  *
  527.  * The wake-up ("kick") callback function, @kf, is called when
  528.  * the port is available to be claimed for exclusive access; that
  529.  * is, parport_claim() is guaranteed to succeed when called from
  530.  * inside the wake-up callback function.  If the driver wants to
  531.  * claim the port it should do so; otherwise, it need not take
  532.  * any action.  This function may not block, as it may be called
  533.  * from interrupt context.  If the device driver does not want to
  534.  * be explicitly invited to claim the port in this way, @kf can
  535.  * be %NULL.
  536.  *
  537.  * The interrupt handler, @irq_func, is called when an interrupt
  538.  * arrives from the parallel port.  Note that if a device driver
  539.  * wants to use interrupts it should use parport_enable_irq(),
  540.  * and can also check the irq member of the parport structure
  541.  * representing the port.
  542.  *
  543.  * The parallel port (lowlevel) driver is the one that has called
  544.  * request_irq() and whose interrupt handler is called first.
  545.  * This handler does whatever needs to be done to the hardware to
  546.  * acknowledge the interrupt (for PC-style ports there is nothing
  547.  * special to be done).  It then tells the IEEE 1284 code about
  548.  * the interrupt, which may involve reacting to an IEEE 1284
  549.  * event depending on the current IEEE 1284 phase.  After this,
  550.  * it calls @irq_func.  Needless to say, @irq_func will be called
  551.  * from interrupt context, and may not block.
  552.  *
  553.  * The %PARPORT_DEV_EXCL flag is for preventing port sharing, and
  554.  * so should only be used when sharing the port with other device
  555.  * drivers is impossible and would lead to incorrect behaviour.
  556.  * Use it sparingly!  Normally, @flags will be zero.
  557.  *
  558.  * This function returns a pointer to a structure that represents
  559.  * the device on the port, or %NULL if there is not enough memory
  560.  * to allocate space for that structure.
  561.  **/
  562. struct pardevice *
  563. parport_register_device(struct parport *port, const char *name,
  564. int (*pf)(void *), void (*kf)(void *),
  565. void (*irq_func)(int, void *, struct pt_regs *), 
  566. int flags, void *handle)
  567. {
  568. struct pardevice *tmp;
  569. if (port->physport->flags & PARPORT_FLAG_EXCL) {
  570. /* An exclusive device is registered. */
  571. printk (KERN_DEBUG "%s: no more devices allowedn",
  572. port->name);
  573. return NULL;
  574. }
  575. if (flags & PARPORT_DEV_LURK) {
  576. if (!pf || !kf) {
  577. printk(KERN_INFO "%s: refused to register lurking device (%s) without callbacksn", port->name, name);
  578. return NULL;
  579. }
  580. }
  581. /* We up our own module reference count, and that of the port
  582.            on which a device is to be registered, to ensure that
  583.            neither of us gets unloaded while we sleep in (e.g.)
  584.            kmalloc.  To be absolutely safe, we have to require that
  585.            our caller doesn't sleep in between parport_enumerate and
  586.            parport_register_device.. */
  587. inc_parport_count();
  588. port->ops->inc_use_count();
  589. parport_get_port (port);
  590. tmp = kmalloc(sizeof(struct pardevice), GFP_KERNEL);
  591. if (tmp == NULL) {
  592. printk(KERN_WARNING "%s: memory squeeze, couldn't register %s.n", port->name, name);
  593. goto out;
  594. }
  595. tmp->state = kmalloc(sizeof(struct parport_state), GFP_KERNEL);
  596. if (tmp->state == NULL) {
  597. printk(KERN_WARNING "%s: memory squeeze, couldn't register %s.n", port->name, name);
  598. goto out_free_pardevice;
  599. }
  600. tmp->name = name;
  601. tmp->port = port;
  602. tmp->daisy = -1;
  603. tmp->preempt = pf;
  604. tmp->wakeup = kf;
  605. tmp->private = handle;
  606. tmp->flags = flags;
  607. tmp->irq_func = irq_func;
  608. tmp->waiting = 0;
  609. tmp->timeout = 5 * HZ;
  610. /* Chain this onto the list */
  611. tmp->prev = NULL;
  612. /*
  613.  * This function must not run from an irq handler so we don' t need
  614.  * to clear irq on the local CPU. -arca
  615.  */
  616. spin_lock(&port->physport->pardevice_lock);
  617. if (flags & PARPORT_DEV_EXCL) {
  618. if (port->physport->devices) {
  619. spin_unlock (&port->physport->pardevice_lock);
  620. printk (KERN_DEBUG
  621. "%s: cannot grant exclusive access for "
  622. "device %sn", port->name, name);
  623. goto out_free_all;
  624. }
  625. port->flags |= PARPORT_FLAG_EXCL;
  626. }
  627. tmp->next = port->physport->devices;
  628. wmb(); /* Make sure that tmp->next is written before it's
  629.                   added to the list; see comments marked 'no locking
  630.                   required' */
  631. if (port->physport->devices)
  632. port->physport->devices->prev = tmp;
  633. port->physport->devices = tmp;
  634. spin_unlock(&port->physport->pardevice_lock);
  635. init_waitqueue_head(&tmp->wait_q);
  636. tmp->timeslice = parport_default_timeslice;
  637. tmp->waitnext = tmp->waitprev = NULL;
  638. /*
  639.  * This has to be run as last thing since init_state may need other
  640.  * pardevice fields. -arca
  641.  */
  642. port->ops->init_state(tmp, tmp->state);
  643. parport_device_proc_register(tmp);
  644. return tmp;
  645.  out_free_all:
  646. kfree (tmp->state);
  647.  out_free_pardevice:
  648. kfree (tmp);
  649.  out:
  650. dec_parport_count();
  651. port->ops->dec_use_count();
  652. parport_put_port (port);
  653. return NULL;
  654. }
  655. /**
  656.  * parport_unregister_device - deregister a device on a parallel port
  657.  * @dev: pointer to structure representing device
  658.  *
  659.  * This undoes the effect of parport_register_device().
  660.  **/
  661. void parport_unregister_device(struct pardevice *dev)
  662. {
  663. struct parport *port;
  664. #ifdef PARPORT_PARANOID
  665. if (dev == NULL) {
  666. printk(KERN_ERR "parport_unregister_device: passed NULLn");
  667. return;
  668. }
  669. #endif
  670. parport_device_proc_unregister(dev);
  671. port = dev->port->physport;
  672. if (port->cad == dev) {
  673. printk(KERN_DEBUG "%s: %s forgot to release portn",
  674.        port->name, dev->name);
  675. parport_release (dev);
  676. }
  677. spin_lock(&port->pardevice_lock);
  678. if (dev->next)
  679. dev->next->prev = dev->prev;
  680. if (dev->prev)
  681. dev->prev->next = dev->next;
  682. else
  683. port->devices = dev->next;
  684. if (dev->flags & PARPORT_DEV_EXCL)
  685. port->flags &= ~PARPORT_FLAG_EXCL;
  686. spin_unlock(&port->pardevice_lock);
  687. /* Make sure we haven't left any pointers around in the wait
  688.  * list. */
  689. spin_lock (&port->waitlist_lock);
  690. if (dev->waitprev || dev->waitnext || port->waithead == dev) {
  691. if (dev->waitprev)
  692. dev->waitprev->waitnext = dev->waitnext;
  693. else
  694. port->waithead = dev->waitnext;
  695. if (dev->waitnext)
  696. dev->waitnext->waitprev = dev->waitprev;
  697. else
  698. port->waittail = dev->waitprev;
  699. }
  700. spin_unlock (&port->waitlist_lock);
  701. kfree(dev->state);
  702. kfree(dev);
  703. dec_parport_count();
  704. port->ops->dec_use_count();
  705. parport_put_port (port);
  706. /* Yes, that's right, someone _could_ still have a pointer to
  707.  * port, if they used parport_enumerate.  That's why they
  708.  * shouldn't use it (and use parport_register_driver instead)..
  709.  */
  710. }
  711. /**
  712.  * parport_find_number - find a parallel port by number
  713.  * @number: parallel port number
  714.  *
  715.  * This returns the parallel port with the specified number, or
  716.  * %NULL if there is none.
  717.  *
  718.  * There is an implicit parport_get_port() done already; to throw
  719.  * away the reference to the port that parport_find_number()
  720.  * gives you, use parport_put_port().
  721.  */
  722. struct parport *parport_find_number (int number)
  723. {
  724. struct parport *port, *result = NULL;
  725. if (!portlist)
  726. get_lowlevel_driver ();
  727. spin_lock (&parportlist_lock);
  728. for (port = portlist; port; port = port->next)
  729. if (port->number == number) {
  730. result = parport_get_port (port);
  731. break;
  732. }
  733. spin_unlock (&parportlist_lock);
  734. return result;
  735. }
  736. /**
  737.  * parport_find_base - find a parallel port by base address
  738.  * @base: base I/O address
  739.  *
  740.  * This returns the parallel port with the specified base
  741.  * address, or %NULL if there is none.
  742.  *
  743.  * There is an implicit parport_get_port() done already; to throw
  744.  * away the reference to the port that parport_find_base()
  745.  * gives you, use parport_put_port().
  746.  */
  747. struct parport *parport_find_base (unsigned long base)
  748. {
  749. struct parport *port, *result = NULL;
  750. if (!portlist)
  751. get_lowlevel_driver ();
  752. spin_lock (&parportlist_lock);
  753. for (port = portlist; port; port = port->next)
  754. if (port->base == base) {
  755. result = parport_get_port (port);
  756. break;
  757. }
  758. spin_unlock (&parportlist_lock);
  759. return result;
  760. }
  761. /**
  762.  * parport_claim - claim access to a parallel port device
  763.  * @dev: pointer to structure representing a device on the port
  764.  *
  765.  * This function will not block and so can be used from interrupt
  766.  * context.  If parport_claim() succeeds in claiming access to
  767.  * the port it returns zero and the port is available to use.  It
  768.  * may fail (returning non-zero) if the port is in use by another
  769.  * driver and that driver is not willing to relinquish control of
  770.  * the port.
  771.  **/
  772. int parport_claim(struct pardevice *dev)
  773. {
  774. struct pardevice *oldcad;
  775. struct parport *port = dev->port->physport;
  776. unsigned long flags;
  777. if (port->cad == dev) {
  778. printk(KERN_INFO "%s: %s already ownern",
  779.        dev->port->name,dev->name);
  780. return 0;
  781. }
  782. /* Preempt any current device */
  783. write_lock_irqsave (&port->cad_lock, flags);
  784. if ((oldcad = port->cad) != NULL) {
  785. if (oldcad->preempt) {
  786. if (oldcad->preempt(oldcad->private))
  787. goto blocked;
  788. port->ops->save_state(port, dev->state);
  789. } else
  790. goto blocked;
  791. if (port->cad != oldcad) {
  792. /* I think we'll actually deadlock rather than
  793.                            get here, but just in case.. */
  794. printk(KERN_WARNING
  795.        "%s: %s released port when preempted!n",
  796.        port->name, oldcad->name);
  797. if (port->cad)
  798. goto blocked;
  799. }
  800. }
  801. /* Can't fail from now on, so mark ourselves as no longer waiting.  */
  802. if (dev->waiting & 1) {
  803. dev->waiting = 0;
  804. /* Take ourselves out of the wait list again.  */
  805. spin_lock_irq (&port->waitlist_lock);
  806. if (dev->waitprev)
  807. dev->waitprev->waitnext = dev->waitnext;
  808. else
  809. port->waithead = dev->waitnext;
  810. if (dev->waitnext)
  811. dev->waitnext->waitprev = dev->waitprev;
  812. else
  813. port->waittail = dev->waitprev;
  814. spin_unlock_irq (&port->waitlist_lock);
  815. dev->waitprev = dev->waitnext = NULL;
  816. }
  817. /* Now we do the change of devices */
  818. port->cad = dev;
  819. #ifdef CONFIG_PARPORT_1284
  820. /* If it's a mux port, select it. */
  821. if (dev->port->muxport >= 0) {
  822. /* FIXME */
  823. port->muxsel = dev->port->muxport;
  824. }
  825. /* If it's a daisy chain device, select it. */
  826. if (dev->daisy >= 0) {
  827. /* This could be lazier. */
  828. if (!parport_daisy_select (port, dev->daisy,
  829.    IEEE1284_MODE_COMPAT))
  830. port->daisy = dev->daisy;
  831. }
  832. #endif /* IEEE1284.3 support */
  833. /* Restore control registers */
  834. port->ops->restore_state(port, dev->state);
  835. write_unlock_irqrestore(&port->cad_lock, flags);
  836. dev->time = jiffies;
  837. return 0;
  838. blocked:
  839. /* If this is the first time we tried to claim the port, register an
  840.    interest.  This is only allowed for devices sleeping in
  841.    parport_claim_or_block(), or those with a wakeup function.  */
  842. /* The cad_lock is still held for writing here */
  843. if (dev->waiting & 2 || dev->wakeup) {
  844. spin_lock (&port->waitlist_lock);
  845. if (test_and_set_bit(0, &dev->waiting) == 0) {
  846. /* First add ourselves to the end of the wait list. */
  847. dev->waitnext = NULL;
  848. dev->waitprev = port->waittail;
  849. if (port->waittail) {
  850. port->waittail->waitnext = dev;
  851. port->waittail = dev;
  852. } else
  853. port->waithead = port->waittail = dev;
  854. }
  855. spin_unlock (&port->waitlist_lock);
  856. }
  857. write_unlock_irqrestore (&port->cad_lock, flags);
  858. return -EAGAIN;
  859. }
  860. /**
  861.  * parport_claim_or_block - claim access to a parallel port device
  862.  * @dev: pointer to structure representing a device on the port
  863.  *
  864.  * This behaves like parport_claim(), but will block if necessary
  865.  * to wait for the port to be free.  A return value of 1
  866.  * indicates that it slept; 0 means that it succeeded without
  867.  * needing to sleep.  A negative error code indicates failure.
  868.  **/
  869. int parport_claim_or_block(struct pardevice *dev)
  870. {
  871. int r;
  872. /* Signal to parport_claim() that we can wait even without a
  873.    wakeup function.  */
  874. dev->waiting = 2;
  875. /* Try to claim the port.  If this fails, we need to sleep.  */
  876. r = parport_claim(dev);
  877. if (r == -EAGAIN) {
  878. unsigned long flags;
  879. #ifdef PARPORT_DEBUG_SHARING
  880. printk(KERN_DEBUG "%s: parport_claim() returned -EAGAINn", dev->name);
  881. #endif
  882. save_flags (flags);
  883. cli();
  884. /* If dev->waiting is clear now, an interrupt
  885.    gave us the port and we would deadlock if we slept.  */
  886. if (dev->waiting) {
  887. interruptible_sleep_on (&dev->wait_q);
  888. if (signal_pending (current)) {
  889. restore_flags (flags);
  890. return -EINTR;
  891. }
  892. r = 1;
  893. } else {
  894. r = 0;
  895. #ifdef PARPORT_DEBUG_SHARING
  896. printk(KERN_DEBUG "%s: didn't sleep in parport_claim_or_block()n",
  897.        dev->name);
  898. #endif
  899. }
  900. restore_flags(flags);
  901. #ifdef PARPORT_DEBUG_SHARING
  902. if (dev->port->physport->cad != dev)
  903. printk(KERN_DEBUG "%s: exiting parport_claim_or_block "
  904.        "but %s owns port!n", dev->name,
  905.        dev->port->physport->cad ?
  906.        dev->port->physport->cad->name:"nobody");
  907. #endif
  908. }
  909. dev->waiting = 0;
  910. return r;
  911. }
  912. /**
  913.  * parport_release - give up access to a parallel port device
  914.  * @dev: pointer to structure representing parallel port device
  915.  *
  916.  * This function cannot fail, but it should not be called without
  917.  * the port claimed.  Similarly, if the port is already claimed
  918.  * you should not try claiming it again.
  919.  **/
  920. void parport_release(struct pardevice *dev)
  921. {
  922. struct parport *port = dev->port->physport;
  923. struct pardevice *pd;
  924. unsigned long flags;
  925. /* Make sure that dev is the current device */
  926. write_lock_irqsave(&port->cad_lock, flags);
  927. if (port->cad != dev) {
  928. write_unlock_irqrestore (&port->cad_lock, flags);
  929. printk(KERN_WARNING "%s: %s tried to release parport "
  930.        "when not ownern", port->name, dev->name);
  931. return;
  932. }
  933. #ifdef CONFIG_PARPORT_1284
  934. /* If this is on a mux port, deselect it. */
  935. if (dev->port->muxport >= 0) {
  936. /* FIXME */
  937. port->muxsel = -1;
  938. }
  939. /* If this is a daisy device, deselect it. */
  940. if (dev->daisy >= 0) {
  941. parport_daisy_deselect_all (port);
  942. port->daisy = -1;
  943. }
  944. #endif
  945. port->cad = NULL;
  946. write_unlock_irqrestore(&port->cad_lock, flags);
  947. /* Save control registers */
  948. port->ops->save_state(port, dev->state);
  949. /* If anybody is waiting, find out who's been there longest and
  950.    then wake them up. (Note: no locking required) */
  951. /* !!! LOCKING IS NEEDED HERE */
  952. for (pd = port->waithead; pd; pd = pd->waitnext) {
  953. if (pd->waiting & 2) { /* sleeping in claim_or_block */
  954. parport_claim(pd);
  955. if (waitqueue_active(&pd->wait_q))
  956. wake_up_interruptible(&pd->wait_q);
  957. return;
  958. } else if (pd->wakeup) {
  959. pd->wakeup(pd->private);
  960. if (dev->port->cad) /* racy but no matter */
  961. return;
  962. } else {
  963. printk(KERN_ERR "%s: don't know how to wake %sn", port->name, pd->name);
  964. }
  965. }
  966. /* Nobody was waiting, so walk the list to see if anyone is
  967.    interested in being woken up. (Note: no locking required) */
  968. /* !!! LOCKING IS NEEDED HERE */
  969. for (pd = port->devices; (port->cad == NULL) && pd; pd = pd->next) {
  970. if (pd->wakeup && pd != dev)
  971. pd->wakeup(pd->private);
  972. }
  973. }
  974. static int parport_parse_params (int nports, const char *str[], int val[],
  975.  int automatic, int none, int nofifo)
  976. {
  977. unsigned int i;
  978. for (i = 0; i < nports && str[i]; i++) {
  979. if (!strncmp(str[i], "auto", 4))
  980. val[i] = automatic;
  981. else if (!strncmp(str[i], "none", 4))
  982. val[i] = none;
  983. else if (nofifo && !strncmp(str[i], "nofifo", 4))
  984. val[i] = nofifo;
  985. else {
  986. char *ep;
  987. unsigned long r = simple_strtoul(str[i], &ep, 0);
  988. if (ep != str[i])
  989. val[i] = r;
  990. else {
  991. printk(KERN_ERR "parport: bad specifier `%s'n", str[i]);
  992. return -1;
  993. }
  994. }
  995. }
  996. return 0;
  997. }
  998. int parport_parse_irqs(int nports, const char *irqstr[], int irqval[])
  999. {
  1000. return parport_parse_params (nports, irqstr, irqval, PARPORT_IRQ_AUTO,
  1001.      PARPORT_IRQ_NONE, 0);
  1002. }
  1003. int parport_parse_dmas(int nports, const char *dmastr[], int dmaval[])
  1004. {
  1005. return parport_parse_params (nports, dmastr, dmaval, PARPORT_DMA_AUTO,
  1006.      PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO);
  1007. }
  1008. MODULE_LICENSE("GPL");