diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 11:52:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 11:52:38 -0400 |
commit | 710421cc7d295cc59eb2676fe2ba3bc3252c124e (patch) | |
tree | 4aa11cd7ee64b394871195cb585f16700553f540 /sound/firewire | |
parent | d7ef64a9f9987b29e3d911369a9d40122d5be2dd (diff) | |
parent | f686c74cc3e78349d16d46fc72807354574b1516 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6: (346 commits)
ASoC: core: Don't set "(null)" as a driver name
ALSA: hda - Use LPIB for ATI/AMD chipsets as default
Revert "ALSA: hda - Use position_fix=3 as default for AMD chipsets"
ASoC: Tegra: Fix compile when debugfs not enabled
ASoC: spdif-dit: Add missing MODULE_*
SOUND: OSS: Remove Au1550 driver.
ALSA: hda - add Intel Panther Point HDMI codec id
ALSA: emu10k1 - Add dB range to Bass and Treble for SB Live!
ALSA: hda - Remove PCM mixer elements from Virtual Master of realtek
ALSA: hda - Fix input-src parse in patch_analog.c
ASoC: davinci-mcasp: enable ping-pong SRAM buffers
ASoC: add iPAQ hx4700 machine driver
ASoC: Asahi Kasei AK4641 codec driver
ALSA: hda - Enable Realtek ALC269 codec input layer beep
ALSA: intel8x0m: enable AMD8111 modem
ALSA: HDA: Add jack detection for HDMI
ALSA: sound, core, pcm_lib: fix xrun_log
ASoC: Max98095: Move existing NULL check before pointer dereference.
ALSA: sound, core, pcm_lib: xrun_log: log also in_interrupt
ALSA: usb-audio - Add support for USB X-Fi S51 Pro
...
Diffstat (limited to 'sound/firewire')
-rw-r--r-- | sound/firewire/Kconfig | 11 | ||||
-rw-r--r-- | sound/firewire/Makefile | 2 | ||||
-rw-r--r-- | sound/firewire/isight.c | 755 | ||||
-rw-r--r-- | sound/firewire/iso-resources.c | 5 | ||||
-rw-r--r-- | sound/firewire/packets-buffer.c | 2 |
5 files changed, 775 insertions, 0 deletions
diff --git a/sound/firewire/Kconfig b/sound/firewire/Kconfig index e486f48660fb..26071489970b 100644 --- a/sound/firewire/Kconfig +++ b/sound/firewire/Kconfig | |||
@@ -22,4 +22,15 @@ config SND_FIREWIRE_SPEAKERS | |||
22 | To compile this driver as a module, choose M here: the module | 22 | To compile this driver as a module, choose M here: the module |
23 | will be called snd-firewire-speakers. | 23 | will be called snd-firewire-speakers. |
24 | 24 | ||
25 | config SND_ISIGHT | ||
26 | tristate "Apple iSight microphone" | ||
27 | select SND_PCM | ||
28 | select SND_FIREWIRE_LIB | ||
29 | help | ||
30 | Say Y here to include support for the front and rear microphones | ||
31 | of the Apple iSight web camera. | ||
32 | |||
33 | To compile this driver as a module, choose M here: the module | ||
34 | will be called snd-isight. | ||
35 | |||
25 | endif # SND_FIREWIRE | 36 | endif # SND_FIREWIRE |
diff --git a/sound/firewire/Makefile b/sound/firewire/Makefile index e5b1634d9ad4..d71ed8935f76 100644 --- a/sound/firewire/Makefile +++ b/sound/firewire/Makefile | |||
@@ -1,6 +1,8 @@ | |||
1 | snd-firewire-lib-objs := lib.o iso-resources.o packets-buffer.o \ | 1 | snd-firewire-lib-objs := lib.o iso-resources.o packets-buffer.o \ |
2 | fcp.o cmp.o amdtp.o | 2 | fcp.o cmp.o amdtp.o |
3 | snd-firewire-speakers-objs := speakers.o | 3 | snd-firewire-speakers-objs := speakers.o |
4 | snd-isight-objs := isight.o | ||
4 | 5 | ||
5 | obj-$(CONFIG_SND_FIREWIRE_LIB) += snd-firewire-lib.o | 6 | obj-$(CONFIG_SND_FIREWIRE_LIB) += snd-firewire-lib.o |
6 | obj-$(CONFIG_SND_FIREWIRE_SPEAKERS) += snd-firewire-speakers.o | 7 | obj-$(CONFIG_SND_FIREWIRE_SPEAKERS) += snd-firewire-speakers.o |
8 | obj-$(CONFIG_SND_ISIGHT) += snd-isight.o | ||
diff --git a/sound/firewire/isight.c b/sound/firewire/isight.c new file mode 100644 index 000000000000..86ee16ca365e --- /dev/null +++ b/sound/firewire/isight.c | |||
@@ -0,0 +1,755 @@ | |||
1 | /* | ||
2 | * Apple iSight audio driver | ||
3 | * | ||
4 | * Copyright (c) Clemens Ladisch <clemens@ladisch.de> | ||
5 | * Licensed under the terms of the GNU General Public License, version 2. | ||
6 | */ | ||
7 | |||
8 | #include <asm/byteorder.h> | ||
9 | #include <linux/delay.h> | ||
10 | #include <linux/device.h> | ||
11 | #include <linux/firewire.h> | ||
12 | #include <linux/firewire-constants.h> | ||
13 | #include <linux/module.h> | ||
14 | #include <linux/mod_devicetable.h> | ||
15 | #include <linux/mutex.h> | ||
16 | #include <linux/string.h> | ||
17 | #include <sound/control.h> | ||
18 | #include <sound/core.h> | ||
19 | #include <sound/initval.h> | ||
20 | #include <sound/pcm.h> | ||
21 | #include <sound/tlv.h> | ||
22 | #include "lib.h" | ||
23 | #include "iso-resources.h" | ||
24 | #include "packets-buffer.h" | ||
25 | |||
26 | #define OUI_APPLE 0x000a27 | ||
27 | #define MODEL_APPLE_ISIGHT 0x000008 | ||
28 | #define SW_ISIGHT_AUDIO 0x000010 | ||
29 | |||
30 | #define REG_AUDIO_ENABLE 0x000 | ||
31 | #define AUDIO_ENABLE 0x80000000 | ||
32 | #define REG_DEF_AUDIO_GAIN 0x204 | ||
33 | #define REG_GAIN_RAW_START 0x210 | ||
34 | #define REG_GAIN_RAW_END 0x214 | ||
35 | #define REG_GAIN_DB_START 0x218 | ||
36 | #define REG_GAIN_DB_END 0x21c | ||
37 | #define REG_SAMPLE_RATE_INQUIRY 0x280 | ||
38 | #define REG_ISO_TX_CONFIG 0x300 | ||
39 | #define SPEED_SHIFT 16 | ||
40 | #define REG_SAMPLE_RATE 0x400 | ||
41 | #define RATE_48000 0x80000000 | ||
42 | #define REG_GAIN 0x500 | ||
43 | #define REG_MUTE 0x504 | ||
44 | |||
45 | #define MAX_FRAMES_PER_PACKET 475 | ||
46 | |||
47 | #define QUEUE_LENGTH 20 | ||
48 | |||
49 | struct isight { | ||
50 | struct snd_card *card; | ||
51 | struct fw_unit *unit; | ||
52 | struct fw_device *device; | ||
53 | u64 audio_base; | ||
54 | struct fw_address_handler iris_handler; | ||
55 | struct snd_pcm_substream *pcm; | ||
56 | struct mutex mutex; | ||
57 | struct iso_packets_buffer buffer; | ||
58 | struct fw_iso_resources resources; | ||
59 | struct fw_iso_context *context; | ||
60 | bool pcm_active; | ||
61 | bool pcm_running; | ||
62 | bool first_packet; | ||
63 | int packet_index; | ||
64 | u32 total_samples; | ||
65 | unsigned int buffer_pointer; | ||
66 | unsigned int period_counter; | ||
67 | s32 gain_min, gain_max; | ||
68 | unsigned int gain_tlv[4]; | ||
69 | }; | ||
70 | |||
71 | struct audio_payload { | ||
72 | __be32 sample_count; | ||
73 | __be32 signature; | ||
74 | __be32 sample_total; | ||
75 | __be32 reserved; | ||
76 | __be16 samples[2 * MAX_FRAMES_PER_PACKET]; | ||
77 | }; | ||
78 | |||
79 | MODULE_DESCRIPTION("iSight audio driver"); | ||
80 | MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>"); | ||
81 | MODULE_LICENSE("GPL v2"); | ||
82 | |||
83 | static struct fw_iso_packet audio_packet = { | ||
84 | .payload_length = sizeof(struct audio_payload), | ||
85 | .interrupt = 1, | ||
86 | .header_length = 4, | ||
87 | }; | ||
88 | |||
89 | static void isight_update_pointers(struct isight *isight, unsigned int count) | ||
90 | { | ||
91 | struct snd_pcm_runtime *runtime = isight->pcm->runtime; | ||
92 | unsigned int ptr; | ||
93 | |||
94 | smp_wmb(); /* update buffer data before buffer pointer */ | ||
95 | |||
96 | ptr = isight->buffer_pointer; | ||
97 | ptr += count; | ||
98 | if (ptr >= runtime->buffer_size) | ||
99 | ptr -= runtime->buffer_size; | ||
100 | ACCESS_ONCE(isight->buffer_pointer) = ptr; | ||
101 | |||
102 | isight->period_counter += count; | ||
103 | if (isight->period_counter >= runtime->period_size) { | ||
104 | isight->period_counter -= runtime->period_size; | ||
105 | snd_pcm_period_elapsed(isight->pcm); | ||
106 | } | ||
107 | } | ||
108 | |||
109 | static void isight_samples(struct isight *isight, | ||
110 | const __be16 *samples, unsigned int count) | ||
111 | { | ||
112 | struct snd_pcm_runtime *runtime; | ||
113 | unsigned int count1; | ||
114 | |||
115 | if (!ACCESS_ONCE(isight->pcm_running)) | ||
116 | return; | ||
117 | |||
118 | runtime = isight->pcm->runtime; | ||
119 | if (isight->buffer_pointer + count <= runtime->buffer_size) { | ||
120 | memcpy(runtime->dma_area + isight->buffer_pointer * 4, | ||
121 | samples, count * 4); | ||
122 | } else { | ||
123 | count1 = runtime->buffer_size - isight->buffer_pointer; | ||
124 | memcpy(runtime->dma_area + isight->buffer_pointer * 4, | ||
125 | samples, count1 * 4); | ||
126 | samples += count1 * 2; | ||
127 | memcpy(runtime->dma_area, samples, (count - count1) * 4); | ||
128 | } | ||
129 | |||
130 | isight_update_pointers(isight, count); | ||
131 | } | ||
132 | |||
133 | static void isight_pcm_abort(struct isight *isight) | ||
134 | { | ||
135 | unsigned long flags; | ||
136 | |||
137 | if (ACCESS_ONCE(isight->pcm_active)) { | ||
138 | snd_pcm_stream_lock_irqsave(isight->pcm, flags); | ||
139 | if (snd_pcm_running(isight->pcm)) | ||
140 | snd_pcm_stop(isight->pcm, SNDRV_PCM_STATE_XRUN); | ||
141 | snd_pcm_stream_unlock_irqrestore(isight->pcm, flags); | ||
142 | } | ||
143 | } | ||
144 | |||
145 | static void isight_dropped_samples(struct isight *isight, unsigned int total) | ||
146 | { | ||
147 | struct snd_pcm_runtime *runtime; | ||
148 | u32 dropped; | ||
149 | unsigned int count1; | ||
150 | |||
151 | if (!ACCESS_ONCE(isight->pcm_running)) | ||
152 | return; | ||
153 | |||
154 | runtime = isight->pcm->runtime; | ||
155 | dropped = total - isight->total_samples; | ||
156 | if (dropped < runtime->buffer_size) { | ||
157 | if (isight->buffer_pointer + dropped <= runtime->buffer_size) { | ||
158 | memset(runtime->dma_area + isight->buffer_pointer * 4, | ||
159 | 0, dropped * 4); | ||
160 | } else { | ||
161 | count1 = runtime->buffer_size - isight->buffer_pointer; | ||
162 | memset(runtime->dma_area + isight->buffer_pointer * 4, | ||
163 | 0, count1 * 4); | ||
164 | memset(runtime->dma_area, 0, (dropped - count1) * 4); | ||
165 | } | ||
166 | isight_update_pointers(isight, dropped); | ||
167 | } else { | ||
168 | isight_pcm_abort(isight); | ||
169 | } | ||
170 | } | ||
171 | |||
172 | static void isight_packet(struct fw_iso_context *context, u32 cycle, | ||
173 | size_t header_length, void *header, void *data) | ||
174 | { | ||
175 | struct isight *isight = data; | ||
176 | const struct audio_payload *payload; | ||
177 | unsigned int index, length, count, total; | ||
178 | int err; | ||
179 | |||
180 | if (isight->packet_index < 0) | ||
181 | return; | ||
182 | index = isight->packet_index; | ||
183 | payload = isight->buffer.packets[index].buffer; | ||
184 | length = be32_to_cpup(header) >> 16; | ||
185 | |||
186 | if (likely(length >= 16 && | ||
187 | payload->signature == cpu_to_be32(0x73676874/*"sght"*/))) { | ||
188 | count = be32_to_cpu(payload->sample_count); | ||
189 | if (likely(count <= (length - 16) / 4)) { | ||
190 | total = be32_to_cpu(payload->sample_total); | ||
191 | if (unlikely(total != isight->total_samples)) { | ||
192 | if (!isight->first_packet) | ||
193 | isight_dropped_samples(isight, total); | ||
194 | isight->first_packet = false; | ||
195 | isight->total_samples = total; | ||
196 | } | ||
197 | |||
198 | isight_samples(isight, payload->samples, count); | ||
199 | isight->total_samples += count; | ||
200 | } | ||
201 | } | ||
202 | |||
203 | err = fw_iso_context_queue(isight->context, &audio_packet, | ||
204 | &isight->buffer.iso_buffer, | ||
205 | isight->buffer.packets[index].offset); | ||
206 | if (err < 0) { | ||
207 | dev_err(&isight->unit->device, "queueing error: %d\n", err); | ||
208 | isight_pcm_abort(isight); | ||
209 | isight->packet_index = -1; | ||
210 | return; | ||
211 | } | ||
212 | |||
213 | if (++index >= QUEUE_LENGTH) | ||
214 | index = 0; | ||
215 | isight->packet_index = index; | ||
216 | } | ||
217 | |||
218 | static int isight_connect(struct isight *isight) | ||
219 | { | ||
220 | int ch, err, rcode, errors = 0; | ||
221 | __be32 value; | ||
222 | |||
223 | retry_after_bus_reset: | ||
224 | ch = fw_iso_resources_allocate(&isight->resources, | ||
225 | sizeof(struct audio_payload), | ||
226 | isight->device->max_speed); | ||
227 | if (ch < 0) { | ||
228 | err = ch; | ||
229 | goto error; | ||
230 | } | ||
231 | |||
232 | value = cpu_to_be32(ch | (isight->device->max_speed << SPEED_SHIFT)); | ||
233 | for (;;) { | ||
234 | rcode = fw_run_transaction( | ||
235 | isight->device->card, | ||
236 | TCODE_WRITE_QUADLET_REQUEST, | ||
237 | isight->device->node_id, | ||
238 | isight->resources.generation, | ||
239 | isight->device->max_speed, | ||
240 | isight->audio_base + REG_ISO_TX_CONFIG, | ||
241 | &value, 4); | ||
242 | if (rcode == RCODE_COMPLETE) { | ||
243 | return 0; | ||
244 | } else if (rcode == RCODE_GENERATION) { | ||
245 | fw_iso_resources_free(&isight->resources); | ||
246 | goto retry_after_bus_reset; | ||
247 | } else if (rcode_is_permanent_error(rcode) || ++errors >= 3) { | ||
248 | err = -EIO; | ||
249 | goto err_resources; | ||
250 | } | ||
251 | msleep(5); | ||
252 | } | ||
253 | |||
254 | err_resources: | ||
255 | fw_iso_resources_free(&isight->resources); | ||
256 | error: | ||
257 | return err; | ||
258 | } | ||
259 | |||
260 | static int isight_open(struct snd_pcm_substream *substream) | ||
261 | { | ||
262 | static const struct snd_pcm_hardware hardware = { | ||
263 | .info = SNDRV_PCM_INFO_MMAP | | ||
264 | SNDRV_PCM_INFO_MMAP_VALID | | ||
265 | SNDRV_PCM_INFO_BATCH | | ||
266 | SNDRV_PCM_INFO_INTERLEAVED | | ||
267 | SNDRV_PCM_INFO_BLOCK_TRANSFER, | ||
268 | .formats = SNDRV_PCM_FMTBIT_S16_BE, | ||
269 | .rates = SNDRV_PCM_RATE_48000, | ||
270 | .rate_min = 48000, | ||
271 | .rate_max = 48000, | ||
272 | .channels_min = 2, | ||
273 | .channels_max = 2, | ||
274 | .buffer_bytes_max = 4 * 1024 * 1024, | ||
275 | .period_bytes_min = MAX_FRAMES_PER_PACKET * 4, | ||
276 | .period_bytes_max = 1024 * 1024, | ||
277 | .periods_min = 2, | ||
278 | .periods_max = UINT_MAX, | ||
279 | }; | ||
280 | struct isight *isight = substream->private_data; | ||
281 | |||
282 | substream->runtime->hw = hardware; | ||
283 | |||
284 | return iso_packets_buffer_init(&isight->buffer, isight->unit, | ||
285 | QUEUE_LENGTH, | ||
286 | sizeof(struct audio_payload), | ||
287 | DMA_FROM_DEVICE); | ||
288 | } | ||
289 | |||
290 | static int isight_close(struct snd_pcm_substream *substream) | ||
291 | { | ||
292 | struct isight *isight = substream->private_data; | ||
293 | |||
294 | iso_packets_buffer_destroy(&isight->buffer, isight->unit); | ||
295 | |||
296 | return 0; | ||
297 | } | ||
298 | |||
299 | static int isight_hw_params(struct snd_pcm_substream *substream, | ||
300 | struct snd_pcm_hw_params *hw_params) | ||
301 | { | ||
302 | struct isight *isight = substream->private_data; | ||
303 | int err; | ||
304 | |||
305 | err = snd_pcm_lib_alloc_vmalloc_buffer(substream, | ||
306 | params_buffer_bytes(hw_params)); | ||
307 | if (err < 0) | ||
308 | return err; | ||
309 | |||
310 | ACCESS_ONCE(isight->pcm_active) = true; | ||
311 | |||
312 | return 0; | ||
313 | } | ||
314 | |||
315 | static int reg_read(struct isight *isight, int offset, __be32 *value) | ||
316 | { | ||
317 | return snd_fw_transaction(isight->unit, TCODE_READ_QUADLET_REQUEST, | ||
318 | isight->audio_base + offset, value, 4); | ||
319 | } | ||
320 | |||
321 | static int reg_write(struct isight *isight, int offset, __be32 value) | ||
322 | { | ||
323 | return snd_fw_transaction(isight->unit, TCODE_WRITE_QUADLET_REQUEST, | ||
324 | isight->audio_base + offset, &value, 4); | ||
325 | } | ||
326 | |||
327 | static void isight_stop_streaming(struct isight *isight) | ||
328 | { | ||
329 | if (!isight->context) | ||
330 | return; | ||
331 | |||
332 | fw_iso_context_stop(isight->context); | ||
333 | fw_iso_context_destroy(isight->context); | ||
334 | isight->context = NULL; | ||
335 | fw_iso_resources_free(&isight->resources); | ||
336 | reg_write(isight, REG_AUDIO_ENABLE, 0); | ||
337 | } | ||
338 | |||
339 | static int isight_hw_free(struct snd_pcm_substream *substream) | ||
340 | { | ||
341 | struct isight *isight = substream->private_data; | ||
342 | |||
343 | ACCESS_ONCE(isight->pcm_active) = false; | ||
344 | |||
345 | mutex_lock(&isight->mutex); | ||
346 | isight_stop_streaming(isight); | ||
347 | mutex_unlock(&isight->mutex); | ||
348 | |||
349 | return snd_pcm_lib_free_vmalloc_buffer(substream); | ||
350 | } | ||
351 | |||
352 | static int isight_start_streaming(struct isight *isight) | ||
353 | { | ||
354 | unsigned int i; | ||
355 | int err; | ||
356 | |||
357 | if (isight->context) { | ||
358 | if (isight->packet_index < 0) | ||
359 | isight_stop_streaming(isight); | ||
360 | else | ||
361 | return 0; | ||
362 | } | ||
363 | |||
364 | err = reg_write(isight, REG_SAMPLE_RATE, cpu_to_be32(RATE_48000)); | ||
365 | if (err < 0) | ||
366 | goto error; | ||
367 | |||
368 | err = isight_connect(isight); | ||
369 | if (err < 0) | ||
370 | goto error; | ||
371 | |||
372 | err = reg_write(isight, REG_AUDIO_ENABLE, cpu_to_be32(AUDIO_ENABLE)); | ||
373 | if (err < 0) | ||
374 | goto err_resources; | ||
375 | |||
376 | isight->context = fw_iso_context_create(isight->device->card, | ||
377 | FW_ISO_CONTEXT_RECEIVE, | ||
378 | isight->resources.channel, | ||
379 | isight->device->max_speed, | ||
380 | 4, isight_packet, isight); | ||
381 | if (IS_ERR(isight->context)) { | ||
382 | err = PTR_ERR(isight->context); | ||
383 | isight->context = NULL; | ||
384 | goto err_resources; | ||
385 | } | ||
386 | |||
387 | for (i = 0; i < QUEUE_LENGTH; ++i) { | ||
388 | err = fw_iso_context_queue(isight->context, &audio_packet, | ||
389 | &isight->buffer.iso_buffer, | ||
390 | isight->buffer.packets[i].offset); | ||
391 | if (err < 0) | ||
392 | goto err_context; | ||
393 | } | ||
394 | |||
395 | isight->first_packet = true; | ||
396 | isight->packet_index = 0; | ||
397 | |||
398 | err = fw_iso_context_start(isight->context, -1, 0, | ||
399 | FW_ISO_CONTEXT_MATCH_ALL_TAGS/*?*/); | ||
400 | if (err < 0) | ||
401 | goto err_context; | ||
402 | |||
403 | return 0; | ||
404 | |||
405 | err_context: | ||
406 | fw_iso_context_destroy(isight->context); | ||
407 | isight->context = NULL; | ||
408 | err_resources: | ||
409 | fw_iso_resources_free(&isight->resources); | ||
410 | reg_write(isight, REG_AUDIO_ENABLE, 0); | ||
411 | error: | ||
412 | return err; | ||
413 | } | ||
414 | |||
415 | static int isight_prepare(struct snd_pcm_substream *substream) | ||
416 | { | ||
417 | struct isight *isight = substream->private_data; | ||
418 | int err; | ||
419 | |||
420 | isight->buffer_pointer = 0; | ||
421 | isight->period_counter = 0; | ||
422 | |||
423 | mutex_lock(&isight->mutex); | ||
424 | err = isight_start_streaming(isight); | ||
425 | mutex_unlock(&isight->mutex); | ||
426 | |||
427 | return err; | ||
428 | } | ||
429 | |||
430 | static int isight_trigger(struct snd_pcm_substream *substream, int cmd) | ||
431 | { | ||
432 | struct isight *isight = substream->private_data; | ||
433 | |||
434 | switch (cmd) { | ||
435 | case SNDRV_PCM_TRIGGER_START: | ||
436 | ACCESS_ONCE(isight->pcm_running) = true; | ||
437 | break; | ||
438 | case SNDRV_PCM_TRIGGER_STOP: | ||
439 | ACCESS_ONCE(isight->pcm_running) = false; | ||
440 | break; | ||
441 | default: | ||
442 | return -EINVAL; | ||
443 | } | ||
444 | return 0; | ||
445 | } | ||
446 | |||
447 | static snd_pcm_uframes_t isight_pointer(struct snd_pcm_substream *substream) | ||
448 | { | ||
449 | struct isight *isight = substream->private_data; | ||
450 | |||
451 | return ACCESS_ONCE(isight->buffer_pointer); | ||
452 | } | ||
453 | |||
454 | static int isight_create_pcm(struct isight *isight) | ||
455 | { | ||
456 | static struct snd_pcm_ops ops = { | ||
457 | .open = isight_open, | ||
458 | .close = isight_close, | ||
459 | .ioctl = snd_pcm_lib_ioctl, | ||
460 | .hw_params = isight_hw_params, | ||
461 | .hw_free = isight_hw_free, | ||
462 | .prepare = isight_prepare, | ||
463 | .trigger = isight_trigger, | ||
464 | .pointer = isight_pointer, | ||
465 | .page = snd_pcm_lib_get_vmalloc_page, | ||
466 | .mmap = snd_pcm_lib_mmap_vmalloc, | ||
467 | }; | ||
468 | struct snd_pcm *pcm; | ||
469 | int err; | ||
470 | |||
471 | err = snd_pcm_new(isight->card, "iSight", 0, 0, 1, &pcm); | ||
472 | if (err < 0) | ||
473 | return err; | ||
474 | pcm->private_data = isight; | ||
475 | strcpy(pcm->name, "iSight"); | ||
476 | isight->pcm = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream; | ||
477 | isight->pcm->ops = &ops; | ||
478 | |||
479 | return 0; | ||
480 | } | ||
481 | |||
482 | static int isight_gain_info(struct snd_kcontrol *ctl, | ||
483 | struct snd_ctl_elem_info *info) | ||
484 | { | ||
485 | struct isight *isight = ctl->private_data; | ||
486 | |||
487 | info->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | ||
488 | info->count = 1; | ||
489 | info->value.integer.min = isight->gain_min; | ||
490 | info->value.integer.max = isight->gain_max; | ||
491 | |||
492 | return 0; | ||
493 | } | ||
494 | |||
495 | static int isight_gain_get(struct snd_kcontrol *ctl, | ||
496 | struct snd_ctl_elem_value *value) | ||
497 | { | ||
498 | struct isight *isight = ctl->private_data; | ||
499 | __be32 gain; | ||
500 | int err; | ||
501 | |||
502 | err = reg_read(isight, REG_GAIN, &gain); | ||
503 | if (err < 0) | ||
504 | return err; | ||
505 | |||
506 | value->value.integer.value[0] = (s32)be32_to_cpu(gain); | ||
507 | |||
508 | return 0; | ||
509 | } | ||
510 | |||
511 | static int isight_gain_put(struct snd_kcontrol *ctl, | ||
512 | struct snd_ctl_elem_value *value) | ||
513 | { | ||
514 | struct isight *isight = ctl->private_data; | ||
515 | |||
516 | if (value->value.integer.value[0] < isight->gain_min || | ||
517 | value->value.integer.value[0] > isight->gain_max) | ||
518 | return -EINVAL; | ||
519 | |||
520 | return reg_write(isight, REG_GAIN, | ||
521 | cpu_to_be32(value->value.integer.value[0])); | ||
522 | } | ||
523 | |||
524 | static int isight_mute_get(struct snd_kcontrol *ctl, | ||
525 | struct snd_ctl_elem_value *value) | ||
526 | { | ||
527 | struct isight *isight = ctl->private_data; | ||
528 | __be32 mute; | ||
529 | int err; | ||
530 | |||
531 | err = reg_read(isight, REG_MUTE, &mute); | ||
532 | if (err < 0) | ||
533 | return err; | ||
534 | |||
535 | value->value.integer.value[0] = !mute; | ||
536 | |||
537 | return 0; | ||
538 | } | ||
539 | |||
540 | static int isight_mute_put(struct snd_kcontrol *ctl, | ||
541 | struct snd_ctl_elem_value *value) | ||
542 | { | ||
543 | struct isight *isight = ctl->private_data; | ||
544 | |||
545 | return reg_write(isight, REG_MUTE, | ||
546 | (__force __be32)!value->value.integer.value[0]); | ||
547 | } | ||
548 | |||
549 | static int isight_create_mixer(struct isight *isight) | ||
550 | { | ||
551 | static const struct snd_kcontrol_new gain_control = { | ||
552 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
553 | .name = "Mic Capture Volume", | ||
554 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | | ||
555 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, | ||
556 | .info = isight_gain_info, | ||
557 | .get = isight_gain_get, | ||
558 | .put = isight_gain_put, | ||
559 | }; | ||
560 | static const struct snd_kcontrol_new mute_control = { | ||
561 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
562 | .name = "Mic Capture Switch", | ||
563 | .info = snd_ctl_boolean_mono_info, | ||
564 | .get = isight_mute_get, | ||
565 | .put = isight_mute_put, | ||
566 | }; | ||
567 | __be32 value; | ||
568 | struct snd_kcontrol *ctl; | ||
569 | int err; | ||
570 | |||
571 | err = reg_read(isight, REG_GAIN_RAW_START, &value); | ||
572 | if (err < 0) | ||
573 | return err; | ||
574 | isight->gain_min = be32_to_cpu(value); | ||
575 | |||
576 | err = reg_read(isight, REG_GAIN_RAW_END, &value); | ||
577 | if (err < 0) | ||
578 | return err; | ||
579 | isight->gain_max = be32_to_cpu(value); | ||
580 | |||
581 | isight->gain_tlv[0] = SNDRV_CTL_TLVT_DB_MINMAX; | ||
582 | isight->gain_tlv[1] = 2 * sizeof(unsigned int); | ||
583 | |||
584 | err = reg_read(isight, REG_GAIN_DB_START, &value); | ||
585 | if (err < 0) | ||
586 | return err; | ||
587 | isight->gain_tlv[2] = (s32)be32_to_cpu(value) * 100; | ||
588 | |||
589 | err = reg_read(isight, REG_GAIN_DB_END, &value); | ||
590 | if (err < 0) | ||
591 | return err; | ||
592 | isight->gain_tlv[3] = (s32)be32_to_cpu(value) * 100; | ||
593 | |||
594 | ctl = snd_ctl_new1(&gain_control, isight); | ||
595 | if (ctl) | ||
596 | ctl->tlv.p = isight->gain_tlv; | ||
597 | err = snd_ctl_add(isight->card, ctl); | ||
598 | if (err < 0) | ||
599 | return err; | ||
600 | |||
601 | err = snd_ctl_add(isight->card, snd_ctl_new1(&mute_control, isight)); | ||
602 | if (err < 0) | ||
603 | return err; | ||
604 | |||
605 | return 0; | ||
606 | } | ||
607 | |||
608 | static void isight_card_free(struct snd_card *card) | ||
609 | { | ||
610 | struct isight *isight = card->private_data; | ||
611 | |||
612 | fw_iso_resources_destroy(&isight->resources); | ||
613 | fw_unit_put(isight->unit); | ||
614 | fw_device_put(isight->device); | ||
615 | mutex_destroy(&isight->mutex); | ||
616 | } | ||
617 | |||
618 | static u64 get_unit_base(struct fw_unit *unit) | ||
619 | { | ||
620 | struct fw_csr_iterator i; | ||
621 | int key, value; | ||
622 | |||
623 | fw_csr_iterator_init(&i, unit->directory); | ||
624 | while (fw_csr_iterator_next(&i, &key, &value)) | ||
625 | if (key == CSR_OFFSET) | ||
626 | return CSR_REGISTER_BASE + value * 4; | ||
627 | return 0; | ||
628 | } | ||
629 | |||
630 | static int isight_probe(struct device *unit_dev) | ||
631 | { | ||
632 | struct fw_unit *unit = fw_unit(unit_dev); | ||
633 | struct fw_device *fw_dev = fw_parent_device(unit); | ||
634 | struct snd_card *card; | ||
635 | struct isight *isight; | ||
636 | int err; | ||
637 | |||
638 | err = snd_card_create(-1, NULL, THIS_MODULE, sizeof(*isight), &card); | ||
639 | if (err < 0) | ||
640 | return err; | ||
641 | snd_card_set_dev(card, unit_dev); | ||
642 | |||
643 | isight = card->private_data; | ||
644 | isight->card = card; | ||
645 | mutex_init(&isight->mutex); | ||
646 | isight->unit = fw_unit_get(unit); | ||
647 | isight->device = fw_device_get(fw_dev); | ||
648 | isight->audio_base = get_unit_base(unit); | ||
649 | if (!isight->audio_base) { | ||
650 | dev_err(&unit->device, "audio unit base not found\n"); | ||
651 | err = -ENXIO; | ||
652 | goto err_unit; | ||
653 | } | ||
654 | fw_iso_resources_init(&isight->resources, unit); | ||
655 | |||
656 | card->private_free = isight_card_free; | ||
657 | |||
658 | strcpy(card->driver, "iSight"); | ||
659 | strcpy(card->shortname, "Apple iSight"); | ||
660 | snprintf(card->longname, sizeof(card->longname), | ||
661 | "Apple iSight (GUID %08x%08x) at %s, S%d", | ||
662 | fw_dev->config_rom[3], fw_dev->config_rom[4], | ||
663 | dev_name(&unit->device), 100 << fw_dev->max_speed); | ||
664 | strcpy(card->mixername, "iSight"); | ||
665 | |||
666 | err = isight_create_pcm(isight); | ||
667 | if (err < 0) | ||
668 | goto error; | ||
669 | |||
670 | err = isight_create_mixer(isight); | ||
671 | if (err < 0) | ||
672 | goto error; | ||
673 | |||
674 | err = snd_card_register(card); | ||
675 | if (err < 0) | ||
676 | goto error; | ||
677 | |||
678 | dev_set_drvdata(unit_dev, isight); | ||
679 | |||
680 | return 0; | ||
681 | |||
682 | err_unit: | ||
683 | fw_unit_put(isight->unit); | ||
684 | fw_device_put(isight->device); | ||
685 | mutex_destroy(&isight->mutex); | ||
686 | error: | ||
687 | snd_card_free(card); | ||
688 | return err; | ||
689 | } | ||
690 | |||
691 | static int isight_remove(struct device *dev) | ||
692 | { | ||
693 | struct isight *isight = dev_get_drvdata(dev); | ||
694 | |||
695 | isight_pcm_abort(isight); | ||
696 | |||
697 | snd_card_disconnect(isight->card); | ||
698 | |||
699 | mutex_lock(&isight->mutex); | ||
700 | isight_stop_streaming(isight); | ||
701 | mutex_unlock(&isight->mutex); | ||
702 | |||
703 | snd_card_free_when_closed(isight->card); | ||
704 | |||
705 | return 0; | ||
706 | } | ||
707 | |||
708 | static void isight_bus_reset(struct fw_unit *unit) | ||
709 | { | ||
710 | struct isight *isight = dev_get_drvdata(&unit->device); | ||
711 | |||
712 | if (fw_iso_resources_update(&isight->resources) < 0) { | ||
713 | isight_pcm_abort(isight); | ||
714 | |||
715 | mutex_lock(&isight->mutex); | ||
716 | isight_stop_streaming(isight); | ||
717 | mutex_unlock(&isight->mutex); | ||
718 | } | ||
719 | } | ||
720 | |||
721 | static const struct ieee1394_device_id isight_id_table[] = { | ||
722 | { | ||
723 | .match_flags = IEEE1394_MATCH_SPECIFIER_ID | | ||
724 | IEEE1394_MATCH_VERSION, | ||
725 | .specifier_id = OUI_APPLE, | ||
726 | .version = SW_ISIGHT_AUDIO, | ||
727 | }, | ||
728 | { } | ||
729 | }; | ||
730 | MODULE_DEVICE_TABLE(ieee1394, isight_id_table); | ||
731 | |||
732 | static struct fw_driver isight_driver = { | ||
733 | .driver = { | ||
734 | .owner = THIS_MODULE, | ||
735 | .name = KBUILD_MODNAME, | ||
736 | .bus = &fw_bus_type, | ||
737 | .probe = isight_probe, | ||
738 | .remove = isight_remove, | ||
739 | }, | ||
740 | .update = isight_bus_reset, | ||
741 | .id_table = isight_id_table, | ||
742 | }; | ||
743 | |||
744 | static int __init alsa_isight_init(void) | ||
745 | { | ||
746 | return driver_register(&isight_driver.driver); | ||
747 | } | ||
748 | |||
749 | static void __exit alsa_isight_exit(void) | ||
750 | { | ||
751 | driver_unregister(&isight_driver.driver); | ||
752 | } | ||
753 | |||
754 | module_init(alsa_isight_init); | ||
755 | module_exit(alsa_isight_exit); | ||
diff --git a/sound/firewire/iso-resources.c b/sound/firewire/iso-resources.c index bb9c0c1fb529..ffe20b877e9f 100644 --- a/sound/firewire/iso-resources.c +++ b/sound/firewire/iso-resources.c | |||
@@ -31,6 +31,7 @@ int fw_iso_resources_init(struct fw_iso_resources *r, struct fw_unit *unit) | |||
31 | 31 | ||
32 | return 0; | 32 | return 0; |
33 | } | 33 | } |
34 | EXPORT_SYMBOL(fw_iso_resources_init); | ||
34 | 35 | ||
35 | /** | 36 | /** |
36 | * fw_iso_resources_destroy - destroy a resource manager | 37 | * fw_iso_resources_destroy - destroy a resource manager |
@@ -42,6 +43,7 @@ void fw_iso_resources_destroy(struct fw_iso_resources *r) | |||
42 | mutex_destroy(&r->mutex); | 43 | mutex_destroy(&r->mutex); |
43 | fw_unit_put(r->unit); | 44 | fw_unit_put(r->unit); |
44 | } | 45 | } |
46 | EXPORT_SYMBOL(fw_iso_resources_destroy); | ||
45 | 47 | ||
46 | static unsigned int packet_bandwidth(unsigned int max_payload_bytes, int speed) | 48 | static unsigned int packet_bandwidth(unsigned int max_payload_bytes, int speed) |
47 | { | 49 | { |
@@ -146,6 +148,7 @@ retry_after_bus_reset: | |||
146 | 148 | ||
147 | return channel; | 149 | return channel; |
148 | } | 150 | } |
151 | EXPORT_SYMBOL(fw_iso_resources_allocate); | ||
149 | 152 | ||
150 | /** | 153 | /** |
151 | * fw_iso_resources_update - update resource allocations after a bus reset | 154 | * fw_iso_resources_update - update resource allocations after a bus reset |
@@ -197,6 +200,7 @@ int fw_iso_resources_update(struct fw_iso_resources *r) | |||
197 | 200 | ||
198 | return channel; | 201 | return channel; |
199 | } | 202 | } |
203 | EXPORT_SYMBOL(fw_iso_resources_update); | ||
200 | 204 | ||
201 | /** | 205 | /** |
202 | * fw_iso_resources_free - frees allocated resources | 206 | * fw_iso_resources_free - frees allocated resources |
@@ -224,3 +228,4 @@ void fw_iso_resources_free(struct fw_iso_resources *r) | |||
224 | 228 | ||
225 | mutex_unlock(&r->mutex); | 229 | mutex_unlock(&r->mutex); |
226 | } | 230 | } |
231 | EXPORT_SYMBOL(fw_iso_resources_free); | ||
diff --git a/sound/firewire/packets-buffer.c b/sound/firewire/packets-buffer.c index 1e20e60ba6a6..3c61ca2e6152 100644 --- a/sound/firewire/packets-buffer.c +++ b/sound/firewire/packets-buffer.c | |||
@@ -60,6 +60,7 @@ err_packets: | |||
60 | error: | 60 | error: |
61 | return err; | 61 | return err; |
62 | } | 62 | } |
63 | EXPORT_SYMBOL(iso_packets_buffer_init); | ||
63 | 64 | ||
64 | /** | 65 | /** |
65 | * iso_packets_buffer_destroy - frees packet buffer resources | 66 | * iso_packets_buffer_destroy - frees packet buffer resources |
@@ -72,3 +73,4 @@ void iso_packets_buffer_destroy(struct iso_packets_buffer *b, | |||
72 | fw_iso_buffer_destroy(&b->iso_buffer, fw_parent_device(unit)->card); | 73 | fw_iso_buffer_destroy(&b->iso_buffer, fw_parent_device(unit)->card); |
73 | kfree(b->packets); | 74 | kfree(b->packets); |
74 | } | 75 | } |
76 | EXPORT_SYMBOL(iso_packets_buffer_destroy); | ||