Blame view

sound/core/seq/seq_timer.c 11 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  /*
   *   ALSA sequencer Timer
   *   Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
4
   *                              Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
   *
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *   GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
   *   along with this program; if not, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   *
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
24
25
26
  #include <sound/core.h>
  #include <linux/slab.h>
  #include "seq_timer.h"
  #include "seq_queue.h"
  #include "seq_info.h"
87ef7779b   Clemens Ladisch   [ALSA] seq-timer:...
27
28
29
30
  /* allowed sequencer timer frequencies, in Hz */
  #define MIN_FREQUENCY		10
  #define MAX_FREQUENCY		6250
  #define DEFAULT_FREQUENCY	1000
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
  #define SKEW_BASE	0x10000	/* 16bit shift */
a32f66746   Clemens Ladisch   sound: seq_timer:...
32
  static void snd_seq_timer_set_tick_resolution(struct snd_seq_timer *tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
  {
a32f66746   Clemens Ladisch   sound: seq_timer:...
34
35
  	if (tmr->tempo < 1000000)
  		tmr->tick.resolution = (tmr->tempo * 1000) / tmr->ppq;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
  	else {
  		/* might overflow.. */
  		unsigned int s;
a32f66746   Clemens Ladisch   sound: seq_timer:...
39
40
41
42
  		s = tmr->tempo % tmr->ppq;
  		s = (s * 1000) / tmr->ppq;
  		tmr->tick.resolution = (tmr->tempo / tmr->ppq) * 1000;
  		tmr->tick.resolution += s;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43
  	}
a32f66746   Clemens Ladisch   sound: seq_timer:...
44
45
46
  	if (tmr->tick.resolution <= 0)
  		tmr->tick.resolution = 1;
  	snd_seq_timer_update_tick(&tmr->tick, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
48
49
  }
  
  /* create new timer (constructor) */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
50
  struct snd_seq_timer *snd_seq_timer_new(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
  {
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
52
  	struct snd_seq_timer *tmr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
53
  	
ecca82b4b   Takashi Iwai   [ALSA] Replace wi...
54
  	tmr = kzalloc(sizeof(*tmr), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  	if (tmr == NULL) {
  		snd_printd("malloc failed for snd_seq_timer_new() 
  ");
  		return NULL;
  	}
  	spin_lock_init(&tmr->lock);
  
  	/* reset setup to defaults */
  	snd_seq_timer_defaults(tmr);
  	
  	/* reset time */
  	snd_seq_timer_reset(tmr);
  	
  	return tmr;
  }
  
  /* delete timer (destructor) */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
72
  void snd_seq_timer_delete(struct snd_seq_timer **tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
  {
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
74
  	struct snd_seq_timer *t = *tmr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  	*tmr = NULL;
  
  	if (t == NULL) {
  		snd_printd("oops: snd_seq_timer_delete() called with NULL timer
  ");
  		return;
  	}
  	t->running = 0;
  
  	/* reset time */
  	snd_seq_timer_stop(t);
  	snd_seq_timer_reset(t);
  
  	kfree(t);
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
90
  void snd_seq_timer_defaults(struct snd_seq_timer * tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
92
93
94
  {
  	/* setup defaults */
  	tmr->ppq = 96;		/* 96 PPQ */
  	tmr->tempo = 500000;	/* 120 BPM */
a32f66746   Clemens Ladisch   sound: seq_timer:...
95
  	snd_seq_timer_set_tick_resolution(tmr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
99
100
101
102
103
104
105
106
107
  	tmr->running = 0;
  
  	tmr->type = SNDRV_SEQ_TIMER_ALSA;
  	tmr->alsa_id.dev_class = seq_default_timer_class;
  	tmr->alsa_id.dev_sclass = seq_default_timer_sclass;
  	tmr->alsa_id.card = seq_default_timer_card;
  	tmr->alsa_id.device = seq_default_timer_device;
  	tmr->alsa_id.subdevice = seq_default_timer_subdevice;
  	tmr->preferred_resolution = seq_default_timer_resolution;
  
  	tmr->skew = tmr->skew_base = SKEW_BASE;
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
108
  void snd_seq_timer_reset(struct snd_seq_timer * tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  {
  	unsigned long flags;
  
  	spin_lock_irqsave(&tmr->lock, flags);
  
  	/* reset time & songposition */
  	tmr->cur_time.tv_sec = 0;
  	tmr->cur_time.tv_nsec = 0;
  
  	tmr->tick.cur_tick = 0;
  	tmr->tick.fraction = 0;
  
  	spin_unlock_irqrestore(&tmr->lock, flags);
  }
  
  
  /* called by timer interrupt routine. the period time since previous invocation is passed */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
126
  static void snd_seq_timer_interrupt(struct snd_timer_instance *timeri,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
127
128
129
130
  				    unsigned long resolution,
  				    unsigned long ticks)
  {
  	unsigned long flags;
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
131
132
  	struct snd_seq_queue *q = timeri->callback_data;
  	struct snd_seq_timer *tmr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
  
  	if (q == NULL)
  		return;
  	tmr = q->timer;
  	if (tmr == NULL)
  		return;
  	if (!tmr->running)
  		return;
  
  	resolution *= ticks;
  	if (tmr->skew != tmr->skew_base) {
  		/* FIXME: assuming skew_base = 0x10000 */
  		resolution = (resolution >> 16) * tmr->skew +
  			(((resolution & 0xffff) * tmr->skew) >> 16);
  	}
  
  	spin_lock_irqsave(&tmr->lock, flags);
  
  	/* update timer */
  	snd_seq_inc_time_nsec(&tmr->cur_time, resolution);
  
  	/* calculate current tick */
  	snd_seq_timer_update_tick(&tmr->tick, resolution);
  
  	/* register actual time of this timer update */
  	do_gettimeofday(&tmr->last_update);
  
  	spin_unlock_irqrestore(&tmr->lock, flags);
  
  	/* check queues and dispatch events */
  	snd_seq_check_queue(q, 1, 0);
  }
  
  /* set current tempo */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
167
  int snd_seq_timer_set_tempo(struct snd_seq_timer * tmr, int tempo)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
169
  {
  	unsigned long flags;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
170
171
  	if (snd_BUG_ON(!tmr))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
172
173
174
175
176
  	if (tempo <= 0)
  		return -EINVAL;
  	spin_lock_irqsave(&tmr->lock, flags);
  	if ((unsigned int)tempo != tmr->tempo) {
  		tmr->tempo = tempo;
a32f66746   Clemens Ladisch   sound: seq_timer:...
177
  		snd_seq_timer_set_tick_resolution(tmr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
178
179
180
181
182
183
  	}
  	spin_unlock_irqrestore(&tmr->lock, flags);
  	return 0;
  }
  
  /* set current ppq */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
184
  int snd_seq_timer_set_ppq(struct snd_seq_timer * tmr, int ppq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
185
186
  {
  	unsigned long flags;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
187
188
  	if (snd_BUG_ON(!tmr))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189
190
191
192
193
194
195
196
197
198
199
200
201
  	if (ppq <= 0)
  		return -EINVAL;
  	spin_lock_irqsave(&tmr->lock, flags);
  	if (tmr->running && (ppq != tmr->ppq)) {
  		/* refuse to change ppq on running timers */
  		/* because it will upset the song position (ticks) */
  		spin_unlock_irqrestore(&tmr->lock, flags);
  		snd_printd("seq: cannot change ppq of a running timer
  ");
  		return -EBUSY;
  	}
  
  	tmr->ppq = ppq;
a32f66746   Clemens Ladisch   sound: seq_timer:...
202
  	snd_seq_timer_set_tick_resolution(tmr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
203
204
205
206
207
  	spin_unlock_irqrestore(&tmr->lock, flags);
  	return 0;
  }
  
  /* set current tick position */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
208
209
  int snd_seq_timer_set_position_tick(struct snd_seq_timer *tmr,
  				    snd_seq_tick_time_t position)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
210
211
  {
  	unsigned long flags;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
212
213
  	if (snd_BUG_ON(!tmr))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
215
216
217
218
219
220
221
222
  
  	spin_lock_irqsave(&tmr->lock, flags);
  	tmr->tick.cur_tick = position;
  	tmr->tick.fraction = 0;
  	spin_unlock_irqrestore(&tmr->lock, flags);
  	return 0;
  }
  
  /* set current real-time position */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
223
224
  int snd_seq_timer_set_position_time(struct snd_seq_timer *tmr,
  				    snd_seq_real_time_t position)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
225
226
  {
  	unsigned long flags;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
227
228
  	if (snd_BUG_ON(!tmr))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229
230
231
232
233
234
235
236
237
  
  	snd_seq_sanity_real_time(&position);
  	spin_lock_irqsave(&tmr->lock, flags);
  	tmr->cur_time = position;
  	spin_unlock_irqrestore(&tmr->lock, flags);
  	return 0;
  }
  
  /* set timer skew */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
238
239
  int snd_seq_timer_set_skew(struct snd_seq_timer *tmr, unsigned int skew,
  			   unsigned int base)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
240
241
  {
  	unsigned long flags;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
242
243
  	if (snd_BUG_ON(!tmr))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
244
245
246
247
248
249
250
251
252
253
254
255
  
  	/* FIXME */
  	if (base != SKEW_BASE) {
  		snd_printd("invalid skew base 0x%x
  ", base);
  		return -EINVAL;
  	}
  	spin_lock_irqsave(&tmr->lock, flags);
  	tmr->skew = skew;
  	spin_unlock_irqrestore(&tmr->lock, flags);
  	return 0;
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
256
  int snd_seq_timer_open(struct snd_seq_queue *q)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
257
  {
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
258
259
  	struct snd_timer_instance *t;
  	struct snd_seq_timer *tmr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
260
261
262
263
  	char str[32];
  	int err;
  
  	tmr = q->timer;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
264
265
  	if (snd_BUG_ON(!tmr))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
266
267
268
269
270
271
272
273
274
275
276
  	if (tmr->timeri)
  		return -EBUSY;
  	sprintf(str, "sequencer queue %i", q->queue);
  	if (tmr->type != SNDRV_SEQ_TIMER_ALSA)	/* standard ALSA timer */
  		return -EINVAL;
  	if (tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
  		tmr->alsa_id.dev_sclass = SNDRV_TIMER_SCLASS_SEQUENCER;
  	err = snd_timer_open(&t, str, &tmr->alsa_id, q->queue);
  	if (err < 0 && tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_SLAVE) {
  		if (tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_GLOBAL ||
  		    tmr->alsa_id.device != SNDRV_TIMER_GLOBAL_SYSTEM) {
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
277
  			struct snd_timer_id tid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
  			memset(&tid, 0, sizeof(tid));
  			tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
  			tid.dev_sclass = SNDRV_TIMER_SCLASS_SEQUENCER;
  			tid.card = -1;
  			tid.device = SNDRV_TIMER_GLOBAL_SYSTEM;
  			err = snd_timer_open(&t, str, &tid, q->queue);
  		}
  		if (err < 0) {
  			snd_printk(KERN_ERR "seq fatal error: cannot create timer (%i)
  ", err);
  			return err;
  		}
  	}
  	t->callback = snd_seq_timer_interrupt;
  	t->callback_data = q;
  	t->flags |= SNDRV_TIMER_IFLG_AUTO;
  	tmr->timeri = t;
  	return 0;
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
297
  int snd_seq_timer_close(struct snd_seq_queue *q)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
  {
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
299
  	struct snd_seq_timer *tmr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
300
301
  	
  	tmr = q->timer;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
302
303
  	if (snd_BUG_ON(!tmr))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
304
305
306
307
308
309
310
  	if (tmr->timeri) {
  		snd_timer_stop(tmr->timeri);
  		snd_timer_close(tmr->timeri);
  		tmr->timeri = NULL;
  	}
  	return 0;
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
311
  int snd_seq_timer_stop(struct snd_seq_timer * tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
312
313
314
315
316
317
318
319
320
  {
  	if (! tmr->timeri)
  		return -EINVAL;
  	if (!tmr->running)
  		return 0;
  	tmr->running = 0;
  	snd_timer_pause(tmr->timeri);
  	return 0;
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
321
  static int initialize_timer(struct snd_seq_timer *tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
322
  {
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
323
  	struct snd_timer *t;
87ef7779b   Clemens Ladisch   [ALSA] seq-timer:...
324
  	unsigned long freq;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
325
  	t = tmr->timeri->timer;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
326
327
  	if (snd_BUG_ON(!t))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
328

87ef7779b   Clemens Ladisch   [ALSA] seq-timer:...
329
330
331
332
333
334
335
  	freq = tmr->preferred_resolution;
  	if (!freq)
  		freq = DEFAULT_FREQUENCY;
  	else if (freq < MIN_FREQUENCY)
  		freq = MIN_FREQUENCY;
  	else if (freq > MAX_FREQUENCY)
  		freq = MAX_FREQUENCY;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
336
  	tmr->ticks = 1;
87ef7779b   Clemens Ladisch   [ALSA] seq-timer:...
337
  	if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
338
339
340
341
  		unsigned long r = t->hw.resolution;
  		if (! r && t->hw.c_resolution)
  			r = t->hw.c_resolution(t);
  		if (r) {
87ef7779b   Clemens Ladisch   [ALSA] seq-timer:...
342
  			tmr->ticks = (unsigned int)(1000000000uL / (r * freq));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
343
344
345
346
347
348
349
  			if (! tmr->ticks)
  				tmr->ticks = 1;
  		}
  	}
  	tmr->initialized = 1;
  	return 0;
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
350
  int snd_seq_timer_start(struct snd_seq_timer * tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
351
352
353
354
355
356
357
358
359
360
361
362
363
  {
  	if (! tmr->timeri)
  		return -EINVAL;
  	if (tmr->running)
  		snd_seq_timer_stop(tmr);
  	snd_seq_timer_reset(tmr);
  	if (initialize_timer(tmr) < 0)
  		return -EINVAL;
  	snd_timer_start(tmr->timeri, tmr->ticks);
  	tmr->running = 1;
  	do_gettimeofday(&tmr->last_update);
  	return 0;
  }
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
364
  int snd_seq_timer_continue(struct snd_seq_timer * tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
  {
  	if (! tmr->timeri)
  		return -EINVAL;
  	if (tmr->running)
  		return -EBUSY;
  	if (! tmr->initialized) {
  		snd_seq_timer_reset(tmr);
  		if (initialize_timer(tmr) < 0)
  			return -EINVAL;
  	}
  	snd_timer_start(tmr->timeri, tmr->ticks);
  	tmr->running = 1;
  	do_gettimeofday(&tmr->last_update);
  	return 0;
  }
  
  /* return current 'real' time. use timeofday() to get better granularity. */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
382
  snd_seq_real_time_t snd_seq_timer_get_cur_time(struct snd_seq_timer *tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
  {
  	snd_seq_real_time_t cur_time;
  
  	cur_time = tmr->cur_time;
  	if (tmr->running) { 
  		struct timeval tm;
  		int usec;
  		do_gettimeofday(&tm);
  		usec = (int)(tm.tv_usec - tmr->last_update.tv_usec);
  		if (usec < 0) {
  			cur_time.tv_nsec += (1000000 + usec) * 1000;
  			cur_time.tv_sec += tm.tv_sec - tmr->last_update.tv_sec - 1;
  		} else {
  			cur_time.tv_nsec += usec * 1000;
  			cur_time.tv_sec += tm.tv_sec - tmr->last_update.tv_sec;
  		}
  		snd_seq_sanity_real_time(&cur_time);
  	}
                  
  	return cur_time;	
  }
  
  /* TODO: use interpolation on tick queue (will only be useful for very
   high PPQ values) */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
407
  snd_seq_tick_time_t snd_seq_timer_get_cur_tick(struct snd_seq_timer *tmr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
408
409
410
  {
  	return tmr->tick.cur_tick;
  }
04f141a88   Takashi Iwai   [ALSA] Optimize f...
411
  #ifdef CONFIG_PROC_FS
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
412
  /* exported to seq_info.c */
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
413
414
  void snd_seq_info_timer_read(struct snd_info_entry *entry,
  			     struct snd_info_buffer *buffer)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
415
416
  {
  	int idx;
c7e0b5bf9   Takashi Iwai   [ALSA] Remove xxx...
417
418
419
  	struct snd_seq_queue *q;
  	struct snd_seq_timer *tmr;
  	struct snd_timer_instance *ti;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
  	unsigned long resolution;
  	
  	for (idx = 0; idx < SNDRV_SEQ_MAX_QUEUES; idx++) {
  		q = queueptr(idx);
  		if (q == NULL)
  			continue;
  		if ((tmr = q->timer) == NULL ||
  		    (ti = tmr->timeri) == NULL) {
  			queuefree(q);
  			continue;
  		}
  		snd_iprintf(buffer, "Timer for queue %i : %s
  ", q->queue, ti->timer->name);
  		resolution = snd_timer_resolution(ti) * tmr->ticks;
  		snd_iprintf(buffer, "  Period time : %lu.%09lu
  ", resolution / 1000000000, resolution % 1000000000);
  		snd_iprintf(buffer, "  Skew : %u / %u
  ", tmr->skew, tmr->skew_base);
  		queuefree(q);
   	}
  }
04f141a88   Takashi Iwai   [ALSA] Optimize f...
441
  #endif /* CONFIG_PROC_FS */