2 * ALSA sequencer device management
3 * Copyright (c) 1999 by Takashi Iwai <tiwai@suse.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *----------------------------------------------------------------
22 * This device handler separates the card driver module from sequencer
23 * stuff (sequencer core, synth drivers, etc), so that user can avoid
24 * to spend unnecessary resources e.g. if he needs only listening to
27 * The card (or lowlevel) driver creates a sequencer device entry
28 * via snd_seq_device_new(). This is an entry pointer to communicate
29 * with the sequencer device "driver", which is involved with the
30 * actual part to communicate with the sequencer core.
31 * Each sequencer device entry has an id string and the corresponding
32 * driver with the same id is loaded when required. For example,
33 * lowlevel codes to access emu8000 chip on sbawe card are included in
34 * emu8000-synth module. To activate this module, the hardware
35 * resources like i/o port are passed via snd_seq_device argument.
39 #include <linux/device.h>
40 #include <linux/init.h>
41 #include <linux/module.h>
42 #include <sound/core.h>
43 #include <sound/info.h>
44 #include <sound/seq_device.h>
45 #include <sound/seq_kernel.h>
46 #include <sound/initval.h>
47 #include <linux/kmod.h>
48 #include <linux/slab.h>
49 #include <linux/mutex.h>
51 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
52 MODULE_DESCRIPTION("ALSA sequencer device management");
53 MODULE_LICENSE("GPL");
58 static int snd_seq_bus_match(struct device
*dev
, struct device_driver
*drv
)
60 struct snd_seq_device
*sdev
= to_seq_dev(dev
);
61 struct snd_seq_driver
*sdrv
= to_seq_drv(drv
);
63 return strcmp(sdrv
->id
, sdev
->id
) == 0 &&
64 sdrv
->argsize
== sdev
->argsize
;
67 static struct bus_type snd_seq_bus_type
= {
69 .match
= snd_seq_bus_match
,
73 * proc interface -- just for compatibility
75 #ifdef CONFIG_SND_PROC_FS
76 static struct snd_info_entry
*info_entry
;
78 static int print_dev_info(struct device
*dev
, void *data
)
80 struct snd_seq_device
*sdev
= to_seq_dev(dev
);
81 struct snd_info_buffer
*buffer
= data
;
83 snd_iprintf(buffer
, "snd-%s,%s,%d\n", sdev
->id
,
84 dev
->driver
? "loaded" : "empty",
89 static void snd_seq_device_info(struct snd_info_entry
*entry
,
90 struct snd_info_buffer
*buffer
)
92 bus_for_each_dev(&snd_seq_bus_type
, NULL
, buffer
, print_dev_info
);
97 * load all registered drivers (called from seq_clientmgr.c)
100 #ifdef CONFIG_MODULES
101 /* flag to block auto-loading */
102 static atomic_t snd_seq_in_init
= ATOMIC_INIT(1); /* blocked as default */
104 static int request_seq_drv(struct device
*dev
, void *data
)
106 struct snd_seq_device
*sdev
= to_seq_dev(dev
);
109 request_module("snd-%s", sdev
->id
);
113 static void autoload_drivers(struct work_struct
*work
)
115 /* avoid reentrance */
116 if (atomic_inc_return(&snd_seq_in_init
) == 1)
117 bus_for_each_dev(&snd_seq_bus_type
, NULL
, NULL
,
119 atomic_dec(&snd_seq_in_init
);
122 static DECLARE_WORK(autoload_work
, autoload_drivers
);
124 static void queue_autoload_drivers(void)
126 schedule_work(&autoload_work
);
129 void snd_seq_autoload_init(void)
131 atomic_dec(&snd_seq_in_init
);
132 #ifdef CONFIG_SND_SEQUENCER_MODULE
133 /* initial autoload only when snd-seq is a module */
134 queue_autoload_drivers();
137 EXPORT_SYMBOL(snd_seq_autoload_init
);
139 void snd_seq_autoload_exit(void)
141 atomic_inc(&snd_seq_in_init
);
143 EXPORT_SYMBOL(snd_seq_autoload_exit
);
145 void snd_seq_device_load_drivers(void)
147 queue_autoload_drivers();
148 flush_work(&autoload_work
);
150 EXPORT_SYMBOL(snd_seq_device_load_drivers
);
152 #define queue_autoload_drivers() /* NOP */
158 static int snd_seq_device_dev_free(struct snd_device
*device
)
160 struct snd_seq_device
*dev
= device
->device_data
;
162 put_device(&dev
->dev
);
166 static int snd_seq_device_dev_register(struct snd_device
*device
)
168 struct snd_seq_device
*dev
= device
->device_data
;
171 err
= device_add(&dev
->dev
);
174 if (!dev
->dev
.driver
)
175 queue_autoload_drivers();
179 static int snd_seq_device_dev_disconnect(struct snd_device
*device
)
181 struct snd_seq_device
*dev
= device
->device_data
;
183 device_del(&dev
->dev
);
187 static void snd_seq_dev_release(struct device
*dev
)
189 struct snd_seq_device
*sdev
= to_seq_dev(dev
);
191 if (sdev
->private_free
)
192 sdev
->private_free(sdev
);
197 * register a sequencer device
199 * device = device number (if any)
201 * result = return pointer (NULL allowed if unnecessary)
203 int snd_seq_device_new(struct snd_card
*card
, int device
, const char *id
,
204 int argsize
, struct snd_seq_device
**result
)
206 struct snd_seq_device
*dev
;
208 static struct snd_device_ops dops
= {
209 .dev_free
= snd_seq_device_dev_free
,
210 .dev_register
= snd_seq_device_dev_register
,
211 .dev_disconnect
= snd_seq_device_dev_disconnect
,
220 dev
= kzalloc(sizeof(*dev
) + argsize
, GFP_KERNEL
);
224 /* set up device info */
226 dev
->device
= device
;
228 dev
->argsize
= argsize
;
230 device_initialize(&dev
->dev
);
231 dev
->dev
.parent
= &card
->card_dev
;
232 dev
->dev
.bus
= &snd_seq_bus_type
;
233 dev
->dev
.release
= snd_seq_dev_release
;
234 dev_set_name(&dev
->dev
, "%s-%d-%d", dev
->id
, card
->number
, device
);
236 /* add this device to the list */
237 err
= snd_device_new(card
, SNDRV_DEV_SEQUENCER
, dev
, &dops
);
239 put_device(&dev
->dev
);
248 EXPORT_SYMBOL(snd_seq_device_new
);
251 * driver registration
253 int __snd_seq_driver_register(struct snd_seq_driver
*drv
, struct module
*mod
)
255 if (WARN_ON(!drv
->driver
.name
|| !drv
->id
))
257 drv
->driver
.bus
= &snd_seq_bus_type
;
258 drv
->driver
.owner
= mod
;
259 return driver_register(&drv
->driver
);
261 EXPORT_SYMBOL_GPL(__snd_seq_driver_register
);
263 void snd_seq_driver_unregister(struct snd_seq_driver
*drv
)
265 driver_unregister(&drv
->driver
);
267 EXPORT_SYMBOL_GPL(snd_seq_driver_unregister
);
273 static int __init
seq_dev_proc_init(void)
275 #ifdef CONFIG_SND_PROC_FS
276 info_entry
= snd_info_create_module_entry(THIS_MODULE
, "drivers",
278 if (info_entry
== NULL
)
280 info_entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
281 info_entry
->c
.text
.read
= snd_seq_device_info
;
282 if (snd_info_register(info_entry
) < 0) {
283 snd_info_free_entry(info_entry
);
290 static int __init
alsa_seq_device_init(void)
294 err
= bus_register(&snd_seq_bus_type
);
297 err
= seq_dev_proc_init();
299 bus_unregister(&snd_seq_bus_type
);
303 static void __exit
alsa_seq_device_exit(void)
305 #ifdef CONFIG_MODULES
306 cancel_work_sync(&autoload_work
);
308 #ifdef CONFIG_SND_PROC_FS
309 snd_info_free_entry(info_entry
);
311 bus_unregister(&snd_seq_bus_type
);
314 subsys_initcall(alsa_seq_device_init
)
315 module_exit(alsa_seq_device_exit
)