mm: drop migrate type checks from has_unmovable_pages
[linux/fpc-iii.git] / sound / firewire / digi00x / digi00x-hwdep.c
blob463c6b8e864d025bae08b931705c0fae2d71d952
1 /*
2 * digi00x-hwdep.c - a part of driver for Digidesign Digi 002/003 family
4 * Copyright (c) 2014-2015 Takashi Sakamoto
6 * Licensed under the terms of the GNU General Public License, version 2.
7 */
9 /*
10 * This codes give three functionality.
12 * 1.get firewire node information
13 * 2.get notification about starting/stopping stream
14 * 3.lock/unlock stream
15 * 4.get asynchronous messaging
18 #include "digi00x.h"
20 static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count,
21 loff_t *offset)
23 struct snd_dg00x *dg00x = hwdep->private_data;
24 DEFINE_WAIT(wait);
25 union snd_firewire_event event;
27 spin_lock_irq(&dg00x->lock);
29 while (!dg00x->dev_lock_changed && dg00x->msg == 0) {
30 prepare_to_wait(&dg00x->hwdep_wait, &wait, TASK_INTERRUPTIBLE);
31 spin_unlock_irq(&dg00x->lock);
32 schedule();
33 finish_wait(&dg00x->hwdep_wait, &wait);
34 if (signal_pending(current))
35 return -ERESTARTSYS;
36 spin_lock_irq(&dg00x->lock);
39 memset(&event, 0, sizeof(event));
40 if (dg00x->dev_lock_changed) {
41 event.lock_status.type = SNDRV_FIREWIRE_EVENT_LOCK_STATUS;
42 event.lock_status.status = (dg00x->dev_lock_count > 0);
43 dg00x->dev_lock_changed = false;
45 count = min_t(long, count, sizeof(event.lock_status));
46 } else {
47 event.digi00x_message.type =
48 SNDRV_FIREWIRE_EVENT_DIGI00X_MESSAGE;
49 event.digi00x_message.message = dg00x->msg;
50 dg00x->msg = 0;
52 count = min_t(long, count, sizeof(event.digi00x_message));
55 spin_unlock_irq(&dg00x->lock);
57 if (copy_to_user(buf, &event, count))
58 return -EFAULT;
60 return count;
63 static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
64 poll_table *wait)
66 struct snd_dg00x *dg00x = hwdep->private_data;
67 unsigned int events;
69 poll_wait(file, &dg00x->hwdep_wait, wait);
71 spin_lock_irq(&dg00x->lock);
72 if (dg00x->dev_lock_changed || dg00x->msg)
73 events = POLLIN | POLLRDNORM;
74 else
75 events = 0;
76 spin_unlock_irq(&dg00x->lock);
78 return events;
81 static int hwdep_get_info(struct snd_dg00x *dg00x, void __user *arg)
83 struct fw_device *dev = fw_parent_device(dg00x->unit);
84 struct snd_firewire_get_info info;
86 memset(&info, 0, sizeof(info));
87 info.type = SNDRV_FIREWIRE_TYPE_DIGI00X;
88 info.card = dev->card->index;
89 *(__be32 *)&info.guid[0] = cpu_to_be32(dev->config_rom[3]);
90 *(__be32 *)&info.guid[4] = cpu_to_be32(dev->config_rom[4]);
91 strlcpy(info.device_name, dev_name(&dev->device),
92 sizeof(info.device_name));
94 if (copy_to_user(arg, &info, sizeof(info)))
95 return -EFAULT;
97 return 0;
100 static int hwdep_lock(struct snd_dg00x *dg00x)
102 int err;
104 spin_lock_irq(&dg00x->lock);
106 if (dg00x->dev_lock_count == 0) {
107 dg00x->dev_lock_count = -1;
108 err = 0;
109 } else {
110 err = -EBUSY;
113 spin_unlock_irq(&dg00x->lock);
115 return err;
118 static int hwdep_unlock(struct snd_dg00x *dg00x)
120 int err;
122 spin_lock_irq(&dg00x->lock);
124 if (dg00x->dev_lock_count == -1) {
125 dg00x->dev_lock_count = 0;
126 err = 0;
127 } else {
128 err = -EBADFD;
131 spin_unlock_irq(&dg00x->lock);
133 return err;
136 static int hwdep_release(struct snd_hwdep *hwdep, struct file *file)
138 struct snd_dg00x *dg00x = hwdep->private_data;
140 spin_lock_irq(&dg00x->lock);
141 if (dg00x->dev_lock_count == -1)
142 dg00x->dev_lock_count = 0;
143 spin_unlock_irq(&dg00x->lock);
145 return 0;
148 static int hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file,
149 unsigned int cmd, unsigned long arg)
151 struct snd_dg00x *dg00x = hwdep->private_data;
153 switch (cmd) {
154 case SNDRV_FIREWIRE_IOCTL_GET_INFO:
155 return hwdep_get_info(dg00x, (void __user *)arg);
156 case SNDRV_FIREWIRE_IOCTL_LOCK:
157 return hwdep_lock(dg00x);
158 case SNDRV_FIREWIRE_IOCTL_UNLOCK:
159 return hwdep_unlock(dg00x);
160 default:
161 return -ENOIOCTLCMD;
165 #ifdef CONFIG_COMPAT
166 static int hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file,
167 unsigned int cmd, unsigned long arg)
169 return hwdep_ioctl(hwdep, file, cmd,
170 (unsigned long)compat_ptr(arg));
172 #else
173 #define hwdep_compat_ioctl NULL
174 #endif
176 int snd_dg00x_create_hwdep_device(struct snd_dg00x *dg00x)
178 static const struct snd_hwdep_ops ops = {
179 .read = hwdep_read,
180 .release = hwdep_release,
181 .poll = hwdep_poll,
182 .ioctl = hwdep_ioctl,
183 .ioctl_compat = hwdep_compat_ioctl,
185 struct snd_hwdep *hwdep;
186 int err;
188 err = snd_hwdep_new(dg00x->card, "Digi00x", 0, &hwdep);
189 if (err < 0)
190 return err;
192 strcpy(hwdep->name, "Digi00x");
193 hwdep->iface = SNDRV_HWDEP_IFACE_FW_DIGI00X;
194 hwdep->ops = ops;
195 hwdep->private_data = dg00x;
196 hwdep->exclusive = true;
198 return err;