2 * ALSA sequencer Memory Manager
3 * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
4 * Jaroslav Kysela <perex@suse.cz>
5 * 2000 by 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
23 #include <sound/driver.h>
24 #include <linux/init.h>
25 #include <linux/slab.h>
26 #include <linux/vmalloc.h>
27 #include <sound/core.h>
29 #include <sound/seq_kernel.h>
30 #include "seq_memory.h"
31 #include "seq_queue.h"
35 static inline int snd_seq_pool_available(struct snd_seq_pool
*pool
)
37 return pool
->total_elements
- atomic_read(&pool
->counter
);
40 static inline int snd_seq_output_ok(struct snd_seq_pool
*pool
)
42 return snd_seq_pool_available(pool
) >= pool
->room
;
46 * Variable length event:
47 * The event like sysex uses variable length type.
48 * The external data may be stored in three different formats.
50 * This is the normal case.
51 * ext.data.len = length
52 * ext.data.ptr = buffer pointer
54 * When an event is generated via read(), the external data is
55 * kept in user space until expanded.
56 * ext.data.len = length | SNDRV_SEQ_EXT_USRPTR
57 * ext.data.ptr = userspace pointer
59 * When the variable length event is enqueued (in prioq or fifo),
60 * the external data is decomposed to several cells.
61 * ext.data.len = length | SNDRV_SEQ_EXT_CHAINED
62 * ext.data.ptr = the additiona cell head
63 * -> cell.next -> cell.next -> ..
68 * call dump function to expand external data.
71 static int get_var_len(const struct snd_seq_event
*event
)
73 if ((event
->flags
& SNDRV_SEQ_EVENT_LENGTH_MASK
) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE
)
76 return event
->data
.ext
.len
& ~SNDRV_SEQ_EXT_MASK
;
79 int snd_seq_dump_var_event(const struct snd_seq_event
*event
,
80 snd_seq_dump_func_t func
, void *private_data
)
83 struct snd_seq_event_cell
*cell
;
85 if ((len
= get_var_len(event
)) <= 0)
88 if (event
->data
.ext
.len
& SNDRV_SEQ_EXT_USRPTR
) {
90 char __user
*curptr
= (char __user
*)event
->data
.ext
.ptr
;
92 int size
= sizeof(buf
);
95 if (copy_from_user(buf
, curptr
, size
))
97 err
= func(private_data
, buf
, size
);
104 } if (! (event
->data
.ext
.len
& SNDRV_SEQ_EXT_CHAINED
)) {
105 return func(private_data
, event
->data
.ext
.ptr
, len
);
108 cell
= (struct snd_seq_event_cell
*)event
->data
.ext
.ptr
;
109 for (; len
> 0 && cell
; cell
= cell
->next
) {
110 int size
= sizeof(struct snd_seq_event
);
113 err
= func(private_data
, &cell
->event
, size
);
121 EXPORT_SYMBOL(snd_seq_dump_var_event
);
126 * expand the variable length event to linear buffer space.
129 static int seq_copy_in_kernel(char **bufptr
, const void *src
, int size
)
131 memcpy(*bufptr
, src
, size
);
136 static int seq_copy_in_user(char __user
**bufptr
, const void *src
, int size
)
138 if (copy_to_user(*bufptr
, src
, size
))
144 int snd_seq_expand_var_event(const struct snd_seq_event
*event
, int count
, char *buf
,
145 int in_kernel
, int size_aligned
)
150 if ((len
= get_var_len(event
)) < 0)
153 if (size_aligned
> 0)
154 newlen
= ((len
+ size_aligned
- 1) / size_aligned
) * size_aligned
;
158 if (event
->data
.ext
.len
& SNDRV_SEQ_EXT_USRPTR
) {
161 if (copy_from_user(buf
, (void __user
*)event
->data
.ext
.ptr
, len
))
165 err
= snd_seq_dump_var_event(event
,
166 in_kernel
? (snd_seq_dump_func_t
)seq_copy_in_kernel
:
167 (snd_seq_dump_func_t
)seq_copy_in_user
,
169 return err
< 0 ? err
: newlen
;
172 EXPORT_SYMBOL(snd_seq_expand_var_event
);
175 * release this cell, free extended data if available
178 static inline void free_cell(struct snd_seq_pool
*pool
,
179 struct snd_seq_event_cell
*cell
)
181 cell
->next
= pool
->free
;
183 atomic_dec(&pool
->counter
);
186 void snd_seq_cell_free(struct snd_seq_event_cell
* cell
)
189 struct snd_seq_pool
*pool
;
191 snd_assert(cell
!= NULL
, return);
193 snd_assert(pool
!= NULL
, return);
195 spin_lock_irqsave(&pool
->lock
, flags
);
196 free_cell(pool
, cell
);
197 if (snd_seq_ev_is_variable(&cell
->event
)) {
198 if (cell
->event
.data
.ext
.len
& SNDRV_SEQ_EXT_CHAINED
) {
199 struct snd_seq_event_cell
*curp
, *nextptr
;
200 curp
= cell
->event
.data
.ext
.ptr
;
201 for (; curp
; curp
= nextptr
) {
202 nextptr
= curp
->next
;
203 curp
->next
= pool
->free
;
204 free_cell(pool
, curp
);
208 if (waitqueue_active(&pool
->output_sleep
)) {
209 /* has enough space now? */
210 if (snd_seq_output_ok(pool
))
211 wake_up(&pool
->output_sleep
);
213 spin_unlock_irqrestore(&pool
->lock
, flags
);
218 * allocate an event cell.
220 static int snd_seq_cell_alloc(struct snd_seq_pool
*pool
,
221 struct snd_seq_event_cell
**cellp
,
222 int nonblock
, struct file
*file
)
224 struct snd_seq_event_cell
*cell
;
234 init_waitqueue_entry(&wait
, current
);
235 spin_lock_irqsave(&pool
->lock
, flags
);
236 if (pool
->ptr
== NULL
) { /* not initialized */
237 snd_printd("seq: pool is not initialized\n");
241 while (pool
->free
== NULL
&& ! nonblock
&& ! pool
->closing
) {
243 set_current_state(TASK_INTERRUPTIBLE
);
244 add_wait_queue(&pool
->output_sleep
, &wait
);
245 spin_unlock_irq(&pool
->lock
);
247 spin_lock_irq(&pool
->lock
);
248 remove_wait_queue(&pool
->output_sleep
, &wait
);
250 if (signal_pending(current
)) {
255 if (pool
->closing
) { /* closing.. */
263 pool
->free
= cell
->next
;
264 atomic_inc(&pool
->counter
);
265 used
= atomic_read(&pool
->counter
);
266 if (pool
->max_used
< used
)
267 pool
->max_used
= used
;
268 pool
->event_alloc_success
++;
269 /* clear cell pointers */
273 pool
->event_alloc_failures
++;
277 spin_unlock_irqrestore(&pool
->lock
, flags
);
283 * duplicate the event to a cell.
284 * if the event has external data, the data is decomposed to additional
287 int snd_seq_event_dup(struct snd_seq_pool
*pool
, struct snd_seq_event
*event
,
288 struct snd_seq_event_cell
**cellp
, int nonblock
,
293 struct snd_seq_event_cell
*cell
;
299 if (snd_seq_ev_is_variable(event
)) {
300 extlen
= event
->data
.ext
.len
& ~SNDRV_SEQ_EXT_MASK
;
301 ncells
= (extlen
+ sizeof(struct snd_seq_event
) - 1) / sizeof(struct snd_seq_event
);
303 if (ncells
>= pool
->total_elements
)
306 err
= snd_seq_cell_alloc(pool
, &cell
, nonblock
, file
);
311 cell
->event
= *event
;
314 if (snd_seq_ev_is_variable(event
)) {
316 int is_chained
= event
->data
.ext
.len
& SNDRV_SEQ_EXT_CHAINED
;
317 int is_usrptr
= event
->data
.ext
.len
& SNDRV_SEQ_EXT_USRPTR
;
318 struct snd_seq_event_cell
*src
, *tmp
, *tail
;
321 cell
->event
.data
.ext
.len
= extlen
| SNDRV_SEQ_EXT_CHAINED
;
322 cell
->event
.data
.ext
.ptr
= NULL
;
324 src
= (struct snd_seq_event_cell
*)event
->data
.ext
.ptr
;
325 buf
= (char *)event
->data
.ext
.ptr
;
328 while (ncells
-- > 0) {
329 int size
= sizeof(struct snd_seq_event
);
332 err
= snd_seq_cell_alloc(pool
, &tmp
, nonblock
, file
);
335 if (cell
->event
.data
.ext
.ptr
== NULL
)
336 cell
->event
.data
.ext
.ptr
= tmp
;
341 if (is_chained
&& src
) {
342 tmp
->event
= src
->event
;
344 } else if (is_usrptr
) {
345 if (copy_from_user(&tmp
->event
, (char __user
*)buf
, size
)) {
350 memcpy(&tmp
->event
, buf
, size
);
361 snd_seq_cell_free(cell
);
367 int snd_seq_pool_poll_wait(struct snd_seq_pool
*pool
, struct file
*file
,
370 poll_wait(file
, &pool
->output_sleep
, wait
);
371 return snd_seq_output_ok(pool
);
375 /* allocate room specified number of events */
376 int snd_seq_pool_init(struct snd_seq_pool
*pool
)
379 struct snd_seq_event_cell
*cellptr
;
382 snd_assert(pool
!= NULL
, return -EINVAL
);
383 if (pool
->ptr
) /* should be atomic? */
386 pool
->ptr
= vmalloc(sizeof(struct snd_seq_event_cell
) * pool
->size
);
387 if (pool
->ptr
== NULL
) {
388 snd_printd("seq: malloc for sequencer events failed\n");
392 /* add new cells to the free cell list */
393 spin_lock_irqsave(&pool
->lock
, flags
);
396 for (cell
= 0; cell
< pool
->size
; cell
++) {
397 cellptr
= pool
->ptr
+ cell
;
398 cellptr
->pool
= pool
;
399 cellptr
->next
= pool
->free
;
400 pool
->free
= cellptr
;
402 pool
->room
= (pool
->size
+ 1) / 2;
404 /* init statistics */
406 pool
->total_elements
= pool
->size
;
407 spin_unlock_irqrestore(&pool
->lock
, flags
);
412 int snd_seq_pool_done(struct snd_seq_pool
*pool
)
415 struct snd_seq_event_cell
*ptr
;
416 int max_count
= 5 * HZ
;
418 snd_assert(pool
!= NULL
, return -EINVAL
);
420 /* wait for closing all threads */
421 spin_lock_irqsave(&pool
->lock
, flags
);
423 spin_unlock_irqrestore(&pool
->lock
, flags
);
425 if (waitqueue_active(&pool
->output_sleep
))
426 wake_up(&pool
->output_sleep
);
428 while (atomic_read(&pool
->counter
) > 0) {
429 if (max_count
== 0) {
430 snd_printk(KERN_WARNING
"snd_seq_pool_done timeout: %d cells remain\n", atomic_read(&pool
->counter
));
433 schedule_timeout_uninterruptible(1);
437 /* release all resources */
438 spin_lock_irqsave(&pool
->lock
, flags
);
442 pool
->total_elements
= 0;
443 spin_unlock_irqrestore(&pool
->lock
, flags
);
447 spin_lock_irqsave(&pool
->lock
, flags
);
449 spin_unlock_irqrestore(&pool
->lock
, flags
);
455 /* init new memory pool */
456 struct snd_seq_pool
*snd_seq_pool_new(int poolsize
)
458 struct snd_seq_pool
*pool
;
460 /* create pool block */
461 pool
= kzalloc(sizeof(*pool
), GFP_KERNEL
);
463 snd_printd("seq: malloc failed for pool\n");
466 spin_lock_init(&pool
->lock
);
469 pool
->total_elements
= 0;
470 atomic_set(&pool
->counter
, 0);
472 init_waitqueue_head(&pool
->output_sleep
);
474 pool
->size
= poolsize
;
476 /* init statistics */
481 /* remove memory pool */
482 int snd_seq_pool_delete(struct snd_seq_pool
**ppool
)
484 struct snd_seq_pool
*pool
= *ppool
;
489 snd_seq_pool_done(pool
);
494 /* initialize sequencer memory */
495 int __init
snd_sequencer_memory_init(void)
500 /* release sequencer memory */
501 void __exit
snd_sequencer_memory_done(void)
506 /* exported to seq_clientmgr.c */
507 void snd_seq_info_pool(struct snd_info_buffer
*buffer
,
508 struct snd_seq_pool
*pool
, char *space
)
512 snd_iprintf(buffer
, "%sPool size : %d\n", space
, pool
->total_elements
);
513 snd_iprintf(buffer
, "%sCells in use : %d\n", space
, atomic_read(&pool
->counter
));
514 snd_iprintf(buffer
, "%sPeak cells in use : %d\n", space
, pool
->max_used
);
515 snd_iprintf(buffer
, "%sAlloc success : %d\n", space
, pool
->event_alloc_success
);
516 snd_iprintf(buffer
, "%sAlloc failures : %d\n", space
, pool
->event_alloc_failures
);