Linux Audio

Check our new training course

Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 *   ALSA sequencer Timer
  4 *   Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
  5 *                              Jaroslav Kysela <perex@perex.cz>
  6 */
  7
  8#include <sound/core.h>
  9#include <linux/slab.h>
 10#include "seq_timer.h"
 11#include "seq_queue.h"
 12#include "seq_info.h"
 13
 14/* allowed sequencer timer frequencies, in Hz */
 15#define MIN_FREQUENCY		10
 16#define MAX_FREQUENCY		6250
 17#define DEFAULT_FREQUENCY	1000
 18
 19#define SKEW_BASE	0x10000	/* 16bit shift */
 20
 21static void snd_seq_timer_set_tick_resolution(struct snd_seq_timer *tmr)
 22{
 23	if (tmr->tempo < 1000000)
 24		tmr->tick.resolution = (tmr->tempo * 1000) / tmr->ppq;
 
 
 
 25	else {
 26		/* might overflow.. */
 27		unsigned int s;
 28		s = tmr->tempo % tmr->ppq;
 29		s = (s * 1000) / tmr->ppq;
 30		tmr->tick.resolution = (tmr->tempo / tmr->ppq) * 1000;
 31		tmr->tick.resolution += s;
 32	}
 33	if (tmr->tick.resolution <= 0)
 34		tmr->tick.resolution = 1;
 35	snd_seq_timer_update_tick(&tmr->tick, 0);
 36}
 37
 38/* create new timer (constructor) */
 39struct snd_seq_timer *snd_seq_timer_new(void)
 40{
 41	struct snd_seq_timer *tmr;
 42	
 43	tmr = kzalloc(sizeof(*tmr), GFP_KERNEL);
 44	if (!tmr)
 45		return NULL;
 46	spin_lock_init(&tmr->lock);
 47
 48	/* reset setup to defaults */
 49	snd_seq_timer_defaults(tmr);
 50	
 51	/* reset time */
 52	snd_seq_timer_reset(tmr);
 53	
 54	return tmr;
 55}
 56
 57/* delete timer (destructor) */
 58void snd_seq_timer_delete(struct snd_seq_timer **tmr)
 59{
 60	struct snd_seq_timer *t = *tmr;
 61	*tmr = NULL;
 62
 63	if (t == NULL) {
 64		pr_debug("ALSA: seq: snd_seq_timer_delete() called with NULL timer\n");
 65		return;
 66	}
 67	t->running = 0;
 68
 69	/* reset time */
 70	snd_seq_timer_stop(t);
 71	snd_seq_timer_reset(t);
 72
 73	kfree(t);
 74}
 75
 76void snd_seq_timer_defaults(struct snd_seq_timer * tmr)
 77{
 78	unsigned long flags;
 79
 80	spin_lock_irqsave(&tmr->lock, flags);
 81	/* setup defaults */
 82	tmr->ppq = 96;		/* 96 PPQ */
 83	tmr->tempo = 500000;	/* 120 BPM */
 
 84	snd_seq_timer_set_tick_resolution(tmr);
 85	tmr->running = 0;
 86
 87	tmr->type = SNDRV_SEQ_TIMER_ALSA;
 88	tmr->alsa_id.dev_class = seq_default_timer_class;
 89	tmr->alsa_id.dev_sclass = seq_default_timer_sclass;
 90	tmr->alsa_id.card = seq_default_timer_card;
 91	tmr->alsa_id.device = seq_default_timer_device;
 92	tmr->alsa_id.subdevice = seq_default_timer_subdevice;
 93	tmr->preferred_resolution = seq_default_timer_resolution;
 94
 95	tmr->skew = tmr->skew_base = SKEW_BASE;
 96	spin_unlock_irqrestore(&tmr->lock, flags);
 97}
 98
 99static void seq_timer_reset(struct snd_seq_timer *tmr)
100{
101	/* reset time & songposition */
102	tmr->cur_time.tv_sec = 0;
103	tmr->cur_time.tv_nsec = 0;
104
105	tmr->tick.cur_tick = 0;
106	tmr->tick.fraction = 0;
107}
108
109void snd_seq_timer_reset(struct snd_seq_timer *tmr)
110{
111	unsigned long flags;
112
113	spin_lock_irqsave(&tmr->lock, flags);
114	seq_timer_reset(tmr);
115	spin_unlock_irqrestore(&tmr->lock, flags);
116}
117
118
119/* called by timer interrupt routine. the period time since previous invocation is passed */
120static void snd_seq_timer_interrupt(struct snd_timer_instance *timeri,
121				    unsigned long resolution,
122				    unsigned long ticks)
123{
124	unsigned long flags;
125	struct snd_seq_queue *q = timeri->callback_data;
126	struct snd_seq_timer *tmr;
127
128	if (q == NULL)
129		return;
130	tmr = q->timer;
131	if (tmr == NULL)
132		return;
133	spin_lock_irqsave(&tmr->lock, flags);
134	if (!tmr->running) {
135		spin_unlock_irqrestore(&tmr->lock, flags);
136		return;
137	}
138
139	resolution *= ticks;
140	if (tmr->skew != tmr->skew_base) {
141		/* FIXME: assuming skew_base = 0x10000 */
142		resolution = (resolution >> 16) * tmr->skew +
143			(((resolution & 0xffff) * tmr->skew) >> 16);
144	}
 
 
 
 
145
146	/* update timer */
147	snd_seq_inc_time_nsec(&tmr->cur_time, resolution);
148
149	/* calculate current tick */
150	snd_seq_timer_update_tick(&tmr->tick, resolution);
151
152	/* register actual time of this timer update */
153	ktime_get_ts64(&tmr->last_update);
154
155	spin_unlock_irqrestore(&tmr->lock, flags);
156
157	/* check queues and dispatch events */
158	snd_seq_check_queue(q, 1, 0);
159}
160
161/* set current tempo */
162int snd_seq_timer_set_tempo(struct snd_seq_timer * tmr, int tempo)
163{
164	unsigned long flags;
165
166	if (snd_BUG_ON(!tmr))
167		return -EINVAL;
168	if (tempo <= 0)
169		return -EINVAL;
170	spin_lock_irqsave(&tmr->lock, flags);
171	if ((unsigned int)tempo != tmr->tempo) {
172		tmr->tempo = tempo;
173		snd_seq_timer_set_tick_resolution(tmr);
174	}
175	spin_unlock_irqrestore(&tmr->lock, flags);
176	return 0;
177}
178
179/* set current tempo and ppq in a shot */
180int snd_seq_timer_set_tempo_ppq(struct snd_seq_timer *tmr, int tempo, int ppq)
 
181{
182	int changed;
183	unsigned long flags;
184
185	if (snd_BUG_ON(!tmr))
186		return -EINVAL;
187	if (tempo <= 0 || ppq <= 0)
188		return -EINVAL;
189	spin_lock_irqsave(&tmr->lock, flags);
 
 
 
190	if (tmr->running && (ppq != tmr->ppq)) {
191		/* refuse to change ppq on running timers */
192		/* because it will upset the song position (ticks) */
193		spin_unlock_irqrestore(&tmr->lock, flags);
194		pr_debug("ALSA: seq: cannot change ppq of a running timer\n");
195		return -EBUSY;
196	}
197	changed = (tempo != tmr->tempo) || (ppq != tmr->ppq);
198	tmr->tempo = tempo;
199	tmr->ppq = ppq;
 
200	if (changed)
201		snd_seq_timer_set_tick_resolution(tmr);
202	spin_unlock_irqrestore(&tmr->lock, flags);
203	return 0;
204}
205
206/* set current tick position */
207int snd_seq_timer_set_position_tick(struct snd_seq_timer *tmr,
208				    snd_seq_tick_time_t position)
209{
210	unsigned long flags;
211
212	if (snd_BUG_ON(!tmr))
213		return -EINVAL;
214
215	spin_lock_irqsave(&tmr->lock, flags);
216	tmr->tick.cur_tick = position;
217	tmr->tick.fraction = 0;
218	spin_unlock_irqrestore(&tmr->lock, flags);
219	return 0;
220}
221
222/* set current real-time position */
223int snd_seq_timer_set_position_time(struct snd_seq_timer *tmr,
224				    snd_seq_real_time_t position)
225{
226	unsigned long flags;
227
228	if (snd_BUG_ON(!tmr))
229		return -EINVAL;
230
231	snd_seq_sanity_real_time(&position);
232	spin_lock_irqsave(&tmr->lock, flags);
233	tmr->cur_time = position;
234	spin_unlock_irqrestore(&tmr->lock, flags);
235	return 0;
236}
237
238/* set timer skew */
239int snd_seq_timer_set_skew(struct snd_seq_timer *tmr, unsigned int skew,
240			   unsigned int base)
241{
242	unsigned long flags;
243
244	if (snd_BUG_ON(!tmr))
245		return -EINVAL;
246
247	/* FIXME */
248	if (base != SKEW_BASE) {
249		pr_debug("ALSA: seq: invalid skew base 0x%x\n", base);
250		return -EINVAL;
251	}
252	spin_lock_irqsave(&tmr->lock, flags);
253	tmr->skew = skew;
254	spin_unlock_irqrestore(&tmr->lock, flags);
255	return 0;
256}
257
258int snd_seq_timer_open(struct snd_seq_queue *q)
259{
260	struct snd_timer_instance *t;
261	struct snd_seq_timer *tmr;
262	char str[32];
263	int err;
264
265	tmr = q->timer;
266	if (snd_BUG_ON(!tmr))
267		return -EINVAL;
268	if (tmr->timeri)
269		return -EBUSY;
270	sprintf(str, "sequencer queue %i", q->queue);
271	if (tmr->type != SNDRV_SEQ_TIMER_ALSA)	/* standard ALSA timer */
272		return -EINVAL;
273	if (tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
274		tmr->alsa_id.dev_sclass = SNDRV_TIMER_SCLASS_SEQUENCER;
275	t = snd_timer_instance_new(str);
276	if (!t)
277		return -ENOMEM;
278	t->callback = snd_seq_timer_interrupt;
279	t->callback_data = q;
280	t->flags |= SNDRV_TIMER_IFLG_AUTO;
281	err = snd_timer_open(t, &tmr->alsa_id, q->queue);
282	if (err < 0 && tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_SLAVE) {
283		if (tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_GLOBAL ||
284		    tmr->alsa_id.device != SNDRV_TIMER_GLOBAL_SYSTEM) {
285			struct snd_timer_id tid;
286			memset(&tid, 0, sizeof(tid));
287			tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
288			tid.dev_sclass = SNDRV_TIMER_SCLASS_SEQUENCER;
289			tid.card = -1;
290			tid.device = SNDRV_TIMER_GLOBAL_SYSTEM;
291			err = snd_timer_open(t, &tid, q->queue);
292		}
293	}
294	if (err < 0) {
295		pr_err("ALSA: seq fatal error: cannot create timer (%i)\n", err);
296		snd_timer_instance_free(t);
297		return err;
298	}
299	spin_lock_irq(&tmr->lock);
300	tmr->timeri = t;
301	spin_unlock_irq(&tmr->lock);
 
 
 
 
 
 
 
 
302	return 0;
303}
304
305int snd_seq_timer_close(struct snd_seq_queue *q)
306{
307	struct snd_seq_timer *tmr;
308	struct snd_timer_instance *t;
309	
310	tmr = q->timer;
311	if (snd_BUG_ON(!tmr))
312		return -EINVAL;
313	spin_lock_irq(&tmr->lock);
314	t = tmr->timeri;
315	tmr->timeri = NULL;
316	spin_unlock_irq(&tmr->lock);
317	if (t) {
318		snd_timer_close(t);
319		snd_timer_instance_free(t);
320	}
321	return 0;
322}
323
324static int seq_timer_stop(struct snd_seq_timer *tmr)
325{
326	if (! tmr->timeri)
327		return -EINVAL;
328	if (!tmr->running)
329		return 0;
330	tmr->running = 0;
331	snd_timer_pause(tmr->timeri);
332	return 0;
333}
334
335int snd_seq_timer_stop(struct snd_seq_timer *tmr)
336{
337	unsigned long flags;
338	int err;
339
340	spin_lock_irqsave(&tmr->lock, flags);
341	err = seq_timer_stop(tmr);
342	spin_unlock_irqrestore(&tmr->lock, flags);
343	return err;
344}
345
346static int initialize_timer(struct snd_seq_timer *tmr)
347{
348	struct snd_timer *t;
349	unsigned long freq;
350
351	t = tmr->timeri->timer;
352	if (!t)
353		return -EINVAL;
354
355	freq = tmr->preferred_resolution;
356	if (!freq)
357		freq = DEFAULT_FREQUENCY;
358	else if (freq < MIN_FREQUENCY)
359		freq = MIN_FREQUENCY;
360	else if (freq > MAX_FREQUENCY)
361		freq = MAX_FREQUENCY;
362
363	tmr->ticks = 1;
364	if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE)) {
365		unsigned long r = snd_timer_resolution(tmr->timeri);
366		if (r) {
367			tmr->ticks = (unsigned int)(1000000000uL / (r * freq));
368			if (! tmr->ticks)
369				tmr->ticks = 1;
370		}
371	}
372	tmr->initialized = 1;
373	return 0;
374}
375
376static int seq_timer_start(struct snd_seq_timer *tmr)
377{
378	if (! tmr->timeri)
379		return -EINVAL;
380	if (tmr->running)
381		seq_timer_stop(tmr);
382	seq_timer_reset(tmr);
383	if (initialize_timer(tmr) < 0)
384		return -EINVAL;
385	snd_timer_start(tmr->timeri, tmr->ticks);
386	tmr->running = 1;
387	ktime_get_ts64(&tmr->last_update);
388	return 0;
389}
390
391int snd_seq_timer_start(struct snd_seq_timer *tmr)
392{
393	unsigned long flags;
394	int err;
395
396	spin_lock_irqsave(&tmr->lock, flags);
397	err = seq_timer_start(tmr);
398	spin_unlock_irqrestore(&tmr->lock, flags);
399	return err;
400}
401
402static int seq_timer_continue(struct snd_seq_timer *tmr)
403{
404	if (! tmr->timeri)
405		return -EINVAL;
406	if (tmr->running)
407		return -EBUSY;
408	if (! tmr->initialized) {
409		seq_timer_reset(tmr);
410		if (initialize_timer(tmr) < 0)
411			return -EINVAL;
412	}
413	snd_timer_start(tmr->timeri, tmr->ticks);
414	tmr->running = 1;
415	ktime_get_ts64(&tmr->last_update);
416	return 0;
417}
418
419int snd_seq_timer_continue(struct snd_seq_timer *tmr)
420{
421	unsigned long flags;
422	int err;
423
424	spin_lock_irqsave(&tmr->lock, flags);
425	err = seq_timer_continue(tmr);
426	spin_unlock_irqrestore(&tmr->lock, flags);
427	return err;
428}
429
430/* return current 'real' time. use timeofday() to get better granularity. */
431snd_seq_real_time_t snd_seq_timer_get_cur_time(struct snd_seq_timer *tmr,
432					       bool adjust_ktime)
433{
434	snd_seq_real_time_t cur_time;
435	unsigned long flags;
436
437	spin_lock_irqsave(&tmr->lock, flags);
438	cur_time = tmr->cur_time;
439	if (adjust_ktime && tmr->running) {
440		struct timespec64 tm;
441
442		ktime_get_ts64(&tm);
443		tm = timespec64_sub(tm, tmr->last_update);
444		cur_time.tv_nsec += tm.tv_nsec;
445		cur_time.tv_sec += tm.tv_sec;
446		snd_seq_sanity_real_time(&cur_time);
447	}
448	spin_unlock_irqrestore(&tmr->lock, flags);
449	return cur_time;	
450}
451
452/* TODO: use interpolation on tick queue (will only be useful for very
453 high PPQ values) */
454snd_seq_tick_time_t snd_seq_timer_get_cur_tick(struct snd_seq_timer *tmr)
455{
456	snd_seq_tick_time_t cur_tick;
457	unsigned long flags;
458
459	spin_lock_irqsave(&tmr->lock, flags);
460	cur_tick = tmr->tick.cur_tick;
461	spin_unlock_irqrestore(&tmr->lock, flags);
462	return cur_tick;
463}
464
465
466#ifdef CONFIG_SND_PROC_FS
467/* exported to seq_info.c */
468void snd_seq_info_timer_read(struct snd_info_entry *entry,
469			     struct snd_info_buffer *buffer)
470{
471	int idx;
472	struct snd_seq_queue *q;
473	struct snd_seq_timer *tmr;
474	struct snd_timer_instance *ti;
475	unsigned long resolution;
476	
477	for (idx = 0; idx < SNDRV_SEQ_MAX_QUEUES; idx++) {
478		q = queueptr(idx);
479		if (q == NULL)
480			continue;
481		mutex_lock(&q->timer_mutex);
482		tmr = q->timer;
483		if (!tmr)
484			goto unlock;
485		ti = tmr->timeri;
486		if (!ti)
487			goto unlock;
488		snd_iprintf(buffer, "Timer for queue %i : %s\n", q->queue, ti->timer->name);
489		resolution = snd_timer_resolution(ti) * tmr->ticks;
490		snd_iprintf(buffer, "  Period time : %lu.%09lu\n", resolution / 1000000000, resolution % 1000000000);
491		snd_iprintf(buffer, "  Skew : %u / %u\n", tmr->skew, tmr->skew_base);
492unlock:
493		mutex_unlock(&q->timer_mutex);
494		queuefree(q);
495 	}
496}
497#endif /* CONFIG_SND_PROC_FS */
498
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 *   ALSA sequencer Timer
  4 *   Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
  5 *                              Jaroslav Kysela <perex@perex.cz>
  6 */
  7
  8#include <sound/core.h>
  9#include <linux/slab.h>
 10#include "seq_timer.h"
 11#include "seq_queue.h"
 12#include "seq_info.h"
 13
 14/* allowed sequencer timer frequencies, in Hz */
 15#define MIN_FREQUENCY		10
 16#define MAX_FREQUENCY		6250
 17#define DEFAULT_FREQUENCY	1000
 18
 19#define SKEW_BASE	0x10000	/* 16bit shift */
 20
 21static void snd_seq_timer_set_tick_resolution(struct snd_seq_timer *tmr)
 22{
 23	unsigned int threshold =
 24		tmr->tempo_base == 1000 ? 1000000 : 10000;
 25
 26	if (tmr->tempo < threshold)
 27		tmr->tick.resolution = (tmr->tempo * tmr->tempo_base) / tmr->ppq;
 28	else {
 29		/* might overflow.. */
 30		unsigned int s;
 31		s = tmr->tempo % tmr->ppq;
 32		s = (s * tmr->tempo_base) / tmr->ppq;
 33		tmr->tick.resolution = (tmr->tempo / tmr->ppq) * tmr->tempo_base;
 34		tmr->tick.resolution += s;
 35	}
 36	if (tmr->tick.resolution <= 0)
 37		tmr->tick.resolution = 1;
 38	snd_seq_timer_update_tick(&tmr->tick, 0);
 39}
 40
 41/* create new timer (constructor) */
 42struct snd_seq_timer *snd_seq_timer_new(void)
 43{
 44	struct snd_seq_timer *tmr;
 45	
 46	tmr = kzalloc(sizeof(*tmr), GFP_KERNEL);
 47	if (!tmr)
 48		return NULL;
 49	spin_lock_init(&tmr->lock);
 50
 51	/* reset setup to defaults */
 52	snd_seq_timer_defaults(tmr);
 53	
 54	/* reset time */
 55	snd_seq_timer_reset(tmr);
 56	
 57	return tmr;
 58}
 59
 60/* delete timer (destructor) */
 61void snd_seq_timer_delete(struct snd_seq_timer **tmr)
 62{
 63	struct snd_seq_timer *t = *tmr;
 64	*tmr = NULL;
 65
 66	if (t == NULL) {
 67		pr_debug("ALSA: seq: snd_seq_timer_delete() called with NULL timer\n");
 68		return;
 69	}
 70	t->running = 0;
 71
 72	/* reset time */
 73	snd_seq_timer_stop(t);
 74	snd_seq_timer_reset(t);
 75
 76	kfree(t);
 77}
 78
 79void snd_seq_timer_defaults(struct snd_seq_timer * tmr)
 80{
 81	guard(spinlock_irqsave)(&tmr->lock);
 
 
 82	/* setup defaults */
 83	tmr->ppq = 96;		/* 96 PPQ */
 84	tmr->tempo = 500000;	/* 120 BPM */
 85	tmr->tempo_base = 1000;	/* 1us */
 86	snd_seq_timer_set_tick_resolution(tmr);
 87	tmr->running = 0;
 88
 89	tmr->type = SNDRV_SEQ_TIMER_ALSA;
 90	tmr->alsa_id.dev_class = seq_default_timer_class;
 91	tmr->alsa_id.dev_sclass = seq_default_timer_sclass;
 92	tmr->alsa_id.card = seq_default_timer_card;
 93	tmr->alsa_id.device = seq_default_timer_device;
 94	tmr->alsa_id.subdevice = seq_default_timer_subdevice;
 95	tmr->preferred_resolution = seq_default_timer_resolution;
 96
 97	tmr->skew = tmr->skew_base = SKEW_BASE;
 
 98}
 99
100static void seq_timer_reset(struct snd_seq_timer *tmr)
101{
102	/* reset time & songposition */
103	tmr->cur_time.tv_sec = 0;
104	tmr->cur_time.tv_nsec = 0;
105
106	tmr->tick.cur_tick = 0;
107	tmr->tick.fraction = 0;
108}
109
110void snd_seq_timer_reset(struct snd_seq_timer *tmr)
111{
112	guard(spinlock_irqsave)(&tmr->lock);
 
 
113	seq_timer_reset(tmr);
 
114}
115
116
117/* called by timer interrupt routine. the period time since previous invocation is passed */
118static void snd_seq_timer_interrupt(struct snd_timer_instance *timeri,
119				    unsigned long resolution,
120				    unsigned long ticks)
121{
 
122	struct snd_seq_queue *q = timeri->callback_data;
123	struct snd_seq_timer *tmr;
124
125	if (q == NULL)
126		return;
127	tmr = q->timer;
128	if (tmr == NULL)
129		return;
 
 
 
 
 
130
131	scoped_guard(spinlock_irqsave, &tmr->lock) {
132		if (!tmr->running)
133			return;
134
135		resolution *= ticks;
136		if (tmr->skew != tmr->skew_base) {
137			/* FIXME: assuming skew_base = 0x10000 */
138			resolution = (resolution >> 16) * tmr->skew +
139				(((resolution & 0xffff) * tmr->skew) >> 16);
140		}
141
142		/* update timer */
143		snd_seq_inc_time_nsec(&tmr->cur_time, resolution);
144
145		/* calculate current tick */
146		snd_seq_timer_update_tick(&tmr->tick, resolution);
147
148		/* register actual time of this timer update */
149		ktime_get_ts64(&tmr->last_update);
150	}
 
151
152	/* check queues and dispatch events */
153	snd_seq_check_queue(q, 1, 0);
154}
155
156/* set current tempo */
157int snd_seq_timer_set_tempo(struct snd_seq_timer * tmr, int tempo)
158{
 
 
159	if (snd_BUG_ON(!tmr))
160		return -EINVAL;
161	if (tempo <= 0)
162		return -EINVAL;
163	guard(spinlock_irqsave)(&tmr->lock);
164	if ((unsigned int)tempo != tmr->tempo) {
165		tmr->tempo = tempo;
166		snd_seq_timer_set_tick_resolution(tmr);
167	}
 
168	return 0;
169}
170
171/* set current tempo, ppq and base in a shot */
172int snd_seq_timer_set_tempo_ppq(struct snd_seq_timer *tmr, int tempo, int ppq,
173				unsigned int tempo_base)
174{
175	int changed;
 
176
177	if (snd_BUG_ON(!tmr))
178		return -EINVAL;
179	if (tempo <= 0 || ppq <= 0)
180		return -EINVAL;
181	/* allow only 10ns or 1us tempo base for now */
182	if (tempo_base && tempo_base != 10 && tempo_base != 1000)
183		return -EINVAL;
184	guard(spinlock_irqsave)(&tmr->lock);
185	if (tmr->running && (ppq != tmr->ppq)) {
186		/* refuse to change ppq on running timers */
187		/* because it will upset the song position (ticks) */
 
188		pr_debug("ALSA: seq: cannot change ppq of a running timer\n");
189		return -EBUSY;
190	}
191	changed = (tempo != tmr->tempo) || (ppq != tmr->ppq);
192	tmr->tempo = tempo;
193	tmr->ppq = ppq;
194	tmr->tempo_base = tempo_base ? tempo_base : 1000;
195	if (changed)
196		snd_seq_timer_set_tick_resolution(tmr);
 
197	return 0;
198}
199
200/* set current tick position */
201int snd_seq_timer_set_position_tick(struct snd_seq_timer *tmr,
202				    snd_seq_tick_time_t position)
203{
 
 
204	if (snd_BUG_ON(!tmr))
205		return -EINVAL;
206
207	guard(spinlock_irqsave)(&tmr->lock);
208	tmr->tick.cur_tick = position;
209	tmr->tick.fraction = 0;
 
210	return 0;
211}
212
213/* set current real-time position */
214int snd_seq_timer_set_position_time(struct snd_seq_timer *tmr,
215				    snd_seq_real_time_t position)
216{
 
 
217	if (snd_BUG_ON(!tmr))
218		return -EINVAL;
219
220	snd_seq_sanity_real_time(&position);
221	guard(spinlock_irqsave)(&tmr->lock);
222	tmr->cur_time = position;
 
223	return 0;
224}
225
226/* set timer skew */
227int snd_seq_timer_set_skew(struct snd_seq_timer *tmr, unsigned int skew,
228			   unsigned int base)
229{
 
 
230	if (snd_BUG_ON(!tmr))
231		return -EINVAL;
232
233	/* FIXME */
234	if (base != SKEW_BASE) {
235		pr_debug("ALSA: seq: invalid skew base 0x%x\n", base);
236		return -EINVAL;
237	}
238	guard(spinlock_irqsave)(&tmr->lock);
239	tmr->skew = skew;
 
240	return 0;
241}
242
243int snd_seq_timer_open(struct snd_seq_queue *q)
244{
245	struct snd_timer_instance *t;
246	struct snd_seq_timer *tmr;
247	char str[32];
248	int err;
249
250	tmr = q->timer;
251	if (snd_BUG_ON(!tmr))
252		return -EINVAL;
253	if (tmr->timeri)
254		return -EBUSY;
255	sprintf(str, "sequencer queue %i", q->queue);
256	if (tmr->type != SNDRV_SEQ_TIMER_ALSA)	/* standard ALSA timer */
257		return -EINVAL;
258	if (tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
259		tmr->alsa_id.dev_sclass = SNDRV_TIMER_SCLASS_SEQUENCER;
260	t = snd_timer_instance_new(str);
261	if (!t)
262		return -ENOMEM;
263	t->callback = snd_seq_timer_interrupt;
264	t->callback_data = q;
265	t->flags |= SNDRV_TIMER_IFLG_AUTO;
266	err = snd_timer_open(t, &tmr->alsa_id, q->queue);
267	if (err < 0 && tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_SLAVE) {
268		if (tmr->alsa_id.dev_class != SNDRV_TIMER_CLASS_GLOBAL ||
269		    tmr->alsa_id.device != SNDRV_TIMER_GLOBAL_SYSTEM) {
270			struct snd_timer_id tid;
271			memset(&tid, 0, sizeof(tid));
272			tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
273			tid.dev_sclass = SNDRV_TIMER_SCLASS_SEQUENCER;
274			tid.card = -1;
275			tid.device = SNDRV_TIMER_GLOBAL_SYSTEM;
276			err = snd_timer_open(t, &tid, q->queue);
277		}
278	}
279	if (err < 0) {
280		pr_err("ALSA: seq fatal error: cannot create timer (%i)\n", err);
281		snd_timer_instance_free(t);
282		return err;
283	}
284	scoped_guard(spinlock_irq, &tmr->lock) {
285		if (tmr->timeri)
286			err = -EBUSY;
287		else
288			tmr->timeri = t;
289	}
290	if (err < 0) {
291		snd_timer_close(t);
292		snd_timer_instance_free(t);
293		return err;
294	}
295	return 0;
296}
297
298int snd_seq_timer_close(struct snd_seq_queue *q)
299{
300	struct snd_seq_timer *tmr;
301	struct snd_timer_instance *t;
302	
303	tmr = q->timer;
304	if (snd_BUG_ON(!tmr))
305		return -EINVAL;
306	scoped_guard(spinlock_irq, &tmr->lock) {
307		t = tmr->timeri;
308		tmr->timeri = NULL;
309	}
310	if (t) {
311		snd_timer_close(t);
312		snd_timer_instance_free(t);
313	}
314	return 0;
315}
316
317static int seq_timer_stop(struct snd_seq_timer *tmr)
318{
319	if (! tmr->timeri)
320		return -EINVAL;
321	if (!tmr->running)
322		return 0;
323	tmr->running = 0;
324	snd_timer_pause(tmr->timeri);
325	return 0;
326}
327
328int snd_seq_timer_stop(struct snd_seq_timer *tmr)
329{
330	guard(spinlock_irqsave)(&tmr->lock);
331	return seq_timer_stop(tmr);
 
 
 
 
 
332}
333
334static int initialize_timer(struct snd_seq_timer *tmr)
335{
336	struct snd_timer *t;
337	unsigned long freq;
338
339	t = tmr->timeri->timer;
340	if (!t)
341		return -EINVAL;
342
343	freq = tmr->preferred_resolution;
344	if (!freq)
345		freq = DEFAULT_FREQUENCY;
346	else if (freq < MIN_FREQUENCY)
347		freq = MIN_FREQUENCY;
348	else if (freq > MAX_FREQUENCY)
349		freq = MAX_FREQUENCY;
350
351	tmr->ticks = 1;
352	if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE)) {
353		unsigned long r = snd_timer_resolution(tmr->timeri);
354		if (r) {
355			tmr->ticks = (unsigned int)(1000000000uL / (r * freq));
356			if (! tmr->ticks)
357				tmr->ticks = 1;
358		}
359	}
360	tmr->initialized = 1;
361	return 0;
362}
363
364static int seq_timer_start(struct snd_seq_timer *tmr)
365{
366	if (! tmr->timeri)
367		return -EINVAL;
368	if (tmr->running)
369		seq_timer_stop(tmr);
370	seq_timer_reset(tmr);
371	if (initialize_timer(tmr) < 0)
372		return -EINVAL;
373	snd_timer_start(tmr->timeri, tmr->ticks);
374	tmr->running = 1;
375	ktime_get_ts64(&tmr->last_update);
376	return 0;
377}
378
379int snd_seq_timer_start(struct snd_seq_timer *tmr)
380{
381	guard(spinlock_irqsave)(&tmr->lock);
382	return seq_timer_start(tmr);
 
 
 
 
 
383}
384
385static int seq_timer_continue(struct snd_seq_timer *tmr)
386{
387	if (! tmr->timeri)
388		return -EINVAL;
389	if (tmr->running)
390		return -EBUSY;
391	if (! tmr->initialized) {
392		seq_timer_reset(tmr);
393		if (initialize_timer(tmr) < 0)
394			return -EINVAL;
395	}
396	snd_timer_start(tmr->timeri, tmr->ticks);
397	tmr->running = 1;
398	ktime_get_ts64(&tmr->last_update);
399	return 0;
400}
401
402int snd_seq_timer_continue(struct snd_seq_timer *tmr)
403{
404	guard(spinlock_irqsave)(&tmr->lock);
405	return seq_timer_continue(tmr);
 
 
 
 
 
406}
407
408/* return current 'real' time. use timeofday() to get better granularity. */
409snd_seq_real_time_t snd_seq_timer_get_cur_time(struct snd_seq_timer *tmr,
410					       bool adjust_ktime)
411{
412	snd_seq_real_time_t cur_time;
 
413
414	guard(spinlock_irqsave)(&tmr->lock);
415	cur_time = tmr->cur_time;
416	if (adjust_ktime && tmr->running) {
417		struct timespec64 tm;
418
419		ktime_get_ts64(&tm);
420		tm = timespec64_sub(tm, tmr->last_update);
421		cur_time.tv_nsec += tm.tv_nsec;
422		cur_time.tv_sec += tm.tv_sec;
423		snd_seq_sanity_real_time(&cur_time);
424	}
 
425	return cur_time;	
426}
427
428/* TODO: use interpolation on tick queue (will only be useful for very
429 high PPQ values) */
430snd_seq_tick_time_t snd_seq_timer_get_cur_tick(struct snd_seq_timer *tmr)
431{
432	guard(spinlock_irqsave)(&tmr->lock);
433	return tmr->tick.cur_tick;
 
 
 
 
 
434}
435
436
437#ifdef CONFIG_SND_PROC_FS
438/* exported to seq_info.c */
439void snd_seq_info_timer_read(struct snd_info_entry *entry,
440			     struct snd_info_buffer *buffer)
441{
442	int idx;
443	struct snd_seq_queue *q;
444	struct snd_seq_timer *tmr;
445	struct snd_timer_instance *ti;
446	unsigned long resolution;
447	
448	for (idx = 0; idx < SNDRV_SEQ_MAX_QUEUES; idx++) {
449		q = queueptr(idx);
450		if (q == NULL)
451			continue;
452		scoped_guard(mutex, &q->timer_mutex) {
453			tmr = q->timer;
454			if (!tmr)
455				break;
456			ti = tmr->timeri;
457			if (!ti)
458				break;
459			snd_iprintf(buffer, "Timer for queue %i : %s\n", q->queue, ti->timer->name);
460			resolution = snd_timer_resolution(ti) * tmr->ticks;
461			snd_iprintf(buffer, "  Period time : %lu.%09lu\n", resolution / 1000000000, resolution % 1000000000);
462			snd_iprintf(buffer, "  Skew : %u / %u\n", tmr->skew, tmr->skew_base);
463		}
 
464		queuefree(q);
465 	}
466}
467#endif /* CONFIG_SND_PROC_FS */
468