GNU Linux-libre 4.19.211-gnu1
[releases.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         snd_seq_tick_time_t cur_tick;
255         snd_seq_real_time_t cur_time;
256
257         if (q == NULL)
258                 return;
259
260         /* make this function non-reentrant */
261         spin_lock_irqsave(&q->check_lock, flags);
262         if (q->check_blocked) {
263                 q->check_again = 1;
264                 spin_unlock_irqrestore(&q->check_lock, flags);
265                 return;         /* other thread is already checking queues */
266         }
267         q->check_blocked = 1;
268         spin_unlock_irqrestore(&q->check_lock, flags);
269
270       __again:
271         /* Process tick queue... */
272         cur_tick = snd_seq_timer_get_cur_tick(q->timer);
273         for (;;) {
274                 cell = snd_seq_prioq_cell_out(q->tickq, &cur_tick);
275                 if (!cell)
276                         break;
277                 snd_seq_dispatch_event(cell, atomic, hop);
278         }
279
280         /* Process time queue... */
281         cur_time = snd_seq_timer_get_cur_time(q->timer, false);
282         for (;;) {
283                 cell = snd_seq_prioq_cell_out(q->timeq, &cur_time);
284                 if (!cell)
285                         break;
286                 snd_seq_dispatch_event(cell, atomic, hop);
287         }
288
289         /* free lock */
290         spin_lock_irqsave(&q->check_lock, flags);
291         if (q->check_again) {
292                 q->check_again = 0;
293                 spin_unlock_irqrestore(&q->check_lock, flags);
294                 goto __again;
295         }
296         q->check_blocked = 0;
297         spin_unlock_irqrestore(&q->check_lock, flags);
298 }
299
300
301 /* enqueue a event to singe queue */
302 int snd_seq_enqueue_event(struct snd_seq_event_cell *cell, int atomic, int hop)
303 {
304         int dest, err;
305         struct snd_seq_queue *q;
306
307         if (snd_BUG_ON(!cell))
308                 return -EINVAL;
309         dest = cell->event.queue;       /* destination queue */
310         q = queueptr(dest);
311         if (q == NULL)
312                 return -EINVAL;
313         /* handle relative time stamps, convert them into absolute */
314         if ((cell->event.flags & SNDRV_SEQ_TIME_MODE_MASK) == SNDRV_SEQ_TIME_MODE_REL) {
315                 switch (cell->event.flags & SNDRV_SEQ_TIME_STAMP_MASK) {
316                 case SNDRV_SEQ_TIME_STAMP_TICK:
317                         cell->event.time.tick += q->timer->tick.cur_tick;
318                         break;
319
320                 case SNDRV_SEQ_TIME_STAMP_REAL:
321                         snd_seq_inc_real_time(&cell->event.time.time,
322                                               &q->timer->cur_time);
323                         break;
324                 }
325                 cell->event.flags &= ~SNDRV_SEQ_TIME_MODE_MASK;
326                 cell->event.flags |= SNDRV_SEQ_TIME_MODE_ABS;
327         }
328         /* enqueue event in the real-time or midi queue */
329         switch (cell->event.flags & SNDRV_SEQ_TIME_STAMP_MASK) {
330         case SNDRV_SEQ_TIME_STAMP_TICK:
331                 err = snd_seq_prioq_cell_in(q->tickq, cell);
332                 break;
333
334         case SNDRV_SEQ_TIME_STAMP_REAL:
335         default:
336                 err = snd_seq_prioq_cell_in(q->timeq, cell);
337                 break;
338         }
339
340         if (err < 0) {
341                 queuefree(q); /* unlock */
342                 return err;
343         }
344
345         /* trigger dispatching */
346         snd_seq_check_queue(q, atomic, hop);
347
348         queuefree(q); /* unlock */
349
350         return 0;
351 }
352
353
354 /*----------------------------------------------------------------*/
355
356 static inline int check_access(struct snd_seq_queue *q, int client)
357 {
358         return (q->owner == client) || (!q->locked && !q->klocked);
359 }
360
361 /* check if the client has permission to modify queue parameters.
362  * if it does, lock the queue
363  */
364 static int queue_access_lock(struct snd_seq_queue *q, int client)
365 {
366         unsigned long flags;
367         int access_ok;
368         
369         spin_lock_irqsave(&q->owner_lock, flags);
370         access_ok = check_access(q, client);
371         if (access_ok)
372                 q->klocked = 1;
373         spin_unlock_irqrestore(&q->owner_lock, flags);
374         return access_ok;
375 }
376
377 /* unlock the queue */
378 static inline void queue_access_unlock(struct snd_seq_queue *q)
379 {
380         unsigned long flags;
381
382         spin_lock_irqsave(&q->owner_lock, flags);
383         q->klocked = 0;
384         spin_unlock_irqrestore(&q->owner_lock, flags);
385 }
386
387 /* exported - only checking permission */
388 int snd_seq_queue_check_access(int queueid, int client)
389 {
390         struct snd_seq_queue *q = queueptr(queueid);
391         int access_ok;
392         unsigned long flags;
393
394         if (! q)
395                 return 0;
396         spin_lock_irqsave(&q->owner_lock, flags);
397         access_ok = check_access(q, client);
398         spin_unlock_irqrestore(&q->owner_lock, flags);
399         queuefree(q);
400         return access_ok;
401 }
402
403 /*----------------------------------------------------------------*/
404
405 /*
406  * change queue's owner and permission
407  */
408 int snd_seq_queue_set_owner(int queueid, int client, int locked)
409 {
410         struct snd_seq_queue *q = queueptr(queueid);
411         unsigned long flags;
412
413         if (q == NULL)
414                 return -EINVAL;
415
416         if (! queue_access_lock(q, client)) {
417                 queuefree(q);
418                 return -EPERM;
419         }
420
421         spin_lock_irqsave(&q->owner_lock, flags);
422         q->locked = locked ? 1 : 0;
423         q->owner = client;
424         spin_unlock_irqrestore(&q->owner_lock, flags);
425         queue_access_unlock(q);
426         queuefree(q);
427
428         return 0;
429 }
430
431
432 /*----------------------------------------------------------------*/
433
434 /* open timer -
435  * q->use mutex should be down before calling this function to avoid
436  * confliction with snd_seq_queue_use()
437  */
438 int snd_seq_queue_timer_open(int queueid)
439 {
440         int result = 0;
441         struct snd_seq_queue *queue;
442         struct snd_seq_timer *tmr;
443
444         queue = queueptr(queueid);
445         if (queue == NULL)
446                 return -EINVAL;
447         tmr = queue->timer;
448         if ((result = snd_seq_timer_open(queue)) < 0) {
449                 snd_seq_timer_defaults(tmr);
450                 result = snd_seq_timer_open(queue);
451         }
452         queuefree(queue);
453         return result;
454 }
455
456 /* close timer -
457  * q->use mutex should be down before calling this function
458  */
459 int snd_seq_queue_timer_close(int queueid)
460 {
461         struct snd_seq_queue *queue;
462         int result = 0;
463
464         queue = queueptr(queueid);
465         if (queue == NULL)
466                 return -EINVAL;
467         snd_seq_timer_close(queue);
468         queuefree(queue);
469         return result;
470 }
471
472 /* change queue tempo and ppq */
473 int snd_seq_queue_timer_set_tempo(int queueid, int client,
474                                   struct snd_seq_queue_tempo *info)
475 {
476         struct snd_seq_queue *q = queueptr(queueid);
477         int result;
478
479         if (q == NULL)
480                 return -EINVAL;
481         if (! queue_access_lock(q, client)) {
482                 queuefree(q);
483                 return -EPERM;
484         }
485
486         result = snd_seq_timer_set_tempo_ppq(q->timer, info->tempo, info->ppq);
487         if (result >= 0 && info->skew_base > 0)
488                 result = snd_seq_timer_set_skew(q->timer, info->skew_value,
489                                                 info->skew_base);
490         queue_access_unlock(q);
491         queuefree(q);
492         return result;
493 }
494
495 /* use or unuse this queue */
496 static void queue_use(struct snd_seq_queue *queue, int client, int use)
497 {
498         if (use) {
499                 if (!test_and_set_bit(client, queue->clients_bitmap))
500                         queue->clients++;
501         } else {
502                 if (test_and_clear_bit(client, queue->clients_bitmap))
503                         queue->clients--;
504         }
505         if (queue->clients) {
506                 if (use && queue->clients == 1)
507                         snd_seq_timer_defaults(queue->timer);
508                 snd_seq_timer_open(queue);
509         } else {
510                 snd_seq_timer_close(queue);
511         }
512 }
513
514 /* use or unuse this queue -
515  * if it is the first client, starts the timer.
516  * if it is not longer used by any clients, stop the timer.
517  */
518 int snd_seq_queue_use(int queueid, int client, int use)
519 {
520         struct snd_seq_queue *queue;
521
522         queue = queueptr(queueid);
523         if (queue == NULL)
524                 return -EINVAL;
525         mutex_lock(&queue->timer_mutex);
526         queue_use(queue, client, use);
527         mutex_unlock(&queue->timer_mutex);
528         queuefree(queue);
529         return 0;
530 }
531
532 /*
533  * check if queue is used by the client
534  * return negative value if the queue is invalid.
535  * return 0 if not used, 1 if used.
536  */
537 int snd_seq_queue_is_used(int queueid, int client)
538 {
539         struct snd_seq_queue *q;
540         int result;
541
542         q = queueptr(queueid);
543         if (q == NULL)
544                 return -EINVAL; /* invalid queue */
545         result = test_bit(client, q->clients_bitmap) ? 1 : 0;
546         queuefree(q);
547         return result;
548 }
549
550
551 /*----------------------------------------------------------------*/
552
553 /* notification that client has left the system -
554  * stop the timer on all queues owned by this client
555  */
556 void snd_seq_queue_client_termination(int client)
557 {
558         unsigned long flags;
559         int i;
560         struct snd_seq_queue *q;
561         bool matched;
562
563         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
564                 if ((q = queueptr(i)) == NULL)
565                         continue;
566                 spin_lock_irqsave(&q->owner_lock, flags);
567                 matched = (q->owner == client);
568                 if (matched)
569                         q->klocked = 1;
570                 spin_unlock_irqrestore(&q->owner_lock, flags);
571                 if (matched) {
572                         if (q->timer->running)
573                                 snd_seq_timer_stop(q->timer);
574                         snd_seq_timer_reset(q->timer);
575                 }
576                 queuefree(q);
577         }
578 }
579
580 /* final stage notification -
581  * remove cells for no longer exist client (for non-owned queue)
582  * or delete this queue (for owned queue)
583  */
584 void snd_seq_queue_client_leave(int client)
585 {
586         int i;
587         struct snd_seq_queue *q;
588
589         /* delete own queues from queue list */
590         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
591                 if ((q = queue_list_remove(i, client)) != NULL)
592                         queue_delete(q);
593         }
594
595         /* remove cells from existing queues -
596          * they are not owned by this client
597          */
598         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
599                 if ((q = queueptr(i)) == NULL)
600                         continue;
601                 if (test_bit(client, q->clients_bitmap)) {
602                         snd_seq_prioq_leave(q->tickq, client, 0);
603                         snd_seq_prioq_leave(q->timeq, client, 0);
604                         snd_seq_queue_use(q->queue, client, 0);
605                 }
606                 queuefree(q);
607         }
608 }
609
610
611
612 /*----------------------------------------------------------------*/
613
614 /* remove cells from all queues */
615 void snd_seq_queue_client_leave_cells(int client)
616 {
617         int i;
618         struct snd_seq_queue *q;
619
620         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
621                 if ((q = queueptr(i)) == NULL)
622                         continue;
623                 snd_seq_prioq_leave(q->tickq, client, 0);
624                 snd_seq_prioq_leave(q->timeq, client, 0);
625                 queuefree(q);
626         }
627 }
628
629 /* remove cells based on flush criteria */
630 void snd_seq_queue_remove_cells(int client, struct snd_seq_remove_events *info)
631 {
632         int i;
633         struct snd_seq_queue *q;
634
635         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
636                 if ((q = queueptr(i)) == NULL)
637                         continue;
638                 if (test_bit(client, q->clients_bitmap) &&
639                     (! (info->remove_mode & SNDRV_SEQ_REMOVE_DEST) ||
640                      q->queue == info->queue)) {
641                         snd_seq_prioq_remove_events(q->tickq, client, info);
642                         snd_seq_prioq_remove_events(q->timeq, client, info);
643                 }
644                 queuefree(q);
645         }
646 }
647
648 /*----------------------------------------------------------------*/
649
650 /*
651  * send events to all subscribed ports
652  */
653 static void queue_broadcast_event(struct snd_seq_queue *q, struct snd_seq_event *ev,
654                                   int atomic, int hop)
655 {
656         struct snd_seq_event sev;
657
658         sev = *ev;
659         
660         sev.flags = SNDRV_SEQ_TIME_STAMP_TICK|SNDRV_SEQ_TIME_MODE_ABS;
661         sev.time.tick = q->timer->tick.cur_tick;
662         sev.queue = q->queue;
663         sev.data.queue.queue = q->queue;
664
665         /* broadcast events from Timer port */
666         sev.source.client = SNDRV_SEQ_CLIENT_SYSTEM;
667         sev.source.port = SNDRV_SEQ_PORT_SYSTEM_TIMER;
668         sev.dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS;
669         snd_seq_kernel_client_dispatch(SNDRV_SEQ_CLIENT_SYSTEM, &sev, atomic, hop);
670 }
671
672 /*
673  * process a received queue-control event.
674  * this function is exported for seq_sync.c.
675  */
676 static void snd_seq_queue_process_event(struct snd_seq_queue *q,
677                                         struct snd_seq_event *ev,
678                                         int atomic, int hop)
679 {
680         switch (ev->type) {
681         case SNDRV_SEQ_EVENT_START:
682                 snd_seq_prioq_leave(q->tickq, ev->source.client, 1);
683                 snd_seq_prioq_leave(q->timeq, ev->source.client, 1);
684                 if (! snd_seq_timer_start(q->timer))
685                         queue_broadcast_event(q, ev, atomic, hop);
686                 break;
687
688         case SNDRV_SEQ_EVENT_CONTINUE:
689                 if (! snd_seq_timer_continue(q->timer))
690                         queue_broadcast_event(q, ev, atomic, hop);
691                 break;
692
693         case SNDRV_SEQ_EVENT_STOP:
694                 snd_seq_timer_stop(q->timer);
695                 queue_broadcast_event(q, ev, atomic, hop);
696                 break;
697
698         case SNDRV_SEQ_EVENT_TEMPO:
699                 snd_seq_timer_set_tempo(q->timer, ev->data.queue.param.value);
700                 queue_broadcast_event(q, ev, atomic, hop);
701                 break;
702
703         case SNDRV_SEQ_EVENT_SETPOS_TICK:
704                 if (snd_seq_timer_set_position_tick(q->timer, ev->data.queue.param.time.tick) == 0) {
705                         queue_broadcast_event(q, ev, atomic, hop);
706                 }
707                 break;
708
709         case SNDRV_SEQ_EVENT_SETPOS_TIME:
710                 if (snd_seq_timer_set_position_time(q->timer, ev->data.queue.param.time.time) == 0) {
711                         queue_broadcast_event(q, ev, atomic, hop);
712                 }
713                 break;
714         case SNDRV_SEQ_EVENT_QUEUE_SKEW:
715                 if (snd_seq_timer_set_skew(q->timer,
716                                            ev->data.queue.param.skew.value,
717                                            ev->data.queue.param.skew.base) == 0) {
718                         queue_broadcast_event(q, ev, atomic, hop);
719                 }
720                 break;
721         }
722 }
723
724
725 /*
726  * Queue control via timer control port:
727  * this function is exported as a callback of timer port.
728  */
729 int snd_seq_control_queue(struct snd_seq_event *ev, int atomic, int hop)
730 {
731         struct snd_seq_queue *q;
732
733         if (snd_BUG_ON(!ev))
734                 return -EINVAL;
735         q = queueptr(ev->data.queue.queue);
736
737         if (q == NULL)
738                 return -EINVAL;
739
740         if (! queue_access_lock(q, ev->source.client)) {
741                 queuefree(q);
742                 return -EPERM;
743         }
744
745         snd_seq_queue_process_event(q, ev, atomic, hop);
746
747         queue_access_unlock(q);
748         queuefree(q);
749         return 0;
750 }
751
752
753 /*----------------------------------------------------------------*/
754
755 #ifdef CONFIG_SND_PROC_FS
756 /* exported to seq_info.c */
757 void snd_seq_info_queues_read(struct snd_info_entry *entry, 
758                               struct snd_info_buffer *buffer)
759 {
760         int i, bpm;
761         struct snd_seq_queue *q;
762         struct snd_seq_timer *tmr;
763         bool locked;
764         int owner;
765
766         for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
767                 if ((q = queueptr(i)) == NULL)
768                         continue;
769
770                 tmr = q->timer;
771                 if (tmr->tempo)
772                         bpm = 60000000 / tmr->tempo;
773                 else
774                         bpm = 0;
775
776                 spin_lock_irq(&q->owner_lock);
777                 locked = q->locked;
778                 owner = q->owner;
779                 spin_unlock_irq(&q->owner_lock);
780
781                 snd_iprintf(buffer, "queue %d: [%s]\n", q->queue, q->name);
782                 snd_iprintf(buffer, "owned by client    : %d\n", owner);
783                 snd_iprintf(buffer, "lock status        : %s\n", locked ? "Locked" : "Free");
784                 snd_iprintf(buffer, "queued time events : %d\n", snd_seq_prioq_avail(q->timeq));
785                 snd_iprintf(buffer, "queued tick events : %d\n", snd_seq_prioq_avail(q->tickq));
786                 snd_iprintf(buffer, "timer state        : %s\n", tmr->running ? "Running" : "Stopped");
787                 snd_iprintf(buffer, "timer PPQ          : %d\n", tmr->ppq);
788                 snd_iprintf(buffer, "current tempo      : %d\n", tmr->tempo);
789                 snd_iprintf(buffer, "current BPM        : %d\n", bpm);
790                 snd_iprintf(buffer, "current time       : %d.%09d s\n", tmr->cur_time.tv_sec, tmr->cur_time.tv_nsec);
791                 snd_iprintf(buffer, "current tick       : %d\n", tmr->tick.cur_tick);
792                 snd_iprintf(buffer, "\n");
793                 queuefree(q);
794         }
795 }
796 #endif /* CONFIG_SND_PROC_FS */
797