blob: 21c2d25e4074aa2ac2544297ac2ed284a4548d20 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Timers abstract layer
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/delay.h>
8#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/slab.h>
10#include <linux/time.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010011#include <linux/mutex.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050012#include <linux/device.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040013#include <linux/module.h>
Paulo Marques543537b2005-06-23 00:09:02 -070014#include <linux/string.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010015#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <sound/core.h>
17#include <sound/timer.h>
18#include <sound/control.h>
19#include <sound/info.h>
20#include <sound/minors.h>
21#include <sound/initval.h>
22#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Takashi Iwai9f8a7652016-09-07 15:45:31 +020024/* internal flags */
25#define SNDRV_TIMER_IFLG_PAUSED 0x00010000
Takashi Iwaife1b26c2019-03-27 17:02:40 +010026#define SNDRV_TIMER_IFLG_DEAD 0x00020000
Takashi Iwai9f8a7652016-09-07 15:45:31 +020027
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +010028#if IS_ENABLED(CONFIG_SND_HRTIMER)
Clemens Ladisch109fef92010-11-18 09:53:54 +010029#define DEFAULT_TIMER_LIMIT 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#else
31#define DEFAULT_TIMER_LIMIT 1
32#endif
33
34static int timer_limit = DEFAULT_TIMER_LIMIT;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010035static int timer_tstamp_monotonic = 1;
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020036MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037MODULE_DESCRIPTION("ALSA timer interface");
38MODULE_LICENSE("GPL");
39module_param(timer_limit, int, 0444);
40MODULE_PARM_DESC(timer_limit, "Maximum global timers in system.");
Jaroslav Kyselab751eef2007-12-13 10:19:42 +010041module_param(timer_tstamp_monotonic, int, 0444);
42MODULE_PARM_DESC(timer_tstamp_monotonic, "Use posix monotonic clock source for timestamps (default).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Kay Sievers03cfe6f2010-11-23 17:43:19 +010044MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR, SNDRV_MINOR_TIMER);
45MODULE_ALIAS("devname:snd/timer");
46
Takashi Iwai53d2f742005-11-17 13:56:05 +010047struct snd_timer_user {
48 struct snd_timer_instance *timeri;
Clemens Ladisch6b172a82005-10-12 17:20:21 +020049 int tread; /* enhanced read with timestamps and events */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 unsigned long ticks;
51 unsigned long overrun;
52 int qhead;
53 int qtail;
54 int qused;
55 int queue_size;
Takashi Iwai230323d2016-01-21 17:19:31 +010056 bool disconnected;
Takashi Iwai53d2f742005-11-17 13:56:05 +010057 struct snd_timer_read *queue;
58 struct snd_timer_tread *tqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 spinlock_t qlock;
60 unsigned long last_resolution;
61 unsigned int filter;
62 struct timespec tstamp; /* trigger tstamp */
63 wait_queue_head_t qchange_sleep;
64 struct fasync_struct *fasync;
Takashi Iwaiaf368022016-01-13 17:48:01 +010065 struct mutex ioctl_lock;
Takashi Iwai53d2f742005-11-17 13:56:05 +010066};
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/* list of timers */
69static LIST_HEAD(snd_timer_list);
70
71/* list of slave instances */
72static LIST_HEAD(snd_timer_slave_list);
73
74/* lock for slave active lists */
75static DEFINE_SPINLOCK(slave_active_lock);
76
Takashi Iwaifdea53f2019-11-06 16:42:57 +010077#define MAX_SLAVE_INSTANCES 1000
78static int num_slaves;
79
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010080static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Takashi Iwai53d2f742005-11-17 13:56:05 +010082static int snd_timer_free(struct snd_timer *timer);
83static int snd_timer_dev_free(struct snd_device *device);
84static int snd_timer_dev_register(struct snd_device *device);
Takashi Iwaic4614822006-06-23 14:38:23 +020085static int snd_timer_dev_disconnect(struct snd_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Takashi Iwai53d2f742005-11-17 13:56:05 +010087static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/*
90 * create a timer instance with the given owner string.
91 * when timer is not NULL, increments the module counter
92 */
Takashi Iwai53d2f742005-11-17 13:56:05 +010093static struct snd_timer_instance *snd_timer_instance_new(char *owner,
94 struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Takashi Iwai53d2f742005-11-17 13:56:05 +010096 struct snd_timer_instance *timeri;
Takashi Iwaica2c0962005-09-09 14:20:23 +020097 timeri = kzalloc(sizeof(*timeri), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (timeri == NULL)
99 return NULL;
Paulo Marques543537b2005-06-23 00:09:02 -0700100 timeri->owner = kstrdup(owner, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (! timeri->owner) {
102 kfree(timeri);
103 return NULL;
104 }
105 INIT_LIST_HEAD(&timeri->open_list);
106 INIT_LIST_HEAD(&timeri->active_list);
107 INIT_LIST_HEAD(&timeri->ack_list);
108 INIT_LIST_HEAD(&timeri->slave_list_head);
109 INIT_LIST_HEAD(&timeri->slave_active_head);
110
111 timeri->timer = timer;
Clemens Ladischde242142005-10-12 17:12:31 +0200112 if (timer && !try_module_get(timer->module)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 kfree(timeri->owner);
114 kfree(timeri);
115 return NULL;
116 }
117
118 return timeri;
119}
120
121/*
122 * find a timer instance from the given timer id
123 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100124static struct snd_timer *snd_timer_find(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100126 struct snd_timer *timer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Johannes Berg9244b2c2006-10-05 16:02:22 +0200128 list_for_each_entry(timer, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (timer->tmr_class != tid->dev_class)
130 continue;
131 if ((timer->tmr_class == SNDRV_TIMER_CLASS_CARD ||
132 timer->tmr_class == SNDRV_TIMER_CLASS_PCM) &&
133 (timer->card == NULL ||
134 timer->card->number != tid->card))
135 continue;
136 if (timer->tmr_device != tid->device)
137 continue;
138 if (timer->tmr_subdevice != tid->subdevice)
139 continue;
140 return timer;
141 }
142 return NULL;
143}
144
Johannes Bergee2da992008-07-09 10:28:41 +0200145#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Takashi Iwai53d2f742005-11-17 13:56:05 +0100147static void snd_timer_request(struct snd_timer_id *tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 switch (tid->dev_class) {
150 case SNDRV_TIMER_CLASS_GLOBAL:
151 if (tid->device < timer_limit)
152 request_module("snd-timer-%i", tid->device);
153 break;
154 case SNDRV_TIMER_CLASS_CARD:
155 case SNDRV_TIMER_CLASS_PCM:
156 if (tid->card < snd_ecards_limit)
157 request_module("snd-card-%i", tid->card);
158 break;
159 default:
160 break;
161 }
162}
163
164#endif
165
Takashi Iwaiebfc6de2019-11-07 20:20:06 +0100166/* move the slave if it belongs to the master; return 1 if match */
167static int check_matching_master_slave(struct snd_timer_instance *master,
168 struct snd_timer_instance *slave)
169{
170 if (slave->slave_class != master->slave_class ||
171 slave->slave_id != master->slave_id)
172 return 0;
173 if (master->timer->num_instances >= master->timer->max_instances)
174 return -EBUSY;
175 list_move_tail(&slave->open_list, &master->slave_list_head);
176 master->timer->num_instances++;
177 spin_lock_irq(&slave_active_lock);
178 spin_lock(&master->timer->lock);
179 slave->master = master;
180 slave->timer = master->timer;
181 if (slave->flags & SNDRV_TIMER_IFLG_RUNNING)
182 list_add_tail(&slave->active_list, &master->slave_active_head);
183 spin_unlock(&master->timer->lock);
184 spin_unlock_irq(&slave_active_lock);
185 return 1;
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/*
189 * look for a master instance matching with the slave id of the given slave.
190 * when found, relink the open_link of the slave.
191 *
192 * call this with register_mutex down.
193 */
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100194static int snd_timer_check_slave(struct snd_timer_instance *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100196 struct snd_timer *timer;
197 struct snd_timer_instance *master;
Takashi Iwaiebfc6de2019-11-07 20:20:06 +0100198 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /* FIXME: it's really dumb to look up all entries.. */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200201 list_for_each_entry(timer, &snd_timer_list, device_list) {
202 list_for_each_entry(master, &timer->open_list_head, open_list) {
Takashi Iwaiebfc6de2019-11-07 20:20:06 +0100203 err = check_matching_master_slave(master, slave);
204 if (err != 0) /* match found or error */
205 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207 }
Takashi Iwaiebfc6de2019-11-07 20:20:06 +0100208 out:
209 return err < 0 ? err : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212/*
213 * look for slave instances matching with the slave id of the given master.
214 * when found, relink the open_link of slaves.
215 *
216 * call this with register_mutex down.
217 */
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100218static int snd_timer_check_master(struct snd_timer_instance *master)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200220 struct snd_timer_instance *slave, *tmp;
Takashi Iwaiebfc6de2019-11-07 20:20:06 +0100221 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* check all pending slaves */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200224 list_for_each_entry_safe(slave, tmp, &snd_timer_slave_list, open_list) {
Takashi Iwaiebfc6de2019-11-07 20:20:06 +0100225 err = check_matching_master_slave(master, slave);
226 if (err < 0)
227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Takashi Iwaiebfc6de2019-11-07 20:20:06 +0100229 return err < 0 ? err : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Takashi Iwaia3933182019-10-30 22:42:57 +0100232static int snd_timer_close_locked(struct snd_timer_instance *timeri,
233 struct device **card_devp_to_put);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
236 * open a timer instance
237 * when opening a master, the slave id must be here given.
238 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100239int snd_timer_open(struct snd_timer_instance **ti,
240 char *owner, struct snd_timer_id *tid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 unsigned int slave_id)
242{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100243 struct snd_timer *timer;
244 struct snd_timer_instance *timeri = NULL;
Takashi Iwaia3933182019-10-30 22:42:57 +0100245 struct device *card_dev_to_put = NULL;
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100246 int err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200247
Takashi Iwai41672c02019-03-28 17:11:10 +0100248 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (tid->dev_class == SNDRV_TIMER_CLASS_SLAVE) {
250 /* open a slave instance */
251 if (tid->dev_sclass <= SNDRV_TIMER_SCLASS_NONE ||
252 tid->dev_sclass > SNDRV_TIMER_SCLASS_OSS_SEQUENCER) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100253 pr_debug("ALSA: timer: invalid slave class %i\n",
254 tid->dev_sclass);
Takashi Iwai41672c02019-03-28 17:11:10 +0100255 err = -EINVAL;
256 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 }
Takashi Iwaifdea53f2019-11-06 16:42:57 +0100258 if (num_slaves >= MAX_SLAVE_INSTANCES) {
259 err = -EBUSY;
260 goto unlock;
261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 timeri = snd_timer_instance_new(owner, NULL);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200263 if (!timeri) {
Takashi Iwai41672c02019-03-28 17:11:10 +0100264 err = -ENOMEM;
265 goto unlock;
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 timeri->slave_class = tid->dev_sclass;
268 timeri->slave_id = tid->device;
269 timeri->flags |= SNDRV_TIMER_IFLG_SLAVE;
270 list_add_tail(&timeri->open_list, &snd_timer_slave_list);
Takashi Iwaifdea53f2019-11-06 16:42:57 +0100271 num_slaves++;
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100272 err = snd_timer_check_slave(timeri);
273 if (err < 0) {
Takashi Iwaia3933182019-10-30 22:42:57 +0100274 snd_timer_close_locked(timeri, &card_dev_to_put);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100275 timeri = NULL;
276 }
Takashi Iwai41672c02019-03-28 17:11:10 +0100277 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279
280 /* open a master instance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 timer = snd_timer_find(tid);
Johannes Bergee2da992008-07-09 10:28:41 +0200282#ifdef CONFIG_MODULES
283 if (!timer) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100284 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 snd_timer_request(tid);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100286 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 timer = snd_timer_find(tid);
288 }
289#endif
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200290 if (!timer) {
Takashi Iwai41672c02019-03-28 17:11:10 +0100291 err = -ENODEV;
292 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200294 if (!list_empty(&timer->open_list_head)) {
Takashi Iwaie7af6302019-11-06 17:55:47 +0100295 struct snd_timer_instance *t =
296 list_entry(timer->open_list_head.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +0100297 struct snd_timer_instance, open_list);
Takashi Iwaie7af6302019-11-06 17:55:47 +0100298 if (t->flags & SNDRV_TIMER_IFLG_EXCLUSIVE) {
Takashi Iwai41672c02019-03-28 17:11:10 +0100299 err = -EBUSY;
Takashi Iwai41672c02019-03-28 17:11:10 +0100300 goto unlock;
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200301 }
302 }
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100303 if (timer->num_instances >= timer->max_instances) {
Takashi Iwai41672c02019-03-28 17:11:10 +0100304 err = -EBUSY;
305 goto unlock;
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100306 }
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200307 timeri = snd_timer_instance_new(owner, timer);
308 if (!timeri) {
Takashi Iwai41672c02019-03-28 17:11:10 +0100309 err = -ENOMEM;
310 goto unlock;
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200311 }
Takashi Iwai230323d2016-01-21 17:19:31 +0100312 /* take a card refcount for safe disconnection */
313 if (timer->card)
314 get_device(&timer->card->card_dev);
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200315 timeri->slave_class = tid->dev_sclass;
316 timeri->slave_id = slave_id;
Vegard Nossum8ddc0562016-08-29 00:33:51 +0200317
318 if (list_empty(&timer->open_list_head) && timer->hw.open) {
Takashi Iwai41672c02019-03-28 17:11:10 +0100319 err = timer->hw.open(timer);
Vegard Nossum8ddc0562016-08-29 00:33:51 +0200320 if (err) {
321 kfree(timeri->owner);
322 kfree(timeri);
Takashi Iwai41672c02019-03-28 17:11:10 +0100323 timeri = NULL;
Vegard Nossum8ddc0562016-08-29 00:33:51 +0200324
325 if (timer->card)
Takashi Iwaia3933182019-10-30 22:42:57 +0100326 card_dev_to_put = &timer->card->card_dev;
Vegard Nossum8ddc0562016-08-29 00:33:51 +0200327 module_put(timer->module);
Takashi Iwai41672c02019-03-28 17:11:10 +0100328 goto unlock;
Vegard Nossum8ddc0562016-08-29 00:33:51 +0200329 }
330 }
331
Clemens Ladisch2fd43d12005-10-12 17:10:35 +0200332 list_add_tail(&timeri->open_list, &timer->open_list_head);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100333 timer->num_instances++;
334 err = snd_timer_check_master(timeri);
335 if (err < 0) {
Takashi Iwaia3933182019-10-30 22:42:57 +0100336 snd_timer_close_locked(timeri, &card_dev_to_put);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100337 timeri = NULL;
338 }
Takashi Iwai41672c02019-03-28 17:11:10 +0100339
340 unlock:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100341 mutex_unlock(&register_mutex);
Takashi Iwaia3933182019-10-30 22:42:57 +0100342 /* put_device() is called after unlock for avoiding deadlock */
343 if (card_dev_to_put)
344 put_device(card_dev_to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 *ti = timeri;
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100346 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
Takashi Iwai98856392017-06-16 16:16:05 +0200348EXPORT_SYMBOL(snd_timer_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/*
351 * close a timer instance
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100352 * call this with register_mutex down.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 */
Takashi Iwaia3933182019-10-30 22:42:57 +0100354static int snd_timer_close_locked(struct snd_timer_instance *timeri,
355 struct device **card_devp_to_put)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100357 struct snd_timer *timer = timeri->timer;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200358 struct snd_timer_instance *slave, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100360 if (timer) {
361 spin_lock_irq(&timer->lock);
362 timeri->flags |= SNDRV_TIMER_IFLG_DEAD;
363 spin_unlock_irq(&timer->lock);
364 }
365
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100366 list_del(&timeri->open_list);
Takashi Iwaifdea53f2019-11-06 16:42:57 +0100367 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
368 num_slaves--;
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /* force to stop the timer */
371 snd_timer_stop(timeri);
372
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100373 if (timer) {
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100374 timer->num_instances--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* wait, until the active callback is finished */
376 spin_lock_irq(&timer->lock);
377 while (timeri->flags & SNDRV_TIMER_IFLG_CALLBACK) {
378 spin_unlock_irq(&timer->lock);
379 udelay(10);
380 spin_lock_irq(&timer->lock);
381 }
382 spin_unlock_irq(&timer->lock);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* remove slave links */
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100385 spin_lock_irq(&slave_active_lock);
386 spin_lock(&timer->lock);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200387 list_for_each_entry_safe(slave, tmp, &timeri->slave_list_head,
388 open_list) {
Johannes Berg9244b2c2006-10-05 16:02:22 +0200389 list_move_tail(&slave->open_list, &snd_timer_slave_list);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100390 timer->num_instances--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 slave->master = NULL;
392 slave->timer = NULL;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100393 list_del_init(&slave->ack_list);
394 list_del_init(&slave->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100396 spin_unlock(&timer->lock);
397 spin_unlock_irq(&slave_active_lock);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100398
399 /* slave doesn't need to release timer resources below */
400 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
401 timer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (timeri->private_free)
405 timeri->private_free(timeri);
406 kfree(timeri->owner);
407 kfree(timeri);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100408
409 if (timer) {
410 if (list_empty(&timer->open_list_head) && timer->hw.close)
411 timer->hw.close(timer);
412 /* release a card refcount for safe disconnection */
413 if (timer->card)
Takashi Iwaia3933182019-10-30 22:42:57 +0100414 *card_devp_to_put = &timer->card->card_dev;
Clemens Ladischde242142005-10-12 17:12:31 +0200415 module_put(timer->module);
Takashi Iwai9984d1b2016-02-10 11:53:30 +0100416 }
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return 0;
419}
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100420
421/*
422 * close a timer instance
423 */
424int snd_timer_close(struct snd_timer_instance *timeri)
425{
Takashi Iwaia3933182019-10-30 22:42:57 +0100426 struct device *card_dev_to_put = NULL;
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100427 int err;
428
429 if (snd_BUG_ON(!timeri))
430 return -ENXIO;
431
432 mutex_lock(&register_mutex);
Takashi Iwaia3933182019-10-30 22:42:57 +0100433 err = snd_timer_close_locked(timeri, &card_dev_to_put);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100434 mutex_unlock(&register_mutex);
Takashi Iwaia3933182019-10-30 22:42:57 +0100435 /* put_device() is called after unlock for avoiding deadlock */
436 if (card_dev_to_put)
437 put_device(card_dev_to_put);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100438 return err;
439}
Takashi Iwai98856392017-06-16 16:16:05 +0200440EXPORT_SYMBOL(snd_timer_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Takashi Iwaifdcb5762018-05-16 23:45:33 +0200442static unsigned long snd_timer_hw_resolution(struct snd_timer *timer)
443{
444 if (timer->hw.c_resolution)
445 return timer->hw.c_resolution(timer);
446 else
447 return timer->hw.resolution;
448}
449
Takashi Iwai53d2f742005-11-17 13:56:05 +0100450unsigned long snd_timer_resolution(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100452 struct snd_timer * timer;
Takashi Iwai9d4d2072018-05-16 23:52:42 +0200453 unsigned long ret = 0;
454 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 if (timeri == NULL)
457 return 0;
Markus Elfringdd1f7ab2017-08-23 09:45:06 +0200458 timer = timeri->timer;
Takashi Iwai9d4d2072018-05-16 23:52:42 +0200459 if (timer) {
460 spin_lock_irqsave(&timer->lock, flags);
461 ret = snd_timer_hw_resolution(timer);
462 spin_unlock_irqrestore(&timer->lock, flags);
463 }
464 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
Takashi Iwai98856392017-06-16 16:16:05 +0200466EXPORT_SYMBOL(snd_timer_resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Takashi Iwai53d2f742005-11-17 13:56:05 +0100468static void snd_timer_notify1(struct snd_timer_instance *ti, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Takashi Iwai9d4d2072018-05-16 23:52:42 +0200470 struct snd_timer *timer = ti->timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100472 struct snd_timer_instance *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct timespec tstamp;
474
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100475 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +0000476 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100477 else
478 getnstimeofday(&tstamp);
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200479 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_START ||
480 event > SNDRV_TIMER_EVENT_PAUSE))
481 return;
Takashi Iwai9d4d2072018-05-16 23:52:42 +0200482 if (timer &&
483 (event == SNDRV_TIMER_EVENT_START ||
484 event == SNDRV_TIMER_EVENT_CONTINUE))
485 resolution = snd_timer_hw_resolution(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (ti->ccallback)
Jaroslav Kyselab30477d52010-03-03 11:05:55 +0100487 ti->ccallback(ti, event, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (ti->flags & SNDRV_TIMER_IFLG_SLAVE)
489 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (timer == NULL)
491 return;
492 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
493 return;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200494 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (ts->ccallback)
Takashi Iwai117159f2016-02-08 17:36:25 +0100496 ts->ccallback(ts, event + 100, &tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100499/* start/continue a master timer */
500static int snd_timer_start1(struct snd_timer_instance *timeri,
501 bool start, unsigned long ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100503 struct snd_timer *timer;
504 int result;
505 unsigned long flags;
506
507 timer = timeri->timer;
508 if (!timer)
509 return -EINVAL;
510
511 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100512 if (timeri->flags & SNDRV_TIMER_IFLG_DEAD) {
513 result = -EINVAL;
514 goto unlock;
515 }
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100516 if (timer->card && timer->card->shutdown) {
517 result = -ENODEV;
518 goto unlock;
519 }
520 if (timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
521 SNDRV_TIMER_IFLG_START)) {
522 result = -EBUSY;
523 goto unlock;
524 }
525
526 if (start)
527 timeri->ticks = timeri->cticks = ticks;
528 else if (!timeri->cticks)
529 timeri->cticks = 1;
530 timeri->pticks = 0;
531
Nicolas Kaiser5b7c7572011-03-16 17:10:11 +0100532 list_move_tail(&timeri->active_list, &timer->active_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (timer->running) {
534 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
535 goto __start_now;
536 timer->flags |= SNDRV_TIMER_FLG_RESCHED;
537 timeri->flags |= SNDRV_TIMER_IFLG_START;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100538 result = 1; /* delayed start */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 } else {
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100540 if (start)
541 timer->sticks = ticks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 timer->hw.start(timer);
543 __start_now:
544 timer->running++;
545 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100546 result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100548 snd_timer_notify1(timeri, start ? SNDRV_TIMER_EVENT_START :
549 SNDRV_TIMER_EVENT_CONTINUE);
550 unlock:
551 spin_unlock_irqrestore(&timer->lock, flags);
552 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100555/* start/continue a slave timer */
556static int snd_timer_start_slave(struct snd_timer_instance *timeri,
557 bool start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 unsigned long flags;
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100560 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 spin_lock_irqsave(&slave_active_lock, flags);
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100563 if (timeri->flags & SNDRV_TIMER_IFLG_DEAD) {
564 err = -EINVAL;
565 goto unlock;
566 }
Takashi Iwaif784beb2016-01-30 23:09:08 +0100567 if (timeri->flags & SNDRV_TIMER_IFLG_RUNNING) {
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100568 err = -EBUSY;
569 goto unlock;
Takashi Iwaif784beb2016-01-30 23:09:08 +0100570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 timeri->flags |= SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100572 if (timeri->master && timeri->timer) {
573 spin_lock(&timeri->timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200574 list_add_tail(&timeri->active_list,
575 &timeri->master->slave_active_head);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100576 snd_timer_notify1(timeri, start ? SNDRV_TIMER_EVENT_START :
577 SNDRV_TIMER_EVENT_CONTINUE);
Takashi Iwaib5a663a2016-01-14 16:30:58 +0100578 spin_unlock(&timeri->timer->lock);
579 }
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100580 err = 1; /* delayed start */
581 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 spin_unlock_irqrestore(&slave_active_lock, flags);
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100583 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100586/* stop/pause a master timer */
587static int snd_timer_stop1(struct snd_timer_instance *timeri, bool stop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100589 struct snd_timer *timer;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100590 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 unsigned long flags;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 timer = timeri->timer;
594 if (!timer)
595 return -EINVAL;
596 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwaif784beb2016-01-30 23:09:08 +0100597 if (!(timeri->flags & (SNDRV_TIMER_IFLG_RUNNING |
598 SNDRV_TIMER_IFLG_START))) {
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100599 result = -EBUSY;
600 goto unlock;
Takashi Iwaif784beb2016-01-30 23:09:08 +0100601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 list_del_init(&timeri->ack_list);
603 list_del_init(&timeri->active_list);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100604 if (timer->card && timer->card->shutdown)
605 goto unlock;
606 if (stop) {
607 timeri->cticks = timeri->ticks;
608 timeri->pticks = 0;
Takashi Iwai230323d2016-01-21 17:19:31 +0100609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if ((timeri->flags & SNDRV_TIMER_IFLG_RUNNING) &&
611 !(--timer->running)) {
612 timer->hw.stop(timer);
613 if (timer->flags & SNDRV_TIMER_FLG_RESCHED) {
614 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
615 snd_timer_reschedule(timer, 0);
616 if (timer->flags & SNDRV_TIMER_FLG_CHANGE) {
617 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
618 timer->hw.start(timer);
619 }
620 }
621 }
Takashi Iwaic3b16812016-01-14 17:01:46 +0100622 timeri->flags &= ~(SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START);
Takashi Iwai9f8a7652016-09-07 15:45:31 +0200623 if (stop)
624 timeri->flags &= ~SNDRV_TIMER_IFLG_PAUSED;
625 else
626 timeri->flags |= SNDRV_TIMER_IFLG_PAUSED;
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100627 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP :
Ben Hutchings3ae18092018-05-17 22:34:39 +0100628 SNDRV_TIMER_EVENT_PAUSE);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100629 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 spin_unlock_irqrestore(&timer->lock, flags);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100631 return result;
632}
633
634/* stop/pause a slave timer */
635static int snd_timer_stop_slave(struct snd_timer_instance *timeri, bool stop)
636{
637 unsigned long flags;
638
639 spin_lock_irqsave(&slave_active_lock, flags);
640 if (!(timeri->flags & SNDRV_TIMER_IFLG_RUNNING)) {
641 spin_unlock_irqrestore(&slave_active_lock, flags);
642 return -EBUSY;
643 }
644 timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
645 if (timeri->timer) {
646 spin_lock(&timeri->timer->lock);
647 list_del_init(&timeri->ack_list);
648 list_del_init(&timeri->active_list);
649 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP :
Ben Hutchings3ae18092018-05-17 22:34:39 +0100650 SNDRV_TIMER_EVENT_PAUSE);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100651 spin_unlock(&timeri->timer->lock);
652 }
653 spin_unlock_irqrestore(&slave_active_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return 0;
655}
656
657/*
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100658 * start the timer instance
659 */
660int snd_timer_start(struct snd_timer_instance *timeri, unsigned int ticks)
661{
662 if (timeri == NULL || ticks < 1)
663 return -EINVAL;
664 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
665 return snd_timer_start_slave(timeri, true);
666 else
667 return snd_timer_start1(timeri, true, ticks);
668}
Takashi Iwai98856392017-06-16 16:16:05 +0200669EXPORT_SYMBOL(snd_timer_start);
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100670
671/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 * stop the timer instance.
673 *
674 * do not call this from the timer callback!
675 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100676int snd_timer_stop(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100678 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
679 return snd_timer_stop_slave(timeri, true);
680 else
681 return snd_timer_stop1(timeri, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
Takashi Iwai98856392017-06-16 16:16:05 +0200683EXPORT_SYMBOL(snd_timer_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685/*
686 * start again.. the tick is kept.
687 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100688int snd_timer_continue(struct snd_timer_instance *timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Takashi Iwai9f8a7652016-09-07 15:45:31 +0200690 /* timer can continue only after pause */
691 if (!(timeri->flags & SNDRV_TIMER_IFLG_PAUSED))
692 return -EINVAL;
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100695 return snd_timer_start_slave(timeri, false);
696 else
697 return snd_timer_start1(timeri, false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
Takashi Iwai98856392017-06-16 16:16:05 +0200699EXPORT_SYMBOL(snd_timer_continue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701/*
702 * pause.. remember the ticks left
703 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100704int snd_timer_pause(struct snd_timer_instance * timeri)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Takashi Iwaif65e0d22016-02-10 12:47:03 +0100706 if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE)
707 return snd_timer_stop_slave(timeri, false);
708 else
709 return snd_timer_stop1(timeri, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
Takashi Iwai98856392017-06-16 16:16:05 +0200711EXPORT_SYMBOL(snd_timer_pause);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/*
714 * reschedule the timer
715 *
716 * start pending instances and check the scheduling ticks.
717 * when the scheduling ticks is changed set CHANGE flag to reprogram the timer.
718 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100719static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100721 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 unsigned long ticks = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Johannes Berg9244b2c2006-10-05 16:02:22 +0200724 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (ti->flags & SNDRV_TIMER_IFLG_START) {
726 ti->flags &= ~SNDRV_TIMER_IFLG_START;
727 ti->flags |= SNDRV_TIMER_IFLG_RUNNING;
728 timer->running++;
729 }
730 if (ti->flags & SNDRV_TIMER_IFLG_RUNNING) {
731 if (ticks > ti->cticks)
732 ticks = ti->cticks;
733 }
734 }
735 if (ticks == ~0UL) {
736 timer->flags &= ~SNDRV_TIMER_FLG_RESCHED;
737 return;
738 }
739 if (ticks > timer->hw.ticks)
740 ticks = timer->hw.ticks;
741 if (ticks_left != ticks)
742 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
743 timer->sticks = ticks;
744}
745
Takashi Iwai8748b852019-03-27 16:42:51 +0100746/* call callbacks in timer ack list */
747static void snd_timer_process_callbacks(struct snd_timer *timer,
748 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100750 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned long resolution, ticks;
752
Takashi Iwai8748b852019-03-27 16:42:51 +0100753 while (!list_empty(head)) {
754 ti = list_first_entry(head, struct snd_timer_instance,
755 ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Takashi Iwaidf555312019-04-09 12:25:32 +0200757 /* remove from ack_list and make empty */
758 list_del_init(&ti->ack_list);
759
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100760 if (!(ti->flags & SNDRV_TIMER_IFLG_DEAD)) {
761 ticks = ti->pticks;
762 ti->pticks = 0;
763 resolution = ti->resolution;
Takashi Iwaidf555312019-04-09 12:25:32 +0200764 ti->flags |= SNDRV_TIMER_IFLG_CALLBACK;
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100765 spin_unlock(&timer->lock);
766 if (ti->callback)
767 ti->callback(ti, resolution, ticks);
768 spin_lock(&timer->lock);
Takashi Iwaidf555312019-04-09 12:25:32 +0200769 ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK;
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Takashi Iwai8748b852019-03-27 16:42:51 +0100772}
773
Takashi Iwai7bb4a8a2019-03-27 16:51:58 +0100774/* clear pending instances from ack list */
775static void snd_timer_clear_callbacks(struct snd_timer *timer,
776 struct list_head *head)
777{
778 unsigned long flags;
779
780 spin_lock_irqsave(&timer->lock, flags);
781 while (!list_empty(head))
782 list_del_init(head->next);
783 spin_unlock_irqrestore(&timer->lock, flags);
784}
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786/*
787 * timer tasklet
788 *
789 */
790static void snd_timer_tasklet(unsigned long arg)
791{
792 struct snd_timer *timer = (struct snd_timer *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 unsigned long flags;
794
Takashi Iwai7bb4a8a2019-03-27 16:51:58 +0100795 if (timer->card && timer->card->shutdown) {
796 snd_timer_clear_callbacks(timer, &timer->sack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return;
Takashi Iwai7bb4a8a2019-03-27 16:51:58 +0100798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 spin_lock_irqsave(&timer->lock, flags);
Takashi Iwai8748b852019-03-27 16:42:51 +0100801 snd_timer_process_callbacks(timer, &timer->sack_list_head);
Takashi Iwai2999ff52006-07-05 17:16:58 +0200802 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805/*
806 * timer interrupt
807 *
808 * ticks_left is usually equal to timer->sticks.
809 *
810 */
Takashi Iwai53d2f742005-11-17 13:56:05 +0100811void snd_timer_interrupt(struct snd_timer * timer, unsigned long ticks_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Johannes Berg9244b2c2006-10-05 16:02:22 +0200813 struct snd_timer_instance *ti, *ts, *tmp;
Takashi Iwai8748b852019-03-27 16:42:51 +0100814 unsigned long resolution;
815 struct list_head *ack_list_head;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100816 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int use_tasklet = 0;
818
819 if (timer == NULL)
820 return;
821
Takashi Iwai7bb4a8a2019-03-27 16:51:58 +0100822 if (timer->card && timer->card->shutdown) {
823 snd_timer_clear_callbacks(timer, &timer->ack_list_head);
Takashi Iwai230323d2016-01-21 17:19:31 +0100824 return;
Takashi Iwai7bb4a8a2019-03-27 16:51:58 +0100825 }
Takashi Iwai230323d2016-01-21 17:19:31 +0100826
Takashi Iwaib32425a2005-11-18 18:52:14 +0100827 spin_lock_irqsave(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 /* remember the current resolution */
Takashi Iwaifdcb5762018-05-16 23:45:33 +0200830 resolution = snd_timer_hw_resolution(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* loop for all active instances
Johannes Berg9244b2c2006-10-05 16:02:22 +0200833 * Here we cannot use list_for_each_entry because the active_list of a
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200834 * processed instance is relinked to done_list_head before the callback
835 * is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
Johannes Berg9244b2c2006-10-05 16:02:22 +0200837 list_for_each_entry_safe(ti, tmp, &timer->active_list_head,
838 active_list) {
Takashi Iwaife1b26c2019-03-27 17:02:40 +0100839 if (ti->flags & SNDRV_TIMER_IFLG_DEAD)
840 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (!(ti->flags & SNDRV_TIMER_IFLG_RUNNING))
842 continue;
843 ti->pticks += ticks_left;
844 ti->resolution = resolution;
845 if (ti->cticks < ticks_left)
846 ti->cticks = 0;
847 else
848 ti->cticks -= ticks_left;
849 if (ti->cticks) /* not expired */
850 continue;
851 if (ti->flags & SNDRV_TIMER_IFLG_AUTO) {
852 ti->cticks = ti->ticks;
853 } else {
854 ti->flags &= ~SNDRV_TIMER_IFLG_RUNNING;
Takashi Iwai094fd3b2016-02-04 17:06:13 +0100855 --timer->running;
856 list_del_init(&ti->active_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200858 if ((timer->hw.flags & SNDRV_TIMER_HW_TASKLET) ||
859 (ti->flags & SNDRV_TIMER_IFLG_FAST))
860 ack_list_head = &timer->ack_list_head;
861 else
862 ack_list_head = &timer->sack_list_head;
863 if (list_empty(&ti->ack_list))
864 list_add_tail(&ti->ack_list, ack_list_head);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200865 list_for_each_entry(ts, &ti->slave_active_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 ts->pticks = ti->pticks;
867 ts->resolution = resolution;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200868 if (list_empty(&ts->ack_list))
869 list_add_tail(&ts->ack_list, ack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871 }
872 if (timer->flags & SNDRV_TIMER_FLG_RESCHED)
Clemens Ladischcd93fe42006-07-17 16:53:57 +0200873 snd_timer_reschedule(timer, timer->sticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (timer->running) {
875 if (timer->hw.flags & SNDRV_TIMER_HW_STOP) {
876 timer->hw.stop(timer);
877 timer->flags |= SNDRV_TIMER_FLG_CHANGE;
878 }
879 if (!(timer->hw.flags & SNDRV_TIMER_HW_AUTO) ||
880 (timer->flags & SNDRV_TIMER_FLG_CHANGE)) {
881 /* restart timer */
882 timer->flags &= ~SNDRV_TIMER_FLG_CHANGE;
883 timer->hw.start(timer);
884 }
885 } else {
886 timer->hw.stop(timer);
887 }
888
889 /* now process all fast callbacks */
Takashi Iwai8748b852019-03-27 16:42:51 +0100890 snd_timer_process_callbacks(timer, &timer->ack_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 /* do we have any slow callbacks? */
893 use_tasklet = !list_empty(&timer->sack_list_head);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100894 spin_unlock_irqrestore(&timer->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 if (use_tasklet)
Takashi Iwai1f041282008-12-18 12:17:55 +0100897 tasklet_schedule(&timer->task_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
Takashi Iwai98856392017-06-16 16:16:05 +0200899EXPORT_SYMBOL(snd_timer_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901/*
902
903 */
904
Takashi Iwai53d2f742005-11-17 13:56:05 +0100905int snd_timer_new(struct snd_card *card, char *id, struct snd_timer_id *tid,
906 struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100908 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +0100910 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 .dev_free = snd_timer_dev_free,
912 .dev_register = snd_timer_dev_register,
Takashi Iwaic4614822006-06-23 14:38:23 +0200913 .dev_disconnect = snd_timer_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 };
915
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200916 if (snd_BUG_ON(!tid))
917 return -EINVAL;
Srikanth K Hd10ee9c2018-07-20 11:13:51 +0530918 if (tid->dev_class == SNDRV_TIMER_CLASS_CARD ||
919 tid->dev_class == SNDRV_TIMER_CLASS_PCM) {
920 if (WARN_ON(!card))
921 return -EINVAL;
922 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200923 if (rtimer)
924 *rtimer = NULL;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200925 timer = kzalloc(sizeof(*timer), GFP_KERNEL);
Takashi Iwaiec0e9932015-03-10 15:42:14 +0100926 if (!timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return -ENOMEM;
928 timer->tmr_class = tid->dev_class;
929 timer->card = card;
930 timer->tmr_device = tid->device;
931 timer->tmr_subdevice = tid->subdevice;
932 if (id)
933 strlcpy(timer->id, id, sizeof(timer->id));
Vegard Nossum6b760bb2016-08-29 00:33:50 +0200934 timer->sticks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 INIT_LIST_HEAD(&timer->device_list);
936 INIT_LIST_HEAD(&timer->open_list_head);
937 INIT_LIST_HEAD(&timer->active_list_head);
938 INIT_LIST_HEAD(&timer->ack_list_head);
939 INIT_LIST_HEAD(&timer->sack_list_head);
940 spin_lock_init(&timer->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200941 tasklet_init(&timer->task_queue, snd_timer_tasklet,
942 (unsigned long)timer);
Takashi Iwai9b7d8692017-11-05 10:07:43 +0100943 timer->max_instances = 1000; /* default limit per timer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (card != NULL) {
Clemens Ladischde242142005-10-12 17:12:31 +0200945 timer->module = card->module;
Clemens Ladisch6b172a82005-10-12 17:20:21 +0200946 err = snd_device_new(card, SNDRV_DEV_TIMER, timer, &ops);
947 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 snd_timer_free(timer);
949 return err;
950 }
951 }
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200952 if (rtimer)
953 *rtimer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return 0;
955}
Takashi Iwai98856392017-06-16 16:16:05 +0200956EXPORT_SYMBOL(snd_timer_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Takashi Iwai53d2f742005-11-17 13:56:05 +0100958static int snd_timer_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200960 if (!timer)
961 return 0;
Takashi Iwaic4614822006-06-23 14:38:23 +0200962
963 mutex_lock(&register_mutex);
964 if (! list_empty(&timer->open_list_head)) {
965 struct list_head *p, *n;
966 struct snd_timer_instance *ti;
Takashi Iwaicf74dcf2014-02-04 18:22:39 +0100967 pr_warn("ALSA: timer %p is busy?\n", timer);
Takashi Iwaic4614822006-06-23 14:38:23 +0200968 list_for_each_safe(p, n, &timer->open_list_head) {
969 list_del_init(p);
970 ti = list_entry(p, struct snd_timer_instance, open_list);
971 ti->timer = NULL;
972 }
973 }
974 list_del(&timer->device_list);
975 mutex_unlock(&register_mutex);
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (timer->private_free)
978 timer->private_free(timer);
979 kfree(timer);
980 return 0;
981}
982
Takashi Iwai53d2f742005-11-17 13:56:05 +0100983static int snd_timer_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100985 struct snd_timer *timer = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return snd_timer_free(timer);
987}
988
Takashi Iwai53d2f742005-11-17 13:56:05 +0100989static int snd_timer_dev_register(struct snd_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Takashi Iwai53d2f742005-11-17 13:56:05 +0100991 struct snd_timer *timer = dev->device_data;
992 struct snd_timer *timer1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200994 if (snd_BUG_ON(!timer || !timer->hw.start || !timer->hw.stop))
995 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (!(timer->hw.flags & SNDRV_TIMER_HW_SLAVE) &&
997 !timer->hw.resolution && timer->hw.c_resolution == NULL)
998 return -EINVAL;
999
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001000 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001001 list_for_each_entry(timer1, &snd_timer_list, device_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (timer1->tmr_class > timer->tmr_class)
1003 break;
1004 if (timer1->tmr_class < timer->tmr_class)
1005 continue;
1006 if (timer1->card && timer->card) {
1007 if (timer1->card->number > timer->card->number)
1008 break;
1009 if (timer1->card->number < timer->card->number)
1010 continue;
1011 }
1012 if (timer1->tmr_device > timer->tmr_device)
1013 break;
1014 if (timer1->tmr_device < timer->tmr_device)
1015 continue;
1016 if (timer1->tmr_subdevice > timer->tmr_subdevice)
1017 break;
1018 if (timer1->tmr_subdevice < timer->tmr_subdevice)
1019 continue;
1020 /* conflicts.. */
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001021 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return -EBUSY;
1023 }
Johannes Berg9244b2c2006-10-05 16:02:22 +02001024 list_add_tail(&timer->device_list, &timer1->device_list);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001025 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return 0;
1027}
1028
Takashi Iwaic4614822006-06-23 14:38:23 +02001029static int snd_timer_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001031 struct snd_timer *timer = device->device_data;
Takashi Iwai230323d2016-01-21 17:19:31 +01001032 struct snd_timer_instance *ti;
1033
Takashi Iwaic4614822006-06-23 14:38:23 +02001034 mutex_lock(&register_mutex);
1035 list_del_init(&timer->device_list);
Takashi Iwai230323d2016-01-21 17:19:31 +01001036 /* wake up pending sleepers */
1037 list_for_each_entry(ti, &timer->open_list_head, open_list) {
Takashi Iwai40ed9442016-01-21 17:43:08 +01001038 if (ti->disconnect)
1039 ti->disconnect(ti);
Takashi Iwai230323d2016-01-21 17:19:31 +01001040 }
Takashi Iwaic4614822006-06-23 14:38:23 +02001041 mutex_unlock(&register_mutex);
1042 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
Takashi Iwai53d2f742005-11-17 13:56:05 +01001045void snd_timer_notify(struct snd_timer *timer, int event, struct timespec *tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 unsigned long flags;
1048 unsigned long resolution = 0;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001049 struct snd_timer_instance *ti, *ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Takashi Iwai230323d2016-01-21 17:19:31 +01001051 if (timer->card && timer->card->shutdown)
1052 return;
Takashi Iwai7c22f1a2005-10-10 11:46:31 +02001053 if (! (timer->hw.flags & SNDRV_TIMER_HW_SLAVE))
1054 return;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001055 if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_MSTART ||
1056 event > SNDRV_TIMER_EVENT_MRESUME))
1057 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 spin_lock_irqsave(&timer->lock, flags);
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001059 if (event == SNDRV_TIMER_EVENT_MSTART ||
1060 event == SNDRV_TIMER_EVENT_MCONTINUE ||
Takashi Iwaifdcb5762018-05-16 23:45:33 +02001061 event == SNDRV_TIMER_EVENT_MRESUME)
1062 resolution = snd_timer_hw_resolution(timer);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001063 list_for_each_entry(ti, &timer->active_list_head, active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (ti->ccallback)
1065 ti->ccallback(ti, event, tstamp, resolution);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001066 list_for_each_entry(ts, &ti->slave_active_head, active_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (ts->ccallback)
1068 ts->ccallback(ts, event, tstamp, resolution);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070 spin_unlock_irqrestore(&timer->lock, flags);
1071}
Takashi Iwai98856392017-06-16 16:16:05 +02001072EXPORT_SYMBOL(snd_timer_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074/*
1075 * exported functions for global timers
1076 */
Takashi Iwai53d2f742005-11-17 13:56:05 +01001077int snd_timer_global_new(char *id, int device, struct snd_timer **rtimer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001079 struct snd_timer_id tid;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL;
1082 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1083 tid.card = -1;
1084 tid.device = device;
1085 tid.subdevice = 0;
1086 return snd_timer_new(NULL, id, &tid, rtimer);
1087}
Takashi Iwai98856392017-06-16 16:16:05 +02001088EXPORT_SYMBOL(snd_timer_global_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Takashi Iwai53d2f742005-11-17 13:56:05 +01001090int snd_timer_global_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 return snd_timer_free(timer);
1093}
Takashi Iwai98856392017-06-16 16:16:05 +02001094EXPORT_SYMBOL(snd_timer_global_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Takashi Iwai53d2f742005-11-17 13:56:05 +01001096int snd_timer_global_register(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001098 struct snd_device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 memset(&dev, 0, sizeof(dev));
1101 dev.device_data = timer;
1102 return snd_timer_dev_register(&dev);
1103}
Takashi Iwai98856392017-06-16 16:16:05 +02001104EXPORT_SYMBOL(snd_timer_global_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * System timer
1108 */
1109
1110struct snd_timer_system_private {
1111 struct timer_list tlist;
Kees Cook38e9a802017-10-04 17:53:33 -07001112 struct snd_timer *snd_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 unsigned long last_expires;
1114 unsigned long last_jiffies;
1115 unsigned long correction;
1116};
1117
Kees Cook38e9a802017-10-04 17:53:33 -07001118static void snd_timer_s_function(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Kees Cook38e9a802017-10-04 17:53:33 -07001120 struct snd_timer_system_private *priv = from_timer(priv, t,
1121 tlist);
1122 struct snd_timer *timer = priv->snd_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 unsigned long jiff = jiffies;
1124 if (time_after(jiff, priv->last_expires))
Clemens Ladisch6ed5eff2006-07-17 16:51:37 +02001125 priv->correction += (long)jiff - (long)priv->last_expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 snd_timer_interrupt(timer, (long)jiff - (long)priv->last_jiffies);
1127}
1128
Takashi Iwai53d2f742005-11-17 13:56:05 +01001129static int snd_timer_s_start(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 struct snd_timer_system_private *priv;
1132 unsigned long njiff;
1133
1134 priv = (struct snd_timer_system_private *) timer->private_data;
1135 njiff = (priv->last_jiffies = jiffies);
1136 if (priv->correction > timer->sticks - 1) {
1137 priv->correction -= timer->sticks - 1;
1138 njiff++;
1139 } else {
1140 njiff += timer->sticks - priv->correction;
Clemens Ladisch17f48ec2006-07-17 16:50:56 +02001141 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Takashi Iwai4a070832016-04-01 12:28:16 +02001143 priv->last_expires = njiff;
1144 mod_timer(&priv->tlist, njiff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return 0;
1146}
1147
Takashi Iwai53d2f742005-11-17 13:56:05 +01001148static int snd_timer_s_stop(struct snd_timer * timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 struct snd_timer_system_private *priv;
1151 unsigned long jiff;
1152
1153 priv = (struct snd_timer_system_private *) timer->private_data;
1154 del_timer(&priv->tlist);
1155 jiff = jiffies;
1156 if (time_before(jiff, priv->last_expires))
1157 timer->sticks = priv->last_expires - jiff;
1158 else
1159 timer->sticks = 1;
Clemens Ladischde2696d2006-07-17 16:52:09 +02001160 priv->correction = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return 0;
1162}
1163
Takashi Iwaif1463572016-02-02 14:14:10 +01001164static int snd_timer_s_close(struct snd_timer *timer)
1165{
1166 struct snd_timer_system_private *priv;
1167
1168 priv = (struct snd_timer_system_private *)timer->private_data;
1169 del_timer_sync(&priv->tlist);
1170 return 0;
1171}
1172
Takashi Iwai53d2f742005-11-17 13:56:05 +01001173static struct snd_timer_hardware snd_timer_system =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
1175 .flags = SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET,
1176 .resolution = 1000000000L / HZ,
1177 .ticks = 10000000L,
Takashi Iwaif1463572016-02-02 14:14:10 +01001178 .close = snd_timer_s_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 .start = snd_timer_s_start,
1180 .stop = snd_timer_s_stop
1181};
1182
Takashi Iwai53d2f742005-11-17 13:56:05 +01001183static void snd_timer_free_system(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
1185 kfree(timer->private_data);
1186}
1187
1188static int snd_timer_register_system(void)
1189{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001190 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 struct snd_timer_system_private *priv;
1192 int err;
1193
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001194 err = snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM, &timer);
1195 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 return err;
1197 strcpy(timer->name, "system timer");
1198 timer->hw = snd_timer_system;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001199 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if (priv == NULL) {
1201 snd_timer_free(timer);
1202 return -ENOMEM;
1203 }
Kees Cook38e9a802017-10-04 17:53:33 -07001204 priv->snd_timer = timer;
1205 timer_setup(&priv->tlist, snd_timer_s_function, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 timer->private_data = priv;
1207 timer->private_free = snd_timer_free_system;
1208 return snd_timer_global_register(timer);
1209}
1210
Jie Yangcd6a6502015-05-27 19:45:45 +08001211#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212/*
1213 * Info interface
1214 */
1215
Takashi Iwai53d2f742005-11-17 13:56:05 +01001216static void snd_timer_proc_read(struct snd_info_entry *entry,
1217 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001219 struct snd_timer *timer;
1220 struct snd_timer_instance *ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001222 mutex_lock(&register_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001223 list_for_each_entry(timer, &snd_timer_list, device_list) {
Takashi Iwai230323d2016-01-21 17:19:31 +01001224 if (timer->card && timer->card->shutdown)
1225 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 switch (timer->tmr_class) {
1227 case SNDRV_TIMER_CLASS_GLOBAL:
1228 snd_iprintf(buffer, "G%i: ", timer->tmr_device);
1229 break;
1230 case SNDRV_TIMER_CLASS_CARD:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001231 snd_iprintf(buffer, "C%i-%i: ",
1232 timer->card->number, timer->tmr_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
1234 case SNDRV_TIMER_CLASS_PCM:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001235 snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
1236 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
1238 default:
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001239 snd_iprintf(buffer, "?%i-%i-%i-%i: ", timer->tmr_class,
1240 timer->card ? timer->card->number : -1,
1241 timer->tmr_device, timer->tmr_subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243 snd_iprintf(buffer, "%s :", timer->name);
1244 if (timer->hw.resolution)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001245 snd_iprintf(buffer, " %lu.%03luus (%lu ticks)",
1246 timer->hw.resolution / 1000,
1247 timer->hw.resolution % 1000,
1248 timer->hw.ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)
1250 snd_iprintf(buffer, " SLAVE");
1251 snd_iprintf(buffer, "\n");
Johannes Berg9244b2c2006-10-05 16:02:22 +02001252 list_for_each_entry(ti, &timer->open_list_head, open_list)
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001253 snd_iprintf(buffer, " Client %s : %s\n",
1254 ti->owner ? ti->owner : "unknown",
1255 ti->flags & (SNDRV_TIMER_IFLG_START |
1256 SNDRV_TIMER_IFLG_RUNNING)
1257 ? "running" : "stopped");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001259 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
Takashi Iwai6581f4e2006-05-17 17:14:51 +02001262static struct snd_info_entry *snd_timer_proc_entry;
Takashi Iwaie28563c2005-12-01 10:42:42 +01001263
1264static void __init snd_timer_proc_init(void)
1265{
1266 struct snd_info_entry *entry;
1267
1268 entry = snd_info_create_module_entry(THIS_MODULE, "timers", NULL);
1269 if (entry != NULL) {
Takashi Iwaie28563c2005-12-01 10:42:42 +01001270 entry->c.text.read = snd_timer_proc_read;
1271 if (snd_info_register(entry) < 0) {
1272 snd_info_free_entry(entry);
1273 entry = NULL;
1274 }
1275 }
1276 snd_timer_proc_entry = entry;
1277}
1278
1279static void __exit snd_timer_proc_done(void)
1280{
Takashi Iwai746d4a02006-06-23 14:37:59 +02001281 snd_info_free_entry(snd_timer_proc_entry);
Takashi Iwaie28563c2005-12-01 10:42:42 +01001282}
Jie Yangcd6a6502015-05-27 19:45:45 +08001283#else /* !CONFIG_SND_PROC_FS */
Takashi Iwaie28563c2005-12-01 10:42:42 +01001284#define snd_timer_proc_init()
1285#define snd_timer_proc_done()
1286#endif
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288/*
1289 * USER SPACE interface
1290 */
1291
Takashi Iwai53d2f742005-11-17 13:56:05 +01001292static void snd_timer_user_interrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 unsigned long resolution,
1294 unsigned long ticks)
1295{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001296 struct snd_timer_user *tu = timeri->callback_data;
1297 struct snd_timer_read *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 int prev;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 spin_lock(&tu->qlock);
1301 if (tu->qused > 0) {
1302 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1303 r = &tu->queue[prev];
1304 if (r->resolution == resolution) {
1305 r->ticks += ticks;
1306 goto __wake;
1307 }
1308 }
1309 if (tu->qused >= tu->queue_size) {
1310 tu->overrun++;
1311 } else {
1312 r = &tu->queue[tu->qtail++];
1313 tu->qtail %= tu->queue_size;
1314 r->resolution = resolution;
1315 r->ticks = ticks;
1316 tu->qused++;
1317 }
1318 __wake:
1319 spin_unlock(&tu->qlock);
1320 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1321 wake_up(&tu->qchange_sleep);
1322}
1323
Takashi Iwai53d2f742005-11-17 13:56:05 +01001324static void snd_timer_user_append_to_tqueue(struct snd_timer_user *tu,
1325 struct snd_timer_tread *tread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
1327 if (tu->qused >= tu->queue_size) {
1328 tu->overrun++;
1329 } else {
1330 memcpy(&tu->tqueue[tu->qtail++], tread, sizeof(*tread));
1331 tu->qtail %= tu->queue_size;
1332 tu->qused++;
1333 }
1334}
1335
Takashi Iwai53d2f742005-11-17 13:56:05 +01001336static void snd_timer_user_ccallback(struct snd_timer_instance *timeri,
1337 int event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 struct timespec *tstamp,
1339 unsigned long resolution)
1340{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001341 struct snd_timer_user *tu = timeri->callback_data;
1342 struct snd_timer_tread r1;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001343 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001345 if (event >= SNDRV_TIMER_EVENT_START &&
1346 event <= SNDRV_TIMER_EVENT_PAUSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 tu->tstamp = *tstamp;
1348 if ((tu->filter & (1 << event)) == 0 || !tu->tread)
1349 return;
Kangjie Lu9a47e9c2016-05-03 16:44:20 -04001350 memset(&r1, 0, sizeof(r1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 r1.event = event;
1352 r1.tstamp = *tstamp;
1353 r1.val = resolution;
Dan Carpenterbfe70782010-04-28 10:29:14 +02001354 spin_lock_irqsave(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 snd_timer_user_append_to_tqueue(tu, &r1);
Dan Carpenterbfe70782010-04-28 10:29:14 +02001356 spin_unlock_irqrestore(&tu->qlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1358 wake_up(&tu->qchange_sleep);
1359}
1360
Takashi Iwai40ed9442016-01-21 17:43:08 +01001361static void snd_timer_user_disconnect(struct snd_timer_instance *timeri)
1362{
1363 struct snd_timer_user *tu = timeri->callback_data;
1364
1365 tu->disconnected = true;
1366 wake_up(&tu->qchange_sleep);
1367}
1368
Takashi Iwai53d2f742005-11-17 13:56:05 +01001369static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 unsigned long resolution,
1371 unsigned long ticks)
1372{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001373 struct snd_timer_user *tu = timeri->callback_data;
1374 struct snd_timer_tread *r, r1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 struct timespec tstamp;
1376 int prev, append = 0;
1377
Dan Carpentera8c006a2017-03-31 18:22:23 +03001378 memset(&r1, 0, sizeof(r1));
Takashi Iwai07799e72005-10-10 11:49:49 +02001379 memset(&tstamp, 0, sizeof(tstamp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 spin_lock(&tu->qlock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001381 if ((tu->filter & ((1 << SNDRV_TIMER_EVENT_RESOLUTION) |
1382 (1 << SNDRV_TIMER_EVENT_TICK))) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 spin_unlock(&tu->qlock);
1384 return;
1385 }
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001386 if (tu->last_resolution != resolution || ticks > 0) {
1387 if (timer_tstamp_monotonic)
Thomas Gleixner26204e02014-06-11 23:59:14 +00001388 ktime_get_ts(&tstamp);
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01001389 else
1390 getnstimeofday(&tstamp);
1391 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001392 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) &&
1393 tu->last_resolution != resolution) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 r1.event = SNDRV_TIMER_EVENT_RESOLUTION;
1395 r1.tstamp = tstamp;
1396 r1.val = resolution;
1397 snd_timer_user_append_to_tqueue(tu, &r1);
1398 tu->last_resolution = resolution;
1399 append++;
1400 }
1401 if ((tu->filter & (1 << SNDRV_TIMER_EVENT_TICK)) == 0)
1402 goto __wake;
1403 if (ticks == 0)
1404 goto __wake;
1405 if (tu->qused > 0) {
1406 prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1;
1407 r = &tu->tqueue[prev];
1408 if (r->event == SNDRV_TIMER_EVENT_TICK) {
1409 r->tstamp = tstamp;
1410 r->val += ticks;
1411 append++;
1412 goto __wake;
1413 }
1414 }
1415 r1.event = SNDRV_TIMER_EVENT_TICK;
1416 r1.tstamp = tstamp;
1417 r1.val = ticks;
1418 snd_timer_user_append_to_tqueue(tu, &r1);
1419 append++;
1420 __wake:
1421 spin_unlock(&tu->qlock);
1422 if (append == 0)
1423 return;
1424 kill_fasync(&tu->fasync, SIGIO, POLL_IN);
1425 wake_up(&tu->qchange_sleep);
1426}
1427
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001428static int realloc_user_queue(struct snd_timer_user *tu, int size)
1429{
1430 struct snd_timer_read *queue = NULL;
1431 struct snd_timer_tread *tqueue = NULL;
1432
1433 if (tu->tread) {
1434 tqueue = kcalloc(size, sizeof(*tqueue), GFP_KERNEL);
1435 if (!tqueue)
1436 return -ENOMEM;
1437 } else {
1438 queue = kcalloc(size, sizeof(*queue), GFP_KERNEL);
1439 if (!queue)
1440 return -ENOMEM;
1441 }
1442
1443 spin_lock_irq(&tu->qlock);
1444 kfree(tu->queue);
1445 kfree(tu->tqueue);
1446 tu->queue_size = size;
1447 tu->queue = queue;
1448 tu->tqueue = tqueue;
1449 tu->qhead = tu->qtail = tu->qused = 0;
1450 spin_unlock_irq(&tu->qlock);
1451
1452 return 0;
1453}
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455static int snd_timer_user_open(struct inode *inode, struct file *file)
1456{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001457 struct snd_timer_user *tu;
Takashi Iwai02f48652010-04-13 11:49:04 +02001458 int err;
1459
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +03001460 err = stream_open(inode, file);
Takashi Iwai02f48652010-04-13 11:49:04 +02001461 if (err < 0)
1462 return err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001463
Takashi Iwaica2c0962005-09-09 14:20:23 +02001464 tu = kzalloc(sizeof(*tu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (tu == NULL)
1466 return -ENOMEM;
1467 spin_lock_init(&tu->qlock);
1468 init_waitqueue_head(&tu->qchange_sleep);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001469 mutex_init(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 tu->ticks = 1;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001471 if (realloc_user_queue(tu, 128) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 kfree(tu);
1473 return -ENOMEM;
1474 }
1475 file->private_data = tu;
1476 return 0;
1477}
1478
1479static int snd_timer_user_release(struct inode *inode, struct file *file)
1480{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001481 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 if (file->private_data) {
1484 tu = file->private_data;
1485 file->private_data = NULL;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001486 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (tu->timeri)
1488 snd_timer_close(tu->timeri);
Takashi Iwaiaf368022016-01-13 17:48:01 +01001489 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 kfree(tu->queue);
1491 kfree(tu->tqueue);
1492 kfree(tu);
1493 }
1494 return 0;
1495}
1496
Takashi Iwai53d2f742005-11-17 13:56:05 +01001497static void snd_timer_user_zero_id(struct snd_timer_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 id->dev_class = SNDRV_TIMER_CLASS_NONE;
1500 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1501 id->card = -1;
1502 id->device = -1;
1503 id->subdevice = -1;
1504}
1505
Takashi Iwai53d2f742005-11-17 13:56:05 +01001506static void snd_timer_user_copy_id(struct snd_timer_id *id, struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
1508 id->dev_class = timer->tmr_class;
1509 id->dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1510 id->card = timer->card ? timer->card->number : -1;
1511 id->device = timer->tmr_device;
1512 id->subdevice = timer->tmr_subdevice;
1513}
1514
Takashi Iwai53d2f742005-11-17 13:56:05 +01001515static int snd_timer_user_next_device(struct snd_timer_id __user *_tid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001517 struct snd_timer_id id;
1518 struct snd_timer *timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct list_head *p;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (copy_from_user(&id, _tid, sizeof(id)))
1522 return -EFAULT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001523 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (id.dev_class < 0) { /* first item */
1525 if (list_empty(&snd_timer_list))
1526 snd_timer_user_zero_id(&id);
1527 else {
Clemens Ladisch9dfba382005-10-12 17:14:55 +02001528 timer = list_entry(snd_timer_list.next,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001529 struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 snd_timer_user_copy_id(&id, timer);
1531 }
1532 } else {
1533 switch (id.dev_class) {
1534 case SNDRV_TIMER_CLASS_GLOBAL:
1535 id.device = id.device < 0 ? 0 : id.device + 1;
1536 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001537 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (timer->tmr_class > SNDRV_TIMER_CLASS_GLOBAL) {
1539 snd_timer_user_copy_id(&id, timer);
1540 break;
1541 }
1542 if (timer->tmr_device >= id.device) {
1543 snd_timer_user_copy_id(&id, timer);
1544 break;
1545 }
1546 }
1547 if (p == &snd_timer_list)
1548 snd_timer_user_zero_id(&id);
1549 break;
1550 case SNDRV_TIMER_CLASS_CARD:
1551 case SNDRV_TIMER_CLASS_PCM:
1552 if (id.card < 0) {
1553 id.card = 0;
1554 } else {
Dan Carpentere8ed6822017-03-31 18:21:41 +03001555 if (id.device < 0) {
1556 id.device = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 } else {
Dan Carpentere8ed6822017-03-31 18:21:41 +03001558 if (id.subdevice < 0)
1559 id.subdevice = 0;
Takashi Iwaib41f7942018-06-25 11:09:11 +02001560 else if (id.subdevice < INT_MAX)
Dan Carpentere8ed6822017-03-31 18:21:41 +03001561 id.subdevice++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563 }
1564 list_for_each(p, &snd_timer_list) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001565 timer = list_entry(p, struct snd_timer, device_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (timer->tmr_class > id.dev_class) {
1567 snd_timer_user_copy_id(&id, timer);
1568 break;
1569 }
1570 if (timer->tmr_class < id.dev_class)
1571 continue;
1572 if (timer->card->number > id.card) {
1573 snd_timer_user_copy_id(&id, timer);
1574 break;
1575 }
1576 if (timer->card->number < id.card)
1577 continue;
1578 if (timer->tmr_device > id.device) {
1579 snd_timer_user_copy_id(&id, timer);
1580 break;
1581 }
1582 if (timer->tmr_device < id.device)
1583 continue;
1584 if (timer->tmr_subdevice > id.subdevice) {
1585 snd_timer_user_copy_id(&id, timer);
1586 break;
1587 }
1588 if (timer->tmr_subdevice < id.subdevice)
1589 continue;
1590 snd_timer_user_copy_id(&id, timer);
1591 break;
1592 }
1593 if (p == &snd_timer_list)
1594 snd_timer_user_zero_id(&id);
1595 break;
1596 default:
1597 snd_timer_user_zero_id(&id);
1598 }
1599 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001600 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (copy_to_user(_tid, &id, sizeof(*_tid)))
1602 return -EFAULT;
1603 return 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001604}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001606static int snd_timer_user_ginfo(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001607 struct snd_timer_ginfo __user *_ginfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001609 struct snd_timer_ginfo *ginfo;
1610 struct snd_timer_id tid;
1611 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 struct list_head *p;
1613 int err = 0;
1614
Li Zefanef44a1e2009-04-10 09:43:08 +08001615 ginfo = memdup_user(_ginfo, sizeof(*ginfo));
1616 if (IS_ERR(ginfo))
1617 return PTR_ERR(ginfo);
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 tid = ginfo->tid;
1620 memset(ginfo, 0, sizeof(*ginfo));
1621 ginfo->tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001622 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 t = snd_timer_find(&tid);
1624 if (t != NULL) {
1625 ginfo->card = t->card ? t->card->number : -1;
1626 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1627 ginfo->flags |= SNDRV_TIMER_FLG_SLAVE;
1628 strlcpy(ginfo->id, t->id, sizeof(ginfo->id));
1629 strlcpy(ginfo->name, t->name, sizeof(ginfo->name));
1630 ginfo->resolution = t->hw.resolution;
1631 if (t->hw.resolution_min > 0) {
1632 ginfo->resolution_min = t->hw.resolution_min;
1633 ginfo->resolution_max = t->hw.resolution_max;
1634 }
1635 list_for_each(p, &t->open_list_head) {
1636 ginfo->clients++;
1637 }
1638 } else {
1639 err = -ENODEV;
1640 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001641 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (err >= 0 && copy_to_user(_ginfo, ginfo, sizeof(*ginfo)))
1643 err = -EFAULT;
1644 kfree(ginfo);
1645 return err;
1646}
1647
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001648static int timer_set_gparams(struct snd_timer_gparams *gparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001650 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 int err;
1652
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001653 mutex_lock(&register_mutex);
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001654 t = snd_timer_find(&gparams->tid);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001655 if (!t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 err = -ENODEV;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001657 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001659 if (!list_empty(&t->open_list_head)) {
1660 err = -EBUSY;
1661 goto _error;
1662 }
1663 if (!t->hw.set_period) {
1664 err = -ENOSYS;
1665 goto _error;
1666 }
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001667 err = t->hw.set_period(t, gparams->period_num, gparams->period_den);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001668_error:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001669 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return err;
1671}
1672
Takashi Sakamoto91d21782016-03-23 08:03:59 +09001673static int snd_timer_user_gparams(struct file *file,
1674 struct snd_timer_gparams __user *_gparams)
1675{
1676 struct snd_timer_gparams gparams;
1677
1678 if (copy_from_user(&gparams, _gparams, sizeof(gparams)))
1679 return -EFAULT;
1680 return timer_set_gparams(&gparams);
1681}
1682
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001683static int snd_timer_user_gstatus(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001684 struct snd_timer_gstatus __user *_gstatus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001686 struct snd_timer_gstatus gstatus;
1687 struct snd_timer_id tid;
1688 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 int err = 0;
1690
1691 if (copy_from_user(&gstatus, _gstatus, sizeof(gstatus)))
1692 return -EFAULT;
1693 tid = gstatus.tid;
1694 memset(&gstatus, 0, sizeof(gstatus));
1695 gstatus.tid = tid;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001696 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 t = snd_timer_find(&tid);
1698 if (t != NULL) {
Takashi Iwai9d4d2072018-05-16 23:52:42 +02001699 spin_lock_irq(&t->lock);
Takashi Iwaifdcb5762018-05-16 23:45:33 +02001700 gstatus.resolution = snd_timer_hw_resolution(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (t->hw.precise_resolution) {
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001702 t->hw.precise_resolution(t, &gstatus.resolution_num,
1703 &gstatus.resolution_den);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 } else {
1705 gstatus.resolution_num = gstatus.resolution;
1706 gstatus.resolution_den = 1000000000uL;
1707 }
Takashi Iwai9d4d2072018-05-16 23:52:42 +02001708 spin_unlock_irq(&t->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 } else {
1710 err = -ENODEV;
1711 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001712 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (err >= 0 && copy_to_user(_gstatus, &gstatus, sizeof(gstatus)))
1714 err = -EFAULT;
1715 return err;
1716}
1717
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001718static int snd_timer_user_tselect(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001719 struct snd_timer_select __user *_tselect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001721 struct snd_timer_user *tu;
1722 struct snd_timer_select tselect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 char str[32];
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001724 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 tu = file->private_data;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001727 if (tu->timeri) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 snd_timer_close(tu->timeri);
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001729 tu->timeri = NULL;
1730 }
1731 if (copy_from_user(&tselect, _tselect, sizeof(tselect))) {
1732 err = -EFAULT;
1733 goto __err;
1734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 sprintf(str, "application %i", current->pid);
1736 if (tselect.id.dev_class != SNDRV_TIMER_CLASS_SLAVE)
1737 tselect.id.dev_sclass = SNDRV_TIMER_SCLASS_APPLICATION;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001738 err = snd_timer_open(&tu->timeri, str, &tselect.id, current->pid);
1739 if (err < 0)
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001740 goto __err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001742 tu->timeri->flags |= SNDRV_TIMER_IFLG_FAST;
1743 tu->timeri->callback = tu->tread
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001744 ? snd_timer_user_tinterrupt : snd_timer_user_interrupt;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001745 tu->timeri->ccallback = snd_timer_user_ccallback;
1746 tu->timeri->callback_data = (void *)tu;
1747 tu->timeri->disconnect = snd_timer_user_disconnect;
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001748
1749 __err:
Jaroslav Kyselac1935b42005-04-04 16:44:58 +02001750 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751}
1752
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001753static int snd_timer_user_info(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001754 struct snd_timer_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001756 struct snd_timer_user *tu;
1757 struct snd_timer_info *info;
1758 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 int err = 0;
1760
1761 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001762 if (!tu->timeri)
1763 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001765 if (!t)
1766 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Takashi Iwaica2c0962005-09-09 14:20:23 +02001768 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 if (! info)
1770 return -ENOMEM;
1771 info->card = t->card ? t->card->number : -1;
1772 if (t->hw.flags & SNDRV_TIMER_HW_SLAVE)
1773 info->flags |= SNDRV_TIMER_FLG_SLAVE;
1774 strlcpy(info->id, t->id, sizeof(info->id));
1775 strlcpy(info->name, t->name, sizeof(info->name));
1776 info->resolution = t->hw.resolution;
1777 if (copy_to_user(_info, info, sizeof(*_info)))
1778 err = -EFAULT;
1779 kfree(info);
1780 return err;
1781}
1782
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001783static int snd_timer_user_params(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001784 struct snd_timer_params __user *_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001786 struct snd_timer_user *tu;
1787 struct snd_timer_params params;
1788 struct snd_timer *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 int err;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001792 if (!tu->timeri)
1793 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 t = tu->timeri->timer;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001795 if (!t)
1796 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (copy_from_user(&params, _params, sizeof(params)))
1798 return -EFAULT;
Takashi Iwai71321eb2017-02-28 14:49:07 +01001799 if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE)) {
1800 u64 resolution;
1801
1802 if (params.ticks < 1) {
1803 err = -EINVAL;
1804 goto _end;
1805 }
1806
1807 /* Don't allow resolution less than 1ms */
1808 resolution = snd_timer_resolution(tu->timeri);
1809 resolution *= params.ticks;
1810 if (resolution < 1000000) {
1811 err = -EINVAL;
1812 goto _end;
1813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001815 if (params.queue_size > 0 &&
1816 (params.queue_size < 32 || params.queue_size > 1024)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 err = -EINVAL;
1818 goto _end;
1819 }
1820 if (params.filter & ~((1<<SNDRV_TIMER_EVENT_RESOLUTION)|
1821 (1<<SNDRV_TIMER_EVENT_TICK)|
1822 (1<<SNDRV_TIMER_EVENT_START)|
1823 (1<<SNDRV_TIMER_EVENT_STOP)|
1824 (1<<SNDRV_TIMER_EVENT_CONTINUE)|
1825 (1<<SNDRV_TIMER_EVENT_PAUSE)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001826 (1<<SNDRV_TIMER_EVENT_SUSPEND)|
1827 (1<<SNDRV_TIMER_EVENT_RESUME)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 (1<<SNDRV_TIMER_EVENT_MSTART)|
1829 (1<<SNDRV_TIMER_EVENT_MSTOP)|
1830 (1<<SNDRV_TIMER_EVENT_MCONTINUE)|
Jaroslav Kysela65d11d92005-08-16 13:05:43 +02001831 (1<<SNDRV_TIMER_EVENT_MPAUSE)|
1832 (1<<SNDRV_TIMER_EVENT_MSUSPEND)|
Jaroslav Kyselaa501dfa2005-08-16 11:09:05 +02001833 (1<<SNDRV_TIMER_EVENT_MRESUME))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 err = -EINVAL;
1835 goto _end;
1836 }
1837 snd_timer_stop(tu->timeri);
1838 spin_lock_irq(&t->lock);
1839 tu->timeri->flags &= ~(SNDRV_TIMER_IFLG_AUTO|
1840 SNDRV_TIMER_IFLG_EXCLUSIVE|
1841 SNDRV_TIMER_IFLG_EARLY_EVENT);
1842 if (params.flags & SNDRV_TIMER_PSFLG_AUTO)
1843 tu->timeri->flags |= SNDRV_TIMER_IFLG_AUTO;
1844 if (params.flags & SNDRV_TIMER_PSFLG_EXCLUSIVE)
1845 tu->timeri->flags |= SNDRV_TIMER_IFLG_EXCLUSIVE;
1846 if (params.flags & SNDRV_TIMER_PSFLG_EARLY_EVENT)
1847 tu->timeri->flags |= SNDRV_TIMER_IFLG_EARLY_EVENT;
1848 spin_unlock_irq(&t->lock);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001849 if (params.queue_size > 0 &&
1850 (unsigned int)tu->queue_size != params.queue_size) {
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001851 err = realloc_user_queue(tu, params.queue_size);
1852 if (err < 0)
1853 goto _end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
Takashi Iwaid7f910b2017-06-02 17:35:30 +02001855 spin_lock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 tu->qhead = tu->qtail = tu->qused = 0;
1857 if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) {
1858 if (tu->tread) {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001859 struct snd_timer_tread tread;
Kangjie Lucec8f962016-05-03 16:44:07 -04001860 memset(&tread, 0, sizeof(tread));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 tread.event = SNDRV_TIMER_EVENT_EARLY;
1862 tread.tstamp.tv_sec = 0;
1863 tread.tstamp.tv_nsec = 0;
1864 tread.val = 0;
1865 snd_timer_user_append_to_tqueue(tu, &tread);
1866 } else {
Takashi Iwai53d2f742005-11-17 13:56:05 +01001867 struct snd_timer_read *r = &tu->queue[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 r->resolution = 0;
1869 r->ticks = 0;
1870 tu->qused++;
1871 tu->qtail++;
1872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874 tu->filter = params.filter;
1875 tu->ticks = params.ticks;
Takashi Iwaid7f910b2017-06-02 17:35:30 +02001876 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 err = 0;
1878 _end:
1879 if (copy_to_user(_params, &params, sizeof(params)))
1880 return -EFAULT;
1881 return err;
1882}
1883
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001884static int snd_timer_user_status(struct file *file,
Takashi Iwai53d2f742005-11-17 13:56:05 +01001885 struct snd_timer_status __user *_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001887 struct snd_timer_user *tu;
1888 struct snd_timer_status status;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001891 if (!tu->timeri)
1892 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 memset(&status, 0, sizeof(status));
1894 status.tstamp = tu->tstamp;
1895 status.resolution = snd_timer_resolution(tu->timeri);
1896 status.lost = tu->timeri->lost;
1897 status.overrun = tu->overrun;
1898 spin_lock_irq(&tu->qlock);
1899 status.queue = tu->qused;
1900 spin_unlock_irq(&tu->qlock);
1901 if (copy_to_user(_status, &status, sizeof(status)))
1902 return -EFAULT;
1903 return 0;
1904}
1905
1906static int snd_timer_user_start(struct file *file)
1907{
1908 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001909 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001912 if (!tu->timeri)
1913 return -EBADFD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 snd_timer_stop(tu->timeri);
1915 tu->timeri->lost = 0;
1916 tu->last_resolution = 0;
Takashi Iwai5d704b02019-03-28 17:44:53 +01001917 err = snd_timer_start(tu->timeri, tu->ticks);
1918 if (err < 0)
1919 return err;
1920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
1923static int snd_timer_user_stop(struct file *file)
1924{
1925 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001926 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001929 if (!tu->timeri)
1930 return -EBADFD;
Takashi Iwai5d704b02019-03-28 17:44:53 +01001931 err = snd_timer_stop(tu->timeri);
1932 if (err < 0)
1933 return err;
1934 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937static int snd_timer_user_continue(struct file *file)
1938{
1939 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001940 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001943 if (!tu->timeri)
1944 return -EBADFD;
Takashi Iwai9f8a7652016-09-07 15:45:31 +02001945 /* start timer instead of continue if it's not used before */
1946 if (!(tu->timeri->flags & SNDRV_TIMER_IFLG_PAUSED))
1947 return snd_timer_user_start(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 tu->timeri->lost = 0;
Takashi Iwai5d704b02019-03-28 17:44:53 +01001949 err = snd_timer_continue(tu->timeri);
1950 if (err < 0)
1951 return err;
1952 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
1954
Takashi Iwai15790a62005-05-15 15:04:14 +02001955static int snd_timer_user_pause(struct file *file)
1956{
1957 int err;
Takashi Iwai53d2f742005-11-17 13:56:05 +01001958 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001959
Takashi Iwai15790a62005-05-15 15:04:14 +02001960 tu = file->private_data;
Clemens Ladisch7c64ec32007-07-16 11:01:30 +02001961 if (!tu->timeri)
1962 return -EBADFD;
Takashi Iwai5d704b02019-03-28 17:44:53 +01001963 err = snd_timer_pause(tu->timeri);
1964 if (err < 0)
1965 return err;
1966 return 0;
Takashi Iwai15790a62005-05-15 15:04:14 +02001967}
1968
Takashi Iwai8c50b372005-05-15 15:43:54 +02001969enum {
1970 SNDRV_TIMER_IOCTL_START_OLD = _IO('T', 0x20),
1971 SNDRV_TIMER_IOCTL_STOP_OLD = _IO('T', 0x21),
1972 SNDRV_TIMER_IOCTL_CONTINUE_OLD = _IO('T', 0x22),
1973 SNDRV_TIMER_IOCTL_PAUSE_OLD = _IO('T', 0x23),
1974};
1975
Takashi Iwaiaf368022016-01-13 17:48:01 +01001976static long __snd_timer_user_ioctl(struct file *file, unsigned int cmd,
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001977 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Takashi Iwai53d2f742005-11-17 13:56:05 +01001979 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 void __user *argp = (void __user *)arg;
1981 int __user *p = argp;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 tu = file->private_data;
1984 switch (cmd) {
1985 case SNDRV_TIMER_IOCTL_PVERSION:
1986 return put_user(SNDRV_TIMER_VERSION, p) ? -EFAULT : 0;
1987 case SNDRV_TIMER_IOCTL_NEXT_DEVICE:
1988 return snd_timer_user_next_device(argp);
1989 case SNDRV_TIMER_IOCTL_TREAD:
1990 {
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001991 int xarg, old_tread;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02001992
Takashi Iwaiaf368022016-01-13 17:48:01 +01001993 if (tu->timeri) /* too late */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return -EBUSY;
Takashi Iwaiaf368022016-01-13 17:48:01 +01001995 if (get_user(xarg, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return -EFAULT;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001997 old_tread = tu->tread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 tu->tread = xarg ? 1 : 0;
Takashi Iwai890e2cb2017-06-02 17:16:59 +02001999 if (tu->tread != old_tread &&
2000 realloc_user_queue(tu, tu->queue_size) < 0) {
2001 tu->tread = old_tread;
2002 return -ENOMEM;
2003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 return 0;
2005 }
2006 case SNDRV_TIMER_IOCTL_GINFO:
2007 return snd_timer_user_ginfo(file, argp);
2008 case SNDRV_TIMER_IOCTL_GPARAMS:
2009 return snd_timer_user_gparams(file, argp);
2010 case SNDRV_TIMER_IOCTL_GSTATUS:
2011 return snd_timer_user_gstatus(file, argp);
2012 case SNDRV_TIMER_IOCTL_SELECT:
2013 return snd_timer_user_tselect(file, argp);
2014 case SNDRV_TIMER_IOCTL_INFO:
2015 return snd_timer_user_info(file, argp);
2016 case SNDRV_TIMER_IOCTL_PARAMS:
2017 return snd_timer_user_params(file, argp);
2018 case SNDRV_TIMER_IOCTL_STATUS:
2019 return snd_timer_user_status(file, argp);
2020 case SNDRV_TIMER_IOCTL_START:
Takashi Iwai8c50b372005-05-15 15:43:54 +02002021 case SNDRV_TIMER_IOCTL_START_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 return snd_timer_user_start(file);
2023 case SNDRV_TIMER_IOCTL_STOP:
Takashi Iwai8c50b372005-05-15 15:43:54 +02002024 case SNDRV_TIMER_IOCTL_STOP_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return snd_timer_user_stop(file);
2026 case SNDRV_TIMER_IOCTL_CONTINUE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02002027 case SNDRV_TIMER_IOCTL_CONTINUE_OLD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return snd_timer_user_continue(file);
Takashi Iwai15790a62005-05-15 15:04:14 +02002029 case SNDRV_TIMER_IOCTL_PAUSE:
Takashi Iwai8c50b372005-05-15 15:43:54 +02002030 case SNDRV_TIMER_IOCTL_PAUSE_OLD:
Takashi Iwai15790a62005-05-15 15:04:14 +02002031 return snd_timer_user_pause(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
2033 return -ENOTTY;
2034}
2035
Takashi Iwaiaf368022016-01-13 17:48:01 +01002036static long snd_timer_user_ioctl(struct file *file, unsigned int cmd,
2037 unsigned long arg)
2038{
2039 struct snd_timer_user *tu = file->private_data;
2040 long ret;
2041
2042 mutex_lock(&tu->ioctl_lock);
2043 ret = __snd_timer_user_ioctl(file, cmd, arg);
2044 mutex_unlock(&tu->ioctl_lock);
2045 return ret;
2046}
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048static int snd_timer_user_fasync(int fd, struct file * file, int on)
2049{
Takashi Iwai53d2f742005-11-17 13:56:05 +01002050 struct snd_timer_user *tu;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 tu = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07002053 return fasync_helper(fd, file, on, &tu->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002056static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
2057 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
Takashi Iwai53d2f742005-11-17 13:56:05 +01002059 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 long result = 0, unit;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002061 int qhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 int err = 0;
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 tu = file->private_data;
Takashi Iwai53d2f742005-11-17 13:56:05 +01002065 unit = tu->tread ? sizeof(struct snd_timer_tread) : sizeof(struct snd_timer_read);
Takashi Iwaid11662f42017-06-02 15:03:38 +02002066 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 spin_lock_irq(&tu->qlock);
2068 while ((long)count - result >= unit) {
2069 while (!tu->qused) {
Ingo Molnarac6424b2017-06-20 12:06:13 +02002070 wait_queue_entry_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
2073 err = -EAGAIN;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002074 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 }
2076
2077 set_current_state(TASK_INTERRUPTIBLE);
2078 init_waitqueue_entry(&wait, current);
2079 add_wait_queue(&tu->qchange_sleep, &wait);
2080
2081 spin_unlock_irq(&tu->qlock);
Takashi Iwaid11662f42017-06-02 15:03:38 +02002082 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 schedule();
Takashi Iwaid11662f42017-06-02 15:03:38 +02002084 mutex_lock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 spin_lock_irq(&tu->qlock);
2086
2087 remove_wait_queue(&tu->qchange_sleep, &wait);
2088
Takashi Iwai230323d2016-01-21 17:19:31 +01002089 if (tu->disconnected) {
2090 err = -ENODEV;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002091 goto _error;
Takashi Iwai230323d2016-01-21 17:19:31 +01002092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (signal_pending(current)) {
2094 err = -ERESTARTSYS;
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002095 goto _error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
2097 }
2098
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002099 qhead = tu->qhead++;
2100 tu->qhead %= tu->queue_size;
Takashi Iwai3fa69932016-07-04 14:02:15 +02002101 tu->qused--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104 if (tu->tread) {
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002105 if (copy_to_user(buffer, &tu->tqueue[qhead],
2106 sizeof(struct snd_timer_tread)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 } else {
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002109 if (copy_to_user(buffer, &tu->queue[qhead],
2110 sizeof(struct snd_timer_read)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 spin_lock_irq(&tu->qlock);
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002115 if (err < 0)
2116 goto _error;
2117 result += unit;
2118 buffer += unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 _error:
Takashi Iwai4dff5c72016-02-08 17:26:58 +01002121 spin_unlock_irq(&tu->qlock);
Takashi Iwaid11662f42017-06-02 15:03:38 +02002122 mutex_unlock(&tu->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return result > 0 ? result : err;
2124}
2125
Al Viro680ef722017-07-02 23:27:36 -04002126static __poll_t snd_timer_user_poll(struct file *file, poll_table * wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
Al Viro680ef722017-07-02 23:27:36 -04002128 __poll_t mask;
Takashi Iwai53d2f742005-11-17 13:56:05 +01002129 struct snd_timer_user *tu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 tu = file->private_data;
2132
2133 poll_wait(file, &tu->qchange_sleep, wait);
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 mask = 0;
Takashi Iwaid7f910b2017-06-02 17:35:30 +02002136 spin_lock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (tu->qused)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002138 mask |= EPOLLIN | EPOLLRDNORM;
Takashi Iwai230323d2016-01-21 17:19:31 +01002139 if (tu->disconnected)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002140 mask |= EPOLLERR;
Takashi Iwaid7f910b2017-06-02 17:35:30 +02002141 spin_unlock_irq(&tu->qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 return mask;
2144}
2145
2146#ifdef CONFIG_COMPAT
2147#include "timer_compat.c"
2148#else
2149#define snd_timer_user_ioctl_compat NULL
2150#endif
2151
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08002152static const struct file_operations snd_timer_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
2154 .owner = THIS_MODULE,
2155 .read = snd_timer_user_read,
2156 .open = snd_timer_user_open,
2157 .release = snd_timer_user_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02002158 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 .poll = snd_timer_user_poll,
2160 .unlocked_ioctl = snd_timer_user_ioctl,
2161 .compat_ioctl = snd_timer_user_ioctl_compat,
2162 .fasync = snd_timer_user_fasync,
2163};
2164
Takashi Iwai7c358602015-01-29 18:09:05 +01002165/* unregister the system timer */
2166static void snd_timer_free_all(void)
2167{
2168 struct snd_timer *timer, *n;
2169
2170 list_for_each_entry_safe(timer, n, &snd_timer_list, device_list)
2171 snd_timer_free(timer);
2172}
2173
Takashi Iwai89da0612015-01-29 18:12:26 +01002174static struct device timer_dev;
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176/*
2177 * ENTRY functions
2178 */
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180static int __init alsa_timer_init(void)
2181{
2182 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Takashi Iwai89da0612015-01-29 18:12:26 +01002184 snd_device_initialize(&timer_dev, NULL);
2185 dev_set_name(&timer_dev, "timer");
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187#ifdef SNDRV_OSS_INFO_DEV_TIMERS
Clemens Ladisch6b172a82005-10-12 17:20:21 +02002188 snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1,
2189 "system timer");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190#endif
Takashi Iwaie28563c2005-12-01 10:42:42 +01002191
Takashi Iwai7c358602015-01-29 18:09:05 +01002192 err = snd_timer_register_system();
2193 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002194 pr_err("ALSA: unable to register system timer (%i)\n", err);
Markus Elfring1ae0e4c2017-08-23 09:30:41 +02002195 goto put_timer;
Takashi Iwai7c358602015-01-29 18:09:05 +01002196 }
2197
Takashi Iwai40a4b262015-01-30 08:34:58 +01002198 err = snd_register_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0,
2199 &snd_timer_f_ops, NULL, &timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002200 if (err < 0) {
Takashi Iwaicf74dcf2014-02-04 18:22:39 +01002201 pr_err("ALSA: unable to register timer device (%i)\n", err);
Takashi Iwai7c358602015-01-29 18:09:05 +01002202 snd_timer_free_all();
Markus Elfring1ae0e4c2017-08-23 09:30:41 +02002203 goto put_timer;
Takashi Iwai7c358602015-01-29 18:09:05 +01002204 }
2205
Takashi Iwaie28563c2005-12-01 10:42:42 +01002206 snd_timer_proc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return 0;
Markus Elfring1ae0e4c2017-08-23 09:30:41 +02002208
2209put_timer:
2210 put_device(&timer_dev);
2211 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212}
2213
2214static void __exit alsa_timer_exit(void)
2215{
Takashi Iwai40a4b262015-01-30 08:34:58 +01002216 snd_unregister_device(&timer_dev);
Takashi Iwai7c358602015-01-29 18:09:05 +01002217 snd_timer_free_all();
Takashi Iwai89da0612015-01-29 18:12:26 +01002218 put_device(&timer_dev);
Takashi Iwaie28563c2005-12-01 10:42:42 +01002219 snd_timer_proc_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220#ifdef SNDRV_OSS_INFO_DEV_TIMERS
2221 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1);
2222#endif
2223}
2224
2225module_init(alsa_timer_init)
2226module_exit(alsa_timer_exit)