initial commit with v2.6.9
[linux-2.6.9-moxart.git] / sound / synth / emux / emux_seq.c
blob4b91722001059fc39db46cf34dbd3eefd07cbf3c
1 /*
2 * Midi Sequencer interface routines.
4 * Copyright (C) 1999 Steve Ratcliffe
5 * Copyright (c) 1999-2000 Takashi Iwai <tiwai@suse.de>
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.
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.
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
22 #include "emux_voice.h"
23 #include <linux/slab.h>
26 /* Prototypes for static functions */
27 static void free_port(void *private);
28 static void snd_emux_init_port(snd_emux_port_t *p);
29 static int snd_emux_use(void *private_data, snd_seq_port_subscribe_t *info);
30 static int snd_emux_unuse(void *private_data, snd_seq_port_subscribe_t *info);
31 static int get_client(snd_card_t *card, int index, char *name);
34 * MIDI emulation operators
36 static snd_midi_op_t emux_ops = {
37 snd_emux_note_on,
38 snd_emux_note_off,
39 snd_emux_key_press,
40 snd_emux_terminate_note,
41 snd_emux_control,
42 snd_emux_nrpn,
43 snd_emux_sysex,
48 * number of MIDI channels
50 #define MIDI_CHANNELS 16
53 * type flags for MIDI sequencer port
55 #define DEFAULT_MIDI_TYPE (SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC |\
56 SNDRV_SEQ_PORT_TYPE_MIDI_GM |\
57 SNDRV_SEQ_PORT_TYPE_MIDI_GS |\
58 SNDRV_SEQ_PORT_TYPE_MIDI_XG |\
59 SNDRV_SEQ_PORT_TYPE_DIRECT_SAMPLE)
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.
67 int
68 snd_emux_init_seq(snd_emux_t *emu, snd_card_t *card, int index)
70 int i;
71 snd_seq_port_callback_t pinfo;
72 char tmpname[64];
74 sprintf(tmpname, "%s WaveTable", emu->name);
75 emu->client = get_client(card, index, tmpname);
76 if (emu->client < 0) {
77 snd_printk("can't create client\n");
78 return -ENODEV;
81 if (emu->num_ports < 0) {
82 snd_printk("seqports must be greater than zero\n");
83 emu->num_ports = 1;
84 } else if (emu->num_ports >= SNDRV_EMUX_MAX_PORTS) {
85 snd_printk("too many ports."
86 "limited max. ports %d\n", SNDRV_EMUX_MAX_PORTS);
87 emu->num_ports = SNDRV_EMUX_MAX_PORTS;
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;
96 for (i = 0; i < emu->num_ports; i++) {
97 snd_emux_port_t *p;
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) {
103 snd_printk("can't create port\n");
104 return -ENOMEM;
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;
113 return 0;
118 * Detach from the ports that were set up for this synthesizer and
119 * destroy the kernel client.
121 void
122 snd_emux_detach_seq(snd_emux_t *emu)
124 if (emu->voices)
125 snd_emux_terminate_all(emu);
127 down(&emu->register_mutex);
128 if (emu->client >= 0) {
129 snd_seq_delete_kernel_client(emu->client);
130 emu->client = -1;
132 up(&emu->register_mutex);
137 * create a sequencer port and channel_set
140 snd_emux_port_t *
141 snd_emux_create_port(snd_emux_t *emu, char *name,
142 int max_channels, int oss_port,
143 snd_seq_port_callback_t *callback)
145 snd_emux_port_t *p;
146 int i, type, cap;
148 /* Allocate structures for this channel */
149 if ((p = kcalloc(1, sizeof(*p), GFP_KERNEL)) == NULL) {
150 snd_printk("no memory\n");
151 return NULL;
153 p->chset.channels = kcalloc(max_channels, sizeof(snd_midi_channel_t), GFP_KERNEL);
154 if (p->chset.channels == NULL) {
155 snd_printk("no memory\n");
156 kfree(p);
157 return NULL;
159 for (i = 0; i < max_channels; i++)
160 p->chset.channels[i].number = i;
161 p->chset.private_data = p;
162 p->chset.max_channels = max_channels;
163 p->emu = emu;
164 p->chset.client = emu->client;
165 #ifdef SNDRV_EMUX_USE_RAW_EFFECT
166 snd_emux_create_effect(p);
167 #endif
168 callback->private_free = free_port;
169 callback->private_data = p;
171 cap = SNDRV_SEQ_PORT_CAP_WRITE;
172 if (oss_port) {
173 type = SNDRV_SEQ_PORT_TYPE_SPECIFIC;
174 } else {
175 type = DEFAULT_MIDI_TYPE;
176 cap |= SNDRV_SEQ_PORT_CAP_SUBS_WRITE;
179 p->chset.port = snd_seq_event_port_attach(emu->client, callback,
180 cap, type, max_channels,
181 emu->max_voices, name);
183 return p;
188 * release memory block for port
190 static void
191 free_port(void *private_data)
193 snd_emux_port_t *p;
195 p = private_data;
196 if (p) {
197 #ifdef SNDRV_EMUX_USE_RAW_EFFECT
198 snd_emux_delete_effect(p);
199 #endif
200 if (p->chset.channels)
201 kfree(p->chset.channels);
202 kfree(p);
207 #define DEFAULT_DRUM_FLAGS (1<<9)
210 * initialize the port specific parameters
212 static void
213 snd_emux_init_port(snd_emux_port_t *p)
215 p->drum_flags = DEFAULT_DRUM_FLAGS;
216 p->volume_atten = 0;
218 snd_emux_reset_port(p);
223 * reset port
225 void
226 snd_emux_reset_port(snd_emux_port_t *port)
228 int i;
230 /* stop all sounds */
231 snd_emux_sounds_off_all(port);
233 snd_midi_channel_set_clear(&port->chset);
235 #ifdef SNDRV_EMUX_USE_RAW_EFFECT
236 snd_emux_clear_effect(port);
237 #endif
239 /* set port specific control parameters */
240 port->ctrls[EMUX_MD_DEF_BANK] = 0;
241 port->ctrls[EMUX_MD_DEF_DRUM] = 0;
242 port->ctrls[EMUX_MD_REALTIME_PAN] = 1;
244 for (i = 0; i < port->chset.max_channels; i++) {
245 snd_midi_channel_t *chan = port->chset.channels + i;
246 chan->drum_channel = ((port->drum_flags >> i) & 1) ? 1 : 0;
252 * input sequencer event
255 snd_emux_event_input(snd_seq_event_t *ev, int direct, void *private_data,
256 int atomic, int hop)
258 snd_emux_port_t *port;
260 port = private_data;
261 snd_assert(port != NULL && ev != NULL, return -EINVAL);
263 snd_midi_process_event(&emux_ops, ev, &port->chset);
265 return 0;
270 * increment usage count
273 snd_emux_inc_count(snd_emux_t *emu)
275 emu->used++;
276 if (!try_module_get(emu->ops.owner))
277 goto __error;
278 if (!try_module_get(emu->card->module)) {
279 module_put(emu->ops.owner);
280 __error:
281 emu->used--;
282 return 0;
284 return 1;
289 * decrease usage count
291 void
292 snd_emux_dec_count(snd_emux_t *emu)
294 module_put(emu->card->module);
295 emu->used--;
296 if (emu->used <= 0)
297 snd_emux_terminate_all(emu);
298 module_put(emu->ops.owner);
303 * Routine that is called upon a first use of a particular port
305 static int
306 snd_emux_use(void *private_data, snd_seq_port_subscribe_t *info)
308 snd_emux_port_t *p;
309 snd_emux_t *emu;
311 p = private_data;
312 snd_assert(p != NULL, return -EINVAL);
313 emu = p->emu;
314 snd_assert(emu != NULL, return -EINVAL);
316 down(&emu->register_mutex);
317 snd_emux_init_port(p);
318 snd_emux_inc_count(emu);
319 up(&emu->register_mutex);
320 return 0;
324 * Routine that is called upon the last unuse() of a particular port.
326 static int
327 snd_emux_unuse(void *private_data, snd_seq_port_subscribe_t *info)
329 snd_emux_port_t *p;
330 snd_emux_t *emu;
332 p = private_data;
333 snd_assert(p != NULL, return -EINVAL);
334 emu = p->emu;
335 snd_assert(emu != NULL, return -EINVAL);
337 down(&emu->register_mutex);
338 snd_emux_sounds_off_all(p);
339 snd_emux_dec_count(emu);
340 up(&emu->register_mutex);
341 return 0;
346 * Create a sequencer client
348 static int
349 get_client(snd_card_t *card, int index, char *name)
351 snd_seq_client_callback_t callbacks;
352 snd_seq_client_info_t cinfo;
353 int client;
355 memset(&callbacks, 0, sizeof(callbacks));
356 callbacks.private_data = NULL;
357 callbacks.allow_input = 1;
358 callbacks.allow_output = 1;
360 /* Find a free client, start from 1 as the MPU expects to use 0 */
361 client = snd_seq_create_kernel_client(card, index, &callbacks);
362 if (client < 0)
363 return client;
365 memset(&cinfo, 0, sizeof(cinfo));
366 cinfo.client = client;
367 cinfo.type = KERNEL_CLIENT;
368 strcpy(cinfo.name, name);
369 snd_seq_kernel_client_ctl(client, SNDRV_SEQ_IOCTL_SET_CLIENT_INFO, &cinfo);
371 return client;
376 * attach virtual rawmidi devices
378 int snd_emux_init_virmidi(snd_emux_t *emu, snd_card_t *card)
380 int i;
382 emu->vmidi = NULL;
383 if (emu->midi_ports <= 0)
384 return 0;
386 emu->vmidi = kcalloc(emu->midi_ports, sizeof(snd_rawmidi_t*), GFP_KERNEL);
387 if (emu->vmidi == NULL)
388 return -ENOMEM;
390 for (i = 0; i < emu->midi_ports; i++) {
391 snd_rawmidi_t *rmidi;
392 snd_virmidi_dev_t *rdev;
393 if (snd_virmidi_new(card, emu->midi_devidx + i, &rmidi) < 0)
394 goto __error;
395 rdev = rmidi->private_data;
396 sprintf(rmidi->name, "%s Synth MIDI", emu->name);
397 rdev->seq_mode = SNDRV_VIRMIDI_SEQ_ATTACH;
398 rdev->client = emu->client;
399 rdev->port = emu->ports[i];
400 if (snd_device_register(card, rmidi) < 0) {
401 snd_device_free(card, rmidi);
402 goto __error;
404 emu->vmidi[i] = rmidi;
405 //snd_printk("virmidi %d ok\n", i);
407 return 0;
409 __error:
410 //snd_printk("error init..\n");
411 snd_emux_delete_virmidi(emu);
412 return -ENOMEM;
415 int snd_emux_delete_virmidi(snd_emux_t *emu)
417 int i;
419 if (emu->vmidi == NULL)
420 return 0;
422 for (i = 0; i < emu->midi_ports; i++) {
423 if (emu->vmidi[i])
424 snd_device_free(emu->card, emu->vmidi[i]);
426 kfree(emu->vmidi);
427 emu->vmidi = NULL;
428 return 0;