2 * OSS compatible sequencer driver
4 * open/close and reset interface
6 * Copyright (C) 1998-1999 Takashi Iwai <tiwai@suse.de>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "seq_oss_device.h"
24 #include "seq_oss_synth.h"
25 #include "seq_oss_midi.h"
26 #include "seq_oss_writeq.h"
27 #include "seq_oss_readq.h"
28 #include "seq_oss_timer.h"
29 #include "seq_oss_event.h"
30 #include <linux/init.h>
31 #include <linux/export.h>
32 #include <linux/moduleparam.h>
33 #include <linux/slab.h>
34 #include <linux/workqueue.h>
39 static int maxqlen
= SNDRV_SEQ_OSS_MAX_QLEN
;
40 module_param(maxqlen
, int, 0444);
41 MODULE_PARM_DESC(maxqlen
, "maximum queue length");
43 static int system_client
= -1; /* ALSA sequencer client number */
44 static int system_port
= -1;
46 static int num_clients
;
47 static struct seq_oss_devinfo
*client_table
[SNDRV_SEQ_OSS_MAX_CLIENTS
];
53 static int receive_announce(struct snd_seq_event
*ev
, int direct
, void *private, int atomic
, int hop
);
54 static int translate_mode(struct file
*file
);
55 static int create_port(struct seq_oss_devinfo
*dp
);
56 static int delete_port(struct seq_oss_devinfo
*dp
);
57 static int alloc_seq_queue(struct seq_oss_devinfo
*dp
);
58 static int delete_seq_queue(int queue
);
59 static void free_devinfo(void *private);
61 #define call_ctl(type,rec) snd_seq_kernel_client_ctl(system_client, type, rec)
64 /* call snd_seq_oss_midi_lookup_ports() asynchronously */
65 static void async_call_lookup_ports(struct work_struct
*work
)
67 snd_seq_oss_midi_lookup_ports(system_client
);
70 static DECLARE_WORK(async_lookup_work
, async_call_lookup_ports
);
73 * create sequencer client for OSS sequencer
76 snd_seq_oss_create_client(void)
79 struct snd_seq_port_info
*port
;
80 struct snd_seq_port_callback port_callback
;
82 port
= kmalloc(sizeof(*port
), GFP_KERNEL
);
88 /* create ALSA client */
89 rc
= snd_seq_create_kernel_client(NULL
, SNDRV_SEQ_CLIENT_OSS
,
96 /* create annoucement receiver port */
97 memset(port
, 0, sizeof(*port
));
98 strcpy(port
->name
, "Receiver");
99 port
->addr
.client
= system_client
;
100 port
->capability
= SNDRV_SEQ_PORT_CAP_WRITE
; /* receive only */
103 memset(&port_callback
, 0, sizeof(port_callback
));
104 /* don't set port_callback.owner here. otherwise the module counter
105 * is incremented and we can no longer release the module..
107 port_callback
.event_input
= receive_announce
;
108 port
->kernel
= &port_callback
;
110 call_ctl(SNDRV_SEQ_IOCTL_CREATE_PORT
, port
);
111 if ((system_port
= port
->addr
.port
) >= 0) {
112 struct snd_seq_port_subscribe subs
;
114 memset(&subs
, 0, sizeof(subs
));
115 subs
.sender
.client
= SNDRV_SEQ_CLIENT_SYSTEM
;
116 subs
.sender
.port
= SNDRV_SEQ_PORT_SYSTEM_ANNOUNCE
;
117 subs
.dest
.client
= system_client
;
118 subs
.dest
.port
= system_port
;
119 call_ctl(SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT
, &subs
);
123 /* look up midi devices */
124 schedule_work(&async_lookup_work
);
133 * receive annoucement from system port, and check the midi device
136 receive_announce(struct snd_seq_event
*ev
, int direct
, void *private, int atomic
, int hop
)
138 struct snd_seq_port_info pinfo
;
141 return 0; /* it must not happen */
144 case SNDRV_SEQ_EVENT_PORT_START
:
145 case SNDRV_SEQ_EVENT_PORT_CHANGE
:
146 if (ev
->data
.addr
.client
== system_client
)
147 break; /* ignore myself */
148 memset(&pinfo
, 0, sizeof(pinfo
));
149 pinfo
.addr
= ev
->data
.addr
;
150 if (call_ctl(SNDRV_SEQ_IOCTL_GET_PORT_INFO
, &pinfo
) >= 0)
151 snd_seq_oss_midi_check_new_port(&pinfo
);
154 case SNDRV_SEQ_EVENT_PORT_EXIT
:
155 if (ev
->data
.addr
.client
== system_client
)
156 break; /* ignore myself */
157 snd_seq_oss_midi_check_exit_port(ev
->data
.addr
.client
,
166 * delete OSS sequencer client
169 snd_seq_oss_delete_client(void)
171 cancel_work_sync(&async_lookup_work
);
172 if (system_client
>= 0)
173 snd_seq_delete_kernel_client(system_client
);
175 snd_seq_oss_midi_clear_all();
182 * open sequencer device
185 snd_seq_oss_open(struct file
*file
, int level
)
188 struct seq_oss_devinfo
*dp
;
190 dp
= kzalloc(sizeof(*dp
), GFP_KERNEL
);
194 dp
->cseq
= system_client
;
198 for (i
= 0; i
< SNDRV_SEQ_OSS_MAX_CLIENTS
; i
++) {
199 if (client_table
[i
] == NULL
)
204 if (i
>= SNDRV_SEQ_OSS_MAX_CLIENTS
) {
205 pr_err("ALSA: seq_oss: too many applications\n");
210 /* look up synth and midi devices */
211 snd_seq_oss_synth_setup(dp
);
212 snd_seq_oss_midi_setup(dp
);
214 if (dp
->synth_opened
== 0 && dp
->max_mididev
== 0) {
215 /* pr_err("ALSA: seq_oss: no device found\n"); */
221 rc
= create_port(dp
);
223 pr_err("ALSA: seq_oss: can't create port\n");
228 rc
= alloc_seq_queue(dp
);
233 dp
->addr
.client
= dp
->cseq
;
234 dp
->addr
.port
= dp
->port
;
235 /*dp->addr.queue = dp->queue;*/
236 /*dp->addr.channel = 0;*/
238 dp
->seq_mode
= level
;
240 /* set up file mode */
241 dp
->file_mode
= translate_mode(file
);
243 /* initialize read queue */
244 if (is_read_mode(dp
->file_mode
)) {
245 dp
->readq
= snd_seq_oss_readq_new(dp
, maxqlen
);
252 /* initialize write queue */
253 if (is_write_mode(dp
->file_mode
)) {
254 dp
->writeq
= snd_seq_oss_writeq_new(dp
, maxqlen
);
261 /* initialize timer */
262 dp
->timer
= snd_seq_oss_timer_new(dp
);
264 pr_err("ALSA: seq_oss: can't alloc timer\n");
269 /* set private data pointer */
270 file
->private_data
= dp
;
272 /* set up for mode2 */
273 if (level
== SNDRV_SEQ_OSS_MODE_MUSIC
)
274 snd_seq_oss_synth_setup_midi(dp
);
275 else if (is_read_mode(dp
->file_mode
))
276 snd_seq_oss_midi_open_all(dp
, SNDRV_SEQ_OSS_FILE_READ
);
278 client_table
[dp
->index
] = dp
;
284 snd_seq_oss_synth_cleanup(dp
);
285 snd_seq_oss_midi_cleanup(dp
);
286 delete_seq_queue(dp
->queue
);
293 * translate file flags to private mode
296 translate_mode(struct file
*file
)
299 if ((file
->f_flags
& O_ACCMODE
) != O_RDONLY
)
300 file_mode
|= SNDRV_SEQ_OSS_FILE_WRITE
;
301 if ((file
->f_flags
& O_ACCMODE
) != O_WRONLY
)
302 file_mode
|= SNDRV_SEQ_OSS_FILE_READ
;
303 if (file
->f_flags
& O_NONBLOCK
)
304 file_mode
|= SNDRV_SEQ_OSS_FILE_NONBLOCK
;
310 * create sequencer port
313 create_port(struct seq_oss_devinfo
*dp
)
316 struct snd_seq_port_info port
;
317 struct snd_seq_port_callback callback
;
319 memset(&port
, 0, sizeof(port
));
320 port
.addr
.client
= dp
->cseq
;
321 sprintf(port
.name
, "Sequencer-%d", dp
->index
);
322 port
.capability
= SNDRV_SEQ_PORT_CAP_READ
|SNDRV_SEQ_PORT_CAP_WRITE
; /* no subscription */
323 port
.type
= SNDRV_SEQ_PORT_TYPE_SPECIFIC
;
324 port
.midi_channels
= 128;
325 port
.synth_voices
= 128;
327 memset(&callback
, 0, sizeof(callback
));
328 callback
.owner
= THIS_MODULE
;
329 callback
.private_data
= dp
;
330 callback
.event_input
= snd_seq_oss_event_input
;
331 callback
.private_free
= free_devinfo
;
332 port
.kernel
= &callback
;
334 rc
= call_ctl(SNDRV_SEQ_IOCTL_CREATE_PORT
, &port
);
338 dp
->port
= port
.addr
.port
;
347 delete_port(struct seq_oss_devinfo
*dp
)
354 return snd_seq_event_port_detach(dp
->cseq
, dp
->port
);
361 alloc_seq_queue(struct seq_oss_devinfo
*dp
)
363 struct snd_seq_queue_info qinfo
;
366 memset(&qinfo
, 0, sizeof(qinfo
));
367 qinfo
.owner
= system_client
;
369 strcpy(qinfo
.name
, "OSS Sequencer Emulation");
370 if ((rc
= call_ctl(SNDRV_SEQ_IOCTL_CREATE_QUEUE
, &qinfo
)) < 0)
372 dp
->queue
= qinfo
.queue
;
380 delete_seq_queue(int queue
)
382 struct snd_seq_queue_info qinfo
;
387 memset(&qinfo
, 0, sizeof(qinfo
));
389 rc
= call_ctl(SNDRV_SEQ_IOCTL_DELETE_QUEUE
, &qinfo
);
391 pr_err("ALSA: seq_oss: unable to delete queue %d (%d)\n", queue
, rc
);
397 * free device informations - private_free callback of port
400 free_devinfo(void *private)
402 struct seq_oss_devinfo
*dp
= (struct seq_oss_devinfo
*)private;
404 snd_seq_oss_timer_delete(dp
->timer
);
406 snd_seq_oss_writeq_delete(dp
->writeq
);
408 snd_seq_oss_readq_delete(dp
->readq
);
415 * close sequencer device
418 snd_seq_oss_release(struct seq_oss_devinfo
*dp
)
422 client_table
[dp
->index
] = NULL
;
425 snd_seq_oss_reset(dp
);
427 snd_seq_oss_synth_cleanup(dp
);
428 snd_seq_oss_midi_cleanup(dp
);
434 delete_seq_queue(queue
);
439 * Wait until the queue is empty (if we don't have nonblock)
442 snd_seq_oss_drain_write(struct seq_oss_devinfo
*dp
)
444 if (! dp
->timer
->running
)
446 if (is_write_mode(dp
->file_mode
) && !is_nonblock_mode(dp
->file_mode
) &&
448 while (snd_seq_oss_writeq_sync(dp
->writeq
))
455 * reset sequencer devices
458 snd_seq_oss_reset(struct seq_oss_devinfo
*dp
)
462 /* reset all synth devices */
463 for (i
= 0; i
< dp
->max_synthdev
; i
++)
464 snd_seq_oss_synth_reset(dp
, i
);
466 /* reset all midi devices */
467 if (dp
->seq_mode
!= SNDRV_SEQ_OSS_MODE_MUSIC
) {
468 for (i
= 0; i
< dp
->max_mididev
; i
++)
469 snd_seq_oss_midi_reset(dp
, i
);
474 snd_seq_oss_readq_clear(dp
->readq
);
476 snd_seq_oss_writeq_clear(dp
->writeq
);
479 snd_seq_oss_timer_stop(dp
->timer
);
482 #ifdef CONFIG_SND_PROC_FS
484 * misc. functions for proc interface
487 enabled_str(int bool)
489 return bool ? "enabled" : "disabled";
493 filemode_str(int val
)
495 static char *str
[] = {
496 "none", "read", "write", "read/write",
498 return str
[val
& SNDRV_SEQ_OSS_FILE_ACMODE
];
506 snd_seq_oss_system_info_read(struct snd_info_buffer
*buf
)
509 struct seq_oss_devinfo
*dp
;
511 snd_iprintf(buf
, "ALSA client number %d\n", system_client
);
512 snd_iprintf(buf
, "ALSA receiver port %d\n", system_port
);
514 snd_iprintf(buf
, "\nNumber of applications: %d\n", num_clients
);
515 for (i
= 0; i
< num_clients
; i
++) {
516 snd_iprintf(buf
, "\nApplication %d: ", i
);
517 if ((dp
= client_table
[i
]) == NULL
) {
518 snd_iprintf(buf
, "*empty*\n");
521 snd_iprintf(buf
, "port %d : queue %d\n", dp
->port
, dp
->queue
);
522 snd_iprintf(buf
, " sequencer mode = %s : file open mode = %s\n",
523 (dp
->seq_mode
? "music" : "synth"),
524 filemode_str(dp
->file_mode
));
526 snd_iprintf(buf
, " timer tempo = %d, timebase = %d\n",
527 dp
->timer
->oss_tempo
, dp
->timer
->oss_timebase
);
528 snd_iprintf(buf
, " max queue length %d\n", maxqlen
);
529 if (is_read_mode(dp
->file_mode
) && dp
->readq
)
530 snd_seq_oss_readq_info_read(dp
->readq
, buf
);
533 #endif /* CONFIG_SND_PROC_FS */