blob: 188fda0effb0b654fab7a05a60d534fcc7b81141 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Midi Sequencer interface routines.
3 *
4 * Copyright (C) 1999 Steve Ratcliffe
5 * Copyright (c) 1999-2000 Takashi Iwai <tiwai@suse.de>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include "emux_voice.h"
23#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040024#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/* Prototypes for static functions */
27static void free_port(void *private);
Takashi Iwai03da3122005-11-17 14:24:47 +010028static void snd_emux_init_port(struct snd_emux_port *p);
29static int snd_emux_use(void *private_data, struct snd_seq_port_subscribe *info);
30static int snd_emux_unuse(void *private_data, struct snd_seq_port_subscribe *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/*
33 * MIDI emulation operators
34 */
Takashi Iwai03da3122005-11-17 14:24:47 +010035static struct snd_midi_op emux_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 snd_emux_note_on,
37 snd_emux_note_off,
38 snd_emux_key_press,
39 snd_emux_terminate_note,
40 snd_emux_control,
41 snd_emux_nrpn,
42 snd_emux_sysex,
43};
44
45
46/*
47 * number of MIDI channels
48 */
49#define MIDI_CHANNELS 16
50
51/*
52 * type flags for MIDI sequencer port
53 */
54#define DEFAULT_MIDI_TYPE (SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC |\
55 SNDRV_SEQ_PORT_TYPE_MIDI_GM |\
56 SNDRV_SEQ_PORT_TYPE_MIDI_GS |\
Clemens Ladisch450047a2006-05-02 16:08:41 +020057 SNDRV_SEQ_PORT_TYPE_MIDI_XG |\
58 SNDRV_SEQ_PORT_TYPE_HARDWARE |\
59 SNDRV_SEQ_PORT_TYPE_SYNTHESIZER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/*
62 * Initialise the EMUX Synth by creating a client and registering
63 * a series of ports.
64 * Each of the ports will contain the 16 midi channels. Applications
65 * can connect to these ports to play midi data.
66 */
67int
Takashi Iwai03da3122005-11-17 14:24:47 +010068snd_emux_init_seq(struct snd_emux *emu, struct snd_card *card, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 int i;
Takashi Iwai03da3122005-11-17 14:24:47 +010071 struct snd_seq_port_callback pinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 char tmpname[64];
73
Clemens Ladisch7b6d9242005-12-12 09:33:37 +010074 emu->client = snd_seq_create_kernel_client(card, index,
75 "%s WaveTable", emu->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (emu->client < 0) {
Takashi Iwai42b01582009-02-05 16:01:46 +010077 snd_printk(KERN_ERR "can't create client\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return -ENODEV;
79 }
80
81 if (emu->num_ports < 0) {
Takashi Iwai42b01582009-02-05 16:01:46 +010082 snd_printk(KERN_WARNING "seqports must be greater than zero\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 emu->num_ports = 1;
84 } else if (emu->num_ports >= SNDRV_EMUX_MAX_PORTS) {
Takashi Iwai42b01582009-02-05 16:01:46 +010085 snd_printk(KERN_WARNING "too many ports."
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 "limited max. ports %d\n", SNDRV_EMUX_MAX_PORTS);
87 emu->num_ports = SNDRV_EMUX_MAX_PORTS;
88 }
89
90 memset(&pinfo, 0, sizeof(pinfo));
91 pinfo.owner = THIS_MODULE;
92 pinfo.use = snd_emux_use;
93 pinfo.unuse = snd_emux_unuse;
94 pinfo.event_input = snd_emux_event_input;
95
96 for (i = 0; i < emu->num_ports; i++) {
Takashi Iwai03da3122005-11-17 14:24:47 +010097 struct snd_emux_port *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 sprintf(tmpname, "%s Port %d", emu->name, i);
100 p = snd_emux_create_port(emu, tmpname, MIDI_CHANNELS,
101 0, &pinfo);
102 if (p == NULL) {
Takashi Iwai42b01582009-02-05 16:01:46 +0100103 snd_printk(KERN_ERR "can't create port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -ENOMEM;
105 }
106
107 p->port_mode = SNDRV_EMUX_PORT_MODE_MIDI;
108 snd_emux_init_port(p);
109 emu->ports[i] = p->chset.port;
110 emu->portptrs[i] = p;
111 }
112
113 return 0;
114}
115
116
117/*
118 * Detach from the ports that were set up for this synthesizer and
119 * destroy the kernel client.
120 */
121void
Takashi Iwai03da3122005-11-17 14:24:47 +0100122snd_emux_detach_seq(struct snd_emux *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 if (emu->voices)
125 snd_emux_terminate_all(emu);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (emu->client >= 0) {
128 snd_seq_delete_kernel_client(emu->client);
129 emu->client = -1;
130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133
134/*
135 * create a sequencer port and channel_set
136 */
137
Takashi Iwai03da3122005-11-17 14:24:47 +0100138struct snd_emux_port *
139snd_emux_create_port(struct snd_emux *emu, char *name,
140 int max_channels, int oss_port,
141 struct snd_seq_port_callback *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Takashi Iwai03da3122005-11-17 14:24:47 +0100143 struct snd_emux_port *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 int i, type, cap;
145
146 /* Allocate structures for this channel */
Takashi Iwai561b2202005-09-09 14:22:34 +0200147 if ((p = kzalloc(sizeof(*p), GFP_KERNEL)) == NULL) {
Takashi Iwai42b01582009-02-05 16:01:46 +0100148 snd_printk(KERN_ERR "no memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return NULL;
150 }
Takashi Iwai03da3122005-11-17 14:24:47 +0100151 p->chset.channels = kcalloc(max_channels, sizeof(struct snd_midi_channel), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (p->chset.channels == NULL) {
Takashi Iwai42b01582009-02-05 16:01:46 +0100153 snd_printk(KERN_ERR "no memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 kfree(p);
155 return NULL;
156 }
157 for (i = 0; i < max_channels; i++)
158 p->chset.channels[i].number = i;
159 p->chset.private_data = p;
160 p->chset.max_channels = max_channels;
161 p->emu = emu;
162 p->chset.client = emu->client;
163#ifdef SNDRV_EMUX_USE_RAW_EFFECT
164 snd_emux_create_effect(p);
165#endif
166 callback->private_free = free_port;
167 callback->private_data = p;
168
169 cap = SNDRV_SEQ_PORT_CAP_WRITE;
170 if (oss_port) {
171 type = SNDRV_SEQ_PORT_TYPE_SPECIFIC;
172 } else {
173 type = DEFAULT_MIDI_TYPE;
174 cap |= SNDRV_SEQ_PORT_CAP_SUBS_WRITE;
175 }
176
177 p->chset.port = snd_seq_event_port_attach(emu->client, callback,
178 cap, type, max_channels,
179 emu->max_voices, name);
180
181 return p;
182}
183
184
185/*
186 * release memory block for port
187 */
188static void
189free_port(void *private_data)
190{
Takashi Iwai03da3122005-11-17 14:24:47 +0100191 struct snd_emux_port *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 p = private_data;
194 if (p) {
195#ifdef SNDRV_EMUX_USE_RAW_EFFECT
196 snd_emux_delete_effect(p);
197#endif
198 kfree(p->chset.channels);
199 kfree(p);
200 }
201}
202
203
204#define DEFAULT_DRUM_FLAGS (1<<9)
205
206/*
207 * initialize the port specific parameters
208 */
209static void
Takashi Iwai03da3122005-11-17 14:24:47 +0100210snd_emux_init_port(struct snd_emux_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 p->drum_flags = DEFAULT_DRUM_FLAGS;
213 p->volume_atten = 0;
214
215 snd_emux_reset_port(p);
216}
217
218
219/*
220 * reset port
221 */
222void
Takashi Iwai03da3122005-11-17 14:24:47 +0100223snd_emux_reset_port(struct snd_emux_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 int i;
226
227 /* stop all sounds */
228 snd_emux_sounds_off_all(port);
229
230 snd_midi_channel_set_clear(&port->chset);
231
232#ifdef SNDRV_EMUX_USE_RAW_EFFECT
233 snd_emux_clear_effect(port);
234#endif
235
236 /* set port specific control parameters */
237 port->ctrls[EMUX_MD_DEF_BANK] = 0;
238 port->ctrls[EMUX_MD_DEF_DRUM] = 0;
239 port->ctrls[EMUX_MD_REALTIME_PAN] = 1;
240
241 for (i = 0; i < port->chset.max_channels; i++) {
Takashi Iwai03da3122005-11-17 14:24:47 +0100242 struct snd_midi_channel *chan = port->chset.channels + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 chan->drum_channel = ((port->drum_flags >> i) & 1) ? 1 : 0;
244 }
245}
246
247
248/*
249 * input sequencer event
250 */
251int
Takashi Iwai03da3122005-11-17 14:24:47 +0100252snd_emux_event_input(struct snd_seq_event *ev, int direct, void *private_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 int atomic, int hop)
254{
Takashi Iwai03da3122005-11-17 14:24:47 +0100255 struct snd_emux_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 port = private_data;
Takashi Iwai5e246b82008-08-08 17:12:47 +0200258 if (snd_BUG_ON(!port || !ev))
259 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 snd_midi_process_event(&emux_ops, ev, &port->chset);
262
263 return 0;
264}
265
266
267/*
268 * increment usage count
269 */
270int
Takashi Iwai03da3122005-11-17 14:24:47 +0100271snd_emux_inc_count(struct snd_emux *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 emu->used++;
274 if (!try_module_get(emu->ops.owner))
275 goto __error;
276 if (!try_module_get(emu->card->module)) {
277 module_put(emu->ops.owner);
278 __error:
279 emu->used--;
280 return 0;
281 }
282 return 1;
283}
284
285
286/*
287 * decrease usage count
288 */
289void
Takashi Iwai03da3122005-11-17 14:24:47 +0100290snd_emux_dec_count(struct snd_emux *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 module_put(emu->card->module);
293 emu->used--;
294 if (emu->used <= 0)
295 snd_emux_terminate_all(emu);
296 module_put(emu->ops.owner);
297}
298
299
300/*
301 * Routine that is called upon a first use of a particular port
302 */
303static int
Takashi Iwai03da3122005-11-17 14:24:47 +0100304snd_emux_use(void *private_data, struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Takashi Iwai03da3122005-11-17 14:24:47 +0100306 struct snd_emux_port *p;
307 struct snd_emux *emu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 p = private_data;
Takashi Iwai5e246b82008-08-08 17:12:47 +0200310 if (snd_BUG_ON(!p))
311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 emu = p->emu;
Takashi Iwai5e246b82008-08-08 17:12:47 +0200313 if (snd_BUG_ON(!emu))
314 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Ingo Molnaref9f0a42006-01-16 16:31:42 +0100316 mutex_lock(&emu->register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 snd_emux_init_port(p);
318 snd_emux_inc_count(emu);
Ingo Molnaref9f0a42006-01-16 16:31:42 +0100319 mutex_unlock(&emu->register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return 0;
321}
322
323/*
324 * Routine that is called upon the last unuse() of a particular port.
325 */
326static int
Takashi Iwai03da3122005-11-17 14:24:47 +0100327snd_emux_unuse(void *private_data, struct snd_seq_port_subscribe *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Takashi Iwai03da3122005-11-17 14:24:47 +0100329 struct snd_emux_port *p;
330 struct snd_emux *emu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 p = private_data;
Takashi Iwai5e246b82008-08-08 17:12:47 +0200333 if (snd_BUG_ON(!p))
334 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 emu = p->emu;
Takashi Iwai5e246b82008-08-08 17:12:47 +0200336 if (snd_BUG_ON(!emu))
337 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Ingo Molnaref9f0a42006-01-16 16:31:42 +0100339 mutex_lock(&emu->register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 snd_emux_sounds_off_all(p);
341 snd_emux_dec_count(emu);
Ingo Molnaref9f0a42006-01-16 16:31:42 +0100342 mutex_unlock(&emu->register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344}
345
346
347/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * attach virtual rawmidi devices
349 */
Takashi Iwai03da3122005-11-17 14:24:47 +0100350int snd_emux_init_virmidi(struct snd_emux *emu, struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 int i;
353
354 emu->vmidi = NULL;
355 if (emu->midi_ports <= 0)
356 return 0;
357
Takashi Iwai03da3122005-11-17 14:24:47 +0100358 emu->vmidi = kcalloc(emu->midi_ports, sizeof(struct snd_rawmidi *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (emu->vmidi == NULL)
360 return -ENOMEM;
361
362 for (i = 0; i < emu->midi_ports; i++) {
Takashi Iwai03da3122005-11-17 14:24:47 +0100363 struct snd_rawmidi *rmidi;
364 struct snd_virmidi_dev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (snd_virmidi_new(card, emu->midi_devidx + i, &rmidi) < 0)
366 goto __error;
367 rdev = rmidi->private_data;
368 sprintf(rmidi->name, "%s Synth MIDI", emu->name);
369 rdev->seq_mode = SNDRV_VIRMIDI_SEQ_ATTACH;
370 rdev->client = emu->client;
371 rdev->port = emu->ports[i];
372 if (snd_device_register(card, rmidi) < 0) {
373 snd_device_free(card, rmidi);
374 goto __error;
375 }
376 emu->vmidi[i] = rmidi;
Takashi Iwai42b01582009-02-05 16:01:46 +0100377 /* snd_printk(KERN_DEBUG "virmidi %d ok\n", i); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 return 0;
380
381__error:
Takashi Iwai42b01582009-02-05 16:01:46 +0100382 /* snd_printk(KERN_DEBUG "error init..\n"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 snd_emux_delete_virmidi(emu);
384 return -ENOMEM;
385}
386
Takashi Iwai03da3122005-11-17 14:24:47 +0100387int snd_emux_delete_virmidi(struct snd_emux *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 int i;
390
391 if (emu->vmidi == NULL)
392 return 0;
393
394 for (i = 0; i < emu->midi_ports; i++) {
395 if (emu->vmidi[i])
396 snd_device_free(emu->card, emu->vmidi[i]);
397 }
398 kfree(emu->vmidi);
399 emu->vmidi = NULL;
400 return 0;
401}