blob: 2fd0dccf8505e1b186e24bc0d5193f9307ae2c94 [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 Iwai8d155be2016-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;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010077 struct mutex tread_sem;
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 Iwaif40ee9c2016-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 Iwaif40ee9c2016-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 Iwai8d155be2016-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 Iwaid7a258c2016-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 Iwaid7a258c2016-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 Iwaif40ee9c2016-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 Iwaif40ee9c2016-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 Iwaif40ee9c2016-01-14 16:30:58 +0100364 spin_unlock(&timer->lock);
365 spin_unlock_irq(&slave_active_lock);
Takashi Iwai8d155be2016-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)
Takashi Iwai77d0a942016-02-08 17:36:25 +0100425 ts->ccallback(ts, 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);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100454 if (timeri->flags & SNDRV_TIMER_IFLG_RUNNING) {
455 spin_unlock_irqrestore(&slave_active_lock, flags);
456 return -EBUSY;
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwaif40ee9c2016-01-14 16:30:58 +0100459 if (timeri->master && timeri->timer) {
460 spin_lock(&timeri->timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200461 list_add_tail(&timeri->active_list,
462 &timeri->master->slave_active_head);
Takashi Iwaif40ee9c2016-01-14 16:30:58 +0100463 spin_unlock(&timeri->timer->lock);
464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 spin_unlock_irqrestore(&slave_active_lock, flags);
466 return 1; /* delayed start */
467}
468
469/*
470 * start the timer instance
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200471 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100472int snd_timer_start(struct snd_timer_instance *timeri, unsigned int ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100474 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int result = -EINVAL;
476 unsigned long flags;
477
478 if (timeri == NULL || ticks < 1)
479 return -EINVAL;
480 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) {
481 result = snd_timer_start_slave(timeri);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100482 if (result >= 0)
483 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return result;
485 }
486 timer = timeri->timer;
487 if (timer == NULL)
488 return -EINVAL;
Takashi Iwai8d155be2016-01-21 17:19:31 +0100489 if (timer->card && timer->card->shutdown)
490 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100492 if (timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
493 SNDRV_TIMER_IFLG_START)) {
494 result = -EBUSY;
495 goto unlock;
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 timeri->ticks = timeri->cticks = ticks;
498 timeri->pticks = 0;
499 result = snd_timer_start1(timer, timeri, ticks);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100500 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 spin_unlock_irqrestore(&timer->lock, flags);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100502 if (result >= 0)
503 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return result;
505}
506
Takashi Iwaid7a258c2016-01-14 17:01:46 +0100507static int _snd_timer_stop(struct snd_timer_instance *timeri, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100509 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 unsigned long flags;
511
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200512 if (snd_BUG_ON(!timeri))
513 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) {
Takashi Iwaid7a258c2016-01-14 17:01:46 +0100516 spin_lock_irqsave(&slave_active_lock, flags);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100517 if (!(timeri->flags & SNDRV_TIMER_IFLG_RUNNING)) {
518 spin_unlock_irqrestore(&slave_active_lock, flags);
519 return -EBUSY;
520 }
Takashi Iwai89e9cac2016-02-09 12:02:32 +0100521 if (timeri->timer)
522 spin_lock(&timeri->timer->lock);
Takashi Iwaid7a258c2016-01-14 17:01:46 +0100523 timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
524 list_del_init(&timeri->ack_list);
525 list_del_init(&timeri->active_list);
Takashi Iwai89e9cac2016-02-09 12:02:32 +0100526 if (timeri->timer)
527 spin_unlock(&timeri->timer->lock);
Takashi Iwaid7a258c2016-01-14 17:01:46 +0100528 spin_unlock_irqrestore(&slave_active_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto __end;
530 }
531 timer = timeri->timer;
532 if (!timer)
533 return -EINVAL;
534 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100535 if (!(timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
536 SNDRV_TIMER_IFLG_START))) {
537 spin_unlock_irqrestore(&timer->lock, flags);
538 return -EBUSY;
539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 list_del_init(&timeri->ack_list);
541 list_del_init(&timeri->active_list);
Takashi Iwai8d155be2016-01-21 17:19:31 +0100542 if (timer->card && timer->card->shutdown) {
543 spin_unlock_irqrestore(&timer->lock, flags);
544 return 0;
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 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);
555 }
556 }
557 }
Takashi Iwaid7a258c2016-01-14 17:01:46 +0100558 timeri->flags &= ~(SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 spin_unlock_irqrestore(&timer->lock, flags);
560 __end:
561 if (event != SNDRV_TIMER_EVENT_RESOLUTION)
562 snd_timer_notify1(timeri, event);
563 return 0;
564}
565
566/*
567 * stop the timer instance.
568 *
569 * do not call this from the timer callback!
570 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100571int snd_timer_stop(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100573 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 unsigned long flags;
575 int err;
576
Takashi Iwaid7a258c2016-01-14 17:01:46 +0100577 err = _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (err < 0)
579 return err;
580 timer = timeri->timer;
Takashi Iwai0584ffa2011-08-08 12:24:46 +0200581 if (!timer)
582 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 spin_lock_irqsave(&timer->lock, flags);
584 timeri->cticks = timeri->ticks;
585 timeri->pticks = 0;
586 spin_unlock_irqrestore(&timer->lock, flags);
587 return 0;
588}
589
590/*
591 * start again.. the tick is kept.
592 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100593int snd_timer_continue(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100595 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int result = -EINVAL;
597 unsigned long flags;
598
599 if (timeri == NULL)
600 return result;
601 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
602 return snd_timer_start_slave(timeri);
603 timer = timeri->timer;
604 if (! timer)
605 return -EINVAL;
Takashi Iwai8d155be2016-01-21 17:19:31 +0100606 if (timer->card && timer->card->shutdown)
607 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100609 if (timeri->flags & SNDRV_TIMER_IFLG_RUNNING) {
610 result = -EBUSY;
611 goto unlock;
612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!timeri->cticks)
614 timeri->cticks = 1;
615 timeri->pticks = 0;
616 result = snd_timer_start1(timer, timeri, timer->sticks);
Takashi Iwai9f750af2016-01-30 23:09:08 +0100617 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 spin_unlock_irqrestore(&timer->lock, flags);
619 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_CONTINUE);
620 return result;
621}
622
623/*
624 * pause.. remember the ticks left
625 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100626int snd_timer_pause(struct snd_timer_instance * timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Takashi Iwaid7a258c2016-01-14 17:01:46 +0100628 return _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_PAUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/*
632 * reschedule the timer
633 *
634 * start pending instances and check the scheduling ticks.
635 * when the scheduling ticks is changed set CHANGE flag to reprogram the timer.
636 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100637static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100639 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 unsigned long ticks = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Johannes Berg9244b2c2006-10-05 16:02:22 +0200642 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (ti->flags & SNDRV_TIMER_IFLG_START) {
644 ti->flags &= ~SNDRV_TIMER_IFLG_START;
645 ti->flags |= SNDRV_TIMER_IFLG_RUNNING;
646 timer->running++;
647 }
648 if (ti->flags & SNDRV_TIMER_IFLG_RUNNING) {
649 if (ticks > ti->cticks)
650 ticks = ti->cticks;
651 }
652 }
653 if (ticks == ~0UL) {
654 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
655 return;
656 }
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;
662}
663
664/*
665 * timer tasklet
666 *
667 */
668static void snd_timer_tasklet(unsigned long arg)
669{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100670 struct snd_timer *timer = (struct snd_timer *) arg;
671 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct list_head *p;
673 unsigned long resolution, ticks;
Takashi Iwai2999ff52006-07-05 17:16:58 +0200674 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Takashi Iwai8d155be2016-01-21 17:19:31 +0100676 if (timer->card && timer->card->shutdown)
677 return;
678
Takashi Iwai2999ff52006-07-05 17:16:58 +0200679 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 /* now process all callbacks */
681 while (!list_empty(&timer->sack_list_head)) {
682 p = timer->sack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100683 ti = list_entry(p, struct snd_timer_instance, ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /* remove from ack_list and make empty */
686 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 ticks = ti->pticks;
689 ti->pticks = 0;
690 resolution = ti->resolution;
691
692 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
693 spin_unlock(&timer->lock);
694 if (ti->callback)
695 ti->callback(ti, resolution, ticks);
696 spin_lock(&timer->lock);
697 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
698 }
Takashi Iwai2999ff52006-07-05 17:16:58 +0200699 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702/*
703 * timer interrupt
704 *
705 * ticks_left is usually equal to timer->sticks.
706 *
707 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100708void snd_timer_interrupt(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200710 struct snd_timer_instance *ti, *ts, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unsigned long resolution, ticks;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200712 struct list_head *p, *ack_list_head;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100713 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int use_tasklet = 0;
715
716 if (timer == NULL)
717 return;
718
Takashi Iwai8d155be2016-01-21 17:19:31 +0100719 if (timer->card && timer->card->shutdown)
720 return;
721
Takashi Iwaib32425a2005-11-18 18:52:14 +0100722 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /* remember the current resolution */
725 if (timer->hw.c_resolution)
726 resolution = timer->hw.c_resolution(timer);
727 else
728 resolution = timer->hw.resolution;
729
730 /* loop for all active instances
Johannes Berg9244b2c2006-10-05 16:02:22 +0200731 * Here we cannot use list_for_each_entry because the active_list of a
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200732 * processed instance is relinked to done_list_head before the callback
733 * is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200735 list_for_each_entry_safe(ti, tmp, &timer->active_list_head,
736 active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!(ti->flags & SNDRV_TIMER_IFLG_RUNNING))
738 continue;
739 ti->pticks += ticks_left;
740 ti->resolution = resolution;
741 if (ti->cticks < ticks_left)
742 ti->cticks = 0;
743 else
744 ti->cticks -= ticks_left;
745 if (ti->cticks) /* not expired */
746 continue;
747 if (ti->flags & SNDRV_TIMER_IFLG_AUTO) {
748 ti->cticks = ti->ticks;
749 } else {
750 ti->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwai2562c292016-02-04 17:06:13 +0100751 --timer->running;
752 list_del_init(&ti->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200754 if ((timer->hw.flags & SNDRV_TIMER_HW_TASKLET) ||
755 (ti->flags & SNDRV_TIMER_IFLG_FAST))
756 ack_list_head = &timer->ack_list_head;
757 else
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);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200761 list_for_each_entry(ts, &ti->slave_active_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 ts->pticks = ti->pticks;
763 ts->resolution = resolution;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200764 if (list_empty(&ts->ack_list))
765 list_add_tail(&ts->ack_list, ack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 }
768 if (timer->flags & SNDRV_TIMER_FLG_RESCHED)
Clemens Ladischcd93fe42006-07-17 16:53:57 +0200769 snd_timer_reschedule(timer, timer->sticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (timer->running) {
771 if (timer->hw.flags & SNDRV_TIMER_HW_STOP) {
772 timer->hw.stop(timer);
773 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
774 }
775 if (!(timer->hw.flags & SNDRV_TIMER_HW_AUTO) ||
776 (timer->flags & SNDRV_TIMER_FLG_CHANGE)) {
777 /* restart timer */
778 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
779 timer->hw.start(timer);
780 }
781 } else {
782 timer->hw.stop(timer);
783 }
784
785 /* now process all fast callbacks */
786 while (!list_empty(&timer->ack_list_head)) {
787 p = timer->ack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100788 ti = list_entry(p, struct snd_timer_instance, ack_list);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* remove from ack_list and make empty */
791 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 ticks = ti->pticks;
794 ti->pticks = 0;
795
796 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
797 spin_unlock(&timer->lock);
798 if (ti->callback)
799 ti->callback(ti, resolution, ticks);
800 spin_lock(&timer->lock);
801 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
802 }
803
804 /* do we have any slow callbacks? */
805 use_tasklet = !list_empty(&timer->sack_list_head);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100806 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 if (use_tasklet)
Takashi Iwai1f041282008-12-18 12:17:55 +0100809 tasklet_schedule(&timer->task_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
812/*
813
814 */
815
Takashi Iwai53d2f742005-11-17 13:56:05 +0100816int snd_timer_new(struct snd_card *card, char *id, struct snd_timer_id *tid,
817 struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100819 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100821 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .dev_free = snd_timer_dev_free,
823 .dev_register = snd_timer_dev_register,
Takashi Iwaic4614822006-06-23 14:38:23 +0200824 .dev_disconnect = snd_timer_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 };
826
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200827 if (snd_BUG_ON(!tid))
828 return -EINVAL;
829 if (rtimer)
830 *rtimer = NULL;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200831 timer = kzalloc(sizeof(*timer), GFP_KERNEL);
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100832 if (timer == NULL) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100833 pr_err("ALSA: timer: cannot allocate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return -ENOMEM;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 timer->tmr_class = tid->dev_class;
837 timer->card = card;
838 timer->tmr_device = tid->device;
839 timer->tmr_subdevice = tid->subdevice;
840 if (id)
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);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200848 tasklet_init(&timer->task_queue, snd_timer_tasklet,
849 (unsigned long)timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (card != NULL) {
Clemens Ladischde242142005-10-12 17:12:31 +0200851 timer->module = card->module;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200852 err = snd_device_new(card, SNDRV_DEV_TIMER, timer, &ops);
853 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 snd_timer_free(timer);
855 return err;
856 }
857 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200858 if (rtimer)
859 *rtimer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return 0;
861}
862
Takashi Iwai53d2f742005-11-17 13:56:05 +0100863static int snd_timer_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200865 if (!timer)
866 return 0;
Takashi Iwaic4614822006-06-23 14:38:23 +0200867
868 mutex_lock(&register_mutex);
869 if (! list_empty(&timer->open_list_head)) {
870 struct list_head *p, *n;
871 struct snd_timer_instance *ti;
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100872 pr_warn("ALSA: timer %p is busy?\n", timer);
Takashi Iwaic4614822006-06-23 14:38:23 +0200873 list_for_each_safe(p, n, &timer->open_list_head) {
874 list_del_init(p);
875 ti = list_entry(p, struct snd_timer_instance, open_list);
876 ti->timer = NULL;
877 }
878 }
879 list_del(&timer->device_list);
880 mutex_unlock(&register_mutex);
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (timer->private_free)
883 timer->private_free(timer);
884 kfree(timer);
885 return 0;
886}
887
Takashi Iwai53d2f742005-11-17 13:56:05 +0100888static int snd_timer_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100890 struct snd_timer *timer = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return snd_timer_free(timer);
892}
893
Takashi Iwai53d2f742005-11-17 13:56:05 +0100894static int snd_timer_dev_register(struct snd_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100896 struct snd_timer *timer = dev->device_data;
897 struct snd_timer *timer1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200899 if (snd_BUG_ON(!timer || !timer->hw.start || !timer->hw.stop))
900 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (!(timer->hw.flags & SNDRV_TIMER_HW_SLAVE) &&
902 !timer->hw.resolution && timer->hw.c_resolution == NULL)
903 return -EINVAL;
904
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100905 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200906 list_for_each_entry(timer1, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (timer1->tmr_class > timer->tmr_class)
908 break;
909 if (timer1->tmr_class < timer->tmr_class)
910 continue;
911 if (timer1->card && timer->card) {
912 if (timer1->card->number > timer->card->number)
913 break;
914 if (timer1->card->number < timer->card->number)
915 continue;
916 }
917 if (timer1->tmr_device > timer->tmr_device)
918 break;
919 if (timer1->tmr_device < timer->tmr_device)
920 continue;
921 if (timer1->tmr_subdevice > timer->tmr_subdevice)
922 break;
923 if (timer1->tmr_subdevice < timer->tmr_subdevice)
924 continue;
925 /* conflicts.. */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100926 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return -EBUSY;
928 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200929 list_add_tail(&timer->device_list, &timer1->device_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100930 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return 0;
932}
933
Takashi Iwai8d155be2016-01-21 17:19:31 +0100934/* just for reference in snd_timer_dev_disconnect() below */
935static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
936 int event, struct timespec *tstamp,
937 unsigned long resolution);
938
Takashi Iwaic4614822006-06-23 14:38:23 +0200939static int snd_timer_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100941 struct snd_timer *timer = device->device_data;
Takashi Iwai8d155be2016-01-21 17:19:31 +0100942 struct snd_timer_instance *ti;
943
Takashi Iwaic4614822006-06-23 14:38:23 +0200944 mutex_lock(&register_mutex);
945 list_del_init(&timer->device_list);
Takashi Iwai8d155be2016-01-21 17:19:31 +0100946 /* 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;
951
952 tu->disconnected = true;
953 wake_up(&tu->qchange_sleep);
954 }
955 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200956 mutex_unlock(&register_mutex);
957 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Takashi Iwai53d2f742005-11-17 13:56:05 +0100960void snd_timer_notify(struct snd_timer *timer, int event, struct timespec *tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
962 unsigned long flags;
963 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100964 struct snd_timer_instance *ti, *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Takashi Iwai8d155be2016-01-21 17:19:31 +0100966 if (timer->card && timer->card->shutdown)
967 return;
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200968 if (! (timer->hw.flags & SNDRV_TIMER_HW_SLAVE))
969 return;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200970 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_MSTART ||
971 event > SNDRV_TIMER_EVENT_MRESUME))
972 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 spin_lock_irqsave(&timer->lock, flags);
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +0200974 if (event == SNDRV_TIMER_EVENT_MSTART ||
975 event == SNDRV_TIMER_EVENT_MCONTINUE ||
976 event == SNDRV_TIMER_EVENT_MRESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (timer->hw.c_resolution)
978 resolution = timer->hw.c_resolution(timer);
979 else
980 resolution = timer->hw.resolution;
981 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200982 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (ti->ccallback)
984 ti->ccallback(ti, event, tstamp, resolution);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200985 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (ts->ccallback)
987 ts->ccallback(ts, event, tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989 spin_unlock_irqrestore(&timer->lock, flags);
990}
991
992/*
993 * exported functions for global timers
994 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100995int snd_timer_global_new(char *id, int device, struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100997 struct snd_timer_id tid;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
1000 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1001 tid.card = -1;
1002 tid.device = device;
1003 tid.subdevice = 0;
1004 return snd_timer_new(NULL, id, &tid, rtimer);
1005}
1006
Takashi Iwai53d2f742005-11-17 13:56:05 +01001007int snd_timer_global_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 return snd_timer_free(timer);
1010}
1011
Takashi Iwai53d2f742005-11-17 13:56:05 +01001012int snd_timer_global_register(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001014 struct snd_device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 memset(&dev, 0, sizeof(dev));
1017 dev.device_data = timer;
1018 return snd_timer_dev_register(&dev);
1019}
1020
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001021/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * System timer
1023 */
1024
1025struct snd_timer_system_private {
1026 struct timer_list tlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 unsigned long last_expires;
1028 unsigned long last_jiffies;
1029 unsigned long correction;
1030};
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032static void snd_timer_s_function(unsigned long data)
1033{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001034 struct snd_timer *timer = (struct snd_timer *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 struct snd_timer_system_private *priv = timer->private_data;
1036 unsigned long jiff = jiffies;
1037 if (time_after(jiff, priv->last_expires))
Clemens Ladisch6ed5eff2006-07-17 16:51:37 +02001038 priv->correction += (long)jiff - (long)priv->last_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 snd_timer_interrupt(timer, (long)jiff - (long)priv->last_jiffies);
1040}
1041
Takashi Iwai53d2f742005-11-17 13:56:05 +01001042static int snd_timer_s_start(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 struct snd_timer_system_private *priv;
1045 unsigned long njiff;
1046
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;
1051 njiff++;
1052 } else {
1053 njiff += timer->sticks - priv->correction;
Clemens Ladisch17f48ec2006-07-17 16:50:56 +02001054 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 }
Takashi Iwaid4f95a02016-04-01 12:28:16 +02001056 priv->last_expires = njiff;
1057 mod_timer(&priv->tlist, njiff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return 0;
1059}
1060
Takashi Iwai53d2f742005-11-17 13:56:05 +01001061static int snd_timer_s_stop(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 struct snd_timer_system_private *priv;
1064 unsigned long jiff;
1065
1066 priv = (struct snd_timer_system_private *) timer->private_data;
1067 del_timer(&priv->tlist);
1068 jiff = jiffies;
1069 if (time_before(jiff, priv->last_expires))
1070 timer->sticks = priv->last_expires - jiff;
1071 else
1072 timer->sticks = 1;
Clemens Ladischde2696d2006-07-17 16:52:09 +02001073 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return 0;
1075}
1076
Takashi Iwai53d2f742005-11-17 13:56:05 +01001077static struct snd_timer_hardware snd_timer_system =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 .flags = SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET,
1080 .resolution = 1000000000L / HZ,
1081 .ticks = 10000000L,
1082 .start = snd_timer_s_start,
1083 .stop = snd_timer_s_stop
1084};
1085
Takashi Iwai53d2f742005-11-17 13:56:05 +01001086static void snd_timer_free_system(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
1088 kfree(timer->private_data);
1089}
1090
1091static int snd_timer_register_system(void)
1092{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001093 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct snd_timer_system_private *priv;
1095 int err;
1096
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001097 err = snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM, &timer);
1098 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return err;
1100 strcpy(timer->name, "system timer");
1101 timer->hw = snd_timer_system;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001102 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (priv == NULL) {
1104 snd_timer_free(timer);
1105 return -ENOMEM;
1106 }
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);
1113}
1114
Takashi Iwaie28563c2005-12-01 10:42:42 +01001115#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116/*
1117 * Info interface
1118 */
1119
Takashi Iwai53d2f742005-11-17 13:56:05 +01001120static void snd_timer_proc_read(struct snd_info_entry *entry,
1121 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001123 struct snd_timer *timer;
1124 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001126 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001127 list_for_each_entry(timer, &snd_timer_list, device_list) {
Takashi Iwai8d155be2016-01-21 17:19:31 +01001128 if (timer->card && timer->card->shutdown)
1129 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 switch (timer->tmr_class) {
1131 case SNDRV_TIMER_CLASS_GLOBAL:
1132 snd_iprintf(buffer, "G%i: ", timer->tmr_device);
1133 break;
1134 case SNDRV_TIMER_CLASS_CARD:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001135 snd_iprintf(buffer, "C%i-%i: ",
1136 timer->card->number, timer->tmr_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 break;
1138 case SNDRV_TIMER_CLASS_PCM:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001139 snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
1140 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 break;
1142 default:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001143 snd_iprintf(buffer, "?%i-%i-%i-%i: ", timer->tmr_class,
1144 timer->card ? timer->card->number : -1,
1145 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147 snd_iprintf(buffer, "%s :", timer->name);
1148 if (timer->hw.resolution)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001149 snd_iprintf(buffer, " %lu.%03luus (%lu ticks)",
1150 timer->hw.resolution / 1000,
1151 timer->hw.resolution % 1000,
1152 timer->hw.ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
1154 snd_iprintf(buffer, " SLAVE");
1155 snd_iprintf(buffer, "\n");
Johannes Berg9244b2c2006-10-05 16:02:22 +02001156 list_for_each_entry(ti, &timer->open_list_head, open_list)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001157 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");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001163 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Takashi Iwai6581f4e2006-05-17 17:14:51 +02001166static struct snd_info_entry *snd_timer_proc_entry;
Takashi Iwaie28563c2005-12-01 10:42:42 +01001167
1168static void __init snd_timer_proc_init(void)
1169{
1170 struct snd_info_entry *entry;
1171
1172 entry = snd_info_create_module_entry(THIS_MODULE, "timers", NULL);
1173 if (entry != NULL) {
Takashi Iwaie28563c2005-12-01 10:42:42 +01001174 entry->c.text.read = snd_timer_proc_read;
1175 if (snd_info_register(entry) < 0) {
1176 snd_info_free_entry(entry);
1177 entry = NULL;
1178 }
1179 }
1180 snd_timer_proc_entry = entry;
1181}
1182
1183static void __exit snd_timer_proc_done(void)
1184{
Takashi Iwai746d4a02006-06-23 14:37:59 +02001185 snd_info_free_entry(snd_timer_proc_entry);
Takashi Iwaie28563c2005-12-01 10:42:42 +01001186}
1187#else /* !CONFIG_PROC_FS */
1188#define snd_timer_proc_init()
1189#define snd_timer_proc_done()
1190#endif
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192/*
1193 * USER SPACE interface
1194 */
1195
Takashi Iwai53d2f742005-11-17 13:56:05 +01001196static void snd_timer_user_interrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 unsigned long resolution,
1198 unsigned long ticks)
1199{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001200 struct snd_timer_user *tu = timeri->callback_data;
1201 struct snd_timer_read *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 int prev;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 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) {
1209 r->ticks += ticks;
1210 goto __wake;
1211 }
1212 }
1213 if (tu->qused >= tu->queue_size) {
1214 tu->overrun++;
1215 } else {
1216 r = &tu->queue[tu->qtail++];
1217 tu->qtail %= tu->queue_size;
1218 r->resolution = resolution;
1219 r->ticks = ticks;
1220 tu->qused++;
1221 }
1222 __wake:
1223 spin_unlock(&tu->qlock);
1224 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1225 wake_up(&tu->qchange_sleep);
1226}
1227
Takashi Iwai53d2f742005-11-17 13:56:05 +01001228static void snd_timer_user_append_to_tqueue(struct snd_timer_user *tu,
1229 struct snd_timer_tread *tread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
1231 if (tu->qused >= tu->queue_size) {
1232 tu->overrun++;
1233 } else {
1234 memcpy(&tu->tqueue[tu->qtail++], tread, sizeof(*tread));
1235 tu->qtail %= tu->queue_size;
1236 tu->qused++;
1237 }
1238}
1239
Takashi Iwai53d2f742005-11-17 13:56:05 +01001240static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
1241 int event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 struct timespec *tstamp,
1243 unsigned long resolution)
1244{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001245 struct snd_timer_user *tu = timeri->callback_data;
1246 struct snd_timer_tread r1;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001247 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001249 if (event >= SNDRV_TIMER_EVENT_START &&
1250 event <= SNDRV_TIMER_EVENT_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 tu->tstamp = *tstamp;
1252 if ((tu->filter & (1 << event)) == 0 || !tu->tread)
1253 return;
1254 r1.event = event;
1255 r1.tstamp = *tstamp;
1256 r1.val = resolution;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001257 spin_lock_irqsave(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 snd_timer_user_append_to_tqueue(tu, &r1);
Dan Carpenterbfe70782010-04-28 10:29:14 +02001259 spin_unlock_irqrestore(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1261 wake_up(&tu->qchange_sleep);
1262}
1263
Takashi Iwai53d2f742005-11-17 13:56:05 +01001264static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 unsigned long resolution,
1266 unsigned long ticks)
1267{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001268 struct snd_timer_user *tu = timeri->callback_data;
1269 struct snd_timer_tread *r, r1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 struct timespec tstamp;
1271 int prev, append = 0;
1272
Takashi Iwai07799e72005-10-10 11:49:49 +02001273 memset(&tstamp, 0, sizeof(tstamp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 spin_lock(&tu->qlock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001275 if ((tu->filter & ((1 << SNDRV_TIMER_EVENT_RESOLUTION) |
1276 (1 << SNDRV_TIMER_EVENT_TICK))) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 spin_unlock(&tu->qlock);
1278 return;
1279 }
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001280 if (tu->last_resolution != resolution || ticks > 0) {
1281 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +00001282 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001283 else
1284 getnstimeofday(&tstamp);
1285 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001286 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
1287 tu->last_resolution != resolution) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
1289 r1.tstamp = tstamp;
1290 r1.val = resolution;
1291 snd_timer_user_append_to_tqueue(tu, &r1);
1292 tu->last_resolution = resolution;
1293 append++;
1294 }
1295 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_TICK)) == 0)
1296 goto __wake;
1297 if (ticks == 0)
1298 goto __wake;
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) {
1303 r->tstamp = tstamp;
1304 r->val += ticks;
1305 append++;
1306 goto __wake;
1307 }
1308 }
1309 r1.event = SNDRV_TIMER_EVENT_TICK;
1310 r1.tstamp = tstamp;
1311 r1.val = ticks;
1312 snd_timer_user_append_to_tqueue(tu, &r1);
1313 append++;
1314 __wake:
1315 spin_unlock(&tu->qlock);
1316 if (append == 0)
1317 return;
1318 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1319 wake_up(&tu->qchange_sleep);
1320}
1321
1322static int snd_timer_user_open(struct inode *inode, struct file *file)
1323{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001324 struct snd_timer_user *tu;
Takashi Iwai02f48652010-04-13 11:49:04 +02001325 int err;
1326
1327 err = nonseekable_open(inode, file);
1328 if (err < 0)
1329 return err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001330
Takashi Iwaica2c0962005-09-09 14:20:23 +02001331 tu = kzalloc(sizeof(*tu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (tu == NULL)
1333 return -ENOMEM;
1334 spin_lock_init(&tu->qlock);
1335 init_waitqueue_head(&tu->qchange_sleep);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001336 mutex_init(&tu->tread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 tu->ticks = 1;
1338 tu->queue_size = 128;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001339 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001340 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (tu->queue == NULL) {
1342 kfree(tu);
1343 return -ENOMEM;
1344 }
1345 file->private_data = tu;
1346 return 0;
1347}
1348
1349static int snd_timer_user_release(struct inode *inode, struct file *file)
1350{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001351 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 if (file->private_data) {
1354 tu = file->private_data;
1355 file->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (tu->timeri)
1357 snd_timer_close(tu->timeri);
1358 kfree(tu->queue);
1359 kfree(tu->tqueue);
1360 kfree(tu);
1361 }
1362 return 0;
1363}
1364
Takashi Iwai53d2f742005-11-17 13:56:05 +01001365static void snd_timer_user_zero_id(struct snd_timer_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
1367 id->dev_class = SNDRV_TIMER_CLASS_NONE;
1368 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1369 id->card = -1;
1370 id->device = -1;
1371 id->subdevice = -1;
1372}
1373
Takashi Iwai53d2f742005-11-17 13:56:05 +01001374static void snd_timer_user_copy_id(struct snd_timer_id *id, struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 id->dev_class = timer->tmr_class;
1377 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1378 id->card = timer->card ? timer->card->number : -1;
1379 id->device = timer->tmr_device;
1380 id->subdevice = timer->tmr_subdevice;
1381}
1382
Takashi Iwai53d2f742005-11-17 13:56:05 +01001383static int snd_timer_user_next_device(struct snd_timer_id __user *_tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001385 struct snd_timer_id id;
1386 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 struct list_head *p;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (copy_from_user(&id, _tid, sizeof(id)))
1390 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001391 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (id.dev_class < 0) { /* first item */
1393 if (list_empty(&snd_timer_list))
1394 snd_timer_user_zero_id(&id);
1395 else {
Clemens Ladisch9dfba382005-10-12 17:14:55 +02001396 timer = list_entry(snd_timer_list.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001397 struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 snd_timer_user_copy_id(&id, timer);
1399 }
1400 } else {
1401 switch (id.dev_class) {
1402 case SNDRV_TIMER_CLASS_GLOBAL:
1403 id.device = id.device < 0 ? 0 : id.device + 1;
1404 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001405 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (timer->tmr_class > SNDRV_TIMER_CLASS_GLOBAL) {
1407 snd_timer_user_copy_id(&id, timer);
1408 break;
1409 }
1410 if (timer->tmr_device >= id.device) {
1411 snd_timer_user_copy_id(&id, timer);
1412 break;
1413 }
1414 }
1415 if (p == &snd_timer_list)
1416 snd_timer_user_zero_id(&id);
1417 break;
1418 case SNDRV_TIMER_CLASS_CARD:
1419 case SNDRV_TIMER_CLASS_PCM:
1420 if (id.card < 0) {
1421 id.card = 0;
1422 } else {
1423 if (id.card < 0) {
1424 id.card = 0;
1425 } else {
1426 if (id.device < 0) {
1427 id.device = 0;
1428 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001429 if (id.subdevice < 0) {
1430 id.subdevice = 0;
1431 } else {
1432 id.subdevice++;
1433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435 }
1436 }
1437 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001438 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (timer->tmr_class > id.dev_class) {
1440 snd_timer_user_copy_id(&id, timer);
1441 break;
1442 }
1443 if (timer->tmr_class < id.dev_class)
1444 continue;
1445 if (timer->card->number > id.card) {
1446 snd_timer_user_copy_id(&id, timer);
1447 break;
1448 }
1449 if (timer->card->number < id.card)
1450 continue;
1451 if (timer->tmr_device > id.device) {
1452 snd_timer_user_copy_id(&id, timer);
1453 break;
1454 }
1455 if (timer->tmr_device < id.device)
1456 continue;
1457 if (timer->tmr_subdevice > id.subdevice) {
1458 snd_timer_user_copy_id(&id, timer);
1459 break;
1460 }
1461 if (timer->tmr_subdevice < id.subdevice)
1462 continue;
1463 snd_timer_user_copy_id(&id, timer);
1464 break;
1465 }
1466 if (p == &snd_timer_list)
1467 snd_timer_user_zero_id(&id);
1468 break;
1469 default:
1470 snd_timer_user_zero_id(&id);
1471 }
1472 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001473 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (copy_to_user(_tid, &id, sizeof(*_tid)))
1475 return -EFAULT;
1476 return 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001477}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001479static int snd_timer_user_ginfo(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001480 struct snd_timer_ginfo __user *_ginfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001482 struct snd_timer_ginfo *ginfo;
1483 struct snd_timer_id tid;
1484 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct list_head *p;
1486 int err = 0;
1487
Li Zefanef44a1e2009-04-10 09:43:08 +08001488 ginfo = memdup_user(_ginfo, sizeof(*ginfo));
1489 if (IS_ERR(ginfo))
1490 return PTR_ERR(ginfo);
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 tid = ginfo->tid;
1493 memset(ginfo, 0, sizeof(*ginfo));
1494 ginfo->tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001495 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 t = snd_timer_find(&tid);
1497 if (t != NULL) {
1498 ginfo->card = t->card ? t->card->number : -1;
1499 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1500 ginfo->flags |= SNDRV_TIMER_FLG_SLAVE;
1501 strlcpy(ginfo->id, t->id, sizeof(ginfo->id));
1502 strlcpy(ginfo->name, t->name, sizeof(ginfo->name));
1503 ginfo->resolution = t->hw.resolution;
1504 if (t->hw.resolution_min > 0) {
1505 ginfo->resolution_min = t->hw.resolution_min;
1506 ginfo->resolution_max = t->hw.resolution_max;
1507 }
1508 list_for_each(p, &t->open_list_head) {
1509 ginfo->clients++;
1510 }
1511 } else {
1512 err = -ENODEV;
1513 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001514 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (err >= 0 && copy_to_user(_ginfo, ginfo, sizeof(*ginfo)))
1516 err = -EFAULT;
1517 kfree(ginfo);
1518 return err;
1519}
1520
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001521static int snd_timer_user_gparams(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001522 struct snd_timer_gparams __user *_gparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001524 struct snd_timer_gparams gparams;
1525 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 int err;
1527
1528 if (copy_from_user(&gparams, _gparams, sizeof(gparams)))
1529 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001530 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 t = snd_timer_find(&gparams.tid);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001532 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 err = -ENODEV;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001534 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001536 if (!list_empty(&t->open_list_head)) {
1537 err = -EBUSY;
1538 goto _error;
1539 }
1540 if (!t->hw.set_period) {
1541 err = -ENOSYS;
1542 goto _error;
1543 }
1544 err = t->hw.set_period(t, gparams.period_num, gparams.period_den);
1545_error:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001546 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return err;
1548}
1549
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001550static int snd_timer_user_gstatus(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001551 struct snd_timer_gstatus __user *_gstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001553 struct snd_timer_gstatus gstatus;
1554 struct snd_timer_id tid;
1555 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 int err = 0;
1557
1558 if (copy_from_user(&gstatus, _gstatus, sizeof(gstatus)))
1559 return -EFAULT;
1560 tid = gstatus.tid;
1561 memset(&gstatus, 0, sizeof(gstatus));
1562 gstatus.tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001563 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 t = snd_timer_find(&tid);
1565 if (t != NULL) {
1566 if (t->hw.c_resolution)
1567 gstatus.resolution = t->hw.c_resolution(t);
1568 else
1569 gstatus.resolution = t->hw.resolution;
1570 if (t->hw.precise_resolution) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001571 t->hw.precise_resolution(t, &gstatus.resolution_num,
1572 &gstatus.resolution_den);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 } else {
1574 gstatus.resolution_num = gstatus.resolution;
1575 gstatus.resolution_den = 1000000000uL;
1576 }
1577 } else {
1578 err = -ENODEV;
1579 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001580 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (err >= 0 && copy_to_user(_gstatus, &gstatus, sizeof(gstatus)))
1582 err = -EFAULT;
1583 return err;
1584}
1585
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001586static int snd_timer_user_tselect(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001587 struct snd_timer_select __user *_tselect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001589 struct snd_timer_user *tu;
1590 struct snd_timer_select tselect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 char str[32];
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001592 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 tu = file->private_data;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001595 mutex_lock(&tu->tread_sem);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001596 if (tu->timeri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 snd_timer_close(tu->timeri);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001598 tu->timeri = NULL;
1599 }
1600 if (copy_from_user(&tselect, _tselect, sizeof(tselect))) {
1601 err = -EFAULT;
1602 goto __err;
1603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 sprintf(str, "application %i", current->pid);
1605 if (tselect.id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
1606 tselect.id.dev_sclass = SNDRV_TIMER_SCLASS_APPLICATION;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001607 err = snd_timer_open(&tu->timeri, str, &tselect.id, current->pid);
1608 if (err < 0)
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001609 goto __err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Jesper Juhl4d572772005-05-30 17:30:32 +02001611 kfree(tu->queue);
1612 tu->queue = NULL;
1613 kfree(tu->tqueue);
1614 tu->tqueue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001616 tu->tqueue = kmalloc(tu->queue_size * sizeof(struct snd_timer_tread),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001617 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001618 if (tu->tqueue == NULL)
1619 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001621 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001622 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001623 if (tu->queue == NULL)
1624 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001626
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001627 if (err < 0) {
1628 snd_timer_close(tu->timeri);
1629 tu->timeri = NULL;
1630 } else {
1631 tu->timeri->flags |= SNDRV_TIMER_IFLG_FAST;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001632 tu->timeri->callback = tu->tread
1633 ? snd_timer_user_tinterrupt : snd_timer_user_interrupt;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001634 tu->timeri->ccallback = snd_timer_user_ccallback;
1635 tu->timeri->callback_data = (void *)tu;
1636 }
1637
1638 __err:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001639 mutex_unlock(&tu->tread_sem);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001640 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001643static int snd_timer_user_info(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001644 struct snd_timer_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001646 struct snd_timer_user *tu;
1647 struct snd_timer_info *info;
1648 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 int err = 0;
1650
1651 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001652 if (!tu->timeri)
1653 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001655 if (!t)
1656 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Takashi Iwaica2c0962005-09-09 14:20:23 +02001658 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (! info)
1660 return -ENOMEM;
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)))
1668 err = -EFAULT;
1669 kfree(info);
1670 return err;
1671}
1672
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001673static int snd_timer_user_params(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001674 struct snd_timer_params __user *_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001676 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 int err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001684 if (!tu->timeri)
1685 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001687 if (!t)
1688 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (copy_from_user(&params, _params, sizeof(params)))
1690 return -EFAULT;
1691 if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE) && params.ticks < 1) {
1692 err = -EINVAL;
1693 goto _end;
1694 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001695 if (params.queue_size > 0 &&
1696 (params.queue_size < 32 || params.queue_size > 1024)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 err = -EINVAL;
1698 goto _end;
1699 }
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)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001706 (1<<SNDRV_TIMER_EVENT_SUSPEND)|
1707 (1<<SNDRV_TIMER_EVENT_RESUME)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 (1<<SNDRV_TIMER_EVENT_MSTART)|
1709 (1<<SNDRV_TIMER_EVENT_MSTOP)|
1710 (1<<SNDRV_TIMER_EVENT_MCONTINUE)|
Jaroslav Kysela65d11d92005-08-16 13:05:43 +02001711 (1<<SNDRV_TIMER_EVENT_MPAUSE)|
1712 (1<<SNDRV_TIMER_EVENT_MSUSPEND)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001713 (1<<SNDRV_TIMER_EVENT_MRESUME))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 err = -EINVAL;
1715 goto _end;
1716 }
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);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001729 if (params.queue_size > 0 &&
1730 (unsigned int)tu->queue_size != params.queue_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (tu->tread) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001732 ttr = kmalloc(params.queue_size * sizeof(*ttr),
1733 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (ttr) {
1735 kfree(tu->tqueue);
1736 tu->queue_size = params.queue_size;
1737 tu->tqueue = ttr;
1738 }
1739 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001740 tr = kmalloc(params.queue_size * sizeof(*tr),
1741 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (tr) {
1743 kfree(tu->queue);
1744 tu->queue_size = params.queue_size;
1745 tu->queue = tr;
1746 }
1747 }
1748 }
1749 tu->qhead = tu->qtail = tu->qused = 0;
1750 if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) {
1751 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001752 struct snd_timer_tread tread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 tread.event = SNDRV_TIMER_EVENT_EARLY;
1754 tread.tstamp.tv_sec = 0;
1755 tread.tstamp.tv_nsec = 0;
1756 tread.val = 0;
1757 snd_timer_user_append_to_tqueue(tu, &tread);
1758 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001759 struct snd_timer_read *r = &tu->queue[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 r->resolution = 0;
1761 r->ticks = 0;
1762 tu->qused++;
1763 tu->qtail++;
1764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
1766 tu->filter = params.filter;
1767 tu->ticks = params.ticks;
1768 err = 0;
1769 _end:
1770 if (copy_to_user(_params, &params, sizeof(params)))
1771 return -EFAULT;
1772 return err;
1773}
1774
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001775static int snd_timer_user_status(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001776 struct snd_timer_status __user *_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001778 struct snd_timer_user *tu;
1779 struct snd_timer_status status;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001782 if (!tu->timeri)
1783 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 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)))
1793 return -EFAULT;
1794 return 0;
1795}
1796
1797static int snd_timer_user_start(struct file *file)
1798{
1799 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001800 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001803 if (!tu->timeri)
1804 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 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;
1809}
1810
1811static int snd_timer_user_stop(struct file *file)
1812{
1813 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001814 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001817 if (!tu->timeri)
1818 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return (err = snd_timer_stop(tu->timeri)) < 0 ? err : 0;
1820}
1821
1822static int snd_timer_user_continue(struct file *file)
1823{
1824 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001825 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001828 if (!tu->timeri)
1829 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 tu->timeri->lost = 0;
1831 return (err = snd_timer_continue(tu->timeri)) < 0 ? err : 0;
1832}
1833
Takashi Iwai15790a62005-05-15 15:04:14 +02001834static int snd_timer_user_pause(struct file *file)
1835{
1836 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001837 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001838
Takashi Iwai15790a62005-05-15 15:04:14 +02001839 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001840 if (!tu->timeri)
1841 return -EBADFD;
Jaroslav Kyselad138b442005-05-16 13:51:39 +02001842 return (err = snd_timer_pause(tu->timeri)) < 0 ? err : 0;
Takashi Iwai15790a62005-05-15 15:04:14 +02001843}
1844
Takashi Iwai8c50b372005-05-15 15:43:54 +02001845enum {
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),
1850};
1851
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001852static long snd_timer_user_ioctl(struct file *file, unsigned int cmd,
1853 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001855 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 void __user *argp = (void __user *)arg;
1857 int __user *p = argp;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 tu = file->private_data;
1860 switch (cmd) {
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:
1866 {
1867 int xarg;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001868
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001869 mutex_lock(&tu->tread_sem);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001870 if (tu->timeri) { /* too late */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001871 mutex_unlock(&tu->tread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return -EBUSY;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001873 }
1874 if (get_user(xarg, p)) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001875 mutex_unlock(&tu->tread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return -EFAULT;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 tu->tread = xarg ? 1 : 0;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001879 mutex_unlock(&tu->tread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return 0;
1881 }
1882 case SNDRV_TIMER_IOCTL_GINFO:
1883 return snd_timer_user_ginfo(file, argp);
1884 case SNDRV_TIMER_IOCTL_GPARAMS:
1885 return snd_timer_user_gparams(file, argp);
1886 case SNDRV_TIMER_IOCTL_GSTATUS:
1887 return snd_timer_user_gstatus(file, argp);
1888 case SNDRV_TIMER_IOCTL_SELECT:
1889 return snd_timer_user_tselect(file, argp);
1890 case SNDRV_TIMER_IOCTL_INFO:
1891 return snd_timer_user_info(file, argp);
1892 case SNDRV_TIMER_IOCTL_PARAMS:
1893 return snd_timer_user_params(file, argp);
1894 case SNDRV_TIMER_IOCTL_STATUS:
1895 return snd_timer_user_status(file, argp);
1896 case SNDRV_TIMER_IOCTL_START:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001897 case SNDRV_TIMER_IOCTL_START_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 return snd_timer_user_start(file);
1899 case SNDRV_TIMER_IOCTL_STOP:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001900 case SNDRV_TIMER_IOCTL_STOP_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return snd_timer_user_stop(file);
1902 case SNDRV_TIMER_IOCTL_CONTINUE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001903 case SNDRV_TIMER_IOCTL_CONTINUE_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return snd_timer_user_continue(file);
Takashi Iwai15790a62005-05-15 15:04:14 +02001905 case SNDRV_TIMER_IOCTL_PAUSE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001906 case SNDRV_TIMER_IOCTL_PAUSE_OLD:
Takashi Iwai15790a62005-05-15 15:04:14 +02001907 return snd_timer_user_pause(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
1909 return -ENOTTY;
1910}
1911
1912static int snd_timer_user_fasync(int fd, struct file * file, int on)
1913{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001914 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 tu = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001917 return fasync_helper(fd, file, on, &tu->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918}
1919
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001920static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
1921 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001923 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 long result = 0, unit;
Takashi Iwai0f97e402016-02-08 17:26:58 +01001925 int qhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 tu = file->private_data;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001929 unit = tu->tread ? sizeof(struct snd_timer_tread) : sizeof(struct snd_timer_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 spin_lock_irq(&tu->qlock);
1931 while ((long)count - result >= unit) {
1932 while (!tu->qused) {
1933 wait_queue_t wait;
1934
1935 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1936 err = -EAGAIN;
Takashi Iwai0f97e402016-02-08 17:26:58 +01001937 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939
1940 set_current_state(TASK_INTERRUPTIBLE);
1941 init_waitqueue_entry(&wait, current);
1942 add_wait_queue(&tu->qchange_sleep, &wait);
1943
1944 spin_unlock_irq(&tu->qlock);
1945 schedule();
1946 spin_lock_irq(&tu->qlock);
1947
1948 remove_wait_queue(&tu->qchange_sleep, &wait);
1949
Takashi Iwai8d155be2016-01-21 17:19:31 +01001950 if (tu->disconnected) {
1951 err = -ENODEV;
Takashi Iwai0f97e402016-02-08 17:26:58 +01001952 goto _error;
Takashi Iwai8d155be2016-01-21 17:19:31 +01001953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (signal_pending(current)) {
1955 err = -ERESTARTSYS;
Takashi Iwai0f97e402016-02-08 17:26:58 +01001956 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
1958 }
1959
Takashi Iwai0f97e402016-02-08 17:26:58 +01001960 qhead = tu->qhead++;
1961 tu->qhead %= tu->queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 if (tu->tread) {
Takashi Iwai0f97e402016-02-08 17:26:58 +01001965 if (copy_to_user(buffer, &tu->tqueue[qhead],
1966 sizeof(struct snd_timer_tread)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 } else {
Takashi Iwai0f97e402016-02-08 17:26:58 +01001969 if (copy_to_user(buffer, &tu->queue[qhead],
1970 sizeof(struct snd_timer_read)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 spin_lock_irq(&tu->qlock);
1975 tu->qused--;
Takashi Iwai0f97e402016-02-08 17:26:58 +01001976 if (err < 0)
1977 goto _error;
1978 result += unit;
1979 buffer += unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 _error:
Takashi Iwai0f97e402016-02-08 17:26:58 +01001982 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return result > 0 ? result : err;
1984}
1985
1986static unsigned int snd_timer_user_poll(struct file *file, poll_table * wait)
1987{
1988 unsigned int mask;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001989 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 tu = file->private_data;
1992
1993 poll_wait(file, &tu->qchange_sleep, wait);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 mask = 0;
1996 if (tu->qused)
1997 mask |= POLLIN | POLLRDNORM;
Takashi Iwai8d155be2016-01-21 17:19:31 +01001998 if (tu->disconnected)
1999 mask |= POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 return mask;
2002}
2003
2004#ifdef CONFIG_COMPAT
2005#include "timer_compat.c"
2006#else
2007#define snd_timer_user_ioctl_compat NULL
2008#endif
2009
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08002010static const struct file_operations snd_timer_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
2012 .owner = THIS_MODULE,
2013 .read = snd_timer_user_read,
2014 .open = snd_timer_user_open,
2015 .release = snd_timer_user_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02002016 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 .poll = snd_timer_user_poll,
2018 .unlocked_ioctl = snd_timer_user_ioctl,
2019 .compat_ioctl = snd_timer_user_ioctl_compat,
2020 .fasync = snd_timer_user_fasync,
2021};
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023/*
2024 * ENTRY functions
2025 */
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027static int __init alsa_timer_init(void)
2028{
2029 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031#ifdef SNDRV_OSS_INFO_DEV_TIMERS
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002032 snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1,
2033 "system timer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034#endif
Takashi Iwaie28563c2005-12-01 10:42:42 +01002035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if ((err = snd_timer_register_system()) < 0)
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002037 pr_err("ALSA: unable to register system timer (%i)\n", err);
Clemens Ladischf87135f2005-11-20 14:06:59 +01002038 if ((err = snd_register_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0,
2039 &snd_timer_f_ops, NULL, "timer")) < 0)
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002040 pr_err("ALSA: unable to register timer device (%i)\n", err);
Takashi Iwaie28563c2005-12-01 10:42:42 +01002041 snd_timer_proc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 return 0;
2043}
2044
2045static void __exit alsa_timer_exit(void)
2046{
2047 struct list_head *p, *n;
2048
2049 snd_unregister_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0);
2050 /* unregister the system timer */
2051 list_for_each_safe(p, n, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01002052 struct snd_timer *timer = list_entry(p, struct snd_timer, device_list);
Takashi Iwaic4614822006-06-23 14:38:23 +02002053 snd_timer_free(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
Takashi Iwaie28563c2005-12-01 10:42:42 +01002055 snd_timer_proc_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056#ifdef SNDRV_OSS_INFO_DEV_TIMERS
2057 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1);
2058#endif
2059}
2060
2061module_init(alsa_timer_init)
2062module_exit(alsa_timer_exit)
2063
2064EXPORT_SYMBOL(snd_timer_open);
2065EXPORT_SYMBOL(snd_timer_close);
2066EXPORT_SYMBOL(snd_timer_resolution);
2067EXPORT_SYMBOL(snd_timer_start);
2068EXPORT_SYMBOL(snd_timer_stop);
2069EXPORT_SYMBOL(snd_timer_continue);
2070EXPORT_SYMBOL(snd_timer_pause);
2071EXPORT_SYMBOL(snd_timer_new);
2072EXPORT_SYMBOL(snd_timer_notify);
2073EXPORT_SYMBOL(snd_timer_global_new);
2074EXPORT_SYMBOL(snd_timer_global_free);
2075EXPORT_SYMBOL(snd_timer_global_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076EXPORT_SYMBOL(snd_timer_interrupt);