1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * ALSA sequencer Timing queue handling
4 * Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
5 *
6 * MAJOR CHANGES
7 * Nov. 13, 1999 Takashi Iwai <iwai@ww.uni-erlangen.de>
8 * - Queues are allocated dynamically via ioctl.
9 * - When owner client is deleted, all owned queues are deleted, too.
10 * - Owner of unlocked queue is kept unmodified even if it is
11 * manipulated by other clients.
12 * - Owner field in SET_QUEUE_OWNER ioctl must be identical with the
13 * caller client. i.e. Changing owner to a third client is not
14 * allowed.
15 *
16 * Aug. 30, 2000 Takashi Iwai
17 * - Queues are managed in static array again, but with better way.
18 * The API itself is identical.
19 * - The queue is locked when struct snd_seq_queue pointer is returned via
20 * queueptr(). This pointer *MUST* be released afterward by
21 * queuefree(ptr).
22 * - Addition of experimental sync support.
23 */
24
25 #include <linux/init.h>
26 #include <linux/slab.h>
27 #include <sound/core.h>
28
29 #include "seq_memory.h"
30 #include "seq_queue.h"
31 #include "seq_clientmgr.h"
32 #include "seq_fifo.h"
33 #include "seq_timer.h"
34 #include "seq_info.h"
35
36 /* list of allocated queues */
37 static struct snd_seq_queue *queue_list[SNDRV_SEQ_MAX_QUEUES];
38 static DEFINE_SPINLOCK(queue_list_lock);
39 /* number of queues allocated */
40 static int num_queues;
41
snd_seq_queue_get_cur_queues(void)42 int snd_seq_queue_get_cur_queues(void)
43 {
44 return num_queues;
45 }
46
47 /*----------------------------------------------------------------*/
48
49 /* assign queue id and insert to list */
queue_list_add(struct snd_seq_queue * q)50 static int queue_list_add(struct snd_seq_queue *q)
51 {
52 int i;
53 unsigned long flags;
54
55 spin_lock_irqsave(&queue_list_lock, flags);
56 for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
57 if (! queue_list[i]) {
58 queue_list[i] = q;
59 q->queue = i;
60 num_queues++;
61 spin_unlock_irqrestore(&queue_list_lock, flags);
62 return i;
63 }
64 }
65 spin_unlock_irqrestore(&queue_list_lock, flags);
66 return -1;
67 }
68
queue_list_remove(int id,int client)69 static struct snd_seq_queue *queue_list_remove(int id, int client)
70 {
71 struct snd_seq_queue *q;
72 unsigned long flags;
73
74 spin_lock_irqsave(&queue_list_lock, flags);
75 q = queue_list[id];
76 if (q) {
77 spin_lock(&q->owner_lock);
78 if (q->owner == client) {
79 /* found */
80 q->klocked = 1;
81 spin_unlock(&q->owner_lock);
82 queue_list[id] = NULL;
83 num_queues--;
84 spin_unlock_irqrestore(&queue_list_lock, flags);
85 return q;
86 }
87 spin_unlock(&q->owner_lock);
88 }
89 spin_unlock_irqrestore(&queue_list_lock, flags);
90 return NULL;
91 }
92
93 /*----------------------------------------------------------------*/
94
95 /* create new queue (constructor) */
queue_new(int owner,int locked)96 static struct snd_seq_queue *queue_new(int owner, int locked)
97 {
98 struct snd_seq_queue *q;
99
100 q = kzalloc(sizeof(*q), GFP_KERNEL);
101 if (!q)
102 return NULL;
103
104 spin_lock_init(&q->owner_lock);
105 spin_lock_init(&q->check_lock);
106 mutex_init(&q->timer_mutex);
107 snd_use_lock_init(&q->use_lock);
108 q->queue = -1;
109
110 q->tickq = snd_seq_prioq_new();
111 q->timeq = snd_seq_prioq_new();
112 q->timer = snd_seq_timer_new();
113 if (q->tickq == NULL || q->timeq == NULL || q->timer == NULL) {
114 snd_seq_prioq_delete(&q->tickq);
115 snd_seq_prioq_delete(&q->timeq);
116 snd_seq_timer_delete(&q->timer);
117 kfree(q);
118 return NULL;
119 }
120
121 q->owner = owner;
122 q->locked = locked;
123 q->klocked = 0;
124
125 return q;
126 }
127
128 /* delete queue (destructor) */
queue_delete(struct snd_seq_queue * q)129 static void queue_delete(struct snd_seq_queue *q)
130 {
131 /* stop and release the timer */
132 mutex_lock(&q->timer_mutex);
133 snd_seq_timer_stop(q->timer);
134 snd_seq_timer_close(q);
135 mutex_unlock(&q->timer_mutex);
136 /* wait until access free */
137 snd_use_lock_sync(&q->use_lock);
138 /* release resources... */
139 snd_seq_prioq_delete(&q->tickq);
140 snd_seq_prioq_delete(&q->timeq);
141 snd_seq_timer_delete(&q->timer);
142
143 kfree(q);
144 }
145
146
147 /*----------------------------------------------------------------*/
148
149 /* delete all existing queues */
snd_seq_queues_delete(void)150 void snd_seq_queues_delete(void)
151 {
152 int i;
153
154 /* clear list */
155 for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
156 if (queue_list[i])
157 queue_delete(queue_list[i]);
158 }
159 }
160
161 static void queue_use(struct snd_seq_queue *queue, int client, int use);
162
163 /* allocate a new queue -
164 * return pointer to new queue or ERR_PTR(-errno) for error
165 * The new queue's use_lock is set to 1. It is the caller's responsibility to
166 * call snd_use_lock_free(&q->use_lock).
167 */
snd_seq_queue_alloc(int client,int locked,unsigned int info_flags)168 struct snd_seq_queue *snd_seq_queue_alloc(int client, int locked, unsigned int info_flags)
169 {
170 struct snd_seq_queue *q;
171
172 q = queue_new(client, locked);
173 if (q == NULL)
174 return ERR_PTR(-ENOMEM);
175 q->info_flags = info_flags;
176 queue_use(q, client, 1);
177 snd_use_lock_use(&q->use_lock);
178 if (queue_list_add(q) < 0) {
179 snd_use_lock_free(&q->use_lock);
180 queue_delete(q);
181 return ERR_PTR(-ENOMEM);
182 }
183 return q;
184 }
185
186 /* delete a queue - queue must be owned by the client */
snd_seq_queue_delete(int client,int queueid)187 int snd_seq_queue_delete(int client, int queueid)
188 {
189 struct snd_seq_queue *q;
190
191 if (queueid < 0 || queueid >= SNDRV_SEQ_MAX_QUEUES)
192 return -EINVAL;
193 q = queue_list_remove(queueid, client);
194 if (q == NULL)
195 return -EINVAL;
196 queue_delete(q);
197
198 return 0;
199 }
200
201
202 /* return pointer to queue structure for specified id */
queueptr(int queueid)203 struct snd_seq_queue *queueptr(int queueid)
204 {
205 struct snd_seq_queue *q;
206 unsigned long flags;
207
208 if (queueid < 0 || queueid >= SNDRV_SEQ_MAX_QUEUES)
209 return NULL;
210 spin_lock_irqsave(&queue_list_lock, flags);
211 q = queue_list[queueid];
212 if (q)
213 snd_use_lock_use(&q->use_lock);
214 spin_unlock_irqrestore(&queue_list_lock, flags);
215 return q;
216 }
217
218 /* return the (first) queue matching with the specified name */
snd_seq_queue_find_name(char * name)219 struct snd_seq_queue *snd_seq_queue_find_name(char *name)
220 {
221 int i;
222 struct snd_seq_queue *q;
223
224 for (i = 0; i < SNDRV_SEQ_MAX_QUEUES; i++) {
225 if ((q = queueptr(i)) != NULL) {
226 if (strncmp(q->name, name, sizeof(q->name)) == 0)
227 return q;
228 queuefree(q);
229 }
230 }
231 return NULL;
232 }
233
234
235 /* -------------------------------------------------------- */
236
237 #define MAX_CELL_PROCESSES_IN_QUEUE 1000
238
snd_seq_check_queue(struct snd_seq_queue * q,int atomic,int hop)239 void snd_seq_check_queue(struct snd_seq_queue *q, int atomic, int hop)
240 {
241 unsigned long flags;
242 struct snd_seq_event_cell *cell;
243 snd_seq_tick_time_t cur_tick;
244 snd_seq_real_time_t cur_time;
245 int processed = 0;
246
247 if (q == NULL)
248 return;
249
250 /* make this function non-reentrant */
251 spin_lock_irqsave(&q->check_lock, flags);
252 if (q->check_blocked) {
253 q->check_again = 1;
254 spin_unlock_irqrestore(&q->check_lock, flags);
255 return; /* other thread is already checking queues */
256 }
257 q->check_blocked = 1;
258 spin_unlock_irqrestore(&q->check_lock, flags);
259
260 __again:
261 /* Process tick queue... */
262 cur_tick = snd_seq_timer_get_cur_tick(q->timer);
263 for (;;) {
264 cell = snd_seq_prioq_cell_out(q->tickq, &cur_tick);
265 if (!cell)
266 break;
267 snd_seq_dispatch_event(cell, atomic, hop);
268 if (++processed >= MAX_CELL_PROCESSES_IN_QUEUE)
269 goto out; /* the rest processed at the next batch */
270 }
271
272 /* Process time queue... */
273 cur_time = snd_seq_timer_get_cur_time(q->timer, false);
274 for (;;) {
275 cell = snd_seq_prioq_cell_out(q->timeq, &cur_time);
276 if (!cell)
277 break;
278 snd_seq_dispatch_event(cell, atomic, hop);
279 if (++processed >= MAX_CELL_PROCESSES_IN_QUEUE)
280 goto out; /* the rest processed at the next batch */
281 }
282
283 out:
284 /* free lock */
285 spin_lock_irqsave(&q->check_lock, flags);
286 if (q->check_again) {
287 q->check_again = 0;
288 if (processed < MAX_CELL_PROCESSES_IN_QUEUE) {
289 spin_unlock_irqrestore(&q->check_lock, flags);
290 goto __again;
291 }
292 }
293 q->check_blocked = 0;
294 spin_unlock_irqrestore(&q->check_lock, flags);
295 }
296
297
298 /* enqueue a event to singe queue */
snd_seq_enqueue_event(struct snd_seq_event_cell * cell,int atomic,int hop)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
check_access(struct snd_seq_queue * q,int client)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 */
queue_access_lock(struct snd_seq_queue * q,int client)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 */
queue_access_unlock(struct snd_seq_queue * q)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 */
snd_seq_queue_check_access(int queueid,int client)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 */
snd_seq_queue_set_owner(int queueid,int client,int locked)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 */
snd_seq_queue_timer_open(int queueid)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 */
snd_seq_queue_timer_close(int queueid)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 */
snd_seq_queue_timer_set_tempo(int queueid,int client,struct snd_seq_queue_tempo * info)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 */
queue_use(struct snd_seq_queue * queue,int client,int use)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 */
snd_seq_queue_use(int queueid,int client,int use)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 */
snd_seq_queue_is_used(int queueid,int client)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 */
snd_seq_queue_client_termination(int client)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 */
snd_seq_queue_client_leave(int client)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 */
snd_seq_queue_client_leave_cells(int client)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 */
snd_seq_queue_remove_cells(int client,struct snd_seq_remove_events * info)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 */
queue_broadcast_event(struct snd_seq_queue * q,struct snd_seq_event * ev,int atomic,int hop)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 */
snd_seq_queue_process_event(struct snd_seq_queue * q,struct snd_seq_event * ev,int atomic,int hop)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 */
snd_seq_control_queue(struct snd_seq_event * ev,int atomic,int hop)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 */
snd_seq_info_queues_read(struct snd_info_entry * entry,struct snd_info_buffer * buffer)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
795