blob: 681fb051b9ebe3b56aa7cf53e1aff8c2416f1888 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Timers abstract layer
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *
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.
10 *
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.
15 *
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
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
25#include <linux/time.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010026#include <linux/mutex.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050027#include <linux/device.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040028#include <linux/module.h>
Paulo Marques543537b2005-06-23 00:09:02 -070029#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010038#if IS_ENABLED(CONFIG_SND_HRTIMER)
Clemens Ladisch109fef92010-11-18 09:53:54 +010039#define DEFAULT_TIMER_LIMIT 4
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010040#elif IS_ENABLED(CONFIG_SND_RTCTIMER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define DEFAULT_TIMER_LIMIT 2
42#else
43#define DEFAULT_TIMER_LIMIT 1
44#endif
45
46static int timer_limit = DEFAULT_TIMER_LIMIT;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010047static int timer_tstamp_monotonic = 1;
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020048MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_DESCRIPTION("ALSA timer interface");
50MODULE_LICENSE("GPL");
51module_param(timer_limit, int, 0444);
52MODULE_PARM_DESC(timer_limit, "Maximum global timers in system.");
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010053module_param(timer_tstamp_monotonic, int, 0444);
54MODULE_PARM_DESC(timer_tstamp_monotonic, "Use posix monotonic clock source for timestamps (default).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Kay Sievers03cfe6f2010-11-23 17:43:19 +010056MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR, SNDRV_MINOR_TIMER);
57MODULE_ALIAS("devname:snd/timer");
58
Takashi Iwai53d2f742005-11-17 13:56:05 +010059struct snd_timer_user {
60 struct snd_timer_instance *timeri;
Clemens Ladisch6b172a82005-10-12 17:20:21 +020061 int tread; /* enhanced read with timestamps and events */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 unsigned long ticks;
63 unsigned long overrun;
64 int qhead;
65 int qtail;
66 int qused;
67 int queue_size;
Takashi Iwai230323d2016-01-21 17:19:31 +010068 bool disconnected;
Takashi Iwai53d2f742005-11-17 13:56:05 +010069 struct snd_timer_read *queue;
70 struct snd_timer_tread *tqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 spinlock_t qlock;
72 unsigned long last_resolution;
73 unsigned int filter;
74 struct timespec tstamp; /* trigger tstamp */
75 wait_queue_head_t qchange_sleep;
76 struct fasync_struct *fasync;
Takashi Iwaiaf368022016-01-13 17:48:01 +010077 struct mutex ioctl_lock;
Takashi Iwai53d2f742005-11-17 13:56:05 +010078};
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* list of timers */
81static LIST_HEAD(snd_timer_list);
82
83/* list of slave instances */
84static LIST_HEAD(snd_timer_slave_list);
85
86/* lock for slave active lists */
87static DEFINE_SPINLOCK(slave_active_lock);
88
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010089static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Takashi Iwai53d2f742005-11-17 13:56:05 +010091static int snd_timer_free(struct snd_timer *timer);
92static int snd_timer_dev_free(struct snd_device *device);
93static int snd_timer_dev_register(struct snd_device *device);
Takashi Iwaic4614822006-06-23 14:38:23 +020094static int snd_timer_dev_disconnect(struct snd_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Takashi Iwai53d2f742005-11-17 13:56:05 +010096static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
99 * create a timer instance with the given owner string.
100 * when timer is not NULL, increments the module counter
101 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100102static struct snd_timer_instance *snd_timer_instance_new(char *owner,
103 struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100105 struct snd_timer_instance *timeri;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200106 timeri = kzalloc(sizeof(*timeri), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (timeri == NULL)
108 return NULL;
Paulo Marques543537b2005-06-23 00:09:02 -0700109 timeri->owner = kstrdup(owner, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (! timeri->owner) {
111 kfree(timeri);
112 return NULL;
113 }
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);
119
120 timeri->timer = timer;
Clemens Ladischde242142005-10-12 17:12:31 +0200121 if (timer && !try_module_get(timer->module)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 kfree(timeri->owner);
123 kfree(timeri);
124 return NULL;
125 }
126
127 return timeri;
128}
129
130/*
131 * find a timer instance from the given timer id
132 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100133static struct snd_timer *snd_timer_find(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100135 struct snd_timer *timer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Johannes Berg9244b2c2006-10-05 16:02:22 +0200137 list_for_each_entry(timer, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (timer->tmr_class != tid->dev_class)
139 continue;
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))
144 continue;
145 if (timer->tmr_device != tid->device)
146 continue;
147 if (timer->tmr_subdevice != tid->subdevice)
148 continue;
149 return timer;
150 }
151 return NULL;
152}
153
Johannes Bergee2da992008-07-09 10:28:41 +0200154#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Takashi Iwai53d2f742005-11-17 13:56:05 +0100156static void snd_timer_request(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 switch (tid->dev_class) {
159 case SNDRV_TIMER_CLASS_GLOBAL:
160 if (tid->device < timer_limit)
161 request_module("snd-timer-%i", tid->device);
162 break;
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);
167 break;
168 default:
169 break;
170 }
171}
172
173#endif
174
175/*
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.
178 *
179 * call this with register_mutex down.
180 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100181static void snd_timer_check_slave(struct snd_timer_instance *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100183 struct snd_timer *timer;
184 struct snd_timer_instance *master;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* FIXME: it's really dumb to look up all entries.. */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200187 list_for_each_entry(timer, &snd_timer_list, device_list) {
188 list_for_each_entry(master, &timer->open_list_head, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (slave->slave_class == master->slave_class &&
190 slave->slave_id == master->slave_id) {
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100191 list_move_tail(&slave->open_list,
192 &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 spin_lock_irq(&slave_active_lock);
194 slave->master = master;
195 slave->timer = master->timer;
196 spin_unlock_irq(&slave_active_lock);
197 return;
198 }
199 }
200 }
201}
202
203/*
204 * look for slave instances matching with the slave id of the given master.
205 * when found, relink the open_link of slaves.
206 *
207 * call this with register_mutex down.
208 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100209static void snd_timer_check_master(struct snd_timer_instance *master)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200211 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* check all pending slaves */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200214 list_for_each_entry_safe(slave, tmp, &snd_timer_slave_list, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (slave->slave_class == master->slave_class &&
216 slave->slave_id == master->slave_id) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200217 list_move_tail(&slave->open_list, &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 spin_lock_irq(&slave_active_lock);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100219 spin_lock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 slave->master = master;
221 slave->timer = master->timer;
222 if (slave->flags & SNDRV_TIMER_IFLG_RUNNING)
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200223 list_add_tail(&slave->active_list,
224 &master->slave_active_head);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100225 spin_unlock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 spin_unlock_irq(&slave_active_lock);
227 }
228 }
229}
230
231/*
232 * open a timer instance
233 * when opening a master, the slave id must be here given.
234 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100235int snd_timer_open(struct snd_timer_instance **ti,
236 char *owner, struct snd_timer_id *tid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 unsigned int slave_id)
238{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100239 struct snd_timer *timer;
240 struct snd_timer_instance *timeri = NULL;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 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) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100246 pr_debug("ALSA: timer: invalid slave class %i\n",
247 tid->dev_sclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -EINVAL;
249 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100250 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 timeri = snd_timer_instance_new(owner, NULL);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200252 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100253 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200254 return -ENOMEM;
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 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);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100261 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 *ti = timeri;
263 return 0;
264 }
265
266 /* open a master instance */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100267 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 timer = snd_timer_find(tid);
Johannes Bergee2da992008-07-09 10:28:41 +0200269#ifdef CONFIG_MODULES
270 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100271 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 snd_timer_request(tid);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100273 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 timer = snd_timer_find(tid);
275 }
276#endif
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200277 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100278 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return -ENODEV;
280 }
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200281 if (!list_empty(&timer->open_list_head)) {
282 timeri = list_entry(timer->open_list_head.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +0100283 struct snd_timer_instance, open_list);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200284 if (timeri->flags & SNDRV_TIMER_IFLG_EXCLUSIVE) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100285 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200286 return -EBUSY;
287 }
288 }
289 timeri = snd_timer_instance_new(owner, timer);
290 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100291 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200292 return -ENOMEM;
293 }
Takashi Iwai230323d2016-01-21 17:19:31 +0100294 /* take a card refcount for safe disconnection */
295 if (timer->card)
296 get_device(&timer->card->card_dev);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200297 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);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100303 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 *ti = timeri;
305 return 0;
306}
307
Takashi Iwaic3b16812016-01-14 17:01:46 +0100308static int _snd_timer_stop(struct snd_timer_instance *timeri, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310/*
311 * close a timer instance
312 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100313int snd_timer_close(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100315 struct snd_timer *timer = NULL;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200316 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Takashi Iwai00728892008-08-14 07:51:57 +0200318 if (snd_BUG_ON(!timeri))
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200319 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* force to stop the timer */
322 snd_timer_stop(timeri);
323
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);
329 udelay(10);
330 spin_lock_irq(&slave_active_lock);
331 }
332 spin_unlock_irq(&slave_active_lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100333 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 list_del(&timeri->open_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100335 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 } else {
337 timer = timeri->timer;
Takashi Iwai94094c82011-08-08 12:28:22 +0200338 if (snd_BUG_ON(!timer))
339 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* 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);
344 udelay(10);
345 spin_lock_irq(&timer->lock);
346 }
347 spin_unlock_irq(&timer->lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100348 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 list_del(&timeri->open_list);
Takashi Iwaic3b16812016-01-14 17:01:46 +0100350 if (list_empty(&timer->open_list_head) &&
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200351 timer->hw.close)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 timer->hw.close(timer);
353 /* remove slave links */
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100354 spin_lock_irq(&slave_active_lock);
355 spin_lock(&timer->lock);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200356 list_for_each_entry_safe(slave, tmp, &timeri->slave_list_head,
357 open_list) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200358 list_move_tail(&slave->open_list, &snd_timer_slave_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 slave->master = NULL;
360 slave->timer = NULL;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100361 list_del_init(&slave->ack_list);
362 list_del_init(&slave->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100364 spin_unlock(&timer->lock);
365 spin_unlock_irq(&slave_active_lock);
Takashi Iwai230323d2016-01-21 17:19:31 +0100366 /* release a card refcount for safe disconnection */
367 if (timer->card)
368 put_device(&timer->card->card_dev);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100369 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Takashi Iwai94094c82011-08-08 12:28:22 +0200371 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (timeri->private_free)
373 timeri->private_free(timeri);
374 kfree(timeri->owner);
375 kfree(timeri);
Clemens Ladischde242142005-10-12 17:12:31 +0200376 if (timer)
377 module_put(timer->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return 0;
379}
380
Takashi Iwai53d2f742005-11-17 13:56:05 +0100381unsigned long snd_timer_resolution(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100383 struct snd_timer * timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (timeri == NULL)
386 return 0;
387 if ((timer = timeri->timer) != NULL) {
388 if (timer->hw.c_resolution)
389 return timer->hw.c_resolution(timer);
390 return timer->hw.resolution;
391 }
392 return 0;
393}
394
Takashi Iwai53d2f742005-11-17 13:56:05 +0100395static void snd_timer_notify1(struct snd_timer_instance *ti, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100397 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 unsigned long flags;
399 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100400 struct snd_timer_instance *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct timespec tstamp;
402
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100403 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +0000404 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100405 else
406 getnstimeofday(&tstamp);
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200407 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_START ||
408 event > SNDRV_TIMER_EVENT_PAUSE))
409 return;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200410 if (event == SNDRV_TIMER_EVENT_START ||
411 event == SNDRV_TIMER_EVENT_CONTINUE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 resolution = snd_timer_resolution(ti);
413 if (ti->ccallback)
Jaroslav Kyselab30477d2010-03-03 11:05:55 +0100414 ti->ccallback(ti, event, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (ti->flags & SNDRV_TIMER_IFLG_SLAVE)
416 return;
417 timer = ti->timer;
418 if (timer == NULL)
419 return;
420 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
421 return;
422 spin_lock_irqsave(&timer->lock, flags);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200423 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (ts->ccallback)
425 ts->ccallback(ti, event + 100, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 spin_unlock_irqrestore(&timer->lock, flags);
427}
428
Takashi Iwai53d2f742005-11-17 13:56:05 +0100429static int snd_timer_start1(struct snd_timer *timer, struct snd_timer_instance *timeri,
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200430 unsigned long sticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100432 list_move_tail(&timeri->active_list, &timer->active_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (timer->running) {
434 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
435 goto __start_now;
436 timer->flags |= SNDRV_TIMER_FLG_RESCHED;
437 timeri->flags |= SNDRV_TIMER_IFLG_START;
438 return 1; /* delayed start */
439 } else {
440 timer->sticks = sticks;
441 timer->hw.start(timer);
442 __start_now:
443 timer->running++;
444 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
445 return 0;
446 }
447}
448
Takashi Iwai53d2f742005-11-17 13:56:05 +0100449static int snd_timer_start_slave(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 unsigned long flags;
452
453 spin_lock_irqsave(&slave_active_lock, flags);
454 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100455 if (timeri->master && timeri->timer) {
456 spin_lock(&timeri->timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200457 list_add_tail(&timeri->active_list,
458 &timeri->master->slave_active_head);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100459 spin_unlock(&timeri->timer->lock);
460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 spin_unlock_irqrestore(&slave_active_lock, flags);
462 return 1; /* delayed start */
463}
464
465/*
466 * start the timer instance
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200467 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100468int snd_timer_start(struct snd_timer_instance *timeri, unsigned int ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100470 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 int result = -EINVAL;
472 unsigned long flags;
473
474 if (timeri == NULL || ticks < 1)
475 return -EINVAL;
476 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) {
477 result = snd_timer_start_slave(timeri);
478 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_START);
479 return result;
480 }
481 timer = timeri->timer;
482 if (timer == NULL)
483 return -EINVAL;
Takashi Iwai230323d2016-01-21 17:19:31 +0100484 if (timer->card && timer->card->shutdown)
485 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 spin_lock_irqsave(&timer->lock, flags);
487 timeri->ticks = timeri->cticks = ticks;
488 timeri->pticks = 0;
489 result = snd_timer_start1(timer, timeri, ticks);
490 spin_unlock_irqrestore(&timer->lock, flags);
491 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_START);
492 return result;
493}
494
Takashi Iwaic3b16812016-01-14 17:01:46 +0100495static int _snd_timer_stop(struct snd_timer_instance *timeri, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100497 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 unsigned long flags;
499
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200500 if (snd_BUG_ON(!timeri))
501 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) {
Takashi Iwaic3b16812016-01-14 17:01:46 +0100504 spin_lock_irqsave(&slave_active_lock, flags);
505 timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
506 list_del_init(&timeri->ack_list);
507 list_del_init(&timeri->active_list);
508 spin_unlock_irqrestore(&slave_active_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 goto __end;
510 }
511 timer = timeri->timer;
512 if (!timer)
513 return -EINVAL;
514 spin_lock_irqsave(&timer->lock, flags);
515 list_del_init(&timeri->ack_list);
516 list_del_init(&timeri->active_list);
Takashi Iwai230323d2016-01-21 17:19:31 +0100517 if (timer->card && timer->card->shutdown) {
518 spin_unlock_irqrestore(&timer->lock, flags);
519 return 0;
520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if ((timeri->flags & SNDRV_TIMER_IFLG_RUNNING) &&
522 !(--timer->running)) {
523 timer->hw.stop(timer);
524 if (timer->flags & SNDRV_TIMER_FLG_RESCHED) {
525 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
526 snd_timer_reschedule(timer, 0);
527 if (timer->flags & SNDRV_TIMER_FLG_CHANGE) {
528 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
529 timer->hw.start(timer);
530 }
531 }
532 }
Takashi Iwaic3b16812016-01-14 17:01:46 +0100533 timeri->flags &= ~(SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 spin_unlock_irqrestore(&timer->lock, flags);
535 __end:
536 if (event != SNDRV_TIMER_EVENT_RESOLUTION)
537 snd_timer_notify1(timeri, event);
538 return 0;
539}
540
541/*
542 * stop the timer instance.
543 *
544 * do not call this from the timer callback!
545 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100546int snd_timer_stop(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100548 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 unsigned long flags;
550 int err;
551
Takashi Iwaic3b16812016-01-14 17:01:46 +0100552 err = _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (err < 0)
554 return err;
555 timer = timeri->timer;
Takashi Iwai0584ffa2011-08-08 12:24:46 +0200556 if (!timer)
557 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 spin_lock_irqsave(&timer->lock, flags);
559 timeri->cticks = timeri->ticks;
560 timeri->pticks = 0;
561 spin_unlock_irqrestore(&timer->lock, flags);
562 return 0;
563}
564
565/*
566 * start again.. the tick is kept.
567 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100568int snd_timer_continue(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100570 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 int result = -EINVAL;
572 unsigned long flags;
573
574 if (timeri == NULL)
575 return result;
576 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
577 return snd_timer_start_slave(timeri);
578 timer = timeri->timer;
579 if (! timer)
580 return -EINVAL;
Takashi Iwai230323d2016-01-21 17:19:31 +0100581 if (timer->card && timer->card->shutdown)
582 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 spin_lock_irqsave(&timer->lock, flags);
584 if (!timeri->cticks)
585 timeri->cticks = 1;
586 timeri->pticks = 0;
587 result = snd_timer_start1(timer, timeri, timer->sticks);
588 spin_unlock_irqrestore(&timer->lock, flags);
589 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_CONTINUE);
590 return result;
591}
592
593/*
594 * pause.. remember the ticks left
595 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100596int snd_timer_pause(struct snd_timer_instance * timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Takashi Iwaic3b16812016-01-14 17:01:46 +0100598 return _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_PAUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/*
602 * reschedule the timer
603 *
604 * start pending instances and check the scheduling ticks.
605 * when the scheduling ticks is changed set CHANGE flag to reprogram the timer.
606 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100607static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100609 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 unsigned long ticks = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Johannes Berg9244b2c2006-10-05 16:02:22 +0200612 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (ti->flags & SNDRV_TIMER_IFLG_START) {
614 ti->flags &= ~SNDRV_TIMER_IFLG_START;
615 ti->flags |= SNDRV_TIMER_IFLG_RUNNING;
616 timer->running++;
617 }
618 if (ti->flags & SNDRV_TIMER_IFLG_RUNNING) {
619 if (ticks > ti->cticks)
620 ticks = ti->cticks;
621 }
622 }
623 if (ticks == ~0UL) {
624 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
625 return;
626 }
627 if (ticks > timer->hw.ticks)
628 ticks = timer->hw.ticks;
629 if (ticks_left != ticks)
630 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
631 timer->sticks = ticks;
632}
633
634/*
635 * timer tasklet
636 *
637 */
638static void snd_timer_tasklet(unsigned long arg)
639{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100640 struct snd_timer *timer = (struct snd_timer *) arg;
641 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 struct list_head *p;
643 unsigned long resolution, ticks;
Takashi Iwai2999ff52006-07-05 17:16:58 +0200644 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Takashi Iwai230323d2016-01-21 17:19:31 +0100646 if (timer->card && timer->card->shutdown)
647 return;
648
Takashi Iwai2999ff52006-07-05 17:16:58 +0200649 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /* now process all callbacks */
651 while (!list_empty(&timer->sack_list_head)) {
652 p = timer->sack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100653 ti = list_entry(p, struct snd_timer_instance, ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* remove from ack_list and make empty */
656 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 ticks = ti->pticks;
659 ti->pticks = 0;
660 resolution = ti->resolution;
661
662 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
663 spin_unlock(&timer->lock);
664 if (ti->callback)
665 ti->callback(ti, resolution, ticks);
666 spin_lock(&timer->lock);
667 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
668 }
Takashi Iwai2999ff52006-07-05 17:16:58 +0200669 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672/*
673 * timer interrupt
674 *
675 * ticks_left is usually equal to timer->sticks.
676 *
677 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100678void snd_timer_interrupt(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200680 struct snd_timer_instance *ti, *ts, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 unsigned long resolution, ticks;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200682 struct list_head *p, *ack_list_head;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100683 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int use_tasklet = 0;
685
686 if (timer == NULL)
687 return;
688
Takashi Iwai230323d2016-01-21 17:19:31 +0100689 if (timer->card && timer->card->shutdown)
690 return;
691
Takashi Iwaib32425a2005-11-18 18:52:14 +0100692 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /* remember the current resolution */
695 if (timer->hw.c_resolution)
696 resolution = timer->hw.c_resolution(timer);
697 else
698 resolution = timer->hw.resolution;
699
700 /* loop for all active instances
Johannes Berg9244b2c2006-10-05 16:02:22 +0200701 * Here we cannot use list_for_each_entry because the active_list of a
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200702 * processed instance is relinked to done_list_head before the callback
703 * is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200705 list_for_each_entry_safe(ti, tmp, &timer->active_list_head,
706 active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (!(ti->flags & SNDRV_TIMER_IFLG_RUNNING))
708 continue;
709 ti->pticks += ticks_left;
710 ti->resolution = resolution;
711 if (ti->cticks < ticks_left)
712 ti->cticks = 0;
713 else
714 ti->cticks -= ticks_left;
715 if (ti->cticks) /* not expired */
716 continue;
717 if (ti->flags & SNDRV_TIMER_IFLG_AUTO) {
718 ti->cticks = ti->ticks;
719 } else {
720 ti->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
721 if (--timer->running)
Takashi Iwaiee8413b2016-01-13 21:35:06 +0100722 list_del_init(&ti->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200724 if ((timer->hw.flags & SNDRV_TIMER_HW_TASKLET) ||
725 (ti->flags & SNDRV_TIMER_IFLG_FAST))
726 ack_list_head = &timer->ack_list_head;
727 else
728 ack_list_head = &timer->sack_list_head;
729 if (list_empty(&ti->ack_list))
730 list_add_tail(&ti->ack_list, ack_list_head);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200731 list_for_each_entry(ts, &ti->slave_active_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 ts->pticks = ti->pticks;
733 ts->resolution = resolution;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200734 if (list_empty(&ts->ack_list))
735 list_add_tail(&ts->ack_list, ack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737 }
738 if (timer->flags & SNDRV_TIMER_FLG_RESCHED)
Clemens Ladischcd93fe42006-07-17 16:53:57 +0200739 snd_timer_reschedule(timer, timer->sticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (timer->running) {
741 if (timer->hw.flags & SNDRV_TIMER_HW_STOP) {
742 timer->hw.stop(timer);
743 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
744 }
745 if (!(timer->hw.flags & SNDRV_TIMER_HW_AUTO) ||
746 (timer->flags & SNDRV_TIMER_FLG_CHANGE)) {
747 /* restart timer */
748 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
749 timer->hw.start(timer);
750 }
751 } else {
752 timer->hw.stop(timer);
753 }
754
755 /* now process all fast callbacks */
756 while (!list_empty(&timer->ack_list_head)) {
757 p = timer->ack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100758 ti = list_entry(p, struct snd_timer_instance, ack_list);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* remove from ack_list and make empty */
761 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 ticks = ti->pticks;
764 ti->pticks = 0;
765
766 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
767 spin_unlock(&timer->lock);
768 if (ti->callback)
769 ti->callback(ti, resolution, ticks);
770 spin_lock(&timer->lock);
771 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
772 }
773
774 /* do we have any slow callbacks? */
775 use_tasklet = !list_empty(&timer->sack_list_head);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100776 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 if (use_tasklet)
Takashi Iwai1f041282008-12-18 12:17:55 +0100779 tasklet_schedule(&timer->task_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782/*
783
784 */
785
Takashi Iwai53d2f742005-11-17 13:56:05 +0100786int snd_timer_new(struct snd_card *card, char *id, struct snd_timer_id *tid,
787 struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100789 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100791 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 .dev_free = snd_timer_dev_free,
793 .dev_register = snd_timer_dev_register,
Takashi Iwaic4614822006-06-23 14:38:23 +0200794 .dev_disconnect = snd_timer_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 };
796
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200797 if (snd_BUG_ON(!tid))
798 return -EINVAL;
799 if (rtimer)
800 *rtimer = NULL;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200801 timer = kzalloc(sizeof(*timer), GFP_KERNEL);
Takashi Iwaiec0e9932015-03-10 15:42:14 +0100802 if (!timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -ENOMEM;
804 timer->tmr_class = tid->dev_class;
805 timer->card = card;
806 timer->tmr_device = tid->device;
807 timer->tmr_subdevice = tid->subdevice;
808 if (id)
809 strlcpy(timer->id, id, sizeof(timer->id));
810 INIT_LIST_HEAD(&timer->device_list);
811 INIT_LIST_HEAD(&timer->open_list_head);
812 INIT_LIST_HEAD(&timer->active_list_head);
813 INIT_LIST_HEAD(&timer->ack_list_head);
814 INIT_LIST_HEAD(&timer->sack_list_head);
815 spin_lock_init(&timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200816 tasklet_init(&timer->task_queue, snd_timer_tasklet,
817 (unsigned long)timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (card != NULL) {
Clemens Ladischde242142005-10-12 17:12:31 +0200819 timer->module = card->module;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200820 err = snd_device_new(card, SNDRV_DEV_TIMER, timer, &ops);
821 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 snd_timer_free(timer);
823 return err;
824 }
825 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200826 if (rtimer)
827 *rtimer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return 0;
829}
830
Takashi Iwai53d2f742005-11-17 13:56:05 +0100831static int snd_timer_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200833 if (!timer)
834 return 0;
Takashi Iwaic4614822006-06-23 14:38:23 +0200835
836 mutex_lock(&register_mutex);
837 if (! list_empty(&timer->open_list_head)) {
838 struct list_head *p, *n;
839 struct snd_timer_instance *ti;
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100840 pr_warn("ALSA: timer %p is busy?\n", timer);
Takashi Iwaic4614822006-06-23 14:38:23 +0200841 list_for_each_safe(p, n, &timer->open_list_head) {
842 list_del_init(p);
843 ti = list_entry(p, struct snd_timer_instance, open_list);
844 ti->timer = NULL;
845 }
846 }
847 list_del(&timer->device_list);
848 mutex_unlock(&register_mutex);
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (timer->private_free)
851 timer->private_free(timer);
852 kfree(timer);
853 return 0;
854}
855
Takashi Iwai53d2f742005-11-17 13:56:05 +0100856static int snd_timer_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100858 struct snd_timer *timer = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return snd_timer_free(timer);
860}
861
Takashi Iwai53d2f742005-11-17 13:56:05 +0100862static int snd_timer_dev_register(struct snd_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100864 struct snd_timer *timer = dev->device_data;
865 struct snd_timer *timer1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200867 if (snd_BUG_ON(!timer || !timer->hw.start || !timer->hw.stop))
868 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (!(timer->hw.flags & SNDRV_TIMER_HW_SLAVE) &&
870 !timer->hw.resolution && timer->hw.c_resolution == NULL)
871 return -EINVAL;
872
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100873 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200874 list_for_each_entry(timer1, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (timer1->tmr_class > timer->tmr_class)
876 break;
877 if (timer1->tmr_class < timer->tmr_class)
878 continue;
879 if (timer1->card && timer->card) {
880 if (timer1->card->number > timer->card->number)
881 break;
882 if (timer1->card->number < timer->card->number)
883 continue;
884 }
885 if (timer1->tmr_device > timer->tmr_device)
886 break;
887 if (timer1->tmr_device < timer->tmr_device)
888 continue;
889 if (timer1->tmr_subdevice > timer->tmr_subdevice)
890 break;
891 if (timer1->tmr_subdevice < timer->tmr_subdevice)
892 continue;
893 /* conflicts.. */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100894 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return -EBUSY;
896 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200897 list_add_tail(&timer->device_list, &timer1->device_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100898 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return 0;
900}
901
Takashi Iwai230323d2016-01-21 17:19:31 +0100902/* just for reference in snd_timer_dev_disconnect() below */
903static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
904 int event, struct timespec *tstamp,
905 unsigned long resolution);
906
Takashi Iwaic4614822006-06-23 14:38:23 +0200907static int snd_timer_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100909 struct snd_timer *timer = device->device_data;
Takashi Iwai230323d2016-01-21 17:19:31 +0100910 struct snd_timer_instance *ti;
911
Takashi Iwaic4614822006-06-23 14:38:23 +0200912 mutex_lock(&register_mutex);
913 list_del_init(&timer->device_list);
Takashi Iwai230323d2016-01-21 17:19:31 +0100914 /* wake up pending sleepers */
915 list_for_each_entry(ti, &timer->open_list_head, open_list) {
916 /* FIXME: better to have a ti.disconnect() op */
917 if (ti->ccallback == snd_timer_user_ccallback) {
918 struct snd_timer_user *tu = ti->callback_data;
919
920 tu->disconnected = true;
921 wake_up(&tu->qchange_sleep);
922 }
923 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200924 mutex_unlock(&register_mutex);
925 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Takashi Iwai53d2f742005-11-17 13:56:05 +0100928void snd_timer_notify(struct snd_timer *timer, int event, struct timespec *tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 unsigned long flags;
931 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100932 struct snd_timer_instance *ti, *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Takashi Iwai230323d2016-01-21 17:19:31 +0100934 if (timer->card && timer->card->shutdown)
935 return;
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200936 if (! (timer->hw.flags & SNDRV_TIMER_HW_SLAVE))
937 return;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200938 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_MSTART ||
939 event > SNDRV_TIMER_EVENT_MRESUME))
940 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 spin_lock_irqsave(&timer->lock, flags);
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +0200942 if (event == SNDRV_TIMER_EVENT_MSTART ||
943 event == SNDRV_TIMER_EVENT_MCONTINUE ||
944 event == SNDRV_TIMER_EVENT_MRESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (timer->hw.c_resolution)
946 resolution = timer->hw.c_resolution(timer);
947 else
948 resolution = timer->hw.resolution;
949 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200950 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (ti->ccallback)
952 ti->ccallback(ti, event, tstamp, resolution);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200953 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (ts->ccallback)
955 ts->ccallback(ts, event, tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957 spin_unlock_irqrestore(&timer->lock, flags);
958}
959
960/*
961 * exported functions for global timers
962 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100963int snd_timer_global_new(char *id, int device, struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100965 struct snd_timer_id tid;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
968 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
969 tid.card = -1;
970 tid.device = device;
971 tid.subdevice = 0;
972 return snd_timer_new(NULL, id, &tid, rtimer);
973}
974
Takashi Iwai53d2f742005-11-17 13:56:05 +0100975int snd_timer_global_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 return snd_timer_free(timer);
978}
979
Takashi Iwai53d2f742005-11-17 13:56:05 +0100980int snd_timer_global_register(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100982 struct snd_device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 memset(&dev, 0, sizeof(dev));
985 dev.device_data = timer;
986 return snd_timer_dev_register(&dev);
987}
988
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200989/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 * System timer
991 */
992
993struct snd_timer_system_private {
994 struct timer_list tlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 unsigned long last_expires;
996 unsigned long last_jiffies;
997 unsigned long correction;
998};
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000static void snd_timer_s_function(unsigned long data)
1001{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001002 struct snd_timer *timer = (struct snd_timer *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 struct snd_timer_system_private *priv = timer->private_data;
1004 unsigned long jiff = jiffies;
1005 if (time_after(jiff, priv->last_expires))
Clemens Ladisch6ed5eff2006-07-17 16:51:37 +02001006 priv->correction += (long)jiff - (long)priv->last_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 snd_timer_interrupt(timer, (long)jiff - (long)priv->last_jiffies);
1008}
1009
Takashi Iwai53d2f742005-11-17 13:56:05 +01001010static int snd_timer_s_start(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 struct snd_timer_system_private *priv;
1013 unsigned long njiff;
1014
1015 priv = (struct snd_timer_system_private *) timer->private_data;
1016 njiff = (priv->last_jiffies = jiffies);
1017 if (priv->correction > timer->sticks - 1) {
1018 priv->correction -= timer->sticks - 1;
1019 njiff++;
1020 } else {
1021 njiff += timer->sticks - priv->correction;
Clemens Ladisch17f48ec2006-07-17 16:50:56 +02001022 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024 priv->last_expires = priv->tlist.expires = njiff;
1025 add_timer(&priv->tlist);
1026 return 0;
1027}
1028
Takashi Iwai53d2f742005-11-17 13:56:05 +01001029static int snd_timer_s_stop(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 struct snd_timer_system_private *priv;
1032 unsigned long jiff;
1033
1034 priv = (struct snd_timer_system_private *) timer->private_data;
1035 del_timer(&priv->tlist);
1036 jiff = jiffies;
1037 if (time_before(jiff, priv->last_expires))
1038 timer->sticks = priv->last_expires - jiff;
1039 else
1040 timer->sticks = 1;
Clemens Ladischde2696d2006-07-17 16:52:09 +02001041 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return 0;
1043}
1044
Takashi Iwai53d2f742005-11-17 13:56:05 +01001045static struct snd_timer_hardware snd_timer_system =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 .flags = SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET,
1048 .resolution = 1000000000L / HZ,
1049 .ticks = 10000000L,
1050 .start = snd_timer_s_start,
1051 .stop = snd_timer_s_stop
1052};
1053
Takashi Iwai53d2f742005-11-17 13:56:05 +01001054static void snd_timer_free_system(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 kfree(timer->private_data);
1057}
1058
1059static int snd_timer_register_system(void)
1060{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001061 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 struct snd_timer_system_private *priv;
1063 int err;
1064
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001065 err = snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM, &timer);
1066 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return err;
1068 strcpy(timer->name, "system timer");
1069 timer->hw = snd_timer_system;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001070 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (priv == NULL) {
1072 snd_timer_free(timer);
1073 return -ENOMEM;
1074 }
Takashi Iwaif169c102015-01-19 11:26:25 +01001075 setup_timer(&priv->tlist, snd_timer_s_function, (unsigned long) timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 timer->private_data = priv;
1077 timer->private_free = snd_timer_free_system;
1078 return snd_timer_global_register(timer);
1079}
1080
Jie Yangcd6a6502015-05-27 19:45:45 +08001081#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082/*
1083 * Info interface
1084 */
1085
Takashi Iwai53d2f742005-11-17 13:56:05 +01001086static void snd_timer_proc_read(struct snd_info_entry *entry,
1087 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001089 struct snd_timer *timer;
1090 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001092 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001093 list_for_each_entry(timer, &snd_timer_list, device_list) {
Takashi Iwai230323d2016-01-21 17:19:31 +01001094 if (timer->card && timer->card->shutdown)
1095 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 switch (timer->tmr_class) {
1097 case SNDRV_TIMER_CLASS_GLOBAL:
1098 snd_iprintf(buffer, "G%i: ", timer->tmr_device);
1099 break;
1100 case SNDRV_TIMER_CLASS_CARD:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001101 snd_iprintf(buffer, "C%i-%i: ",
1102 timer->card->number, timer->tmr_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 break;
1104 case SNDRV_TIMER_CLASS_PCM:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001105 snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
1106 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 break;
1108 default:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001109 snd_iprintf(buffer, "?%i-%i-%i-%i: ", timer->tmr_class,
1110 timer->card ? timer->card->number : -1,
1111 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
1113 snd_iprintf(buffer, "%s :", timer->name);
1114 if (timer->hw.resolution)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001115 snd_iprintf(buffer, " %lu.%03luus (%lu ticks)",
1116 timer->hw.resolution / 1000,
1117 timer->hw.resolution % 1000,
1118 timer->hw.ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
1120 snd_iprintf(buffer, " SLAVE");
1121 snd_iprintf(buffer, "\n");
Johannes Berg9244b2c2006-10-05 16:02:22 +02001122 list_for_each_entry(ti, &timer->open_list_head, open_list)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001123 snd_iprintf(buffer, " Client %s : %s\n",
1124 ti->owner ? ti->owner : "unknown",
1125 ti->flags & (SNDRV_TIMER_IFLG_START |
1126 SNDRV_TIMER_IFLG_RUNNING)
1127 ? "running" : "stopped");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001129 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Takashi Iwai6581f4e2006-05-17 17:14:51 +02001132static struct snd_info_entry *snd_timer_proc_entry;
Takashi Iwaie28563c2005-12-01 10:42:42 +01001133
1134static void __init snd_timer_proc_init(void)
1135{
1136 struct snd_info_entry *entry;
1137
1138 entry = snd_info_create_module_entry(THIS_MODULE, "timers", NULL);
1139 if (entry != NULL) {
Takashi Iwaie28563c2005-12-01 10:42:42 +01001140 entry->c.text.read = snd_timer_proc_read;
1141 if (snd_info_register(entry) < 0) {
1142 snd_info_free_entry(entry);
1143 entry = NULL;
1144 }
1145 }
1146 snd_timer_proc_entry = entry;
1147}
1148
1149static void __exit snd_timer_proc_done(void)
1150{
Takashi Iwai746d4a02006-06-23 14:37:59 +02001151 snd_info_free_entry(snd_timer_proc_entry);
Takashi Iwaie28563c2005-12-01 10:42:42 +01001152}
Jie Yangcd6a6502015-05-27 19:45:45 +08001153#else /* !CONFIG_SND_PROC_FS */
Takashi Iwaie28563c2005-12-01 10:42:42 +01001154#define snd_timer_proc_init()
1155#define snd_timer_proc_done()
1156#endif
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158/*
1159 * USER SPACE interface
1160 */
1161
Takashi Iwai53d2f742005-11-17 13:56:05 +01001162static void snd_timer_user_interrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 unsigned long resolution,
1164 unsigned long ticks)
1165{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001166 struct snd_timer_user *tu = timeri->callback_data;
1167 struct snd_timer_read *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 int prev;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 spin_lock(&tu->qlock);
1171 if (tu->qused > 0) {
1172 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1173 r = &tu->queue[prev];
1174 if (r->resolution == resolution) {
1175 r->ticks += ticks;
1176 goto __wake;
1177 }
1178 }
1179 if (tu->qused >= tu->queue_size) {
1180 tu->overrun++;
1181 } else {
1182 r = &tu->queue[tu->qtail++];
1183 tu->qtail %= tu->queue_size;
1184 r->resolution = resolution;
1185 r->ticks = ticks;
1186 tu->qused++;
1187 }
1188 __wake:
1189 spin_unlock(&tu->qlock);
1190 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1191 wake_up(&tu->qchange_sleep);
1192}
1193
Takashi Iwai53d2f742005-11-17 13:56:05 +01001194static void snd_timer_user_append_to_tqueue(struct snd_timer_user *tu,
1195 struct snd_timer_tread *tread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 if (tu->qused >= tu->queue_size) {
1198 tu->overrun++;
1199 } else {
1200 memcpy(&tu->tqueue[tu->qtail++], tread, sizeof(*tread));
1201 tu->qtail %= tu->queue_size;
1202 tu->qused++;
1203 }
1204}
1205
Takashi Iwai53d2f742005-11-17 13:56:05 +01001206static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
1207 int event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 struct timespec *tstamp,
1209 unsigned long resolution)
1210{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001211 struct snd_timer_user *tu = timeri->callback_data;
1212 struct snd_timer_tread r1;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001213 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001215 if (event >= SNDRV_TIMER_EVENT_START &&
1216 event <= SNDRV_TIMER_EVENT_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 tu->tstamp = *tstamp;
1218 if ((tu->filter & (1 << event)) == 0 || !tu->tread)
1219 return;
1220 r1.event = event;
1221 r1.tstamp = *tstamp;
1222 r1.val = resolution;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001223 spin_lock_irqsave(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 snd_timer_user_append_to_tqueue(tu, &r1);
Dan Carpenterbfe70782010-04-28 10:29:14 +02001225 spin_unlock_irqrestore(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1227 wake_up(&tu->qchange_sleep);
1228}
1229
Takashi Iwai53d2f742005-11-17 13:56:05 +01001230static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 unsigned long resolution,
1232 unsigned long ticks)
1233{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001234 struct snd_timer_user *tu = timeri->callback_data;
1235 struct snd_timer_tread *r, r1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 struct timespec tstamp;
1237 int prev, append = 0;
1238
Takashi Iwai07799e72005-10-10 11:49:49 +02001239 memset(&tstamp, 0, sizeof(tstamp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 spin_lock(&tu->qlock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001241 if ((tu->filter & ((1 << SNDRV_TIMER_EVENT_RESOLUTION) |
1242 (1 << SNDRV_TIMER_EVENT_TICK))) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 spin_unlock(&tu->qlock);
1244 return;
1245 }
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001246 if (tu->last_resolution != resolution || ticks > 0) {
1247 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +00001248 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001249 else
1250 getnstimeofday(&tstamp);
1251 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001252 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
1253 tu->last_resolution != resolution) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
1255 r1.tstamp = tstamp;
1256 r1.val = resolution;
1257 snd_timer_user_append_to_tqueue(tu, &r1);
1258 tu->last_resolution = resolution;
1259 append++;
1260 }
1261 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_TICK)) == 0)
1262 goto __wake;
1263 if (ticks == 0)
1264 goto __wake;
1265 if (tu->qused > 0) {
1266 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1267 r = &tu->tqueue[prev];
1268 if (r->event == SNDRV_TIMER_EVENT_TICK) {
1269 r->tstamp = tstamp;
1270 r->val += ticks;
1271 append++;
1272 goto __wake;
1273 }
1274 }
1275 r1.event = SNDRV_TIMER_EVENT_TICK;
1276 r1.tstamp = tstamp;
1277 r1.val = ticks;
1278 snd_timer_user_append_to_tqueue(tu, &r1);
1279 append++;
1280 __wake:
1281 spin_unlock(&tu->qlock);
1282 if (append == 0)
1283 return;
1284 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1285 wake_up(&tu->qchange_sleep);
1286}
1287
1288static int snd_timer_user_open(struct inode *inode, struct file *file)
1289{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001290 struct snd_timer_user *tu;
Takashi Iwai02f48652010-04-13 11:49:04 +02001291 int err;
1292
1293 err = nonseekable_open(inode, file);
1294 if (err < 0)
1295 return err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001296
Takashi Iwaica2c0962005-09-09 14:20:23 +02001297 tu = kzalloc(sizeof(*tu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (tu == NULL)
1299 return -ENOMEM;
1300 spin_lock_init(&tu->qlock);
1301 init_waitqueue_head(&tu->qchange_sleep);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001302 mutex_init(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 tu->ticks = 1;
1304 tu->queue_size = 128;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001305 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001306 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (tu->queue == NULL) {
1308 kfree(tu);
1309 return -ENOMEM;
1310 }
1311 file->private_data = tu;
1312 return 0;
1313}
1314
1315static int snd_timer_user_release(struct inode *inode, struct file *file)
1316{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001317 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 if (file->private_data) {
1320 tu = file->private_data;
1321 file->private_data = NULL;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001322 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (tu->timeri)
1324 snd_timer_close(tu->timeri);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001325 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 kfree(tu->queue);
1327 kfree(tu->tqueue);
1328 kfree(tu);
1329 }
1330 return 0;
1331}
1332
Takashi Iwai53d2f742005-11-17 13:56:05 +01001333static void snd_timer_user_zero_id(struct snd_timer_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 id->dev_class = SNDRV_TIMER_CLASS_NONE;
1336 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1337 id->card = -1;
1338 id->device = -1;
1339 id->subdevice = -1;
1340}
1341
Takashi Iwai53d2f742005-11-17 13:56:05 +01001342static void snd_timer_user_copy_id(struct snd_timer_id *id, struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 id->dev_class = timer->tmr_class;
1345 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1346 id->card = timer->card ? timer->card->number : -1;
1347 id->device = timer->tmr_device;
1348 id->subdevice = timer->tmr_subdevice;
1349}
1350
Takashi Iwai53d2f742005-11-17 13:56:05 +01001351static int snd_timer_user_next_device(struct snd_timer_id __user *_tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001353 struct snd_timer_id id;
1354 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 struct list_head *p;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (copy_from_user(&id, _tid, sizeof(id)))
1358 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001359 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (id.dev_class < 0) { /* first item */
1361 if (list_empty(&snd_timer_list))
1362 snd_timer_user_zero_id(&id);
1363 else {
Clemens Ladisch9dfba382005-10-12 17:14:55 +02001364 timer = list_entry(snd_timer_list.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001365 struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 snd_timer_user_copy_id(&id, timer);
1367 }
1368 } else {
1369 switch (id.dev_class) {
1370 case SNDRV_TIMER_CLASS_GLOBAL:
1371 id.device = id.device < 0 ? 0 : id.device + 1;
1372 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001373 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 if (timer->tmr_class > SNDRV_TIMER_CLASS_GLOBAL) {
1375 snd_timer_user_copy_id(&id, timer);
1376 break;
1377 }
1378 if (timer->tmr_device >= id.device) {
1379 snd_timer_user_copy_id(&id, timer);
1380 break;
1381 }
1382 }
1383 if (p == &snd_timer_list)
1384 snd_timer_user_zero_id(&id);
1385 break;
1386 case SNDRV_TIMER_CLASS_CARD:
1387 case SNDRV_TIMER_CLASS_PCM:
1388 if (id.card < 0) {
1389 id.card = 0;
1390 } else {
1391 if (id.card < 0) {
1392 id.card = 0;
1393 } else {
1394 if (id.device < 0) {
1395 id.device = 0;
1396 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001397 if (id.subdevice < 0) {
1398 id.subdevice = 0;
1399 } else {
1400 id.subdevice++;
1401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
1403 }
1404 }
1405 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001406 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (timer->tmr_class > id.dev_class) {
1408 snd_timer_user_copy_id(&id, timer);
1409 break;
1410 }
1411 if (timer->tmr_class < id.dev_class)
1412 continue;
1413 if (timer->card->number > id.card) {
1414 snd_timer_user_copy_id(&id, timer);
1415 break;
1416 }
1417 if (timer->card->number < id.card)
1418 continue;
1419 if (timer->tmr_device > id.device) {
1420 snd_timer_user_copy_id(&id, timer);
1421 break;
1422 }
1423 if (timer->tmr_device < id.device)
1424 continue;
1425 if (timer->tmr_subdevice > id.subdevice) {
1426 snd_timer_user_copy_id(&id, timer);
1427 break;
1428 }
1429 if (timer->tmr_subdevice < id.subdevice)
1430 continue;
1431 snd_timer_user_copy_id(&id, timer);
1432 break;
1433 }
1434 if (p == &snd_timer_list)
1435 snd_timer_user_zero_id(&id);
1436 break;
1437 default:
1438 snd_timer_user_zero_id(&id);
1439 }
1440 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001441 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (copy_to_user(_tid, &id, sizeof(*_tid)))
1443 return -EFAULT;
1444 return 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001445}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001447static int snd_timer_user_ginfo(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001448 struct snd_timer_ginfo __user *_ginfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001450 struct snd_timer_ginfo *ginfo;
1451 struct snd_timer_id tid;
1452 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 struct list_head *p;
1454 int err = 0;
1455
Li Zefanef44a1e2009-04-10 09:43:08 +08001456 ginfo = memdup_user(_ginfo, sizeof(*ginfo));
1457 if (IS_ERR(ginfo))
1458 return PTR_ERR(ginfo);
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 tid = ginfo->tid;
1461 memset(ginfo, 0, sizeof(*ginfo));
1462 ginfo->tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001463 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 t = snd_timer_find(&tid);
1465 if (t != NULL) {
1466 ginfo->card = t->card ? t->card->number : -1;
1467 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1468 ginfo->flags |= SNDRV_TIMER_FLG_SLAVE;
1469 strlcpy(ginfo->id, t->id, sizeof(ginfo->id));
1470 strlcpy(ginfo->name, t->name, sizeof(ginfo->name));
1471 ginfo->resolution = t->hw.resolution;
1472 if (t->hw.resolution_min > 0) {
1473 ginfo->resolution_min = t->hw.resolution_min;
1474 ginfo->resolution_max = t->hw.resolution_max;
1475 }
1476 list_for_each(p, &t->open_list_head) {
1477 ginfo->clients++;
1478 }
1479 } else {
1480 err = -ENODEV;
1481 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001482 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 if (err >= 0 && copy_to_user(_ginfo, ginfo, sizeof(*ginfo)))
1484 err = -EFAULT;
1485 kfree(ginfo);
1486 return err;
1487}
1488
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001489static int snd_timer_user_gparams(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001490 struct snd_timer_gparams __user *_gparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001492 struct snd_timer_gparams gparams;
1493 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 int err;
1495
1496 if (copy_from_user(&gparams, _gparams, sizeof(gparams)))
1497 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001498 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 t = snd_timer_find(&gparams.tid);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001500 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 err = -ENODEV;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001502 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001504 if (!list_empty(&t->open_list_head)) {
1505 err = -EBUSY;
1506 goto _error;
1507 }
1508 if (!t->hw.set_period) {
1509 err = -ENOSYS;
1510 goto _error;
1511 }
1512 err = t->hw.set_period(t, gparams.period_num, gparams.period_den);
1513_error:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001514 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return err;
1516}
1517
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001518static int snd_timer_user_gstatus(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001519 struct snd_timer_gstatus __user *_gstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001521 struct snd_timer_gstatus gstatus;
1522 struct snd_timer_id tid;
1523 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 int err = 0;
1525
1526 if (copy_from_user(&gstatus, _gstatus, sizeof(gstatus)))
1527 return -EFAULT;
1528 tid = gstatus.tid;
1529 memset(&gstatus, 0, sizeof(gstatus));
1530 gstatus.tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001531 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 t = snd_timer_find(&tid);
1533 if (t != NULL) {
1534 if (t->hw.c_resolution)
1535 gstatus.resolution = t->hw.c_resolution(t);
1536 else
1537 gstatus.resolution = t->hw.resolution;
1538 if (t->hw.precise_resolution) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001539 t->hw.precise_resolution(t, &gstatus.resolution_num,
1540 &gstatus.resolution_den);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 } else {
1542 gstatus.resolution_num = gstatus.resolution;
1543 gstatus.resolution_den = 1000000000uL;
1544 }
1545 } else {
1546 err = -ENODEV;
1547 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001548 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (err >= 0 && copy_to_user(_gstatus, &gstatus, sizeof(gstatus)))
1550 err = -EFAULT;
1551 return err;
1552}
1553
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001554static int snd_timer_user_tselect(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001555 struct snd_timer_select __user *_tselect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001557 struct snd_timer_user *tu;
1558 struct snd_timer_select tselect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 char str[32];
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001560 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 tu = file->private_data;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001563 if (tu->timeri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 snd_timer_close(tu->timeri);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001565 tu->timeri = NULL;
1566 }
1567 if (copy_from_user(&tselect, _tselect, sizeof(tselect))) {
1568 err = -EFAULT;
1569 goto __err;
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 sprintf(str, "application %i", current->pid);
1572 if (tselect.id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
1573 tselect.id.dev_sclass = SNDRV_TIMER_SCLASS_APPLICATION;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001574 err = snd_timer_open(&tu->timeri, str, &tselect.id, current->pid);
1575 if (err < 0)
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001576 goto __err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Jesper Juhl4d572772005-05-30 17:30:32 +02001578 kfree(tu->queue);
1579 tu->queue = NULL;
1580 kfree(tu->tqueue);
1581 tu->tqueue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001583 tu->tqueue = kmalloc(tu->queue_size * sizeof(struct snd_timer_tread),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001584 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001585 if (tu->tqueue == NULL)
1586 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001588 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001589 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001590 if (tu->queue == NULL)
1591 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001593
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001594 if (err < 0) {
1595 snd_timer_close(tu->timeri);
1596 tu->timeri = NULL;
1597 } else {
1598 tu->timeri->flags |= SNDRV_TIMER_IFLG_FAST;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001599 tu->timeri->callback = tu->tread
1600 ? snd_timer_user_tinterrupt : snd_timer_user_interrupt;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001601 tu->timeri->ccallback = snd_timer_user_ccallback;
1602 tu->timeri->callback_data = (void *)tu;
1603 }
1604
1605 __err:
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001606 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001609static int snd_timer_user_info(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001610 struct snd_timer_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001612 struct snd_timer_user *tu;
1613 struct snd_timer_info *info;
1614 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 int err = 0;
1616
1617 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001618 if (!tu->timeri)
1619 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001621 if (!t)
1622 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Takashi Iwaica2c0962005-09-09 14:20:23 +02001624 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 if (! info)
1626 return -ENOMEM;
1627 info->card = t->card ? t->card->number : -1;
1628 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1629 info->flags |= SNDRV_TIMER_FLG_SLAVE;
1630 strlcpy(info->id, t->id, sizeof(info->id));
1631 strlcpy(info->name, t->name, sizeof(info->name));
1632 info->resolution = t->hw.resolution;
1633 if (copy_to_user(_info, info, sizeof(*_info)))
1634 err = -EFAULT;
1635 kfree(info);
1636 return err;
1637}
1638
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001639static int snd_timer_user_params(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001640 struct snd_timer_params __user *_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001642 struct snd_timer_user *tu;
1643 struct snd_timer_params params;
1644 struct snd_timer *t;
1645 struct snd_timer_read *tr;
1646 struct snd_timer_tread *ttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 int err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001650 if (!tu->timeri)
1651 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001653 if (!t)
1654 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (copy_from_user(&params, _params, sizeof(params)))
1656 return -EFAULT;
1657 if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE) && params.ticks < 1) {
1658 err = -EINVAL;
1659 goto _end;
1660 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001661 if (params.queue_size > 0 &&
1662 (params.queue_size < 32 || params.queue_size > 1024)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 err = -EINVAL;
1664 goto _end;
1665 }
1666 if (params.filter & ~((1<<SNDRV_TIMER_EVENT_RESOLUTION)|
1667 (1<<SNDRV_TIMER_EVENT_TICK)|
1668 (1<<SNDRV_TIMER_EVENT_START)|
1669 (1<<SNDRV_TIMER_EVENT_STOP)|
1670 (1<<SNDRV_TIMER_EVENT_CONTINUE)|
1671 (1<<SNDRV_TIMER_EVENT_PAUSE)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001672 (1<<SNDRV_TIMER_EVENT_SUSPEND)|
1673 (1<<SNDRV_TIMER_EVENT_RESUME)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 (1<<SNDRV_TIMER_EVENT_MSTART)|
1675 (1<<SNDRV_TIMER_EVENT_MSTOP)|
1676 (1<<SNDRV_TIMER_EVENT_MCONTINUE)|
Jaroslav Kysela65d11d92005-08-16 13:05:43 +02001677 (1<<SNDRV_TIMER_EVENT_MPAUSE)|
1678 (1<<SNDRV_TIMER_EVENT_MSUSPEND)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001679 (1<<SNDRV_TIMER_EVENT_MRESUME))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 err = -EINVAL;
1681 goto _end;
1682 }
1683 snd_timer_stop(tu->timeri);
1684 spin_lock_irq(&t->lock);
1685 tu->timeri->flags &= ~(SNDRV_TIMER_IFLG_AUTO|
1686 SNDRV_TIMER_IFLG_EXCLUSIVE|
1687 SNDRV_TIMER_IFLG_EARLY_EVENT);
1688 if (params.flags & SNDRV_TIMER_PSFLG_AUTO)
1689 tu->timeri->flags |= SNDRV_TIMER_IFLG_AUTO;
1690 if (params.flags & SNDRV_TIMER_PSFLG_EXCLUSIVE)
1691 tu->timeri->flags |= SNDRV_TIMER_IFLG_EXCLUSIVE;
1692 if (params.flags & SNDRV_TIMER_PSFLG_EARLY_EVENT)
1693 tu->timeri->flags |= SNDRV_TIMER_IFLG_EARLY_EVENT;
1694 spin_unlock_irq(&t->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001695 if (params.queue_size > 0 &&
1696 (unsigned int)tu->queue_size != params.queue_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (tu->tread) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001698 ttr = kmalloc(params.queue_size * sizeof(*ttr),
1699 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (ttr) {
1701 kfree(tu->tqueue);
1702 tu->queue_size = params.queue_size;
1703 tu->tqueue = ttr;
1704 }
1705 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001706 tr = kmalloc(params.queue_size * sizeof(*tr),
1707 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (tr) {
1709 kfree(tu->queue);
1710 tu->queue_size = params.queue_size;
1711 tu->queue = tr;
1712 }
1713 }
1714 }
1715 tu->qhead = tu->qtail = tu->qused = 0;
1716 if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) {
1717 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001718 struct snd_timer_tread tread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 tread.event = SNDRV_TIMER_EVENT_EARLY;
1720 tread.tstamp.tv_sec = 0;
1721 tread.tstamp.tv_nsec = 0;
1722 tread.val = 0;
1723 snd_timer_user_append_to_tqueue(tu, &tread);
1724 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001725 struct snd_timer_read *r = &tu->queue[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 r->resolution = 0;
1727 r->ticks = 0;
1728 tu->qused++;
1729 tu->qtail++;
1730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732 tu->filter = params.filter;
1733 tu->ticks = params.ticks;
1734 err = 0;
1735 _end:
1736 if (copy_to_user(_params, &params, sizeof(params)))
1737 return -EFAULT;
1738 return err;
1739}
1740
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001741static int snd_timer_user_status(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001742 struct snd_timer_status __user *_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001744 struct snd_timer_user *tu;
1745 struct snd_timer_status status;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001748 if (!tu->timeri)
1749 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 memset(&status, 0, sizeof(status));
1751 status.tstamp = tu->tstamp;
1752 status.resolution = snd_timer_resolution(tu->timeri);
1753 status.lost = tu->timeri->lost;
1754 status.overrun = tu->overrun;
1755 spin_lock_irq(&tu->qlock);
1756 status.queue = tu->qused;
1757 spin_unlock_irq(&tu->qlock);
1758 if (copy_to_user(_status, &status, sizeof(status)))
1759 return -EFAULT;
1760 return 0;
1761}
1762
1763static int snd_timer_user_start(struct file *file)
1764{
1765 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001766 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001769 if (!tu->timeri)
1770 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 snd_timer_stop(tu->timeri);
1772 tu->timeri->lost = 0;
1773 tu->last_resolution = 0;
1774 return (err = snd_timer_start(tu->timeri, tu->ticks)) < 0 ? err : 0;
1775}
1776
1777static int snd_timer_user_stop(struct file *file)
1778{
1779 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001780 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001783 if (!tu->timeri)
1784 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return (err = snd_timer_stop(tu->timeri)) < 0 ? err : 0;
1786}
1787
1788static int snd_timer_user_continue(struct file *file)
1789{
1790 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001791 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001794 if (!tu->timeri)
1795 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 tu->timeri->lost = 0;
1797 return (err = snd_timer_continue(tu->timeri)) < 0 ? err : 0;
1798}
1799
Takashi Iwai15790a62005-05-15 15:04:14 +02001800static int snd_timer_user_pause(struct file *file)
1801{
1802 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001803 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001804
Takashi Iwai15790a62005-05-15 15:04:14 +02001805 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001806 if (!tu->timeri)
1807 return -EBADFD;
Jaroslav Kyselad138b442005-05-16 13:51:39 +02001808 return (err = snd_timer_pause(tu->timeri)) < 0 ? err : 0;
Takashi Iwai15790a62005-05-15 15:04:14 +02001809}
1810
Takashi Iwai8c50b372005-05-15 15:43:54 +02001811enum {
1812 SNDRV_TIMER_IOCTL_START_OLD = _IO('T', 0x20),
1813 SNDRV_TIMER_IOCTL_STOP_OLD = _IO('T', 0x21),
1814 SNDRV_TIMER_IOCTL_CONTINUE_OLD = _IO('T', 0x22),
1815 SNDRV_TIMER_IOCTL_PAUSE_OLD = _IO('T', 0x23),
1816};
1817
Takashi Iwaiaf368022016-01-13 17:48:01 +01001818static long __snd_timer_user_ioctl(struct file *file, unsigned int cmd,
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001819 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001821 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 void __user *argp = (void __user *)arg;
1823 int __user *p = argp;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 tu = file->private_data;
1826 switch (cmd) {
1827 case SNDRV_TIMER_IOCTL_PVERSION:
1828 return put_user(SNDRV_TIMER_VERSION, p) ? -EFAULT : 0;
1829 case SNDRV_TIMER_IOCTL_NEXT_DEVICE:
1830 return snd_timer_user_next_device(argp);
1831 case SNDRV_TIMER_IOCTL_TREAD:
1832 {
1833 int xarg;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001834
Takashi Iwaiaf368022016-01-13 17:48:01 +01001835 if (tu->timeri) /* too late */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return -EBUSY;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001837 if (get_user(xarg, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return -EFAULT;
1839 tu->tread = xarg ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return 0;
1841 }
1842 case SNDRV_TIMER_IOCTL_GINFO:
1843 return snd_timer_user_ginfo(file, argp);
1844 case SNDRV_TIMER_IOCTL_GPARAMS:
1845 return snd_timer_user_gparams(file, argp);
1846 case SNDRV_TIMER_IOCTL_GSTATUS:
1847 return snd_timer_user_gstatus(file, argp);
1848 case SNDRV_TIMER_IOCTL_SELECT:
1849 return snd_timer_user_tselect(file, argp);
1850 case SNDRV_TIMER_IOCTL_INFO:
1851 return snd_timer_user_info(file, argp);
1852 case SNDRV_TIMER_IOCTL_PARAMS:
1853 return snd_timer_user_params(file, argp);
1854 case SNDRV_TIMER_IOCTL_STATUS:
1855 return snd_timer_user_status(file, argp);
1856 case SNDRV_TIMER_IOCTL_START:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001857 case SNDRV_TIMER_IOCTL_START_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return snd_timer_user_start(file);
1859 case SNDRV_TIMER_IOCTL_STOP:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001860 case SNDRV_TIMER_IOCTL_STOP_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return snd_timer_user_stop(file);
1862 case SNDRV_TIMER_IOCTL_CONTINUE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001863 case SNDRV_TIMER_IOCTL_CONTINUE_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return snd_timer_user_continue(file);
Takashi Iwai15790a62005-05-15 15:04:14 +02001865 case SNDRV_TIMER_IOCTL_PAUSE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001866 case SNDRV_TIMER_IOCTL_PAUSE_OLD:
Takashi Iwai15790a62005-05-15 15:04:14 +02001867 return snd_timer_user_pause(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 }
1869 return -ENOTTY;
1870}
1871
Takashi Iwaiaf368022016-01-13 17:48:01 +01001872static long snd_timer_user_ioctl(struct file *file, unsigned int cmd,
1873 unsigned long arg)
1874{
1875 struct snd_timer_user *tu = file->private_data;
1876 long ret;
1877
1878 mutex_lock(&tu->ioctl_lock);
1879 ret = __snd_timer_user_ioctl(file, cmd, arg);
1880 mutex_unlock(&tu->ioctl_lock);
1881 return ret;
1882}
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884static int snd_timer_user_fasync(int fd, struct file * file, int on)
1885{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001886 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 tu = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001889 return fasync_helper(fd, file, on, &tu->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001892static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
1893 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001895 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 long result = 0, unit;
1897 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 tu = file->private_data;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001900 unit = tu->tread ? sizeof(struct snd_timer_tread) : sizeof(struct snd_timer_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 spin_lock_irq(&tu->qlock);
1902 while ((long)count - result >= unit) {
1903 while (!tu->qused) {
1904 wait_queue_t wait;
1905
1906 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1907 err = -EAGAIN;
1908 break;
1909 }
1910
1911 set_current_state(TASK_INTERRUPTIBLE);
1912 init_waitqueue_entry(&wait, current);
1913 add_wait_queue(&tu->qchange_sleep, &wait);
1914
1915 spin_unlock_irq(&tu->qlock);
1916 schedule();
1917 spin_lock_irq(&tu->qlock);
1918
1919 remove_wait_queue(&tu->qchange_sleep, &wait);
1920
Takashi Iwai230323d2016-01-21 17:19:31 +01001921 if (tu->disconnected) {
1922 err = -ENODEV;
1923 break;
1924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (signal_pending(current)) {
1926 err = -ERESTARTSYS;
1927 break;
1928 }
1929 }
1930
1931 spin_unlock_irq(&tu->qlock);
1932 if (err < 0)
1933 goto _error;
1934
1935 if (tu->tread) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001936 if (copy_to_user(buffer, &tu->tqueue[tu->qhead++],
Takashi Iwai53d2f742005-11-17 13:56:05 +01001937 sizeof(struct snd_timer_tread))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 err = -EFAULT;
1939 goto _error;
1940 }
1941 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001942 if (copy_to_user(buffer, &tu->queue[tu->qhead++],
Takashi Iwai53d2f742005-11-17 13:56:05 +01001943 sizeof(struct snd_timer_read))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 err = -EFAULT;
1945 goto _error;
1946 }
1947 }
1948
1949 tu->qhead %= tu->queue_size;
1950
1951 result += unit;
1952 buffer += unit;
1953
1954 spin_lock_irq(&tu->qlock);
1955 tu->qused--;
1956 }
1957 spin_unlock_irq(&tu->qlock);
1958 _error:
1959 return result > 0 ? result : err;
1960}
1961
1962static unsigned int snd_timer_user_poll(struct file *file, poll_table * wait)
1963{
1964 unsigned int mask;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001965 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
1967 tu = file->private_data;
1968
1969 poll_wait(file, &tu->qchange_sleep, wait);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 mask = 0;
1972 if (tu->qused)
1973 mask |= POLLIN | POLLRDNORM;
Takashi Iwai230323d2016-01-21 17:19:31 +01001974 if (tu->disconnected)
1975 mask |= POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 return mask;
1978}
1979
1980#ifdef CONFIG_COMPAT
1981#include "timer_compat.c"
1982#else
1983#define snd_timer_user_ioctl_compat NULL
1984#endif
1985
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001986static const struct file_operations snd_timer_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
1988 .owner = THIS_MODULE,
1989 .read = snd_timer_user_read,
1990 .open = snd_timer_user_open,
1991 .release = snd_timer_user_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02001992 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 .poll = snd_timer_user_poll,
1994 .unlocked_ioctl = snd_timer_user_ioctl,
1995 .compat_ioctl = snd_timer_user_ioctl_compat,
1996 .fasync = snd_timer_user_fasync,
1997};
1998
Takashi Iwai7c358602015-01-29 18:09:05 +01001999/* unregister the system timer */
2000static void snd_timer_free_all(void)
2001{
2002 struct snd_timer *timer, *n;
2003
2004 list_for_each_entry_safe(timer, n, &snd_timer_list, device_list)
2005 snd_timer_free(timer);
2006}
2007
Takashi Iwai89da0612015-01-29 18:12:26 +01002008static struct device timer_dev;
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010/*
2011 * ENTRY functions
2012 */
2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014static int __init alsa_timer_init(void)
2015{
2016 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Takashi Iwai89da0612015-01-29 18:12:26 +01002018 snd_device_initialize(&timer_dev, NULL);
2019 dev_set_name(&timer_dev, "timer");
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021#ifdef SNDRV_OSS_INFO_DEV_TIMERS
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002022 snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1,
2023 "system timer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024#endif
Takashi Iwaie28563c2005-12-01 10:42:42 +01002025
Takashi Iwai7c358602015-01-29 18:09:05 +01002026 err = snd_timer_register_system();
2027 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002028 pr_err("ALSA: unable to register system timer (%i)\n", err);
Takashi Iwai89da0612015-01-29 18:12:26 +01002029 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002030 return err;
2031 }
2032
Takashi Iwai40a4b262015-01-30 08:34:58 +01002033 err = snd_register_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0,
2034 &snd_timer_f_ops, NULL, &timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002035 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002036 pr_err("ALSA: unable to register timer device (%i)\n", err);
Takashi Iwai7c358602015-01-29 18:09:05 +01002037 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002038 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002039 return err;
2040 }
2041
Takashi Iwaie28563c2005-12-01 10:42:42 +01002042 snd_timer_proc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return 0;
2044}
2045
2046static void __exit alsa_timer_exit(void)
2047{
Takashi Iwai40a4b262015-01-30 08:34:58 +01002048 snd_unregister_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002049 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002050 put_device(&timer_dev);
Takashi Iwaie28563c2005-12-01 10:42:42 +01002051 snd_timer_proc_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052#ifdef SNDRV_OSS_INFO_DEV_TIMERS
2053 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1);
2054#endif
2055}
2056
2057module_init(alsa_timer_init)
2058module_exit(alsa_timer_exit)
2059
2060EXPORT_SYMBOL(snd_timer_open);
2061EXPORT_SYMBOL(snd_timer_close);
2062EXPORT_SYMBOL(snd_timer_resolution);
2063EXPORT_SYMBOL(snd_timer_start);
2064EXPORT_SYMBOL(snd_timer_stop);
2065EXPORT_SYMBOL(snd_timer_continue);
2066EXPORT_SYMBOL(snd_timer_pause);
2067EXPORT_SYMBOL(snd_timer_new);
2068EXPORT_SYMBOL(snd_timer_notify);
2069EXPORT_SYMBOL(snd_timer_global_new);
2070EXPORT_SYMBOL(snd_timer_global_free);
2071EXPORT_SYMBOL(snd_timer_global_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072EXPORT_SYMBOL(snd_timer_interrupt);