blob: 6051aed3197f02a1b2a5bc0bb3375bef08e0d47a [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010030#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
32#include <sound/timer.h>
33#include <sound/control.h>
34#include <sound/info.h>
35#include <sound/minors.h>
36#include <sound/initval.h>
37#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Takashi Iwai9f8a7652016-09-07 15:45:31 +020039/* internal flags */
40#define SNDRV_TIMER_IFLG_PAUSED 0x00010000
41
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010042#if IS_ENABLED(CONFIG_SND_HRTIMER)
Clemens Ladisch109fef92010-11-18 09:53:54 +010043#define DEFAULT_TIMER_LIMIT 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#else
45#define DEFAULT_TIMER_LIMIT 1
46#endif
47
48static int timer_limit = DEFAULT_TIMER_LIMIT;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010049static int timer_tstamp_monotonic = 1;
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020050MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051MODULE_DESCRIPTION("ALSA timer interface");
52MODULE_LICENSE("GPL");
53module_param(timer_limit, int, 0444);
54MODULE_PARM_DESC(timer_limit, "Maximum global timers in system.");
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010055module_param(timer_tstamp_monotonic, int, 0444);
56MODULE_PARM_DESC(timer_tstamp_monotonic, "Use posix monotonic clock source for timestamps (default).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Kay Sievers03cfe6f2010-11-23 17:43:19 +010058MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR, SNDRV_MINOR_TIMER);
59MODULE_ALIAS("devname:snd/timer");
60
Takashi Iwai53d2f7442005-11-17 13:56:05 +010061struct snd_timer_user {
62 struct snd_timer_instance *timeri;
Clemens Ladisch6b172a82005-10-12 17:20:21 +020063 int tread; /* enhanced read with timestamps and events */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 unsigned long ticks;
65 unsigned long overrun;
66 int qhead;
67 int qtail;
68 int qused;
69 int queue_size;
Takashi Iwai230323d2016-01-21 17:19:31 +010070 bool disconnected;
Takashi Iwai53d2f7442005-11-17 13:56:05 +010071 struct snd_timer_read *queue;
72 struct snd_timer_tread *tqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 spinlock_t qlock;
74 unsigned long last_resolution;
75 unsigned int filter;
76 struct timespec tstamp; /* trigger tstamp */
77 wait_queue_head_t qchange_sleep;
78 struct fasync_struct *fasync;
Takashi Iwaiaf368022016-01-13 17:48:01 +010079 struct mutex ioctl_lock;
Takashi Iwai53d2f7442005-11-17 13:56:05 +010080};
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/* list of timers */
83static LIST_HEAD(snd_timer_list);
84
85/* list of slave instances */
86static LIST_HEAD(snd_timer_slave_list);
87
88/* lock for slave active lists */
89static DEFINE_SPINLOCK(slave_active_lock);
90
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010091static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Takashi Iwai53d2f7442005-11-17 13:56:05 +010093static int snd_timer_free(struct snd_timer *timer);
94static int snd_timer_dev_free(struct snd_device *device);
95static int snd_timer_dev_register(struct snd_device *device);
Takashi Iwaic4614822006-06-23 14:38:23 +020096static int snd_timer_dev_disconnect(struct snd_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Takashi Iwai53d2f7442005-11-17 13:56:05 +010098static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
101 * create a timer instance with the given owner string.
102 * when timer is not NULL, increments the module counter
103 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100104static struct snd_timer_instance *snd_timer_instance_new(char *owner,
105 struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100107 struct snd_timer_instance *timeri;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200108 timeri = kzalloc(sizeof(*timeri), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (timeri == NULL)
110 return NULL;
Paulo Marques543537b2005-06-23 00:09:02 -0700111 timeri->owner = kstrdup(owner, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (! timeri->owner) {
113 kfree(timeri);
114 return NULL;
115 }
116 INIT_LIST_HEAD(&timeri->open_list);
117 INIT_LIST_HEAD(&timeri->active_list);
118 INIT_LIST_HEAD(&timeri->ack_list);
119 INIT_LIST_HEAD(&timeri->slave_list_head);
120 INIT_LIST_HEAD(&timeri->slave_active_head);
121
122 timeri->timer = timer;
Clemens Ladischde242142005-10-12 17:12:31 +0200123 if (timer && !try_module_get(timer->module)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 kfree(timeri->owner);
125 kfree(timeri);
126 return NULL;
127 }
128
129 return timeri;
130}
131
132/*
133 * find a timer instance from the given timer id
134 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100135static struct snd_timer *snd_timer_find(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100137 struct snd_timer *timer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Johannes Berg9244b2c2006-10-05 16:02:22 +0200139 list_for_each_entry(timer, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (timer->tmr_class != tid->dev_class)
141 continue;
142 if ((timer->tmr_class == SNDRV_TIMER_CLASS_CARD ||
143 timer->tmr_class == SNDRV_TIMER_CLASS_PCM) &&
144 (timer->card == NULL ||
145 timer->card->number != tid->card))
146 continue;
147 if (timer->tmr_device != tid->device)
148 continue;
149 if (timer->tmr_subdevice != tid->subdevice)
150 continue;
151 return timer;
152 }
153 return NULL;
154}
155
Johannes Bergee2da992008-07-09 10:28:41 +0200156#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100158static void snd_timer_request(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 switch (tid->dev_class) {
161 case SNDRV_TIMER_CLASS_GLOBAL:
162 if (tid->device < timer_limit)
163 request_module("snd-timer-%i", tid->device);
164 break;
165 case SNDRV_TIMER_CLASS_CARD:
166 case SNDRV_TIMER_CLASS_PCM:
167 if (tid->card < snd_ecards_limit)
168 request_module("snd-card-%i", tid->card);
169 break;
170 default:
171 break;
172 }
173}
174
175#endif
176
177/*
178 * look for a master instance matching with the slave id of the given slave.
179 * when found, relink the open_link of the slave.
180 *
181 * call this with register_mutex down.
182 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100183static void snd_timer_check_slave(struct snd_timer_instance *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100185 struct snd_timer *timer;
186 struct snd_timer_instance *master;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /* FIXME: it's really dumb to look up all entries.. */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200189 list_for_each_entry(timer, &snd_timer_list, device_list) {
190 list_for_each_entry(master, &timer->open_list_head, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (slave->slave_class == master->slave_class &&
192 slave->slave_id == master->slave_id) {
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100193 list_move_tail(&slave->open_list,
194 &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 spin_lock_irq(&slave_active_lock);
196 slave->master = master;
197 slave->timer = master->timer;
198 spin_unlock_irq(&slave_active_lock);
199 return;
200 }
201 }
202 }
203}
204
205/*
206 * look for slave instances matching with the slave id of the given master.
207 * when found, relink the open_link of slaves.
208 *
209 * call this with register_mutex down.
210 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100211static void snd_timer_check_master(struct snd_timer_instance *master)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200213 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* check all pending slaves */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200216 list_for_each_entry_safe(slave, tmp, &snd_timer_slave_list, open_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (slave->slave_class == master->slave_class &&
218 slave->slave_id == master->slave_id) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200219 list_move_tail(&slave->open_list, &master->slave_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 spin_lock_irq(&slave_active_lock);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100221 spin_lock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 slave->master = master;
223 slave->timer = master->timer;
224 if (slave->flags & SNDRV_TIMER_IFLG_RUNNING)
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200225 list_add_tail(&slave->active_list,
226 &master->slave_active_head);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100227 spin_unlock(&master->timer->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 spin_unlock_irq(&slave_active_lock);
229 }
230 }
231}
232
233/*
234 * open a timer instance
235 * when opening a master, the slave id must be here given.
236 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100237int snd_timer_open(struct snd_timer_instance **ti,
238 char *owner, struct snd_timer_id *tid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 unsigned int slave_id)
240{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100241 struct snd_timer *timer;
242 struct snd_timer_instance *timeri = NULL;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (tid->dev_class == SNDRV_TIMER_CLASS_SLAVE) {
245 /* open a slave instance */
246 if (tid->dev_sclass <= SNDRV_TIMER_SCLASS_NONE ||
247 tid->dev_sclass > SNDRV_TIMER_SCLASS_OSS_SEQUENCER) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100248 pr_debug("ALSA: timer: invalid slave class %i\n",
249 tid->dev_sclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return -EINVAL;
251 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100252 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 timeri = snd_timer_instance_new(owner, NULL);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200254 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100255 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200256 return -ENOMEM;
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 timeri->slave_class = tid->dev_sclass;
259 timeri->slave_id = tid->device;
260 timeri->flags |= SNDRV_TIMER_IFLG_SLAVE;
261 list_add_tail(&timeri->open_list, &snd_timer_slave_list);
262 snd_timer_check_slave(timeri);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100263 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *ti = timeri;
265 return 0;
266 }
267
268 /* open a master instance */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100269 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 timer = snd_timer_find(tid);
Johannes Bergee2da992008-07-09 10:28:41 +0200271#ifdef CONFIG_MODULES
272 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100273 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 snd_timer_request(tid);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100275 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 timer = snd_timer_find(tid);
277 }
278#endif
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200279 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100280 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return -ENODEV;
282 }
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200283 if (!list_empty(&timer->open_list_head)) {
284 timeri = list_entry(timer->open_list_head.next,
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100285 struct snd_timer_instance, open_list);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200286 if (timeri->flags & SNDRV_TIMER_IFLG_EXCLUSIVE) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100287 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200288 return -EBUSY;
289 }
290 }
291 timeri = snd_timer_instance_new(owner, timer);
292 if (!timeri) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100293 mutex_unlock(&register_mutex);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200294 return -ENOMEM;
295 }
Takashi Iwai230323d2016-01-21 17:19:31 +0100296 /* take a card refcount for safe disconnection */
297 if (timer->card)
298 get_device(&timer->card->card_dev);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200299 timeri->slave_class = tid->dev_sclass;
300 timeri->slave_id = slave_id;
Vegard Nossum8ddc0562016-08-29 00:33:51 +0200301
302 if (list_empty(&timer->open_list_head) && timer->hw.open) {
303 int err = timer->hw.open(timer);
304 if (err) {
305 kfree(timeri->owner);
306 kfree(timeri);
307
308 if (timer->card)
309 put_device(&timer->card->card_dev);
310 module_put(timer->module);
311 mutex_unlock(&register_mutex);
312 return err;
313 }
314 }
315
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200316 list_add_tail(&timeri->open_list, &timer->open_list_head);
317 snd_timer_check_master(timeri);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100318 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *ti = timeri;
320 return 0;
321}
Takashi Iwai98856392017-06-16 16:16:05 +0200322EXPORT_SYMBOL(snd_timer_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/*
325 * close a timer instance
326 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100327int snd_timer_close(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100329 struct snd_timer *timer = NULL;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200330 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Takashi Iwai00728892008-08-14 07:51:57 +0200332 if (snd_BUG_ON(!timeri))
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200333 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100335 mutex_lock(&register_mutex);
336 list_del(&timeri->open_list);
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* force to stop the timer */
339 snd_timer_stop(timeri);
340
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100341 timer = timeri->timer;
342 if (timer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* wait, until the active callback is finished */
344 spin_lock_irq(&timer->lock);
345 while (timeri->flags & SNDRV_TIMER_IFLG_CALLBACK) {
346 spin_unlock_irq(&timer->lock);
347 udelay(10);
348 spin_lock_irq(&timer->lock);
349 }
350 spin_unlock_irq(&timer->lock);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* remove slave links */
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100353 spin_lock_irq(&slave_active_lock);
354 spin_lock(&timer->lock);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200355 list_for_each_entry_safe(slave, tmp, &timeri->slave_list_head,
356 open_list) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200357 list_move_tail(&slave->open_list, &snd_timer_slave_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 slave->master = NULL;
359 slave->timer = NULL;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100360 list_del_init(&slave->ack_list);
361 list_del_init(&slave->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100363 spin_unlock(&timer->lock);
364 spin_unlock_irq(&slave_active_lock);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100365
366 /* slave doesn't need to release timer resources below */
367 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
368 timer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (timeri->private_free)
372 timeri->private_free(timeri);
373 kfree(timeri->owner);
374 kfree(timeri);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100375
376 if (timer) {
377 if (list_empty(&timer->open_list_head) && timer->hw.close)
378 timer->hw.close(timer);
379 /* release a card refcount for safe disconnection */
380 if (timer->card)
381 put_device(&timer->card->card_dev);
Clemens Ladischde242142005-10-12 17:12:31 +0200382 module_put(timer->module);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100383 }
384
385 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return 0;
387}
Takashi Iwai98856392017-06-16 16:16:05 +0200388EXPORT_SYMBOL(snd_timer_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100390unsigned long snd_timer_resolution(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100392 struct snd_timer * timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 if (timeri == NULL)
395 return 0;
Markus Elfringdd1f7ab2017-08-23 09:45:06 +0200396 timer = timeri->timer;
397 if (timer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (timer->hw.c_resolution)
399 return timer->hw.c_resolution(timer);
400 return timer->hw.resolution;
401 }
402 return 0;
403}
Takashi Iwai98856392017-06-16 16:16:05 +0200404EXPORT_SYMBOL(snd_timer_resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100406static void snd_timer_notify1(struct snd_timer_instance *ti, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100408 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 unsigned long resolution = 0;
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100410 struct snd_timer_instance *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct timespec tstamp;
412
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100413 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +0000414 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100415 else
416 getnstimeofday(&tstamp);
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200417 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_START ||
418 event > SNDRV_TIMER_EVENT_PAUSE))
419 return;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200420 if (event == SNDRV_TIMER_EVENT_START ||
421 event == SNDRV_TIMER_EVENT_CONTINUE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 resolution = snd_timer_resolution(ti);
423 if (ti->ccallback)
Jaroslav Kyselab30477d52010-03-03 11:05:55 +0100424 ti->ccallback(ti, event, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (ti->flags & SNDRV_TIMER_IFLG_SLAVE)
426 return;
427 timer = ti->timer;
428 if (timer == NULL)
429 return;
430 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
431 return;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200432 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (ts->ccallback)
Takashi Iwai117159f2016-02-08 17:36:25 +0100434 ts->ccallback(ts, event + 100, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100437/* start/continue a master timer */
438static int snd_timer_start1(struct snd_timer_instance *timeri,
439 bool start, unsigned long ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100441 struct snd_timer *timer;
442 int result;
443 unsigned long flags;
444
445 timer = timeri->timer;
446 if (!timer)
447 return -EINVAL;
448
449 spin_lock_irqsave(&timer->lock, flags);
450 if (timer->card && timer->card->shutdown) {
451 result = -ENODEV;
452 goto unlock;
453 }
454 if (timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
455 SNDRV_TIMER_IFLG_START)) {
456 result = -EBUSY;
457 goto unlock;
458 }
459
460 if (start)
461 timeri->ticks = timeri->cticks = ticks;
462 else if (!timeri->cticks)
463 timeri->cticks = 1;
464 timeri->pticks = 0;
465
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100466 list_move_tail(&timeri->active_list, &timer->active_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (timer->running) {
468 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
469 goto __start_now;
470 timer->flags |= SNDRV_TIMER_FLG_RESCHED;
471 timeri->flags |= SNDRV_TIMER_IFLG_START;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100472 result = 1; /* delayed start */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 } else {
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100474 if (start)
475 timer->sticks = ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 timer->hw.start(timer);
477 __start_now:
478 timer->running++;
479 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100480 result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100482 snd_timer_notify1(timeri, start ? SNDRV_TIMER_EVENT_START :
483 SNDRV_TIMER_EVENT_CONTINUE);
484 unlock:
485 spin_unlock_irqrestore(&timer->lock, flags);
486 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100489/* start/continue a slave timer */
490static int snd_timer_start_slave(struct snd_timer_instance *timeri,
491 bool start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 unsigned long flags;
494
495 spin_lock_irqsave(&slave_active_lock, flags);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100496 if (timeri->flags & SNDRV_TIMER_IFLG_RUNNING) {
497 spin_unlock_irqrestore(&slave_active_lock, flags);
498 return -EBUSY;
499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100501 if (timeri->master && timeri->timer) {
502 spin_lock(&timeri->timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200503 list_add_tail(&timeri->active_list,
504 &timeri->master->slave_active_head);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100505 snd_timer_notify1(timeri, start ? SNDRV_TIMER_EVENT_START :
506 SNDRV_TIMER_EVENT_CONTINUE);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100507 spin_unlock(&timeri->timer->lock);
508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 spin_unlock_irqrestore(&slave_active_lock, flags);
510 return 1; /* delayed start */
511}
512
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100513/* stop/pause a master timer */
514static int snd_timer_stop1(struct snd_timer_instance *timeri, bool stop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100516 struct snd_timer *timer;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100517 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 unsigned long flags;
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 timer = timeri->timer;
521 if (!timer)
522 return -EINVAL;
523 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100524 if (!(timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
525 SNDRV_TIMER_IFLG_START))) {
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100526 result = -EBUSY;
527 goto unlock;
Takashi Iwaif784beb2016-01-30 23:09:08 +0100528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 list_del_init(&timeri->ack_list);
530 list_del_init(&timeri->active_list);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100531 if (timer->card && timer->card->shutdown)
532 goto unlock;
533 if (stop) {
534 timeri->cticks = timeri->ticks;
535 timeri->pticks = 0;
Takashi Iwai230323d2016-01-21 17:19:31 +0100536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if ((timeri->flags & SNDRV_TIMER_IFLG_RUNNING) &&
538 !(--timer->running)) {
539 timer->hw.stop(timer);
540 if (timer->flags & SNDRV_TIMER_FLG_RESCHED) {
541 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
542 snd_timer_reschedule(timer, 0);
543 if (timer->flags & SNDRV_TIMER_FLG_CHANGE) {
544 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
545 timer->hw.start(timer);
546 }
547 }
548 }
Takashi Iwaic3b16812016-01-14 17:01:46 +0100549 timeri->flags &= ~(SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START);
Takashi Iwai9f8a7652016-09-07 15:45:31 +0200550 if (stop)
551 timeri->flags &= ~SNDRV_TIMER_IFLG_PAUSED;
552 else
553 timeri->flags |= SNDRV_TIMER_IFLG_PAUSED;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100554 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP :
555 SNDRV_TIMER_EVENT_CONTINUE);
556 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 spin_unlock_irqrestore(&timer->lock, flags);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100558 return result;
559}
560
561/* stop/pause a slave timer */
562static int snd_timer_stop_slave(struct snd_timer_instance *timeri, bool stop)
563{
564 unsigned long flags;
565
566 spin_lock_irqsave(&slave_active_lock, flags);
567 if (!(timeri->flags & SNDRV_TIMER_IFLG_RUNNING)) {
568 spin_unlock_irqrestore(&slave_active_lock, flags);
569 return -EBUSY;
570 }
571 timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
572 if (timeri->timer) {
573 spin_lock(&timeri->timer->lock);
574 list_del_init(&timeri->ack_list);
575 list_del_init(&timeri->active_list);
576 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP :
577 SNDRV_TIMER_EVENT_CONTINUE);
578 spin_unlock(&timeri->timer->lock);
579 }
580 spin_unlock_irqrestore(&slave_active_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 0;
582}
583
584/*
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100585 * start the timer instance
586 */
587int snd_timer_start(struct snd_timer_instance *timeri, unsigned int ticks)
588{
589 if (timeri == NULL || ticks < 1)
590 return -EINVAL;
591 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
592 return snd_timer_start_slave(timeri, true);
593 else
594 return snd_timer_start1(timeri, true, ticks);
595}
Takashi Iwai98856392017-06-16 16:16:05 +0200596EXPORT_SYMBOL(snd_timer_start);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100597
598/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * stop the timer instance.
600 *
601 * do not call this from the timer callback!
602 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100603int snd_timer_stop(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100605 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
606 return snd_timer_stop_slave(timeri, true);
607 else
608 return snd_timer_stop1(timeri, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
Takashi Iwai98856392017-06-16 16:16:05 +0200610EXPORT_SYMBOL(snd_timer_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612/*
613 * start again.. the tick is kept.
614 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100615int snd_timer_continue(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Takashi Iwai9f8a7652016-09-07 15:45:31 +0200617 /* timer can continue only after pause */
618 if (!(timeri->flags & SNDRV_TIMER_IFLG_PAUSED))
619 return -EINVAL;
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100622 return snd_timer_start_slave(timeri, false);
623 else
624 return snd_timer_start1(timeri, false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
Takashi Iwai98856392017-06-16 16:16:05 +0200626EXPORT_SYMBOL(snd_timer_continue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628/*
629 * pause.. remember the ticks left
630 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100631int snd_timer_pause(struct snd_timer_instance * timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100633 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
634 return snd_timer_stop_slave(timeri, false);
635 else
636 return snd_timer_stop1(timeri, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
Takashi Iwai98856392017-06-16 16:16:05 +0200638EXPORT_SYMBOL(snd_timer_pause);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640/*
641 * reschedule the timer
642 *
643 * start pending instances and check the scheduling ticks.
644 * when the scheduling ticks is changed set CHANGE flag to reprogram the timer.
645 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100646static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100648 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 unsigned long ticks = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Johannes Berg9244b2c2006-10-05 16:02:22 +0200651 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (ti->flags & SNDRV_TIMER_IFLG_START) {
653 ti->flags &= ~SNDRV_TIMER_IFLG_START;
654 ti->flags |= SNDRV_TIMER_IFLG_RUNNING;
655 timer->running++;
656 }
657 if (ti->flags & SNDRV_TIMER_IFLG_RUNNING) {
658 if (ticks > ti->cticks)
659 ticks = ti->cticks;
660 }
661 }
662 if (ticks == ~0UL) {
663 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
664 return;
665 }
666 if (ticks > timer->hw.ticks)
667 ticks = timer->hw.ticks;
668 if (ticks_left != ticks)
669 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
670 timer->sticks = ticks;
671}
672
673/*
674 * timer tasklet
675 *
676 */
677static void snd_timer_tasklet(unsigned long arg)
678{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100679 struct snd_timer *timer = (struct snd_timer *) arg;
680 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct list_head *p;
682 unsigned long resolution, ticks;
Takashi Iwai2999ff52006-07-05 17:16:58 +0200683 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Takashi Iwai230323d2016-01-21 17:19:31 +0100685 if (timer->card && timer->card->shutdown)
686 return;
687
Takashi Iwai2999ff52006-07-05 17:16:58 +0200688 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /* now process all callbacks */
690 while (!list_empty(&timer->sack_list_head)) {
691 p = timer->sack_list_head.next; /* get first item */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100692 ti = list_entry(p, struct snd_timer_instance, ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /* remove from ack_list and make empty */
695 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 ticks = ti->pticks;
698 ti->pticks = 0;
699 resolution = ti->resolution;
700
701 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
702 spin_unlock(&timer->lock);
703 if (ti->callback)
704 ti->callback(ti, resolution, ticks);
705 spin_lock(&timer->lock);
706 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
707 }
Takashi Iwai2999ff52006-07-05 17:16:58 +0200708 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711/*
712 * timer interrupt
713 *
714 * ticks_left is usually equal to timer->sticks.
715 *
716 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100717void snd_timer_interrupt(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200719 struct snd_timer_instance *ti, *ts, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 unsigned long resolution, ticks;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200721 struct list_head *p, *ack_list_head;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100722 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int use_tasklet = 0;
724
725 if (timer == NULL)
726 return;
727
Takashi Iwai230323d2016-01-21 17:19:31 +0100728 if (timer->card && timer->card->shutdown)
729 return;
730
Takashi Iwaib32425a2005-11-18 18:52:14 +0100731 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* remember the current resolution */
734 if (timer->hw.c_resolution)
735 resolution = timer->hw.c_resolution(timer);
736 else
737 resolution = timer->hw.resolution;
738
739 /* loop for all active instances
Johannes Berg9244b2c2006-10-05 16:02:22 +0200740 * Here we cannot use list_for_each_entry because the active_list of a
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200741 * processed instance is relinked to done_list_head before the callback
742 * is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200744 list_for_each_entry_safe(ti, tmp, &timer->active_list_head,
745 active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!(ti->flags & SNDRV_TIMER_IFLG_RUNNING))
747 continue;
748 ti->pticks += ticks_left;
749 ti->resolution = resolution;
750 if (ti->cticks < ticks_left)
751 ti->cticks = 0;
752 else
753 ti->cticks -= ticks_left;
754 if (ti->cticks) /* not expired */
755 continue;
756 if (ti->flags & SNDRV_TIMER_IFLG_AUTO) {
757 ti->cticks = ti->ticks;
758 } else {
759 ti->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwai094fd3b2016-02-04 17:06:13 +0100760 --timer->running;
761 list_del_init(&ti->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200763 if ((timer->hw.flags & SNDRV_TIMER_HW_TASKLET) ||
764 (ti->flags & SNDRV_TIMER_IFLG_FAST))
765 ack_list_head = &timer->ack_list_head;
766 else
767 ack_list_head = &timer->sack_list_head;
768 if (list_empty(&ti->ack_list))
769 list_add_tail(&ti->ack_list, ack_list_head);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200770 list_for_each_entry(ts, &ti->slave_active_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 ts->pticks = ti->pticks;
772 ts->resolution = resolution;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200773 if (list_empty(&ts->ack_list))
774 list_add_tail(&ts->ack_list, ack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776 }
777 if (timer->flags & SNDRV_TIMER_FLG_RESCHED)
Clemens Ladischcd93fe42006-07-17 16:53:57 +0200778 snd_timer_reschedule(timer, timer->sticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (timer->running) {
780 if (timer->hw.flags & SNDRV_TIMER_HW_STOP) {
781 timer->hw.stop(timer);
782 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
783 }
784 if (!(timer->hw.flags & SNDRV_TIMER_HW_AUTO) ||
785 (timer->flags & SNDRV_TIMER_FLG_CHANGE)) {
786 /* restart timer */
787 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
788 timer->hw.start(timer);
789 }
790 } else {
791 timer->hw.stop(timer);
792 }
793
794 /* now process all fast callbacks */
795 while (!list_empty(&timer->ack_list_head)) {
796 p = timer->ack_list_head.next; /* get first item */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100797 ti = list_entry(p, struct snd_timer_instance, ack_list);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /* remove from ack_list and make empty */
800 list_del_init(p);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 ticks = ti->pticks;
803 ti->pticks = 0;
804
805 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
806 spin_unlock(&timer->lock);
807 if (ti->callback)
808 ti->callback(ti, resolution, ticks);
809 spin_lock(&timer->lock);
810 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
811 }
812
813 /* do we have any slow callbacks? */
814 use_tasklet = !list_empty(&timer->sack_list_head);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100815 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 if (use_tasklet)
Takashi Iwai1f041282008-12-18 12:17:55 +0100818 tasklet_schedule(&timer->task_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
Takashi Iwai98856392017-06-16 16:16:05 +0200820EXPORT_SYMBOL(snd_timer_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822/*
823
824 */
825
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100826int snd_timer_new(struct snd_card *card, char *id, struct snd_timer_id *tid,
827 struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100829 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 int err;
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100831 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 .dev_free = snd_timer_dev_free,
833 .dev_register = snd_timer_dev_register,
Takashi Iwaic4614822006-06-23 14:38:23 +0200834 .dev_disconnect = snd_timer_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 };
836
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200837 if (snd_BUG_ON(!tid))
838 return -EINVAL;
839 if (rtimer)
840 *rtimer = NULL;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200841 timer = kzalloc(sizeof(*timer), GFP_KERNEL);
Takashi Iwaiec0e9932015-03-10 15:42:14 +0100842 if (!timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return -ENOMEM;
844 timer->tmr_class = tid->dev_class;
845 timer->card = card;
846 timer->tmr_device = tid->device;
847 timer->tmr_subdevice = tid->subdevice;
848 if (id)
849 strlcpy(timer->id, id, sizeof(timer->id));
Vegard Nossum6b760bb2016-08-29 00:33:50 +0200850 timer->sticks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 INIT_LIST_HEAD(&timer->device_list);
852 INIT_LIST_HEAD(&timer->open_list_head);
853 INIT_LIST_HEAD(&timer->active_list_head);
854 INIT_LIST_HEAD(&timer->ack_list_head);
855 INIT_LIST_HEAD(&timer->sack_list_head);
856 spin_lock_init(&timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200857 tasklet_init(&timer->task_queue, snd_timer_tasklet,
858 (unsigned long)timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (card != NULL) {
Clemens Ladischde242142005-10-12 17:12:31 +0200860 timer->module = card->module;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200861 err = snd_device_new(card, SNDRV_DEV_TIMER, timer, &ops);
862 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 snd_timer_free(timer);
864 return err;
865 }
866 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200867 if (rtimer)
868 *rtimer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return 0;
870}
Takashi Iwai98856392017-06-16 16:16:05 +0200871EXPORT_SYMBOL(snd_timer_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100873static int snd_timer_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200875 if (!timer)
876 return 0;
Takashi Iwaic4614822006-06-23 14:38:23 +0200877
878 mutex_lock(&register_mutex);
879 if (! list_empty(&timer->open_list_head)) {
880 struct list_head *p, *n;
881 struct snd_timer_instance *ti;
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100882 pr_warn("ALSA: timer %p is busy?\n", timer);
Takashi Iwaic4614822006-06-23 14:38:23 +0200883 list_for_each_safe(p, n, &timer->open_list_head) {
884 list_del_init(p);
885 ti = list_entry(p, struct snd_timer_instance, open_list);
886 ti->timer = NULL;
887 }
888 }
889 list_del(&timer->device_list);
890 mutex_unlock(&register_mutex);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (timer->private_free)
893 timer->private_free(timer);
894 kfree(timer);
895 return 0;
896}
897
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100898static int snd_timer_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100900 struct snd_timer *timer = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return snd_timer_free(timer);
902}
903
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100904static int snd_timer_dev_register(struct snd_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100906 struct snd_timer *timer = dev->device_data;
907 struct snd_timer *timer1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200909 if (snd_BUG_ON(!timer || !timer->hw.start || !timer->hw.stop))
910 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!(timer->hw.flags & SNDRV_TIMER_HW_SLAVE) &&
912 !timer->hw.resolution && timer->hw.c_resolution == NULL)
913 return -EINVAL;
914
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100915 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200916 list_for_each_entry(timer1, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (timer1->tmr_class > timer->tmr_class)
918 break;
919 if (timer1->tmr_class < timer->tmr_class)
920 continue;
921 if (timer1->card && timer->card) {
922 if (timer1->card->number > timer->card->number)
923 break;
924 if (timer1->card->number < timer->card->number)
925 continue;
926 }
927 if (timer1->tmr_device > timer->tmr_device)
928 break;
929 if (timer1->tmr_device < timer->tmr_device)
930 continue;
931 if (timer1->tmr_subdevice > timer->tmr_subdevice)
932 break;
933 if (timer1->tmr_subdevice < timer->tmr_subdevice)
934 continue;
935 /* conflicts.. */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100936 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return -EBUSY;
938 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200939 list_add_tail(&timer->device_list, &timer1->device_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100940 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return 0;
942}
943
Takashi Iwaic4614822006-06-23 14:38:23 +0200944static int snd_timer_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100946 struct snd_timer *timer = device->device_data;
Takashi Iwai230323d2016-01-21 17:19:31 +0100947 struct snd_timer_instance *ti;
948
Takashi Iwaic4614822006-06-23 14:38:23 +0200949 mutex_lock(&register_mutex);
950 list_del_init(&timer->device_list);
Takashi Iwai230323d2016-01-21 17:19:31 +0100951 /* wake up pending sleepers */
952 list_for_each_entry(ti, &timer->open_list_head, open_list) {
Takashi Iwai40ed9442016-01-21 17:43:08 +0100953 if (ti->disconnect)
954 ti->disconnect(ti);
Takashi Iwai230323d2016-01-21 17:19:31 +0100955 }
Takashi Iwaic4614822006-06-23 14:38:23 +0200956 mutex_unlock(&register_mutex);
957 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100960void snd_timer_notify(struct snd_timer *timer, int event, struct timespec *tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
962 unsigned long flags;
963 unsigned long resolution = 0;
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100964 struct snd_timer_instance *ti, *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Takashi Iwai230323d2016-01-21 17:19:31 +0100966 if (timer->card && timer->card->shutdown)
967 return;
Takashi Iwai7c22f1a2005-10-10 11:46:31 +0200968 if (! (timer->hw.flags & SNDRV_TIMER_HW_SLAVE))
969 return;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200970 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_MSTART ||
971 event > SNDRV_TIMER_EVENT_MRESUME))
972 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 spin_lock_irqsave(&timer->lock, flags);
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +0200974 if (event == SNDRV_TIMER_EVENT_MSTART ||
975 event == SNDRV_TIMER_EVENT_MCONTINUE ||
976 event == SNDRV_TIMER_EVENT_MRESUME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (timer->hw.c_resolution)
978 resolution = timer->hw.c_resolution(timer);
979 else
980 resolution = timer->hw.resolution;
981 }
Johannes Berg9244b2c2006-10-05 16:02:22 +0200982 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (ti->ccallback)
984 ti->ccallback(ti, event, tstamp, resolution);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200985 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (ts->ccallback)
987 ts->ccallback(ts, event, tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989 spin_unlock_irqrestore(&timer->lock, flags);
990}
Takashi Iwai98856392017-06-16 16:16:05 +0200991EXPORT_SYMBOL(snd_timer_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993/*
994 * exported functions for global timers
995 */
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100996int snd_timer_global_new(char *id, int device, struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Takashi Iwai53d2f7442005-11-17 13:56:05 +0100998 struct snd_timer_id tid;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
1001 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1002 tid.card = -1;
1003 tid.device = device;
1004 tid.subdevice = 0;
1005 return snd_timer_new(NULL, id, &tid, rtimer);
1006}
Takashi Iwai98856392017-06-16 16:16:05 +02001007EXPORT_SYMBOL(snd_timer_global_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001009int snd_timer_global_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
1011 return snd_timer_free(timer);
1012}
Takashi Iwai98856392017-06-16 16:16:05 +02001013EXPORT_SYMBOL(snd_timer_global_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001015int snd_timer_global_register(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001017 struct snd_device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 memset(&dev, 0, sizeof(dev));
1020 dev.device_data = timer;
1021 return snd_timer_dev_register(&dev);
1022}
Takashi Iwai98856392017-06-16 16:16:05 +02001023EXPORT_SYMBOL(snd_timer_global_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001025/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 * System timer
1027 */
1028
1029struct snd_timer_system_private {
1030 struct timer_list tlist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 unsigned long last_expires;
1032 unsigned long last_jiffies;
1033 unsigned long correction;
1034};
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036static void snd_timer_s_function(unsigned long data)
1037{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001038 struct snd_timer *timer = (struct snd_timer *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 struct snd_timer_system_private *priv = timer->private_data;
1040 unsigned long jiff = jiffies;
1041 if (time_after(jiff, priv->last_expires))
Clemens Ladisch6ed5eff2006-07-17 16:51:37 +02001042 priv->correction += (long)jiff - (long)priv->last_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 snd_timer_interrupt(timer, (long)jiff - (long)priv->last_jiffies);
1044}
1045
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001046static int snd_timer_s_start(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 struct snd_timer_system_private *priv;
1049 unsigned long njiff;
1050
1051 priv = (struct snd_timer_system_private *) timer->private_data;
1052 njiff = (priv->last_jiffies = jiffies);
1053 if (priv->correction > timer->sticks - 1) {
1054 priv->correction -= timer->sticks - 1;
1055 njiff++;
1056 } else {
1057 njiff += timer->sticks - priv->correction;
Clemens Ladisch17f48ec2006-07-17 16:50:56 +02001058 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
Takashi Iwai4a070832016-04-01 12:28:16 +02001060 priv->last_expires = njiff;
1061 mod_timer(&priv->tlist, njiff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return 0;
1063}
1064
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001065static int snd_timer_s_stop(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 struct snd_timer_system_private *priv;
1068 unsigned long jiff;
1069
1070 priv = (struct snd_timer_system_private *) timer->private_data;
1071 del_timer(&priv->tlist);
1072 jiff = jiffies;
1073 if (time_before(jiff, priv->last_expires))
1074 timer->sticks = priv->last_expires - jiff;
1075 else
1076 timer->sticks = 1;
Clemens Ladischde2696d2006-07-17 16:52:09 +02001077 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return 0;
1079}
1080
Takashi Iwaif1463572016-02-02 14:14:10 +01001081static int snd_timer_s_close(struct snd_timer *timer)
1082{
1083 struct snd_timer_system_private *priv;
1084
1085 priv = (struct snd_timer_system_private *)timer->private_data;
1086 del_timer_sync(&priv->tlist);
1087 return 0;
1088}
1089
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001090static struct snd_timer_hardware snd_timer_system =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 .flags = SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET,
1093 .resolution = 1000000000L / HZ,
1094 .ticks = 10000000L,
Takashi Iwaif1463572016-02-02 14:14:10 +01001095 .close = snd_timer_s_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 .start = snd_timer_s_start,
1097 .stop = snd_timer_s_stop
1098};
1099
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001100static void snd_timer_free_system(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
1102 kfree(timer->private_data);
1103}
1104
1105static int snd_timer_register_system(void)
1106{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001107 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 struct snd_timer_system_private *priv;
1109 int err;
1110
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001111 err = snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM, &timer);
1112 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return err;
1114 strcpy(timer->name, "system timer");
1115 timer->hw = snd_timer_system;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001116 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (priv == NULL) {
1118 snd_timer_free(timer);
1119 return -ENOMEM;
1120 }
Takashi Iwaif169c102015-01-19 11:26:25 +01001121 setup_timer(&priv->tlist, snd_timer_s_function, (unsigned long) timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 timer->private_data = priv;
1123 timer->private_free = snd_timer_free_system;
1124 return snd_timer_global_register(timer);
1125}
1126
Jie Yangcd6a6502015-05-27 19:45:45 +08001127#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128/*
1129 * Info interface
1130 */
1131
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001132static void snd_timer_proc_read(struct snd_info_entry *entry,
1133 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001135 struct snd_timer *timer;
1136 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001138 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001139 list_for_each_entry(timer, &snd_timer_list, device_list) {
Takashi Iwai230323d2016-01-21 17:19:31 +01001140 if (timer->card && timer->card->shutdown)
1141 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 switch (timer->tmr_class) {
1143 case SNDRV_TIMER_CLASS_GLOBAL:
1144 snd_iprintf(buffer, "G%i: ", timer->tmr_device);
1145 break;
1146 case SNDRV_TIMER_CLASS_CARD:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001147 snd_iprintf(buffer, "C%i-%i: ",
1148 timer->card->number, timer->tmr_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
1150 case SNDRV_TIMER_CLASS_PCM:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001151 snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
1152 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 break;
1154 default:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001155 snd_iprintf(buffer, "?%i-%i-%i-%i: ", timer->tmr_class,
1156 timer->card ? timer->card->number : -1,
1157 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159 snd_iprintf(buffer, "%s :", timer->name);
1160 if (timer->hw.resolution)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001161 snd_iprintf(buffer, " %lu.%03luus (%lu ticks)",
1162 timer->hw.resolution / 1000,
1163 timer->hw.resolution % 1000,
1164 timer->hw.ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
1166 snd_iprintf(buffer, " SLAVE");
1167 snd_iprintf(buffer, "\n");
Johannes Berg9244b2c2006-10-05 16:02:22 +02001168 list_for_each_entry(ti, &timer->open_list_head, open_list)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001169 snd_iprintf(buffer, " Client %s : %s\n",
1170 ti->owner ? ti->owner : "unknown",
1171 ti->flags & (SNDRV_TIMER_IFLG_START |
1172 SNDRV_TIMER_IFLG_RUNNING)
1173 ? "running" : "stopped");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001175 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
Takashi Iwai6581f4e2006-05-17 17:14:51 +02001178static struct snd_info_entry *snd_timer_proc_entry;
Takashi Iwaie28563c2005-12-01 10:42:42 +01001179
1180static void __init snd_timer_proc_init(void)
1181{
1182 struct snd_info_entry *entry;
1183
1184 entry = snd_info_create_module_entry(THIS_MODULE, "timers", NULL);
1185 if (entry != NULL) {
Takashi Iwaie28563c2005-12-01 10:42:42 +01001186 entry->c.text.read = snd_timer_proc_read;
1187 if (snd_info_register(entry) < 0) {
1188 snd_info_free_entry(entry);
1189 entry = NULL;
1190 }
1191 }
1192 snd_timer_proc_entry = entry;
1193}
1194
1195static void __exit snd_timer_proc_done(void)
1196{
Takashi Iwai746d4a02006-06-23 14:37:59 +02001197 snd_info_free_entry(snd_timer_proc_entry);
Takashi Iwaie28563c2005-12-01 10:42:42 +01001198}
Jie Yangcd6a6502015-05-27 19:45:45 +08001199#else /* !CONFIG_SND_PROC_FS */
Takashi Iwaie28563c2005-12-01 10:42:42 +01001200#define snd_timer_proc_init()
1201#define snd_timer_proc_done()
1202#endif
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204/*
1205 * USER SPACE interface
1206 */
1207
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001208static void snd_timer_user_interrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 unsigned long resolution,
1210 unsigned long ticks)
1211{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001212 struct snd_timer_user *tu = timeri->callback_data;
1213 struct snd_timer_read *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 int prev;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 spin_lock(&tu->qlock);
1217 if (tu->qused > 0) {
1218 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1219 r = &tu->queue[prev];
1220 if (r->resolution == resolution) {
1221 r->ticks += ticks;
1222 goto __wake;
1223 }
1224 }
1225 if (tu->qused >= tu->queue_size) {
1226 tu->overrun++;
1227 } else {
1228 r = &tu->queue[tu->qtail++];
1229 tu->qtail %= tu->queue_size;
1230 r->resolution = resolution;
1231 r->ticks = ticks;
1232 tu->qused++;
1233 }
1234 __wake:
1235 spin_unlock(&tu->qlock);
1236 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1237 wake_up(&tu->qchange_sleep);
1238}
1239
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001240static void snd_timer_user_append_to_tqueue(struct snd_timer_user *tu,
1241 struct snd_timer_tread *tread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
1243 if (tu->qused >= tu->queue_size) {
1244 tu->overrun++;
1245 } else {
1246 memcpy(&tu->tqueue[tu->qtail++], tread, sizeof(*tread));
1247 tu->qtail %= tu->queue_size;
1248 tu->qused++;
1249 }
1250}
1251
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001252static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
1253 int event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 struct timespec *tstamp,
1255 unsigned long resolution)
1256{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001257 struct snd_timer_user *tu = timeri->callback_data;
1258 struct snd_timer_tread r1;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001259 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001261 if (event >= SNDRV_TIMER_EVENT_START &&
1262 event <= SNDRV_TIMER_EVENT_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 tu->tstamp = *tstamp;
1264 if ((tu->filter & (1 << event)) == 0 || !tu->tread)
1265 return;
Kangjie Lu9a47e9c2016-05-03 16:44:20 -04001266 memset(&r1, 0, sizeof(r1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 r1.event = event;
1268 r1.tstamp = *tstamp;
1269 r1.val = resolution;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001270 spin_lock_irqsave(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 snd_timer_user_append_to_tqueue(tu, &r1);
Dan Carpenterbfe70782010-04-28 10:29:14 +02001272 spin_unlock_irqrestore(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1274 wake_up(&tu->qchange_sleep);
1275}
1276
Takashi Iwai40ed9442016-01-21 17:43:08 +01001277static void snd_timer_user_disconnect(struct snd_timer_instance *timeri)
1278{
1279 struct snd_timer_user *tu = timeri->callback_data;
1280
1281 tu->disconnected = true;
1282 wake_up(&tu->qchange_sleep);
1283}
1284
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001285static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 unsigned long resolution,
1287 unsigned long ticks)
1288{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001289 struct snd_timer_user *tu = timeri->callback_data;
1290 struct snd_timer_tread *r, r1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct timespec tstamp;
1292 int prev, append = 0;
1293
Dan Carpentera8c006a2017-03-31 18:22:23 +03001294 memset(&r1, 0, sizeof(r1));
Takashi Iwai07799e72005-10-10 11:49:49 +02001295 memset(&tstamp, 0, sizeof(tstamp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 spin_lock(&tu->qlock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001297 if ((tu->filter & ((1 << SNDRV_TIMER_EVENT_RESOLUTION) |
1298 (1 << SNDRV_TIMER_EVENT_TICK))) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 spin_unlock(&tu->qlock);
1300 return;
1301 }
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001302 if (tu->last_resolution != resolution || ticks > 0) {
1303 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +00001304 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001305 else
1306 getnstimeofday(&tstamp);
1307 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001308 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
1309 tu->last_resolution != resolution) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
1311 r1.tstamp = tstamp;
1312 r1.val = resolution;
1313 snd_timer_user_append_to_tqueue(tu, &r1);
1314 tu->last_resolution = resolution;
1315 append++;
1316 }
1317 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_TICK)) == 0)
1318 goto __wake;
1319 if (ticks == 0)
1320 goto __wake;
1321 if (tu->qused > 0) {
1322 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1323 r = &tu->tqueue[prev];
1324 if (r->event == SNDRV_TIMER_EVENT_TICK) {
1325 r->tstamp = tstamp;
1326 r->val += ticks;
1327 append++;
1328 goto __wake;
1329 }
1330 }
1331 r1.event = SNDRV_TIMER_EVENT_TICK;
1332 r1.tstamp = tstamp;
1333 r1.val = ticks;
1334 snd_timer_user_append_to_tqueue(tu, &r1);
1335 append++;
1336 __wake:
1337 spin_unlock(&tu->qlock);
1338 if (append == 0)
1339 return;
1340 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1341 wake_up(&tu->qchange_sleep);
1342}
1343
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001344static int realloc_user_queue(struct snd_timer_user *tu, int size)
1345{
1346 struct snd_timer_read *queue = NULL;
1347 struct snd_timer_tread *tqueue = NULL;
1348
1349 if (tu->tread) {
1350 tqueue = kcalloc(size, sizeof(*tqueue), GFP_KERNEL);
1351 if (!tqueue)
1352 return -ENOMEM;
1353 } else {
1354 queue = kcalloc(size, sizeof(*queue), GFP_KERNEL);
1355 if (!queue)
1356 return -ENOMEM;
1357 }
1358
1359 spin_lock_irq(&tu->qlock);
1360 kfree(tu->queue);
1361 kfree(tu->tqueue);
1362 tu->queue_size = size;
1363 tu->queue = queue;
1364 tu->tqueue = tqueue;
1365 tu->qhead = tu->qtail = tu->qused = 0;
1366 spin_unlock_irq(&tu->qlock);
1367
1368 return 0;
1369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371static int snd_timer_user_open(struct inode *inode, struct file *file)
1372{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001373 struct snd_timer_user *tu;
Takashi Iwai02f48652010-04-13 11:49:04 +02001374 int err;
1375
1376 err = nonseekable_open(inode, file);
1377 if (err < 0)
1378 return err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001379
Takashi Iwaica2c0962005-09-09 14:20:23 +02001380 tu = kzalloc(sizeof(*tu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 if (tu == NULL)
1382 return -ENOMEM;
1383 spin_lock_init(&tu->qlock);
1384 init_waitqueue_head(&tu->qchange_sleep);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001385 mutex_init(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 tu->ticks = 1;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001387 if (realloc_user_queue(tu, 128) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 kfree(tu);
1389 return -ENOMEM;
1390 }
1391 file->private_data = tu;
1392 return 0;
1393}
1394
1395static int snd_timer_user_release(struct inode *inode, struct file *file)
1396{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001397 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 if (file->private_data) {
1400 tu = file->private_data;
1401 file->private_data = NULL;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001402 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (tu->timeri)
1404 snd_timer_close(tu->timeri);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001405 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 kfree(tu->queue);
1407 kfree(tu->tqueue);
1408 kfree(tu);
1409 }
1410 return 0;
1411}
1412
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001413static void snd_timer_user_zero_id(struct snd_timer_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 id->dev_class = SNDRV_TIMER_CLASS_NONE;
1416 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1417 id->card = -1;
1418 id->device = -1;
1419 id->subdevice = -1;
1420}
1421
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001422static void snd_timer_user_copy_id(struct snd_timer_id *id, struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 id->dev_class = timer->tmr_class;
1425 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1426 id->card = timer->card ? timer->card->number : -1;
1427 id->device = timer->tmr_device;
1428 id->subdevice = timer->tmr_subdevice;
1429}
1430
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001431static int snd_timer_user_next_device(struct snd_timer_id __user *_tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001433 struct snd_timer_id id;
1434 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 struct list_head *p;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (copy_from_user(&id, _tid, sizeof(id)))
1438 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001439 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (id.dev_class < 0) { /* first item */
1441 if (list_empty(&snd_timer_list))
1442 snd_timer_user_zero_id(&id);
1443 else {
Clemens Ladisch9dfba382005-10-12 17:14:55 +02001444 timer = list_entry(snd_timer_list.next,
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001445 struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 snd_timer_user_copy_id(&id, timer);
1447 }
1448 } else {
1449 switch (id.dev_class) {
1450 case SNDRV_TIMER_CLASS_GLOBAL:
1451 id.device = id.device < 0 ? 0 : id.device + 1;
1452 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001453 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (timer->tmr_class > SNDRV_TIMER_CLASS_GLOBAL) {
1455 snd_timer_user_copy_id(&id, timer);
1456 break;
1457 }
1458 if (timer->tmr_device >= id.device) {
1459 snd_timer_user_copy_id(&id, timer);
1460 break;
1461 }
1462 }
1463 if (p == &snd_timer_list)
1464 snd_timer_user_zero_id(&id);
1465 break;
1466 case SNDRV_TIMER_CLASS_CARD:
1467 case SNDRV_TIMER_CLASS_PCM:
1468 if (id.card < 0) {
1469 id.card = 0;
1470 } else {
Dan Carpentere8ed6822017-03-31 18:21:41 +03001471 if (id.device < 0) {
1472 id.device = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 } else {
Dan Carpentere8ed6822017-03-31 18:21:41 +03001474 if (id.subdevice < 0)
1475 id.subdevice = 0;
1476 else
1477 id.subdevice++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
1479 }
1480 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001481 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (timer->tmr_class > id.dev_class) {
1483 snd_timer_user_copy_id(&id, timer);
1484 break;
1485 }
1486 if (timer->tmr_class < id.dev_class)
1487 continue;
1488 if (timer->card->number > id.card) {
1489 snd_timer_user_copy_id(&id, timer);
1490 break;
1491 }
1492 if (timer->card->number < id.card)
1493 continue;
1494 if (timer->tmr_device > id.device) {
1495 snd_timer_user_copy_id(&id, timer);
1496 break;
1497 }
1498 if (timer->tmr_device < id.device)
1499 continue;
1500 if (timer->tmr_subdevice > id.subdevice) {
1501 snd_timer_user_copy_id(&id, timer);
1502 break;
1503 }
1504 if (timer->tmr_subdevice < id.subdevice)
1505 continue;
1506 snd_timer_user_copy_id(&id, timer);
1507 break;
1508 }
1509 if (p == &snd_timer_list)
1510 snd_timer_user_zero_id(&id);
1511 break;
1512 default:
1513 snd_timer_user_zero_id(&id);
1514 }
1515 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001516 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (copy_to_user(_tid, &id, sizeof(*_tid)))
1518 return -EFAULT;
1519 return 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001520}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001522static int snd_timer_user_ginfo(struct file *file,
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001523 struct snd_timer_ginfo __user *_ginfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001525 struct snd_timer_ginfo *ginfo;
1526 struct snd_timer_id tid;
1527 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 struct list_head *p;
1529 int err = 0;
1530
Li Zefanef44a1e2009-04-10 09:43:08 +08001531 ginfo = memdup_user(_ginfo, sizeof(*ginfo));
1532 if (IS_ERR(ginfo))
1533 return PTR_ERR(ginfo);
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 tid = ginfo->tid;
1536 memset(ginfo, 0, sizeof(*ginfo));
1537 ginfo->tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001538 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 t = snd_timer_find(&tid);
1540 if (t != NULL) {
1541 ginfo->card = t->card ? t->card->number : -1;
1542 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1543 ginfo->flags |= SNDRV_TIMER_FLG_SLAVE;
1544 strlcpy(ginfo->id, t->id, sizeof(ginfo->id));
1545 strlcpy(ginfo->name, t->name, sizeof(ginfo->name));
1546 ginfo->resolution = t->hw.resolution;
1547 if (t->hw.resolution_min > 0) {
1548 ginfo->resolution_min = t->hw.resolution_min;
1549 ginfo->resolution_max = t->hw.resolution_max;
1550 }
1551 list_for_each(p, &t->open_list_head) {
1552 ginfo->clients++;
1553 }
1554 } else {
1555 err = -ENODEV;
1556 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001557 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (err >= 0 && copy_to_user(_ginfo, ginfo, sizeof(*ginfo)))
1559 err = -EFAULT;
1560 kfree(ginfo);
1561 return err;
1562}
1563
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001564static int timer_set_gparams(struct snd_timer_gparams *gparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001566 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 int err;
1568
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001569 mutex_lock(&register_mutex);
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001570 t = snd_timer_find(&gparams->tid);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001571 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 err = -ENODEV;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001573 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001575 if (!list_empty(&t->open_list_head)) {
1576 err = -EBUSY;
1577 goto _error;
1578 }
1579 if (!t->hw.set_period) {
1580 err = -ENOSYS;
1581 goto _error;
1582 }
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001583 err = t->hw.set_period(t, gparams->period_num, gparams->period_den);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001584_error:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001585 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return err;
1587}
1588
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001589static int snd_timer_user_gparams(struct file *file,
1590 struct snd_timer_gparams __user *_gparams)
1591{
1592 struct snd_timer_gparams gparams;
1593
1594 if (copy_from_user(&gparams, _gparams, sizeof(gparams)))
1595 return -EFAULT;
1596 return timer_set_gparams(&gparams);
1597}
1598
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001599static int snd_timer_user_gstatus(struct file *file,
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001600 struct snd_timer_gstatus __user *_gstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001602 struct snd_timer_gstatus gstatus;
1603 struct snd_timer_id tid;
1604 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int err = 0;
1606
1607 if (copy_from_user(&gstatus, _gstatus, sizeof(gstatus)))
1608 return -EFAULT;
1609 tid = gstatus.tid;
1610 memset(&gstatus, 0, sizeof(gstatus));
1611 gstatus.tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001612 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 t = snd_timer_find(&tid);
1614 if (t != NULL) {
1615 if (t->hw.c_resolution)
1616 gstatus.resolution = t->hw.c_resolution(t);
1617 else
1618 gstatus.resolution = t->hw.resolution;
1619 if (t->hw.precise_resolution) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001620 t->hw.precise_resolution(t, &gstatus.resolution_num,
1621 &gstatus.resolution_den);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 } else {
1623 gstatus.resolution_num = gstatus.resolution;
1624 gstatus.resolution_den = 1000000000uL;
1625 }
1626 } else {
1627 err = -ENODEV;
1628 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001629 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (err >= 0 && copy_to_user(_gstatus, &gstatus, sizeof(gstatus)))
1631 err = -EFAULT;
1632 return err;
1633}
1634
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001635static int snd_timer_user_tselect(struct file *file,
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001636 struct snd_timer_select __user *_tselect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001638 struct snd_timer_user *tu;
1639 struct snd_timer_select tselect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 char str[32];
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001641 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 tu = file->private_data;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001644 if (tu->timeri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 snd_timer_close(tu->timeri);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001646 tu->timeri = NULL;
1647 }
1648 if (copy_from_user(&tselect, _tselect, sizeof(tselect))) {
1649 err = -EFAULT;
1650 goto __err;
1651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 sprintf(str, "application %i", current->pid);
1653 if (tselect.id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
1654 tselect.id.dev_sclass = SNDRV_TIMER_SCLASS_APPLICATION;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001655 err = snd_timer_open(&tu->timeri, str, &tselect.id, current->pid);
1656 if (err < 0)
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001657 goto __err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001659 tu->timeri->flags |= SNDRV_TIMER_IFLG_FAST;
1660 tu->timeri->callback = tu->tread
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001661 ? snd_timer_user_tinterrupt : snd_timer_user_interrupt;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001662 tu->timeri->ccallback = snd_timer_user_ccallback;
1663 tu->timeri->callback_data = (void *)tu;
1664 tu->timeri->disconnect = snd_timer_user_disconnect;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001665
1666 __err:
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001667 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001670static int snd_timer_user_info(struct file *file,
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001671 struct snd_timer_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001673 struct snd_timer_user *tu;
1674 struct snd_timer_info *info;
1675 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 int err = 0;
1677
1678 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001679 if (!tu->timeri)
1680 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001682 if (!t)
1683 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Takashi Iwaica2c0962005-09-09 14:20:23 +02001685 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if (! info)
1687 return -ENOMEM;
1688 info->card = t->card ? t->card->number : -1;
1689 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1690 info->flags |= SNDRV_TIMER_FLG_SLAVE;
1691 strlcpy(info->id, t->id, sizeof(info->id));
1692 strlcpy(info->name, t->name, sizeof(info->name));
1693 info->resolution = t->hw.resolution;
1694 if (copy_to_user(_info, info, sizeof(*_info)))
1695 err = -EFAULT;
1696 kfree(info);
1697 return err;
1698}
1699
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001700static int snd_timer_user_params(struct file *file,
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001701 struct snd_timer_params __user *_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001703 struct snd_timer_user *tu;
1704 struct snd_timer_params params;
1705 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 int err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001709 if (!tu->timeri)
1710 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001712 if (!t)
1713 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (copy_from_user(&params, _params, sizeof(params)))
1715 return -EFAULT;
Takashi Iwai71321eb2017-02-28 14:49:07 +01001716 if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE)) {
1717 u64 resolution;
1718
1719 if (params.ticks < 1) {
1720 err = -EINVAL;
1721 goto _end;
1722 }
1723
1724 /* Don't allow resolution less than 1ms */
1725 resolution = snd_timer_resolution(tu->timeri);
1726 resolution *= params.ticks;
1727 if (resolution < 1000000) {
1728 err = -EINVAL;
1729 goto _end;
1730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001732 if (params.queue_size > 0 &&
1733 (params.queue_size < 32 || params.queue_size > 1024)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 err = -EINVAL;
1735 goto _end;
1736 }
1737 if (params.filter & ~((1<<SNDRV_TIMER_EVENT_RESOLUTION)|
1738 (1<<SNDRV_TIMER_EVENT_TICK)|
1739 (1<<SNDRV_TIMER_EVENT_START)|
1740 (1<<SNDRV_TIMER_EVENT_STOP)|
1741 (1<<SNDRV_TIMER_EVENT_CONTINUE)|
1742 (1<<SNDRV_TIMER_EVENT_PAUSE)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001743 (1<<SNDRV_TIMER_EVENT_SUSPEND)|
1744 (1<<SNDRV_TIMER_EVENT_RESUME)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 (1<<SNDRV_TIMER_EVENT_MSTART)|
1746 (1<<SNDRV_TIMER_EVENT_MSTOP)|
1747 (1<<SNDRV_TIMER_EVENT_MCONTINUE)|
Jaroslav Kysela65d11d92005-08-16 13:05:43 +02001748 (1<<SNDRV_TIMER_EVENT_MPAUSE)|
1749 (1<<SNDRV_TIMER_EVENT_MSUSPEND)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001750 (1<<SNDRV_TIMER_EVENT_MRESUME))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 err = -EINVAL;
1752 goto _end;
1753 }
1754 snd_timer_stop(tu->timeri);
1755 spin_lock_irq(&t->lock);
1756 tu->timeri->flags &= ~(SNDRV_TIMER_IFLG_AUTO|
1757 SNDRV_TIMER_IFLG_EXCLUSIVE|
1758 SNDRV_TIMER_IFLG_EARLY_EVENT);
1759 if (params.flags & SNDRV_TIMER_PSFLG_AUTO)
1760 tu->timeri->flags |= SNDRV_TIMER_IFLG_AUTO;
1761 if (params.flags & SNDRV_TIMER_PSFLG_EXCLUSIVE)
1762 tu->timeri->flags |= SNDRV_TIMER_IFLG_EXCLUSIVE;
1763 if (params.flags & SNDRV_TIMER_PSFLG_EARLY_EVENT)
1764 tu->timeri->flags |= SNDRV_TIMER_IFLG_EARLY_EVENT;
1765 spin_unlock_irq(&t->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001766 if (params.queue_size > 0 &&
1767 (unsigned int)tu->queue_size != params.queue_size) {
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001768 err = realloc_user_queue(tu, params.queue_size);
1769 if (err < 0)
1770 goto _end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
Takashi Iwaid7f910b2017-06-02 17:35:30 +02001772 spin_lock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 tu->qhead = tu->qtail = tu->qused = 0;
1774 if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) {
1775 if (tu->tread) {
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001776 struct snd_timer_tread tread;
Kangjie Lucec8f962016-05-03 16:44:07 -04001777 memset(&tread, 0, sizeof(tread));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 tread.event = SNDRV_TIMER_EVENT_EARLY;
1779 tread.tstamp.tv_sec = 0;
1780 tread.tstamp.tv_nsec = 0;
1781 tread.val = 0;
1782 snd_timer_user_append_to_tqueue(tu, &tread);
1783 } else {
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001784 struct snd_timer_read *r = &tu->queue[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 r->resolution = 0;
1786 r->ticks = 0;
1787 tu->qused++;
1788 tu->qtail++;
1789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
1791 tu->filter = params.filter;
1792 tu->ticks = params.ticks;
Takashi Iwaid7f910b2017-06-02 17:35:30 +02001793 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 err = 0;
1795 _end:
1796 if (copy_to_user(_params, &params, sizeof(params)))
1797 return -EFAULT;
1798 return err;
1799}
1800
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001801static int snd_timer_user_status(struct file *file,
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001802 struct snd_timer_status __user *_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001804 struct snd_timer_user *tu;
1805 struct snd_timer_status status;
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 memset(&status, 0, sizeof(status));
1811 status.tstamp = tu->tstamp;
1812 status.resolution = snd_timer_resolution(tu->timeri);
1813 status.lost = tu->timeri->lost;
1814 status.overrun = tu->overrun;
1815 spin_lock_irq(&tu->qlock);
1816 status.queue = tu->qused;
1817 spin_unlock_irq(&tu->qlock);
1818 if (copy_to_user(_status, &status, sizeof(status)))
1819 return -EFAULT;
1820 return 0;
1821}
1822
1823static int snd_timer_user_start(struct file *file)
1824{
1825 int err;
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001826 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001829 if (!tu->timeri)
1830 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 snd_timer_stop(tu->timeri);
1832 tu->timeri->lost = 0;
1833 tu->last_resolution = 0;
1834 return (err = snd_timer_start(tu->timeri, tu->ticks)) < 0 ? err : 0;
1835}
1836
1837static int snd_timer_user_stop(struct file *file)
1838{
1839 int err;
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001840 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001843 if (!tu->timeri)
1844 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return (err = snd_timer_stop(tu->timeri)) < 0 ? err : 0;
1846}
1847
1848static int snd_timer_user_continue(struct file *file)
1849{
1850 int err;
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001851 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001854 if (!tu->timeri)
1855 return -EBADFD;
Takashi Iwai9f8a7652016-09-07 15:45:31 +02001856 /* start timer instead of continue if it's not used before */
1857 if (!(tu->timeri->flags & SNDRV_TIMER_IFLG_PAUSED))
1858 return snd_timer_user_start(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 tu->timeri->lost = 0;
1860 return (err = snd_timer_continue(tu->timeri)) < 0 ? err : 0;
1861}
1862
Takashi Iwai15790a62005-05-15 15:04:14 +02001863static int snd_timer_user_pause(struct file *file)
1864{
1865 int err;
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001866 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001867
Takashi Iwai15790a62005-05-15 15:04:14 +02001868 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001869 if (!tu->timeri)
1870 return -EBADFD;
Jaroslav Kyselad138b442005-05-16 13:51:39 +02001871 return (err = snd_timer_pause(tu->timeri)) < 0 ? err : 0;
Takashi Iwai15790a62005-05-15 15:04:14 +02001872}
1873
Takashi Iwai8c50b372005-05-15 15:43:54 +02001874enum {
1875 SNDRV_TIMER_IOCTL_START_OLD = _IO('T', 0x20),
1876 SNDRV_TIMER_IOCTL_STOP_OLD = _IO('T', 0x21),
1877 SNDRV_TIMER_IOCTL_CONTINUE_OLD = _IO('T', 0x22),
1878 SNDRV_TIMER_IOCTL_PAUSE_OLD = _IO('T', 0x23),
1879};
1880
Takashi Iwaiaf368022016-01-13 17:48:01 +01001881static long __snd_timer_user_ioctl(struct file *file, unsigned int cmd,
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001882 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001884 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 void __user *argp = (void __user *)arg;
1886 int __user *p = argp;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 tu = file->private_data;
1889 switch (cmd) {
1890 case SNDRV_TIMER_IOCTL_PVERSION:
1891 return put_user(SNDRV_TIMER_VERSION, p) ? -EFAULT : 0;
1892 case SNDRV_TIMER_IOCTL_NEXT_DEVICE:
1893 return snd_timer_user_next_device(argp);
1894 case SNDRV_TIMER_IOCTL_TREAD:
1895 {
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001896 int xarg, old_tread;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001897
Takashi Iwaiaf368022016-01-13 17:48:01 +01001898 if (tu->timeri) /* too late */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return -EBUSY;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001900 if (get_user(xarg, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return -EFAULT;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001902 old_tread = tu->tread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 tu->tread = xarg ? 1 : 0;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001904 if (tu->tread != old_tread &&
1905 realloc_user_queue(tu, tu->queue_size) < 0) {
1906 tu->tread = old_tread;
1907 return -ENOMEM;
1908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return 0;
1910 }
1911 case SNDRV_TIMER_IOCTL_GINFO:
1912 return snd_timer_user_ginfo(file, argp);
1913 case SNDRV_TIMER_IOCTL_GPARAMS:
1914 return snd_timer_user_gparams(file, argp);
1915 case SNDRV_TIMER_IOCTL_GSTATUS:
1916 return snd_timer_user_gstatus(file, argp);
1917 case SNDRV_TIMER_IOCTL_SELECT:
1918 return snd_timer_user_tselect(file, argp);
1919 case SNDRV_TIMER_IOCTL_INFO:
1920 return snd_timer_user_info(file, argp);
1921 case SNDRV_TIMER_IOCTL_PARAMS:
1922 return snd_timer_user_params(file, argp);
1923 case SNDRV_TIMER_IOCTL_STATUS:
1924 return snd_timer_user_status(file, argp);
1925 case SNDRV_TIMER_IOCTL_START:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001926 case SNDRV_TIMER_IOCTL_START_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return snd_timer_user_start(file);
1928 case SNDRV_TIMER_IOCTL_STOP:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001929 case SNDRV_TIMER_IOCTL_STOP_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return snd_timer_user_stop(file);
1931 case SNDRV_TIMER_IOCTL_CONTINUE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001932 case SNDRV_TIMER_IOCTL_CONTINUE_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return snd_timer_user_continue(file);
Takashi Iwai15790a62005-05-15 15:04:14 +02001934 case SNDRV_TIMER_IOCTL_PAUSE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02001935 case SNDRV_TIMER_IOCTL_PAUSE_OLD:
Takashi Iwai15790a62005-05-15 15:04:14 +02001936 return snd_timer_user_pause(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938 return -ENOTTY;
1939}
1940
Takashi Iwaiaf368022016-01-13 17:48:01 +01001941static long snd_timer_user_ioctl(struct file *file, unsigned int cmd,
1942 unsigned long arg)
1943{
1944 struct snd_timer_user *tu = file->private_data;
1945 long ret;
1946
1947 mutex_lock(&tu->ioctl_lock);
1948 ret = __snd_timer_user_ioctl(file, cmd, arg);
1949 mutex_unlock(&tu->ioctl_lock);
1950 return ret;
1951}
1952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953static int snd_timer_user_fasync(int fd, struct file * file, int on)
1954{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001955 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 tu = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001958 return fasync_helper(fd, file, on, &tu->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001961static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
1962 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001964 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 long result = 0, unit;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001966 int qhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 tu = file->private_data;
Takashi Iwai53d2f7442005-11-17 13:56:05 +01001970 unit = tu->tread ? sizeof(struct snd_timer_tread) : sizeof(struct snd_timer_read);
Takashi Iwaid11662f2017-06-02 15:03:38 +02001971 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 spin_lock_irq(&tu->qlock);
1973 while ((long)count - result >= unit) {
1974 while (!tu->qused) {
Ingo Molnarac6424b2017-06-20 12:06:13 +02001975 wait_queue_entry_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1978 err = -EAGAIN;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001979 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981
1982 set_current_state(TASK_INTERRUPTIBLE);
1983 init_waitqueue_entry(&wait, current);
1984 add_wait_queue(&tu->qchange_sleep, &wait);
1985
1986 spin_unlock_irq(&tu->qlock);
Takashi Iwaid11662f2017-06-02 15:03:38 +02001987 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 schedule();
Takashi Iwaid11662f2017-06-02 15:03:38 +02001989 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 spin_lock_irq(&tu->qlock);
1991
1992 remove_wait_queue(&tu->qchange_sleep, &wait);
1993
Takashi Iwai230323d2016-01-21 17:19:31 +01001994 if (tu->disconnected) {
1995 err = -ENODEV;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01001996 goto _error;
Takashi Iwai230323d2016-01-21 17:19:31 +01001997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (signal_pending(current)) {
1999 err = -ERESTARTSYS;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002000 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002 }
2003
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002004 qhead = tu->qhead++;
2005 tu->qhead %= tu->queue_size;
Takashi Iwai3fa69932016-07-04 14:02:15 +02002006 tu->qused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 if (tu->tread) {
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002010 if (copy_to_user(buffer, &tu->tqueue[qhead],
2011 sizeof(struct snd_timer_tread)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 } else {
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002014 if (copy_to_user(buffer, &tu->queue[qhead],
2015 sizeof(struct snd_timer_read)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 spin_lock_irq(&tu->qlock);
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002020 if (err < 0)
2021 goto _error;
2022 result += unit;
2023 buffer += unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 _error:
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002026 spin_unlock_irq(&tu->qlock);
Takashi Iwaid11662f2017-06-02 15:03:38 +02002027 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return result > 0 ? result : err;
2029}
2030
2031static unsigned int snd_timer_user_poll(struct file *file, poll_table * wait)
2032{
2033 unsigned int mask;
Takashi Iwai53d2f7442005-11-17 13:56:05 +01002034 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 tu = file->private_data;
2037
2038 poll_wait(file, &tu->qchange_sleep, wait);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 mask = 0;
Takashi Iwaid7f910b2017-06-02 17:35:30 +02002041 spin_lock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if (tu->qused)
2043 mask |= POLLIN | POLLRDNORM;
Takashi Iwai230323d2016-01-21 17:19:31 +01002044 if (tu->disconnected)
2045 mask |= POLLERR;
Takashi Iwaid7f910b2017-06-02 17:35:30 +02002046 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 return mask;
2049}
2050
2051#ifdef CONFIG_COMPAT
2052#include "timer_compat.c"
2053#else
2054#define snd_timer_user_ioctl_compat NULL
2055#endif
2056
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08002057static const struct file_operations snd_timer_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
2059 .owner = THIS_MODULE,
2060 .read = snd_timer_user_read,
2061 .open = snd_timer_user_open,
2062 .release = snd_timer_user_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02002063 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 .poll = snd_timer_user_poll,
2065 .unlocked_ioctl = snd_timer_user_ioctl,
2066 .compat_ioctl = snd_timer_user_ioctl_compat,
2067 .fasync = snd_timer_user_fasync,
2068};
2069
Takashi Iwai7c358602015-01-29 18:09:05 +01002070/* unregister the system timer */
2071static void snd_timer_free_all(void)
2072{
2073 struct snd_timer *timer, *n;
2074
2075 list_for_each_entry_safe(timer, n, &snd_timer_list, device_list)
2076 snd_timer_free(timer);
2077}
2078
Takashi Iwai89da0612015-01-29 18:12:26 +01002079static struct device timer_dev;
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081/*
2082 * ENTRY functions
2083 */
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085static int __init alsa_timer_init(void)
2086{
2087 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Takashi Iwai89da0612015-01-29 18:12:26 +01002089 snd_device_initialize(&timer_dev, NULL);
2090 dev_set_name(&timer_dev, "timer");
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092#ifdef SNDRV_OSS_INFO_DEV_TIMERS
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002093 snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1,
2094 "system timer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095#endif
Takashi Iwaie28563c2005-12-01 10:42:42 +01002096
Takashi Iwai7c358602015-01-29 18:09:05 +01002097 err = snd_timer_register_system();
2098 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002099 pr_err("ALSA: unable to register system timer (%i)\n", err);
Takashi Iwai89da0612015-01-29 18:12:26 +01002100 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002101 return err;
2102 }
2103
Takashi Iwai40a4b262015-01-30 08:34:58 +01002104 err = snd_register_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0,
2105 &snd_timer_f_ops, NULL, &timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002106 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002107 pr_err("ALSA: unable to register timer device (%i)\n", err);
Takashi Iwai7c358602015-01-29 18:09:05 +01002108 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002109 put_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002110 return err;
2111 }
2112
Takashi Iwaie28563c2005-12-01 10:42:42 +01002113 snd_timer_proc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return 0;
2115}
2116
2117static void __exit alsa_timer_exit(void)
2118{
Takashi Iwai40a4b262015-01-30 08:34:58 +01002119 snd_unregister_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002120 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002121 put_device(&timer_dev);
Takashi Iwaie28563c2005-12-01 10:42:42 +01002122 snd_timer_proc_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123#ifdef SNDRV_OSS_INFO_DEV_TIMERS
2124 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1);
2125#endif
2126}
2127
2128module_init(alsa_timer_init)
2129module_exit(alsa_timer_exit)