Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Timers abstract layer |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | * |
| 20 | */ |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/delay.h> |
| 23 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/slab.h> |
| 25 | #include <linux/time.h> |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Paul Gortmaker | 51990e8 | 2012-01-22 11:23:42 -0500 | [diff] [blame] | 27 | #include <linux/device.h> |
Paul Gortmaker | 65a7721 | 2011-07-15 13:13:37 -0400 | [diff] [blame] | 28 | #include <linux/module.h> |
Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 29 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <sound/core.h> |
| 31 | #include <sound/timer.h> |
| 32 | #include <sound/control.h> |
| 33 | #include <sound/info.h> |
| 34 | #include <sound/minors.h> |
| 35 | #include <sound/initval.h> |
| 36 | #include <linux/kmod.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Takashi Iwai | 8eeaa2f | 2014-02-10 09:48:47 +0100 | [diff] [blame] | 38 | #if IS_ENABLED(CONFIG_SND_HRTIMER) |
Clemens Ladisch | 109fef9 | 2010-11-18 09:53:54 +0100 | [diff] [blame] | 39 | #define DEFAULT_TIMER_LIMIT 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #else |
| 41 | #define DEFAULT_TIMER_LIMIT 1 |
| 42 | #endif |
| 43 | |
| 44 | static int timer_limit = DEFAULT_TIMER_LIMIT; |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 45 | static int timer_tstamp_monotonic = 1; |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 46 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.de>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | MODULE_DESCRIPTION("ALSA timer interface"); |
| 48 | MODULE_LICENSE("GPL"); |
| 49 | module_param(timer_limit, int, 0444); |
| 50 | MODULE_PARM_DESC(timer_limit, "Maximum global timers in system."); |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 51 | module_param(timer_tstamp_monotonic, int, 0444); |
| 52 | MODULE_PARM_DESC(timer_tstamp_monotonic, "Use posix monotonic clock source for timestamps (default)."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Kay Sievers | 03cfe6f | 2010-11-23 17:43:19 +0100 | [diff] [blame] | 54 | MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR, SNDRV_MINOR_TIMER); |
| 55 | MODULE_ALIAS("devname:snd/timer"); |
| 56 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 57 | struct snd_timer_user { |
| 58 | struct snd_timer_instance *timeri; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 59 | int tread; /* enhanced read with timestamps and events */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | unsigned long ticks; |
| 61 | unsigned long overrun; |
| 62 | int qhead; |
| 63 | int qtail; |
| 64 | int qused; |
| 65 | int queue_size; |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 66 | bool disconnected; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 67 | struct snd_timer_read *queue; |
| 68 | struct snd_timer_tread *tqueue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | spinlock_t qlock; |
| 70 | unsigned long last_resolution; |
| 71 | unsigned int filter; |
| 72 | struct timespec tstamp; /* trigger tstamp */ |
| 73 | wait_queue_head_t qchange_sleep; |
| 74 | struct fasync_struct *fasync; |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 75 | struct mutex ioctl_lock; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 76 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | /* list of timers */ |
| 79 | static LIST_HEAD(snd_timer_list); |
| 80 | |
| 81 | /* list of slave instances */ |
| 82 | static LIST_HEAD(snd_timer_slave_list); |
| 83 | |
| 84 | /* lock for slave active lists */ |
| 85 | static DEFINE_SPINLOCK(slave_active_lock); |
| 86 | |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 87 | static DEFINE_MUTEX(register_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 89 | static int snd_timer_free(struct snd_timer *timer); |
| 90 | static int snd_timer_dev_free(struct snd_device *device); |
| 91 | static int snd_timer_dev_register(struct snd_device *device); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 92 | static int snd_timer_dev_disconnect(struct snd_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 94 | static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | /* |
| 97 | * create a timer instance with the given owner string. |
| 98 | * when timer is not NULL, increments the module counter |
| 99 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 100 | static struct snd_timer_instance *snd_timer_instance_new(char *owner, |
| 101 | struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 103 | struct snd_timer_instance *timeri; |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 104 | timeri = kzalloc(sizeof(*timeri), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | if (timeri == NULL) |
| 106 | return NULL; |
Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 107 | timeri->owner = kstrdup(owner, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | if (! timeri->owner) { |
| 109 | kfree(timeri); |
| 110 | return NULL; |
| 111 | } |
| 112 | INIT_LIST_HEAD(&timeri->open_list); |
| 113 | INIT_LIST_HEAD(&timeri->active_list); |
| 114 | INIT_LIST_HEAD(&timeri->ack_list); |
| 115 | INIT_LIST_HEAD(&timeri->slave_list_head); |
| 116 | INIT_LIST_HEAD(&timeri->slave_active_head); |
| 117 | |
| 118 | timeri->timer = timer; |
Clemens Ladisch | de24214 | 2005-10-12 17:12:31 +0200 | [diff] [blame] | 119 | if (timer && !try_module_get(timer->module)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | kfree(timeri->owner); |
| 121 | kfree(timeri); |
| 122 | return NULL; |
| 123 | } |
| 124 | |
| 125 | return timeri; |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * find a timer instance from the given timer id |
| 130 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 131 | static struct snd_timer *snd_timer_find(struct snd_timer_id *tid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 133 | struct snd_timer *timer = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 135 | list_for_each_entry(timer, &snd_timer_list, device_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | if (timer->tmr_class != tid->dev_class) |
| 137 | continue; |
| 138 | if ((timer->tmr_class == SNDRV_TIMER_CLASS_CARD || |
| 139 | timer->tmr_class == SNDRV_TIMER_CLASS_PCM) && |
| 140 | (timer->card == NULL || |
| 141 | timer->card->number != tid->card)) |
| 142 | continue; |
| 143 | if (timer->tmr_device != tid->device) |
| 144 | continue; |
| 145 | if (timer->tmr_subdevice != tid->subdevice) |
| 146 | continue; |
| 147 | return timer; |
| 148 | } |
| 149 | return NULL; |
| 150 | } |
| 151 | |
Johannes Berg | ee2da99 | 2008-07-09 10:28:41 +0200 | [diff] [blame] | 152 | #ifdef CONFIG_MODULES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 154 | static void snd_timer_request(struct snd_timer_id *tid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | switch (tid->dev_class) { |
| 157 | case SNDRV_TIMER_CLASS_GLOBAL: |
| 158 | if (tid->device < timer_limit) |
| 159 | request_module("snd-timer-%i", tid->device); |
| 160 | break; |
| 161 | case SNDRV_TIMER_CLASS_CARD: |
| 162 | case SNDRV_TIMER_CLASS_PCM: |
| 163 | if (tid->card < snd_ecards_limit) |
| 164 | request_module("snd-card-%i", tid->card); |
| 165 | break; |
| 166 | default: |
| 167 | break; |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | #endif |
| 172 | |
| 173 | /* |
| 174 | * look for a master instance matching with the slave id of the given slave. |
| 175 | * when found, relink the open_link of the slave. |
| 176 | * |
| 177 | * call this with register_mutex down. |
| 178 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 179 | static void snd_timer_check_slave(struct snd_timer_instance *slave) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 181 | struct snd_timer *timer; |
| 182 | struct snd_timer_instance *master; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | /* FIXME: it's really dumb to look up all entries.. */ |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 185 | list_for_each_entry(timer, &snd_timer_list, device_list) { |
| 186 | list_for_each_entry(master, &timer->open_list_head, open_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | if (slave->slave_class == master->slave_class && |
| 188 | slave->slave_id == master->slave_id) { |
Nicolas Kaiser | 5b7c757 | 2011-03-16 17:10:11 +0100 | [diff] [blame] | 189 | list_move_tail(&slave->open_list, |
| 190 | &master->slave_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | spin_lock_irq(&slave_active_lock); |
| 192 | slave->master = master; |
| 193 | slave->timer = master->timer; |
| 194 | spin_unlock_irq(&slave_active_lock); |
| 195 | return; |
| 196 | } |
| 197 | } |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | /* |
| 202 | * look for slave instances matching with the slave id of the given master. |
| 203 | * when found, relink the open_link of slaves. |
| 204 | * |
| 205 | * call this with register_mutex down. |
| 206 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 207 | static void snd_timer_check_master(struct snd_timer_instance *master) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 209 | struct snd_timer_instance *slave, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | /* check all pending slaves */ |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 212 | list_for_each_entry_safe(slave, tmp, &snd_timer_slave_list, open_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | if (slave->slave_class == master->slave_class && |
| 214 | slave->slave_id == master->slave_id) { |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 215 | list_move_tail(&slave->open_list, &master->slave_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | spin_lock_irq(&slave_active_lock); |
Takashi Iwai | b5a663a | 2016-01-14 16:30:58 +0100 | [diff] [blame] | 217 | spin_lock(&master->timer->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | slave->master = master; |
| 219 | slave->timer = master->timer; |
| 220 | if (slave->flags & SNDRV_TIMER_IFLG_RUNNING) |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 221 | list_add_tail(&slave->active_list, |
| 222 | &master->slave_active_head); |
Takashi Iwai | b5a663a | 2016-01-14 16:30:58 +0100 | [diff] [blame] | 223 | spin_unlock(&master->timer->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | spin_unlock_irq(&slave_active_lock); |
| 225 | } |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | /* |
| 230 | * open a timer instance |
| 231 | * when opening a master, the slave id must be here given. |
| 232 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 233 | int snd_timer_open(struct snd_timer_instance **ti, |
| 234 | char *owner, struct snd_timer_id *tid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | unsigned int slave_id) |
| 236 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 237 | struct snd_timer *timer; |
| 238 | struct snd_timer_instance *timeri = NULL; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | if (tid->dev_class == SNDRV_TIMER_CLASS_SLAVE) { |
| 241 | /* open a slave instance */ |
| 242 | if (tid->dev_sclass <= SNDRV_TIMER_SCLASS_NONE || |
| 243 | tid->dev_sclass > SNDRV_TIMER_SCLASS_OSS_SEQUENCER) { |
Takashi Iwai | cf74dcf | 2014-02-04 18:22:39 +0100 | [diff] [blame] | 244 | pr_debug("ALSA: timer: invalid slave class %i\n", |
| 245 | tid->dev_sclass); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | return -EINVAL; |
| 247 | } |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 248 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | timeri = snd_timer_instance_new(owner, NULL); |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 250 | if (!timeri) { |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 251 | mutex_unlock(®ister_mutex); |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 252 | return -ENOMEM; |
| 253 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | timeri->slave_class = tid->dev_sclass; |
| 255 | timeri->slave_id = tid->device; |
| 256 | timeri->flags |= SNDRV_TIMER_IFLG_SLAVE; |
| 257 | list_add_tail(&timeri->open_list, &snd_timer_slave_list); |
| 258 | snd_timer_check_slave(timeri); |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 259 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | *ti = timeri; |
| 261 | return 0; |
| 262 | } |
| 263 | |
| 264 | /* open a master instance */ |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 265 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | timer = snd_timer_find(tid); |
Johannes Berg | ee2da99 | 2008-07-09 10:28:41 +0200 | [diff] [blame] | 267 | #ifdef CONFIG_MODULES |
| 268 | if (!timer) { |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 269 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | snd_timer_request(tid); |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 271 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | timer = snd_timer_find(tid); |
| 273 | } |
| 274 | #endif |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 275 | if (!timer) { |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 276 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | return -ENODEV; |
| 278 | } |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 279 | if (!list_empty(&timer->open_list_head)) { |
| 280 | timeri = list_entry(timer->open_list_head.next, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 281 | struct snd_timer_instance, open_list); |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 282 | if (timeri->flags & SNDRV_TIMER_IFLG_EXCLUSIVE) { |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 283 | mutex_unlock(®ister_mutex); |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 284 | return -EBUSY; |
| 285 | } |
| 286 | } |
| 287 | timeri = snd_timer_instance_new(owner, timer); |
| 288 | if (!timeri) { |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 289 | mutex_unlock(®ister_mutex); |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 290 | return -ENOMEM; |
| 291 | } |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 292 | /* take a card refcount for safe disconnection */ |
| 293 | if (timer->card) |
| 294 | get_device(&timer->card->card_dev); |
Clemens Ladisch | 2fd43d1 | 2005-10-12 17:10:35 +0200 | [diff] [blame] | 295 | timeri->slave_class = tid->dev_sclass; |
| 296 | timeri->slave_id = slave_id; |
| 297 | if (list_empty(&timer->open_list_head) && timer->hw.open) |
| 298 | timer->hw.open(timer); |
| 299 | list_add_tail(&timeri->open_list, &timer->open_list_head); |
| 300 | snd_timer_check_master(timeri); |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 301 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | *ti = timeri; |
| 303 | return 0; |
| 304 | } |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | /* |
| 307 | * close a timer instance |
| 308 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 309 | int snd_timer_close(struct snd_timer_instance *timeri) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 311 | struct snd_timer *timer = NULL; |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 312 | struct snd_timer_instance *slave, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
Takashi Iwai | 0072889 | 2008-08-14 07:51:57 +0200 | [diff] [blame] | 314 | if (snd_BUG_ON(!timeri)) |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 315 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Takashi Iwai | 9984d1b | 2016-02-10 11:53:30 +0100 | [diff] [blame] | 317 | mutex_lock(®ister_mutex); |
| 318 | list_del(&timeri->open_list); |
| 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | /* force to stop the timer */ |
| 321 | snd_timer_stop(timeri); |
| 322 | |
Takashi Iwai | 9984d1b | 2016-02-10 11:53:30 +0100 | [diff] [blame] | 323 | timer = timeri->timer; |
| 324 | if (timer) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | /* wait, until the active callback is finished */ |
| 326 | spin_lock_irq(&timer->lock); |
| 327 | while (timeri->flags & SNDRV_TIMER_IFLG_CALLBACK) { |
| 328 | spin_unlock_irq(&timer->lock); |
| 329 | udelay(10); |
| 330 | spin_lock_irq(&timer->lock); |
| 331 | } |
| 332 | spin_unlock_irq(&timer->lock); |
Takashi Iwai | 9984d1b | 2016-02-10 11:53:30 +0100 | [diff] [blame] | 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | /* remove slave links */ |
Takashi Iwai | b5a663a | 2016-01-14 16:30:58 +0100 | [diff] [blame] | 335 | spin_lock_irq(&slave_active_lock); |
| 336 | spin_lock(&timer->lock); |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 337 | list_for_each_entry_safe(slave, tmp, &timeri->slave_list_head, |
| 338 | open_list) { |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 339 | list_move_tail(&slave->open_list, &snd_timer_slave_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | slave->master = NULL; |
| 341 | slave->timer = NULL; |
Takashi Iwai | b5a663a | 2016-01-14 16:30:58 +0100 | [diff] [blame] | 342 | list_del_init(&slave->ack_list); |
| 343 | list_del_init(&slave->active_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
Takashi Iwai | b5a663a | 2016-01-14 16:30:58 +0100 | [diff] [blame] | 345 | spin_unlock(&timer->lock); |
| 346 | spin_unlock_irq(&slave_active_lock); |
Takashi Iwai | 9984d1b | 2016-02-10 11:53:30 +0100 | [diff] [blame] | 347 | |
| 348 | /* slave doesn't need to release timer resources below */ |
| 349 | if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) |
| 350 | timer = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
Takashi Iwai | 9984d1b | 2016-02-10 11:53:30 +0100 | [diff] [blame] | 352 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | if (timeri->private_free) |
| 354 | timeri->private_free(timeri); |
| 355 | kfree(timeri->owner); |
| 356 | kfree(timeri); |
Takashi Iwai | 9984d1b | 2016-02-10 11:53:30 +0100 | [diff] [blame] | 357 | |
| 358 | if (timer) { |
| 359 | if (list_empty(&timer->open_list_head) && timer->hw.close) |
| 360 | timer->hw.close(timer); |
| 361 | /* release a card refcount for safe disconnection */ |
| 362 | if (timer->card) |
| 363 | put_device(&timer->card->card_dev); |
Clemens Ladisch | de24214 | 2005-10-12 17:12:31 +0200 | [diff] [blame] | 364 | module_put(timer->module); |
Takashi Iwai | 9984d1b | 2016-02-10 11:53:30 +0100 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | return 0; |
| 369 | } |
| 370 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 371 | unsigned long snd_timer_resolution(struct snd_timer_instance *timeri) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 373 | struct snd_timer * timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | if (timeri == NULL) |
| 376 | return 0; |
| 377 | if ((timer = timeri->timer) != NULL) { |
| 378 | if (timer->hw.c_resolution) |
| 379 | return timer->hw.c_resolution(timer); |
| 380 | return timer->hw.resolution; |
| 381 | } |
| 382 | return 0; |
| 383 | } |
| 384 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 385 | static void snd_timer_notify1(struct snd_timer_instance *ti, int event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 387 | struct snd_timer *timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | unsigned long resolution = 0; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 389 | struct snd_timer_instance *ts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | struct timespec tstamp; |
| 391 | |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 392 | if (timer_tstamp_monotonic) |
Thomas Gleixner | 26204e0 | 2014-06-11 23:59:14 +0000 | [diff] [blame] | 393 | ktime_get_ts(&tstamp); |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 394 | else |
| 395 | getnstimeofday(&tstamp); |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 396 | if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_START || |
| 397 | event > SNDRV_TIMER_EVENT_PAUSE)) |
| 398 | return; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 399 | if (event == SNDRV_TIMER_EVENT_START || |
| 400 | event == SNDRV_TIMER_EVENT_CONTINUE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | resolution = snd_timer_resolution(ti); |
| 402 | if (ti->ccallback) |
Jaroslav Kysela | b30477d | 2010-03-03 11:05:55 +0100 | [diff] [blame] | 403 | ti->ccallback(ti, event, &tstamp, resolution); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | if (ti->flags & SNDRV_TIMER_IFLG_SLAVE) |
| 405 | return; |
| 406 | timer = ti->timer; |
| 407 | if (timer == NULL) |
| 408 | return; |
| 409 | if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE) |
| 410 | return; |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 411 | list_for_each_entry(ts, &ti->slave_active_head, active_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | if (ts->ccallback) |
Takashi Iwai | 117159f | 2016-02-08 17:36:25 +0100 | [diff] [blame] | 413 | ts->ccallback(ts, event + 100, &tstamp, resolution); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 416 | /* start/continue a master timer */ |
| 417 | static int snd_timer_start1(struct snd_timer_instance *timeri, |
| 418 | bool start, unsigned long ticks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | { |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 420 | struct snd_timer *timer; |
| 421 | int result; |
| 422 | unsigned long flags; |
| 423 | |
| 424 | timer = timeri->timer; |
| 425 | if (!timer) |
| 426 | return -EINVAL; |
| 427 | |
| 428 | spin_lock_irqsave(&timer->lock, flags); |
| 429 | if (timer->card && timer->card->shutdown) { |
| 430 | result = -ENODEV; |
| 431 | goto unlock; |
| 432 | } |
| 433 | if (timeri->flags & (SNDRV_TIMER_IFLG_RUNNING | |
| 434 | SNDRV_TIMER_IFLG_START)) { |
| 435 | result = -EBUSY; |
| 436 | goto unlock; |
| 437 | } |
| 438 | |
| 439 | if (start) |
| 440 | timeri->ticks = timeri->cticks = ticks; |
| 441 | else if (!timeri->cticks) |
| 442 | timeri->cticks = 1; |
| 443 | timeri->pticks = 0; |
| 444 | |
Nicolas Kaiser | 5b7c757 | 2011-03-16 17:10:11 +0100 | [diff] [blame] | 445 | list_move_tail(&timeri->active_list, &timer->active_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | if (timer->running) { |
| 447 | if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE) |
| 448 | goto __start_now; |
| 449 | timer->flags |= SNDRV_TIMER_FLG_RESCHED; |
| 450 | timeri->flags |= SNDRV_TIMER_IFLG_START; |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 451 | result = 1; /* delayed start */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } else { |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 453 | if (start) |
| 454 | timer->sticks = ticks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | timer->hw.start(timer); |
| 456 | __start_now: |
| 457 | timer->running++; |
| 458 | timeri->flags |= SNDRV_TIMER_IFLG_RUNNING; |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 459 | result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 461 | snd_timer_notify1(timeri, start ? SNDRV_TIMER_EVENT_START : |
| 462 | SNDRV_TIMER_EVENT_CONTINUE); |
| 463 | unlock: |
| 464 | spin_unlock_irqrestore(&timer->lock, flags); |
| 465 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 468 | /* start/continue a slave timer */ |
| 469 | static int snd_timer_start_slave(struct snd_timer_instance *timeri, |
| 470 | bool start) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | { |
| 472 | unsigned long flags; |
| 473 | |
| 474 | spin_lock_irqsave(&slave_active_lock, flags); |
Takashi Iwai | f784beb | 2016-01-30 23:09:08 +0100 | [diff] [blame] | 475 | if (timeri->flags & SNDRV_TIMER_IFLG_RUNNING) { |
| 476 | spin_unlock_irqrestore(&slave_active_lock, flags); |
| 477 | return -EBUSY; |
| 478 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | timeri->flags |= SNDRV_TIMER_IFLG_RUNNING; |
Takashi Iwai | b5a663a | 2016-01-14 16:30:58 +0100 | [diff] [blame] | 480 | if (timeri->master && timeri->timer) { |
| 481 | spin_lock(&timeri->timer->lock); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 482 | list_add_tail(&timeri->active_list, |
| 483 | &timeri->master->slave_active_head); |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 484 | snd_timer_notify1(timeri, start ? SNDRV_TIMER_EVENT_START : |
| 485 | SNDRV_TIMER_EVENT_CONTINUE); |
Takashi Iwai | b5a663a | 2016-01-14 16:30:58 +0100 | [diff] [blame] | 486 | spin_unlock(&timeri->timer->lock); |
| 487 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | spin_unlock_irqrestore(&slave_active_lock, flags); |
| 489 | return 1; /* delayed start */ |
| 490 | } |
| 491 | |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 492 | /* stop/pause a master timer */ |
| 493 | static int snd_timer_stop1(struct snd_timer_instance *timeri, bool stop) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 495 | struct snd_timer *timer; |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 496 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | unsigned long flags; |
| 498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | timer = timeri->timer; |
| 500 | if (!timer) |
| 501 | return -EINVAL; |
| 502 | spin_lock_irqsave(&timer->lock, flags); |
Takashi Iwai | f784beb | 2016-01-30 23:09:08 +0100 | [diff] [blame] | 503 | if (!(timeri->flags & (SNDRV_TIMER_IFLG_RUNNING | |
| 504 | SNDRV_TIMER_IFLG_START))) { |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 505 | result = -EBUSY; |
| 506 | goto unlock; |
Takashi Iwai | f784beb | 2016-01-30 23:09:08 +0100 | [diff] [blame] | 507 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | list_del_init(&timeri->ack_list); |
| 509 | list_del_init(&timeri->active_list); |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 510 | if (timer->card && timer->card->shutdown) |
| 511 | goto unlock; |
| 512 | if (stop) { |
| 513 | timeri->cticks = timeri->ticks; |
| 514 | timeri->pticks = 0; |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 515 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | if ((timeri->flags & SNDRV_TIMER_IFLG_RUNNING) && |
| 517 | !(--timer->running)) { |
| 518 | timer->hw.stop(timer); |
| 519 | if (timer->flags & SNDRV_TIMER_FLG_RESCHED) { |
| 520 | timer->flags &= ~SNDRV_TIMER_FLG_RESCHED; |
| 521 | snd_timer_reschedule(timer, 0); |
| 522 | if (timer->flags & SNDRV_TIMER_FLG_CHANGE) { |
| 523 | timer->flags &= ~SNDRV_TIMER_FLG_CHANGE; |
| 524 | timer->hw.start(timer); |
| 525 | } |
| 526 | } |
| 527 | } |
Takashi Iwai | c3b1681 | 2016-01-14 17:01:46 +0100 | [diff] [blame] | 528 | timeri->flags &= ~(SNDRV_TIMER_IFLG_RUNNING | SNDRV_TIMER_IFLG_START); |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 529 | snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP : |
| 530 | SNDRV_TIMER_EVENT_CONTINUE); |
| 531 | unlock: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | spin_unlock_irqrestore(&timer->lock, flags); |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 533 | return result; |
| 534 | } |
| 535 | |
| 536 | /* stop/pause a slave timer */ |
| 537 | static int snd_timer_stop_slave(struct snd_timer_instance *timeri, bool stop) |
| 538 | { |
| 539 | unsigned long flags; |
| 540 | |
| 541 | spin_lock_irqsave(&slave_active_lock, flags); |
| 542 | if (!(timeri->flags & SNDRV_TIMER_IFLG_RUNNING)) { |
| 543 | spin_unlock_irqrestore(&slave_active_lock, flags); |
| 544 | return -EBUSY; |
| 545 | } |
| 546 | timeri->flags &= ~SNDRV_TIMER_IFLG_RUNNING; |
| 547 | if (timeri->timer) { |
| 548 | spin_lock(&timeri->timer->lock); |
| 549 | list_del_init(&timeri->ack_list); |
| 550 | list_del_init(&timeri->active_list); |
| 551 | snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP : |
| 552 | SNDRV_TIMER_EVENT_CONTINUE); |
| 553 | spin_unlock(&timeri->timer->lock); |
| 554 | } |
| 555 | spin_unlock_irqrestore(&slave_active_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | return 0; |
| 557 | } |
| 558 | |
| 559 | /* |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 560 | * start the timer instance |
| 561 | */ |
| 562 | int snd_timer_start(struct snd_timer_instance *timeri, unsigned int ticks) |
| 563 | { |
| 564 | if (timeri == NULL || ticks < 1) |
| 565 | return -EINVAL; |
| 566 | if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) |
| 567 | return snd_timer_start_slave(timeri, true); |
| 568 | else |
| 569 | return snd_timer_start1(timeri, true, ticks); |
| 570 | } |
| 571 | |
| 572 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | * stop the timer instance. |
| 574 | * |
| 575 | * do not call this from the timer callback! |
| 576 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 577 | int snd_timer_stop(struct snd_timer_instance *timeri) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | { |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 579 | if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) |
| 580 | return snd_timer_stop_slave(timeri, true); |
| 581 | else |
| 582 | return snd_timer_stop1(timeri, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | /* |
| 586 | * start again.. the tick is kept. |
| 587 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 588 | int snd_timer_continue(struct snd_timer_instance *timeri) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 591 | return snd_timer_start_slave(timeri, false); |
| 592 | else |
| 593 | return snd_timer_start1(timeri, false, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | /* |
| 597 | * pause.. remember the ticks left |
| 598 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 599 | int snd_timer_pause(struct snd_timer_instance * timeri) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | { |
Takashi Iwai | f65e0d2 | 2016-02-10 12:47:03 +0100 | [diff] [blame] | 601 | if (timeri->flags & SNDRV_TIMER_IFLG_SLAVE) |
| 602 | return snd_timer_stop_slave(timeri, false); |
| 603 | else |
| 604 | return snd_timer_stop1(timeri, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | /* |
| 608 | * reschedule the timer |
| 609 | * |
| 610 | * start pending instances and check the scheduling ticks. |
| 611 | * when the scheduling ticks is changed set CHANGE flag to reprogram the timer. |
| 612 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 613 | static void snd_timer_reschedule(struct snd_timer * timer, unsigned long ticks_left) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 615 | struct snd_timer_instance *ti; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | unsigned long ticks = ~0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 618 | list_for_each_entry(ti, &timer->active_list_head, active_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | if (ti->flags & SNDRV_TIMER_IFLG_START) { |
| 620 | ti->flags &= ~SNDRV_TIMER_IFLG_START; |
| 621 | ti->flags |= SNDRV_TIMER_IFLG_RUNNING; |
| 622 | timer->running++; |
| 623 | } |
| 624 | if (ti->flags & SNDRV_TIMER_IFLG_RUNNING) { |
| 625 | if (ticks > ti->cticks) |
| 626 | ticks = ti->cticks; |
| 627 | } |
| 628 | } |
| 629 | if (ticks == ~0UL) { |
| 630 | timer->flags &= ~SNDRV_TIMER_FLG_RESCHED; |
| 631 | return; |
| 632 | } |
| 633 | if (ticks > timer->hw.ticks) |
| 634 | ticks = timer->hw.ticks; |
| 635 | if (ticks_left != ticks) |
| 636 | timer->flags |= SNDRV_TIMER_FLG_CHANGE; |
| 637 | timer->sticks = ticks; |
| 638 | } |
| 639 | |
| 640 | /* |
| 641 | * timer tasklet |
| 642 | * |
| 643 | */ |
| 644 | static void snd_timer_tasklet(unsigned long arg) |
| 645 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 646 | struct snd_timer *timer = (struct snd_timer *) arg; |
| 647 | struct snd_timer_instance *ti; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | struct list_head *p; |
| 649 | unsigned long resolution, ticks; |
Takashi Iwai | 2999ff5 | 2006-07-05 17:16:58 +0200 | [diff] [blame] | 650 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 652 | if (timer->card && timer->card->shutdown) |
| 653 | return; |
| 654 | |
Takashi Iwai | 2999ff5 | 2006-07-05 17:16:58 +0200 | [diff] [blame] | 655 | spin_lock_irqsave(&timer->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | /* now process all callbacks */ |
| 657 | while (!list_empty(&timer->sack_list_head)) { |
| 658 | p = timer->sack_list_head.next; /* get first item */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 659 | ti = list_entry(p, struct snd_timer_instance, ack_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
| 661 | /* remove from ack_list and make empty */ |
| 662 | list_del_init(p); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | ticks = ti->pticks; |
| 665 | ti->pticks = 0; |
| 666 | resolution = ti->resolution; |
| 667 | |
| 668 | ti->flags |= SNDRV_TIMER_IFLG_CALLBACK; |
| 669 | spin_unlock(&timer->lock); |
| 670 | if (ti->callback) |
| 671 | ti->callback(ti, resolution, ticks); |
| 672 | spin_lock(&timer->lock); |
| 673 | ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK; |
| 674 | } |
Takashi Iwai | 2999ff5 | 2006-07-05 17:16:58 +0200 | [diff] [blame] | 675 | spin_unlock_irqrestore(&timer->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | /* |
| 679 | * timer interrupt |
| 680 | * |
| 681 | * ticks_left is usually equal to timer->sticks. |
| 682 | * |
| 683 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 684 | void snd_timer_interrupt(struct snd_timer * timer, unsigned long ticks_left) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 686 | struct snd_timer_instance *ti, *ts, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | unsigned long resolution, ticks; |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 688 | struct list_head *p, *ack_list_head; |
Takashi Iwai | b32425a | 2005-11-18 18:52:14 +0100 | [diff] [blame] | 689 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | int use_tasklet = 0; |
| 691 | |
| 692 | if (timer == NULL) |
| 693 | return; |
| 694 | |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 695 | if (timer->card && timer->card->shutdown) |
| 696 | return; |
| 697 | |
Takashi Iwai | b32425a | 2005-11-18 18:52:14 +0100 | [diff] [blame] | 698 | spin_lock_irqsave(&timer->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
| 700 | /* remember the current resolution */ |
| 701 | if (timer->hw.c_resolution) |
| 702 | resolution = timer->hw.c_resolution(timer); |
| 703 | else |
| 704 | resolution = timer->hw.resolution; |
| 705 | |
| 706 | /* loop for all active instances |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 707 | * Here we cannot use list_for_each_entry because the active_list of a |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 708 | * processed instance is relinked to done_list_head before the callback |
| 709 | * is called. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | */ |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 711 | list_for_each_entry_safe(ti, tmp, &timer->active_list_head, |
| 712 | active_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | if (!(ti->flags & SNDRV_TIMER_IFLG_RUNNING)) |
| 714 | continue; |
| 715 | ti->pticks += ticks_left; |
| 716 | ti->resolution = resolution; |
| 717 | if (ti->cticks < ticks_left) |
| 718 | ti->cticks = 0; |
| 719 | else |
| 720 | ti->cticks -= ticks_left; |
| 721 | if (ti->cticks) /* not expired */ |
| 722 | continue; |
| 723 | if (ti->flags & SNDRV_TIMER_IFLG_AUTO) { |
| 724 | ti->cticks = ti->ticks; |
| 725 | } else { |
| 726 | ti->flags &= ~SNDRV_TIMER_IFLG_RUNNING; |
Takashi Iwai | 094fd3b | 2016-02-04 17:06:13 +0100 | [diff] [blame] | 727 | --timer->running; |
| 728 | list_del_init(&ti->active_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | } |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 730 | if ((timer->hw.flags & SNDRV_TIMER_HW_TASKLET) || |
| 731 | (ti->flags & SNDRV_TIMER_IFLG_FAST)) |
| 732 | ack_list_head = &timer->ack_list_head; |
| 733 | else |
| 734 | ack_list_head = &timer->sack_list_head; |
| 735 | if (list_empty(&ti->ack_list)) |
| 736 | list_add_tail(&ti->ack_list, ack_list_head); |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 737 | list_for_each_entry(ts, &ti->slave_active_head, active_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | ts->pticks = ti->pticks; |
| 739 | ts->resolution = resolution; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 740 | if (list_empty(&ts->ack_list)) |
| 741 | list_add_tail(&ts->ack_list, ack_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } |
| 743 | } |
| 744 | if (timer->flags & SNDRV_TIMER_FLG_RESCHED) |
Clemens Ladisch | cd93fe4 | 2006-07-17 16:53:57 +0200 | [diff] [blame] | 745 | snd_timer_reschedule(timer, timer->sticks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | if (timer->running) { |
| 747 | if (timer->hw.flags & SNDRV_TIMER_HW_STOP) { |
| 748 | timer->hw.stop(timer); |
| 749 | timer->flags |= SNDRV_TIMER_FLG_CHANGE; |
| 750 | } |
| 751 | if (!(timer->hw.flags & SNDRV_TIMER_HW_AUTO) || |
| 752 | (timer->flags & SNDRV_TIMER_FLG_CHANGE)) { |
| 753 | /* restart timer */ |
| 754 | timer->flags &= ~SNDRV_TIMER_FLG_CHANGE; |
| 755 | timer->hw.start(timer); |
| 756 | } |
| 757 | } else { |
| 758 | timer->hw.stop(timer); |
| 759 | } |
| 760 | |
| 761 | /* now process all fast callbacks */ |
| 762 | while (!list_empty(&timer->ack_list_head)) { |
| 763 | p = timer->ack_list_head.next; /* get first item */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 764 | ti = list_entry(p, struct snd_timer_instance, ack_list); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | /* remove from ack_list and make empty */ |
| 767 | list_del_init(p); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | ticks = ti->pticks; |
| 770 | ti->pticks = 0; |
| 771 | |
| 772 | ti->flags |= SNDRV_TIMER_IFLG_CALLBACK; |
| 773 | spin_unlock(&timer->lock); |
| 774 | if (ti->callback) |
| 775 | ti->callback(ti, resolution, ticks); |
| 776 | spin_lock(&timer->lock); |
| 777 | ti->flags &= ~SNDRV_TIMER_IFLG_CALLBACK; |
| 778 | } |
| 779 | |
| 780 | /* do we have any slow callbacks? */ |
| 781 | use_tasklet = !list_empty(&timer->sack_list_head); |
Takashi Iwai | b32425a | 2005-11-18 18:52:14 +0100 | [diff] [blame] | 782 | spin_unlock_irqrestore(&timer->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | |
| 784 | if (use_tasklet) |
Takashi Iwai | 1f04128 | 2008-12-18 12:17:55 +0100 | [diff] [blame] | 785 | tasklet_schedule(&timer->task_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | /* |
| 789 | |
| 790 | */ |
| 791 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 792 | int snd_timer_new(struct snd_card *card, char *id, struct snd_timer_id *tid, |
| 793 | struct snd_timer **rtimer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 795 | struct snd_timer *timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | int err; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 797 | static struct snd_device_ops ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | .dev_free = snd_timer_dev_free, |
| 799 | .dev_register = snd_timer_dev_register, |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 800 | .dev_disconnect = snd_timer_dev_disconnect, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | }; |
| 802 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 803 | if (snd_BUG_ON(!tid)) |
| 804 | return -EINVAL; |
| 805 | if (rtimer) |
| 806 | *rtimer = NULL; |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 807 | timer = kzalloc(sizeof(*timer), GFP_KERNEL); |
Takashi Iwai | ec0e993 | 2015-03-10 15:42:14 +0100 | [diff] [blame] | 808 | if (!timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | return -ENOMEM; |
| 810 | timer->tmr_class = tid->dev_class; |
| 811 | timer->card = card; |
| 812 | timer->tmr_device = tid->device; |
| 813 | timer->tmr_subdevice = tid->subdevice; |
| 814 | if (id) |
| 815 | strlcpy(timer->id, id, sizeof(timer->id)); |
| 816 | INIT_LIST_HEAD(&timer->device_list); |
| 817 | INIT_LIST_HEAD(&timer->open_list_head); |
| 818 | INIT_LIST_HEAD(&timer->active_list_head); |
| 819 | INIT_LIST_HEAD(&timer->ack_list_head); |
| 820 | INIT_LIST_HEAD(&timer->sack_list_head); |
| 821 | spin_lock_init(&timer->lock); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 822 | tasklet_init(&timer->task_queue, snd_timer_tasklet, |
| 823 | (unsigned long)timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | if (card != NULL) { |
Clemens Ladisch | de24214 | 2005-10-12 17:12:31 +0200 | [diff] [blame] | 825 | timer->module = card->module; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 826 | err = snd_device_new(card, SNDRV_DEV_TIMER, timer, &ops); |
| 827 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | snd_timer_free(timer); |
| 829 | return err; |
| 830 | } |
| 831 | } |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 832 | if (rtimer) |
| 833 | *rtimer = timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | return 0; |
| 835 | } |
| 836 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 837 | static int snd_timer_free(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 839 | if (!timer) |
| 840 | return 0; |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 841 | |
| 842 | mutex_lock(®ister_mutex); |
| 843 | if (! list_empty(&timer->open_list_head)) { |
| 844 | struct list_head *p, *n; |
| 845 | struct snd_timer_instance *ti; |
Takashi Iwai | cf74dcf | 2014-02-04 18:22:39 +0100 | [diff] [blame] | 846 | pr_warn("ALSA: timer %p is busy?\n", timer); |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 847 | list_for_each_safe(p, n, &timer->open_list_head) { |
| 848 | list_del_init(p); |
| 849 | ti = list_entry(p, struct snd_timer_instance, open_list); |
| 850 | ti->timer = NULL; |
| 851 | } |
| 852 | } |
| 853 | list_del(&timer->device_list); |
| 854 | mutex_unlock(®ister_mutex); |
| 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | if (timer->private_free) |
| 857 | timer->private_free(timer); |
| 858 | kfree(timer); |
| 859 | return 0; |
| 860 | } |
| 861 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 862 | static int snd_timer_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 864 | struct snd_timer *timer = device->device_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | return snd_timer_free(timer); |
| 866 | } |
| 867 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 868 | static int snd_timer_dev_register(struct snd_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 870 | struct snd_timer *timer = dev->device_data; |
| 871 | struct snd_timer *timer1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 873 | if (snd_BUG_ON(!timer || !timer->hw.start || !timer->hw.stop)) |
| 874 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | if (!(timer->hw.flags & SNDRV_TIMER_HW_SLAVE) && |
| 876 | !timer->hw.resolution && timer->hw.c_resolution == NULL) |
| 877 | return -EINVAL; |
| 878 | |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 879 | mutex_lock(®ister_mutex); |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 880 | list_for_each_entry(timer1, &snd_timer_list, device_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | if (timer1->tmr_class > timer->tmr_class) |
| 882 | break; |
| 883 | if (timer1->tmr_class < timer->tmr_class) |
| 884 | continue; |
| 885 | if (timer1->card && timer->card) { |
| 886 | if (timer1->card->number > timer->card->number) |
| 887 | break; |
| 888 | if (timer1->card->number < timer->card->number) |
| 889 | continue; |
| 890 | } |
| 891 | if (timer1->tmr_device > timer->tmr_device) |
| 892 | break; |
| 893 | if (timer1->tmr_device < timer->tmr_device) |
| 894 | continue; |
| 895 | if (timer1->tmr_subdevice > timer->tmr_subdevice) |
| 896 | break; |
| 897 | if (timer1->tmr_subdevice < timer->tmr_subdevice) |
| 898 | continue; |
| 899 | /* conflicts.. */ |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 900 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | return -EBUSY; |
| 902 | } |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 903 | list_add_tail(&timer->device_list, &timer1->device_list); |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 904 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | return 0; |
| 906 | } |
| 907 | |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 908 | static int snd_timer_dev_disconnect(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 910 | struct snd_timer *timer = device->device_data; |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 911 | struct snd_timer_instance *ti; |
| 912 | |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 913 | mutex_lock(®ister_mutex); |
| 914 | list_del_init(&timer->device_list); |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 915 | /* wake up pending sleepers */ |
| 916 | list_for_each_entry(ti, &timer->open_list_head, open_list) { |
Takashi Iwai | 40ed944 | 2016-01-21 17:43:08 +0100 | [diff] [blame] | 917 | if (ti->disconnect) |
| 918 | ti->disconnect(ti); |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 919 | } |
Takashi Iwai | c461482 | 2006-06-23 14:38:23 +0200 | [diff] [blame] | 920 | mutex_unlock(®ister_mutex); |
| 921 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | } |
| 923 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 924 | void snd_timer_notify(struct snd_timer *timer, int event, struct timespec *tstamp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | { |
| 926 | unsigned long flags; |
| 927 | unsigned long resolution = 0; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 928 | struct snd_timer_instance *ti, *ts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 930 | if (timer->card && timer->card->shutdown) |
| 931 | return; |
Takashi Iwai | 7c22f1a | 2005-10-10 11:46:31 +0200 | [diff] [blame] | 932 | if (! (timer->hw.flags & SNDRV_TIMER_HW_SLAVE)) |
| 933 | return; |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 934 | if (snd_BUG_ON(event < SNDRV_TIMER_EVENT_MSTART || |
| 935 | event > SNDRV_TIMER_EVENT_MRESUME)) |
| 936 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | spin_lock_irqsave(&timer->lock, flags); |
Jaroslav Kysela | a501dfa | 2005-08-16 11:09:05 +0200 | [diff] [blame] | 938 | if (event == SNDRV_TIMER_EVENT_MSTART || |
| 939 | event == SNDRV_TIMER_EVENT_MCONTINUE || |
| 940 | event == SNDRV_TIMER_EVENT_MRESUME) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | if (timer->hw.c_resolution) |
| 942 | resolution = timer->hw.c_resolution(timer); |
| 943 | else |
| 944 | resolution = timer->hw.resolution; |
| 945 | } |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 946 | list_for_each_entry(ti, &timer->active_list_head, active_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | if (ti->ccallback) |
| 948 | ti->ccallback(ti, event, tstamp, resolution); |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 949 | list_for_each_entry(ts, &ti->slave_active_head, active_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | if (ts->ccallback) |
| 951 | ts->ccallback(ts, event, tstamp, resolution); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | } |
| 953 | spin_unlock_irqrestore(&timer->lock, flags); |
| 954 | } |
| 955 | |
| 956 | /* |
| 957 | * exported functions for global timers |
| 958 | */ |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 959 | int snd_timer_global_new(char *id, int device, struct snd_timer **rtimer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 961 | struct snd_timer_id tid; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | tid.dev_class = SNDRV_TIMER_CLASS_GLOBAL; |
| 964 | tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE; |
| 965 | tid.card = -1; |
| 966 | tid.device = device; |
| 967 | tid.subdevice = 0; |
| 968 | return snd_timer_new(NULL, id, &tid, rtimer); |
| 969 | } |
| 970 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 971 | int snd_timer_global_free(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | { |
| 973 | return snd_timer_free(timer); |
| 974 | } |
| 975 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 976 | int snd_timer_global_register(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 978 | struct snd_device dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
| 980 | memset(&dev, 0, sizeof(dev)); |
| 981 | dev.device_data = timer; |
| 982 | return snd_timer_dev_register(&dev); |
| 983 | } |
| 984 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 985 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | * System timer |
| 987 | */ |
| 988 | |
| 989 | struct snd_timer_system_private { |
| 990 | struct timer_list tlist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | unsigned long last_expires; |
| 992 | unsigned long last_jiffies; |
| 993 | unsigned long correction; |
| 994 | }; |
| 995 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | static void snd_timer_s_function(unsigned long data) |
| 997 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 998 | struct snd_timer *timer = (struct snd_timer *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | struct snd_timer_system_private *priv = timer->private_data; |
| 1000 | unsigned long jiff = jiffies; |
| 1001 | if (time_after(jiff, priv->last_expires)) |
Clemens Ladisch | 6ed5eff | 2006-07-17 16:51:37 +0200 | [diff] [blame] | 1002 | priv->correction += (long)jiff - (long)priv->last_expires; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | snd_timer_interrupt(timer, (long)jiff - (long)priv->last_jiffies); |
| 1004 | } |
| 1005 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1006 | static int snd_timer_s_start(struct snd_timer * timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | { |
| 1008 | struct snd_timer_system_private *priv; |
| 1009 | unsigned long njiff; |
| 1010 | |
| 1011 | priv = (struct snd_timer_system_private *) timer->private_data; |
| 1012 | njiff = (priv->last_jiffies = jiffies); |
| 1013 | if (priv->correction > timer->sticks - 1) { |
| 1014 | priv->correction -= timer->sticks - 1; |
| 1015 | njiff++; |
| 1016 | } else { |
| 1017 | njiff += timer->sticks - priv->correction; |
Clemens Ladisch | 17f48ec | 2006-07-17 16:50:56 +0200 | [diff] [blame] | 1018 | priv->correction = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | } |
Takashi Iwai | 4a07083 | 2016-04-01 12:28:16 +0200 | [diff] [blame] | 1020 | priv->last_expires = njiff; |
| 1021 | mod_timer(&priv->tlist, njiff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | return 0; |
| 1023 | } |
| 1024 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1025 | static int snd_timer_s_stop(struct snd_timer * timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | { |
| 1027 | struct snd_timer_system_private *priv; |
| 1028 | unsigned long jiff; |
| 1029 | |
| 1030 | priv = (struct snd_timer_system_private *) timer->private_data; |
| 1031 | del_timer(&priv->tlist); |
| 1032 | jiff = jiffies; |
| 1033 | if (time_before(jiff, priv->last_expires)) |
| 1034 | timer->sticks = priv->last_expires - jiff; |
| 1035 | else |
| 1036 | timer->sticks = 1; |
Clemens Ladisch | de2696d | 2006-07-17 16:52:09 +0200 | [diff] [blame] | 1037 | priv->correction = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | return 0; |
| 1039 | } |
| 1040 | |
Takashi Iwai | f146357 | 2016-02-02 14:14:10 +0100 | [diff] [blame] | 1041 | static int snd_timer_s_close(struct snd_timer *timer) |
| 1042 | { |
| 1043 | struct snd_timer_system_private *priv; |
| 1044 | |
| 1045 | priv = (struct snd_timer_system_private *)timer->private_data; |
| 1046 | del_timer_sync(&priv->tlist); |
| 1047 | return 0; |
| 1048 | } |
| 1049 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1050 | static struct snd_timer_hardware snd_timer_system = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | { |
| 1052 | .flags = SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET, |
| 1053 | .resolution = 1000000000L / HZ, |
| 1054 | .ticks = 10000000L, |
Takashi Iwai | f146357 | 2016-02-02 14:14:10 +0100 | [diff] [blame] | 1055 | .close = snd_timer_s_close, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | .start = snd_timer_s_start, |
| 1057 | .stop = snd_timer_s_stop |
| 1058 | }; |
| 1059 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1060 | static void snd_timer_free_system(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | { |
| 1062 | kfree(timer->private_data); |
| 1063 | } |
| 1064 | |
| 1065 | static int snd_timer_register_system(void) |
| 1066 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1067 | struct snd_timer *timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | struct snd_timer_system_private *priv; |
| 1069 | int err; |
| 1070 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1071 | err = snd_timer_global_new("system", SNDRV_TIMER_GLOBAL_SYSTEM, &timer); |
| 1072 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | return err; |
| 1074 | strcpy(timer->name, "system timer"); |
| 1075 | timer->hw = snd_timer_system; |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 1076 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | if (priv == NULL) { |
| 1078 | snd_timer_free(timer); |
| 1079 | return -ENOMEM; |
| 1080 | } |
Takashi Iwai | f169c10 | 2015-01-19 11:26:25 +0100 | [diff] [blame] | 1081 | setup_timer(&priv->tlist, snd_timer_s_function, (unsigned long) timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | timer->private_data = priv; |
| 1083 | timer->private_free = snd_timer_free_system; |
| 1084 | return snd_timer_global_register(timer); |
| 1085 | } |
| 1086 | |
Jie Yang | cd6a650 | 2015-05-27 19:45:45 +0800 | [diff] [blame] | 1087 | #ifdef CONFIG_SND_PROC_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | /* |
| 1089 | * Info interface |
| 1090 | */ |
| 1091 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1092 | static void snd_timer_proc_read(struct snd_info_entry *entry, |
| 1093 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1095 | struct snd_timer *timer; |
| 1096 | struct snd_timer_instance *ti; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1098 | mutex_lock(®ister_mutex); |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 1099 | list_for_each_entry(timer, &snd_timer_list, device_list) { |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 1100 | if (timer->card && timer->card->shutdown) |
| 1101 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | switch (timer->tmr_class) { |
| 1103 | case SNDRV_TIMER_CLASS_GLOBAL: |
| 1104 | snd_iprintf(buffer, "G%i: ", timer->tmr_device); |
| 1105 | break; |
| 1106 | case SNDRV_TIMER_CLASS_CARD: |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1107 | snd_iprintf(buffer, "C%i-%i: ", |
| 1108 | timer->card->number, timer->tmr_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | break; |
| 1110 | case SNDRV_TIMER_CLASS_PCM: |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1111 | snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number, |
| 1112 | timer->tmr_device, timer->tmr_subdevice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | break; |
| 1114 | default: |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1115 | snd_iprintf(buffer, "?%i-%i-%i-%i: ", timer->tmr_class, |
| 1116 | timer->card ? timer->card->number : -1, |
| 1117 | timer->tmr_device, timer->tmr_subdevice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | } |
| 1119 | snd_iprintf(buffer, "%s :", timer->name); |
| 1120 | if (timer->hw.resolution) |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1121 | snd_iprintf(buffer, " %lu.%03luus (%lu ticks)", |
| 1122 | timer->hw.resolution / 1000, |
| 1123 | timer->hw.resolution % 1000, |
| 1124 | timer->hw.ticks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | if (timer->hw.flags & SNDRV_TIMER_HW_SLAVE) |
| 1126 | snd_iprintf(buffer, " SLAVE"); |
| 1127 | snd_iprintf(buffer, "\n"); |
Johannes Berg | 9244b2c | 2006-10-05 16:02:22 +0200 | [diff] [blame] | 1128 | list_for_each_entry(ti, &timer->open_list_head, open_list) |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1129 | snd_iprintf(buffer, " Client %s : %s\n", |
| 1130 | ti->owner ? ti->owner : "unknown", |
| 1131 | ti->flags & (SNDRV_TIMER_IFLG_START | |
| 1132 | SNDRV_TIMER_IFLG_RUNNING) |
| 1133 | ? "running" : "stopped"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | } |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1135 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | } |
| 1137 | |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 1138 | static struct snd_info_entry *snd_timer_proc_entry; |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 1139 | |
| 1140 | static void __init snd_timer_proc_init(void) |
| 1141 | { |
| 1142 | struct snd_info_entry *entry; |
| 1143 | |
| 1144 | entry = snd_info_create_module_entry(THIS_MODULE, "timers", NULL); |
| 1145 | if (entry != NULL) { |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 1146 | entry->c.text.read = snd_timer_proc_read; |
| 1147 | if (snd_info_register(entry) < 0) { |
| 1148 | snd_info_free_entry(entry); |
| 1149 | entry = NULL; |
| 1150 | } |
| 1151 | } |
| 1152 | snd_timer_proc_entry = entry; |
| 1153 | } |
| 1154 | |
| 1155 | static void __exit snd_timer_proc_done(void) |
| 1156 | { |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 1157 | snd_info_free_entry(snd_timer_proc_entry); |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 1158 | } |
Jie Yang | cd6a650 | 2015-05-27 19:45:45 +0800 | [diff] [blame] | 1159 | #else /* !CONFIG_SND_PROC_FS */ |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 1160 | #define snd_timer_proc_init() |
| 1161 | #define snd_timer_proc_done() |
| 1162 | #endif |
| 1163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | /* |
| 1165 | * USER SPACE interface |
| 1166 | */ |
| 1167 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1168 | static void snd_timer_user_interrupt(struct snd_timer_instance *timeri, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | unsigned long resolution, |
| 1170 | unsigned long ticks) |
| 1171 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1172 | struct snd_timer_user *tu = timeri->callback_data; |
| 1173 | struct snd_timer_read *r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | int prev; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | spin_lock(&tu->qlock); |
| 1177 | if (tu->qused > 0) { |
| 1178 | prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1; |
| 1179 | r = &tu->queue[prev]; |
| 1180 | if (r->resolution == resolution) { |
| 1181 | r->ticks += ticks; |
| 1182 | goto __wake; |
| 1183 | } |
| 1184 | } |
| 1185 | if (tu->qused >= tu->queue_size) { |
| 1186 | tu->overrun++; |
| 1187 | } else { |
| 1188 | r = &tu->queue[tu->qtail++]; |
| 1189 | tu->qtail %= tu->queue_size; |
| 1190 | r->resolution = resolution; |
| 1191 | r->ticks = ticks; |
| 1192 | tu->qused++; |
| 1193 | } |
| 1194 | __wake: |
| 1195 | spin_unlock(&tu->qlock); |
| 1196 | kill_fasync(&tu->fasync, SIGIO, POLL_IN); |
| 1197 | wake_up(&tu->qchange_sleep); |
| 1198 | } |
| 1199 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1200 | static void snd_timer_user_append_to_tqueue(struct snd_timer_user *tu, |
| 1201 | struct snd_timer_tread *tread) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | { |
| 1203 | if (tu->qused >= tu->queue_size) { |
| 1204 | tu->overrun++; |
| 1205 | } else { |
| 1206 | memcpy(&tu->tqueue[tu->qtail++], tread, sizeof(*tread)); |
| 1207 | tu->qtail %= tu->queue_size; |
| 1208 | tu->qused++; |
| 1209 | } |
| 1210 | } |
| 1211 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1212 | static void snd_timer_user_ccallback(struct snd_timer_instance *timeri, |
| 1213 | int event, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | struct timespec *tstamp, |
| 1215 | unsigned long resolution) |
| 1216 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1217 | struct snd_timer_user *tu = timeri->callback_data; |
| 1218 | struct snd_timer_tread r1; |
Dan Carpenter | bfe7078 | 2010-04-28 10:29:14 +0200 | [diff] [blame] | 1219 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1221 | if (event >= SNDRV_TIMER_EVENT_START && |
| 1222 | event <= SNDRV_TIMER_EVENT_PAUSE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | tu->tstamp = *tstamp; |
| 1224 | if ((tu->filter & (1 << event)) == 0 || !tu->tread) |
| 1225 | return; |
| 1226 | r1.event = event; |
| 1227 | r1.tstamp = *tstamp; |
| 1228 | r1.val = resolution; |
Dan Carpenter | bfe7078 | 2010-04-28 10:29:14 +0200 | [diff] [blame] | 1229 | spin_lock_irqsave(&tu->qlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | snd_timer_user_append_to_tqueue(tu, &r1); |
Dan Carpenter | bfe7078 | 2010-04-28 10:29:14 +0200 | [diff] [blame] | 1231 | spin_unlock_irqrestore(&tu->qlock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | kill_fasync(&tu->fasync, SIGIO, POLL_IN); |
| 1233 | wake_up(&tu->qchange_sleep); |
| 1234 | } |
| 1235 | |
Takashi Iwai | 40ed944 | 2016-01-21 17:43:08 +0100 | [diff] [blame] | 1236 | static void snd_timer_user_disconnect(struct snd_timer_instance *timeri) |
| 1237 | { |
| 1238 | struct snd_timer_user *tu = timeri->callback_data; |
| 1239 | |
| 1240 | tu->disconnected = true; |
| 1241 | wake_up(&tu->qchange_sleep); |
| 1242 | } |
| 1243 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1244 | static void snd_timer_user_tinterrupt(struct snd_timer_instance *timeri, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | unsigned long resolution, |
| 1246 | unsigned long ticks) |
| 1247 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1248 | struct snd_timer_user *tu = timeri->callback_data; |
| 1249 | struct snd_timer_tread *r, r1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | struct timespec tstamp; |
| 1251 | int prev, append = 0; |
| 1252 | |
Takashi Iwai | 07799e7 | 2005-10-10 11:49:49 +0200 | [diff] [blame] | 1253 | memset(&tstamp, 0, sizeof(tstamp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | spin_lock(&tu->qlock); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1255 | if ((tu->filter & ((1 << SNDRV_TIMER_EVENT_RESOLUTION) | |
| 1256 | (1 << SNDRV_TIMER_EVENT_TICK))) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | spin_unlock(&tu->qlock); |
| 1258 | return; |
| 1259 | } |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 1260 | if (tu->last_resolution != resolution || ticks > 0) { |
| 1261 | if (timer_tstamp_monotonic) |
Thomas Gleixner | 26204e0 | 2014-06-11 23:59:14 +0000 | [diff] [blame] | 1262 | ktime_get_ts(&tstamp); |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 1263 | else |
| 1264 | getnstimeofday(&tstamp); |
| 1265 | } |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1266 | if ((tu->filter & (1 << SNDRV_TIMER_EVENT_RESOLUTION)) && |
| 1267 | tu->last_resolution != resolution) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | r1.event = SNDRV_TIMER_EVENT_RESOLUTION; |
| 1269 | r1.tstamp = tstamp; |
| 1270 | r1.val = resolution; |
| 1271 | snd_timer_user_append_to_tqueue(tu, &r1); |
| 1272 | tu->last_resolution = resolution; |
| 1273 | append++; |
| 1274 | } |
| 1275 | if ((tu->filter & (1 << SNDRV_TIMER_EVENT_TICK)) == 0) |
| 1276 | goto __wake; |
| 1277 | if (ticks == 0) |
| 1278 | goto __wake; |
| 1279 | if (tu->qused > 0) { |
| 1280 | prev = tu->qtail == 0 ? tu->queue_size - 1 : tu->qtail - 1; |
| 1281 | r = &tu->tqueue[prev]; |
| 1282 | if (r->event == SNDRV_TIMER_EVENT_TICK) { |
| 1283 | r->tstamp = tstamp; |
| 1284 | r->val += ticks; |
| 1285 | append++; |
| 1286 | goto __wake; |
| 1287 | } |
| 1288 | } |
| 1289 | r1.event = SNDRV_TIMER_EVENT_TICK; |
| 1290 | r1.tstamp = tstamp; |
| 1291 | r1.val = ticks; |
| 1292 | snd_timer_user_append_to_tqueue(tu, &r1); |
| 1293 | append++; |
| 1294 | __wake: |
| 1295 | spin_unlock(&tu->qlock); |
| 1296 | if (append == 0) |
| 1297 | return; |
| 1298 | kill_fasync(&tu->fasync, SIGIO, POLL_IN); |
| 1299 | wake_up(&tu->qchange_sleep); |
| 1300 | } |
| 1301 | |
| 1302 | static int snd_timer_user_open(struct inode *inode, struct file *file) |
| 1303 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1304 | struct snd_timer_user *tu; |
Takashi Iwai | 02f4865 | 2010-04-13 11:49:04 +0200 | [diff] [blame] | 1305 | int err; |
| 1306 | |
| 1307 | err = nonseekable_open(inode, file); |
| 1308 | if (err < 0) |
| 1309 | return err; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1310 | |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 1311 | tu = kzalloc(sizeof(*tu), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | if (tu == NULL) |
| 1313 | return -ENOMEM; |
| 1314 | spin_lock_init(&tu->qlock); |
| 1315 | init_waitqueue_head(&tu->qchange_sleep); |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 1316 | mutex_init(&tu->ioctl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | tu->ticks = 1; |
| 1318 | tu->queue_size = 128; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1319 | tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read), |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1320 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | if (tu->queue == NULL) { |
| 1322 | kfree(tu); |
| 1323 | return -ENOMEM; |
| 1324 | } |
| 1325 | file->private_data = tu; |
| 1326 | return 0; |
| 1327 | } |
| 1328 | |
| 1329 | static int snd_timer_user_release(struct inode *inode, struct file *file) |
| 1330 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1331 | struct snd_timer_user *tu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | |
| 1333 | if (file->private_data) { |
| 1334 | tu = file->private_data; |
| 1335 | file->private_data = NULL; |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 1336 | mutex_lock(&tu->ioctl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | if (tu->timeri) |
| 1338 | snd_timer_close(tu->timeri); |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 1339 | mutex_unlock(&tu->ioctl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | kfree(tu->queue); |
| 1341 | kfree(tu->tqueue); |
| 1342 | kfree(tu); |
| 1343 | } |
| 1344 | return 0; |
| 1345 | } |
| 1346 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1347 | static void snd_timer_user_zero_id(struct snd_timer_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | { |
| 1349 | id->dev_class = SNDRV_TIMER_CLASS_NONE; |
| 1350 | id->dev_sclass = SNDRV_TIMER_SCLASS_NONE; |
| 1351 | id->card = -1; |
| 1352 | id->device = -1; |
| 1353 | id->subdevice = -1; |
| 1354 | } |
| 1355 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1356 | static void snd_timer_user_copy_id(struct snd_timer_id *id, struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | { |
| 1358 | id->dev_class = timer->tmr_class; |
| 1359 | id->dev_sclass = SNDRV_TIMER_SCLASS_NONE; |
| 1360 | id->card = timer->card ? timer->card->number : -1; |
| 1361 | id->device = timer->tmr_device; |
| 1362 | id->subdevice = timer->tmr_subdevice; |
| 1363 | } |
| 1364 | |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1365 | static int snd_timer_user_next_device(struct snd_timer_id __user *_tid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1367 | struct snd_timer_id id; |
| 1368 | struct snd_timer *timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | struct list_head *p; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | if (copy_from_user(&id, _tid, sizeof(id))) |
| 1372 | return -EFAULT; |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1373 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | if (id.dev_class < 0) { /* first item */ |
| 1375 | if (list_empty(&snd_timer_list)) |
| 1376 | snd_timer_user_zero_id(&id); |
| 1377 | else { |
Clemens Ladisch | 9dfba38 | 2005-10-12 17:14:55 +0200 | [diff] [blame] | 1378 | timer = list_entry(snd_timer_list.next, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1379 | struct snd_timer, device_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | snd_timer_user_copy_id(&id, timer); |
| 1381 | } |
| 1382 | } else { |
| 1383 | switch (id.dev_class) { |
| 1384 | case SNDRV_TIMER_CLASS_GLOBAL: |
| 1385 | id.device = id.device < 0 ? 0 : id.device + 1; |
| 1386 | list_for_each(p, &snd_timer_list) { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1387 | timer = list_entry(p, struct snd_timer, device_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | if (timer->tmr_class > SNDRV_TIMER_CLASS_GLOBAL) { |
| 1389 | snd_timer_user_copy_id(&id, timer); |
| 1390 | break; |
| 1391 | } |
| 1392 | if (timer->tmr_device >= id.device) { |
| 1393 | snd_timer_user_copy_id(&id, timer); |
| 1394 | break; |
| 1395 | } |
| 1396 | } |
| 1397 | if (p == &snd_timer_list) |
| 1398 | snd_timer_user_zero_id(&id); |
| 1399 | break; |
| 1400 | case SNDRV_TIMER_CLASS_CARD: |
| 1401 | case SNDRV_TIMER_CLASS_PCM: |
| 1402 | if (id.card < 0) { |
| 1403 | id.card = 0; |
| 1404 | } else { |
| 1405 | if (id.card < 0) { |
| 1406 | id.card = 0; |
| 1407 | } else { |
| 1408 | if (id.device < 0) { |
| 1409 | id.device = 0; |
| 1410 | } else { |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1411 | if (id.subdevice < 0) { |
| 1412 | id.subdevice = 0; |
| 1413 | } else { |
| 1414 | id.subdevice++; |
| 1415 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | } |
| 1417 | } |
| 1418 | } |
| 1419 | list_for_each(p, &snd_timer_list) { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1420 | timer = list_entry(p, struct snd_timer, device_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | if (timer->tmr_class > id.dev_class) { |
| 1422 | snd_timer_user_copy_id(&id, timer); |
| 1423 | break; |
| 1424 | } |
| 1425 | if (timer->tmr_class < id.dev_class) |
| 1426 | continue; |
| 1427 | if (timer->card->number > id.card) { |
| 1428 | snd_timer_user_copy_id(&id, timer); |
| 1429 | break; |
| 1430 | } |
| 1431 | if (timer->card->number < id.card) |
| 1432 | continue; |
| 1433 | if (timer->tmr_device > id.device) { |
| 1434 | snd_timer_user_copy_id(&id, timer); |
| 1435 | break; |
| 1436 | } |
| 1437 | if (timer->tmr_device < id.device) |
| 1438 | continue; |
| 1439 | if (timer->tmr_subdevice > id.subdevice) { |
| 1440 | snd_timer_user_copy_id(&id, timer); |
| 1441 | break; |
| 1442 | } |
| 1443 | if (timer->tmr_subdevice < id.subdevice) |
| 1444 | continue; |
| 1445 | snd_timer_user_copy_id(&id, timer); |
| 1446 | break; |
| 1447 | } |
| 1448 | if (p == &snd_timer_list) |
| 1449 | snd_timer_user_zero_id(&id); |
| 1450 | break; |
| 1451 | default: |
| 1452 | snd_timer_user_zero_id(&id); |
| 1453 | } |
| 1454 | } |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1455 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | if (copy_to_user(_tid, &id, sizeof(*_tid))) |
| 1457 | return -EFAULT; |
| 1458 | return 0; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1459 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1461 | static int snd_timer_user_ginfo(struct file *file, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1462 | struct snd_timer_ginfo __user *_ginfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1464 | struct snd_timer_ginfo *ginfo; |
| 1465 | struct snd_timer_id tid; |
| 1466 | struct snd_timer *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | struct list_head *p; |
| 1468 | int err = 0; |
| 1469 | |
Li Zefan | ef44a1e | 2009-04-10 09:43:08 +0800 | [diff] [blame] | 1470 | ginfo = memdup_user(_ginfo, sizeof(*ginfo)); |
| 1471 | if (IS_ERR(ginfo)) |
| 1472 | return PTR_ERR(ginfo); |
| 1473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | tid = ginfo->tid; |
| 1475 | memset(ginfo, 0, sizeof(*ginfo)); |
| 1476 | ginfo->tid = tid; |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1477 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | t = snd_timer_find(&tid); |
| 1479 | if (t != NULL) { |
| 1480 | ginfo->card = t->card ? t->card->number : -1; |
| 1481 | if (t->hw.flags & SNDRV_TIMER_HW_SLAVE) |
| 1482 | ginfo->flags |= SNDRV_TIMER_FLG_SLAVE; |
| 1483 | strlcpy(ginfo->id, t->id, sizeof(ginfo->id)); |
| 1484 | strlcpy(ginfo->name, t->name, sizeof(ginfo->name)); |
| 1485 | ginfo->resolution = t->hw.resolution; |
| 1486 | if (t->hw.resolution_min > 0) { |
| 1487 | ginfo->resolution_min = t->hw.resolution_min; |
| 1488 | ginfo->resolution_max = t->hw.resolution_max; |
| 1489 | } |
| 1490 | list_for_each(p, &t->open_list_head) { |
| 1491 | ginfo->clients++; |
| 1492 | } |
| 1493 | } else { |
| 1494 | err = -ENODEV; |
| 1495 | } |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1496 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | if (err >= 0 && copy_to_user(_ginfo, ginfo, sizeof(*ginfo))) |
| 1498 | err = -EFAULT; |
| 1499 | kfree(ginfo); |
| 1500 | return err; |
| 1501 | } |
| 1502 | |
Takashi Sakamoto | 91d2178 | 2016-03-23 08:03:59 +0900 | [diff] [blame] | 1503 | static int timer_set_gparams(struct snd_timer_gparams *gparams) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1505 | struct snd_timer *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | int err; |
| 1507 | |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1508 | mutex_lock(®ister_mutex); |
Takashi Sakamoto | 91d2178 | 2016-03-23 08:03:59 +0900 | [diff] [blame] | 1509 | t = snd_timer_find(&gparams->tid); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1510 | if (!t) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | err = -ENODEV; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1512 | goto _error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | } |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1514 | if (!list_empty(&t->open_list_head)) { |
| 1515 | err = -EBUSY; |
| 1516 | goto _error; |
| 1517 | } |
| 1518 | if (!t->hw.set_period) { |
| 1519 | err = -ENOSYS; |
| 1520 | goto _error; |
| 1521 | } |
Takashi Sakamoto | 91d2178 | 2016-03-23 08:03:59 +0900 | [diff] [blame] | 1522 | err = t->hw.set_period(t, gparams->period_num, gparams->period_den); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1523 | _error: |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1524 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | return err; |
| 1526 | } |
| 1527 | |
Takashi Sakamoto | 91d2178 | 2016-03-23 08:03:59 +0900 | [diff] [blame] | 1528 | static int snd_timer_user_gparams(struct file *file, |
| 1529 | struct snd_timer_gparams __user *_gparams) |
| 1530 | { |
| 1531 | struct snd_timer_gparams gparams; |
| 1532 | |
| 1533 | if (copy_from_user(&gparams, _gparams, sizeof(gparams))) |
| 1534 | return -EFAULT; |
| 1535 | return timer_set_gparams(&gparams); |
| 1536 | } |
| 1537 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1538 | static int snd_timer_user_gstatus(struct file *file, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1539 | struct snd_timer_gstatus __user *_gstatus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1541 | struct snd_timer_gstatus gstatus; |
| 1542 | struct snd_timer_id tid; |
| 1543 | struct snd_timer *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | int err = 0; |
| 1545 | |
| 1546 | if (copy_from_user(&gstatus, _gstatus, sizeof(gstatus))) |
| 1547 | return -EFAULT; |
| 1548 | tid = gstatus.tid; |
| 1549 | memset(&gstatus, 0, sizeof(gstatus)); |
| 1550 | gstatus.tid = tid; |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1551 | mutex_lock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | t = snd_timer_find(&tid); |
| 1553 | if (t != NULL) { |
| 1554 | if (t->hw.c_resolution) |
| 1555 | gstatus.resolution = t->hw.c_resolution(t); |
| 1556 | else |
| 1557 | gstatus.resolution = t->hw.resolution; |
| 1558 | if (t->hw.precise_resolution) { |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1559 | t->hw.precise_resolution(t, &gstatus.resolution_num, |
| 1560 | &gstatus.resolution_den); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | } else { |
| 1562 | gstatus.resolution_num = gstatus.resolution; |
| 1563 | gstatus.resolution_den = 1000000000uL; |
| 1564 | } |
| 1565 | } else { |
| 1566 | err = -ENODEV; |
| 1567 | } |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 1568 | mutex_unlock(®ister_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | if (err >= 0 && copy_to_user(_gstatus, &gstatus, sizeof(gstatus))) |
| 1570 | err = -EFAULT; |
| 1571 | return err; |
| 1572 | } |
| 1573 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1574 | static int snd_timer_user_tselect(struct file *file, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1575 | struct snd_timer_select __user *_tselect) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1577 | struct snd_timer_user *tu; |
| 1578 | struct snd_timer_select tselect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | char str[32]; |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1580 | int err = 0; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1581 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | tu = file->private_data; |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1583 | if (tu->timeri) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | snd_timer_close(tu->timeri); |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1585 | tu->timeri = NULL; |
| 1586 | } |
| 1587 | if (copy_from_user(&tselect, _tselect, sizeof(tselect))) { |
| 1588 | err = -EFAULT; |
| 1589 | goto __err; |
| 1590 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | sprintf(str, "application %i", current->pid); |
| 1592 | if (tselect.id.dev_class != SNDRV_TIMER_CLASS_SLAVE) |
| 1593 | tselect.id.dev_sclass = SNDRV_TIMER_SCLASS_APPLICATION; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1594 | err = snd_timer_open(&tu->timeri, str, &tselect.id, current->pid); |
| 1595 | if (err < 0) |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1596 | goto __err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | |
Jesper Juhl | 4d57277 | 2005-05-30 17:30:32 +0200 | [diff] [blame] | 1598 | kfree(tu->queue); |
| 1599 | tu->queue = NULL; |
| 1600 | kfree(tu->tqueue); |
| 1601 | tu->tqueue = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | if (tu->tread) { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1603 | tu->tqueue = kmalloc(tu->queue_size * sizeof(struct snd_timer_tread), |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1604 | GFP_KERNEL); |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1605 | if (tu->tqueue == NULL) |
| 1606 | err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | } else { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1608 | tu->queue = kmalloc(tu->queue_size * sizeof(struct snd_timer_read), |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1609 | GFP_KERNEL); |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1610 | if (tu->queue == NULL) |
| 1611 | err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | } |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1613 | |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1614 | if (err < 0) { |
| 1615 | snd_timer_close(tu->timeri); |
| 1616 | tu->timeri = NULL; |
| 1617 | } else { |
| 1618 | tu->timeri->flags |= SNDRV_TIMER_IFLG_FAST; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1619 | tu->timeri->callback = tu->tread |
| 1620 | ? snd_timer_user_tinterrupt : snd_timer_user_interrupt; |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1621 | tu->timeri->ccallback = snd_timer_user_ccallback; |
| 1622 | tu->timeri->callback_data = (void *)tu; |
Takashi Iwai | 40ed944 | 2016-01-21 17:43:08 +0100 | [diff] [blame] | 1623 | tu->timeri->disconnect = snd_timer_user_disconnect; |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1624 | } |
| 1625 | |
| 1626 | __err: |
Jaroslav Kysela | c1935b4 | 2005-04-04 16:44:58 +0200 | [diff] [blame] | 1627 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | } |
| 1629 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1630 | static int snd_timer_user_info(struct file *file, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1631 | struct snd_timer_info __user *_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1633 | struct snd_timer_user *tu; |
| 1634 | struct snd_timer_info *info; |
| 1635 | struct snd_timer *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | int err = 0; |
| 1637 | |
| 1638 | tu = file->private_data; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1639 | if (!tu->timeri) |
| 1640 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | t = tu->timeri->timer; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1642 | if (!t) |
| 1643 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 1645 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | if (! info) |
| 1647 | return -ENOMEM; |
| 1648 | info->card = t->card ? t->card->number : -1; |
| 1649 | if (t->hw.flags & SNDRV_TIMER_HW_SLAVE) |
| 1650 | info->flags |= SNDRV_TIMER_FLG_SLAVE; |
| 1651 | strlcpy(info->id, t->id, sizeof(info->id)); |
| 1652 | strlcpy(info->name, t->name, sizeof(info->name)); |
| 1653 | info->resolution = t->hw.resolution; |
| 1654 | if (copy_to_user(_info, info, sizeof(*_info))) |
| 1655 | err = -EFAULT; |
| 1656 | kfree(info); |
| 1657 | return err; |
| 1658 | } |
| 1659 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1660 | static int snd_timer_user_params(struct file *file, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1661 | struct snd_timer_params __user *_params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1663 | struct snd_timer_user *tu; |
| 1664 | struct snd_timer_params params; |
| 1665 | struct snd_timer *t; |
| 1666 | struct snd_timer_read *tr; |
| 1667 | struct snd_timer_tread *ttr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | int err; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1669 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | tu = file->private_data; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1671 | if (!tu->timeri) |
| 1672 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | t = tu->timeri->timer; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1674 | if (!t) |
| 1675 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | if (copy_from_user(¶ms, _params, sizeof(params))) |
| 1677 | return -EFAULT; |
| 1678 | if (!(t->hw.flags & SNDRV_TIMER_HW_SLAVE) && params.ticks < 1) { |
| 1679 | err = -EINVAL; |
| 1680 | goto _end; |
| 1681 | } |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1682 | if (params.queue_size > 0 && |
| 1683 | (params.queue_size < 32 || params.queue_size > 1024)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | err = -EINVAL; |
| 1685 | goto _end; |
| 1686 | } |
| 1687 | if (params.filter & ~((1<<SNDRV_TIMER_EVENT_RESOLUTION)| |
| 1688 | (1<<SNDRV_TIMER_EVENT_TICK)| |
| 1689 | (1<<SNDRV_TIMER_EVENT_START)| |
| 1690 | (1<<SNDRV_TIMER_EVENT_STOP)| |
| 1691 | (1<<SNDRV_TIMER_EVENT_CONTINUE)| |
| 1692 | (1<<SNDRV_TIMER_EVENT_PAUSE)| |
Jaroslav Kysela | a501dfa | 2005-08-16 11:09:05 +0200 | [diff] [blame] | 1693 | (1<<SNDRV_TIMER_EVENT_SUSPEND)| |
| 1694 | (1<<SNDRV_TIMER_EVENT_RESUME)| |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | (1<<SNDRV_TIMER_EVENT_MSTART)| |
| 1696 | (1<<SNDRV_TIMER_EVENT_MSTOP)| |
| 1697 | (1<<SNDRV_TIMER_EVENT_MCONTINUE)| |
Jaroslav Kysela | 65d11d9 | 2005-08-16 13:05:43 +0200 | [diff] [blame] | 1698 | (1<<SNDRV_TIMER_EVENT_MPAUSE)| |
| 1699 | (1<<SNDRV_TIMER_EVENT_MSUSPEND)| |
Jaroslav Kysela | a501dfa | 2005-08-16 11:09:05 +0200 | [diff] [blame] | 1700 | (1<<SNDRV_TIMER_EVENT_MRESUME))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | err = -EINVAL; |
| 1702 | goto _end; |
| 1703 | } |
| 1704 | snd_timer_stop(tu->timeri); |
| 1705 | spin_lock_irq(&t->lock); |
| 1706 | tu->timeri->flags &= ~(SNDRV_TIMER_IFLG_AUTO| |
| 1707 | SNDRV_TIMER_IFLG_EXCLUSIVE| |
| 1708 | SNDRV_TIMER_IFLG_EARLY_EVENT); |
| 1709 | if (params.flags & SNDRV_TIMER_PSFLG_AUTO) |
| 1710 | tu->timeri->flags |= SNDRV_TIMER_IFLG_AUTO; |
| 1711 | if (params.flags & SNDRV_TIMER_PSFLG_EXCLUSIVE) |
| 1712 | tu->timeri->flags |= SNDRV_TIMER_IFLG_EXCLUSIVE; |
| 1713 | if (params.flags & SNDRV_TIMER_PSFLG_EARLY_EVENT) |
| 1714 | tu->timeri->flags |= SNDRV_TIMER_IFLG_EARLY_EVENT; |
| 1715 | spin_unlock_irq(&t->lock); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1716 | if (params.queue_size > 0 && |
| 1717 | (unsigned int)tu->queue_size != params.queue_size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | if (tu->tread) { |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1719 | ttr = kmalloc(params.queue_size * sizeof(*ttr), |
| 1720 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | if (ttr) { |
| 1722 | kfree(tu->tqueue); |
| 1723 | tu->queue_size = params.queue_size; |
| 1724 | tu->tqueue = ttr; |
| 1725 | } |
| 1726 | } else { |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1727 | tr = kmalloc(params.queue_size * sizeof(*tr), |
| 1728 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | if (tr) { |
| 1730 | kfree(tu->queue); |
| 1731 | tu->queue_size = params.queue_size; |
| 1732 | tu->queue = tr; |
| 1733 | } |
| 1734 | } |
| 1735 | } |
| 1736 | tu->qhead = tu->qtail = tu->qused = 0; |
| 1737 | if (tu->timeri->flags & SNDRV_TIMER_IFLG_EARLY_EVENT) { |
| 1738 | if (tu->tread) { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1739 | struct snd_timer_tread tread; |
Kangjie Lu | cec8f96 | 2016-05-03 16:44:07 -0400 | [diff] [blame^] | 1740 | memset(&tread, 0, sizeof(tread)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | tread.event = SNDRV_TIMER_EVENT_EARLY; |
| 1742 | tread.tstamp.tv_sec = 0; |
| 1743 | tread.tstamp.tv_nsec = 0; |
| 1744 | tread.val = 0; |
| 1745 | snd_timer_user_append_to_tqueue(tu, &tread); |
| 1746 | } else { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1747 | struct snd_timer_read *r = &tu->queue[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | r->resolution = 0; |
| 1749 | r->ticks = 0; |
| 1750 | tu->qused++; |
| 1751 | tu->qtail++; |
| 1752 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | } |
| 1754 | tu->filter = params.filter; |
| 1755 | tu->ticks = params.ticks; |
| 1756 | err = 0; |
| 1757 | _end: |
| 1758 | if (copy_to_user(_params, ¶ms, sizeof(params))) |
| 1759 | return -EFAULT; |
| 1760 | return err; |
| 1761 | } |
| 1762 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1763 | static int snd_timer_user_status(struct file *file, |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1764 | struct snd_timer_status __user *_status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1766 | struct snd_timer_user *tu; |
| 1767 | struct snd_timer_status status; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | tu = file->private_data; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1770 | if (!tu->timeri) |
| 1771 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | memset(&status, 0, sizeof(status)); |
| 1773 | status.tstamp = tu->tstamp; |
| 1774 | status.resolution = snd_timer_resolution(tu->timeri); |
| 1775 | status.lost = tu->timeri->lost; |
| 1776 | status.overrun = tu->overrun; |
| 1777 | spin_lock_irq(&tu->qlock); |
| 1778 | status.queue = tu->qused; |
| 1779 | spin_unlock_irq(&tu->qlock); |
| 1780 | if (copy_to_user(_status, &status, sizeof(status))) |
| 1781 | return -EFAULT; |
| 1782 | return 0; |
| 1783 | } |
| 1784 | |
| 1785 | static int snd_timer_user_start(struct file *file) |
| 1786 | { |
| 1787 | int err; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1788 | struct snd_timer_user *tu; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | tu = file->private_data; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1791 | if (!tu->timeri) |
| 1792 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | snd_timer_stop(tu->timeri); |
| 1794 | tu->timeri->lost = 0; |
| 1795 | tu->last_resolution = 0; |
| 1796 | return (err = snd_timer_start(tu->timeri, tu->ticks)) < 0 ? err : 0; |
| 1797 | } |
| 1798 | |
| 1799 | static int snd_timer_user_stop(struct file *file) |
| 1800 | { |
| 1801 | int err; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1802 | struct snd_timer_user *tu; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | tu = file->private_data; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1805 | if (!tu->timeri) |
| 1806 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | return (err = snd_timer_stop(tu->timeri)) < 0 ? err : 0; |
| 1808 | } |
| 1809 | |
| 1810 | static int snd_timer_user_continue(struct file *file) |
| 1811 | { |
| 1812 | int err; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1813 | struct snd_timer_user *tu; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1814 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | tu = file->private_data; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1816 | if (!tu->timeri) |
| 1817 | return -EBADFD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | tu->timeri->lost = 0; |
| 1819 | return (err = snd_timer_continue(tu->timeri)) < 0 ? err : 0; |
| 1820 | } |
| 1821 | |
Takashi Iwai | 15790a6 | 2005-05-15 15:04:14 +0200 | [diff] [blame] | 1822 | static int snd_timer_user_pause(struct file *file) |
| 1823 | { |
| 1824 | int err; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1825 | struct snd_timer_user *tu; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1826 | |
Takashi Iwai | 15790a6 | 2005-05-15 15:04:14 +0200 | [diff] [blame] | 1827 | tu = file->private_data; |
Clemens Ladisch | 7c64ec3 | 2007-07-16 11:01:30 +0200 | [diff] [blame] | 1828 | if (!tu->timeri) |
| 1829 | return -EBADFD; |
Jaroslav Kysela | d138b44 | 2005-05-16 13:51:39 +0200 | [diff] [blame] | 1830 | return (err = snd_timer_pause(tu->timeri)) < 0 ? err : 0; |
Takashi Iwai | 15790a6 | 2005-05-15 15:04:14 +0200 | [diff] [blame] | 1831 | } |
| 1832 | |
Takashi Iwai | 8c50b37 | 2005-05-15 15:43:54 +0200 | [diff] [blame] | 1833 | enum { |
| 1834 | SNDRV_TIMER_IOCTL_START_OLD = _IO('T', 0x20), |
| 1835 | SNDRV_TIMER_IOCTL_STOP_OLD = _IO('T', 0x21), |
| 1836 | SNDRV_TIMER_IOCTL_CONTINUE_OLD = _IO('T', 0x22), |
| 1837 | SNDRV_TIMER_IOCTL_PAUSE_OLD = _IO('T', 0x23), |
| 1838 | }; |
| 1839 | |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 1840 | static long __snd_timer_user_ioctl(struct file *file, unsigned int cmd, |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1841 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1843 | struct snd_timer_user *tu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | void __user *argp = (void __user *)arg; |
| 1845 | int __user *p = argp; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1846 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | tu = file->private_data; |
| 1848 | switch (cmd) { |
| 1849 | case SNDRV_TIMER_IOCTL_PVERSION: |
| 1850 | return put_user(SNDRV_TIMER_VERSION, p) ? -EFAULT : 0; |
| 1851 | case SNDRV_TIMER_IOCTL_NEXT_DEVICE: |
| 1852 | return snd_timer_user_next_device(argp); |
| 1853 | case SNDRV_TIMER_IOCTL_TREAD: |
| 1854 | { |
| 1855 | int xarg; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1856 | |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 1857 | if (tu->timeri) /* too late */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | return -EBUSY; |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 1859 | if (get_user(xarg, p)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | return -EFAULT; |
| 1861 | tu->tread = xarg ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | return 0; |
| 1863 | } |
| 1864 | case SNDRV_TIMER_IOCTL_GINFO: |
| 1865 | return snd_timer_user_ginfo(file, argp); |
| 1866 | case SNDRV_TIMER_IOCTL_GPARAMS: |
| 1867 | return snd_timer_user_gparams(file, argp); |
| 1868 | case SNDRV_TIMER_IOCTL_GSTATUS: |
| 1869 | return snd_timer_user_gstatus(file, argp); |
| 1870 | case SNDRV_TIMER_IOCTL_SELECT: |
| 1871 | return snd_timer_user_tselect(file, argp); |
| 1872 | case SNDRV_TIMER_IOCTL_INFO: |
| 1873 | return snd_timer_user_info(file, argp); |
| 1874 | case SNDRV_TIMER_IOCTL_PARAMS: |
| 1875 | return snd_timer_user_params(file, argp); |
| 1876 | case SNDRV_TIMER_IOCTL_STATUS: |
| 1877 | return snd_timer_user_status(file, argp); |
| 1878 | case SNDRV_TIMER_IOCTL_START: |
Takashi Iwai | 8c50b37 | 2005-05-15 15:43:54 +0200 | [diff] [blame] | 1879 | case SNDRV_TIMER_IOCTL_START_OLD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | return snd_timer_user_start(file); |
| 1881 | case SNDRV_TIMER_IOCTL_STOP: |
Takashi Iwai | 8c50b37 | 2005-05-15 15:43:54 +0200 | [diff] [blame] | 1882 | case SNDRV_TIMER_IOCTL_STOP_OLD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | return snd_timer_user_stop(file); |
| 1884 | case SNDRV_TIMER_IOCTL_CONTINUE: |
Takashi Iwai | 8c50b37 | 2005-05-15 15:43:54 +0200 | [diff] [blame] | 1885 | case SNDRV_TIMER_IOCTL_CONTINUE_OLD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | return snd_timer_user_continue(file); |
Takashi Iwai | 15790a6 | 2005-05-15 15:04:14 +0200 | [diff] [blame] | 1887 | case SNDRV_TIMER_IOCTL_PAUSE: |
Takashi Iwai | 8c50b37 | 2005-05-15 15:43:54 +0200 | [diff] [blame] | 1888 | case SNDRV_TIMER_IOCTL_PAUSE_OLD: |
Takashi Iwai | 15790a6 | 2005-05-15 15:04:14 +0200 | [diff] [blame] | 1889 | return snd_timer_user_pause(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | } |
| 1891 | return -ENOTTY; |
| 1892 | } |
| 1893 | |
Takashi Iwai | af36802 | 2016-01-13 17:48:01 +0100 | [diff] [blame] | 1894 | static long snd_timer_user_ioctl(struct file *file, unsigned int cmd, |
| 1895 | unsigned long arg) |
| 1896 | { |
| 1897 | struct snd_timer_user *tu = file->private_data; |
| 1898 | long ret; |
| 1899 | |
| 1900 | mutex_lock(&tu->ioctl_lock); |
| 1901 | ret = __snd_timer_user_ioctl(file, cmd, arg); |
| 1902 | mutex_unlock(&tu->ioctl_lock); |
| 1903 | return ret; |
| 1904 | } |
| 1905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | static int snd_timer_user_fasync(int fd, struct file * file, int on) |
| 1907 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1908 | struct snd_timer_user *tu; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | tu = file->private_data; |
Jonathan Corbet | 60aa492 | 2009-02-01 14:52:56 -0700 | [diff] [blame] | 1911 | return fasync_helper(fd, file, on, &tu->fasync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | } |
| 1913 | |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1914 | static ssize_t snd_timer_user_read(struct file *file, char __user *buffer, |
| 1915 | size_t count, loff_t *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | { |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1917 | struct snd_timer_user *tu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | long result = 0, unit; |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1919 | int qhead; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | int err = 0; |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | tu = file->private_data; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1923 | unit = tu->tread ? sizeof(struct snd_timer_tread) : sizeof(struct snd_timer_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | spin_lock_irq(&tu->qlock); |
| 1925 | while ((long)count - result >= unit) { |
| 1926 | while (!tu->qused) { |
| 1927 | wait_queue_t wait; |
| 1928 | |
| 1929 | if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) { |
| 1930 | err = -EAGAIN; |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1931 | goto _error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | } |
| 1933 | |
| 1934 | set_current_state(TASK_INTERRUPTIBLE); |
| 1935 | init_waitqueue_entry(&wait, current); |
| 1936 | add_wait_queue(&tu->qchange_sleep, &wait); |
| 1937 | |
| 1938 | spin_unlock_irq(&tu->qlock); |
| 1939 | schedule(); |
| 1940 | spin_lock_irq(&tu->qlock); |
| 1941 | |
| 1942 | remove_wait_queue(&tu->qchange_sleep, &wait); |
| 1943 | |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 1944 | if (tu->disconnected) { |
| 1945 | err = -ENODEV; |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1946 | goto _error; |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 1947 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | if (signal_pending(current)) { |
| 1949 | err = -ERESTARTSYS; |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1950 | goto _error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | } |
| 1952 | } |
| 1953 | |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1954 | qhead = tu->qhead++; |
| 1955 | tu->qhead %= tu->queue_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | spin_unlock_irq(&tu->qlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | |
| 1958 | if (tu->tread) { |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1959 | if (copy_to_user(buffer, &tu->tqueue[qhead], |
| 1960 | sizeof(struct snd_timer_tread))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | err = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | } else { |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1963 | if (copy_to_user(buffer, &tu->queue[qhead], |
| 1964 | sizeof(struct snd_timer_read))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | err = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | } |
| 1967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | spin_lock_irq(&tu->qlock); |
| 1969 | tu->qused--; |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1970 | if (err < 0) |
| 1971 | goto _error; |
| 1972 | result += unit; |
| 1973 | buffer += unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | _error: |
Takashi Iwai | 4dff5c7 | 2016-02-08 17:26:58 +0100 | [diff] [blame] | 1976 | spin_unlock_irq(&tu->qlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | return result > 0 ? result : err; |
| 1978 | } |
| 1979 | |
| 1980 | static unsigned int snd_timer_user_poll(struct file *file, poll_table * wait) |
| 1981 | { |
| 1982 | unsigned int mask; |
Takashi Iwai | 53d2f74 | 2005-11-17 13:56:05 +0100 | [diff] [blame] | 1983 | struct snd_timer_user *tu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | |
| 1985 | tu = file->private_data; |
| 1986 | |
| 1987 | poll_wait(file, &tu->qchange_sleep, wait); |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 1988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | mask = 0; |
| 1990 | if (tu->qused) |
| 1991 | mask |= POLLIN | POLLRDNORM; |
Takashi Iwai | 230323d | 2016-01-21 17:19:31 +0100 | [diff] [blame] | 1992 | if (tu->disconnected) |
| 1993 | mask |= POLLERR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | |
| 1995 | return mask; |
| 1996 | } |
| 1997 | |
| 1998 | #ifdef CONFIG_COMPAT |
| 1999 | #include "timer_compat.c" |
| 2000 | #else |
| 2001 | #define snd_timer_user_ioctl_compat NULL |
| 2002 | #endif |
| 2003 | |
Arjan van de Ven | 9c2e08c | 2007-02-12 00:55:37 -0800 | [diff] [blame] | 2004 | static const struct file_operations snd_timer_f_ops = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | { |
| 2006 | .owner = THIS_MODULE, |
| 2007 | .read = snd_timer_user_read, |
| 2008 | .open = snd_timer_user_open, |
| 2009 | .release = snd_timer_user_release, |
Takashi Iwai | 02f4865 | 2010-04-13 11:49:04 +0200 | [diff] [blame] | 2010 | .llseek = no_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | .poll = snd_timer_user_poll, |
| 2012 | .unlocked_ioctl = snd_timer_user_ioctl, |
| 2013 | .compat_ioctl = snd_timer_user_ioctl_compat, |
| 2014 | .fasync = snd_timer_user_fasync, |
| 2015 | }; |
| 2016 | |
Takashi Iwai | 7c35860 | 2015-01-29 18:09:05 +0100 | [diff] [blame] | 2017 | /* unregister the system timer */ |
| 2018 | static void snd_timer_free_all(void) |
| 2019 | { |
| 2020 | struct snd_timer *timer, *n; |
| 2021 | |
| 2022 | list_for_each_entry_safe(timer, n, &snd_timer_list, device_list) |
| 2023 | snd_timer_free(timer); |
| 2024 | } |
| 2025 | |
Takashi Iwai | 89da061 | 2015-01-29 18:12:26 +0100 | [diff] [blame] | 2026 | static struct device timer_dev; |
| 2027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | /* |
| 2029 | * ENTRY functions |
| 2030 | */ |
| 2031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | static int __init alsa_timer_init(void) |
| 2033 | { |
| 2034 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | |
Takashi Iwai | 89da061 | 2015-01-29 18:12:26 +0100 | [diff] [blame] | 2036 | snd_device_initialize(&timer_dev, NULL); |
| 2037 | dev_set_name(&timer_dev, "timer"); |
| 2038 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | #ifdef SNDRV_OSS_INFO_DEV_TIMERS |
Clemens Ladisch | 6b172a8 | 2005-10-12 17:20:21 +0200 | [diff] [blame] | 2040 | snd_oss_info_register(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1, |
| 2041 | "system timer"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | #endif |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 2043 | |
Takashi Iwai | 7c35860 | 2015-01-29 18:09:05 +0100 | [diff] [blame] | 2044 | err = snd_timer_register_system(); |
| 2045 | if (err < 0) { |
Takashi Iwai | cf74dcf | 2014-02-04 18:22:39 +0100 | [diff] [blame] | 2046 | pr_err("ALSA: unable to register system timer (%i)\n", err); |
Takashi Iwai | 89da061 | 2015-01-29 18:12:26 +0100 | [diff] [blame] | 2047 | put_device(&timer_dev); |
Takashi Iwai | 7c35860 | 2015-01-29 18:09:05 +0100 | [diff] [blame] | 2048 | return err; |
| 2049 | } |
| 2050 | |
Takashi Iwai | 40a4b26 | 2015-01-30 08:34:58 +0100 | [diff] [blame] | 2051 | err = snd_register_device(SNDRV_DEVICE_TYPE_TIMER, NULL, 0, |
| 2052 | &snd_timer_f_ops, NULL, &timer_dev); |
Takashi Iwai | 7c35860 | 2015-01-29 18:09:05 +0100 | [diff] [blame] | 2053 | if (err < 0) { |
Takashi Iwai | cf74dcf | 2014-02-04 18:22:39 +0100 | [diff] [blame] | 2054 | pr_err("ALSA: unable to register timer device (%i)\n", err); |
Takashi Iwai | 7c35860 | 2015-01-29 18:09:05 +0100 | [diff] [blame] | 2055 | snd_timer_free_all(); |
Takashi Iwai | 89da061 | 2015-01-29 18:12:26 +0100 | [diff] [blame] | 2056 | put_device(&timer_dev); |
Takashi Iwai | 7c35860 | 2015-01-29 18:09:05 +0100 | [diff] [blame] | 2057 | return err; |
| 2058 | } |
| 2059 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 2060 | snd_timer_proc_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | return 0; |
| 2062 | } |
| 2063 | |
| 2064 | static void __exit alsa_timer_exit(void) |
| 2065 | { |
Takashi Iwai | 40a4b26 | 2015-01-30 08:34:58 +0100 | [diff] [blame] | 2066 | snd_unregister_device(&timer_dev); |
Takashi Iwai | 7c35860 | 2015-01-29 18:09:05 +0100 | [diff] [blame] | 2067 | snd_timer_free_all(); |
Takashi Iwai | 89da061 | 2015-01-29 18:12:26 +0100 | [diff] [blame] | 2068 | put_device(&timer_dev); |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 2069 | snd_timer_proc_done(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | #ifdef SNDRV_OSS_INFO_DEV_TIMERS |
| 2071 | snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_TIMERS, SNDRV_CARDS - 1); |
| 2072 | #endif |
| 2073 | } |
| 2074 | |
| 2075 | module_init(alsa_timer_init) |
| 2076 | module_exit(alsa_timer_exit) |
| 2077 | |
| 2078 | EXPORT_SYMBOL(snd_timer_open); |
| 2079 | EXPORT_SYMBOL(snd_timer_close); |
| 2080 | EXPORT_SYMBOL(snd_timer_resolution); |
| 2081 | EXPORT_SYMBOL(snd_timer_start); |
| 2082 | EXPORT_SYMBOL(snd_timer_stop); |
| 2083 | EXPORT_SYMBOL(snd_timer_continue); |
| 2084 | EXPORT_SYMBOL(snd_timer_pause); |
| 2085 | EXPORT_SYMBOL(snd_timer_new); |
| 2086 | EXPORT_SYMBOL(snd_timer_notify); |
| 2087 | EXPORT_SYMBOL(snd_timer_global_new); |
| 2088 | EXPORT_SYMBOL(snd_timer_global_free); |
| 2089 | EXPORT_SYMBOL(snd_timer_global_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | EXPORT_SYMBOL(snd_timer_interrupt); |