blob: e40a2cba5002a817876252074c91de620c6dbce2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA sequencer device management
3 * Copyright (c) 1999 by Takashi Iwai <tiwai@suse.de>
4 *
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.
9 *
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.
14 *
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
18 *
19 *
20 *----------------------------------------------------------------
21 *
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
25 * MP3s.
26 *
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.
36 *
37 */
38
Takashi Iwai7c37ae52015-02-12 10:51:59 +010039#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/init.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040041#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#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>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010049#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
52MODULE_DESCRIPTION("ALSA sequencer device management");
53MODULE_LICENSE("GPL");
54
Takashi Iwai7c37ae52015-02-12 10:51:59 +010055/*
56 * bus definition
57 */
58static int snd_seq_bus_match(struct device *dev, struct device_driver *drv)
59{
60 struct snd_seq_device *sdev = to_seq_dev(dev);
61 struct snd_seq_driver *sdrv = to_seq_drv(drv);
62
63 return strcmp(sdrv->id, sdev->id) == 0 &&
64 sdrv->argsize == sdev->argsize;
65}
66
67static struct bus_type snd_seq_bus_type = {
68 .name = "snd_seq",
69 .match = snd_seq_bus_match,
70};
71
72/*
73 * proc interface -- just for compatibility
74 */
Jie Yangcd6a6502015-05-27 19:45:45 +080075#ifdef CONFIG_SND_PROC_FS
Takashi Iwai6581f4e2006-05-17 17:14:51 +020076static struct snd_info_entry *info_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Takashi Iwai7c37ae52015-02-12 10:51:59 +010078static int print_dev_info(struct device *dev, void *data)
79{
80 struct snd_seq_device *sdev = to_seq_dev(dev);
81 struct snd_info_buffer *buffer = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Takashi Iwai7c37ae52015-02-12 10:51:59 +010083 snd_iprintf(buffer, "snd-%s,%s,%d\n", sdev->id,
84 dev->driver ? "loaded" : "empty",
85 dev->driver ? 1 : 0);
86 return 0;
87}
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010089static void snd_seq_device_info(struct snd_info_entry *entry,
90 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Takashi Iwai7c37ae52015-02-12 10:51:59 +010092 bus_for_each_dev(&snd_seq_bus_type, NULL, buffer, print_dev_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
Takashi Iwai04f141a2005-12-01 10:43:51 +010094#endif
Takashi Iwai7c37ae52015-02-12 10:51:59 +010095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
97 * load all registered drivers (called from seq_clientmgr.c)
98 */
99
Johannes Bergee2da992008-07-09 10:28:41 +0200100#ifdef CONFIG_MODULES
Takashi Iwai54a721a2015-02-12 14:20:24 +0100101/* flag to block auto-loading */
Takashi Iwai68ab6102014-10-15 14:06:25 +0200102static atomic_t snd_seq_in_init = ATOMIC_INIT(1); /* blocked as default */
Takashi Iwai68ab6102014-10-15 14:06:25 +0200103
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100104static int request_seq_drv(struct device *dev, void *data)
105{
106 struct snd_seq_device *sdev = to_seq_dev(dev);
107
108 if (!dev->driver)
109 request_module("snd-%s", sdev->id);
110 return 0;
111}
112
113static void autoload_drivers(struct work_struct *work)
Takashi Iwai68ab6102014-10-15 14:06:25 +0200114{
115 /* avoid reentrance */
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100116 if (atomic_inc_return(&snd_seq_in_init) == 1)
117 bus_for_each_dev(&snd_seq_bus_type, NULL, NULL,
118 request_seq_drv);
Takashi Iwai68ab6102014-10-15 14:06:25 +0200119 atomic_dec(&snd_seq_in_init);
120}
121
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100122static DECLARE_WORK(autoload_work, autoload_drivers);
Takashi Iwai68ab6102014-10-15 14:06:25 +0200123
124static void queue_autoload_drivers(void)
125{
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100126 schedule_work(&autoload_work);
Takashi Iwai68ab6102014-10-15 14:06:25 +0200127}
128
129void snd_seq_autoload_init(void)
130{
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();
135#endif
136}
Takashi Iwaib6a42672015-02-11 22:37:16 +0100137EXPORT_SYMBOL(snd_seq_autoload_init);
Takashi Iwaib6a42672015-02-11 22:37:16 +0100138
Takashi Iwai54a721a2015-02-12 14:20:24 +0100139void snd_seq_autoload_exit(void)
140{
141 atomic_inc(&snd_seq_in_init);
142}
143EXPORT_SYMBOL(snd_seq_autoload_exit);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145void snd_seq_device_load_drivers(void)
146{
Takashi Iwai68ab6102014-10-15 14:06:25 +0200147 queue_autoload_drivers();
148 flush_work(&autoload_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
Takashi Iwaib6a42672015-02-11 22:37:16 +0100150EXPORT_SYMBOL(snd_seq_device_load_drivers);
Takashi Iwai1862eca2017-09-12 12:41:20 +0200151#define cancel_autoload_drivers() cancel_work_sync(&autoload_work)
Takashi Iwai72496ed2015-02-11 22:39:51 +0100152#else
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100153#define queue_autoload_drivers() /* NOP */
Takashi Iwai1862eca2017-09-12 12:41:20 +0200154#define cancel_autoload_drivers() /* NOP */
Takashi Iwai72496ed2015-02-11 22:39:51 +0100155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157/*
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100158 * device management
159 */
160static int snd_seq_device_dev_free(struct snd_device *device)
161{
162 struct snd_seq_device *dev = device->device_data;
163
Takashi Iwai1862eca2017-09-12 12:41:20 +0200164 cancel_autoload_drivers();
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100165 put_device(&dev->dev);
166 return 0;
167}
168
169static int snd_seq_device_dev_register(struct snd_device *device)
170{
171 struct snd_seq_device *dev = device->device_data;
172 int err;
173
174 err = device_add(&dev->dev);
175 if (err < 0)
176 return err;
177 if (!dev->dev.driver)
178 queue_autoload_drivers();
179 return 0;
180}
181
182static int snd_seq_device_dev_disconnect(struct snd_device *device)
183{
184 struct snd_seq_device *dev = device->device_data;
185
186 device_del(&dev->dev);
187 return 0;
188}
189
190static void snd_seq_dev_release(struct device *dev)
191{
192 struct snd_seq_device *sdev = to_seq_dev(dev);
193
194 if (sdev->private_free)
195 sdev->private_free(sdev);
196 kfree(sdev);
197}
198
199/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * register a sequencer device
Takashi Iwaif2f93072014-02-04 18:21:03 +0100201 * card = card info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 * device = device number (if any)
203 * id = id of driver
204 * result = return pointer (NULL allowed if unnecessary)
205 */
Takashi Iwaiaf03c242015-02-12 13:40:50 +0100206int snd_seq_device_new(struct snd_card *card, int device, const char *id,
207 int argsize, struct snd_seq_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100209 struct snd_seq_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int err;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100211 static struct snd_device_ops dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .dev_free = snd_seq_device_dev_free,
213 .dev_register = snd_seq_device_dev_register,
214 .dev_disconnect = snd_seq_device_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 };
216
217 if (result)
218 *result = NULL;
219
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200220 if (snd_BUG_ON(!id))
221 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100223 dev = kzalloc(sizeof(*dev) + argsize, GFP_KERNEL);
224 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return -ENOMEM;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* set up device info */
228 dev->card = card;
229 dev->device = device;
Takashi Iwaiaf03c242015-02-12 13:40:50 +0100230 dev->id = id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 dev->argsize = argsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100233 device_initialize(&dev->dev);
234 dev->dev.parent = &card->card_dev;
235 dev->dev.bus = &snd_seq_bus_type;
236 dev->dev.release = snd_seq_dev_release;
237 dev_set_name(&dev->dev, "%s-%d-%d", dev->id, card->number, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100239 /* add this device to the list */
240 err = snd_device_new(card, SNDRV_DEV_SEQUENCER, dev, &dops);
241 if (err < 0) {
242 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return err;
244 }
245
246 if (result)
247 *result = dev;
248
249 return 0;
250}
Takashi Iwaib6a42672015-02-11 22:37:16 +0100251EXPORT_SYMBOL(snd_seq_device_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/*
Takashi Iwai05662202015-02-12 13:43:22 +0100254 * driver registration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 */
Takashi Iwai05662202015-02-12 13:43:22 +0100256int __snd_seq_driver_register(struct snd_seq_driver *drv, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Takashi Iwai05662202015-02-12 13:43:22 +0100258 if (WARN_ON(!drv->driver.name || !drv->id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -EINVAL;
Takashi Iwai05662202015-02-12 13:43:22 +0100260 drv->driver.bus = &snd_seq_bus_type;
261 drv->driver.owner = mod;
262 return driver_register(&drv->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
Takashi Iwai05662202015-02-12 13:43:22 +0100264EXPORT_SYMBOL_GPL(__snd_seq_driver_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Takashi Iwai05662202015-02-12 13:43:22 +0100266void snd_seq_driver_unregister(struct snd_seq_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Takashi Iwai05662202015-02-12 13:43:22 +0100268 driver_unregister(&drv->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
Takashi Iwai05662202015-02-12 13:43:22 +0100270EXPORT_SYMBOL_GPL(snd_seq_driver_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272/*
273 * module part
274 */
275
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100276static int __init seq_dev_proc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Takashi Iwaib816db92015-05-29 07:01:28 +0200278#ifdef CONFIG_SND_PROC_FS
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100279 info_entry = snd_info_create_module_entry(THIS_MODULE, "drivers",
280 snd_seq_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (info_entry == NULL)
282 return -ENOMEM;
283 info_entry->content = SNDRV_INFO_CONTENT_TEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 info_entry->c.text.read = snd_seq_device_info;
285 if (snd_info_register(info_entry) < 0) {
286 snd_info_free_entry(info_entry);
287 return -ENOMEM;
288 }
Takashi Iwai04f141a2005-12-01 10:43:51 +0100289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return 0;
291}
292
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100293static int __init alsa_seq_device_init(void)
294{
295 int err;
296
297 err = bus_register(&snd_seq_bus_type);
298 if (err < 0)
299 return err;
300 err = seq_dev_proc_init();
301 if (err < 0)
302 bus_unregister(&snd_seq_bus_type);
303 return err;
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static void __exit alsa_seq_device_exit(void)
307{
Takashi Iwai68ab6102014-10-15 14:06:25 +0200308#ifdef CONFIG_MODULES
309 cancel_work_sync(&autoload_work);
310#endif
Takashi Iwaib816db92015-05-29 07:01:28 +0200311#ifdef CONFIG_SND_PROC_FS
Takashi Iwai746d4a02006-06-23 14:37:59 +0200312 snd_info_free_entry(info_entry);
Takashi Iwai04f141a2005-12-01 10:43:51 +0100313#endif
Takashi Iwai7c37ae52015-02-12 10:51:59 +0100314 bus_unregister(&snd_seq_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Takashi Iwai4945f1f2015-03-11 12:50:15 +0100317subsys_initcall(alsa_seq_device_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318module_exit(alsa_seq_device_exit)