blob: d7e32d9554fc555bb01ca8ae58921a4290e7fd3a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*********************************************************************
2 *
3 * sir_dongle.c: manager for serial dongle protocol drivers
4 *
5 * Copyright (c) 2002 Martin Diehl
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 ********************************************************************/
13
14#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/smp_lock.h>
18#include <linux/kmod.h>
Arjan van de Vend4ccd082006-03-20 22:32:53 -080019#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <net/irda/irda.h>
22
23#include "sir-dev.h"
24
25/**************************************************************************
26 *
27 * dongle registration and attachment
28 *
29 */
30
31static LIST_HEAD(dongle_list); /* list of registered dongle drivers */
Arjan van de Vend4ccd082006-03-20 22:32:53 -080032static DEFINE_MUTEX(dongle_list_lock); /* protects the list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34int irda_register_dongle(struct dongle_driver *new)
35{
36 struct list_head *entry;
37 struct dongle_driver *drv;
38
39 IRDA_DEBUG(0, "%s : registering dongle \"%s\" (%d).\n",
40 __FUNCTION__, new->driver_name, new->type);
41
Arjan van de Vend4ccd082006-03-20 22:32:53 -080042 mutex_lock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 list_for_each(entry, &dongle_list) {
44 drv = list_entry(entry, struct dongle_driver, dongle_list);
45 if (new->type == drv->type) {
Arjan van de Vend4ccd082006-03-20 22:32:53 -080046 mutex_unlock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return -EEXIST;
48 }
49 }
50 list_add(&new->dongle_list, &dongle_list);
Arjan van de Vend4ccd082006-03-20 22:32:53 -080051 mutex_unlock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return 0;
53}
Adrian Bunk214ad782006-01-10 13:10:02 -080054EXPORT_SYMBOL(irda_register_dongle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56int irda_unregister_dongle(struct dongle_driver *drv)
57{
Arjan van de Vend4ccd082006-03-20 22:32:53 -080058 mutex_lock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 list_del(&drv->dongle_list);
Arjan van de Vend4ccd082006-03-20 22:32:53 -080060 mutex_unlock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return 0;
62}
Adrian Bunk214ad782006-01-10 13:10:02 -080063EXPORT_SYMBOL(irda_unregister_dongle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65int sirdev_get_dongle(struct sir_dev *dev, IRDA_DONGLE type)
66{
67 struct list_head *entry;
68 const struct dongle_driver *drv = NULL;
69 int err = -EINVAL;
70
71#ifdef CONFIG_KMOD
72 request_module("irda-dongle-%d", type);
73#endif
74
75 if (dev->dongle_drv != NULL)
76 return -EBUSY;
77
78 /* serialize access to the list of registered dongles */
Arjan van de Vend4ccd082006-03-20 22:32:53 -080079 mutex_lock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 list_for_each(entry, &dongle_list) {
82 drv = list_entry(entry, struct dongle_driver, dongle_list);
83 if (drv->type == type)
84 break;
85 else
86 drv = NULL;
87 }
88
89 if (!drv) {
90 err = -ENODEV;
91 goto out_unlock; /* no such dongle */
92 }
93
94 /* handling of SMP races with dongle module removal - three cases:
95 * 1) dongle driver was already unregistered - then we haven't found the
96 * requested dongle above and are already out here
97 * 2) the module is already marked deleted but the driver is still
98 * registered - then the try_module_get() below will fail
99 * 3) the try_module_get() below succeeds before the module is marked
100 * deleted - then sys_delete_module() fails and prevents the removal
101 * because the module is in use.
102 */
103
104 if (!try_module_get(drv->owner)) {
105 err = -ESTALE;
106 goto out_unlock; /* rmmod already pending */
107 }
108 dev->dongle_drv = drv;
109
110 if (!drv->open || (err=drv->open(dev))!=0)
111 goto out_reject; /* failed to open driver */
112
Arjan van de Vend4ccd082006-03-20 22:32:53 -0800113 mutex_unlock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115
116out_reject:
117 dev->dongle_drv = NULL;
118 module_put(drv->owner);
119out_unlock:
Arjan van de Vend4ccd082006-03-20 22:32:53 -0800120 mutex_unlock(&dongle_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return err;
122}
123
124int sirdev_put_dongle(struct sir_dev *dev)
125{
126 const struct dongle_driver *drv = dev->dongle_drv;
127
128 if (drv) {
129 if (drv->close)
130 drv->close(dev); /* close this dongle instance */
131
132 dev->dongle_drv = NULL; /* unlink the dongle driver */
133 module_put(drv->owner);/* decrement driver's module refcount */
134 }
135
136 return 0;
137}