3 * Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
4 * Jaroslav Kysela <perex@suse.cz>
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 <sound/core.h>
25 #include <linux/slab.h>
26 #include "seq_timer.h"
27 #include "seq_queue.h"
30 extern int seq_default_timer_class
;
31 extern int seq_default_timer_sclass
;
32 extern int seq_default_timer_card
;
33 extern int seq_default_timer_device
;
34 extern int seq_default_timer_subdevice
;
35 extern int seq_default_timer_resolution
;
37 #define SKEW_BASE 0x10000 /* 16bit shift */
39 void snd_seq_timer_set_tick_resolution(seq_timer_tick_t
*tick
, int tempo
, int ppq
, int nticks
)
42 tick
->resolution
= (tempo
* 1000) / ppq
;
44 /* might overflow.. */
48 tick
->resolution
= (tempo
/ ppq
) * 1000;
49 tick
->resolution
+= s
;
51 if (tick
->resolution
<= 0)
53 tick
->resolution
*= nticks
;
54 snd_seq_timer_update_tick(tick
, 0);
57 /* create new timer (constructor) */
58 seq_timer_t
*snd_seq_timer_new(void)
62 tmr
= kcalloc(1, sizeof(*tmr
), GFP_KERNEL
);
64 snd_printd("malloc failed for snd_seq_timer_new() \n");
67 spin_lock_init(&tmr
->lock
);
69 /* reset setup to defaults */
70 snd_seq_timer_defaults(tmr
);
73 snd_seq_timer_reset(tmr
);
78 /* delete timer (destructor) */
79 void snd_seq_timer_delete(seq_timer_t
**tmr
)
81 seq_timer_t
*t
= *tmr
;
85 snd_printd("oops: snd_seq_timer_delete() called with NULL timer\n");
91 snd_seq_timer_stop(t
);
92 snd_seq_timer_reset(t
);
97 void snd_seq_timer_defaults(seq_timer_t
* tmr
)
100 tmr
->ppq
= 96; /* 96 PPQ */
101 tmr
->tempo
= 500000; /* 120 BPM */
102 snd_seq_timer_set_tick_resolution(&tmr
->tick
, tmr
->tempo
, tmr
->ppq
, 1);
105 tmr
->type
= SNDRV_SEQ_TIMER_ALSA
;
106 tmr
->alsa_id
.dev_class
= seq_default_timer_class
;
107 tmr
->alsa_id
.dev_sclass
= seq_default_timer_sclass
;
108 tmr
->alsa_id
.card
= seq_default_timer_card
;
109 tmr
->alsa_id
.device
= seq_default_timer_device
;
110 tmr
->alsa_id
.subdevice
= seq_default_timer_subdevice
;
111 tmr
->preferred_resolution
= seq_default_timer_resolution
;
113 tmr
->skew
= tmr
->skew_base
= SKEW_BASE
;
116 void snd_seq_timer_reset(seq_timer_t
* tmr
)
120 spin_lock_irqsave(&tmr
->lock
, flags
);
122 /* reset time & songposition */
123 tmr
->cur_time
.tv_sec
= 0;
124 tmr
->cur_time
.tv_nsec
= 0;
126 tmr
->tick
.cur_tick
= 0;
127 tmr
->tick
.fraction
= 0;
129 spin_unlock_irqrestore(&tmr
->lock
, flags
);
133 /* called by timer interrupt routine. the period time since previous invocation is passed */
134 static void snd_seq_timer_interrupt(snd_timer_instance_t
*timeri
,
135 unsigned long resolution
,
139 queue_t
*q
= (queue_t
*)timeri
->callback_data
;
151 if (tmr
->skew
!= tmr
->skew_base
) {
152 /* FIXME: assuming skew_base = 0x10000 */
153 resolution
= (resolution
>> 16) * tmr
->skew
+
154 (((resolution
& 0xffff) * tmr
->skew
) >> 16);
157 spin_lock_irqsave(&tmr
->lock
, flags
);
160 snd_seq_inc_time_nsec(&tmr
->cur_time
, resolution
);
162 /* calculate current tick */
163 snd_seq_timer_update_tick(&tmr
->tick
, resolution
);
165 /* register actual time of this timer update */
166 do_gettimeofday(&tmr
->last_update
);
168 spin_unlock_irqrestore(&tmr
->lock
, flags
);
170 /* check queues and dispatch events */
171 snd_seq_check_queue(q
, 1, 0);
174 /* set current tempo */
175 int snd_seq_timer_set_tempo(seq_timer_t
* tmr
, int tempo
)
179 snd_assert(tmr
, return -EINVAL
);
182 spin_lock_irqsave(&tmr
->lock
, flags
);
183 if ((unsigned int)tempo
!= tmr
->tempo
) {
185 snd_seq_timer_set_tick_resolution(&tmr
->tick
, tmr
->tempo
, tmr
->ppq
, 1);
187 spin_unlock_irqrestore(&tmr
->lock
, flags
);
191 /* set current ppq */
192 int snd_seq_timer_set_ppq(seq_timer_t
* tmr
, int ppq
)
196 snd_assert(tmr
, return -EINVAL
);
199 spin_lock_irqsave(&tmr
->lock
, flags
);
200 if (tmr
->running
&& (ppq
!= tmr
->ppq
)) {
201 /* refuse to change ppq on running timers */
202 /* because it will upset the song position (ticks) */
203 spin_unlock_irqrestore(&tmr
->lock
, flags
);
204 snd_printd("seq: cannot change ppq of a running timer\n");
209 snd_seq_timer_set_tick_resolution(&tmr
->tick
, tmr
->tempo
, tmr
->ppq
, 1);
210 spin_unlock_irqrestore(&tmr
->lock
, flags
);
214 /* set current tick position */
215 int snd_seq_timer_set_position_tick(seq_timer_t
*tmr
, snd_seq_tick_time_t position
)
219 snd_assert(tmr
, return -EINVAL
);
221 spin_lock_irqsave(&tmr
->lock
, flags
);
222 tmr
->tick
.cur_tick
= position
;
223 tmr
->tick
.fraction
= 0;
224 spin_unlock_irqrestore(&tmr
->lock
, flags
);
228 /* set current real-time position */
229 int snd_seq_timer_set_position_time(seq_timer_t
*tmr
, snd_seq_real_time_t position
)
233 snd_assert(tmr
, return -EINVAL
);
235 snd_seq_sanity_real_time(&position
);
236 spin_lock_irqsave(&tmr
->lock
, flags
);
237 tmr
->cur_time
= position
;
238 spin_unlock_irqrestore(&tmr
->lock
, flags
);
243 int snd_seq_timer_set_skew(seq_timer_t
*tmr
, unsigned int skew
, unsigned int base
)
247 snd_assert(tmr
, return -EINVAL
);
250 if (base
!= SKEW_BASE
) {
251 snd_printd("invalid skew base 0x%x\n", base
);
254 spin_lock_irqsave(&tmr
->lock
, flags
);
256 spin_unlock_irqrestore(&tmr
->lock
, flags
);
260 int snd_seq_timer_open(queue_t
*q
)
262 snd_timer_instance_t
*t
;
268 snd_assert(tmr
!= NULL
, return -EINVAL
);
271 sprintf(str
, "sequencer queue %i", q
->queue
);
272 if (tmr
->type
!= SNDRV_SEQ_TIMER_ALSA
) /* standard ALSA timer */
274 if (tmr
->alsa_id
.dev_class
!= SNDRV_TIMER_CLASS_SLAVE
)
275 tmr
->alsa_id
.dev_sclass
= SNDRV_TIMER_SCLASS_SEQUENCER
;
276 err
= snd_timer_open(&t
, str
, &tmr
->alsa_id
, q
->queue
);
277 if (err
< 0 && tmr
->alsa_id
.dev_class
!= SNDRV_TIMER_CLASS_SLAVE
) {
278 if (tmr
->alsa_id
.dev_class
!= SNDRV_TIMER_CLASS_GLOBAL
||
279 tmr
->alsa_id
.device
!= SNDRV_TIMER_GLOBAL_SYSTEM
) {
281 memset(&tid
, 0, sizeof(tid
));
282 tid
.dev_class
= SNDRV_TIMER_CLASS_GLOBAL
;
283 tid
.dev_sclass
= SNDRV_TIMER_SCLASS_SEQUENCER
;
285 tid
.device
= SNDRV_TIMER_GLOBAL_SYSTEM
;
286 err
= snd_timer_open(&t
, str
, &tid
, q
->queue
);
289 snd_printk(KERN_ERR
"seq fatal error: cannot create timer (%i)\n", err
);
293 t
->callback
= snd_seq_timer_interrupt
;
294 t
->callback_data
= q
;
295 t
->flags
|= SNDRV_TIMER_IFLG_AUTO
;
300 int snd_seq_timer_close(queue_t
*q
)
305 snd_assert(tmr
!= NULL
, return -EINVAL
);
307 snd_timer_stop(tmr
->timeri
);
308 snd_timer_close(tmr
->timeri
);
314 int snd_seq_timer_stop(seq_timer_t
* tmr
)
321 snd_timer_pause(tmr
->timeri
);
325 static int initialize_timer(seq_timer_t
*tmr
)
328 t
= tmr
->timeri
->timer
;
329 snd_assert(t
, return -EINVAL
);
332 if (tmr
->preferred_resolution
&&
333 ! (t
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
)) {
334 unsigned long r
= t
->hw
.resolution
;
335 if (! r
&& t
->hw
.c_resolution
)
336 r
= t
->hw
.c_resolution(t
);
338 tmr
->ticks
= (unsigned int)(1000000000uL / (r
* tmr
->preferred_resolution
));
343 tmr
->initialized
= 1;
347 int snd_seq_timer_start(seq_timer_t
* tmr
)
352 snd_seq_timer_stop(tmr
);
353 snd_seq_timer_reset(tmr
);
354 if (initialize_timer(tmr
) < 0)
356 snd_timer_start(tmr
->timeri
, tmr
->ticks
);
358 do_gettimeofday(&tmr
->last_update
);
362 int snd_seq_timer_continue(seq_timer_t
* tmr
)
368 if (! tmr
->initialized
) {
369 snd_seq_timer_reset(tmr
);
370 if (initialize_timer(tmr
) < 0)
373 snd_timer_start(tmr
->timeri
, tmr
->ticks
);
375 do_gettimeofday(&tmr
->last_update
);
379 /* return current 'real' time. use timeofday() to get better granularity. */
380 snd_seq_real_time_t
snd_seq_timer_get_cur_time(seq_timer_t
*tmr
)
382 snd_seq_real_time_t cur_time
;
384 cur_time
= tmr
->cur_time
;
388 do_gettimeofday(&tm
);
389 usec
= (int)(tm
.tv_usec
- tmr
->last_update
.tv_usec
);
391 cur_time
.tv_nsec
+= (1000000 + usec
) * 1000;
392 cur_time
.tv_sec
+= tm
.tv_sec
- tmr
->last_update
.tv_sec
- 1;
394 cur_time
.tv_nsec
+= usec
* 1000;
395 cur_time
.tv_sec
+= tm
.tv_sec
- tmr
->last_update
.tv_sec
;
397 snd_seq_sanity_real_time(&cur_time
);
403 /* TODO: use interpolation on tick queue (will only be useful for very
405 snd_seq_tick_time_t
snd_seq_timer_get_cur_tick(seq_timer_t
*tmr
)
407 return tmr
->tick
.cur_tick
;
411 /* exported to seq_info.c */
412 void snd_seq_info_timer_read(snd_info_entry_t
*entry
, snd_info_buffer_t
* buffer
)
417 snd_timer_instance_t
*ti
;
418 unsigned long resolution
;
420 for (idx
= 0; idx
< SNDRV_SEQ_MAX_QUEUES
; idx
++) {
424 if ((tmr
= q
->timer
) == NULL
||
425 (ti
= tmr
->timeri
) == NULL
) {
429 snd_iprintf(buffer
, "Timer for queue %i : %s\n", q
->queue
, ti
->timer
->name
);
430 resolution
= snd_timer_resolution(ti
) * tmr
->ticks
;
431 snd_iprintf(buffer
, " Period time : %lu.%09lu\n", resolution
/ 1000000000, resolution
% 1000000000);
432 snd_iprintf(buffer
, " Skew : %u / %u\n", tmr
->skew
, tmr
->skew_base
);