ALSA: seq: Avoid concurrent access to queue flags
[platform/kernel/linux-rpi.git] / sound / core / seq / seq_queue.c
1 /*
2  *   ALSA sequencer Timing queue handling
3  *   Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
4  *
5  *   This program is free software; you can redistribute it and/or modify
6  *   it under the terms of the GNU General Public License as published by
7  *   the Free Software Foundation; either version 2 of the License, or
8  *   (at your option) any later version.
9  *
10  *   This program is distributed in the hope that it will be useful,
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *   GNU General Public License for more details.
14  *
15  *   You should have received a copy of the GNU General Public License
16  *   along with this program; if not, write to the Free Software
17  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18  *
19  * MAJOR CHANGES
20  *   Nov. 13, 1999      Takashi Iwai <iwai@ww.uni-erlangen.de>
21  *     - Queues are allocated dynamically via ioctl.
22  *     - When owner client is deleted, all owned queues are deleted, too.
23  *     - Owner of unlocked queue is kept unmodified even if it is
24  *       manipulated by other clients.
25  *     - Owner field in SET_QUEUE_OWNER ioctl must be identical with the
26  *       caller client.  i.e. Changing owner to a third client is not
27  *       allowed.
28  *
29  *  Aug. 30, 2000       Takashi Iwai
30  *     - Queues are managed in static array again, but with better way.
31  *       The API itself is identical.
32  *     - The queue is locked when struct snd_seq_queue pointer is returned via
33  *       queueptr().  This pointer *MUST* be released afterward by
34  *       queuefree(ptr).
35  *     - Addition of experimental sync support.
36  */
37
38 #include <linux/init.h>
39 #include <linux/slab.h>
40 #include <sound/core.h>
41
42 #include "seq_memory.h"
43 #include "seq_queue.h"
44 #include "seq_clientmgr.h"
45 #include "seq_fifo.h"
46 #include "seq_timer.h"
47 #include "seq_info.h"
48
49 /* list of allocated queues */
50 static struct snd_seq_queue *queue_list[SNDRV_SEQ_MAX_QUEUES];
51 static DEFINE_SPINLOCK(queue_list_lock);
52 /* number of queues allocated */
53 static int num_queues;
54
55 int snd_seq_queue_get_cur_queues(void)
56 {
57         return num_queues;
58 }
59
60 /*----------------------------------------------------------------*/
61
62 /* assign queue id and insert to list */
63 static int queue_list_add(struct snd_seq_queue *q)
64 {
65         int i;
66         unsigned long flags;
67
68         spin_lock_irqsave(&queue_list_lock, flags);
69         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
70                 if (! queue_list[i]) {
71                         queue_list[i] = q;
72                         q->queue = i;
73                         num_queues++;
74                         spin_unlock_irqrestore(&queue_list_lock, flags);
75                         return i;
76                 }
77         }
78         spin_unlock_irqrestore(&queue_list_lock, flags);
79         return -1;
80 }
81
82 static struct snd_seq_queue *queue_list_remove(int id, int client)
83 {
84         struct snd_seq_queue *q;
85         unsigned long flags;
86
87         spin_lock_irqsave(&queue_list_lock, flags);
88         q = queue_list[id];
89         if (q) {
90                 spin_lock(&q->owner_lock);
91                 if (q->owner == client) {
92                         /* found */
93                         q->klocked = 1;
94                         spin_unlock(&q->owner_lock);
95                         queue_list[id] = NULL;
96                         num_queues--;
97                         spin_unlock_irqrestore(&queue_list_lock, flags);
98                         return q;
99                 }
100                 spin_unlock(&q->owner_lock);
101         }
102         spin_unlock_irqrestore(&queue_list_lock, flags);
103         return NULL;
104 }
105
106 /*----------------------------------------------------------------*/
107
108 /* create new queue (constructor) */
109 static struct snd_seq_queue *queue_new(int owner, int locked)
110 {
111         struct snd_seq_queue *q;
112
113         q = kzalloc(sizeof(*q), GFP_KERNEL);
114         if (!q)
115                 return NULL;
116
117         spin_lock_init(&q->owner_lock);
118         spin_lock_init(&q->check_lock);
119         mutex_init(&q->timer_mutex);
120         snd_use_lock_init(&q->use_lock);
121         q->queue = -1;
122
123         q->tickq = snd_seq_prioq_new();
124         q->timeq = snd_seq_prioq_new();
125         q->timer = snd_seq_timer_new();
126         if (q->tickq == NULL || q->timeq == NULL || q->timer == NULL) {
127                 snd_seq_prioq_delete(&q->tickq);
128                 snd_seq_prioq_delete(&q->timeq);
129                 snd_seq_timer_delete(&q->timer);
130                 kfree(q);
131                 return NULL;
132         }
133
134         q->owner = owner;
135         q->locked = locked;
136         q->klocked = 0;
137
138         return q;
139 }
140
141 /* delete queue (destructor) */
142 static void queue_delete(struct snd_seq_queue *q)
143 {
144         /* stop and release the timer */
145         mutex_lock(&q->timer_mutex);
146         snd_seq_timer_stop(q->timer);
147         snd_seq_timer_close(q);
148         mutex_unlock(&q->timer_mutex);
149         /* wait until access free */
150         snd_use_lock_sync(&q->use_lock);
151         /* release resources... */
152         snd_seq_prioq_delete(&q->tickq);
153         snd_seq_prioq_delete(&q->timeq);
154         snd_seq_timer_delete(&q->timer);
155
156         kfree(q);
157 }
158
159
160 /*----------------------------------------------------------------*/
161
162 /* delete all existing queues */
163 void snd_seq_queues_delete(void)
164 {
165         int i;
166
167         /* clear list */
168         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
169                 if (queue_list[i])
170                         queue_delete(queue_list[i]);
171         }
172 }
173
174 static void queue_use(struct snd_seq_queue *queue, int client, int use);
175
176 /* allocate a new queue -
177  * return pointer to new queue or ERR_PTR(-errno) for error
178  * The new queue's use_lock is set to 1. It is the caller's responsibility to
179  * call snd_use_lock_free(&q->use_lock).
180  */
181 struct snd_seq_queue *snd_seq_queue_alloc(int client, int locked, unsigned int info_flags)
182 {
183         struct snd_seq_queue *q;
184
185         q = queue_new(client, locked);
186         if (q == NULL)
187                 return ERR_PTR(-ENOMEM);
188         q->info_flags = info_flags;
189         queue_use(q, client, 1);
190         snd_use_lock_use(&q->use_lock);
191         if (queue_list_add(q) < 0) {
192                 snd_use_lock_free(&q->use_lock);
193                 queue_delete(q);
194                 return ERR_PTR(-ENOMEM);
195         }
196         return q;
197 }
198
199 /* delete a queue - queue must be owned by the client */
200 int snd_seq_queue_delete(int client, int queueid)
201 {
202         struct snd_seq_queue *q;
203
204         if (queueid < 0 || queueid >= SNDRV_SEQ_MAX_QUEUES)
205                 return -EINVAL;
206         q = queue_list_remove(queueid, client);
207         if (q == NULL)
208                 return -EINVAL;
209         queue_delete(q);
210
211         return 0;
212 }
213
214
215 /* return pointer to queue structure for specified id */
216 struct snd_seq_queue *queueptr(int queueid)
217 {
218         struct snd_seq_queue *q;
219         unsigned long flags;
220
221         if (queueid < 0 || queueid >= SNDRV_SEQ_MAX_QUEUES)
222                 return NULL;
223         spin_lock_irqsave(&queue_list_lock, flags);
224         q = queue_list[queueid];
225         if (q)
226                 snd_use_lock_use(&q->use_lock);
227         spin_unlock_irqrestore(&queue_list_lock, flags);
228         return q;
229 }
230
231 /* return the (first) queue matching with the specified name */
232 struct snd_seq_queue *snd_seq_queue_find_name(char *name)
233 {
234         int i;
235         struct snd_seq_queue *q;
236
237         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
238                 if ((q = queueptr(i)) != NULL) {
239                         if (strncmp(q->name, name, sizeof(q->name)) == 0)
240                                 return q;
241                         queuefree(q);
242                 }
243         }
244         return NULL;
245 }
246
247
248 /* -------------------------------------------------------- */
249
250 void snd_seq_check_queue(struct snd_seq_queue *q, int atomic, int hop)
251 {
252         unsigned long flags;
253         struct snd_seq_event_cell *cell;
254
255         if (q == NULL)
256                 return;
257
258         /* make this function non-reentrant */
259         spin_lock_irqsave(&q->check_lock, flags);
260         if (q->check_blocked) {
261                 q->check_again = 1;
262                 spin_unlock_irqrestore(&q->check_lock, flags);
263                 return;         /* other thread is already checking queues */
264         }
265         q->check_blocked = 1;
266         spin_unlock_irqrestore(&q->check_lock, flags);
267
268       __again:
269         /* Process tick queue... */
270         for (;;) {
271                 cell = snd_seq_prioq_cell_out(q->tickq,
272                                               &q->timer->tick.cur_tick);
273                 if (!cell)
274                         break;
275                 snd_seq_dispatch_event(cell, atomic, hop);
276         }
277
278         /* Process time queue... */
279         for (;;) {
280                 cell = snd_seq_prioq_cell_out(q->timeq, &q->timer->cur_time);
281                 if (!cell)
282                         break;
283                 snd_seq_dispatch_event(cell, atomic, hop);
284         }
285
286         /* free lock */
287         spin_lock_irqsave(&q->check_lock, flags);
288         if (q->check_again) {
289                 q->check_again = 0;
290                 spin_unlock_irqrestore(&q->check_lock, flags);
291                 goto __again;
292         }
293         q->check_blocked = 0;
294         spin_unlock_irqrestore(&q->check_lock, flags);
295 }
296
297
298 /* enqueue a event to singe queue */
299 int snd_seq_enqueue_event(struct snd_seq_event_cell *cell, int atomic, int hop)
300 {
301         int dest, err;
302         struct snd_seq_queue *q;
303
304         if (snd_BUG_ON(!cell))
305                 return -EINVAL;
306         dest = cell->event.queue;       /* destination queue */
307         q = queueptr(dest);
308         if (q == NULL)
309                 return -EINVAL;
310         /* handle relative time stamps, convert them into absolute */
311         if ((cell->event.flags & SNDRV_SEQ_TIME_MODE_MASK) == SNDRV_SEQ_TIME_MODE_REL) {
312                 switch (cell->event.flags & SNDRV_SEQ_TIME_STAMP_MASK) {
313                 case SNDRV_SEQ_TIME_STAMP_TICK:
314                         cell->event.time.tick += q->timer->tick.cur_tick;
315                         break;
316
317                 case SNDRV_SEQ_TIME_STAMP_REAL:
318                         snd_seq_inc_real_time(&cell->event.time.time,
319                                               &q->timer->cur_time);
320                         break;
321                 }
322                 cell->event.flags &= ~SNDRV_SEQ_TIME_MODE_MASK;
323                 cell->event.flags |= SNDRV_SEQ_TIME_MODE_ABS;
324         }
325         /* enqueue event in the real-time or midi queue */
326         switch (cell->event.flags & SNDRV_SEQ_TIME_STAMP_MASK) {
327         case SNDRV_SEQ_TIME_STAMP_TICK:
328                 err = snd_seq_prioq_cell_in(q->tickq, cell);
329                 break;
330
331         case SNDRV_SEQ_TIME_STAMP_REAL:
332         default:
333                 err = snd_seq_prioq_cell_in(q->timeq, cell);
334                 break;
335         }
336
337         if (err < 0) {
338                 queuefree(q); /* unlock */
339                 return err;
340         }
341
342         /* trigger dispatching */
343         snd_seq_check_queue(q, atomic, hop);
344
345         queuefree(q); /* unlock */
346
347         return 0;
348 }
349
350
351 /*----------------------------------------------------------------*/
352
353 static inline int check_access(struct snd_seq_queue *q, int client)
354 {
355         return (q->owner == client) || (!q->locked && !q->klocked);
356 }
357
358 /* check if the client has permission to modify queue parameters.
359  * if it does, lock the queue
360  */
361 static int queue_access_lock(struct snd_seq_queue *q, int client)
362 {
363         unsigned long flags;
364         int access_ok;
365         
366         spin_lock_irqsave(&q->owner_lock, flags);
367         access_ok = check_access(q, client);
368         if (access_ok)
369                 q->klocked = 1;
370         spin_unlock_irqrestore(&q->owner_lock, flags);
371         return access_ok;
372 }
373
374 /* unlock the queue */
375 static inline void queue_access_unlock(struct snd_seq_queue *q)
376 {
377         unsigned long flags;
378
379         spin_lock_irqsave(&q->owner_lock, flags);
380         q->klocked = 0;
381         spin_unlock_irqrestore(&q->owner_lock, flags);
382 }
383
384 /* exported - only checking permission */
385 int snd_seq_queue_check_access(int queueid, int client)
386 {
387         struct snd_seq_queue *q = queueptr(queueid);
388         int access_ok;
389         unsigned long flags;
390
391         if (! q)
392                 return 0;
393         spin_lock_irqsave(&q->owner_lock, flags);
394         access_ok = check_access(q, client);
395         spin_unlock_irqrestore(&q->owner_lock, flags);
396         queuefree(q);
397         return access_ok;
398 }
399
400 /*----------------------------------------------------------------*/
401
402 /*
403  * change queue's owner and permission
404  */
405 int snd_seq_queue_set_owner(int queueid, int client, int locked)
406 {
407         struct snd_seq_queue *q = queueptr(queueid);
408         unsigned long flags;
409
410         if (q == NULL)
411                 return -EINVAL;
412
413         if (! queue_access_lock(q, client)) {
414                 queuefree(q);
415                 return -EPERM;
416         }
417
418         spin_lock_irqsave(&q->owner_lock, flags);
419         q->locked = locked ? 1 : 0;
420         q->owner = client;
421         spin_unlock_irqrestore(&q->owner_lock, flags);
422         queue_access_unlock(q);
423         queuefree(q);
424
425         return 0;
426 }
427
428
429 /*----------------------------------------------------------------*/
430
431 /* open timer -
432  * q->use mutex should be down before calling this function to avoid
433  * confliction with snd_seq_queue_use()
434  */
435 int snd_seq_queue_timer_open(int queueid)
436 {
437         int result = 0;
438         struct snd_seq_queue *queue;
439         struct snd_seq_timer *tmr;
440
441         queue = queueptr(queueid);
442         if (queue == NULL)
443                 return -EINVAL;
444         tmr = queue->timer;
445         if ((result = snd_seq_timer_open(queue)) < 0) {
446                 snd_seq_timer_defaults(tmr);
447                 result = snd_seq_timer_open(queue);
448         }
449         queuefree(queue);
450         return result;
451 }
452
453 /* close timer -
454  * q->use mutex should be down before calling this function
455  */
456 int snd_seq_queue_timer_close(int queueid)
457 {
458         struct snd_seq_queue *queue;
459         int result = 0;
460
461         queue = queueptr(queueid);
462         if (queue == NULL)
463                 return -EINVAL;
464         snd_seq_timer_close(queue);
465         queuefree(queue);
466         return result;
467 }
468
469 /* change queue tempo and ppq */
470 int snd_seq_queue_timer_set_tempo(int queueid, int client,
471                                   struct snd_seq_queue_tempo *info)
472 {
473         struct snd_seq_queue *q = queueptr(queueid);
474         int result;
475
476         if (q == NULL)
477                 return -EINVAL;
478         if (! queue_access_lock(q, client)) {
479                 queuefree(q);
480                 return -EPERM;
481         }
482
483         result = snd_seq_timer_set_tempo_ppq(q->timer, info->tempo, info->ppq);
484         if (result >= 0 && info->skew_base > 0)
485                 result = snd_seq_timer_set_skew(q->timer, info->skew_value,
486                                                 info->skew_base);
487         queue_access_unlock(q);
488         queuefree(q);
489         return result;
490 }
491
492 /* use or unuse this queue */
493 static void queue_use(struct snd_seq_queue *queue, int client, int use)
494 {
495         if (use) {
496                 if (!test_and_set_bit(client, queue->clients_bitmap))
497                         queue->clients++;
498         } else {
499                 if (test_and_clear_bit(client, queue->clients_bitmap))
500                         queue->clients--;
501         }
502         if (queue->clients) {
503                 if (use && queue->clients == 1)
504                         snd_seq_timer_defaults(queue->timer);
505                 snd_seq_timer_open(queue);
506         } else {
507                 snd_seq_timer_close(queue);
508         }
509 }
510
511 /* use or unuse this queue -
512  * if it is the first client, starts the timer.
513  * if it is not longer used by any clients, stop the timer.
514  */
515 int snd_seq_queue_use(int queueid, int client, int use)
516 {
517         struct snd_seq_queue *queue;
518
519         queue = queueptr(queueid);
520         if (queue == NULL)
521                 return -EINVAL;
522         mutex_lock(&queue->timer_mutex);
523         queue_use(queue, client, use);
524         mutex_unlock(&queue->timer_mutex);
525         queuefree(queue);
526         return 0;
527 }
528
529 /*
530  * check if queue is used by the client
531  * return negative value if the queue is invalid.
532  * return 0 if not used, 1 if used.
533  */
534 int snd_seq_queue_is_used(int queueid, int client)
535 {
536         struct snd_seq_queue *q;
537         int result;
538
539         q = queueptr(queueid);
540         if (q == NULL)
541                 return -EINVAL; /* invalid queue */
542         result = test_bit(client, q->clients_bitmap) ? 1 : 0;
543         queuefree(q);
544         return result;
545 }
546
547
548 /*----------------------------------------------------------------*/
549
550 /* notification that client has left the system -
551  * stop the timer on all queues owned by this client
552  */
553 void snd_seq_queue_client_termination(int client)
554 {
555         unsigned long flags;
556         int i;
557         struct snd_seq_queue *q;
558         bool matched;
559
560         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
561                 if ((q = queueptr(i)) == NULL)
562                         continue;
563                 spin_lock_irqsave(&q->owner_lock, flags);
564                 matched = (q->owner == client);
565                 if (matched)
566                         q->klocked = 1;
567                 spin_unlock_irqrestore(&q->owner_lock, flags);
568                 if (matched) {
569                         if (q->timer->running)
570                                 snd_seq_timer_stop(q->timer);
571                         snd_seq_timer_reset(q->timer);
572                 }
573                 queuefree(q);
574         }
575 }
576
577 /* final stage notification -
578  * remove cells for no longer exist client (for non-owned queue)
579  * or delete this queue (for owned queue)
580  */
581 void snd_seq_queue_client_leave(int client)
582 {
583         int i;
584         struct snd_seq_queue *q;
585
586         /* delete own queues from queue list */
587         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
588                 if ((q = queue_list_remove(i, client)) != NULL)
589                         queue_delete(q);
590         }
591
592         /* remove cells from existing queues -
593          * they are not owned by this client
594          */
595         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
596                 if ((q = queueptr(i)) == NULL)
597                         continue;
598                 if (test_bit(client, q->clients_bitmap)) {
599                         snd_seq_prioq_leave(q->tickq, client, 0);
600                         snd_seq_prioq_leave(q->timeq, client, 0);
601                         snd_seq_queue_use(q->queue, client, 0);
602                 }
603                 queuefree(q);
604         }
605 }
606
607
608
609 /*----------------------------------------------------------------*/
610
611 /* remove cells from all queues */
612 void snd_seq_queue_client_leave_cells(int client)
613 {
614         int i;
615         struct snd_seq_queue *q;
616
617         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
618                 if ((q = queueptr(i)) == NULL)
619                         continue;
620                 snd_seq_prioq_leave(q->tickq, client, 0);
621                 snd_seq_prioq_leave(q->timeq, client, 0);
622                 queuefree(q);
623         }
624 }
625
626 /* remove cells based on flush criteria */
627 void snd_seq_queue_remove_cells(int client, struct snd_seq_remove_events *info)
628 {
629         int i;
630         struct snd_seq_queue *q;
631
632         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
633                 if ((q = queueptr(i)) == NULL)
634                         continue;
635                 if (test_bit(client, q->clients_bitmap) &&
636                     (! (info->remove_mode & SNDRV_SEQ_REMOVE_DEST) ||
637                      q->queue == info->queue)) {
638                         snd_seq_prioq_remove_events(q->tickq, client, info);
639                         snd_seq_prioq_remove_events(q->timeq, client, info);
640                 }
641                 queuefree(q);
642         }
643 }
644
645 /*----------------------------------------------------------------*/
646
647 /*
648  * send events to all subscribed ports
649  */
650 static void queue_broadcast_event(struct snd_seq_queue *q, struct snd_seq_event *ev,
651                                   int atomic, int hop)
652 {
653         struct snd_seq_event sev;
654
655         sev = *ev;
656         
657         sev.flags = SNDRV_SEQ_TIME_STAMP_TICK|SNDRV_SEQ_TIME_MODE_ABS;
658         sev.time.tick = q->timer->tick.cur_tick;
659         sev.queue = q->queue;
660         sev.data.queue.queue = q->queue;
661
662         /* broadcast events from Timer port */
663         sev.source.client = SNDRV_SEQ_CLIENT_SYSTEM;
664         sev.source.port = SNDRV_SEQ_PORT_SYSTEM_TIMER;
665         sev.dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS;
666         snd_seq_kernel_client_dispatch(SNDRV_SEQ_CLIENT_SYSTEM, &sev, atomic, hop);
667 }
668
669 /*
670  * process a received queue-control event.
671  * this function is exported for seq_sync.c.
672  */
673 static void snd_seq_queue_process_event(struct snd_seq_queue *q,
674                                         struct snd_seq_event *ev,
675                                         int atomic, int hop)
676 {
677         switch (ev->type) {
678         case SNDRV_SEQ_EVENT_START:
679                 snd_seq_prioq_leave(q->tickq, ev->source.client, 1);
680                 snd_seq_prioq_leave(q->timeq, ev->source.client, 1);
681                 if (! snd_seq_timer_start(q->timer))
682                         queue_broadcast_event(q, ev, atomic, hop);
683                 break;
684
685         case SNDRV_SEQ_EVENT_CONTINUE:
686                 if (! snd_seq_timer_continue(q->timer))
687                         queue_broadcast_event(q, ev, atomic, hop);
688                 break;
689
690         case SNDRV_SEQ_EVENT_STOP:
691                 snd_seq_timer_stop(q->timer);
692                 queue_broadcast_event(q, ev, atomic, hop);
693                 break;
694
695         case SNDRV_SEQ_EVENT_TEMPO:
696                 snd_seq_timer_set_tempo(q->timer, ev->data.queue.param.value);
697                 queue_broadcast_event(q, ev, atomic, hop);
698                 break;
699
700         case SNDRV_SEQ_EVENT_SETPOS_TICK:
701                 if (snd_seq_timer_set_position_tick(q->timer, ev->data.queue.param.time.tick) == 0) {
702                         queue_broadcast_event(q, ev, atomic, hop);
703                 }
704                 break;
705
706         case SNDRV_SEQ_EVENT_SETPOS_TIME:
707                 if (snd_seq_timer_set_position_time(q->timer, ev->data.queue.param.time.time) == 0) {
708                         queue_broadcast_event(q, ev, atomic, hop);
709                 }
710                 break;
711         case SNDRV_SEQ_EVENT_QUEUE_SKEW:
712                 if (snd_seq_timer_set_skew(q->timer,
713                                            ev->data.queue.param.skew.value,
714                                            ev->data.queue.param.skew.base) == 0) {
715                         queue_broadcast_event(q, ev, atomic, hop);
716                 }
717                 break;
718         }
719 }
720
721
722 /*
723  * Queue control via timer control port:
724  * this function is exported as a callback of timer port.
725  */
726 int snd_seq_control_queue(struct snd_seq_event *ev, int atomic, int hop)
727 {
728         struct snd_seq_queue *q;
729
730         if (snd_BUG_ON(!ev))
731                 return -EINVAL;
732         q = queueptr(ev->data.queue.queue);
733
734         if (q == NULL)
735                 return -EINVAL;
736
737         if (! queue_access_lock(q, ev->source.client)) {
738                 queuefree(q);
739                 return -EPERM;
740         }
741
742         snd_seq_queue_process_event(q, ev, atomic, hop);
743
744         queue_access_unlock(q);
745         queuefree(q);
746         return 0;
747 }
748
749
750 /*----------------------------------------------------------------*/
751
752 #ifdef CONFIG_SND_PROC_FS
753 /* exported to seq_info.c */
754 void snd_seq_info_queues_read(struct snd_info_entry *entry, 
755                               struct snd_info_buffer *buffer)
756 {
757         int i, bpm;
758         struct snd_seq_queue *q;
759         struct snd_seq_timer *tmr;
760         bool locked;
761         int owner;
762
763         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
764                 if ((q = queueptr(i)) == NULL)
765                         continue;
766
767                 tmr = q->timer;
768                 if (tmr->tempo)
769                         bpm = 60000000 / tmr->tempo;
770                 else
771                         bpm = 0;
772
773                 spin_lock_irq(&q->owner_lock);
774                 locked = q->locked;
775                 owner = q->owner;
776                 spin_unlock_irq(&q->owner_lock);
777
778                 snd_iprintf(buffer, "queue %d: [%s]\n", q->queue, q->name);
779                 snd_iprintf(buffer, "owned by client    : %d\n", owner);
780                 snd_iprintf(buffer, "lock status        : %s\n", locked ? "Locked" : "Free");
781                 snd_iprintf(buffer, "queued time events : %d\n", snd_seq_prioq_avail(q->timeq));
782                 snd_iprintf(buffer, "queued tick events : %d\n", snd_seq_prioq_avail(q->tickq));
783                 snd_iprintf(buffer, "timer state        : %s\n", tmr->running ? "Running" : "Stopped");
784                 snd_iprintf(buffer, "timer PPQ          : %d\n", tmr->ppq);
785                 snd_iprintf(buffer, "current tempo      : %d\n", tmr->tempo);
786                 snd_iprintf(buffer, "current BPM        : %d\n", bpm);
787                 snd_iprintf(buffer, "current time       : %d.%09d s\n", tmr->cur_time.tv_sec, tmr->cur_time.tv_nsec);
788                 snd_iprintf(buffer, "current tick       : %d\n", tmr->tick.cur_tick);
789                 snd_iprintf(buffer, "\n");
790                 queuefree(q);
791         }
792 }
793 #endif /* CONFIG_SND_PROC_FS */
794