blob: dca817fc78941b5f9109e8117b3fc5adb621562e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Timers abstract layer
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
23#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
25#include <linux/time.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010026#include <linux/mutex.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050027#include <linux/device.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040028#include <linux/module.h>
Paulo Marques543537b2005-06-23 00:09:02 -070029#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <sound/core.h>
31#include <sound/timer.h>
32#include <sound/control.h>
33#include <sound/info.h>
34#include <sound/minors.h>
35#include <sound/initval.h>
36#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010038#if IS_ENABLED(CONFIG_SND_HRTIMER)
Clemens Ladisch109fef92010-11-18 09:53:54 +010039#define DEFAULT_TIMER_LIMIT 4
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010040#elif IS_ENABLED(CONFIG_SND_RTCTIMER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define DEFAULT_TIMER_LIMIT 2
42#else
43#define DEFAULT_TIMER_LIMIT 1
44#endif
45
46static int timer_limit = DEFAULT_TIMER_LIMIT;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010047static int timer_tstamp_monotonic = 1;
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020048MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_DESCRIPTION("ALSA timer interface");
50MODULE_LICENSE("GPL");
51module_param(timer_limit, int, 0444);
52MODULE_PARM_DESC(timer_limit, "Maximum global timers in system.");
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010053module_param(timer_tstamp_monotonic, int, 0444);
54MODULE_PARM_DESC(timer_tstamp_monotonic, "Use posix monotonic clock source for timestamps (default).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Kay Sievers03cfe6f2010-11-23 17:43:19 +010056MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR, SNDRV_MINOR_TIMER);
57MODULE_ALIAS("devname:snd/timer");
58
Takashi Iwai53d2f742005-11-17 13:56:05 +010059struct snd_timer_user {
60 struct snd_timer_instance *timeri;
Clemens Ladisch6b172a82005-10-12 17:20:21 +020061 int tread; /* enhanced read with timestamps and events */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 unsigned long ticks;
63 unsigned long overrun;
64 int qhead;
65 int qtail;
66 int qused;
67 int queue_size;
Takashi Iwai230323d2016-01-21 17:19:31 +010068 bool disconnected;
Takashi Iwai53d2f742005-11-17 13:56:05 +010069 struct snd_timer_read *queue;
70 struct snd_timer_tread *tqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 spinlock_t qlock;
72 unsigned long last_resolution;
73 unsigned int filter;
74 struct timespec tstamp; /* trigger tstamp */
75 wait_queue_head_t qchange_sleep;
76 struct fasync_struct *fasync;
Takashi Iwaiaf368022016-01-13 17:48:01 +010077 struct mutex ioctl_lock;
Takashi Iwai53d2f742005-11-17 13:56:05 +010078};
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* list of timers */
81static LIST_HEAD(snd_timer_list);
82
83/* list of slave instances */
84static LIST_HEAD(snd_timer_slave_list);
85
86/* lock for slave active lists */
87static DEFINE_SPINLOCK(slave_active_lock);
88
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010089static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Takashi Iwai53d2f742005-11-17 13:56:05 +010091static int snd_timer_free(struct snd_timer *timer);
92static int snd_timer_dev_free(struct snd_device *device);
93static int snd_timer_dev_register(struct snd_device *device);
Takashi Iwaic4614822006-06-23 14:38:23 +020094static int snd_timer_dev_disconnect(struct snd_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Takashi Iwai53d2f742005-11-17 13:56:05 +010096static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
99 * create a timer instance with the given owner string.
100 * when timer is not NULL, increments the module counter
101 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100102static struct snd_timer_instance *snd_timer_instance_new(char *owner,
103 struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100105 struct snd_timer_instance *timeri;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200106 timeri = kzalloc(sizeof(*timeri), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (timeri == NULL)
108 return NULL;
Paulo Marques543537b2005-06-23 00:09:02 -0700109 timeri->owner = kstrdup(owner, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (! timeri->owner) {
111 kfree(timeri);
112 return NULL;
113 }
114 INIT_LIST_HEAD(&timeri->open_list);
115 INIT_LIST_HEAD(&timeri->active_list);
116 INIT_LIST_HEAD(&timeri->ack_list);
117 INIT_LIST_HEAD(&timeri->slave_list_head);
118 INIT_LIST_HEAD(&timeri->slave_active_head);
119
120 timeri->timer = timer;
Clemens Ladischde242142005-10-12 17:12:31 +0200121 if (timer && !try_module_get(timer->module)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 kfree(timeri->owner);
123 kfree(timeri);
124 return NULL;
125 }
126
127 return timeri;
128}
129
130/*
131 * find a timer instance from the given timer id
132 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100133static struct snd_timer *snd_timer_find(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100135 struct snd_timer *timer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Johannes Berg9244b2c2006-10-05 16:02:22 +0200137 list_for_each_entry(timer, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (timer->tmr_class != tid->dev_class)
139 continue;
140 if ((timer->tmr_class == SNDRV_TIMER_CLASS_CARD ||
141 timer->tmr_class == SNDRV_TIMER_CLASS_PCM) &&
142 (timer->card == NULL ||
143 timer->card->number != tid->card))
144 continue;
145 if (timer->tmr_device != tid->device)
146 continue;
147 if (timer->tmr_subdevice != tid->subdevice)
148 continue;
149 return timer;
150 }
151 return NULL;
152}
153
Johannes Bergee2da992008-07-09 10:28:41 +0200154#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Takashi Iwai53d2f742005-11-17 13:56:05 +0100156static void snd_timer_request(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 switch (tid->dev_class) {
159 case SNDRV_TIMER_CLASS_GLOBAL:
160 if (tid->device < timer_limit)
161 request_module("snd-timer-%i", tid->device);
162 break;
163 case SNDRV_TIMER_CLASS_CARD:
164 case SNDRV_TIMER_CLASS_PCM:
165 if (tid->card < snd_ecards_limit)
166 request_module("snd-card-%i", tid->card);
167 break;
168 default:
169 break;
170 }
171}
172
173#endif
174
175/*
176 * look for a master instance matching with the slave id of the given slave.
177 * when found, relink the open_link of the slave.
178 *
179 * call this with register_mutex down.
180 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100181static void snd_timer_check_slave(struct snd_timer_instance *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100183 struct snd_timer *timer;
184 struct snd_timer_instance *master;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* FIXME: it's really dumb to look up all entries.. */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200187 list_for_each_entry(timer, &snd_timer_list, device_list) {
188 list_for_each_entry(master, &timer->open_list_head, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (slave->slave_class == master->slave_class &&
190 slave->slave_id == master->slave_id) {
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100191 list_move_tail(&slave->open_list,
192 &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 spin_lock_irq(&slave_active_lock);
194 slave->master = master;
195 slave->timer = master->timer;
196 spin_unlock_irq(&slave_active_lock);
197 return;
198 }
199 }
200 }
201}
202
203/*
204 * look for slave instances matching with the slave id of the given master.
205 * when found, relink the open_link of slaves.
206 *
207 * call this with register_mutex down.
208 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100209static void snd_timer_check_master(struct snd_timer_instance *master)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200211 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* check all pending slaves */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200214 list_for_each_entry_safe(slave, tmp, &snd_timer_slave_list, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (slave->slave_class == master->slave_class &&
216 slave->slave_id == master->slave_id) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200217 list_move_tail(&slave->open_list, &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 spin_lock_irq(&slave_active_lock);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100219 spin_lock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 slave->master = master;
221 slave->timer = master->timer;
222 if (slave->flags & SNDRV_TIMER_IFLG_RUNNING)
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200223 list_add_tail(&slave->active_list,
224 &master->slave_active_head);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100225 spin_unlock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 spin_unlock_irq(&slave_active_lock);
227 }
228 }
229}
230
231/*
232 * open a timer instance
233 * when opening a master, the slave id must be here given.
234 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100235int snd_timer_open(struct snd_timer_instance **ti,
236 char *owner, struct snd_timer_id *tid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 unsigned int slave_id)
238{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100239 struct snd_timer *timer;
240 struct snd_timer_instance *timeri = NULL;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (tid->dev_class == SNDRV_TIMER_CLASS_SLAVE) {
243 /* open a slave instance */
244 if (tid->dev_sclass <= SNDRV_TIMER_SCLASS_NONE ||
245 tid->dev_sclass > SNDRV_TIMER_SCLASS_OSS_SEQUENCER) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100246 pr_debug("ALSA: timer: invalid slave class %i\n",
247 tid->dev_sclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -EINVAL;
249 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100250 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 timeri = snd_timer_instance_new(owner, NULL);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200252 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100253 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200254 return -ENOMEM;
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 timeri->slave_class = tid->dev_sclass;
257 timeri->slave_id = tid->device;
258 timeri->flags |= SNDRV_TIMER_IFLG_SLAVE;
259 list_add_tail(&timeri->open_list, &snd_timer_slave_list);
260 snd_timer_check_slave(timeri);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100261 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 *ti = timeri;
263 return 0;
264 }
265
266 /* open a master instance */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100267 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 timer = snd_timer_find(tid);
Johannes Bergee2da992008-07-09 10:28:41 +0200269#ifdef CONFIG_MODULES
270 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100271 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 snd_timer_request(tid);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100273 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 timer = snd_timer_find(tid);
275 }
276#endif
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200277 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100278 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return -ENODEV;
280 }
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200281 if (!list_empty(&timer->open_list_head)) {
282 timeri = list_entry(timer->open_list_head.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +0100283 struct snd_timer_instance, open_list);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200284 if (timeri->flags & SNDRV_TIMER_IFLG_EXCLUSIVE) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100285 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200286 return -EBUSY;
287 }
288 }
289 timeri = snd_timer_instance_new(owner, timer);
290 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100291 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200292 return -ENOMEM;
293 }
Takashi Iwai230323d2016-01-21 17:19:31 +0100294 /* take a card refcount for safe disconnection */
295 if (timer->card)
296 get_device(&timer->card->card_dev);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200297 timeri->slave_class = tid->dev_sclass;
298 timeri->slave_id = slave_id;
299 if (list_empty(&timer->open_list_head) && timer->hw.open)
300 timer->hw.open(timer);
301 list_add_tail(&timeri->open_list, &timer->open_list_head);
302 snd_timer_check_master(timeri);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100303 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 *ti = timeri;
305 return 0;
306}
307
Takashi Iwaic3b16812016-01-14 17:01:46 +0100308static int _snd_timer_stop(struct snd_timer_instance *timeri, int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310/*
311 * close a timer instance
312 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100313int snd_timer_close(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100315 struct snd_timer *timer = NULL;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200316 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Takashi Iwai00728892008-08-14 07:51:57 +0200318 if (snd_BUG_ON(!timeri))
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200319 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* force to stop the timer */
322 snd_timer_stop(timeri);
323
324 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) {
325 /* wait, until the active callback is finished */
326 spin_lock_irq(&slave_active_lock);
327 while (timeri->flags & SNDRV_TIMER_IFLG_CALLBACK) {
328 spin_unlock_irq(&slave_active_lock);
329 udelay(10);
330 spin_lock_irq(&slave_active_lock);
331 }
332 spin_unlock_irq(&slave_active_lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100333 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 list_del(&timeri->open_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100335 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 } else {
337 timer = timeri->timer;
Takashi Iwai94094c82011-08-08 12:28:22 +0200338 if (snd_BUG_ON(!timer))
339 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /* wait, until the active callback is finished */
341 spin_lock_irq(&timer->lock);
342 while (timeri->flags & SNDRV_TIMER_IFLG_CALLBACK) {
343 spin_unlock_irq(&timer->lock);
344 udelay(10);
345 spin_lock_irq(&timer->lock);
346 }
347 spin_unlock_irq(&timer->lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100348 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 list_del(&timeri->open_list);
Takashi Iwaic3b16812016-01-14 17:01:46 +0100350 if (list_empty(&timer->open_list_head) &&
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200351 timer->hw.close)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 timer->hw.close(timer);
353 /* remove slave links */
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100354 spin_lock_irq(&slave_active_lock);
355 spin_lock(&timer->lock);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200356 list_for_each_entry_safe(slave, tmp, &timeri->slave_list_head,
357 open_list) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200358 list_move_tail(&slave->open_list, &snd_timer_slave_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 slave->master = NULL;
360 slave->timer = NULL;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100361 list_del_init(&slave->ack_list);
362 list_del_init(&slave->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100364 spin_unlock(&timer->lock);
365 spin_unlock_irq(&slave_active_lock);
Takashi Iwai230323d2016-01-21 17:19:31 +0100366 /* release a card refcount for safe disconnection */
367 if (timer->card)
368 put_device(&timer->card->card_dev);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100369 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Takashi Iwai94094c82011-08-08 12:28:22 +0200371 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (timeri->private_free)
373 timeri->private_free(timeri);
374 kfree(timeri->owner);
375 kfree(timeri);
Clemens Ladischde242142005-10-12 17:12:31 +0200376 if (timer)
377 module_put(timer->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return 0;
379}
380
Takashi Iwai53d2f742005-11-17 13:56:05 +0100381unsigned long snd_timer_resolution(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100383 struct snd_timer * timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (timeri == NULL)
386 return 0;
387 if ((timer = timeri->timer) != NULL) {
388 if (timer->hw.c_resolution)
389 return timer->hw.c_resolution(timer);
390 return timer->hw.resolution;
391 }
392 return 0;
393}
394
Takashi Iwai53d2f742005-11-17 13:56:05 +0100395static void snd_timer_notify1(struct snd_timer_instance *ti, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100397 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 unsigned long flags;
399 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100400 struct snd_timer_instance *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct timespec tstamp;
402
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100403 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +0000404 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100405 else
406 getnstimeofday(&tstamp);
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200407 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_START ||
408 event > SNDRV_TIMER_EVENT_PAUSE))
409 return;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200410 if (event == SNDRV_TIMER_EVENT_START ||
411 event == SNDRV_TIMER_EVENT_CONTINUE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 resolution = snd_timer_resolution(ti);
413 if (ti->ccallback)
Jaroslav Kyselab30477d2010-03-03 11:05:55 +0100414 ti->ccallback(ti, event, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (ti->flags & SNDRV_TIMER_IFLG_SLAVE)
416 return;
417 timer = ti->timer;
418 if (timer == NULL)
419 return;
420 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
421 return;
422 spin_lock_irqsave(&timer->lock, flags);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200423 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (ts->ccallback)
Takashi Iwai117159f2016-02-08 17:36:25 +0100425 ts->ccallback(ts, event + 100, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 spin_unlock_irqrestore(&timer->lock, flags);
427}
428
Takashi Iwai53d2f742005-11-17 13:56:05 +0100429static int snd_timer_start1(struct snd_timer *timer, struct snd_timer_instance *timeri,
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200430 unsigned long sticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100432 list_move_tail(&timeri->active_list, &timer->active_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (timer->running) {
434 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
435 goto __start_now;
436 timer->flags |= SNDRV_TIMER_FLG_RESCHED;
437 timeri->flags |= SNDRV_TIMER_IFLG_START;
438 return 1; /* delayed start */
439 } else {
440 timer->sticks = sticks;
441 timer->hw.start(timer);
442 __start_now:
443 timer->running++;
444 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
445 return 0;
446 }
447}
448
Takashi Iwai53d2f742005-11-17 13:56:05 +0100449static int snd_timer_start_slave(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 unsigned long flags;
452
453 spin_lock_irqsave(&slave_active_lock, flags);
Takashi 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 Iwaied8b1d62016-02-09 12:02:32 +0100521 if (timeri->timer)
522 spin_lock(&timeri->timer->lock);
Takashi Iwaic3b16812016-01-14 17:01:46 +0100523 timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
524 list_del_init(&timeri->ack_list);
525 list_del_init(&timeri->active_list);
Takashi Iwaied8b1d62016-02-09 12:02:32 +0100526 if (timeri->timer)
527 spin_unlock(&timeri->timer->lock);
Takashi Iwaic3b16812016-01-14 17:01:46 +0100528 spin_unlock_irqrestore(&slave_active_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto __end;
530 }
531 timer = timeri->timer;
532 if (!timer)
533 return -EINVAL;
534 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100535 if (!(timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
536 SNDRV_TIMER_IFLG_START))) {
537 spin_unlock_irqrestore(&timer->lock, flags);
538 return -EBUSY;
539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 list_del_init(&timeri->ack_list);
541 list_del_init(&timeri->active_list);
Takashi Iwai230323d2016-01-21 17:19:31 +0100542 if (timer->card && timer->card->shutdown) {
543 spin_unlock_irqrestore(&timer->lock, flags);
544 return 0;
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if ((timeri->flags & SNDRV_TIMER_IFLG_RUNNING) &&
547 !(--timer->running)) {
548 timer->hw.stop(timer);
549 if (timer->flags & SNDRV_TIMER_FLG_RESCHED) {
550 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
551 snd_timer_reschedule(timer, 0);
552 if (timer->flags & SNDRV_TIMER_FLG_CHANGE) {
553 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
554 timer->hw.start(timer);
555 }
556 }
557 }
Takashi Iwaic3b16812016-01-14 17:01:46 +0100558 timeri->flags &= ~(SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 spin_unlock_irqrestore(&timer->lock, flags);
560 __end:
561 if (event != SNDRV_TIMER_EVENT_RESOLUTION)
562 snd_timer_notify1(timeri, event);
563 return 0;
564}
565
566/*
567 * stop the timer instance.
568 *
569 * do not call this from the timer callback!
570 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100571int snd_timer_stop(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100573 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 unsigned long flags;
575 int err;
576
Takashi Iwaic3b16812016-01-14 17:01:46 +0100577 err = _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (err < 0)
579 return err;
580 timer = timeri->timer;
Takashi Iwai0584ffa2011-08-08 12:24:46 +0200581 if (!timer)
582 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 spin_lock_irqsave(&timer->lock, flags);
584 timeri->cticks = timeri->ticks;
585 timeri->pticks = 0;
586 spin_unlock_irqrestore(&timer->lock, flags);
587 return 0;
588}
589
590/*
591 * start again.. the tick is kept.
592 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100593int snd_timer_continue(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100595 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int result = -EINVAL;
597 unsigned long flags;
598
599 if (timeri == NULL)
600 return result;
601 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
602 return snd_timer_start_slave(timeri);
603 timer = timeri->timer;
604 if (! timer)
605 return -EINVAL;
Takashi Iwai230323d2016-01-21 17:19:31 +0100606 if (timer->card && timer->card->shutdown)
607 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100609 if (timeri->flags & SNDRV_TIMER_IFLG_RUNNING) {
610 result = -EBUSY;
611 goto unlock;
612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!timeri->cticks)
614 timeri->cticks = 1;
615 timeri->pticks = 0;
616 result = snd_timer_start1(timer, timeri, timer->sticks);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100617 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 spin_unlock_irqrestore(&timer->lock, flags);
619 snd_timer_notify1(timeri, SNDRV_TIMER_EVENT_CONTINUE);
620 return result;
621}
622
623/*
624 * pause.. remember the ticks left
625 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100626int snd_timer_pause(struct snd_timer_instance * timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Takashi Iwaic3b16812016-01-14 17:01:46 +0100628 return _snd_timer_stop(timeri, SNDRV_TIMER_EVENT_PAUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/*
632 * reschedule the timer
633 *
634 * start pending instances and check the scheduling ticks.
635 * when the scheduling ticks is changed set CHANGE flag to reprogram the timer.
636 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100637static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100639 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 unsigned long ticks = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Johannes Berg9244b2c2006-10-05 16:02:22 +0200642 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (ti->flags & SNDRV_TIMER_IFLG_START) {
644 ti->flags &= ~SNDRV_TIMER_IFLG_START;
645 ti->flags |= SNDRV_TIMER_IFLG_RUNNING;
646 timer->running++;
647 }
648 if (ti->flags & SNDRV_TIMER_IFLG_RUNNING) {
649 if (ticks > ti->cticks)
650 ticks = ti->cticks;
651 }
652 }
653 if (ticks == ~0UL) {
654 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
655 return;
656 }
657 if (ticks > timer->hw.ticks)
658 ticks = timer->hw.ticks;
659 if (ticks_left != ticks)
660 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
661 timer->sticks = ticks;
662}
663
664/*
665 * timer tasklet
666 *
667 */
668static void snd_timer_tasklet(unsigned long arg)
669{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100670 struct snd_timer *timer = (struct snd_timer *) arg;
671 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct list_head *p;
673 unsigned long resolution, ticks;
Takashi Iwai2999ff52006-07-05 17:16:58 +0200674 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Takashi Iwai230323d2016-01-21 17:19:31 +0100676 if (timer->card && timer->card->shutdown)
677 return;
678
Takashi Iwai2999ff52006-07-05 17:16:58 +0200679 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 /* now process all callbacks */
681 while (!list_empty(&timer->sack_list_head)) {
682 p = timer->sack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100683 ti = list_entry(p, struct snd_timer_instance, ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /* remove from ack_list and make empty */
686 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 ticks = ti->pticks;
689 ti->pticks = 0;
690 resolution = ti->resolution;
691
692 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
693 spin_unlock(&timer->lock);
694 if (ti->callback)
695 ti->callback(ti, resolution, ticks);
696 spin_lock(&timer->lock);
697 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
698 }
Takashi Iwai2999ff52006-07-05 17:16:58 +0200699 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702/*
703 * timer interrupt
704 *
705 * ticks_left is usually equal to timer->sticks.
706 *
707 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100708void snd_timer_interrupt(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200710 struct snd_timer_instance *ti, *ts, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 unsigned long resolution, ticks;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200712 struct list_head *p, *ack_list_head;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100713 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int use_tasklet = 0;
715
716 if (timer == NULL)
717 return;
718
Takashi Iwai230323d2016-01-21 17:19:31 +0100719 if (timer->card && timer->card->shutdown)
720 return;
721
Takashi Iwaib32425a2005-11-18 18:52:14 +0100722 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /* remember the current resolution */
725 if (timer->hw.c_resolution)
726 resolution = timer->hw.c_resolution(timer);
727 else
728 resolution = timer->hw.resolution;
729
730 /* loop for all active instances
Johannes Berg9244b2c2006-10-05 16:02:22 +0200731 * Here we cannot use list_for_each_entry because the active_list of a
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200732 * processed instance is relinked to done_list_head before the callback
733 * is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200735 list_for_each_entry_safe(ti, tmp, &timer->active_list_head,
736 active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!(ti->flags & SNDRV_TIMER_IFLG_RUNNING))
738 continue;
739 ti->pticks += ticks_left;
740 ti->resolution = resolution;
741 if (ti->cticks < ticks_left)
742 ti->cticks = 0;
743 else
744 ti->cticks -= ticks_left;
745 if (ti->cticks) /* not expired */
746 continue;
747 if (ti->flags & SNDRV_TIMER_IFLG_AUTO) {
748 ti->cticks = ti->ticks;
749 } else {
750 ti->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwai094fd3b2016-02-04 17:06:13 +0100751 --timer->running;
752 list_del_init(&ti->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200754 if ((timer->hw.flags & SNDRV_TIMER_HW_TASKLET) ||
755 (ti->flags & SNDRV_TIMER_IFLG_FAST))
756 ack_list_head = &timer->ack_list_head;
757 else
758 ack_list_head = &timer->sack_list_head;
759 if (list_empty(&ti->ack_list))
760 list_add_tail(&ti->ack_list, ack_list_head);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200761 list_for_each_entry(ts, &ti->slave_active_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 ts->pticks = ti->pticks;
763 ts->resolution = resolution;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200764 if (list_empty(&ts->ack_list))
765 list_add_tail(&ts->ack_list, ack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 }
768 if (timer->flags & SNDRV_TIMER_FLG_RESCHED)
Clemens Ladischcd93fe42006-07-17 16:53:57 +0200769 snd_timer_reschedule(timer, timer->sticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (timer->running) {
771 if (timer->hw.flags & SNDRV_TIMER_HW_STOP) {
772 timer->hw.stop(timer);
773 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
774 }
775 if (!(timer->hw.flags & SNDRV_TIMER_HW_AUTO) ||
776 (timer->flags & SNDRV_TIMER_FLG_CHANGE)) {
777 /* restart timer */
778 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
779 timer->hw.start(timer);
780 }
781 } else {
782 timer->hw.stop(timer);
783 }
784
785 /* now process all fast callbacks */
786 while (!list_empty(&timer->ack_list_head)) {
787 p = timer->ack_list_head.next; /* get first item */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100788 ti = list_entry(p, struct snd_timer_instance, ack_list);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* remove from ack_list and make empty */
791 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 ticks = ti->pticks;
794 ti->pticks = 0;
795
796 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
797 spin_unlock(&timer->lock);
798 if (ti->callback)
799 ti->callback(ti, resolution, ticks);
800 spin_lock(&timer->lock);
801 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
802 }
803
804 /* do we have any slow callbacks? */
805 use_tasklet = !list_empty(&timer->sack_list_head);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100806 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 if (use_tasklet)
Takashi Iwai1f041282008-12-18 12:17:55 +0100809 tasklet_schedule(&timer->task_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
812/*
813
814 */
815
Takashi Iwai53d2f742005-11-17 13:56:05 +0100816int snd_timer_new(struct snd_card *card, char *id, struct snd_timer_id *tid,
817 struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100819 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100821 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .dev_free = snd_timer_dev_free,
823 .dev_register = snd_timer_dev_register,
Takashi Iwaic4614822006-06-23 14:38:23 +0200824 .dev_disconnect = snd_timer_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 };
826
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200827 if (snd_BUG_ON(!tid))
828 return -EINVAL;
829 if (rtimer)
830 *rtimer = NULL;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200831 timer = kzalloc(sizeof(*timer), GFP_KERNEL);
Takashi Iwaiec0e9932015-03-10 15:42:14 +0100832 if (!timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return -ENOMEM;
834 timer->tmr_class = tid->dev_class;
835 timer->card = card;
836 timer->tmr_device = tid->device;
837 timer->tmr_subdevice = tid->subdevice;
838 if (id)
839 strlcpy(timer->id, id, sizeof(timer->id));
840 INIT_LIST_HEAD(&timer->device_list);
841 INIT_LIST_HEAD(&timer->open_list_head);
842 INIT_LIST_HEAD(&timer->active_list_head);
843 INIT_LIST_HEAD(&timer->ack_list_head);
844 INIT_LIST_HEAD(&timer->sack_list_head);
845 spin_lock_init(&timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200846 tasklet_init(&timer->task_queue, snd_timer_tasklet,
847 (unsigned long)timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (card != NULL) {
Clemens Ladischde242142005-10-12 17:12:31 +0200849 timer->module = card->module;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200850 err = snd_device_new(card, SNDRV_DEV_TIMER, timer, &ops);
851 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 snd_timer_free(timer);
853 return err;
854 }
855 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200856 if (rtimer)
857 *rtimer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return 0;
859}
860
Takashi Iwai53d2f742005-11-17 13:56:05 +0100861static int snd_timer_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200863 if (!timer)
864 return 0;
Takashi Iwaic4614822006-06-23 14:38:23 +0200865
866 mutex_lock(&register_mutex);
867 if (! list_empty(&timer->open_list_head)) {
868 struct list_head *p, *n;
869 struct snd_timer_instance *ti;
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100870 pr_warn("ALSA: timer %p is busy?\n", timer);
Takashi Iwaic4614822006-06-23 14:38:23 +0200871 list_for_each_safe(p, n, &timer->open_list_head) {
872 list_del_init(p);
873 ti = list_entry(p, struct snd_timer_instance, open_list);
874 ti->timer = NULL;
875 }
876 }
877 list_del(&timer->device_list);
878 mutex_unlock(&register_mutex);
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (timer->private_free)
881 timer->private_free(timer);
882 kfree(timer);
883 return 0;
884}
885
Takashi Iwai53d2f742005-11-17 13:56:05 +0100886static int snd_timer_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100888 struct snd_timer *timer = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return snd_timer_free(timer);
890}
891
Takashi Iwai53d2f742005-11-17 13:56:05 +0100892static int snd_timer_dev_register(struct snd_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100894 struct snd_timer *timer = dev->device_data;
895 struct snd_timer *timer1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200897 if (snd_BUG_ON(!timer || !timer->hw.start || !timer->hw.stop))
898 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (!(timer->hw.flags & SNDRV_TIMER_HW_SLAVE) &&
900 !timer->hw.resolution && timer->hw.c_resolution == NULL)
901 return -EINVAL;
902
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100903 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200904 list_for_each_entry(timer1, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (timer1->tmr_class > timer->tmr_class)
906 break;
907 if (timer1->tmr_class < timer->tmr_class)
908 continue;
909 if (timer1->card && timer->card) {
910 if (timer1->card->number > timer->card->number)
911 break;
912 if (timer1->card->number < timer->card->number)
913 continue;
914 }
915 if (timer1->tmr_device > timer->tmr_device)
916 break;
917 if (timer1->tmr_device < timer->tmr_device)
918 continue;
919 if (timer1->tmr_subdevice > timer->tmr_subdevice)
920 break;
921 if (timer1->tmr_subdevice < timer->tmr_subdevice)
922 continue;
923 /* conflicts.. */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100924 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return -EBUSY;
926 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200927 list_add_tail(&timer->device_list, &timer1->device_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100928 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return 0;
930}
931
Takashi Iwaic4614822006-06-23 14:38:23 +0200932static int snd_timer_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100934 struct snd_timer *timer = device->device_data;
Takashi Iwai230323d2016-01-21 17:19:31 +0100935 struct snd_timer_instance *ti;
936
Takashi Iwaic4614822006-06-23 14:38:23 +0200937 mutex_lock(&register_mutex);
938 list_del_init(&timer->device_list);
Takashi Iwai230323d2016-01-21 17:19:31 +0100939 /* wake up pending sleepers */
940 list_for_each_entry(ti, &timer->open_list_head, open_list) {
Takashi Iwai40ed94442016-01-21 17:43:08 +0100941 if (ti->disconnect)
942 ti->disconnect(ti);
Takashi Iwai230323d2016-01-21 17:19:31 +0100943 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200944 mutex_unlock(&register_mutex);
945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Takashi Iwai53d2f742005-11-17 13:56:05 +0100948void snd_timer_notify(struct snd_timer *timer, int event, struct timespec *tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
950 unsigned long flags;
951 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100952 struct snd_timer_instance *ti, *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Takashi Iwai230323d2016-01-21 17:19:31 +0100954 if (timer->card && timer->card->shutdown)
955 return;
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200956 if (! (timer->hw.flags & SNDRV_TIMER_HW_SLAVE))
957 return;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200958 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_MSTART ||
959 event > SNDRV_TIMER_EVENT_MRESUME))
960 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 spin_lock_irqsave(&timer->lock, flags);
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +0200962 if (event == SNDRV_TIMER_EVENT_MSTART ||
963 event == SNDRV_TIMER_EVENT_MCONTINUE ||
964 event == SNDRV_TIMER_EVENT_MRESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (timer->hw.c_resolution)
966 resolution = timer->hw.c_resolution(timer);
967 else
968 resolution = timer->hw.resolution;
969 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200970 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (ti->ccallback)
972 ti->ccallback(ti, event, tstamp, resolution);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200973 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (ts->ccallback)
975 ts->ccallback(ts, event, tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977 spin_unlock_irqrestore(&timer->lock, flags);
978}
979
980/*
981 * exported functions for global timers
982 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100983int snd_timer_global_new(char *id, int device, struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100985 struct snd_timer_id tid;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
988 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
989 tid.card = -1;
990 tid.device = device;
991 tid.subdevice = 0;
992 return snd_timer_new(NULL, id, &tid, rtimer);
993}
994
Takashi Iwai53d2f742005-11-17 13:56:05 +0100995int snd_timer_global_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
997 return snd_timer_free(timer);
998}
999
Takashi Iwai53d2f742005-11-17 13:56:05 +01001000int snd_timer_global_register(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001002 struct snd_device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 memset(&dev, 0, sizeof(dev));
1005 dev.device_data = timer;
1006 return snd_timer_dev_register(&dev);
1007}
1008
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001009/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 * System timer
1011 */
1012
1013struct snd_timer_system_private {
1014 struct timer_list tlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 unsigned long last_expires;
1016 unsigned long last_jiffies;
1017 unsigned long correction;
1018};
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020static void snd_timer_s_function(unsigned long data)
1021{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001022 struct snd_timer *timer = (struct snd_timer *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct snd_timer_system_private *priv = timer->private_data;
1024 unsigned long jiff = jiffies;
1025 if (time_after(jiff, priv->last_expires))
Clemens Ladisch6ed5eff2006-07-17 16:51:37 +02001026 priv->correction += (long)jiff - (long)priv->last_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 snd_timer_interrupt(timer, (long)jiff - (long)priv->last_jiffies);
1028}
1029
Takashi Iwai53d2f742005-11-17 13:56:05 +01001030static int snd_timer_s_start(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
1032 struct snd_timer_system_private *priv;
1033 unsigned long njiff;
1034
1035 priv = (struct snd_timer_system_private *) timer->private_data;
1036 njiff = (priv->last_jiffies = jiffies);
1037 if (priv->correction > timer->sticks - 1) {
1038 priv->correction -= timer->sticks - 1;
1039 njiff++;
1040 } else {
1041 njiff += timer->sticks - priv->correction;
Clemens Ladisch17f48ec2006-07-17 16:50:56 +02001042 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044 priv->last_expires = priv->tlist.expires = njiff;
1045 add_timer(&priv->tlist);
1046 return 0;
1047}
1048
Takashi Iwai53d2f742005-11-17 13:56:05 +01001049static int snd_timer_s_stop(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 struct snd_timer_system_private *priv;
1052 unsigned long jiff;
1053
1054 priv = (struct snd_timer_system_private *) timer->private_data;
1055 del_timer(&priv->tlist);
1056 jiff = jiffies;
1057 if (time_before(jiff, priv->last_expires))
1058 timer->sticks = priv->last_expires - jiff;
1059 else
1060 timer->sticks = 1;
Clemens Ladischde2696d2006-07-17 16:52:09 +02001061 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return 0;
1063}
1064
Takashi Iwaif1463572016-02-02 14:14:10 +01001065static int snd_timer_s_close(struct snd_timer *timer)
1066{
1067 struct snd_timer_system_private *priv;
1068
1069 priv = (struct snd_timer_system_private *)timer->private_data;
1070 del_timer_sync(&priv->tlist);
1071 return 0;
1072}
1073
Takashi Iwai53d2f742005-11-17 13:56:05 +01001074static struct snd_timer_hardware snd_timer_system =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 .flags = SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET,
1077 .resolution = 1000000000L / HZ,
1078 .ticks = 10000000L,
Takashi Iwaif1463572016-02-02 14:14:10 +01001079 .close = snd_timer_s_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 .start = snd_timer_s_start,
1081 .stop = snd_timer_s_stop
1082};
1083
Takashi Iwai53d2f742005-11-17 13:56:05 +01001084static void snd_timer_free_system(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 kfree(timer->private_data);
1087}
1088
1089static int snd_timer_register_system(void)
1090{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001091 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct snd_timer_system_private *priv;
1093 int err;
1094
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001095 err = snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM, &timer);
1096 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return err;
1098 strcpy(timer->name, "system timer");
1099 timer->hw = snd_timer_system;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001100 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (priv == NULL) {
1102 snd_timer_free(timer);
1103 return -ENOMEM;
1104 }
Takashi Iwaif169c102015-01-19 11:26:25 +01001105 setup_timer(&priv->tlist, snd_timer_s_function, (unsigned long) timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 timer->private_data = priv;
1107 timer->private_free = snd_timer_free_system;
1108 return snd_timer_global_register(timer);
1109}
1110
Jie Yangcd6a6502015-05-27 19:45:45 +08001111#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112/*
1113 * Info interface
1114 */
1115
Takashi Iwai53d2f742005-11-17 13:56:05 +01001116static void snd_timer_proc_read(struct snd_info_entry *entry,
1117 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001119 struct snd_timer *timer;
1120 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001122 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001123 list_for_each_entry(timer, &snd_timer_list, device_list) {
Takashi Iwai230323d2016-01-21 17:19:31 +01001124 if (timer->card && timer->card->shutdown)
1125 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 switch (timer->tmr_class) {
1127 case SNDRV_TIMER_CLASS_GLOBAL:
1128 snd_iprintf(buffer, "G%i: ", timer->tmr_device);
1129 break;
1130 case SNDRV_TIMER_CLASS_CARD:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001131 snd_iprintf(buffer, "C%i-%i: ",
1132 timer->card->number, timer->tmr_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 break;
1134 case SNDRV_TIMER_CLASS_PCM:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001135 snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
1136 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 break;
1138 default:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001139 snd_iprintf(buffer, "?%i-%i-%i-%i: ", timer->tmr_class,
1140 timer->card ? timer->card->number : -1,
1141 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143 snd_iprintf(buffer, "%s :", timer->name);
1144 if (timer->hw.resolution)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001145 snd_iprintf(buffer, " %lu.%03luus (%lu ticks)",
1146 timer->hw.resolution / 1000,
1147 timer->hw.resolution % 1000,
1148 timer->hw.ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
1150 snd_iprintf(buffer, " SLAVE");
1151 snd_iprintf(buffer, "\n");
Johannes Berg9244b2c2006-10-05 16:02:22 +02001152 list_for_each_entry(ti, &timer->open_list_head, open_list)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001153 snd_iprintf(buffer, " Client %s : %s\n",
1154 ti->owner ? ti->owner : "unknown",
1155 ti->flags & (SNDRV_TIMER_IFLG_START |
1156 SNDRV_TIMER_IFLG_RUNNING)
1157 ? "running" : "stopped");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001159 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Takashi Iwai6581f4e2006-05-17 17:14:51 +02001162static struct snd_info_entry *snd_timer_proc_entry;
Takashi Iwaie28563c2005-12-01 10:42:42 +01001163
1164static void __init snd_timer_proc_init(void)
1165{
1166 struct snd_info_entry *entry;
1167
1168 entry = snd_info_create_module_entry(THIS_MODULE, "timers", NULL);
1169 if (entry != NULL) {
Takashi Iwaie28563c2005-12-01 10:42:42 +01001170 entry->c.text.read = snd_timer_proc_read;
1171 if (snd_info_register(entry) < 0) {
1172 snd_info_free_entry(entry);
1173 entry = NULL;
1174 }
1175 }
1176 snd_timer_proc_entry = entry;
1177}
1178
1179static void __exit snd_timer_proc_done(void)
1180{
Takashi Iwai746d4a02006-06-23 14:37:59 +02001181 snd_info_free_entry(snd_timer_proc_entry);
Takashi Iwaie28563c2005-12-01 10:42:42 +01001182}
Jie Yangcd6a6502015-05-27 19:45:45 +08001183#else /* !CONFIG_SND_PROC_FS */
Takashi Iwaie28563c2005-12-01 10:42:42 +01001184#define snd_timer_proc_init()
1185#define snd_timer_proc_done()
1186#endif
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188/*
1189 * USER SPACE interface
1190 */
1191
Takashi Iwai53d2f742005-11-17 13:56:05 +01001192static void snd_timer_user_interrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 unsigned long resolution,
1194 unsigned long ticks)
1195{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001196 struct snd_timer_user *tu = timeri->callback_data;
1197 struct snd_timer_read *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 int prev;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 spin_lock(&tu->qlock);
1201 if (tu->qused > 0) {
1202 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1203 r = &tu->queue[prev];
1204 if (r->resolution == resolution) {
1205 r->ticks += ticks;
1206 goto __wake;
1207 }
1208 }
1209 if (tu->qused >= tu->queue_size) {
1210 tu->overrun++;
1211 } else {
1212 r = &tu->queue[tu->qtail++];
1213 tu->qtail %= tu->queue_size;
1214 r->resolution = resolution;
1215 r->ticks = ticks;
1216 tu->qused++;
1217 }
1218 __wake:
1219 spin_unlock(&tu->qlock);
1220 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1221 wake_up(&tu->qchange_sleep);
1222}
1223
Takashi Iwai53d2f742005-11-17 13:56:05 +01001224static void snd_timer_user_append_to_tqueue(struct snd_timer_user *tu,
1225 struct snd_timer_tread *tread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
1227 if (tu->qused >= tu->queue_size) {
1228 tu->overrun++;
1229 } else {
1230 memcpy(&tu->tqueue[tu->qtail++], tread, sizeof(*tread));
1231 tu->qtail %= tu->queue_size;
1232 tu->qused++;
1233 }
1234}
1235
Takashi Iwai53d2f742005-11-17 13:56:05 +01001236static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
1237 int event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct timespec *tstamp,
1239 unsigned long resolution)
1240{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001241 struct snd_timer_user *tu = timeri->callback_data;
1242 struct snd_timer_tread r1;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001243 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001245 if (event >= SNDRV_TIMER_EVENT_START &&
1246 event <= SNDRV_TIMER_EVENT_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 tu->tstamp = *tstamp;
1248 if ((tu->filter & (1 << event)) == 0 || !tu->tread)
1249 return;
1250 r1.event = event;
1251 r1.tstamp = *tstamp;
1252 r1.val = resolution;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001253 spin_lock_irqsave(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 snd_timer_user_append_to_tqueue(tu, &r1);
Dan Carpenterbfe70782010-04-28 10:29:14 +02001255 spin_unlock_irqrestore(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1257 wake_up(&tu->qchange_sleep);
1258}
1259
Takashi Iwai40ed94442016-01-21 17:43:08 +01001260static void snd_timer_user_disconnect(struct snd_timer_instance *timeri)
1261{
1262 struct snd_timer_user *tu = timeri->callback_data;
1263
1264 tu->disconnected = true;
1265 wake_up(&tu->qchange_sleep);
1266}
1267
Takashi Iwai53d2f742005-11-17 13:56:05 +01001268static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 unsigned long resolution,
1270 unsigned long ticks)
1271{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001272 struct snd_timer_user *tu = timeri->callback_data;
1273 struct snd_timer_tread *r, r1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 struct timespec tstamp;
1275 int prev, append = 0;
1276
Takashi Iwai07799e72005-10-10 11:49:49 +02001277 memset(&tstamp, 0, sizeof(tstamp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 spin_lock(&tu->qlock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001279 if ((tu->filter & ((1 << SNDRV_TIMER_EVENT_RESOLUTION) |
1280 (1 << SNDRV_TIMER_EVENT_TICK))) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 spin_unlock(&tu->qlock);
1282 return;
1283 }
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001284 if (tu->last_resolution != resolution || ticks > 0) {
1285 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +00001286 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001287 else
1288 getnstimeofday(&tstamp);
1289 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001290 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
1291 tu->last_resolution != resolution) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
1293 r1.tstamp = tstamp;
1294 r1.val = resolution;
1295 snd_timer_user_append_to_tqueue(tu, &r1);
1296 tu->last_resolution = resolution;
1297 append++;
1298 }
1299 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_TICK)) == 0)
1300 goto __wake;
1301 if (ticks == 0)
1302 goto __wake;
1303 if (tu->qused > 0) {
1304 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1305 r = &tu->tqueue[prev];
1306 if (r->event == SNDRV_TIMER_EVENT_TICK) {
1307 r->tstamp = tstamp;
1308 r->val += ticks;
1309 append++;
1310 goto __wake;
1311 }
1312 }
1313 r1.event = SNDRV_TIMER_EVENT_TICK;
1314 r1.tstamp = tstamp;
1315 r1.val = ticks;
1316 snd_timer_user_append_to_tqueue(tu, &r1);
1317 append++;
1318 __wake:
1319 spin_unlock(&tu->qlock);
1320 if (append == 0)
1321 return;
1322 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1323 wake_up(&tu->qchange_sleep);
1324}
1325
1326static int snd_timer_user_open(struct inode *inode, struct file *file)
1327{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001328 struct snd_timer_user *tu;
Takashi Iwai02f48652010-04-13 11:49:04 +02001329 int err;
1330
1331 err = nonseekable_open(inode, file);
1332 if (err < 0)
1333 return err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001334
Takashi Iwaica2c0962005-09-09 14:20:23 +02001335 tu = kzalloc(sizeof(*tu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (tu == NULL)
1337 return -ENOMEM;
1338 spin_lock_init(&tu->qlock);
1339 init_waitqueue_head(&tu->qchange_sleep);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001340 mutex_init(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 tu->ticks = 1;
1342 tu->queue_size = 128;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001343 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001344 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (tu->queue == NULL) {
1346 kfree(tu);
1347 return -ENOMEM;
1348 }
1349 file->private_data = tu;
1350 return 0;
1351}
1352
1353static int snd_timer_user_release(struct inode *inode, struct file *file)
1354{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001355 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 if (file->private_data) {
1358 tu = file->private_data;
1359 file->private_data = NULL;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001360 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (tu->timeri)
1362 snd_timer_close(tu->timeri);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001363 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 kfree(tu->queue);
1365 kfree(tu->tqueue);
1366 kfree(tu);
1367 }
1368 return 0;
1369}
1370
Takashi Iwai53d2f742005-11-17 13:56:05 +01001371static void snd_timer_user_zero_id(struct snd_timer_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 id->dev_class = SNDRV_TIMER_CLASS_NONE;
1374 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1375 id->card = -1;
1376 id->device = -1;
1377 id->subdevice = -1;
1378}
1379
Takashi Iwai53d2f742005-11-17 13:56:05 +01001380static void snd_timer_user_copy_id(struct snd_timer_id *id, struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 id->dev_class = timer->tmr_class;
1383 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1384 id->card = timer->card ? timer->card->number : -1;
1385 id->device = timer->tmr_device;
1386 id->subdevice = timer->tmr_subdevice;
1387}
1388
Takashi Iwai53d2f742005-11-17 13:56:05 +01001389static int snd_timer_user_next_device(struct snd_timer_id __user *_tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001391 struct snd_timer_id id;
1392 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct list_head *p;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 if (copy_from_user(&id, _tid, sizeof(id)))
1396 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001397 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (id.dev_class < 0) { /* first item */
1399 if (list_empty(&snd_timer_list))
1400 snd_timer_user_zero_id(&id);
1401 else {
Clemens Ladisch9dfba382005-10-12 17:14:55 +02001402 timer = list_entry(snd_timer_list.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001403 struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 snd_timer_user_copy_id(&id, timer);
1405 }
1406 } else {
1407 switch (id.dev_class) {
1408 case SNDRV_TIMER_CLASS_GLOBAL:
1409 id.device = id.device < 0 ? 0 : id.device + 1;
1410 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001411 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (timer->tmr_class > SNDRV_TIMER_CLASS_GLOBAL) {
1413 snd_timer_user_copy_id(&id, timer);
1414 break;
1415 }
1416 if (timer->tmr_device >= id.device) {
1417 snd_timer_user_copy_id(&id, timer);
1418 break;
1419 }
1420 }
1421 if (p == &snd_timer_list)
1422 snd_timer_user_zero_id(&id);
1423 break;
1424 case SNDRV_TIMER_CLASS_CARD:
1425 case SNDRV_TIMER_CLASS_PCM:
1426 if (id.card < 0) {
1427 id.card = 0;
1428 } else {
1429 if (id.card < 0) {
1430 id.card = 0;
1431 } else {
1432 if (id.device < 0) {
1433 id.device = 0;
1434 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001435 if (id.subdevice < 0) {
1436 id.subdevice = 0;
1437 } else {
1438 id.subdevice++;
1439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441 }
1442 }
1443 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001444 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 if (timer->tmr_class > id.dev_class) {
1446 snd_timer_user_copy_id(&id, timer);
1447 break;
1448 }
1449 if (timer->tmr_class < id.dev_class)
1450 continue;
1451 if (timer->card->number > id.card) {
1452 snd_timer_user_copy_id(&id, timer);
1453 break;
1454 }
1455 if (timer->card->number < id.card)
1456 continue;
1457 if (timer->tmr_device > id.device) {
1458 snd_timer_user_copy_id(&id, timer);
1459 break;
1460 }
1461 if (timer->tmr_device < id.device)
1462 continue;
1463 if (timer->tmr_subdevice > id.subdevice) {
1464 snd_timer_user_copy_id(&id, timer);
1465 break;
1466 }
1467 if (timer->tmr_subdevice < id.subdevice)
1468 continue;
1469 snd_timer_user_copy_id(&id, timer);
1470 break;
1471 }
1472 if (p == &snd_timer_list)
1473 snd_timer_user_zero_id(&id);
1474 break;
1475 default:
1476 snd_timer_user_zero_id(&id);
1477 }
1478 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001479 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (copy_to_user(_tid, &id, sizeof(*_tid)))
1481 return -EFAULT;
1482 return 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001483}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001485static int snd_timer_user_ginfo(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001486 struct snd_timer_ginfo __user *_ginfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001488 struct snd_timer_ginfo *ginfo;
1489 struct snd_timer_id tid;
1490 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 struct list_head *p;
1492 int err = 0;
1493
Li Zefanef44a1e2009-04-10 09:43:08 +08001494 ginfo = memdup_user(_ginfo, sizeof(*ginfo));
1495 if (IS_ERR(ginfo))
1496 return PTR_ERR(ginfo);
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 tid = ginfo->tid;
1499 memset(ginfo, 0, sizeof(*ginfo));
1500 ginfo->tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001501 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 t = snd_timer_find(&tid);
1503 if (t != NULL) {
1504 ginfo->card = t->card ? t->card->number : -1;
1505 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1506 ginfo->flags |= SNDRV_TIMER_FLG_SLAVE;
1507 strlcpy(ginfo->id, t->id, sizeof(ginfo->id));
1508 strlcpy(ginfo->name, t->name, sizeof(ginfo->name));
1509 ginfo->resolution = t->hw.resolution;
1510 if (t->hw.resolution_min > 0) {
1511 ginfo->resolution_min = t->hw.resolution_min;
1512 ginfo->resolution_max = t->hw.resolution_max;
1513 }
1514 list_for_each(p, &t->open_list_head) {
1515 ginfo->clients++;
1516 }
1517 } else {
1518 err = -ENODEV;
1519 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001520 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (err >= 0 && copy_to_user(_ginfo, ginfo, sizeof(*ginfo)))
1522 err = -EFAULT;
1523 kfree(ginfo);
1524 return err;
1525}
1526
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001527static int snd_timer_user_gparams(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001528 struct snd_timer_gparams __user *_gparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001530 struct snd_timer_gparams gparams;
1531 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 int err;
1533
1534 if (copy_from_user(&gparams, _gparams, sizeof(gparams)))
1535 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001536 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 t = snd_timer_find(&gparams.tid);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001538 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 err = -ENODEV;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001540 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001542 if (!list_empty(&t->open_list_head)) {
1543 err = -EBUSY;
1544 goto _error;
1545 }
1546 if (!t->hw.set_period) {
1547 err = -ENOSYS;
1548 goto _error;
1549 }
1550 err = t->hw.set_period(t, gparams.period_num, gparams.period_den);
1551_error:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001552 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return err;
1554}
1555
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001556static int snd_timer_user_gstatus(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001557 struct snd_timer_gstatus __user *_gstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001559 struct snd_timer_gstatus gstatus;
1560 struct snd_timer_id tid;
1561 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 int err = 0;
1563
1564 if (copy_from_user(&gstatus, _gstatus, sizeof(gstatus)))
1565 return -EFAULT;
1566 tid = gstatus.tid;
1567 memset(&gstatus, 0, sizeof(gstatus));
1568 gstatus.tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001569 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 t = snd_timer_find(&tid);
1571 if (t != NULL) {
1572 if (t->hw.c_resolution)
1573 gstatus.resolution = t->hw.c_resolution(t);
1574 else
1575 gstatus.resolution = t->hw.resolution;
1576 if (t->hw.precise_resolution) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001577 t->hw.precise_resolution(t, &gstatus.resolution_num,
1578 &gstatus.resolution_den);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 } else {
1580 gstatus.resolution_num = gstatus.resolution;
1581 gstatus.resolution_den = 1000000000uL;
1582 }
1583 } else {
1584 err = -ENODEV;
1585 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001586 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (err >= 0 && copy_to_user(_gstatus, &gstatus, sizeof(gstatus)))
1588 err = -EFAULT;
1589 return err;
1590}
1591
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001592static int snd_timer_user_tselect(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001593 struct snd_timer_select __user *_tselect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001595 struct snd_timer_user *tu;
1596 struct snd_timer_select tselect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 char str[32];
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001598 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 tu = file->private_data;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001601 if (tu->timeri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 snd_timer_close(tu->timeri);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001603 tu->timeri = NULL;
1604 }
1605 if (copy_from_user(&tselect, _tselect, sizeof(tselect))) {
1606 err = -EFAULT;
1607 goto __err;
1608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 sprintf(str, "application %i", current->pid);
1610 if (tselect.id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
1611 tselect.id.dev_sclass = SNDRV_TIMER_SCLASS_APPLICATION;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001612 err = snd_timer_open(&tu->timeri, str, &tselect.id, current->pid);
1613 if (err < 0)
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001614 goto __err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Jesper Juhl4d572772005-05-30 17:30:32 +02001616 kfree(tu->queue);
1617 tu->queue = NULL;
1618 kfree(tu->tqueue);
1619 tu->tqueue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001621 tu->tqueue = kmalloc(tu->queue_size * sizeof(struct snd_timer_tread),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001622 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001623 if (tu->tqueue == NULL)
1624 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001626 tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read),
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001627 GFP_KERNEL);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001628 if (tu->queue == NULL)
1629 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001631
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001632 if (err < 0) {
1633 snd_timer_close(tu->timeri);
1634 tu->timeri = NULL;
1635 } else {
1636 tu->timeri->flags |= SNDRV_TIMER_IFLG_FAST;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001637 tu->timeri->callback = tu->tread
1638 ? snd_timer_user_tinterrupt : snd_timer_user_interrupt;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001639 tu->timeri->ccallback = snd_timer_user_ccallback;
1640 tu->timeri->callback_data = (void *)tu;
Takashi Iwai40ed94442016-01-21 17:43:08 +01001641 tu->timeri->disconnect = snd_timer_user_disconnect;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001642 }
1643
1644 __err:
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001645 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001648static int snd_timer_user_info(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001649 struct snd_timer_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001651 struct snd_timer_user *tu;
1652 struct snd_timer_info *info;
1653 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 int err = 0;
1655
1656 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001657 if (!tu->timeri)
1658 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001660 if (!t)
1661 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Takashi Iwaica2c0962005-09-09 14:20:23 +02001663 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (! info)
1665 return -ENOMEM;
1666 info->card = t->card ? t->card->number : -1;
1667 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1668 info->flags |= SNDRV_TIMER_FLG_SLAVE;
1669 strlcpy(info->id, t->id, sizeof(info->id));
1670 strlcpy(info->name, t->name, sizeof(info->name));
1671 info->resolution = t->hw.resolution;
1672 if (copy_to_user(_info, info, sizeof(*_info)))
1673 err = -EFAULT;
1674 kfree(info);
1675 return err;
1676}
1677
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001678static int snd_timer_user_params(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001679 struct snd_timer_params __user *_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001681 struct snd_timer_user *tu;
1682 struct snd_timer_params params;
1683 struct snd_timer *t;
1684 struct snd_timer_read *tr;
1685 struct snd_timer_tread *ttr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 int err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001689 if (!tu->timeri)
1690 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001692 if (!t)
1693 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (copy_from_user(&params, _params, sizeof(params)))
1695 return -EFAULT;
1696 if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE) && params.ticks < 1) {
1697 err = -EINVAL;
1698 goto _end;
1699 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001700 if (params.queue_size > 0 &&
1701 (params.queue_size < 32 || params.queue_size > 1024)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 err = -EINVAL;
1703 goto _end;
1704 }
1705 if (params.filter & ~((1<<SNDRV_TIMER_EVENT_RESOLUTION)|
1706 (1<<SNDRV_TIMER_EVENT_TICK)|
1707 (1<<SNDRV_TIMER_EVENT_START)|
1708 (1<<SNDRV_TIMER_EVENT_STOP)|
1709 (1<<SNDRV_TIMER_EVENT_CONTINUE)|
1710 (1<<SNDRV_TIMER_EVENT_PAUSE)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001711 (1<<SNDRV_TIMER_EVENT_SUSPEND)|
1712 (1<<SNDRV_TIMER_EVENT_RESUME)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 (1<<SNDRV_TIMER_EVENT_MSTART)|
1714 (1<<SNDRV_TIMER_EVENT_MSTOP)|
1715 (1<<SNDRV_TIMER_EVENT_MCONTINUE)|
Jaroslav Kysela65d11d92005-08-16 13:05:43 +02001716 (1<<SNDRV_TIMER_EVENT_MPAUSE)|
1717 (1<<SNDRV_TIMER_EVENT_MSUSPEND)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001718 (1<<SNDRV_TIMER_EVENT_MRESUME))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 err = -EINVAL;
1720 goto _end;
1721 }
1722 snd_timer_stop(tu->timeri);
1723 spin_lock_irq(&t->lock);
1724 tu->timeri->flags &= ~(SNDRV_TIMER_IFLG_AUTO|
1725 SNDRV_TIMER_IFLG_EXCLUSIVE|
1726 SNDRV_TIMER_IFLG_EARLY_EVENT);
1727 if (params.flags & SNDRV_TIMER_PSFLG_AUTO)
1728 tu->timeri->flags |= SNDRV_TIMER_IFLG_AUTO;
1729 if (params.flags & SNDRV_TIMER_PSFLG_EXCLUSIVE)
1730 tu->timeri->flags |= SNDRV_TIMER_IFLG_EXCLUSIVE;
1731 if (params.flags & SNDRV_TIMER_PSFLG_EARLY_EVENT)
1732 tu->timeri->flags |= SNDRV_TIMER_IFLG_EARLY_EVENT;
1733 spin_unlock_irq(&t->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001734 if (params.queue_size > 0 &&
1735 (unsigned int)tu->queue_size != params.queue_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (tu->tread) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001737 ttr = kmalloc(params.queue_size * sizeof(*ttr),
1738 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (ttr) {
1740 kfree(tu->tqueue);
1741 tu->queue_size = params.queue_size;
1742 tu->tqueue = ttr;
1743 }
1744 } else {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001745 tr = kmalloc(params.queue_size * sizeof(*tr),
1746 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (tr) {
1748 kfree(tu->queue);
1749 tu->queue_size = params.queue_size;
1750 tu->queue = tr;
1751 }
1752 }
1753 }
1754 tu->qhead = tu->qtail = tu->qused = 0;
1755 if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) {
1756 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001757 struct snd_timer_tread tread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 tread.event = SNDRV_TIMER_EVENT_EARLY;
1759 tread.tstamp.tv_sec = 0;
1760 tread.tstamp.tv_nsec = 0;
1761 tread.val = 0;
1762 snd_timer_user_append_to_tqueue(tu, &tread);
1763 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001764 struct snd_timer_read *r = &tu->queue[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 r->resolution = 0;
1766 r->ticks = 0;
1767 tu->qused++;
1768 tu->qtail++;
1769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771 tu->filter = params.filter;
1772 tu->ticks = params.ticks;
1773 err = 0;
1774 _end:
1775 if (copy_to_user(_params, &params, sizeof(params)))
1776 return -EFAULT;
1777 return err;
1778}
1779
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001780static int snd_timer_user_status(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001781 struct snd_timer_status __user *_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001783 struct snd_timer_user *tu;
1784 struct snd_timer_status status;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001787 if (!tu->timeri)
1788 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 memset(&status, 0, sizeof(status));
1790 status.tstamp = tu->tstamp;
1791 status.resolution = snd_timer_resolution(tu->timeri);
1792 status.lost = tu->timeri->lost;
1793 status.overrun = tu->overrun;
1794 spin_lock_irq(&tu->qlock);
1795 status.queue = tu->qused;
1796 spin_unlock_irq(&tu->qlock);
1797 if (copy_to_user(_status, &status, sizeof(status)))
1798 return -EFAULT;
1799 return 0;
1800}
1801
1802static int snd_timer_user_start(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 snd_timer_stop(tu->timeri);
1811 tu->timeri->lost = 0;
1812 tu->last_resolution = 0;
1813 return (err = snd_timer_start(tu->timeri, tu->ticks)) < 0 ? err : 0;
1814}
1815
1816static int snd_timer_user_stop(struct file *file)
1817{
1818 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001819 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001822 if (!tu->timeri)
1823 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return (err = snd_timer_stop(tu->timeri)) < 0 ? err : 0;
1825}
1826
1827static int snd_timer_user_continue(struct file *file)
1828{
1829 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001830 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001833 if (!tu->timeri)
1834 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 tu->timeri->lost = 0;
1836 return (err = snd_timer_continue(tu->timeri)) < 0 ? err : 0;
1837}
1838
Takashi Iwai15790a62005-05-15 15:04:14 +02001839static int snd_timer_user_pause(struct file *file)
1840{
1841 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001842 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001843
Takashi Iwai15790a62005-05-15 15:04:14 +02001844 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001845 if (!tu->timeri)
1846 return -EBADFD;
Jaroslav Kyselad138b442005-05-16 13:51:39 +02001847 return (err = snd_timer_pause(tu->timeri)) < 0 ? err : 0;
Takashi Iwai15790a62005-05-15 15:04:14 +02001848}
1849
Takashi Iwai8c50b372005-05-15 15:43:54 +02001850enum {
1851 SNDRV_TIMER_IOCTL_START_OLD = _IO('T', 0x20),
1852 SNDRV_TIMER_IOCTL_STOP_OLD = _IO('T', 0x21),
1853 SNDRV_TIMER_IOCTL_CONTINUE_OLD = _IO('T', 0x22),
1854 SNDRV_TIMER_IOCTL_PAUSE_OLD = _IO('T', 0x23),
1855};
1856
Takashi Iwaiaf368022016-01-13 17:48:01 +01001857static long __snd_timer_user_ioctl(struct file *file, unsigned int cmd,
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001858 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001860 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 void __user *argp = (void __user *)arg;
1862 int __user *p = argp;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 tu = file->private_data;
1865 switch (cmd) {
1866 case SNDRV_TIMER_IOCTL_PVERSION:
1867 return put_user(SNDRV_TIMER_VERSION, p) ? -EFAULT : 0;
1868 case SNDRV_TIMER_IOCTL_NEXT_DEVICE:
1869 return snd_timer_user_next_device(argp);
1870 case SNDRV_TIMER_IOCTL_TREAD:
1871 {
1872 int xarg;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001873
Takashi Iwaiaf368022016-01-13 17:48:01 +01001874 if (tu->timeri) /* too late */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return -EBUSY;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001876 if (get_user(xarg, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return -EFAULT;
1878 tu->tread = xarg ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return 0;
1880 }
1881 case SNDRV_TIMER_IOCTL_GINFO:
1882 return snd_timer_user_ginfo(file, argp);
1883 case SNDRV_TIMER_IOCTL_GPARAMS:
1884 return snd_timer_user_gparams(file, argp);
1885 case SNDRV_TIMER_IOCTL_GSTATUS:
1886 return snd_timer_user_gstatus(file, argp);
1887 case SNDRV_TIMER_IOCTL_SELECT:
1888 return snd_timer_user_tselect(file, argp);
1889 case SNDRV_TIMER_IOCTL_INFO:
1890 return snd_timer_user_info(file, argp);
1891 case SNDRV_TIMER_IOCTL_PARAMS:
1892 return snd_timer_user_params(file, argp);
1893 case SNDRV_TIMER_IOCTL_STATUS:
1894 return snd_timer_user_status(file, argp);
1895 case SNDRV_TIMER_IOCTL_START:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001896 case SNDRV_TIMER_IOCTL_START_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return snd_timer_user_start(file);
1898 case SNDRV_TIMER_IOCTL_STOP:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001899 case SNDRV_TIMER_IOCTL_STOP_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 return snd_timer_user_stop(file);
1901 case SNDRV_TIMER_IOCTL_CONTINUE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001902 case SNDRV_TIMER_IOCTL_CONTINUE_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 return snd_timer_user_continue(file);
Takashi Iwai15790a62005-05-15 15:04:14 +02001904 case SNDRV_TIMER_IOCTL_PAUSE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001905 case SNDRV_TIMER_IOCTL_PAUSE_OLD:
Takashi Iwai15790a62005-05-15 15:04:14 +02001906 return snd_timer_user_pause(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
1908 return -ENOTTY;
1909}
1910
Takashi Iwaiaf368022016-01-13 17:48:01 +01001911static long snd_timer_user_ioctl(struct file *file, unsigned int cmd,
1912 unsigned long arg)
1913{
1914 struct snd_timer_user *tu = file->private_data;
1915 long ret;
1916
1917 mutex_lock(&tu->ioctl_lock);
1918 ret = __snd_timer_user_ioctl(file, cmd, arg);
1919 mutex_unlock(&tu->ioctl_lock);
1920 return ret;
1921}
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923static int snd_timer_user_fasync(int fd, struct file * file, int on)
1924{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001925 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 tu = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001928 return fasync_helper(fd, file, on, &tu->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929}
1930
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001931static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
1932 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001934 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 long result = 0, unit;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001936 int qhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 tu = file->private_data;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001940 unit = tu->tread ? sizeof(struct snd_timer_tread) : sizeof(struct snd_timer_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 spin_lock_irq(&tu->qlock);
1942 while ((long)count - result >= unit) {
1943 while (!tu->qused) {
1944 wait_queue_t wait;
1945
1946 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1947 err = -EAGAIN;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001948 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950
1951 set_current_state(TASK_INTERRUPTIBLE);
1952 init_waitqueue_entry(&wait, current);
1953 add_wait_queue(&tu->qchange_sleep, &wait);
1954
1955 spin_unlock_irq(&tu->qlock);
1956 schedule();
1957 spin_lock_irq(&tu->qlock);
1958
1959 remove_wait_queue(&tu->qchange_sleep, &wait);
1960
Takashi Iwai230323d2016-01-21 17:19:31 +01001961 if (tu->disconnected) {
1962 err = -ENODEV;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001963 goto _error;
Takashi Iwai230323d2016-01-21 17:19:31 +01001964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if (signal_pending(current)) {
1966 err = -ERESTARTSYS;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001967 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969 }
1970
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001971 qhead = tu->qhead++;
1972 tu->qhead %= tu->queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 if (tu->tread) {
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001976 if (copy_to_user(buffer, &tu->tqueue[qhead],
1977 sizeof(struct snd_timer_tread)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 } else {
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001980 if (copy_to_user(buffer, &tu->queue[qhead],
1981 sizeof(struct snd_timer_read)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 spin_lock_irq(&tu->qlock);
1986 tu->qused--;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001987 if (err < 0)
1988 goto _error;
1989 result += unit;
1990 buffer += unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 _error:
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001993 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return result > 0 ? result : err;
1995}
1996
1997static unsigned int snd_timer_user_poll(struct file *file, poll_table * wait)
1998{
1999 unsigned int mask;
Takashi Iwai53d2f742005-11-17 13:56:05 +01002000 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 tu = file->private_data;
2003
2004 poll_wait(file, &tu->qchange_sleep, wait);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 mask = 0;
2007 if (tu->qused)
2008 mask |= POLLIN | POLLRDNORM;
Takashi Iwai230323d2016-01-21 17:19:31 +01002009 if (tu->disconnected)
2010 mask |= POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 return mask;
2013}
2014
2015#ifdef CONFIG_COMPAT
2016#include "timer_compat.c"
2017#else
2018#define snd_timer_user_ioctl_compat NULL
2019#endif
2020
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08002021static const struct file_operations snd_timer_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
2023 .owner = THIS_MODULE,
2024 .read = snd_timer_user_read,
2025 .open = snd_timer_user_open,
2026 .release = snd_timer_user_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02002027 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 .poll = snd_timer_user_poll,
2029 .unlocked_ioctl = snd_timer_user_ioctl,
2030 .compat_ioctl = snd_timer_user_ioctl_compat,
2031 .fasync = snd_timer_user_fasync,
2032};
2033
Takashi Iwai7c358602015-01-29 18:09:05 +01002034/* unregister the system timer */
2035static void snd_timer_free_all(void)
2036{
2037 struct snd_timer *timer, *n;
2038
2039 list_for_each_entry_safe(timer, n, &snd_timer_list, device_list)
2040 snd_timer_free(timer);
2041}
2042
Takashi Iwai89da0612015-01-29 18:12:26 +01002043static struct device timer_dev;
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045/*
2046 * ENTRY functions
2047 */
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049static int __init alsa_timer_init(void)
2050{
2051 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Takashi Iwai89da0612015-01-29 18:12:26 +01002053 snd_device_initialize(&timer_dev, NULL);
2054 dev_set_name(&timer_dev, "timer");
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056#ifdef SNDRV_OSS_INFO_DEV_TIMERS
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002057 snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1,
2058 "system timer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059#endif
Takashi Iwaie28563c2005-12-01 10:42:42 +01002060
Takashi Iwai7c358602015-01-29 18:09:05 +01002061 err = snd_timer_register_system();
2062 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002063 pr_err("ALSA: unable to register system timer (%i)\n", err);
Takashi Iwai89da0612015-01-29 18:12:26 +01002064 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002065 return err;
2066 }
2067
Takashi Iwai40a4b262015-01-30 08:34:58 +01002068 err = snd_register_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0,
2069 &snd_timer_f_ops, NULL, &timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002070 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002071 pr_err("ALSA: unable to register timer device (%i)\n", err);
Takashi Iwai7c358602015-01-29 18:09:05 +01002072 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002073 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002074 return err;
2075 }
2076
Takashi Iwaie28563c2005-12-01 10:42:42 +01002077 snd_timer_proc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return 0;
2079}
2080
2081static void __exit alsa_timer_exit(void)
2082{
Takashi Iwai40a4b262015-01-30 08:34:58 +01002083 snd_unregister_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002084 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002085 put_device(&timer_dev);
Takashi Iwaie28563c2005-12-01 10:42:42 +01002086 snd_timer_proc_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087#ifdef SNDRV_OSS_INFO_DEV_TIMERS
2088 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1);
2089#endif
2090}
2091
2092module_init(alsa_timer_init)
2093module_exit(alsa_timer_exit)
2094
2095EXPORT_SYMBOL(snd_timer_open);
2096EXPORT_SYMBOL(snd_timer_close);
2097EXPORT_SYMBOL(snd_timer_resolution);
2098EXPORT_SYMBOL(snd_timer_start);
2099EXPORT_SYMBOL(snd_timer_stop);
2100EXPORT_SYMBOL(snd_timer_continue);
2101EXPORT_SYMBOL(snd_timer_pause);
2102EXPORT_SYMBOL(snd_timer_new);
2103EXPORT_SYMBOL(snd_timer_notify);
2104EXPORT_SYMBOL(snd_timer_global_new);
2105EXPORT_SYMBOL(snd_timer_global_free);
2106EXPORT_SYMBOL(snd_timer_global_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107EXPORT_SYMBOL(snd_timer_interrupt);