blob: 58012de90c38291c69f647b0c8c130bcf6f401e2 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Dummy soundcard for virtual rawmidi devices
4 *
5 * Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8/*
9 * VIRTUAL RAW MIDI DEVICE CARDS
10 *
11 * This dummy card contains up to 4 virtual rawmidi devices.
12 * They are not real rawmidi devices but just associated with sequencer
13 * clients, so that any input/output sources can be connected as a raw
14 * MIDI device arbitrary.
15 * Also, multiple access is allowed to a single rawmidi device.
16 *
17 * Typical usage is like following:
18 * - Load snd-virmidi module.
19 * # modprobe snd-virmidi index=2
20 * Then, sequencer clients 72:0 to 75:0 will be created, which are
21 * mapped from /dev/snd/midiC1D0 to /dev/snd/midiC1D3, respectively.
22 *
23 * - Connect input/output via aconnect.
24 * % aconnect 64:0 72:0 # keyboard input redirection 64:0 -> 72:0
25 * % aconnect 72:0 65:0 # output device redirection 72:0 -> 65:0
26 *
27 * - Run application using a midi device (eg. /dev/snd/midiC1D0)
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/init.h>
31#include <linux/wait.h>
Takashi Iwai3564fbb2005-11-17 16:03:26 +010032#include <linux/err.h>
33#include <linux/platform_device.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040034#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <sound/core.h>
36#include <sound/seq_kernel.h>
37#include <sound/seq_virmidi.h>
38#include <sound/initval.h>
39
40/* hack: OSS defines midi_devs, so undefine it (versioned symbols) */
41#undef midi_devs
42
43MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
44MODULE_DESCRIPTION("Dummy soundcard for virtual rawmidi devices");
45MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Clemens Ladisch204bdb12005-11-20 14:08:28 +010047#define MAX_MIDI_DEVICES 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
50static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103051static bool enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4};
53
54module_param_array(index, int, NULL, 0444);
55MODULE_PARM_DESC(index, "Index value for virmidi soundcard.");
56module_param_array(id, charp, NULL, 0444);
57MODULE_PARM_DESC(id, "ID string for virmidi soundcard.");
58module_param_array(enable, bool, NULL, 0444);
59MODULE_PARM_DESC(enable, "Enable this soundcard.");
60module_param_array(midi_devs, int, NULL, 0444);
Clemens Ladisch204bdb12005-11-20 14:08:28 +010061MODULE_PARM_DESC(midi_devs, "MIDI devices # (1-4)");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +010063struct snd_card_virmidi {
64 struct snd_card *card;
65 struct snd_rawmidi *midi[MAX_MIDI_DEVICES];
66};
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Clemens Ladischf7a92752005-12-07 09:13:42 +010068static struct platform_device *devices[SNDRV_CARDS];
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Bill Pembertonfbbb01a2012-12-06 12:35:27 -050071static int snd_virmidi_probe(struct platform_device *devptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +010073 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct snd_card_virmidi *vmidi;
75 int idx, err;
Takashi Iwai3564fbb2005-11-17 16:03:26 +010076 int dev = devptr->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Takashi Iwaied539fc2021-07-15 09:59:35 +020078 err = snd_devm_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE,
79 sizeof(struct snd_card_virmidi), &card);
Takashi Iwaibd7dd772008-12-28 16:45:02 +010080 if (err < 0)
81 return err;
Joe Perches9fe856e2010-09-04 18:52:54 -070082 vmidi = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 vmidi->card = card;
84
85 if (midi_devs[dev] > MAX_MIDI_DEVICES) {
Takashi Iwai45203832009-02-05 15:51:50 +010086 snd_printk(KERN_WARNING
Kyle Chamberlin316638a2014-11-28 13:59:56 -050087 "too much midi devices for virmidi %d: force to use %d\n",
88 dev, MAX_MIDI_DEVICES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 midi_devs[dev] = MAX_MIDI_DEVICES;
90 }
91 for (idx = 0; idx < midi_devs[dev]; idx++) {
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +010092 struct snd_rawmidi *rmidi;
Kyle Chamberlin316638a2014-11-28 13:59:56 -050093
94 err = snd_virmidi_new(card, idx, &rmidi);
95 if (err < 0)
Takashi Iwaied539fc2021-07-15 09:59:35 +020096 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 vmidi->midi[idx] = rmidi;
98 strcpy(rmidi->name, "Virtual Raw MIDI");
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
Kyle Chamberlin316638a2014-11-28 13:59:56 -0500100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 strcpy(card->driver, "VirMIDI");
102 strcpy(card->shortname, "VirMIDI");
103 sprintf(card->longname, "Virtual MIDI Card %i", dev + 1);
Takashi Iwai16dab542005-09-05 17:17:58 +0200104
Kyle Chamberlin316638a2014-11-28 13:59:56 -0500105 err = snd_card_register(card);
Takashi Iwaied539fc2021-07-15 09:59:35 +0200106 if (err)
107 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Takashi Iwaied539fc2021-07-15 09:59:35 +0200109 platform_set_drvdata(devptr, card);
Takashi Iwai3564fbb2005-11-17 16:03:26 +0100110 return 0;
111}
112
113#define SND_VIRMIDI_DRIVER "snd_virmidi"
114
115static struct platform_driver snd_virmidi_driver = {
116 .probe = snd_virmidi_probe,
Takashi Iwai3564fbb2005-11-17 16:03:26 +0100117 .driver = {
Takashi Iwai8bf01d82012-07-02 10:50:24 +0200118 .name = SND_VIRMIDI_DRIVER,
Takashi Iwai3564fbb2005-11-17 16:03:26 +0100119 },
120};
121
Randy Dunlapbdec0c72007-06-25 12:07:38 +0200122static void snd_virmidi_unregister_all(void)
Clemens Ladischf7a92752005-12-07 09:13:42 +0100123{
124 int i;
125
126 for (i = 0; i < ARRAY_SIZE(devices); ++i)
127 platform_device_unregister(devices[i]);
128 platform_driver_unregister(&snd_virmidi_driver);
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static int __init alsa_card_virmidi_init(void)
132{
Takashi Iwai3564fbb2005-11-17 16:03:26 +0100133 int i, cards, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Kyle Chamberlin316638a2014-11-28 13:59:56 -0500135 err = platform_driver_register(&snd_virmidi_driver);
136 if (err < 0)
Takashi Iwai3564fbb2005-11-17 16:03:26 +0100137 return err;
138
139 cards = 0;
Takashi Iwai8278ca82006-02-20 11:57:34 +0100140 for (i = 0; i < SNDRV_CARDS; i++) {
Takashi Iwai3564fbb2005-11-17 16:03:26 +0100141 struct platform_device *device;
Kyle Chamberlin316638a2014-11-28 13:59:56 -0500142
143 if (!enable[i])
Takashi Iwai8278ca82006-02-20 11:57:34 +0100144 continue;
Takashi Iwai3564fbb2005-11-17 16:03:26 +0100145 device = platform_device_register_simple(SND_VIRMIDI_DRIVER,
146 i, NULL, 0);
Rene Hermana182ee92006-04-13 12:57:11 +0200147 if (IS_ERR(device))
148 continue;
Rene Herman71524472006-04-13 12:58:06 +0200149 if (!platform_get_drvdata(device)) {
150 platform_device_unregister(device);
151 continue;
152 }
Clemens Ladischf7a92752005-12-07 09:13:42 +0100153 devices[i] = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 cards++;
155 }
156 if (!cards) {
157#ifdef MODULE
158 printk(KERN_ERR "Card-VirMIDI soundcard not found or device busy\n");
159#endif
Rene Hermana182ee92006-04-13 12:57:11 +0200160 snd_virmidi_unregister_all();
161 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163 return 0;
164}
165
166static void __exit alsa_card_virmidi_exit(void)
167{
Clemens Ladischf7a92752005-12-07 09:13:42 +0100168 snd_virmidi_unregister_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171module_init(alsa_card_virmidi_init)
172module_exit(alsa_card_virmidi_exit)