2 * Timers abstract layer
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/delay.h>
23 #include <linux/init.h>
24 #include <linux/slab.h>
25 #include <linux/time.h>
26 #include <linux/mutex.h>
27 #include <linux/device.h>
28 #include <linux/module.h>
29 #include <linux/string.h>
30 #include <sound/core.h>
31 #include <sound/timer.h>
32 #include <sound/control.h>
33 #include <sound/info.h>
34 #include <sound/minors.h>
35 #include <sound/initval.h>
36 #include <linux/kmod.h>
38 #if IS_ENABLED(CONFIG_SND_HRTIMER)
39 #define DEFAULT_TIMER_LIMIT 4
40 #elif IS_ENABLED(CONFIG_SND_RTCTIMER)
41 #define DEFAULT_TIMER_LIMIT 2
43 #define DEFAULT_TIMER_LIMIT 1
46 static int timer_limit
= DEFAULT_TIMER_LIMIT
;
47 static int timer_tstamp_monotonic
= 1;
48 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>");
49 MODULE_DESCRIPTION("ALSA timer interface");
50 MODULE_LICENSE("GPL");
51 module_param(timer_limit
, int, 0444);
52 MODULE_PARM_DESC(timer_limit
, "Maximum global timers in system.");
53 module_param(timer_tstamp_monotonic
, int, 0444);
54 MODULE_PARM_DESC(timer_tstamp_monotonic
, "Use posix monotonic clock source for timestamps (default).");
56 MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR
, SNDRV_MINOR_TIMER
);
57 MODULE_ALIAS("devname:snd/timer");
59 struct snd_timer_user
{
60 struct snd_timer_instance
*timeri
;
61 int tread
; /* enhanced read with timestamps and events */
63 unsigned long overrun
;
69 struct snd_timer_read
*queue
;
70 struct snd_timer_tread
*tqueue
;
72 unsigned long last_resolution
;
74 struct timespec tstamp
; /* trigger tstamp */
75 wait_queue_head_t qchange_sleep
;
76 struct fasync_struct
*fasync
;
77 struct mutex ioctl_lock
;
81 static LIST_HEAD(snd_timer_list
);
83 /* list of slave instances */
84 static LIST_HEAD(snd_timer_slave_list
);
86 /* lock for slave active lists */
87 static DEFINE_SPINLOCK(slave_active_lock
);
89 static DEFINE_MUTEX(register_mutex
);
91 static int snd_timer_free(struct snd_timer
*timer
);
92 static int snd_timer_dev_free(struct snd_device
*device
);
93 static int snd_timer_dev_register(struct snd_device
*device
);
94 static int snd_timer_dev_disconnect(struct snd_device
*device
);
96 static void snd_timer_reschedule(struct snd_timer
* timer
, unsigned long ticks_left
);
99 * create a timer instance with the given owner string.
100 * when timer is not NULL, increments the module counter
102 static struct snd_timer_instance
*snd_timer_instance_new(char *owner
,
103 struct snd_timer
*timer
)
105 struct snd_timer_instance
*timeri
;
106 timeri
= kzalloc(sizeof(*timeri
), GFP_KERNEL
);
109 timeri
->owner
= kstrdup(owner
, GFP_KERNEL
);
110 if (! timeri
->owner
) {
114 INIT_LIST_HEAD(&timeri
->open_list
);
115 INIT_LIST_HEAD(&timeri
->active_list
);
116 INIT_LIST_HEAD(&timeri
->ack_list
);
117 INIT_LIST_HEAD(&timeri
->slave_list_head
);
118 INIT_LIST_HEAD(&timeri
->slave_active_head
);
120 timeri
->timer
= timer
;
121 if (timer
&& !try_module_get(timer
->module
)) {
122 kfree(timeri
->owner
);
131 * find a timer instance from the given timer id
133 static struct snd_timer
*snd_timer_find(struct snd_timer_id
*tid
)
135 struct snd_timer
*timer
= NULL
;
137 list_for_each_entry(timer
, &snd_timer_list
, device_list
) {
138 if (timer
->tmr_class
!= tid
->dev_class
)
140 if ((timer
->tmr_class
== SNDRV_TIMER_CLASS_CARD
||
141 timer
->tmr_class
== SNDRV_TIMER_CLASS_PCM
) &&
142 (timer
->card
== NULL
||
143 timer
->card
->number
!= tid
->card
))
145 if (timer
->tmr_device
!= tid
->device
)
147 if (timer
->tmr_subdevice
!= tid
->subdevice
)
154 #ifdef CONFIG_MODULES
156 static void snd_timer_request(struct snd_timer_id
*tid
)
158 switch (tid
->dev_class
) {
159 case SNDRV_TIMER_CLASS_GLOBAL
:
160 if (tid
->device
< timer_limit
)
161 request_module("snd-timer-%i", tid
->device
);
163 case SNDRV_TIMER_CLASS_CARD
:
164 case SNDRV_TIMER_CLASS_PCM
:
165 if (tid
->card
< snd_ecards_limit
)
166 request_module("snd-card-%i", tid
->card
);
176 * look for a master instance matching with the slave id of the given slave.
177 * when found, relink the open_link of the slave.
179 * call this with register_mutex down.
181 static void snd_timer_check_slave(struct snd_timer_instance
*slave
)
183 struct snd_timer
*timer
;
184 struct snd_timer_instance
*master
;
186 /* FIXME: it's really dumb to look up all entries.. */
187 list_for_each_entry(timer
, &snd_timer_list
, device_list
) {
188 list_for_each_entry(master
, &timer
->open_list_head
, open_list
) {
189 if (slave
->slave_class
== master
->slave_class
&&
190 slave
->slave_id
== master
->slave_id
) {
191 list_move_tail(&slave
->open_list
,
192 &master
->slave_list_head
);
193 spin_lock_irq(&slave_active_lock
);
194 slave
->master
= master
;
195 slave
->timer
= master
->timer
;
196 spin_unlock_irq(&slave_active_lock
);
204 * look for slave instances matching with the slave id of the given master.
205 * when found, relink the open_link of slaves.
207 * call this with register_mutex down.
209 static void snd_timer_check_master(struct snd_timer_instance
*master
)
211 struct snd_timer_instance
*slave
, *tmp
;
213 /* check all pending slaves */
214 list_for_each_entry_safe(slave
, tmp
, &snd_timer_slave_list
, open_list
) {
215 if (slave
->slave_class
== master
->slave_class
&&
216 slave
->slave_id
== master
->slave_id
) {
217 list_move_tail(&slave
->open_list
, &master
->slave_list_head
);
218 spin_lock_irq(&slave_active_lock
);
219 spin_lock(&master
->timer
->lock
);
220 slave
->master
= master
;
221 slave
->timer
= master
->timer
;
222 if (slave
->flags
& SNDRV_TIMER_IFLG_RUNNING
)
223 list_add_tail(&slave
->active_list
,
224 &master
->slave_active_head
);
225 spin_unlock(&master
->timer
->lock
);
226 spin_unlock_irq(&slave_active_lock
);
232 * open a timer instance
233 * when opening a master, the slave id must be here given.
235 int snd_timer_open(struct snd_timer_instance
**ti
,
236 char *owner
, struct snd_timer_id
*tid
,
237 unsigned int slave_id
)
239 struct snd_timer
*timer
;
240 struct snd_timer_instance
*timeri
= NULL
;
242 if (tid
->dev_class
== SNDRV_TIMER_CLASS_SLAVE
) {
243 /* open a slave instance */
244 if (tid
->dev_sclass
<= SNDRV_TIMER_SCLASS_NONE
||
245 tid
->dev_sclass
> SNDRV_TIMER_SCLASS_OSS_SEQUENCER
) {
246 pr_debug("ALSA: timer: invalid slave class %i\n",
250 mutex_lock(®ister_mutex
);
251 timeri
= snd_timer_instance_new(owner
, NULL
);
253 mutex_unlock(®ister_mutex
);
256 timeri
->slave_class
= tid
->dev_sclass
;
257 timeri
->slave_id
= tid
->device
;
258 timeri
->flags
|= SNDRV_TIMER_IFLG_SLAVE
;
259 list_add_tail(&timeri
->open_list
, &snd_timer_slave_list
);
260 snd_timer_check_slave(timeri
);
261 mutex_unlock(®ister_mutex
);
266 /* open a master instance */
267 mutex_lock(®ister_mutex
);
268 timer
= snd_timer_find(tid
);
269 #ifdef CONFIG_MODULES
271 mutex_unlock(®ister_mutex
);
272 snd_timer_request(tid
);
273 mutex_lock(®ister_mutex
);
274 timer
= snd_timer_find(tid
);
278 mutex_unlock(®ister_mutex
);
281 if (!list_empty(&timer
->open_list_head
)) {
282 timeri
= list_entry(timer
->open_list_head
.next
,
283 struct snd_timer_instance
, open_list
);
284 if (timeri
->flags
& SNDRV_TIMER_IFLG_EXCLUSIVE
) {
285 mutex_unlock(®ister_mutex
);
289 timeri
= snd_timer_instance_new(owner
, timer
);
291 mutex_unlock(®ister_mutex
);
294 /* take a card refcount for safe disconnection */
296 get_device(&timer
->card
->card_dev
);
297 timeri
->slave_class
= tid
->dev_sclass
;
298 timeri
->slave_id
= slave_id
;
299 if (list_empty(&timer
->open_list_head
) && timer
->hw
.open
)
300 timer
->hw
.open(timer
);
301 list_add_tail(&timeri
->open_list
, &timer
->open_list_head
);
302 snd_timer_check_master(timeri
);
303 mutex_unlock(®ister_mutex
);
308 static int _snd_timer_stop(struct snd_timer_instance
*timeri
, int event
);
311 * close a timer instance
313 int snd_timer_close(struct snd_timer_instance
*timeri
)
315 struct snd_timer
*timer
= NULL
;
316 struct snd_timer_instance
*slave
, *tmp
;
318 if (snd_BUG_ON(!timeri
))
321 /* force to stop the timer */
322 snd_timer_stop(timeri
);
324 if (timeri
->flags
& SNDRV_TIMER_IFLG_SLAVE
) {
325 /* wait, until the active callback is finished */
326 spin_lock_irq(&slave_active_lock
);
327 while (timeri
->flags
& SNDRV_TIMER_IFLG_CALLBACK
) {
328 spin_unlock_irq(&slave_active_lock
);
330 spin_lock_irq(&slave_active_lock
);
332 spin_unlock_irq(&slave_active_lock
);
333 mutex_lock(®ister_mutex
);
334 list_del(&timeri
->open_list
);
335 mutex_unlock(®ister_mutex
);
337 timer
= timeri
->timer
;
338 if (snd_BUG_ON(!timer
))
340 /* wait, until the active callback is finished */
341 spin_lock_irq(&timer
->lock
);
342 while (timeri
->flags
& SNDRV_TIMER_IFLG_CALLBACK
) {
343 spin_unlock_irq(&timer
->lock
);
345 spin_lock_irq(&timer
->lock
);
347 spin_unlock_irq(&timer
->lock
);
348 mutex_lock(®ister_mutex
);
349 list_del(&timeri
->open_list
);
350 if (list_empty(&timer
->open_list_head
) &&
352 timer
->hw
.close(timer
);
353 /* remove slave links */
354 spin_lock_irq(&slave_active_lock
);
355 spin_lock(&timer
->lock
);
356 list_for_each_entry_safe(slave
, tmp
, &timeri
->slave_list_head
,
358 list_move_tail(&slave
->open_list
, &snd_timer_slave_list
);
359 slave
->master
= NULL
;
361 list_del_init(&slave
->ack_list
);
362 list_del_init(&slave
->active_list
);
364 spin_unlock(&timer
->lock
);
365 spin_unlock_irq(&slave_active_lock
);
366 /* release a card refcount for safe disconnection */
368 put_device(&timer
->card
->card_dev
);
369 mutex_unlock(®ister_mutex
);
372 if (timeri
->private_free
)
373 timeri
->private_free(timeri
);
374 kfree(timeri
->owner
);
377 module_put(timer
->module
);
381 unsigned long snd_timer_resolution(struct snd_timer_instance
*timeri
)
383 struct snd_timer
* timer
;
387 if ((timer
= timeri
->timer
) != NULL
) {
388 if (timer
->hw
.c_resolution
)
389 return timer
->hw
.c_resolution(timer
);
390 return timer
->hw
.resolution
;
395 static void snd_timer_notify1(struct snd_timer_instance
*ti
, int event
)
397 struct snd_timer
*timer
;
399 unsigned long resolution
= 0;
400 struct snd_timer_instance
*ts
;
401 struct timespec tstamp
;
403 if (timer_tstamp_monotonic
)
404 ktime_get_ts(&tstamp
);
406 getnstimeofday(&tstamp
);
407 if (snd_BUG_ON(event
< SNDRV_TIMER_EVENT_START
||
408 event
> SNDRV_TIMER_EVENT_PAUSE
))
410 if (event
== SNDRV_TIMER_EVENT_START
||
411 event
== SNDRV_TIMER_EVENT_CONTINUE
)
412 resolution
= snd_timer_resolution(ti
);
414 ti
->ccallback(ti
, event
, &tstamp
, resolution
);
415 if (ti
->flags
& SNDRV_TIMER_IFLG_SLAVE
)
420 if (timer
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
)
422 spin_lock_irqsave(&timer
->lock
, flags
);
423 list_for_each_entry(ts
, &ti
->slave_active_head
, active_list
)
425 ts
->ccallback(ts
, event
+ 100, &tstamp
, resolution
);
426 spin_unlock_irqrestore(&timer
->lock
, flags
);
429 static int snd_timer_start1(struct snd_timer
*timer
, struct snd_timer_instance
*timeri
,
430 unsigned long sticks
)
432 list_move_tail(&timeri
->active_list
, &timer
->active_list_head
);
433 if (timer
->running
) {
434 if (timer
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
)
436 timer
->flags
|= SNDRV_TIMER_FLG_RESCHED
;
437 timeri
->flags
|= SNDRV_TIMER_IFLG_START
;
438 return 1; /* delayed start */
440 timer
->sticks
= sticks
;
441 timer
->hw
.start(timer
);
444 timeri
->flags
|= SNDRV_TIMER_IFLG_RUNNING
;
449 static int snd_timer_start_slave(struct snd_timer_instance
*timeri
)
453 spin_lock_irqsave(&slave_active_lock
, flags
);
454 if (timeri
->flags
& SNDRV_TIMER_IFLG_RUNNING
) {
455 spin_unlock_irqrestore(&slave_active_lock
, flags
);
458 timeri
->flags
|= SNDRV_TIMER_IFLG_RUNNING
;
459 if (timeri
->master
&& timeri
->timer
) {
460 spin_lock(&timeri
->timer
->lock
);
461 list_add_tail(&timeri
->active_list
,
462 &timeri
->master
->slave_active_head
);
463 spin_unlock(&timeri
->timer
->lock
);
465 spin_unlock_irqrestore(&slave_active_lock
, flags
);
466 return 1; /* delayed start */
470 * start the timer instance
472 int snd_timer_start(struct snd_timer_instance
*timeri
, unsigned int ticks
)
474 struct snd_timer
*timer
;
475 int result
= -EINVAL
;
478 if (timeri
== NULL
|| ticks
< 1)
480 if (timeri
->flags
& SNDRV_TIMER_IFLG_SLAVE
) {
481 result
= snd_timer_start_slave(timeri
);
483 snd_timer_notify1(timeri
, SNDRV_TIMER_EVENT_START
);
486 timer
= timeri
->timer
;
489 if (timer
->card
&& timer
->card
->shutdown
)
491 spin_lock_irqsave(&timer
->lock
, flags
);
492 if (timeri
->flags
& (SNDRV_TIMER_IFLG_RUNNING
|
493 SNDRV_TIMER_IFLG_START
)) {
497 timeri
->ticks
= timeri
->cticks
= ticks
;
499 result
= snd_timer_start1(timer
, timeri
, ticks
);
501 spin_unlock_irqrestore(&timer
->lock
, flags
);
503 snd_timer_notify1(timeri
, SNDRV_TIMER_EVENT_START
);
507 static int _snd_timer_stop(struct snd_timer_instance
*timeri
, int event
)
509 struct snd_timer
*timer
;
512 if (snd_BUG_ON(!timeri
))
515 if (timeri
->flags
& SNDRV_TIMER_IFLG_SLAVE
) {
516 spin_lock_irqsave(&slave_active_lock
, flags
);
517 if (!(timeri
->flags
& SNDRV_TIMER_IFLG_RUNNING
)) {
518 spin_unlock_irqrestore(&slave_active_lock
, flags
);
522 spin_lock(&timeri
->timer
->lock
);
523 timeri
->flags
&= ~SNDRV_TIMER_IFLG_RUNNING
;
524 list_del_init(&timeri
->ack_list
);
525 list_del_init(&timeri
->active_list
);
527 spin_unlock(&timeri
->timer
->lock
);
528 spin_unlock_irqrestore(&slave_active_lock
, flags
);
531 timer
= timeri
->timer
;
534 spin_lock_irqsave(&timer
->lock
, flags
);
535 if (!(timeri
->flags
& (SNDRV_TIMER_IFLG_RUNNING
|
536 SNDRV_TIMER_IFLG_START
))) {
537 spin_unlock_irqrestore(&timer
->lock
, flags
);
540 list_del_init(&timeri
->ack_list
);
541 list_del_init(&timeri
->active_list
);
542 if (timer
->card
&& timer
->card
->shutdown
) {
543 spin_unlock_irqrestore(&timer
->lock
, flags
);
546 if ((timeri
->flags
& SNDRV_TIMER_IFLG_RUNNING
) &&
547 !(--timer
->running
)) {
548 timer
->hw
.stop(timer
);
549 if (timer
->flags
& SNDRV_TIMER_FLG_RESCHED
) {
550 timer
->flags
&= ~SNDRV_TIMER_FLG_RESCHED
;
551 snd_timer_reschedule(timer
, 0);
552 if (timer
->flags
& SNDRV_TIMER_FLG_CHANGE
) {
553 timer
->flags
&= ~SNDRV_TIMER_FLG_CHANGE
;
554 timer
->hw
.start(timer
);
558 timeri
->flags
&= ~(SNDRV_TIMER_IFLG_RUNNING
| SNDRV_TIMER_IFLG_START
);
559 spin_unlock_irqrestore(&timer
->lock
, flags
);
561 if (event
!= SNDRV_TIMER_EVENT_RESOLUTION
)
562 snd_timer_notify1(timeri
, event
);
567 * stop the timer instance.
569 * do not call this from the timer callback!
571 int snd_timer_stop(struct snd_timer_instance
*timeri
)
573 struct snd_timer
*timer
;
577 err
= _snd_timer_stop(timeri
, SNDRV_TIMER_EVENT_STOP
);
580 timer
= timeri
->timer
;
583 spin_lock_irqsave(&timer
->lock
, flags
);
584 timeri
->cticks
= timeri
->ticks
;
586 spin_unlock_irqrestore(&timer
->lock
, flags
);
591 * start again.. the tick is kept.
593 int snd_timer_continue(struct snd_timer_instance
*timeri
)
595 struct snd_timer
*timer
;
596 int result
= -EINVAL
;
601 if (timeri
->flags
& SNDRV_TIMER_IFLG_SLAVE
)
602 return snd_timer_start_slave(timeri
);
603 timer
= timeri
->timer
;
606 if (timer
->card
&& timer
->card
->shutdown
)
608 spin_lock_irqsave(&timer
->lock
, flags
);
609 if (timeri
->flags
& SNDRV_TIMER_IFLG_RUNNING
) {
616 result
= snd_timer_start1(timer
, timeri
, timer
->sticks
);
618 spin_unlock_irqrestore(&timer
->lock
, flags
);
619 snd_timer_notify1(timeri
, SNDRV_TIMER_EVENT_CONTINUE
);
624 * pause.. remember the ticks left
626 int snd_timer_pause(struct snd_timer_instance
* timeri
)
628 return _snd_timer_stop(timeri
, SNDRV_TIMER_EVENT_PAUSE
);
632 * reschedule the timer
634 * start pending instances and check the scheduling ticks.
635 * when the scheduling ticks is changed set CHANGE flag to reprogram the timer.
637 static void snd_timer_reschedule(struct snd_timer
* timer
, unsigned long ticks_left
)
639 struct snd_timer_instance
*ti
;
640 unsigned long ticks
= ~0UL;
642 list_for_each_entry(ti
, &timer
->active_list_head
, active_list
) {
643 if (ti
->flags
& SNDRV_TIMER_IFLG_START
) {
644 ti
->flags
&= ~SNDRV_TIMER_IFLG_START
;
645 ti
->flags
|= SNDRV_TIMER_IFLG_RUNNING
;
648 if (ti
->flags
& SNDRV_TIMER_IFLG_RUNNING
) {
649 if (ticks
> ti
->cticks
)
654 timer
->flags
&= ~SNDRV_TIMER_FLG_RESCHED
;
657 if (ticks
> timer
->hw
.ticks
)
658 ticks
= timer
->hw
.ticks
;
659 if (ticks_left
!= ticks
)
660 timer
->flags
|= SNDRV_TIMER_FLG_CHANGE
;
661 timer
->sticks
= ticks
;
668 static void snd_timer_tasklet(unsigned long arg
)
670 struct snd_timer
*timer
= (struct snd_timer
*) arg
;
671 struct snd_timer_instance
*ti
;
673 unsigned long resolution
, ticks
;
676 if (timer
->card
&& timer
->card
->shutdown
)
679 spin_lock_irqsave(&timer
->lock
, flags
);
680 /* now process all callbacks */
681 while (!list_empty(&timer
->sack_list_head
)) {
682 p
= timer
->sack_list_head
.next
; /* get first item */
683 ti
= list_entry(p
, struct snd_timer_instance
, ack_list
);
685 /* remove from ack_list and make empty */
690 resolution
= ti
->resolution
;
692 ti
->flags
|= SNDRV_TIMER_IFLG_CALLBACK
;
693 spin_unlock(&timer
->lock
);
695 ti
->callback(ti
, resolution
, ticks
);
696 spin_lock(&timer
->lock
);
697 ti
->flags
&= ~SNDRV_TIMER_IFLG_CALLBACK
;
699 spin_unlock_irqrestore(&timer
->lock
, flags
);
705 * ticks_left is usually equal to timer->sticks.
708 void snd_timer_interrupt(struct snd_timer
* timer
, unsigned long ticks_left
)
710 struct snd_timer_instance
*ti
, *ts
, *tmp
;
711 unsigned long resolution
, ticks
;
712 struct list_head
*p
, *ack_list_head
;
719 if (timer
->card
&& timer
->card
->shutdown
)
722 spin_lock_irqsave(&timer
->lock
, flags
);
724 /* remember the current resolution */
725 if (timer
->hw
.c_resolution
)
726 resolution
= timer
->hw
.c_resolution(timer
);
728 resolution
= timer
->hw
.resolution
;
730 /* loop for all active instances
731 * Here we cannot use list_for_each_entry because the active_list of a
732 * processed instance is relinked to done_list_head before the callback
735 list_for_each_entry_safe(ti
, tmp
, &timer
->active_list_head
,
737 if (!(ti
->flags
& SNDRV_TIMER_IFLG_RUNNING
))
739 ti
->pticks
+= ticks_left
;
740 ti
->resolution
= resolution
;
741 if (ti
->cticks
< ticks_left
)
744 ti
->cticks
-= ticks_left
;
745 if (ti
->cticks
) /* not expired */
747 if (ti
->flags
& SNDRV_TIMER_IFLG_AUTO
) {
748 ti
->cticks
= ti
->ticks
;
750 ti
->flags
&= ~SNDRV_TIMER_IFLG_RUNNING
;
752 list_del_init(&ti
->active_list
);
754 if ((timer
->hw
.flags
& SNDRV_TIMER_HW_TASKLET
) ||
755 (ti
->flags
& SNDRV_TIMER_IFLG_FAST
))
756 ack_list_head
= &timer
->ack_list_head
;
758 ack_list_head
= &timer
->sack_list_head
;
759 if (list_empty(&ti
->ack_list
))
760 list_add_tail(&ti
->ack_list
, ack_list_head
);
761 list_for_each_entry(ts
, &ti
->slave_active_head
, active_list
) {
762 ts
->pticks
= ti
->pticks
;
763 ts
->resolution
= resolution
;
764 if (list_empty(&ts
->ack_list
))
765 list_add_tail(&ts
->ack_list
, ack_list_head
);
768 if (timer
->flags
& SNDRV_TIMER_FLG_RESCHED
)
769 snd_timer_reschedule(timer
, timer
->sticks
);
770 if (timer
->running
) {
771 if (timer
->hw
.flags
& SNDRV_TIMER_HW_STOP
) {
772 timer
->hw
.stop(timer
);
773 timer
->flags
|= SNDRV_TIMER_FLG_CHANGE
;
775 if (!(timer
->hw
.flags
& SNDRV_TIMER_HW_AUTO
) ||
776 (timer
->flags
& SNDRV_TIMER_FLG_CHANGE
)) {
778 timer
->flags
&= ~SNDRV_TIMER_FLG_CHANGE
;
779 timer
->hw
.start(timer
);
782 timer
->hw
.stop(timer
);
785 /* now process all fast callbacks */
786 while (!list_empty(&timer
->ack_list_head
)) {
787 p
= timer
->ack_list_head
.next
; /* get first item */
788 ti
= list_entry(p
, struct snd_timer_instance
, ack_list
);
790 /* remove from ack_list and make empty */
796 ti
->flags
|= SNDRV_TIMER_IFLG_CALLBACK
;
797 spin_unlock(&timer
->lock
);
799 ti
->callback(ti
, resolution
, ticks
);
800 spin_lock(&timer
->lock
);
801 ti
->flags
&= ~SNDRV_TIMER_IFLG_CALLBACK
;
804 /* do we have any slow callbacks? */
805 use_tasklet
= !list_empty(&timer
->sack_list_head
);
806 spin_unlock_irqrestore(&timer
->lock
, flags
);
809 tasklet_schedule(&timer
->task_queue
);
816 int snd_timer_new(struct snd_card
*card
, char *id
, struct snd_timer_id
*tid
,
817 struct snd_timer
**rtimer
)
819 struct snd_timer
*timer
;
821 static struct snd_device_ops ops
= {
822 .dev_free
= snd_timer_dev_free
,
823 .dev_register
= snd_timer_dev_register
,
824 .dev_disconnect
= snd_timer_dev_disconnect
,
827 if (snd_BUG_ON(!tid
))
831 timer
= kzalloc(sizeof(*timer
), GFP_KERNEL
);
833 pr_err("ALSA: timer: cannot allocate\n");
836 timer
->tmr_class
= tid
->dev_class
;
838 timer
->tmr_device
= tid
->device
;
839 timer
->tmr_subdevice
= tid
->subdevice
;
841 strlcpy(timer
->id
, id
, sizeof(timer
->id
));
842 INIT_LIST_HEAD(&timer
->device_list
);
843 INIT_LIST_HEAD(&timer
->open_list_head
);
844 INIT_LIST_HEAD(&timer
->active_list_head
);
845 INIT_LIST_HEAD(&timer
->ack_list_head
);
846 INIT_LIST_HEAD(&timer
->sack_list_head
);
847 spin_lock_init(&timer
->lock
);
848 tasklet_init(&timer
->task_queue
, snd_timer_tasklet
,
849 (unsigned long)timer
);
851 timer
->module
= card
->module
;
852 err
= snd_device_new(card
, SNDRV_DEV_TIMER
, timer
, &ops
);
854 snd_timer_free(timer
);
863 static int snd_timer_free(struct snd_timer
*timer
)
868 mutex_lock(®ister_mutex
);
869 if (! list_empty(&timer
->open_list_head
)) {
870 struct list_head
*p
, *n
;
871 struct snd_timer_instance
*ti
;
872 pr_warn("ALSA: timer %p is busy?\n", timer
);
873 list_for_each_safe(p
, n
, &timer
->open_list_head
) {
875 ti
= list_entry(p
, struct snd_timer_instance
, open_list
);
879 list_del(&timer
->device_list
);
880 mutex_unlock(®ister_mutex
);
882 if (timer
->private_free
)
883 timer
->private_free(timer
);
888 static int snd_timer_dev_free(struct snd_device
*device
)
890 struct snd_timer
*timer
= device
->device_data
;
891 return snd_timer_free(timer
);
894 static int snd_timer_dev_register(struct snd_device
*dev
)
896 struct snd_timer
*timer
= dev
->device_data
;
897 struct snd_timer
*timer1
;
899 if (snd_BUG_ON(!timer
|| !timer
->hw
.start
|| !timer
->hw
.stop
))
901 if (!(timer
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
) &&
902 !timer
->hw
.resolution
&& timer
->hw
.c_resolution
== NULL
)
905 mutex_lock(®ister_mutex
);
906 list_for_each_entry(timer1
, &snd_timer_list
, device_list
) {
907 if (timer1
->tmr_class
> timer
->tmr_class
)
909 if (timer1
->tmr_class
< timer
->tmr_class
)
911 if (timer1
->card
&& timer
->card
) {
912 if (timer1
->card
->number
> timer
->card
->number
)
914 if (timer1
->card
->number
< timer
->card
->number
)
917 if (timer1
->tmr_device
> timer
->tmr_device
)
919 if (timer1
->tmr_device
< timer
->tmr_device
)
921 if (timer1
->tmr_subdevice
> timer
->tmr_subdevice
)
923 if (timer1
->tmr_subdevice
< timer
->tmr_subdevice
)
926 mutex_unlock(®ister_mutex
);
929 list_add_tail(&timer
->device_list
, &timer1
->device_list
);
930 mutex_unlock(®ister_mutex
);
934 /* just for reference in snd_timer_dev_disconnect() below */
935 static void snd_timer_user_ccallback(struct snd_timer_instance
*timeri
,
936 int event
, struct timespec
*tstamp
,
937 unsigned long resolution
);
939 static int snd_timer_dev_disconnect(struct snd_device
*device
)
941 struct snd_timer
*timer
= device
->device_data
;
942 struct snd_timer_instance
*ti
;
944 mutex_lock(®ister_mutex
);
945 list_del_init(&timer
->device_list
);
946 /* wake up pending sleepers */
947 list_for_each_entry(ti
, &timer
->open_list_head
, open_list
) {
948 /* FIXME: better to have a ti.disconnect() op */
949 if (ti
->ccallback
== snd_timer_user_ccallback
) {
950 struct snd_timer_user
*tu
= ti
->callback_data
;
952 tu
->disconnected
= true;
953 wake_up(&tu
->qchange_sleep
);
956 mutex_unlock(®ister_mutex
);
960 void snd_timer_notify(struct snd_timer
*timer
, int event
, struct timespec
*tstamp
)
963 unsigned long resolution
= 0;
964 struct snd_timer_instance
*ti
, *ts
;
966 if (timer
->card
&& timer
->card
->shutdown
)
968 if (! (timer
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
))
970 if (snd_BUG_ON(event
< SNDRV_TIMER_EVENT_MSTART
||
971 event
> SNDRV_TIMER_EVENT_MRESUME
))
973 spin_lock_irqsave(&timer
->lock
, flags
);
974 if (event
== SNDRV_TIMER_EVENT_MSTART
||
975 event
== SNDRV_TIMER_EVENT_MCONTINUE
||
976 event
== SNDRV_TIMER_EVENT_MRESUME
) {
977 if (timer
->hw
.c_resolution
)
978 resolution
= timer
->hw
.c_resolution(timer
);
980 resolution
= timer
->hw
.resolution
;
982 list_for_each_entry(ti
, &timer
->active_list_head
, active_list
) {
984 ti
->ccallback(ti
, event
, tstamp
, resolution
);
985 list_for_each_entry(ts
, &ti
->slave_active_head
, active_list
)
987 ts
->ccallback(ts
, event
, tstamp
, resolution
);
989 spin_unlock_irqrestore(&timer
->lock
, flags
);
993 * exported functions for global timers
995 int snd_timer_global_new(char *id
, int device
, struct snd_timer
**rtimer
)
997 struct snd_timer_id tid
;
999 tid
.dev_class
= SNDRV_TIMER_CLASS_GLOBAL
;
1000 tid
.dev_sclass
= SNDRV_TIMER_SCLASS_NONE
;
1002 tid
.device
= device
;
1004 return snd_timer_new(NULL
, id
, &tid
, rtimer
);
1007 int snd_timer_global_free(struct snd_timer
*timer
)
1009 return snd_timer_free(timer
);
1012 int snd_timer_global_register(struct snd_timer
*timer
)
1014 struct snd_device dev
;
1016 memset(&dev
, 0, sizeof(dev
));
1017 dev
.device_data
= timer
;
1018 return snd_timer_dev_register(&dev
);
1025 struct snd_timer_system_private
{
1026 struct timer_list tlist
;
1027 unsigned long last_expires
;
1028 unsigned long last_jiffies
;
1029 unsigned long correction
;
1032 static void snd_timer_s_function(unsigned long data
)
1034 struct snd_timer
*timer
= (struct snd_timer
*)data
;
1035 struct snd_timer_system_private
*priv
= timer
->private_data
;
1036 unsigned long jiff
= jiffies
;
1037 if (time_after(jiff
, priv
->last_expires
))
1038 priv
->correction
+= (long)jiff
- (long)priv
->last_expires
;
1039 snd_timer_interrupt(timer
, (long)jiff
- (long)priv
->last_jiffies
);
1042 static int snd_timer_s_start(struct snd_timer
* timer
)
1044 struct snd_timer_system_private
*priv
;
1045 unsigned long njiff
;
1047 priv
= (struct snd_timer_system_private
*) timer
->private_data
;
1048 njiff
= (priv
->last_jiffies
= jiffies
);
1049 if (priv
->correction
> timer
->sticks
- 1) {
1050 priv
->correction
-= timer
->sticks
- 1;
1053 njiff
+= timer
->sticks
- priv
->correction
;
1054 priv
->correction
= 0;
1056 priv
->last_expires
= priv
->tlist
.expires
= njiff
;
1057 add_timer(&priv
->tlist
);
1061 static int snd_timer_s_stop(struct snd_timer
* timer
)
1063 struct snd_timer_system_private
*priv
;
1066 priv
= (struct snd_timer_system_private
*) timer
->private_data
;
1067 del_timer(&priv
->tlist
);
1069 if (time_before(jiff
, priv
->last_expires
))
1070 timer
->sticks
= priv
->last_expires
- jiff
;
1073 priv
->correction
= 0;
1077 static struct snd_timer_hardware snd_timer_system
=
1079 .flags
= SNDRV_TIMER_HW_FIRST
| SNDRV_TIMER_HW_TASKLET
,
1080 .resolution
= 1000000000L / HZ
,
1082 .start
= snd_timer_s_start
,
1083 .stop
= snd_timer_s_stop
1086 static void snd_timer_free_system(struct snd_timer
*timer
)
1088 kfree(timer
->private_data
);
1091 static int snd_timer_register_system(void)
1093 struct snd_timer
*timer
;
1094 struct snd_timer_system_private
*priv
;
1097 err
= snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM
, &timer
);
1100 strcpy(timer
->name
, "system timer");
1101 timer
->hw
= snd_timer_system
;
1102 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
1104 snd_timer_free(timer
);
1107 init_timer(&priv
->tlist
);
1108 priv
->tlist
.function
= snd_timer_s_function
;
1109 priv
->tlist
.data
= (unsigned long) timer
;
1110 timer
->private_data
= priv
;
1111 timer
->private_free
= snd_timer_free_system
;
1112 return snd_timer_global_register(timer
);
1115 #ifdef CONFIG_PROC_FS
1120 static void snd_timer_proc_read(struct snd_info_entry
*entry
,
1121 struct snd_info_buffer
*buffer
)
1123 struct snd_timer
*timer
;
1124 struct snd_timer_instance
*ti
;
1126 mutex_lock(®ister_mutex
);
1127 list_for_each_entry(timer
, &snd_timer_list
, device_list
) {
1128 if (timer
->card
&& timer
->card
->shutdown
)
1130 switch (timer
->tmr_class
) {
1131 case SNDRV_TIMER_CLASS_GLOBAL
:
1132 snd_iprintf(buffer
, "G%i: ", timer
->tmr_device
);
1134 case SNDRV_TIMER_CLASS_CARD
:
1135 snd_iprintf(buffer
, "C%i-%i: ",
1136 timer
->card
->number
, timer
->tmr_device
);
1138 case SNDRV_TIMER_CLASS_PCM
:
1139 snd_iprintf(buffer
, "P%i-%i-%i: ", timer
->card
->number
,
1140 timer
->tmr_device
, timer
->tmr_subdevice
);
1143 snd_iprintf(buffer
, "?%i-%i-%i-%i: ", timer
->tmr_class
,
1144 timer
->card
? timer
->card
->number
: -1,
1145 timer
->tmr_device
, timer
->tmr_subdevice
);
1147 snd_iprintf(buffer
, "%s :", timer
->name
);
1148 if (timer
->hw
.resolution
)
1149 snd_iprintf(buffer
, " %lu.%03luus (%lu ticks)",
1150 timer
->hw
.resolution
/ 1000,
1151 timer
->hw
.resolution
% 1000,
1153 if (timer
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
)
1154 snd_iprintf(buffer
, " SLAVE");
1155 snd_iprintf(buffer
, "\n");
1156 list_for_each_entry(ti
, &timer
->open_list_head
, open_list
)
1157 snd_iprintf(buffer
, " Client %s : %s\n",
1158 ti
->owner
? ti
->owner
: "unknown",
1159 ti
->flags
& (SNDRV_TIMER_IFLG_START
|
1160 SNDRV_TIMER_IFLG_RUNNING
)
1161 ? "running" : "stopped");
1163 mutex_unlock(®ister_mutex
);
1166 static struct snd_info_entry
*snd_timer_proc_entry
;
1168 static void __init
snd_timer_proc_init(void)
1170 struct snd_info_entry
*entry
;
1172 entry
= snd_info_create_module_entry(THIS_MODULE
, "timers", NULL
);
1173 if (entry
!= NULL
) {
1174 entry
->c
.text
.read
= snd_timer_proc_read
;
1175 if (snd_info_register(entry
) < 0) {
1176 snd_info_free_entry(entry
);
1180 snd_timer_proc_entry
= entry
;
1183 static void __exit
snd_timer_proc_done(void)
1185 snd_info_free_entry(snd_timer_proc_entry
);
1187 #else /* !CONFIG_PROC_FS */
1188 #define snd_timer_proc_init()
1189 #define snd_timer_proc_done()
1193 * USER SPACE interface
1196 static void snd_timer_user_interrupt(struct snd_timer_instance
*timeri
,
1197 unsigned long resolution
,
1198 unsigned long ticks
)
1200 struct snd_timer_user
*tu
= timeri
->callback_data
;
1201 struct snd_timer_read
*r
;
1204 spin_lock(&tu
->qlock
);
1205 if (tu
->qused
> 0) {
1206 prev
= tu
->qtail
== 0 ? tu
->queue_size
- 1 : tu
->qtail
- 1;
1207 r
= &tu
->queue
[prev
];
1208 if (r
->resolution
== resolution
) {
1213 if (tu
->qused
>= tu
->queue_size
) {
1216 r
= &tu
->queue
[tu
->qtail
++];
1217 tu
->qtail
%= tu
->queue_size
;
1218 r
->resolution
= resolution
;
1223 spin_unlock(&tu
->qlock
);
1224 kill_fasync(&tu
->fasync
, SIGIO
, POLL_IN
);
1225 wake_up(&tu
->qchange_sleep
);
1228 static void snd_timer_user_append_to_tqueue(struct snd_timer_user
*tu
,
1229 struct snd_timer_tread
*tread
)
1231 if (tu
->qused
>= tu
->queue_size
) {
1234 memcpy(&tu
->tqueue
[tu
->qtail
++], tread
, sizeof(*tread
));
1235 tu
->qtail
%= tu
->queue_size
;
1240 static void snd_timer_user_ccallback(struct snd_timer_instance
*timeri
,
1242 struct timespec
*tstamp
,
1243 unsigned long resolution
)
1245 struct snd_timer_user
*tu
= timeri
->callback_data
;
1246 struct snd_timer_tread r1
;
1247 unsigned long flags
;
1249 if (event
>= SNDRV_TIMER_EVENT_START
&&
1250 event
<= SNDRV_TIMER_EVENT_PAUSE
)
1251 tu
->tstamp
= *tstamp
;
1252 if ((tu
->filter
& (1 << event
)) == 0 || !tu
->tread
)
1255 r1
.tstamp
= *tstamp
;
1256 r1
.val
= resolution
;
1257 spin_lock_irqsave(&tu
->qlock
, flags
);
1258 snd_timer_user_append_to_tqueue(tu
, &r1
);
1259 spin_unlock_irqrestore(&tu
->qlock
, flags
);
1260 kill_fasync(&tu
->fasync
, SIGIO
, POLL_IN
);
1261 wake_up(&tu
->qchange_sleep
);
1264 static void snd_timer_user_tinterrupt(struct snd_timer_instance
*timeri
,
1265 unsigned long resolution
,
1266 unsigned long ticks
)
1268 struct snd_timer_user
*tu
= timeri
->callback_data
;
1269 struct snd_timer_tread
*r
, r1
;
1270 struct timespec tstamp
;
1271 int prev
, append
= 0;
1273 memset(&tstamp
, 0, sizeof(tstamp
));
1274 spin_lock(&tu
->qlock
);
1275 if ((tu
->filter
& ((1 << SNDRV_TIMER_EVENT_RESOLUTION
) |
1276 (1 << SNDRV_TIMER_EVENT_TICK
))) == 0) {
1277 spin_unlock(&tu
->qlock
);
1280 if (tu
->last_resolution
!= resolution
|| ticks
> 0) {
1281 if (timer_tstamp_monotonic
)
1282 ktime_get_ts(&tstamp
);
1284 getnstimeofday(&tstamp
);
1286 if ((tu
->filter
& (1 << SNDRV_TIMER_EVENT_RESOLUTION
)) &&
1287 tu
->last_resolution
!= resolution
) {
1288 r1
.event
= SNDRV_TIMER_EVENT_RESOLUTION
;
1290 r1
.val
= resolution
;
1291 snd_timer_user_append_to_tqueue(tu
, &r1
);
1292 tu
->last_resolution
= resolution
;
1295 if ((tu
->filter
& (1 << SNDRV_TIMER_EVENT_TICK
)) == 0)
1299 if (tu
->qused
> 0) {
1300 prev
= tu
->qtail
== 0 ? tu
->queue_size
- 1 : tu
->qtail
- 1;
1301 r
= &tu
->tqueue
[prev
];
1302 if (r
->event
== SNDRV_TIMER_EVENT_TICK
) {
1309 r1
.event
= SNDRV_TIMER_EVENT_TICK
;
1312 snd_timer_user_append_to_tqueue(tu
, &r1
);
1315 spin_unlock(&tu
->qlock
);
1318 kill_fasync(&tu
->fasync
, SIGIO
, POLL_IN
);
1319 wake_up(&tu
->qchange_sleep
);
1322 static int snd_timer_user_open(struct inode
*inode
, struct file
*file
)
1324 struct snd_timer_user
*tu
;
1327 err
= nonseekable_open(inode
, file
);
1331 tu
= kzalloc(sizeof(*tu
), GFP_KERNEL
);
1334 spin_lock_init(&tu
->qlock
);
1335 init_waitqueue_head(&tu
->qchange_sleep
);
1336 mutex_init(&tu
->ioctl_lock
);
1338 tu
->queue_size
= 128;
1339 tu
->queue
= kmalloc(tu
->queue_size
* sizeof(struct snd_timer_read
),
1341 if (tu
->queue
== NULL
) {
1345 file
->private_data
= tu
;
1349 static int snd_timer_user_release(struct inode
*inode
, struct file
*file
)
1351 struct snd_timer_user
*tu
;
1353 if (file
->private_data
) {
1354 tu
= file
->private_data
;
1355 file
->private_data
= NULL
;
1356 mutex_lock(&tu
->ioctl_lock
);
1358 snd_timer_close(tu
->timeri
);
1359 mutex_unlock(&tu
->ioctl_lock
);
1367 static void snd_timer_user_zero_id(struct snd_timer_id
*id
)
1369 id
->dev_class
= SNDRV_TIMER_CLASS_NONE
;
1370 id
->dev_sclass
= SNDRV_TIMER_SCLASS_NONE
;
1376 static void snd_timer_user_copy_id(struct snd_timer_id
*id
, struct snd_timer
*timer
)
1378 id
->dev_class
= timer
->tmr_class
;
1379 id
->dev_sclass
= SNDRV_TIMER_SCLASS_NONE
;
1380 id
->card
= timer
->card
? timer
->card
->number
: -1;
1381 id
->device
= timer
->tmr_device
;
1382 id
->subdevice
= timer
->tmr_subdevice
;
1385 static int snd_timer_user_next_device(struct snd_timer_id __user
*_tid
)
1387 struct snd_timer_id id
;
1388 struct snd_timer
*timer
;
1389 struct list_head
*p
;
1391 if (copy_from_user(&id
, _tid
, sizeof(id
)))
1393 mutex_lock(®ister_mutex
);
1394 if (id
.dev_class
< 0) { /* first item */
1395 if (list_empty(&snd_timer_list
))
1396 snd_timer_user_zero_id(&id
);
1398 timer
= list_entry(snd_timer_list
.next
,
1399 struct snd_timer
, device_list
);
1400 snd_timer_user_copy_id(&id
, timer
);
1403 switch (id
.dev_class
) {
1404 case SNDRV_TIMER_CLASS_GLOBAL
:
1405 id
.device
= id
.device
< 0 ? 0 : id
.device
+ 1;
1406 list_for_each(p
, &snd_timer_list
) {
1407 timer
= list_entry(p
, struct snd_timer
, device_list
);
1408 if (timer
->tmr_class
> SNDRV_TIMER_CLASS_GLOBAL
) {
1409 snd_timer_user_copy_id(&id
, timer
);
1412 if (timer
->tmr_device
>= id
.device
) {
1413 snd_timer_user_copy_id(&id
, timer
);
1417 if (p
== &snd_timer_list
)
1418 snd_timer_user_zero_id(&id
);
1420 case SNDRV_TIMER_CLASS_CARD
:
1421 case SNDRV_TIMER_CLASS_PCM
:
1428 if (id
.device
< 0) {
1431 if (id
.subdevice
< 0) {
1439 list_for_each(p
, &snd_timer_list
) {
1440 timer
= list_entry(p
, struct snd_timer
, device_list
);
1441 if (timer
->tmr_class
> id
.dev_class
) {
1442 snd_timer_user_copy_id(&id
, timer
);
1445 if (timer
->tmr_class
< id
.dev_class
)
1447 if (timer
->card
->number
> id
.card
) {
1448 snd_timer_user_copy_id(&id
, timer
);
1451 if (timer
->card
->number
< id
.card
)
1453 if (timer
->tmr_device
> id
.device
) {
1454 snd_timer_user_copy_id(&id
, timer
);
1457 if (timer
->tmr_device
< id
.device
)
1459 if (timer
->tmr_subdevice
> id
.subdevice
) {
1460 snd_timer_user_copy_id(&id
, timer
);
1463 if (timer
->tmr_subdevice
< id
.subdevice
)
1465 snd_timer_user_copy_id(&id
, timer
);
1468 if (p
== &snd_timer_list
)
1469 snd_timer_user_zero_id(&id
);
1472 snd_timer_user_zero_id(&id
);
1475 mutex_unlock(®ister_mutex
);
1476 if (copy_to_user(_tid
, &id
, sizeof(*_tid
)))
1481 static int snd_timer_user_ginfo(struct file
*file
,
1482 struct snd_timer_ginfo __user
*_ginfo
)
1484 struct snd_timer_ginfo
*ginfo
;
1485 struct snd_timer_id tid
;
1486 struct snd_timer
*t
;
1487 struct list_head
*p
;
1490 ginfo
= memdup_user(_ginfo
, sizeof(*ginfo
));
1492 return PTR_ERR(ginfo
);
1495 memset(ginfo
, 0, sizeof(*ginfo
));
1497 mutex_lock(®ister_mutex
);
1498 t
= snd_timer_find(&tid
);
1500 ginfo
->card
= t
->card
? t
->card
->number
: -1;
1501 if (t
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
)
1502 ginfo
->flags
|= SNDRV_TIMER_FLG_SLAVE
;
1503 strlcpy(ginfo
->id
, t
->id
, sizeof(ginfo
->id
));
1504 strlcpy(ginfo
->name
, t
->name
, sizeof(ginfo
->name
));
1505 ginfo
->resolution
= t
->hw
.resolution
;
1506 if (t
->hw
.resolution_min
> 0) {
1507 ginfo
->resolution_min
= t
->hw
.resolution_min
;
1508 ginfo
->resolution_max
= t
->hw
.resolution_max
;
1510 list_for_each(p
, &t
->open_list_head
) {
1516 mutex_unlock(®ister_mutex
);
1517 if (err
>= 0 && copy_to_user(_ginfo
, ginfo
, sizeof(*ginfo
)))
1523 static int snd_timer_user_gparams(struct file
*file
,
1524 struct snd_timer_gparams __user
*_gparams
)
1526 struct snd_timer_gparams gparams
;
1527 struct snd_timer
*t
;
1530 if (copy_from_user(&gparams
, _gparams
, sizeof(gparams
)))
1532 mutex_lock(®ister_mutex
);
1533 t
= snd_timer_find(&gparams
.tid
);
1538 if (!list_empty(&t
->open_list_head
)) {
1542 if (!t
->hw
.set_period
) {
1546 err
= t
->hw
.set_period(t
, gparams
.period_num
, gparams
.period_den
);
1548 mutex_unlock(®ister_mutex
);
1552 static int snd_timer_user_gstatus(struct file
*file
,
1553 struct snd_timer_gstatus __user
*_gstatus
)
1555 struct snd_timer_gstatus gstatus
;
1556 struct snd_timer_id tid
;
1557 struct snd_timer
*t
;
1560 if (copy_from_user(&gstatus
, _gstatus
, sizeof(gstatus
)))
1563 memset(&gstatus
, 0, sizeof(gstatus
));
1565 mutex_lock(®ister_mutex
);
1566 t
= snd_timer_find(&tid
);
1568 if (t
->hw
.c_resolution
)
1569 gstatus
.resolution
= t
->hw
.c_resolution(t
);
1571 gstatus
.resolution
= t
->hw
.resolution
;
1572 if (t
->hw
.precise_resolution
) {
1573 t
->hw
.precise_resolution(t
, &gstatus
.resolution_num
,
1574 &gstatus
.resolution_den
);
1576 gstatus
.resolution_num
= gstatus
.resolution
;
1577 gstatus
.resolution_den
= 1000000000uL;
1582 mutex_unlock(®ister_mutex
);
1583 if (err
>= 0 && copy_to_user(_gstatus
, &gstatus
, sizeof(gstatus
)))
1588 static int snd_timer_user_tselect(struct file
*file
,
1589 struct snd_timer_select __user
*_tselect
)
1591 struct snd_timer_user
*tu
;
1592 struct snd_timer_select tselect
;
1596 tu
= file
->private_data
;
1598 snd_timer_close(tu
->timeri
);
1601 if (copy_from_user(&tselect
, _tselect
, sizeof(tselect
))) {
1605 sprintf(str
, "application %i", current
->pid
);
1606 if (tselect
.id
.dev_class
!= SNDRV_TIMER_CLASS_SLAVE
)
1607 tselect
.id
.dev_sclass
= SNDRV_TIMER_SCLASS_APPLICATION
;
1608 err
= snd_timer_open(&tu
->timeri
, str
, &tselect
.id
, current
->pid
);
1617 tu
->tqueue
= kmalloc(tu
->queue_size
* sizeof(struct snd_timer_tread
),
1619 if (tu
->tqueue
== NULL
)
1622 tu
->queue
= kmalloc(tu
->queue_size
* sizeof(struct snd_timer_read
),
1624 if (tu
->queue
== NULL
)
1629 snd_timer_close(tu
->timeri
);
1632 tu
->timeri
->flags
|= SNDRV_TIMER_IFLG_FAST
;
1633 tu
->timeri
->callback
= tu
->tread
1634 ? snd_timer_user_tinterrupt
: snd_timer_user_interrupt
;
1635 tu
->timeri
->ccallback
= snd_timer_user_ccallback
;
1636 tu
->timeri
->callback_data
= (void *)tu
;
1643 static int snd_timer_user_info(struct file
*file
,
1644 struct snd_timer_info __user
*_info
)
1646 struct snd_timer_user
*tu
;
1647 struct snd_timer_info
*info
;
1648 struct snd_timer
*t
;
1651 tu
= file
->private_data
;
1654 t
= tu
->timeri
->timer
;
1658 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
1661 info
->card
= t
->card
? t
->card
->number
: -1;
1662 if (t
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
)
1663 info
->flags
|= SNDRV_TIMER_FLG_SLAVE
;
1664 strlcpy(info
->id
, t
->id
, sizeof(info
->id
));
1665 strlcpy(info
->name
, t
->name
, sizeof(info
->name
));
1666 info
->resolution
= t
->hw
.resolution
;
1667 if (copy_to_user(_info
, info
, sizeof(*_info
)))
1673 static int snd_timer_user_params(struct file
*file
,
1674 struct snd_timer_params __user
*_params
)
1676 struct snd_timer_user
*tu
;
1677 struct snd_timer_params params
;
1678 struct snd_timer
*t
;
1679 struct snd_timer_read
*tr
;
1680 struct snd_timer_tread
*ttr
;
1683 tu
= file
->private_data
;
1686 t
= tu
->timeri
->timer
;
1689 if (copy_from_user(¶ms
, _params
, sizeof(params
)))
1691 if (!(t
->hw
.flags
& SNDRV_TIMER_HW_SLAVE
) && params
.ticks
< 1) {
1695 if (params
.queue_size
> 0 &&
1696 (params
.queue_size
< 32 || params
.queue_size
> 1024)) {
1700 if (params
.filter
& ~((1<<SNDRV_TIMER_EVENT_RESOLUTION
)|
1701 (1<<SNDRV_TIMER_EVENT_TICK
)|
1702 (1<<SNDRV_TIMER_EVENT_START
)|
1703 (1<<SNDRV_TIMER_EVENT_STOP
)|
1704 (1<<SNDRV_TIMER_EVENT_CONTINUE
)|
1705 (1<<SNDRV_TIMER_EVENT_PAUSE
)|
1706 (1<<SNDRV_TIMER_EVENT_SUSPEND
)|
1707 (1<<SNDRV_TIMER_EVENT_RESUME
)|
1708 (1<<SNDRV_TIMER_EVENT_MSTART
)|
1709 (1<<SNDRV_TIMER_EVENT_MSTOP
)|
1710 (1<<SNDRV_TIMER_EVENT_MCONTINUE
)|
1711 (1<<SNDRV_TIMER_EVENT_MPAUSE
)|
1712 (1<<SNDRV_TIMER_EVENT_MSUSPEND
)|
1713 (1<<SNDRV_TIMER_EVENT_MRESUME
))) {
1717 snd_timer_stop(tu
->timeri
);
1718 spin_lock_irq(&t
->lock
);
1719 tu
->timeri
->flags
&= ~(SNDRV_TIMER_IFLG_AUTO
|
1720 SNDRV_TIMER_IFLG_EXCLUSIVE
|
1721 SNDRV_TIMER_IFLG_EARLY_EVENT
);
1722 if (params
.flags
& SNDRV_TIMER_PSFLG_AUTO
)
1723 tu
->timeri
->flags
|= SNDRV_TIMER_IFLG_AUTO
;
1724 if (params
.flags
& SNDRV_TIMER_PSFLG_EXCLUSIVE
)
1725 tu
->timeri
->flags
|= SNDRV_TIMER_IFLG_EXCLUSIVE
;
1726 if (params
.flags
& SNDRV_TIMER_PSFLG_EARLY_EVENT
)
1727 tu
->timeri
->flags
|= SNDRV_TIMER_IFLG_EARLY_EVENT
;
1728 spin_unlock_irq(&t
->lock
);
1729 if (params
.queue_size
> 0 &&
1730 (unsigned int)tu
->queue_size
!= params
.queue_size
) {
1732 ttr
= kmalloc(params
.queue_size
* sizeof(*ttr
),
1736 tu
->queue_size
= params
.queue_size
;
1740 tr
= kmalloc(params
.queue_size
* sizeof(*tr
),
1744 tu
->queue_size
= params
.queue_size
;
1749 tu
->qhead
= tu
->qtail
= tu
->qused
= 0;
1750 if (tu
->timeri
->flags
& SNDRV_TIMER_IFLG_EARLY_EVENT
) {
1752 struct snd_timer_tread tread
;
1753 tread
.event
= SNDRV_TIMER_EVENT_EARLY
;
1754 tread
.tstamp
.tv_sec
= 0;
1755 tread
.tstamp
.tv_nsec
= 0;
1757 snd_timer_user_append_to_tqueue(tu
, &tread
);
1759 struct snd_timer_read
*r
= &tu
->queue
[0];
1766 tu
->filter
= params
.filter
;
1767 tu
->ticks
= params
.ticks
;
1770 if (copy_to_user(_params
, ¶ms
, sizeof(params
)))
1775 static int snd_timer_user_status(struct file
*file
,
1776 struct snd_timer_status __user
*_status
)
1778 struct snd_timer_user
*tu
;
1779 struct snd_timer_status status
;
1781 tu
= file
->private_data
;
1784 memset(&status
, 0, sizeof(status
));
1785 status
.tstamp
= tu
->tstamp
;
1786 status
.resolution
= snd_timer_resolution(tu
->timeri
);
1787 status
.lost
= tu
->timeri
->lost
;
1788 status
.overrun
= tu
->overrun
;
1789 spin_lock_irq(&tu
->qlock
);
1790 status
.queue
= tu
->qused
;
1791 spin_unlock_irq(&tu
->qlock
);
1792 if (copy_to_user(_status
, &status
, sizeof(status
)))
1797 static int snd_timer_user_start(struct file
*file
)
1800 struct snd_timer_user
*tu
;
1802 tu
= file
->private_data
;
1805 snd_timer_stop(tu
->timeri
);
1806 tu
->timeri
->lost
= 0;
1807 tu
->last_resolution
= 0;
1808 return (err
= snd_timer_start(tu
->timeri
, tu
->ticks
)) < 0 ? err
: 0;
1811 static int snd_timer_user_stop(struct file
*file
)
1814 struct snd_timer_user
*tu
;
1816 tu
= file
->private_data
;
1819 return (err
= snd_timer_stop(tu
->timeri
)) < 0 ? err
: 0;
1822 static int snd_timer_user_continue(struct file
*file
)
1825 struct snd_timer_user
*tu
;
1827 tu
= file
->private_data
;
1830 tu
->timeri
->lost
= 0;
1831 return (err
= snd_timer_continue(tu
->timeri
)) < 0 ? err
: 0;
1834 static int snd_timer_user_pause(struct file
*file
)
1837 struct snd_timer_user
*tu
;
1839 tu
= file
->private_data
;
1842 return (err
= snd_timer_pause(tu
->timeri
)) < 0 ? err
: 0;
1846 SNDRV_TIMER_IOCTL_START_OLD
= _IO('T', 0x20),
1847 SNDRV_TIMER_IOCTL_STOP_OLD
= _IO('T', 0x21),
1848 SNDRV_TIMER_IOCTL_CONTINUE_OLD
= _IO('T', 0x22),
1849 SNDRV_TIMER_IOCTL_PAUSE_OLD
= _IO('T', 0x23),
1852 static long __snd_timer_user_ioctl(struct file
*file
, unsigned int cmd
,
1855 struct snd_timer_user
*tu
;
1856 void __user
*argp
= (void __user
*)arg
;
1857 int __user
*p
= argp
;
1859 tu
= file
->private_data
;
1861 case SNDRV_TIMER_IOCTL_PVERSION
:
1862 return put_user(SNDRV_TIMER_VERSION
, p
) ? -EFAULT
: 0;
1863 case SNDRV_TIMER_IOCTL_NEXT_DEVICE
:
1864 return snd_timer_user_next_device(argp
);
1865 case SNDRV_TIMER_IOCTL_TREAD
:
1869 if (tu
->timeri
) /* too late */
1871 if (get_user(xarg
, p
))
1873 tu
->tread
= xarg
? 1 : 0;
1876 case SNDRV_TIMER_IOCTL_GINFO
:
1877 return snd_timer_user_ginfo(file
, argp
);
1878 case SNDRV_TIMER_IOCTL_GPARAMS
:
1879 return snd_timer_user_gparams(file
, argp
);
1880 case SNDRV_TIMER_IOCTL_GSTATUS
:
1881 return snd_timer_user_gstatus(file
, argp
);
1882 case SNDRV_TIMER_IOCTL_SELECT
:
1883 return snd_timer_user_tselect(file
, argp
);
1884 case SNDRV_TIMER_IOCTL_INFO
:
1885 return snd_timer_user_info(file
, argp
);
1886 case SNDRV_TIMER_IOCTL_PARAMS
:
1887 return snd_timer_user_params(file
, argp
);
1888 case SNDRV_TIMER_IOCTL_STATUS
:
1889 return snd_timer_user_status(file
, argp
);
1890 case SNDRV_TIMER_IOCTL_START
:
1891 case SNDRV_TIMER_IOCTL_START_OLD
:
1892 return snd_timer_user_start(file
);
1893 case SNDRV_TIMER_IOCTL_STOP
:
1894 case SNDRV_TIMER_IOCTL_STOP_OLD
:
1895 return snd_timer_user_stop(file
);
1896 case SNDRV_TIMER_IOCTL_CONTINUE
:
1897 case SNDRV_TIMER_IOCTL_CONTINUE_OLD
:
1898 return snd_timer_user_continue(file
);
1899 case SNDRV_TIMER_IOCTL_PAUSE
:
1900 case SNDRV_TIMER_IOCTL_PAUSE_OLD
:
1901 return snd_timer_user_pause(file
);
1906 static long snd_timer_user_ioctl(struct file
*file
, unsigned int cmd
,
1909 struct snd_timer_user
*tu
= file
->private_data
;
1912 mutex_lock(&tu
->ioctl_lock
);
1913 ret
= __snd_timer_user_ioctl(file
, cmd
, arg
);
1914 mutex_unlock(&tu
->ioctl_lock
);
1918 static int snd_timer_user_fasync(int fd
, struct file
* file
, int on
)
1920 struct snd_timer_user
*tu
;
1922 tu
= file
->private_data
;
1923 return fasync_helper(fd
, file
, on
, &tu
->fasync
);
1926 static ssize_t
snd_timer_user_read(struct file
*file
, char __user
*buffer
,
1927 size_t count
, loff_t
*offset
)
1929 struct snd_timer_user
*tu
;
1930 long result
= 0, unit
;
1934 tu
= file
->private_data
;
1935 unit
= tu
->tread
? sizeof(struct snd_timer_tread
) : sizeof(struct snd_timer_read
);
1936 spin_lock_irq(&tu
->qlock
);
1937 while ((long)count
- result
>= unit
) {
1938 while (!tu
->qused
) {
1941 if ((file
->f_flags
& O_NONBLOCK
) != 0 || result
> 0) {
1946 set_current_state(TASK_INTERRUPTIBLE
);
1947 init_waitqueue_entry(&wait
, current
);
1948 add_wait_queue(&tu
->qchange_sleep
, &wait
);
1950 spin_unlock_irq(&tu
->qlock
);
1952 spin_lock_irq(&tu
->qlock
);
1954 remove_wait_queue(&tu
->qchange_sleep
, &wait
);
1956 if (tu
->disconnected
) {
1960 if (signal_pending(current
)) {
1966 qhead
= tu
->qhead
++;
1967 tu
->qhead
%= tu
->queue_size
;
1968 spin_unlock_irq(&tu
->qlock
);
1971 if (copy_to_user(buffer
, &tu
->tqueue
[qhead
],
1972 sizeof(struct snd_timer_tread
)))
1975 if (copy_to_user(buffer
, &tu
->queue
[qhead
],
1976 sizeof(struct snd_timer_read
)))
1980 spin_lock_irq(&tu
->qlock
);
1988 spin_unlock_irq(&tu
->qlock
);
1989 return result
> 0 ? result
: err
;
1992 static unsigned int snd_timer_user_poll(struct file
*file
, poll_table
* wait
)
1995 struct snd_timer_user
*tu
;
1997 tu
= file
->private_data
;
1999 poll_wait(file
, &tu
->qchange_sleep
, wait
);
2003 mask
|= POLLIN
| POLLRDNORM
;
2004 if (tu
->disconnected
)
2010 #ifdef CONFIG_COMPAT
2011 #include "timer_compat.c"
2013 #define snd_timer_user_ioctl_compat NULL
2016 static const struct file_operations snd_timer_f_ops
=
2018 .owner
= THIS_MODULE
,
2019 .read
= snd_timer_user_read
,
2020 .open
= snd_timer_user_open
,
2021 .release
= snd_timer_user_release
,
2022 .llseek
= no_llseek
,
2023 .poll
= snd_timer_user_poll
,
2024 .unlocked_ioctl
= snd_timer_user_ioctl
,
2025 .compat_ioctl
= snd_timer_user_ioctl_compat
,
2026 .fasync
= snd_timer_user_fasync
,
2033 static int __init
alsa_timer_init(void)
2037 #ifdef SNDRV_OSS_INFO_DEV_TIMERS
2038 snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS
, SNDRV_CARDS
- 1,
2042 if ((err
= snd_timer_register_system()) < 0)
2043 pr_err("ALSA: unable to register system timer (%i)\n", err
);
2044 if ((err
= snd_register_device(SNDRV_DEVICE_TYPE_TIMER
, NULL
, 0,
2045 &snd_timer_f_ops
, NULL
, "timer")) < 0)
2046 pr_err("ALSA: unable to register timer device (%i)\n", err
);
2047 snd_timer_proc_init();
2051 static void __exit
alsa_timer_exit(void)
2053 struct list_head
*p
, *n
;
2055 snd_unregister_device(SNDRV_DEVICE_TYPE_TIMER
, NULL
, 0);
2056 /* unregister the system timer */
2057 list_for_each_safe(p
, n
, &snd_timer_list
) {
2058 struct snd_timer
*timer
= list_entry(p
, struct snd_timer
, device_list
);
2059 snd_timer_free(timer
);
2061 snd_timer_proc_done();
2062 #ifdef SNDRV_OSS_INFO_DEV_TIMERS
2063 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS
, SNDRV_CARDS
- 1);
2067 module_init(alsa_timer_init
)
2068 module_exit(alsa_timer_exit
)
2070 EXPORT_SYMBOL(snd_timer_open
);
2071 EXPORT_SYMBOL(snd_timer_close
);
2072 EXPORT_SYMBOL(snd_timer_resolution
);
2073 EXPORT_SYMBOL(snd_timer_start
);
2074 EXPORT_SYMBOL(snd_timer_stop
);
2075 EXPORT_SYMBOL(snd_timer_continue
);
2076 EXPORT_SYMBOL(snd_timer_pause
);
2077 EXPORT_SYMBOL(snd_timer_new
);
2078 EXPORT_SYMBOL(snd_timer_notify
);
2079 EXPORT_SYMBOL(snd_timer_global_new
);
2080 EXPORT_SYMBOL(snd_timer_global_free
);
2081 EXPORT_SYMBOL(snd_timer_global_register
);
2082 EXPORT_SYMBOL(snd_timer_interrupt
);