aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2014-12-08 10:10:49 -0500
committerTakashi Iwai <tiwai@suse.de>2014-12-10 04:50:00 -0500
commit8985f4ac1c42bd25799f294f4e87fa73064673c7 (patch)
tree04f57545162b29abfc8a6b0c2d2833721b4bcc78 /sound
parent05588d340a128ff5c7b768c517150e31842a78aa (diff)
ALSA: oxfw: Add hwdep interface
This interface is designed for mixer/control application. By using this interface, an application can get information about firewire node, can lock/unlock kernel streaming and can get notification at starting/stopping kernel streaming. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Acked-by: Clemens Ladisch <clemens@ladisch.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/firewire/Kconfig1
-rw-r--r--sound/firewire/oxfw/Makefile2
-rw-r--r--sound/firewire/oxfw/oxfw-hwdep.c190
-rw-r--r--sound/firewire/oxfw/oxfw-midi.c16
-rw-r--r--sound/firewire/oxfw/oxfw-pcm.c12
-rw-r--r--sound/firewire/oxfw/oxfw-stream.c39
-rw-r--r--sound/firewire/oxfw/oxfw.c5
-rw-r--r--sound/firewire/oxfw/oxfw.h13
8 files changed, 276 insertions, 2 deletions
diff --git a/sound/firewire/Kconfig b/sound/firewire/Kconfig
index 6364e5b90a00..ecec547782b2 100644
--- a/sound/firewire/Kconfig
+++ b/sound/firewire/Kconfig
@@ -26,6 +26,7 @@ config SND_DICE
26config SND_OXFW 26config SND_OXFW
27 tristate "Oxford Semiconductor FW970/971 chipset support" 27 tristate "Oxford Semiconductor FW970/971 chipset support"
28 select SND_FIREWIRE_LIB 28 select SND_FIREWIRE_LIB
29 select SND_HWDEP
29 help 30 help
30 Say Y here to include support for FireWire devices based on 31 Say Y here to include support for FireWire devices based on
31 Oxford Semiconductor FW970/971 chipset. 32 Oxford Semiconductor FW970/971 chipset.
diff --git a/sound/firewire/oxfw/Makefile b/sound/firewire/oxfw/Makefile
index 3904a302d48e..a926850864f6 100644
--- a/sound/firewire/oxfw/Makefile
+++ b/sound/firewire/oxfw/Makefile
@@ -1,3 +1,3 @@
1snd-oxfw-objs := oxfw-command.o oxfw-stream.o oxfw-control.o oxfw-pcm.o \ 1snd-oxfw-objs := oxfw-command.o oxfw-stream.o oxfw-control.o oxfw-pcm.o \
2 oxfw-proc.o oxfw-midi.o oxfw.o 2 oxfw-proc.o oxfw-midi.o oxfw-hwdep.o oxfw.o
3obj-m += snd-oxfw.o 3obj-m += snd-oxfw.o
diff --git a/sound/firewire/oxfw/oxfw-hwdep.c b/sound/firewire/oxfw/oxfw-hwdep.c
new file mode 100644
index 000000000000..ff2687ad0460
--- /dev/null
+++ b/sound/firewire/oxfw/oxfw-hwdep.c
@@ -0,0 +1,190 @@
1/*
2 * oxfw_hwdep.c - a part of driver for OXFW970/971 based devices
3 *
4 * Copyright (c) 2014 Takashi Sakamoto
5 *
6 * Licensed under the terms of the GNU General Public License, version 2.
7 */
8
9/*
10 * This codes give three functionality.
11 *
12 * 1.get firewire node information
13 * 2.get notification about starting/stopping stream
14 * 3.lock/unlock stream
15 */
16
17#include "oxfw.h"
18
19static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count,
20 loff_t *offset)
21{
22 struct snd_oxfw *oxfw = hwdep->private_data;
23 DEFINE_WAIT(wait);
24 union snd_firewire_event event;
25
26 spin_lock_irq(&oxfw->lock);
27
28 while (!oxfw->dev_lock_changed) {
29 prepare_to_wait(&oxfw->hwdep_wait, &wait, TASK_INTERRUPTIBLE);
30 spin_unlock_irq(&oxfw->lock);
31 schedule();
32 finish_wait(&oxfw->hwdep_wait, &wait);
33 if (signal_pending(current))
34 return -ERESTARTSYS;
35 spin_lock_irq(&oxfw->lock);
36 }
37
38 memset(&event, 0, sizeof(event));
39 if (oxfw->dev_lock_changed) {
40 event.lock_status.type = SNDRV_FIREWIRE_EVENT_LOCK_STATUS;
41 event.lock_status.status = (oxfw->dev_lock_count > 0);
42 oxfw->dev_lock_changed = false;
43
44 count = min_t(long, count, sizeof(event.lock_status));
45 }
46
47 spin_unlock_irq(&oxfw->lock);
48
49 if (copy_to_user(buf, &event, count))
50 return -EFAULT;
51
52 return count;
53}
54
55static unsigned int hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
56 poll_table *wait)
57{
58 struct snd_oxfw *oxfw = hwdep->private_data;
59 unsigned int events;
60
61 poll_wait(file, &oxfw->hwdep_wait, wait);
62
63 spin_lock_irq(&oxfw->lock);
64 if (oxfw->dev_lock_changed)
65 events = POLLIN | POLLRDNORM;
66 else
67 events = 0;
68 spin_unlock_irq(&oxfw->lock);
69
70 return events;
71}
72
73static int hwdep_get_info(struct snd_oxfw *oxfw, void __user *arg)
74{
75 struct fw_device *dev = fw_parent_device(oxfw->unit);
76 struct snd_firewire_get_info info;
77
78 memset(&info, 0, sizeof(info));
79 info.type = SNDRV_FIREWIRE_TYPE_OXFW;
80 info.card = dev->card->index;
81 *(__be32 *)&info.guid[0] = cpu_to_be32(dev->config_rom[3]);
82 *(__be32 *)&info.guid[4] = cpu_to_be32(dev->config_rom[4]);
83 strlcpy(info.device_name, dev_name(&dev->device),
84 sizeof(info.device_name));
85
86 if (copy_to_user(arg, &info, sizeof(info)))
87 return -EFAULT;
88
89 return 0;
90}
91
92static int hwdep_lock(struct snd_oxfw *oxfw)
93{
94 int err;
95
96 spin_lock_irq(&oxfw->lock);
97
98 if (oxfw->dev_lock_count == 0) {
99 oxfw->dev_lock_count = -1;
100 err = 0;
101 } else {
102 err = -EBUSY;
103 }
104
105 spin_unlock_irq(&oxfw->lock);
106
107 return err;
108}
109
110static int hwdep_unlock(struct snd_oxfw *oxfw)
111{
112 int err;
113
114 spin_lock_irq(&oxfw->lock);
115
116 if (oxfw->dev_lock_count == -1) {
117 oxfw->dev_lock_count = 0;
118 err = 0;
119 } else {
120 err = -EBADFD;
121 }
122
123 spin_unlock_irq(&oxfw->lock);
124
125 return err;
126}
127
128static int hwdep_release(struct snd_hwdep *hwdep, struct file *file)
129{
130 struct snd_oxfw *oxfw = hwdep->private_data;
131
132 spin_lock_irq(&oxfw->lock);
133 if (oxfw->dev_lock_count == -1)
134 oxfw->dev_lock_count = 0;
135 spin_unlock_irq(&oxfw->lock);
136
137 return 0;
138}
139
140static int hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file,
141 unsigned int cmd, unsigned long arg)
142{
143 struct snd_oxfw *oxfw = hwdep->private_data;
144
145 switch (cmd) {
146 case SNDRV_FIREWIRE_IOCTL_GET_INFO:
147 return hwdep_get_info(oxfw, (void __user *)arg);
148 case SNDRV_FIREWIRE_IOCTL_LOCK:
149 return hwdep_lock(oxfw);
150 case SNDRV_FIREWIRE_IOCTL_UNLOCK:
151 return hwdep_unlock(oxfw);
152 default:
153 return -ENOIOCTLCMD;
154 }
155}
156
157#ifdef CONFIG_COMPAT
158static int hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file,
159 unsigned int cmd, unsigned long arg)
160{
161 return hwdep_ioctl(hwdep, file, cmd,
162 (unsigned long)compat_ptr(arg));
163}
164#else
165#define hwdep_compat_ioctl NULL
166#endif
167
168int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw)
169{
170 static const struct snd_hwdep_ops hwdep_ops = {
171 .read = hwdep_read,
172 .release = hwdep_release,
173 .poll = hwdep_poll,
174 .ioctl = hwdep_ioctl,
175 .ioctl_compat = hwdep_compat_ioctl,
176 };
177 struct snd_hwdep *hwdep;
178 int err;
179
180 err = snd_hwdep_new(oxfw->card, oxfw->card->driver, 0, &hwdep);
181 if (err < 0)
182 goto end;
183 strcpy(hwdep->name, oxfw->card->driver);
184 hwdep->iface = SNDRV_HWDEP_IFACE_FW_OXFW;
185 hwdep->ops = hwdep_ops;
186 hwdep->private_data = oxfw;
187 hwdep->exclusive = true;
188end:
189 return err;
190}
diff --git a/sound/firewire/oxfw/oxfw-midi.c b/sound/firewire/oxfw/oxfw-midi.c
index 334b11d1a422..540a30338516 100644
--- a/sound/firewire/oxfw/oxfw-midi.c
+++ b/sound/firewire/oxfw/oxfw-midi.c
@@ -13,6 +13,10 @@ static int midi_capture_open(struct snd_rawmidi_substream *substream)
13 struct snd_oxfw *oxfw = substream->rmidi->private_data; 13 struct snd_oxfw *oxfw = substream->rmidi->private_data;
14 int err; 14 int err;
15 15
16 err = snd_oxfw_stream_lock_try(oxfw);
17 if (err < 0)
18 return err;
19
16 mutex_lock(&oxfw->mutex); 20 mutex_lock(&oxfw->mutex);
17 21
18 oxfw->capture_substreams++; 22 oxfw->capture_substreams++;
@@ -20,6 +24,9 @@ static int midi_capture_open(struct snd_rawmidi_substream *substream)
20 24
21 mutex_unlock(&oxfw->mutex); 25 mutex_unlock(&oxfw->mutex);
22 26
27 if (err < 0)
28 snd_oxfw_stream_lock_release(oxfw);
29
23 return err; 30 return err;
24} 31}
25 32
@@ -28,6 +35,10 @@ static int midi_playback_open(struct snd_rawmidi_substream *substream)
28 struct snd_oxfw *oxfw = substream->rmidi->private_data; 35 struct snd_oxfw *oxfw = substream->rmidi->private_data;
29 int err; 36 int err;
30 37
38 err = snd_oxfw_stream_lock_try(oxfw);
39 if (err < 0)
40 return err;
41
31 mutex_lock(&oxfw->mutex); 42 mutex_lock(&oxfw->mutex);
32 43
33 oxfw->playback_substreams++; 44 oxfw->playback_substreams++;
@@ -35,6 +46,9 @@ static int midi_playback_open(struct snd_rawmidi_substream *substream)
35 46
36 mutex_unlock(&oxfw->mutex); 47 mutex_unlock(&oxfw->mutex);
37 48
49 if (err < 0)
50 snd_oxfw_stream_lock_release(oxfw);
51
38 return err; 52 return err;
39} 53}
40 54
@@ -49,6 +63,7 @@ static int midi_capture_close(struct snd_rawmidi_substream *substream)
49 63
50 mutex_unlock(&oxfw->mutex); 64 mutex_unlock(&oxfw->mutex);
51 65
66 snd_oxfw_stream_lock_release(oxfw);
52 return 0; 67 return 0;
53} 68}
54 69
@@ -63,6 +78,7 @@ static int midi_playback_close(struct snd_rawmidi_substream *substream)
63 78
64 mutex_unlock(&oxfw->mutex); 79 mutex_unlock(&oxfw->mutex);
65 80
81 snd_oxfw_stream_lock_release(oxfw);
66 return 0; 82 return 0;
67} 83}
68 84
diff --git a/sound/firewire/oxfw/oxfw-pcm.c b/sound/firewire/oxfw/oxfw-pcm.c
index e84fc9c4bfd1..9bc556b15a92 100644
--- a/sound/firewire/oxfw/oxfw-pcm.c
+++ b/sound/firewire/oxfw/oxfw-pcm.c
@@ -192,10 +192,14 @@ static int pcm_open(struct snd_pcm_substream *substream)
192 struct snd_oxfw *oxfw = substream->private_data; 192 struct snd_oxfw *oxfw = substream->private_data;
193 int err; 193 int err;
194 194
195 err = init_hw_params(oxfw, substream); 195 err = snd_oxfw_stream_lock_try(oxfw);
196 if (err < 0) 196 if (err < 0)
197 goto end; 197 goto end;
198 198
199 err = init_hw_params(oxfw, substream);
200 if (err < 0)
201 goto err_locked;
202
199 /* 203 /*
200 * When any PCM streams are already running, the available sampling 204 * When any PCM streams are already running, the available sampling
201 * rate is limited at current value. 205 * rate is limited at current value.
@@ -210,10 +214,16 @@ static int pcm_open(struct snd_pcm_substream *substream)
210 snd_pcm_set_sync(substream); 214 snd_pcm_set_sync(substream);
211end: 215end:
212 return err; 216 return err;
217err_locked:
218 snd_oxfw_stream_lock_release(oxfw);
219 return err;
213} 220}
214 221
215static int pcm_close(struct snd_pcm_substream *substream) 222static int pcm_close(struct snd_pcm_substream *substream)
216{ 223{
224 struct snd_oxfw *oxfw = substream->private_data;
225
226 snd_oxfw_stream_lock_release(oxfw);
217 return 0; 227 return 0;
218} 228}
219 229
diff --git a/sound/firewire/oxfw/oxfw-stream.c b/sound/firewire/oxfw/oxfw-stream.c
index a38b3c36faca..b77cf80f1678 100644
--- a/sound/firewire/oxfw/oxfw-stream.c
+++ b/sound/firewire/oxfw/oxfw-stream.c
@@ -644,3 +644,42 @@ int snd_oxfw_stream_discover(struct snd_oxfw *oxfw)
644end: 644end:
645 return err; 645 return err;
646} 646}
647
648void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw)
649{
650 oxfw->dev_lock_changed = true;
651 wake_up(&oxfw->hwdep_wait);
652}
653
654int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw)
655{
656 int err;
657
658 spin_lock_irq(&oxfw->lock);
659
660 /* user land lock this */
661 if (oxfw->dev_lock_count < 0) {
662 err = -EBUSY;
663 goto end;
664 }
665
666 /* this is the first time */
667 if (oxfw->dev_lock_count++ == 0)
668 snd_oxfw_stream_lock_changed(oxfw);
669 err = 0;
670end:
671 spin_unlock_irq(&oxfw->lock);
672 return err;
673}
674
675void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw)
676{
677 spin_lock_irq(&oxfw->lock);
678
679 if (WARN_ON(oxfw->dev_lock_count <= 0))
680 goto end;
681 if (--oxfw->dev_lock_count == 0)
682 snd_oxfw_stream_lock_changed(oxfw);
683end:
684 spin_unlock_irq(&oxfw->lock);
685}
diff --git a/sound/firewire/oxfw/oxfw.c b/sound/firewire/oxfw/oxfw.c
index 9cfbfb168dac..cf1d0b55e827 100644
--- a/sound/firewire/oxfw/oxfw.c
+++ b/sound/firewire/oxfw/oxfw.c
@@ -139,6 +139,7 @@ static int oxfw_probe(struct fw_unit *unit,
139 oxfw->unit = unit; 139 oxfw->unit = unit;
140 oxfw->device_info = (const struct device_info *)id->driver_data; 140 oxfw->device_info = (const struct device_info *)id->driver_data;
141 spin_lock_init(&oxfw->lock); 141 spin_lock_init(&oxfw->lock);
142 init_waitqueue_head(&oxfw->hwdep_wait);
142 143
143 err = snd_oxfw_stream_discover(oxfw); 144 err = snd_oxfw_stream_discover(oxfw);
144 if (err < 0) 145 if (err < 0)
@@ -164,6 +165,10 @@ static int oxfw_probe(struct fw_unit *unit,
164 if (err < 0) 165 if (err < 0)
165 goto error; 166 goto error;
166 167
168 err = snd_oxfw_create_hwdep(oxfw);
169 if (err < 0)
170 goto error;
171
167 err = snd_oxfw_stream_init_simplex(oxfw, &oxfw->rx_stream); 172 err = snd_oxfw_stream_init_simplex(oxfw, &oxfw->rx_stream);
168 if (err < 0) 173 if (err < 0)
169 goto error; 174 goto error;
diff --git a/sound/firewire/oxfw/oxfw.h b/sound/firewire/oxfw/oxfw.h
index 83a54fc73a11..cace5ad4fe76 100644
--- a/sound/firewire/oxfw/oxfw.h
+++ b/sound/firewire/oxfw/oxfw.h
@@ -12,6 +12,7 @@
12#include <linux/mod_devicetable.h> 12#include <linux/mod_devicetable.h>
13#include <linux/mutex.h> 13#include <linux/mutex.h>
14#include <linux/slab.h> 14#include <linux/slab.h>
15#include <linux/compat.h>
15 16
16#include <sound/control.h> 17#include <sound/control.h>
17#include <sound/core.h> 18#include <sound/core.h>
@@ -20,6 +21,8 @@
20#include <sound/pcm_params.h> 21#include <sound/pcm_params.h>
21#include <sound/info.h> 22#include <sound/info.h>
22#include <sound/rawmidi.h> 23#include <sound/rawmidi.h>
24#include <sound/firewire.h>
25#include <sound/hwdep.h>
23 26
24#include "../lib.h" 27#include "../lib.h"
25#include "../fcp.h" 28#include "../fcp.h"
@@ -64,6 +67,10 @@ struct snd_oxfw {
64 s16 volume[6]; 67 s16 volume[6];
65 s16 volume_min; 68 s16 volume_min;
66 s16 volume_max; 69 s16 volume_max;
70
71 int dev_lock_count;
72 bool dev_lock_changed;
73 wait_queue_head_t hwdep_wait;
67}; 74};
68 75
69/* 76/*
@@ -124,6 +131,10 @@ int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw,
124 131
125int snd_oxfw_stream_discover(struct snd_oxfw *oxfw); 132int snd_oxfw_stream_discover(struct snd_oxfw *oxfw);
126 133
134void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw);
135int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw);
136void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw);
137
127int snd_oxfw_create_pcm(struct snd_oxfw *oxfw); 138int snd_oxfw_create_pcm(struct snd_oxfw *oxfw);
128 139
129int snd_oxfw_create_mixer(struct snd_oxfw *oxfw); 140int snd_oxfw_create_mixer(struct snd_oxfw *oxfw);
@@ -131,3 +142,5 @@ int snd_oxfw_create_mixer(struct snd_oxfw *oxfw);
131void snd_oxfw_proc_init(struct snd_oxfw *oxfw); 142void snd_oxfw_proc_init(struct snd_oxfw *oxfw);
132 143
133int snd_oxfw_create_midi(struct snd_oxfw *oxfw); 144int snd_oxfw_create_midi(struct snd_oxfw *oxfw);
145
146int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw);