blob: 12db60dd147b793ce11547a0433f2aaf4d392d5a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Timers abstract layer
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
25#include <linux/time.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010026#include <linux/mutex.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050027#include <linux/device.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040028#include <linux/module.h>
Paulo Marques543537b2005-06-23 00:09:02 -070029#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <sound/core.h>
31#include <sound/timer.h>
32#include <sound/control.h>
33#include <sound/info.h>
34#include <sound/minors.h>
35#include <sound/initval.h>
36#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010038#if IS_ENABLED(CONFIG_SND_HRTIMER)
Clemens Ladisch109fef92010-11-18 09:53:54 +010039#define DEFAULT_TIMER_LIMIT 4
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010040#elif IS_ENABLED(CONFIG_SND_RTCTIMER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define DEFAULT_TIMER_LIMIT 2
42#else
43#define DEFAULT_TIMER_LIMIT 1
44#endif
45
46static int timer_limit = DEFAULT_TIMER_LIMIT;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010047static int timer_tstamp_monotonic = 1;
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020048MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_DESCRIPTION("ALSA timer interface");
50MODULE_LICENSE("GPL");
51module_param(timer_limit, int, 0444);
52MODULE_PARM_DESC(timer_limit, "Maximum global timers in system.");
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010053module_param(timer_tstamp_monotonic, int, 0444);
54MODULE_PARM_DESC(timer_tstamp_monotonic, "Use posix monotonic clock source for timestamps (default).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Kay Sievers03cfe6f2010-11-23 17:43:19 +010056MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR, SNDRV_MINOR_TIMER);
57MODULE_ALIAS("devname:snd/timer");
58
Takashi Iwai53d2f742005-11-17 13:56:05 +010059struct snd_timer_user {
60 struct snd_timer_instance *timeri;
Clemens Ladisch6b172a82005-10-12 17:20:21 +020061 int tread; /* enhanced read with timestamps and events */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 unsigned long ticks;
63 unsigned long overrun;
64 int qhead;
65 int qtail;
66 int qused;
67 int queue_size;
Takashi Iwai230323d2016-01-21 17:19:31 +010068 bool disconnected;
Takashi Iwai53d2f742005-11-17 13:56:05 +010069 struct snd_timer_read *queue;
70 struct snd_timer_tread *tqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 spinlock_t qlock;
72 unsigned long last_resolution;
73 unsigned int filter;
74 struct timespec tstamp; /* trigger tstamp */
75 wait_queue_head_t qchange_sleep;
76 struct fasync_struct *fasync;
Takashi Iwaiaf368022016-01-13 17:48:01 +010077 struct mutex ioctl_lock;
Takashi Iwai53d2f742005-11-17 13:56:05 +010078};
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* list of timers */
81static LIST_HEAD(snd_timer_list);
82
83/* list of slave instances */
84static LIST_HEAD(snd_timer_slave_list);
85
86/* lock for slave active lists */
87static DEFINE_SPINLOCK(slave_active_lock);
88
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010089static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Takashi Iwai53d2f742005-11-17 13:56:05 +010091static int snd_timer_free(struct snd_timer *timer);
92static int snd_timer_dev_free(struct snd_device *device);
93static int snd_timer_dev_register(struct snd_device *device);
Takashi Iwaic4614822006-06-23 14:38:23 +020094static int snd_timer_dev_disconnect(struct snd_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Takashi Iwai53d2f742005-11-17 13:56:05 +010096static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
99 * create a timer instance with the given owner string.
100 * when timer is not NULL, increments the module counter
101 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100102static struct snd_timer_instance *snd_timer_instance_new(char *owner,
103 struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100105 struct snd_timer_instance *timeri;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200106 timeri = kzalloc(sizeof(*timeri), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (timeri == NULL)
108 return NULL;
Paulo Marques543537b2005-06-23 00:09:02 -0700109 timeri->owner = kstrdup(owner, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (! timeri->owner) {
111 kfree(timeri);
112 return NULL;
113 }
114 INIT_LIST_HEAD(&timeri->open_list);
115 INIT_LIST_HEAD(&timeri->active_list);
116 INIT_LIST_HEAD(&timeri->ack_list);
117 INIT_LIST_HEAD(&timeri->slave_list_head);
118 INIT_LIST_HEAD(&timeri->slave_active_head);
119
120 timeri->timer = timer;
Clemens Ladischde242142005-10-12 17:12:31 +0200121 if (timer && !try_module_get(timer->module)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 kfree(timeri->owner);
123 kfree(timeri);
124 return NULL;
125 }
126
127 return timeri;
128}
129
130/*
131 * find a timer instance from the given timer id
132 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100133static struct snd_timer *snd_timer_find(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100135 struct snd_timer *timer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Johannes Berg9244b2c2006-10-05 16:02:22 +0200137 list_for_each_entry(timer, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (timer->tmr_class != tid->dev_class)
139 continue;
140 if ((timer->tmr_class == SNDRV_TIMER_CLASS_CARD ||
141 timer->tmr_class == SNDRV_TIMER_CLASS_PCM) &&
142 (timer->card == NULL ||
143 timer->card->number != tid->card))
144 continue;
145 if (timer->tmr_device != tid->device)
146 continue;
147 if (timer->tmr_subdevice != tid->subdevice)
148 continue;
149 return timer;
150 }
151 return NULL;
152}
153
Johannes Bergee2da992008-07-09 10:28:41 +0200154#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Takashi Iwai53d2f742005-11-17 13:56:05 +0100156static void snd_timer_request(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 switch (tid->dev_class) {
159 case SNDRV_TIMER_CLASS_GLOBAL:
160 if (tid->device < timer_limit)
161 request_module("snd-timer-%i", tid->device);
162 break;
163 case SNDRV_TIMER_CLASS_CARD:
164 case SNDRV_TIMER_CLASS_PCM:
165 if (tid->card < snd_ecards_limit)
166 request_module("snd-card-%i", tid->card);
167 break;
168 default:
169 break;
170 }
171}
172
173#endif
174
175/*
176 * look for a master instance matching with the slave id of the given slave.
177 * when found, relink the open_link of the slave.
178 *
179 * call this with register_mutex down.
180 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100181static void snd_timer_check_slave(struct snd_timer_instance *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100183 struct snd_timer *timer;
184 struct snd_timer_instance *master;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* FIXME: it's really dumb to look up all entries.. */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200187 list_for_each_entry(timer, &snd_timer_list, device_list) {
188 list_for_each_entry(master, &timer->open_list_head, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (slave->slave_class == master->slave_class &&
190 slave->slave_id == master->slave_id) {
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100191 list_move_tail(&slave->open_list,
192 &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 spin_lock_irq(&slave_active_lock);
194 slave->master = master;
195 slave->timer = master->timer;
196 spin_unlock_irq(&slave_active_lock);
197 return;
198 }
199 }
200 }
201}
202
203/*
204 * look for slave instances matching with the slave id of the given master.
205 * when found, relink the open_link of slaves.
206 *
207 * call this with register_mutex down.
208 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100209static void snd_timer_check_master(struct snd_timer_instance *master)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200211 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* check all pending slaves */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200214 list_for_each_entry_safe(slave, tmp, &snd_timer_slave_list, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (slave->slave_class == master->slave_class &&
216 slave->slave_id == master->slave_id) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200217 list_move_tail(&slave->open_list, &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 spin_lock_irq(&slave_active_lock);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100219 spin_lock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 slave->master = master;
221 slave->timer = master->timer;
222 if (slave->flags & SNDRV_TIMER_IFLG_RUNNING)
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200223 list_add_tail(&slave->active_list,
224 &master->slave_active_head);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100225 spin_unlock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 spin_unlock_irq(&slave_active_lock);
227 }
228 }
229}
230
231/*
232 * open a timer instance
233 * when opening a master, the slave id must be here given.
234 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100235int snd_timer_open(struct snd_timer_instance **ti,
236 char *owner, struct snd_timer_id *tid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 unsigned int slave_id)
238{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100239 struct snd_timer *timer;
240 struct snd_timer_instance *timeri = NULL;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (tid->dev_class == SNDRV_TIMER_CLASS_SLAVE) {
243 /* open a slave instance */
244 if (tid->dev_sclass <= SNDRV_TIMER_SCLASS_NONE ||
245 tid->dev_sclass > SNDRV_TIMER_SCLASS_OSS_SEQUENCER) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100246 pr_debug("ALSA: timer: invalid slave class %i\n",
247 tid->dev_sclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -EINVAL;
249 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100250 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 timeri = snd_timer_instance_new(owner, NULL);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200252 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100253 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200254 return -ENOMEM;
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 timeri->slave_class = tid->dev_sclass;
257 timeri->slave_id = tid->device;
258 timeri->flags |= SNDRV_TIMER_IFLG_SLAVE;
259 list_add_tail(&timeri->open_list, &snd_timer_slave_list);
260 snd_timer_check_slave(timeri);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100261 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 *ti = timeri;
263 return 0;
264 }
265
266 /* open a master instance */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100267 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 timer = snd_timer_find(tid);
Johannes Bergee2da992008-07-09 10:28:41 +0200269#ifdef CONFIG_MODULES
270 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100271 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 snd_timer_request(tid);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100273 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 timer = snd_timer_find(tid);
275 }
276#endif
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200277 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100278 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return -ENODEV;
280 }
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200281 if (!list_empty(&timer->open_list_head)) {
282 timeri = list_entry(timer->open_list_head.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +0100283 struct snd_timer_instance, open_list);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200284 if (timeri->flags & SNDRV_TIMER_IFLG_EXCLUSIVE) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100285 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200286 return -EBUSY;
287 }
288 }
289 timeri = snd_timer_instance_new(owner, timer);
290 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100291 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200292 return -ENOMEM;
293 }
Takashi Iwai230323d2016-01-21 17:19:31 +0100294 /* take a card refcount for safe disconnection */
295 if (timer->card)
296 get_device(&timer->card->card_dev);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200297 timeri->slave_class = tid->dev_sclass;
298 timeri->slave_id = slave_id;
299 if (list_empty(&timer->open_list_head) && timer->hw.open)
300 timer->hw.open(timer);
301 list_add_tail(&timeri->open_list, &timer->open_list_head);
302 snd_timer_check_master(timeri);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100303 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 *ti = timeri;
305 return 0;
306}
307
Takashi Iwaic3b16812016-01-14 17:01:46 +0100308static int _snd_timer_stop(struct snd_timer_instance *timeri, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310/*
311 * close a timer instance
312 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100313int snd_timer_close(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100315 struct snd_timer *timer = NULL;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200316 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Takashi Iwai00728892008-08-14 07:51:57 +0200318 if (snd_BUG_ON(!timeri))
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200319 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* force to stop the timer */
322 snd_timer_stop(timeri);
323
324 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) {
325 /* wait, until the active callback is finished */
326 spin_lock_irq(&slave_active_lock);
327 while (timeri->flags & SNDRV_TIMER_IFLG_CALLBACK) {
328 spin_unlock_irq(&slave_active_lock);
329 udelay(10);
330 spin_lock_irq(&slave_active_lock);
331 }
332 spin_unlock_irq(&slave_active_lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100333 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 list_del(&timeri->open_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100335 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 } else {
337 timer = timeri->timer;
Takashi Iwai94094c82011-08-08 12:28:22 +0200338 if (snd_BUG_ON(!timer))
339 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* wait, until the active callback is finished */
341 spin_lock_irq(&timer->lock);
342 while (timeri->flags & SNDRV_TIMER_IFLG_CALLBACK) {
343 spin_unlock_irq(&timer->lock);
344 udelay(10);
345 spin_lock_irq(&timer->lock);
346 }
347 spin_unlock_irq(&timer->lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100348 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 list_del(&timeri->open_list);
Takashi Iwaic3b16812016-01-14 17:01:46 +0100350 if (list_empty(&timer->open_list_head) &&
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200351 timer->hw.close)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 timer->hw.close(timer);
353 /* remove slave links */
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100354 spin_lock_irq(&slave_active_lock);
355 spin_lock(&timer->lock);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200356 list_for_each_entry_safe(slave, tmp, &timeri->slave_list_head,
357 open_list) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200358 list_move_tail(&slave->open_list, &snd_timer_slave_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 slave->master = NULL;
360 slave->timer = NULL;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100361 list_del_init(&slave->ack_list);
362 list_del_init(&slave->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100364 spin_unlock(&timer->lock);
365 spin_unlock_irq(&slave_active_lock);
Takashi Iwai230323d2016-01-21 17:19:31 +0100366 /* release a card refcount for safe disconnection */
367 if (timer->card)
368 put_device(&timer->card->card_dev);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100369 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Takashi Iwai94094c82011-08-08 12:28:22 +0200371 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (timeri->private_free)
373 timeri->private_free(timeri);
374 kfree(timeri->owner);
375 kfree(timeri);
Clemens Ladischde242142005-10-12 17:12:31 +0200376 if (timer)
377 module_put(timer->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return 0;
379}
380
Takashi Iwai53d2f742005-11-17 13:56:05 +0100381unsigned long snd_timer_resolution(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100383 struct snd_timer * timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (timeri == NULL)
386 return 0;
387 if ((timer = timeri->timer) != NULL) {
388 if (timer->hw.c_resolution)
389 return timer->hw.c_resolution(timer);
390 return timer->hw.resolution;
391 }
392 return 0;
393}
394
Takashi Iwai53d2f742005-11-17 13:56:05 +0100395static void snd_timer_notify1(struct snd_timer_instance *ti, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100397 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 unsigned long flags;
399 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100400 struct snd_timer_instance *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct timespec tstamp;
402
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100403 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +0000404 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100405 else
406 getnstimeofday(&tstamp);
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200407 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_START ||
408 event > SNDRV_TIMER_EVENT_PAUSE))
409 return;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200410 if (event == SNDRV_TIMER_EVENT_START ||
411 event == SNDRV_TIMER_EVENT_CONTINUE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 resolution = snd_timer_resolution(ti);
413 if (ti->ccallback)
Jaroslav Kyselab30477d52010-03-03 11:05:55 +0100414 ti->ccallback(ti, event, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (ti->flags & SNDRV_TIMER_IFLG_SLAVE)
416 return;
417 timer = ti->timer;
418 if (timer == NULL)
419 return;
420 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
421 return;
422 spin_lock_irqsave(&timer->lock, flags);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200423 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (ts->ccallback)
425 ts->ccallback(ti, event + 100, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 spin_unlock_irqrestore(&timer->lock, flags);
427}
428
Takashi Iwai53d2f742005-11-17 13:56:05 +0100429static int snd_timer_start1(struct snd_timer *timer, struct snd_timer_instance *timeri,
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200430 unsigned long sticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100432 list_move_tail(&timeri->active_list, &timer->active_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (timer->running) {
434 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
435 goto __start_now;
436 timer->flags |= SNDRV_TIMER_FLG_RESCHED;
437 timeri->flags |= SNDRV_TIMER_IFLG_START;
438 return 1; /* delayed start */
439 } else {
440 timer->sticks = sticks;
441 timer->hw.start(timer);
442 __start_now:
443 timer->running++;
444 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
445 return 0;
446 }
447}
448
Takashi Iwai53d2f742005-11-17 13:56:05 +0100449static int snd_timer_start_slave(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 unsigned long flags;
452
453 spin_lock_irqsave(&slave_active_lock, flags);
Takashi Iwaif784beb2016-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 Iwaib5a663a2016-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 Iwaib5a663a2016-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 Iwaif784beb2016-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 Iwai230323d2016-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 Iwaif784beb2016-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 Iwaif784beb2016-01-30 23:09:08 +0100500 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 spin_unlock_irqrestore(&timer->lock, flags);
Takashi Iwaif784beb2016-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 Iwaic3b16812016-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 Iwaic3b16812016-01-14 17:01:46 +0100516 spin_lock_irqsave(&slave_active_lock, flags);
Takashi Iwaif784beb2016-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 Iwaic3b16812016-01-14 17:01:46 +0100521 timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
522 list_del_init(&timeri->ack_list);
523 list_del_init(&timeri->active_list);
524 spin_unlock_irqrestore(&slave_active_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto __end;
526 }
527 timer = timeri->timer;
528 if (!timer)
529 return -EINVAL;
530 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100531 if (!(timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
532 SNDRV_TIMER_IFLG_START))) {
533 spin_unlock_irqrestore(&timer->lock, flags);
534 return -EBUSY;
535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 list_del_init(&timeri->ack_list);
537 list_del_init(&timeri->active_list);
Takashi Iwai230323d2016-01-21 17:19:31 +0100538 if (timer->card && timer->card->shutdown) {
539 spin_unlock_irqrestore(&timer->lock, flags);
540 return 0;
541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if ((timeri->flags & SNDRV_TIMER_IFLG_RUNNING) &&
543 !(--timer->running)) {
544 timer->hw.stop(timer);
545 if (timer->flags & SNDRV_TIMER_FLG_RESCHED) {
546 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
547 snd_timer_reschedule(timer, 0);
548 if (timer->flags & SNDRV_TIMER_FLG_CHANGE) {
549 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
550 timer->hw.start(timer);
551 }
552 }
553 }
Takashi Iwaic3b16812016-01-14 17:01:46 +0100554 timeri->flags &= ~(SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 spin_unlock_irqrestore(&timer->lock, flags);
556 __end:
557 if (event != SNDRV_TIMER_EVENT_RESOLUTION)
558 snd_timer_notify1(timeri, event);
559 return 0;
560}
561
562/*
563 * stop the timer instance.
564 *
565 * do not call this from the timer callback!
566 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100567int snd_timer_stop(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100569 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unsigned long flags;
571 int err;
572
Takashi Iwaic3b16812016-01-14 17:01:46 +0100573 err = _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (err < 0)
575 return err;
576 timer = timeri->timer;
Takashi Iwai0584ffa2011-08-08 12:24:46 +0200577 if (!timer)
578 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 spin_lock_irqsave(&timer->lock, flags);
580 timeri->cticks = timeri->ticks;
581 timeri->pticks = 0;
582 spin_unlock_irqrestore(&timer->lock, flags);
583 return 0;
584}
585
586/*
587 * start again.. the tick is kept.
588 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100589int snd_timer_continue(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100591 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 int result = -EINVAL;
593 unsigned long flags;
594
595 if (timeri == NULL)
596 return result;
597 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
598 return snd_timer_start_slave(timeri);
599 timer = timeri->timer;
600 if (! timer)
601 return -EINVAL;
Takashi Iwai230323d2016-01-21 17:19:31 +0100602 if (timer->card && timer->card->shutdown)
603 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100605 if (timeri->flags & SNDRV_TIMER_IFLG_RUNNING) {
606 result = -EBUSY;
607 goto unlock;
608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (!timeri->cticks)
610 timeri->cticks = 1;
611 timeri->pticks = 0;
612 result = snd_timer_start1(timer, timeri, timer->sticks);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100613 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 spin_unlock_irqrestore(&timer->lock, flags);
615 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_CONTINUE);
616 return result;
617}
618
619/*
620 * pause.. remember the ticks left
621 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100622int snd_timer_pause(struct snd_timer_instance * timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Takashi Iwaic3b16812016-01-14 17:01:46 +0100624 return _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_PAUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627/*
628 * reschedule the timer
629 *
630 * start pending instances and check the scheduling ticks.
631 * when the scheduling ticks is changed set CHANGE flag to reprogram the timer.
632 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100633static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100635 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 unsigned long ticks = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Johannes Berg9244b2c2006-10-05 16:02:22 +0200638 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (ti->flags & SNDRV_TIMER_IFLG_START) {
640 ti->flags &= ~SNDRV_TIMER_IFLG_START;
641 ti->flags |= SNDRV_TIMER_IFLG_RUNNING;
642 timer->running++;
643 }
644 if (ti->flags & SNDRV_TIMER_IFLG_RUNNING) {
645 if (ticks > ti->cticks)
646 ticks = ti->cticks;
647 }
648 }
649 if (ticks == ~0UL) {
650 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
651 return;
652 }
653 if (ticks > timer->hw.ticks)
654 ticks = timer->hw.ticks;
655 if (ticks_left != ticks)
656 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
657 timer->sticks = ticks;
658}
659
660/*
661 * timer tasklet
662 *
663 */
664static void snd_timer_tasklet(unsigned long arg)
665{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100666 struct snd_timer *timer = (struct snd_timer *) arg;
667 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct list_head *p;
669 unsigned long resolution, ticks;
Takashi Iwai2999ff52006-07-05 17:16:58 +0200670 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Takashi Iwai230323d2016-01-21 17:19:31 +0100672 if (timer->card && timer->card->shutdown)
673 return;
674
Takashi Iwai2999ff52006-07-05 17:16:58 +0200675 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* now process all callbacks */
677 while (!list_empty(&timer->sack_list_head)) {
678 p = timer->sack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100679 ti = list_entry(p, struct snd_timer_instance, ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 /* remove from ack_list and make empty */
682 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 ticks = ti->pticks;
685 ti->pticks = 0;
686 resolution = ti->resolution;
687
688 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
689 spin_unlock(&timer->lock);
690 if (ti->callback)
691 ti->callback(ti, resolution, ticks);
692 spin_lock(&timer->lock);
693 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
694 }
Takashi Iwai2999ff52006-07-05 17:16:58 +0200695 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698/*
699 * timer interrupt
700 *
701 * ticks_left is usually equal to timer->sticks.
702 *
703 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100704void snd_timer_interrupt(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200706 struct snd_timer_instance *ti, *ts, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 unsigned long resolution, ticks;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200708 struct list_head *p, *ack_list_head;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100709 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int use_tasklet = 0;
711
712 if (timer == NULL)
713 return;
714
Takashi Iwai230323d2016-01-21 17:19:31 +0100715 if (timer->card && timer->card->shutdown)
716 return;
717
Takashi Iwaib32425a2005-11-18 18:52:14 +0100718 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /* remember the current resolution */
721 if (timer->hw.c_resolution)
722 resolution = timer->hw.c_resolution(timer);
723 else
724 resolution = timer->hw.resolution;
725
726 /* loop for all active instances
Johannes Berg9244b2c2006-10-05 16:02:22 +0200727 * Here we cannot use list_for_each_entry because the active_list of a
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200728 * processed instance is relinked to done_list_head before the callback
729 * is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200731 list_for_each_entry_safe(ti, tmp, &timer->active_list_head,
732 active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (!(ti->flags & SNDRV_TIMER_IFLG_RUNNING))
734 continue;
735 ti->pticks += ticks_left;
736 ti->resolution = resolution;
737 if (ti->cticks < ticks_left)
738 ti->cticks = 0;
739 else
740 ti->cticks -= ticks_left;
741 if (ti->cticks) /* not expired */
742 continue;
743 if (ti->flags & SNDRV_TIMER_IFLG_AUTO) {
744 ti->cticks = ti->ticks;
745 } else {
746 ti->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
747 if (--timer->running)
Takashi Iwaiee8413b2016-01-13 21:35:06 +0100748 list_del_init(&ti->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200750 if ((timer->hw.flags & SNDRV_TIMER_HW_TASKLET) ||
751 (ti->flags & SNDRV_TIMER_IFLG_FAST))
752 ack_list_head = &timer->ack_list_head;
753 else
754 ack_list_head = &timer->sack_list_head;
755 if (list_empty(&ti->ack_list))
756 list_add_tail(&ti->ack_list, ack_list_head);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200757 list_for_each_entry(ts, &ti->slave_active_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 ts->pticks = ti->pticks;
759 ts->resolution = resolution;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200760 if (list_empty(&ts->ack_list))
761 list_add_tail(&ts->ack_list, ack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 }
764 if (timer->flags & SNDRV_TIMER_FLG_RESCHED)
Clemens Ladischcd93fe42006-07-17 16:53:57 +0200765 snd_timer_reschedule(timer, timer->sticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (timer->running) {
767 if (timer->hw.flags & SNDRV_TIMER_HW_STOP) {
768 timer->hw.stop(timer);
769 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
770 }
771 if (!(timer->hw.flags & SNDRV_TIMER_HW_AUTO) ||
772 (timer->flags & SNDRV_TIMER_FLG_CHANGE)) {
773 /* restart timer */
774 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
775 timer->hw.start(timer);
776 }
777 } else {
778 timer->hw.stop(timer);
779 }
780
781 /* now process all fast callbacks */
782 while (!list_empty(&timer->ack_list_head)) {
783 p = timer->ack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100784 ti = list_entry(p, struct snd_timer_instance, ack_list);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* remove from ack_list and make empty */
787 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 ticks = ti->pticks;
790 ti->pticks = 0;
791
792 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
793 spin_unlock(&timer->lock);
794 if (ti->callback)
795 ti->callback(ti, resolution, ticks);
796 spin_lock(&timer->lock);
797 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
798 }
799
800 /* do we have any slow callbacks? */
801 use_tasklet = !list_empty(&timer->sack_list_head);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100802 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (use_tasklet)
Takashi Iwai1f041282008-12-18 12:17:55 +0100805 tasklet_schedule(&timer->task_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808/*
809
810 */
811
Takashi Iwai53d2f742005-11-17 13:56:05 +0100812int snd_timer_new(struct snd_card *card, char *id, struct snd_timer_id *tid,
813 struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100815 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100817 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 .dev_free = snd_timer_dev_free,
819 .dev_register = snd_timer_dev_register,
Takashi Iwaic4614822006-06-23 14:38:23 +0200820 .dev_disconnect = snd_timer_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 };
822
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200823 if (snd_BUG_ON(!tid))
824 return -EINVAL;
825 if (rtimer)
826 *rtimer = NULL;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200827 timer = kzalloc(sizeof(*timer), GFP_KERNEL);
Takashi Iwaiec0e9932015-03-10 15:42:14 +0100828 if (!timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return -ENOMEM;
830 timer->tmr_class = tid->dev_class;
831 timer->card = card;
832 timer->tmr_device = tid->device;
833 timer->tmr_subdevice = tid->subdevice;
834 if (id)
835 strlcpy(timer->id, id, sizeof(timer->id));
836 INIT_LIST_HEAD(&timer->device_list);
837 INIT_LIST_HEAD(&timer->open_list_head);
838 INIT_LIST_HEAD(&timer->active_list_head);
839 INIT_LIST_HEAD(&timer->ack_list_head);
840 INIT_LIST_HEAD(&timer->sack_list_head);
841 spin_lock_init(&timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200842 tasklet_init(&timer->task_queue, snd_timer_tasklet,
843 (unsigned long)timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (card != NULL) {
Clemens Ladischde242142005-10-12 17:12:31 +0200845 timer->module = card->module;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200846 err = snd_device_new(card, SNDRV_DEV_TIMER, timer, &ops);
847 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 snd_timer_free(timer);
849 return err;
850 }
851 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200852 if (rtimer)
853 *rtimer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 0;
855}
856
Takashi Iwai53d2f742005-11-17 13:56:05 +0100857static int snd_timer_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200859 if (!timer)
860 return 0;
Takashi Iwaic4614822006-06-23 14:38:23 +0200861
862 mutex_lock(&register_mutex);
863 if (! list_empty(&timer->open_list_head)) {
864 struct list_head *p, *n;
865 struct snd_timer_instance *ti;
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100866 pr_warn("ALSA: timer %p is busy?\n", timer);
Takashi Iwaic4614822006-06-23 14:38:23 +0200867 list_for_each_safe(p, n, &timer->open_list_head) {
868 list_del_init(p);
869 ti = list_entry(p, struct snd_timer_instance, open_list);
870 ti->timer = NULL;
871 }
872 }
873 list_del(&timer->device_list);
874 mutex_unlock(&register_mutex);
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (timer->private_free)
877 timer->private_free(timer);
878 kfree(timer);
879 return 0;
880}
881
Takashi Iwai53d2f742005-11-17 13:56:05 +0100882static int snd_timer_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100884 struct snd_timer *timer = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return snd_timer_free(timer);
886}
887
Takashi Iwai53d2f742005-11-17 13:56:05 +0100888static int snd_timer_dev_register(struct snd_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100890 struct snd_timer *timer = dev->device_data;
891 struct snd_timer *timer1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200893 if (snd_BUG_ON(!timer || !timer->hw.start || !timer->hw.stop))
894 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (!(timer->hw.flags & SNDRV_TIMER_HW_SLAVE) &&
896 !timer->hw.resolution && timer->hw.c_resolution == NULL)
897 return -EINVAL;
898
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100899 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200900 list_for_each_entry(timer1, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (timer1->tmr_class > timer->tmr_class)
902 break;
903 if (timer1->tmr_class < timer->tmr_class)
904 continue;
905 if (timer1->card && timer->card) {
906 if (timer1->card->number > timer->card->number)
907 break;
908 if (timer1->card->number < timer->card->number)
909 continue;
910 }
911 if (timer1->tmr_device > timer->tmr_device)
912 break;
913 if (timer1->tmr_device < timer->tmr_device)
914 continue;
915 if (timer1->tmr_subdevice > timer->tmr_subdevice)
916 break;
917 if (timer1->tmr_subdevice < timer->tmr_subdevice)
918 continue;
919 /* conflicts.. */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100920 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return -EBUSY;
922 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200923 list_add_tail(&timer->device_list, &timer1->device_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100924 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return 0;
926}
927
Takashi Iwaic4614822006-06-23 14:38:23 +0200928static int snd_timer_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100930 struct snd_timer *timer = device->device_data;
Takashi Iwai230323d2016-01-21 17:19:31 +0100931 struct snd_timer_instance *ti;
932
Takashi Iwaic4614822006-06-23 14:38:23 +0200933 mutex_lock(&register_mutex);
934 list_del_init(&timer->device_list);
Takashi Iwai230323d2016-01-21 17:19:31 +0100935 /* wake up pending sleepers */
936 list_for_each_entry(ti, &timer->open_list_head, open_list) {
Takashi Iwai40ed9442016-01-21 17:43:08 +0100937 if (ti->disconnect)
938 ti->disconnect(ti);
Takashi Iwai230323d2016-01-21 17:19:31 +0100939 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200940 mutex_unlock(&register_mutex);
941 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Takashi Iwai53d2f742005-11-17 13:56:05 +0100944void snd_timer_notify(struct snd_timer *timer, int event, struct timespec *tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 unsigned long flags;
947 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100948 struct snd_timer_instance *ti, *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Takashi Iwai230323d2016-01-21 17:19:31 +0100950 if (timer->card && timer->card->shutdown)
951 return;
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200952 if (! (timer->hw.flags & SNDRV_TIMER_HW_SLAVE))
953 return;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200954 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_MSTART ||
955 event > SNDRV_TIMER_EVENT_MRESUME))
956 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 spin_lock_irqsave(&timer->lock, flags);
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +0200958 if (event == SNDRV_TIMER_EVENT_MSTART ||
959 event == SNDRV_TIMER_EVENT_MCONTINUE ||
960 event == SNDRV_TIMER_EVENT_MRESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (timer->hw.c_resolution)
962 resolution = timer->hw.c_resolution(timer);
963 else
964 resolution = timer->hw.resolution;
965 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200966 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (ti->ccallback)
968 ti->ccallback(ti, event, tstamp, resolution);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200969 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (ts->ccallback)
971 ts->ccallback(ts, event, tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973 spin_unlock_irqrestore(&timer->lock, flags);
974}
975
976/*
977 * exported functions for global timers
978 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100979int snd_timer_global_new(char *id, int device, struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100981 struct snd_timer_id tid;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
984 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
985 tid.card = -1;
986 tid.device = device;
987 tid.subdevice = 0;
988 return snd_timer_new(NULL, id, &tid, rtimer);
989}
990
Takashi Iwai53d2f742005-11-17 13:56:05 +0100991int snd_timer_global_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 return snd_timer_free(timer);
994}
995
Takashi Iwai53d2f742005-11-17 13:56:05 +0100996int snd_timer_global_register(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100998 struct snd_device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 memset(&dev, 0, sizeof(dev));
1001 dev.device_data = timer;
1002 return snd_timer_dev_register(&dev);
1003}
1004
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001005/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 * System timer
1007 */
1008
1009struct snd_timer_system_private {
1010 struct timer_list tlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 unsigned long last_expires;
1012 unsigned long last_jiffies;
1013 unsigned long correction;
1014};
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016static void snd_timer_s_function(unsigned long data)
1017{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001018 struct snd_timer *timer = (struct snd_timer *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 struct snd_timer_system_private *priv = timer->private_data;
1020 unsigned long jiff = jiffies;
1021 if (time_after(jiff, priv->last_expires))
Clemens Ladisch6ed5eff2006-07-17 16:51:37 +02001022 priv->correction += (long)jiff - (long)priv->last_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 snd_timer_interrupt(timer, (long)jiff - (long)priv->last_jiffies);
1024}
1025
Takashi Iwai53d2f742005-11-17 13:56:05 +01001026static int snd_timer_s_start(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
1028 struct snd_timer_system_private *priv;
1029 unsigned long njiff;
1030
1031 priv = (struct snd_timer_system_private *) timer->private_data;
1032 njiff = (priv->last_jiffies = jiffies);
1033 if (priv->correction > timer->sticks - 1) {
1034 priv->correction -= timer->sticks - 1;
1035 njiff++;
1036 } else {
1037 njiff += timer->sticks - priv->correction;
Clemens Ladisch17f48ec2006-07-17 16:50:56 +02001038 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040 priv->last_expires = priv->tlist.expires = njiff;
1041 add_timer(&priv->tlist);
1042 return 0;
1043}
1044
Takashi Iwai53d2f742005-11-17 13:56:05 +01001045static int snd_timer_s_stop(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 struct snd_timer_system_private *priv;
1048 unsigned long jiff;
1049
1050 priv = (struct snd_timer_system_private *) timer->private_data;
1051 del_timer(&priv->tlist);
1052 jiff = jiffies;
1053 if (time_before(jiff, priv->last_expires))
1054 timer->sticks = priv->last_expires - jiff;
1055 else
1056 timer->sticks = 1;
Clemens Ladischde2696d2006-07-17 16:52:09 +02001057 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return 0;
1059}
1060
Takashi Iwai53d2f742005-11-17 13:56:05 +01001061static struct snd_timer_hardware snd_timer_system =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 .flags = SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET,
1064 .resolution = 1000000000L / HZ,
1065 .ticks = 10000000L,
1066 .start = snd_timer_s_start,
1067 .stop = snd_timer_s_stop
1068};
1069
Takashi Iwai53d2f742005-11-17 13:56:05 +01001070static void snd_timer_free_system(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
1072 kfree(timer->private_data);
1073}
1074
1075static int snd_timer_register_system(void)
1076{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001077 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 struct snd_timer_system_private *priv;
1079 int err;
1080
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001081 err = snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM, &timer);
1082 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return err;
1084 strcpy(timer->name, "system timer");
1085 timer->hw = snd_timer_system;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001086 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (priv == NULL) {
1088 snd_timer_free(timer);
1089 return -ENOMEM;
1090 }
Takashi Iwaif169c102015-01-19 11:26:25 +01001091 setup_timer(&priv->tlist, snd_timer_s_function, (unsigned long) timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 timer->private_data = priv;
1093 timer->private_free = snd_timer_free_system;
1094 return snd_timer_global_register(timer);
1095}
1096
Jie Yangcd6a6502015-05-27 19:45:45 +08001097#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098/*
1099 * Info interface
1100 */
1101
Takashi Iwai53d2f742005-11-17 13:56:05 +01001102static void snd_timer_proc_read(struct snd_info_entry *entry,
1103 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001105 struct snd_timer *timer;
1106 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001108 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001109 list_for_each_entry(timer, &snd_timer_list, device_list) {
Takashi Iwai230323d2016-01-21 17:19:31 +01001110 if (timer->card && timer->card->shutdown)
1111 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 switch (timer->tmr_class) {
1113 case SNDRV_TIMER_CLASS_GLOBAL:
1114 snd_iprintf(buffer, "G%i: ", timer->tmr_device);
1115 break;
1116 case SNDRV_TIMER_CLASS_CARD:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001117 snd_iprintf(buffer, "C%i-%i: ",
1118 timer->card->number, timer->tmr_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 break;
1120 case SNDRV_TIMER_CLASS_PCM:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001121 snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
1122 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 break;
1124 default:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001125 snd_iprintf(buffer, "?%i-%i-%i-%i: ", timer->tmr_class,
1126 timer->card ? timer->card->number : -1,
1127 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 snd_iprintf(buffer, "%s :", timer->name);
1130 if (timer->hw.resolution)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001131 snd_iprintf(buffer, " %lu.%03luus (%lu ticks)",
1132 timer->hw.resolution / 1000,
1133 timer->hw.resolution % 1000,
1134 timer->hw.ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
1136 snd_iprintf(buffer, " SLAVE");
1137 snd_iprintf(buffer, "\n");
Johannes Berg9244b2c2006-10-05 16:02:22 +02001138 list_for_each_entry(ti, &timer->open_list_head, open_list)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001139 snd_iprintf(buffer, " Client %s : %s\n",
1140 ti->owner ? ti->owner : "unknown",
1141 ti->flags & (SNDRV_TIMER_IFLG_START |
1142 SNDRV_TIMER_IFLG_RUNNING)
1143 ? "running" : "stopped");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001145 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Takashi Iwai6581f4e2006-05-17 17:14:51 +02001148static struct snd_info_entry *snd_timer_proc_entry;
Takashi Iwaie28563c2005-12-01 10:42:42 +01001149
1150static void __init snd_timer_proc_init(void)
1151{
1152 struct snd_info_entry *entry;
1153
1154 entry = snd_info_create_module_entry(THIS_MODULE, "timers", NULL);
1155 if (entry != NULL) {
Takashi Iwaie28563c2005-12-01 10:42:42 +01001156 entry->c.text.read = snd_timer_proc_read;
1157 if (snd_info_register(entry) < 0) {
1158 snd_info_free_entry(entry);
1159 entry = NULL;
1160 }
1161 }
1162 snd_timer_proc_entry = entry;
1163}
1164
1165static void __exit snd_timer_proc_done(void)
1166{
Takashi Iwai746d4a02006-06-23 14:37:59 +02001167 snd_info_free_entry(snd_timer_proc_entry);
Takashi Iwaie28563c2005-12-01 10:42:42 +01001168}
Jie Yangcd6a6502015-05-27 19:45:45 +08001169#else /* !CONFIG_SND_PROC_FS */
Takashi Iwaie28563c2005-12-01 10:42:42 +01001170#define snd_timer_proc_init()
1171#define snd_timer_proc_done()
1172#endif
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174/*
1175 * USER SPACE interface
1176 */
1177
Takashi Iwai53d2f742005-11-17 13:56:05 +01001178static void snd_timer_user_interrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 unsigned long resolution,
1180 unsigned long ticks)
1181{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001182 struct snd_timer_user *tu = timeri->callback_data;
1183 struct snd_timer_read *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 int prev;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 spin_lock(&tu->qlock);
1187 if (tu->qused > 0) {
1188 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1189 r = &tu->queue[prev];
1190 if (r->resolution == resolution) {
1191 r->ticks += ticks;
1192 goto __wake;
1193 }
1194 }
1195 if (tu->qused >= tu->queue_size) {
1196 tu->overrun++;
1197 } else {
1198 r = &tu->queue[tu->qtail++];
1199 tu->qtail %= tu->queue_size;
1200 r->resolution = resolution;
1201 r->ticks = ticks;
1202 tu->qused++;
1203 }
1204 __wake:
1205 spin_unlock(&tu->qlock);
1206 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1207 wake_up(&tu->qchange_sleep);
1208}
1209
Takashi Iwai53d2f742005-11-17 13:56:05 +01001210static void snd_timer_user_append_to_tqueue(struct snd_timer_user *tu,
1211 struct snd_timer_tread *tread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 if (tu->qused >= tu->queue_size) {
1214 tu->overrun++;
1215 } else {
1216 memcpy(&tu->tqueue[tu->qtail++], tread, sizeof(*tread));
1217 tu->qtail %= tu->queue_size;
1218 tu->qused++;
1219 }
1220}
1221
Takashi Iwai53d2f742005-11-17 13:56:05 +01001222static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
1223 int event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 struct timespec *tstamp,
1225 unsigned long resolution)
1226{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001227 struct snd_timer_user *tu = timeri->callback_data;
1228 struct snd_timer_tread r1;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001229 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001231 if (event >= SNDRV_TIMER_EVENT_START &&
1232 event <= SNDRV_TIMER_EVENT_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 tu->tstamp = *tstamp;
1234 if ((tu->filter & (1 << event)) == 0 || !tu->tread)
1235 return;
1236 r1.event = event;
1237 r1.tstamp = *tstamp;
1238 r1.val = resolution;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001239 spin_lock_irqsave(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 snd_timer_user_append_to_tqueue(tu, &r1);
Dan Carpenterbfe70782010-04-28 10:29:14 +02001241 spin_unlock_irqrestore(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1243 wake_up(&tu->qchange_sleep);
1244}
1245
Takashi Iwai40ed9442016-01-21 17:43:08 +01001246static void snd_timer_user_disconnect(struct snd_timer_instance *timeri)
1247{
1248 struct snd_timer_user *tu = timeri->callback_data;
1249
1250 tu->disconnected = true;
1251 wake_up(&tu->qchange_sleep);
1252}
1253
Takashi Iwai53d2f742005-11-17 13:56:05 +01001254static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 unsigned long resolution,
1256 unsigned long ticks)
1257{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001258 struct snd_timer_user *tu = timeri->callback_data;
1259 struct snd_timer_tread *r, r1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 struct timespec tstamp;
1261 int prev, append = 0;
1262
Takashi Iwai07799e72005-10-10 11:49:49 +02001263 memset(&tstamp, 0, sizeof(tstamp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 spin_lock(&tu->qlock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001265 if ((tu->filter & ((1 << SNDRV_TIMER_EVENT_RESOLUTION) |
1266 (1 << SNDRV_TIMER_EVENT_TICK))) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 spin_unlock(&tu->qlock);
1268 return;
1269 }
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001270 if (tu->last_resolution != resolution || ticks > 0) {
1271 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +00001272 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001273 else
1274 getnstimeofday(&tstamp);
1275 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001276 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
1277 tu->last_resolution != resolution) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
1279 r1.tstamp = tstamp;
1280 r1.val = resolution;
1281 snd_timer_user_append_to_tqueue(tu, &r1);
1282 tu->last_resolution = resolution;
1283 append++;
1284 }
1285 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_TICK)) == 0)
1286 goto __wake;
1287 if (ticks == 0)
1288 goto __wake;
1289 if (tu->qused > 0) {
1290 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1291 r = &tu->tqueue[prev];
1292 if (r->event == SNDRV_TIMER_EVENT_TICK) {
1293 r->tstamp = tstamp;
1294 r->val += ticks;
1295 append++;
1296 goto __wake;
1297 }
1298 }
1299 r1.event = SNDRV_TIMER_EVENT_TICK;
1300 r1.tstamp = tstamp;
1301 r1.val = ticks;
1302 snd_timer_user_append_to_tqueue(tu, &r1);
1303 append++;
1304 __wake:
1305 spin_unlock(&tu->qlock);
1306 if (append == 0)
1307 return;
1308 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1309 wake_up(&tu->qchange_sleep);
1310}
1311
1312static int snd_timer_user_open(struct inode *inode, struct file *file)
1313{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001314 struct snd_timer_user *tu;
Takashi Iwai02f48652010-04-13 11:49:04 +02001315 int err;
1316
1317 err = nonseekable_open(inode, file);
1318 if (err < 0)
1319 return err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001320
Takashi Iwaica2c0962005-09-09 14:20:23 +02001321 tu = kzalloc(sizeof(*tu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (tu == NULL)
1323 return -ENOMEM;
1324 spin_lock_init(&tu->qlock);
1325 init_waitqueue_head(&tu->qchange_sleep);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001326 mutex_init(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 tu->ticks = 1;
1328 tu->queue_size = 128;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001329 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001330 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (tu->queue == NULL) {
1332 kfree(tu);
1333 return -ENOMEM;
1334 }
1335 file->private_data = tu;
1336 return 0;
1337}
1338
1339static int snd_timer_user_release(struct inode *inode, struct file *file)
1340{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001341 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 if (file->private_data) {
1344 tu = file->private_data;
1345 file->private_data = NULL;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001346 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (tu->timeri)
1348 snd_timer_close(tu->timeri);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001349 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 kfree(tu->queue);
1351 kfree(tu->tqueue);
1352 kfree(tu);
1353 }
1354 return 0;
1355}
1356
Takashi Iwai53d2f742005-11-17 13:56:05 +01001357static void snd_timer_user_zero_id(struct snd_timer_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 id->dev_class = SNDRV_TIMER_CLASS_NONE;
1360 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1361 id->card = -1;
1362 id->device = -1;
1363 id->subdevice = -1;
1364}
1365
Takashi Iwai53d2f742005-11-17 13:56:05 +01001366static void snd_timer_user_copy_id(struct snd_timer_id *id, struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
1368 id->dev_class = timer->tmr_class;
1369 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1370 id->card = timer->card ? timer->card->number : -1;
1371 id->device = timer->tmr_device;
1372 id->subdevice = timer->tmr_subdevice;
1373}
1374
Takashi Iwai53d2f742005-11-17 13:56:05 +01001375static int snd_timer_user_next_device(struct snd_timer_id __user *_tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001377 struct snd_timer_id id;
1378 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 struct list_head *p;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 if (copy_from_user(&id, _tid, sizeof(id)))
1382 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001383 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (id.dev_class < 0) { /* first item */
1385 if (list_empty(&snd_timer_list))
1386 snd_timer_user_zero_id(&id);
1387 else {
Clemens Ladisch9dfba382005-10-12 17:14:55 +02001388 timer = list_entry(snd_timer_list.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001389 struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 snd_timer_user_copy_id(&id, timer);
1391 }
1392 } else {
1393 switch (id.dev_class) {
1394 case SNDRV_TIMER_CLASS_GLOBAL:
1395 id.device = id.device < 0 ? 0 : id.device + 1;
1396 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001397 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (timer->tmr_class > SNDRV_TIMER_CLASS_GLOBAL) {
1399 snd_timer_user_copy_id(&id, timer);
1400 break;
1401 }
1402 if (timer->tmr_device >= id.device) {
1403 snd_timer_user_copy_id(&id, timer);
1404 break;
1405 }
1406 }
1407 if (p == &snd_timer_list)
1408 snd_timer_user_zero_id(&id);
1409 break;
1410 case SNDRV_TIMER_CLASS_CARD:
1411 case SNDRV_TIMER_CLASS_PCM:
1412 if (id.card < 0) {
1413 id.card = 0;
1414 } else {
1415 if (id.card < 0) {
1416 id.card = 0;
1417 } else {
1418 if (id.device < 0) {
1419 id.device = 0;
1420 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001421 if (id.subdevice < 0) {
1422 id.subdevice = 0;
1423 } else {
1424 id.subdevice++;
1425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427 }
1428 }
1429 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001430 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (timer->tmr_class > id.dev_class) {
1432 snd_timer_user_copy_id(&id, timer);
1433 break;
1434 }
1435 if (timer->tmr_class < id.dev_class)
1436 continue;
1437 if (timer->card->number > id.card) {
1438 snd_timer_user_copy_id(&id, timer);
1439 break;
1440 }
1441 if (timer->card->number < id.card)
1442 continue;
1443 if (timer->tmr_device > id.device) {
1444 snd_timer_user_copy_id(&id, timer);
1445 break;
1446 }
1447 if (timer->tmr_device < id.device)
1448 continue;
1449 if (timer->tmr_subdevice > id.subdevice) {
1450 snd_timer_user_copy_id(&id, timer);
1451 break;
1452 }
1453 if (timer->tmr_subdevice < id.subdevice)
1454 continue;
1455 snd_timer_user_copy_id(&id, timer);
1456 break;
1457 }
1458 if (p == &snd_timer_list)
1459 snd_timer_user_zero_id(&id);
1460 break;
1461 default:
1462 snd_timer_user_zero_id(&id);
1463 }
1464 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001465 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (copy_to_user(_tid, &id, sizeof(*_tid)))
1467 return -EFAULT;
1468 return 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001469}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001471static int snd_timer_user_ginfo(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001472 struct snd_timer_ginfo __user *_ginfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001474 struct snd_timer_ginfo *ginfo;
1475 struct snd_timer_id tid;
1476 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 struct list_head *p;
1478 int err = 0;
1479
Li Zefanef44a1e2009-04-10 09:43:08 +08001480 ginfo = memdup_user(_ginfo, sizeof(*ginfo));
1481 if (IS_ERR(ginfo))
1482 return PTR_ERR(ginfo);
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 tid = ginfo->tid;
1485 memset(ginfo, 0, sizeof(*ginfo));
1486 ginfo->tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001487 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 t = snd_timer_find(&tid);
1489 if (t != NULL) {
1490 ginfo->card = t->card ? t->card->number : -1;
1491 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1492 ginfo->flags |= SNDRV_TIMER_FLG_SLAVE;
1493 strlcpy(ginfo->id, t->id, sizeof(ginfo->id));
1494 strlcpy(ginfo->name, t->name, sizeof(ginfo->name));
1495 ginfo->resolution = t->hw.resolution;
1496 if (t->hw.resolution_min > 0) {
1497 ginfo->resolution_min = t->hw.resolution_min;
1498 ginfo->resolution_max = t->hw.resolution_max;
1499 }
1500 list_for_each(p, &t->open_list_head) {
1501 ginfo->clients++;
1502 }
1503 } else {
1504 err = -ENODEV;
1505 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001506 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (err >= 0 && copy_to_user(_ginfo, ginfo, sizeof(*ginfo)))
1508 err = -EFAULT;
1509 kfree(ginfo);
1510 return err;
1511}
1512
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001513static int snd_timer_user_gparams(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001514 struct snd_timer_gparams __user *_gparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001516 struct snd_timer_gparams gparams;
1517 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 int err;
1519
1520 if (copy_from_user(&gparams, _gparams, sizeof(gparams)))
1521 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001522 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 t = snd_timer_find(&gparams.tid);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001524 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 err = -ENODEV;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001526 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001528 if (!list_empty(&t->open_list_head)) {
1529 err = -EBUSY;
1530 goto _error;
1531 }
1532 if (!t->hw.set_period) {
1533 err = -ENOSYS;
1534 goto _error;
1535 }
1536 err = t->hw.set_period(t, gparams.period_num, gparams.period_den);
1537_error:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001538 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return err;
1540}
1541
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001542static int snd_timer_user_gstatus(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001543 struct snd_timer_gstatus __user *_gstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001545 struct snd_timer_gstatus gstatus;
1546 struct snd_timer_id tid;
1547 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 int err = 0;
1549
1550 if (copy_from_user(&gstatus, _gstatus, sizeof(gstatus)))
1551 return -EFAULT;
1552 tid = gstatus.tid;
1553 memset(&gstatus, 0, sizeof(gstatus));
1554 gstatus.tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001555 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 t = snd_timer_find(&tid);
1557 if (t != NULL) {
1558 if (t->hw.c_resolution)
1559 gstatus.resolution = t->hw.c_resolution(t);
1560 else
1561 gstatus.resolution = t->hw.resolution;
1562 if (t->hw.precise_resolution) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001563 t->hw.precise_resolution(t, &gstatus.resolution_num,
1564 &gstatus.resolution_den);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 } else {
1566 gstatus.resolution_num = gstatus.resolution;
1567 gstatus.resolution_den = 1000000000uL;
1568 }
1569 } else {
1570 err = -ENODEV;
1571 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001572 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (err >= 0 && copy_to_user(_gstatus, &gstatus, sizeof(gstatus)))
1574 err = -EFAULT;
1575 return err;
1576}
1577
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001578static int snd_timer_user_tselect(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001579 struct snd_timer_select __user *_tselect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001581 struct snd_timer_user *tu;
1582 struct snd_timer_select tselect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 char str[32];
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001584 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 tu = file->private_data;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001587 if (tu->timeri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 snd_timer_close(tu->timeri);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001589 tu->timeri = NULL;
1590 }
1591 if (copy_from_user(&tselect, _tselect, sizeof(tselect))) {
1592 err = -EFAULT;
1593 goto __err;
1594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 sprintf(str, "application %i", current->pid);
1596 if (tselect.id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
1597 tselect.id.dev_sclass = SNDRV_TIMER_SCLASS_APPLICATION;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001598 err = snd_timer_open(&tu->timeri, str, &tselect.id, current->pid);
1599 if (err < 0)
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001600 goto __err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Jesper Juhl4d572772005-05-30 17:30:32 +02001602 kfree(tu->queue);
1603 tu->queue = NULL;
1604 kfree(tu->tqueue);
1605 tu->tqueue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001607 tu->tqueue = kmalloc(tu->queue_size * sizeof(struct snd_timer_tread),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001608 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001609 if (tu->tqueue == NULL)
1610 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001612 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001613 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001614 if (tu->queue == NULL)
1615 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001617
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001618 if (err < 0) {
1619 snd_timer_close(tu->timeri);
1620 tu->timeri = NULL;
1621 } else {
1622 tu->timeri->flags |= SNDRV_TIMER_IFLG_FAST;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001623 tu->timeri->callback = tu->tread
1624 ? snd_timer_user_tinterrupt : snd_timer_user_interrupt;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001625 tu->timeri->ccallback = snd_timer_user_ccallback;
1626 tu->timeri->callback_data = (void *)tu;
Takashi Iwai40ed9442016-01-21 17:43:08 +01001627 tu->timeri->disconnect = snd_timer_user_disconnect;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001628 }
1629
1630 __err:
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001631 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001634static int snd_timer_user_info(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001635 struct snd_timer_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001637 struct snd_timer_user *tu;
1638 struct snd_timer_info *info;
1639 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 int err = 0;
1641
1642 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001643 if (!tu->timeri)
1644 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001646 if (!t)
1647 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Takashi Iwaica2c0962005-09-09 14:20:23 +02001649 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (! info)
1651 return -ENOMEM;
1652 info->card = t->card ? t->card->number : -1;
1653 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1654 info->flags |= SNDRV_TIMER_FLG_SLAVE;
1655 strlcpy(info->id, t->id, sizeof(info->id));
1656 strlcpy(info->name, t->name, sizeof(info->name));
1657 info->resolution = t->hw.resolution;
1658 if (copy_to_user(_info, info, sizeof(*_info)))
1659 err = -EFAULT;
1660 kfree(info);
1661 return err;
1662}
1663
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001664static int snd_timer_user_params(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001665 struct snd_timer_params __user *_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001667 struct snd_timer_user *tu;
1668 struct snd_timer_params params;
1669 struct snd_timer *t;
1670 struct snd_timer_read *tr;
1671 struct snd_timer_tread *ttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 int err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001675 if (!tu->timeri)
1676 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001678 if (!t)
1679 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if (copy_from_user(&params, _params, sizeof(params)))
1681 return -EFAULT;
1682 if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE) && params.ticks < 1) {
1683 err = -EINVAL;
1684 goto _end;
1685 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001686 if (params.queue_size > 0 &&
1687 (params.queue_size < 32 || params.queue_size > 1024)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 err = -EINVAL;
1689 goto _end;
1690 }
1691 if (params.filter & ~((1<<SNDRV_TIMER_EVENT_RESOLUTION)|
1692 (1<<SNDRV_TIMER_EVENT_TICK)|
1693 (1<<SNDRV_TIMER_EVENT_START)|
1694 (1<<SNDRV_TIMER_EVENT_STOP)|
1695 (1<<SNDRV_TIMER_EVENT_CONTINUE)|
1696 (1<<SNDRV_TIMER_EVENT_PAUSE)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001697 (1<<SNDRV_TIMER_EVENT_SUSPEND)|
1698 (1<<SNDRV_TIMER_EVENT_RESUME)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 (1<<SNDRV_TIMER_EVENT_MSTART)|
1700 (1<<SNDRV_TIMER_EVENT_MSTOP)|
1701 (1<<SNDRV_TIMER_EVENT_MCONTINUE)|
Jaroslav Kysela65d11d92005-08-16 13:05:43 +02001702 (1<<SNDRV_TIMER_EVENT_MPAUSE)|
1703 (1<<SNDRV_TIMER_EVENT_MSUSPEND)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001704 (1<<SNDRV_TIMER_EVENT_MRESUME))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 err = -EINVAL;
1706 goto _end;
1707 }
1708 snd_timer_stop(tu->timeri);
1709 spin_lock_irq(&t->lock);
1710 tu->timeri->flags &= ~(SNDRV_TIMER_IFLG_AUTO|
1711 SNDRV_TIMER_IFLG_EXCLUSIVE|
1712 SNDRV_TIMER_IFLG_EARLY_EVENT);
1713 if (params.flags & SNDRV_TIMER_PSFLG_AUTO)
1714 tu->timeri->flags |= SNDRV_TIMER_IFLG_AUTO;
1715 if (params.flags & SNDRV_TIMER_PSFLG_EXCLUSIVE)
1716 tu->timeri->flags |= SNDRV_TIMER_IFLG_EXCLUSIVE;
1717 if (params.flags & SNDRV_TIMER_PSFLG_EARLY_EVENT)
1718 tu->timeri->flags |= SNDRV_TIMER_IFLG_EARLY_EVENT;
1719 spin_unlock_irq(&t->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001720 if (params.queue_size > 0 &&
1721 (unsigned int)tu->queue_size != params.queue_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (tu->tread) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001723 ttr = kmalloc(params.queue_size * sizeof(*ttr),
1724 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (ttr) {
1726 kfree(tu->tqueue);
1727 tu->queue_size = params.queue_size;
1728 tu->tqueue = ttr;
1729 }
1730 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001731 tr = kmalloc(params.queue_size * sizeof(*tr),
1732 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (tr) {
1734 kfree(tu->queue);
1735 tu->queue_size = params.queue_size;
1736 tu->queue = tr;
1737 }
1738 }
1739 }
1740 tu->qhead = tu->qtail = tu->qused = 0;
1741 if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) {
1742 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001743 struct snd_timer_tread tread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 tread.event = SNDRV_TIMER_EVENT_EARLY;
1745 tread.tstamp.tv_sec = 0;
1746 tread.tstamp.tv_nsec = 0;
1747 tread.val = 0;
1748 snd_timer_user_append_to_tqueue(tu, &tread);
1749 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001750 struct snd_timer_read *r = &tu->queue[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 r->resolution = 0;
1752 r->ticks = 0;
1753 tu->qused++;
1754 tu->qtail++;
1755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757 tu->filter = params.filter;
1758 tu->ticks = params.ticks;
1759 err = 0;
1760 _end:
1761 if (copy_to_user(_params, &params, sizeof(params)))
1762 return -EFAULT;
1763 return err;
1764}
1765
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001766static int snd_timer_user_status(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001767 struct snd_timer_status __user *_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001769 struct snd_timer_user *tu;
1770 struct snd_timer_status status;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001773 if (!tu->timeri)
1774 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 memset(&status, 0, sizeof(status));
1776 status.tstamp = tu->tstamp;
1777 status.resolution = snd_timer_resolution(tu->timeri);
1778 status.lost = tu->timeri->lost;
1779 status.overrun = tu->overrun;
1780 spin_lock_irq(&tu->qlock);
1781 status.queue = tu->qused;
1782 spin_unlock_irq(&tu->qlock);
1783 if (copy_to_user(_status, &status, sizeof(status)))
1784 return -EFAULT;
1785 return 0;
1786}
1787
1788static int snd_timer_user_start(struct file *file)
1789{
1790 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001791 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001794 if (!tu->timeri)
1795 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 snd_timer_stop(tu->timeri);
1797 tu->timeri->lost = 0;
1798 tu->last_resolution = 0;
1799 return (err = snd_timer_start(tu->timeri, tu->ticks)) < 0 ? err : 0;
1800}
1801
1802static int snd_timer_user_stop(struct file *file)
1803{
1804 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001805 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001808 if (!tu->timeri)
1809 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return (err = snd_timer_stop(tu->timeri)) < 0 ? err : 0;
1811}
1812
1813static int snd_timer_user_continue(struct file *file)
1814{
1815 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001816 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001819 if (!tu->timeri)
1820 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 tu->timeri->lost = 0;
1822 return (err = snd_timer_continue(tu->timeri)) < 0 ? err : 0;
1823}
1824
Takashi Iwai15790a62005-05-15 15:04:14 +02001825static int snd_timer_user_pause(struct file *file)
1826{
1827 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001828 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001829
Takashi Iwai15790a62005-05-15 15:04:14 +02001830 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001831 if (!tu->timeri)
1832 return -EBADFD;
Jaroslav Kyselad138b442005-05-16 13:51:39 +02001833 return (err = snd_timer_pause(tu->timeri)) < 0 ? err : 0;
Takashi Iwai15790a62005-05-15 15:04:14 +02001834}
1835
Takashi Iwai8c50b372005-05-15 15:43:54 +02001836enum {
1837 SNDRV_TIMER_IOCTL_START_OLD = _IO('T', 0x20),
1838 SNDRV_TIMER_IOCTL_STOP_OLD = _IO('T', 0x21),
1839 SNDRV_TIMER_IOCTL_CONTINUE_OLD = _IO('T', 0x22),
1840 SNDRV_TIMER_IOCTL_PAUSE_OLD = _IO('T', 0x23),
1841};
1842
Takashi Iwaiaf368022016-01-13 17:48:01 +01001843static long __snd_timer_user_ioctl(struct file *file, unsigned int cmd,
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001844 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001846 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 void __user *argp = (void __user *)arg;
1848 int __user *p = argp;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 tu = file->private_data;
1851 switch (cmd) {
1852 case SNDRV_TIMER_IOCTL_PVERSION:
1853 return put_user(SNDRV_TIMER_VERSION, p) ? -EFAULT : 0;
1854 case SNDRV_TIMER_IOCTL_NEXT_DEVICE:
1855 return snd_timer_user_next_device(argp);
1856 case SNDRV_TIMER_IOCTL_TREAD:
1857 {
1858 int xarg;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001859
Takashi Iwaiaf368022016-01-13 17:48:01 +01001860 if (tu->timeri) /* too late */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return -EBUSY;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001862 if (get_user(xarg, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 return -EFAULT;
1864 tu->tread = xarg ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 return 0;
1866 }
1867 case SNDRV_TIMER_IOCTL_GINFO:
1868 return snd_timer_user_ginfo(file, argp);
1869 case SNDRV_TIMER_IOCTL_GPARAMS:
1870 return snd_timer_user_gparams(file, argp);
1871 case SNDRV_TIMER_IOCTL_GSTATUS:
1872 return snd_timer_user_gstatus(file, argp);
1873 case SNDRV_TIMER_IOCTL_SELECT:
1874 return snd_timer_user_tselect(file, argp);
1875 case SNDRV_TIMER_IOCTL_INFO:
1876 return snd_timer_user_info(file, argp);
1877 case SNDRV_TIMER_IOCTL_PARAMS:
1878 return snd_timer_user_params(file, argp);
1879 case SNDRV_TIMER_IOCTL_STATUS:
1880 return snd_timer_user_status(file, argp);
1881 case SNDRV_TIMER_IOCTL_START:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001882 case SNDRV_TIMER_IOCTL_START_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return snd_timer_user_start(file);
1884 case SNDRV_TIMER_IOCTL_STOP:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001885 case SNDRV_TIMER_IOCTL_STOP_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return snd_timer_user_stop(file);
1887 case SNDRV_TIMER_IOCTL_CONTINUE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001888 case SNDRV_TIMER_IOCTL_CONTINUE_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return snd_timer_user_continue(file);
Takashi Iwai15790a62005-05-15 15:04:14 +02001890 case SNDRV_TIMER_IOCTL_PAUSE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001891 case SNDRV_TIMER_IOCTL_PAUSE_OLD:
Takashi Iwai15790a62005-05-15 15:04:14 +02001892 return snd_timer_user_pause(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 }
1894 return -ENOTTY;
1895}
1896
Takashi Iwaiaf368022016-01-13 17:48:01 +01001897static long snd_timer_user_ioctl(struct file *file, unsigned int cmd,
1898 unsigned long arg)
1899{
1900 struct snd_timer_user *tu = file->private_data;
1901 long ret;
1902
1903 mutex_lock(&tu->ioctl_lock);
1904 ret = __snd_timer_user_ioctl(file, cmd, arg);
1905 mutex_unlock(&tu->ioctl_lock);
1906 return ret;
1907}
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909static int snd_timer_user_fasync(int fd, struct file * file, int on)
1910{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001911 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 tu = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001914 return fasync_helper(fd, file, on, &tu->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001917static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
1918 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001920 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 long result = 0, unit;
1922 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 tu = file->private_data;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001925 unit = tu->tread ? sizeof(struct snd_timer_tread) : sizeof(struct snd_timer_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 spin_lock_irq(&tu->qlock);
1927 while ((long)count - result >= unit) {
1928 while (!tu->qused) {
1929 wait_queue_t wait;
1930
1931 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1932 err = -EAGAIN;
1933 break;
1934 }
1935
1936 set_current_state(TASK_INTERRUPTIBLE);
1937 init_waitqueue_entry(&wait, current);
1938 add_wait_queue(&tu->qchange_sleep, &wait);
1939
1940 spin_unlock_irq(&tu->qlock);
1941 schedule();
1942 spin_lock_irq(&tu->qlock);
1943
1944 remove_wait_queue(&tu->qchange_sleep, &wait);
1945
Takashi Iwai230323d2016-01-21 17:19:31 +01001946 if (tu->disconnected) {
1947 err = -ENODEV;
1948 break;
1949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (signal_pending(current)) {
1951 err = -ERESTARTSYS;
1952 break;
1953 }
1954 }
1955
1956 spin_unlock_irq(&tu->qlock);
1957 if (err < 0)
1958 goto _error;
1959
1960 if (tu->tread) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001961 if (copy_to_user(buffer, &tu->tqueue[tu->qhead++],
Takashi Iwai53d2f742005-11-17 13:56:05 +01001962 sizeof(struct snd_timer_tread))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 err = -EFAULT;
1964 goto _error;
1965 }
1966 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001967 if (copy_to_user(buffer, &tu->queue[tu->qhead++],
Takashi Iwai53d2f742005-11-17 13:56:05 +01001968 sizeof(struct snd_timer_read))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 err = -EFAULT;
1970 goto _error;
1971 }
1972 }
1973
1974 tu->qhead %= tu->queue_size;
1975
1976 result += unit;
1977 buffer += unit;
1978
1979 spin_lock_irq(&tu->qlock);
1980 tu->qused--;
1981 }
1982 spin_unlock_irq(&tu->qlock);
1983 _error:
1984 return result > 0 ? result : err;
1985}
1986
1987static unsigned int snd_timer_user_poll(struct file *file, poll_table * wait)
1988{
1989 unsigned int mask;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001990 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 tu = file->private_data;
1993
1994 poll_wait(file, &tu->qchange_sleep, wait);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 mask = 0;
1997 if (tu->qused)
1998 mask |= POLLIN | POLLRDNORM;
Takashi Iwai230323d2016-01-21 17:19:31 +01001999 if (tu->disconnected)
2000 mask |= POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 return mask;
2003}
2004
2005#ifdef CONFIG_COMPAT
2006#include "timer_compat.c"
2007#else
2008#define snd_timer_user_ioctl_compat NULL
2009#endif
2010
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08002011static const struct file_operations snd_timer_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012{
2013 .owner = THIS_MODULE,
2014 .read = snd_timer_user_read,
2015 .open = snd_timer_user_open,
2016 .release = snd_timer_user_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02002017 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 .poll = snd_timer_user_poll,
2019 .unlocked_ioctl = snd_timer_user_ioctl,
2020 .compat_ioctl = snd_timer_user_ioctl_compat,
2021 .fasync = snd_timer_user_fasync,
2022};
2023
Takashi Iwai7c358602015-01-29 18:09:05 +01002024/* unregister the system timer */
2025static void snd_timer_free_all(void)
2026{
2027 struct snd_timer *timer, *n;
2028
2029 list_for_each_entry_safe(timer, n, &snd_timer_list, device_list)
2030 snd_timer_free(timer);
2031}
2032
Takashi Iwai89da0612015-01-29 18:12:26 +01002033static struct device timer_dev;
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035/*
2036 * ENTRY functions
2037 */
2038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039static int __init alsa_timer_init(void)
2040{
2041 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Takashi Iwai89da0612015-01-29 18:12:26 +01002043 snd_device_initialize(&timer_dev, NULL);
2044 dev_set_name(&timer_dev, "timer");
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046#ifdef SNDRV_OSS_INFO_DEV_TIMERS
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002047 snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1,
2048 "system timer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049#endif
Takashi Iwaie28563c2005-12-01 10:42:42 +01002050
Takashi Iwai7c358602015-01-29 18:09:05 +01002051 err = snd_timer_register_system();
2052 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002053 pr_err("ALSA: unable to register system timer (%i)\n", err);
Takashi Iwai89da0612015-01-29 18:12:26 +01002054 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002055 return err;
2056 }
2057
Takashi Iwai40a4b262015-01-30 08:34:58 +01002058 err = snd_register_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0,
2059 &snd_timer_f_ops, NULL, &timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002060 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002061 pr_err("ALSA: unable to register timer device (%i)\n", err);
Takashi Iwai7c358602015-01-29 18:09:05 +01002062 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002063 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002064 return err;
2065 }
2066
Takashi Iwaie28563c2005-12-01 10:42:42 +01002067 snd_timer_proc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return 0;
2069}
2070
2071static void __exit alsa_timer_exit(void)
2072{
Takashi Iwai40a4b262015-01-30 08:34:58 +01002073 snd_unregister_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002074 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002075 put_device(&timer_dev);
Takashi Iwaie28563c2005-12-01 10:42:42 +01002076 snd_timer_proc_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077#ifdef SNDRV_OSS_INFO_DEV_TIMERS
2078 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1);
2079#endif
2080}
2081
2082module_init(alsa_timer_init)
2083module_exit(alsa_timer_exit)
2084
2085EXPORT_SYMBOL(snd_timer_open);
2086EXPORT_SYMBOL(snd_timer_close);
2087EXPORT_SYMBOL(snd_timer_resolution);
2088EXPORT_SYMBOL(snd_timer_start);
2089EXPORT_SYMBOL(snd_timer_stop);
2090EXPORT_SYMBOL(snd_timer_continue);
2091EXPORT_SYMBOL(snd_timer_pause);
2092EXPORT_SYMBOL(snd_timer_new);
2093EXPORT_SYMBOL(snd_timer_notify);
2094EXPORT_SYMBOL(snd_timer_global_new);
2095EXPORT_SYMBOL(snd_timer_global_free);
2096EXPORT_SYMBOL(snd_timer_global_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097EXPORT_SYMBOL(snd_timer_interrupt);