Blame view

sound/firewire/isight.c 17.6 KB
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
1
2
3
4
5
6
  /*
   * Apple iSight audio driver
   *
   * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
   * Licensed under the terms of the GNU General Public License, version 2.
   */
ac34dad26   Stefan Richter   ALSA: isight: wra...
7
  #include <asm/byteorder.h>
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  #include <linux/delay.h>
  #include <linux/device.h>
  #include <linux/firewire.h>
  #include <linux/firewire-constants.h>
  #include <linux/module.h>
  #include <linux/mod_devicetable.h>
  #include <linux/mutex.h>
  #include <linux/string.h>
  #include <sound/control.h>
  #include <sound/core.h>
  #include <sound/initval.h>
  #include <sound/pcm.h>
  #include <sound/tlv.h>
  #include "lib.h"
  #include "iso-resources.h"
  #include "packets-buffer.h"
  
  #define OUI_APPLE		0x000a27
  #define MODEL_APPLE_ISIGHT	0x000008
  #define SW_ISIGHT_AUDIO		0x000010
  
  #define REG_AUDIO_ENABLE	0x000
  #define  AUDIO_ENABLE		0x80000000
  #define REG_DEF_AUDIO_GAIN	0x204
  #define REG_GAIN_RAW_START	0x210
  #define REG_GAIN_RAW_END	0x214
  #define REG_GAIN_DB_START	0x218
  #define REG_GAIN_DB_END		0x21c
  #define REG_SAMPLE_RATE_INQUIRY	0x280
  #define REG_ISO_TX_CONFIG	0x300
  #define  SPEED_SHIFT		16
  #define REG_SAMPLE_RATE		0x400
  #define  RATE_48000		0x80000000
  #define REG_GAIN		0x500
  #define REG_MUTE		0x504
  
  #define MAX_FRAMES_PER_PACKET	475
  
  #define QUEUE_LENGTH		20
  
  struct isight {
  	struct snd_card *card;
  	struct fw_unit *unit;
  	struct fw_device *device;
  	u64 audio_base;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
53
54
55
56
57
  	struct snd_pcm_substream *pcm;
  	struct mutex mutex;
  	struct iso_packets_buffer buffer;
  	struct fw_iso_resources resources;
  	struct fw_iso_context *context;
03c29680d   Clemens Ladisch   ALSA: isight: fix...
58
  	bool pcm_active;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  	bool pcm_running;
  	bool first_packet;
  	int packet_index;
  	u32 total_samples;
  	unsigned int buffer_pointer;
  	unsigned int period_counter;
  	s32 gain_min, gain_max;
  	unsigned int gain_tlv[4];
  };
  
  struct audio_payload {
  	__be32 sample_count;
  	__be32 signature;
  	__be32 sample_total;
  	__be32 reserved;
  	__be16 samples[2 * MAX_FRAMES_PER_PACKET];
  };
  
  MODULE_DESCRIPTION("iSight audio driver");
  MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
  MODULE_LICENSE("GPL v2");
  
  static struct fw_iso_packet audio_packet = {
  	.payload_length = sizeof(struct audio_payload),
  	.interrupt = 1,
f2934cd49   Clemens Ladisch   ALSA: isight: fix...
84
  	.header_length = 4,
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
  };
  
  static void isight_update_pointers(struct isight *isight, unsigned int count)
  {
  	struct snd_pcm_runtime *runtime = isight->pcm->runtime;
  	unsigned int ptr;
  
  	smp_wmb(); /* update buffer data before buffer pointer */
  
  	ptr = isight->buffer_pointer;
  	ptr += count;
  	if (ptr >= runtime->buffer_size)
  		ptr -= runtime->buffer_size;
  	ACCESS_ONCE(isight->buffer_pointer) = ptr;
  
  	isight->period_counter += count;
  	if (isight->period_counter >= runtime->period_size) {
  		isight->period_counter -= runtime->period_size;
  		snd_pcm_period_elapsed(isight->pcm);
  	}
  }
  
  static void isight_samples(struct isight *isight,
  			   const __be16 *samples, unsigned int count)
  {
  	struct snd_pcm_runtime *runtime;
  	unsigned int count1;
  
  	if (!ACCESS_ONCE(isight->pcm_running))
  		return;
  
  	runtime = isight->pcm->runtime;
  	if (isight->buffer_pointer + count <= runtime->buffer_size) {
  		memcpy(runtime->dma_area + isight->buffer_pointer * 4,
  		       samples, count * 4);
  	} else {
  		count1 = runtime->buffer_size - isight->buffer_pointer;
  		memcpy(runtime->dma_area + isight->buffer_pointer * 4,
  		       samples, count1 * 4);
  		samples += count1 * 2;
  		memcpy(runtime->dma_area, samples, (count - count1) * 4);
  	}
  
  	isight_update_pointers(isight, count);
  }
  
  static void isight_pcm_abort(struct isight *isight)
  {
1fb8510cd   Takashi Iwai   ALSA: pcm: Add sn...
133
134
  	if (ACCESS_ONCE(isight->pcm_active))
  		snd_pcm_stop_xrun(isight->pcm);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
  }
  
  static void isight_dropped_samples(struct isight *isight, unsigned int total)
  {
  	struct snd_pcm_runtime *runtime;
  	u32 dropped;
  	unsigned int count1;
  
  	if (!ACCESS_ONCE(isight->pcm_running))
  		return;
  
  	runtime = isight->pcm->runtime;
  	dropped = total - isight->total_samples;
  	if (dropped < runtime->buffer_size) {
  		if (isight->buffer_pointer + dropped <= runtime->buffer_size) {
  			memset(runtime->dma_area + isight->buffer_pointer * 4,
  			       0, dropped * 4);
  		} else {
  			count1 = runtime->buffer_size - isight->buffer_pointer;
  			memset(runtime->dma_area + isight->buffer_pointer * 4,
  			       0, count1 * 4);
  			memset(runtime->dma_area, 0, (dropped - count1) * 4);
  		}
  		isight_update_pointers(isight, dropped);
  	} else {
  		isight_pcm_abort(isight);
  	}
  }
  
  static void isight_packet(struct fw_iso_context *context, u32 cycle,
  			  size_t header_length, void *header, void *data)
  {
  	struct isight *isight = data;
  	const struct audio_payload *payload;
  	unsigned int index, length, count, total;
  	int err;
  
  	if (isight->packet_index < 0)
  		return;
  	index = isight->packet_index;
  	payload = isight->buffer.packets[index].buffer;
  	length = be32_to_cpup(header) >> 16;
  
  	if (likely(length >= 16 &&
  		   payload->signature == cpu_to_be32(0x73676874/*"sght"*/))) {
  		count = be32_to_cpu(payload->sample_count);
  		if (likely(count <= (length - 16) / 4)) {
  			total = be32_to_cpu(payload->sample_total);
  			if (unlikely(total != isight->total_samples)) {
  				if (!isight->first_packet)
  					isight_dropped_samples(isight, total);
  				isight->first_packet = false;
  				isight->total_samples = total;
  			}
  
  			isight_samples(isight, payload->samples, count);
  			isight->total_samples += count;
  		}
  	}
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
194
195
196
197
198
199
200
201
202
203
  	err = fw_iso_context_queue(isight->context, &audio_packet,
  				   &isight->buffer.iso_buffer,
  				   isight->buffer.packets[index].offset);
  	if (err < 0) {
  		dev_err(&isight->unit->device, "queueing error: %d
  ", err);
  		isight_pcm_abort(isight);
  		isight->packet_index = -1;
  		return;
  	}
cf6f1ff17   Clemens Ladisch   ALSA: isight: adj...
204
  	fw_iso_context_queue_flush(isight->context);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
205

898732d1f   Clemens Ladisch   ALSA: isight: fix...
206
207
  	if (++index >= QUEUE_LENGTH)
  		index = 0;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
208
209
210
211
212
  	isight->packet_index = index;
  }
  
  static int isight_connect(struct isight *isight)
  {
1b70485f1   Clemens Ladisch   ALSA: firewire: e...
213
  	int ch, err;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
214
215
216
217
218
219
220
221
222
223
224
225
  	__be32 value;
  
  retry_after_bus_reset:
  	ch = fw_iso_resources_allocate(&isight->resources,
  				       sizeof(struct audio_payload),
  				       isight->device->max_speed);
  	if (ch < 0) {
  		err = ch;
  		goto error;
  	}
  
  	value = cpu_to_be32(ch | (isight->device->max_speed << SPEED_SHIFT));
1b70485f1   Clemens Ladisch   ALSA: firewire: e...
226
227
228
229
230
231
232
233
234
  	err = snd_fw_transaction(isight->unit, TCODE_WRITE_QUADLET_REQUEST,
  				 isight->audio_base + REG_ISO_TX_CONFIG,
  				 &value, 4, FW_FIXED_GENERATION |
  				 isight->resources.generation);
  	if (err == -EAGAIN) {
  		fw_iso_resources_free(&isight->resources);
  		goto retry_after_bus_reset;
  	} else if (err < 0) {
  		goto err_resources;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
235
  	}
1b70485f1   Clemens Ladisch   ALSA: firewire: e...
236
  	return 0;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
  err_resources:
  	fw_iso_resources_free(&isight->resources);
  error:
  	return err;
  }
  
  static int isight_open(struct snd_pcm_substream *substream)
  {
  	static const struct snd_pcm_hardware hardware = {
  		.info = SNDRV_PCM_INFO_MMAP |
  			SNDRV_PCM_INFO_MMAP_VALID |
  			SNDRV_PCM_INFO_BATCH |
  			SNDRV_PCM_INFO_INTERLEAVED |
  			SNDRV_PCM_INFO_BLOCK_TRANSFER,
  		.formats = SNDRV_PCM_FMTBIT_S16_BE,
  		.rates = SNDRV_PCM_RATE_48000,
  		.rate_min = 48000,
  		.rate_max = 48000,
  		.channels_min = 2,
  		.channels_max = 2,
  		.buffer_bytes_max = 4 * 1024 * 1024,
  		.period_bytes_min = MAX_FRAMES_PER_PACKET * 4,
  		.period_bytes_max = 1024 * 1024,
  		.periods_min = 2,
  		.periods_max = UINT_MAX,
  	};
  	struct isight *isight = substream->private_data;
  
  	substream->runtime->hw = hardware;
  
  	return iso_packets_buffer_init(&isight->buffer, isight->unit,
  				       QUEUE_LENGTH,
  				       sizeof(struct audio_payload),
  				       DMA_FROM_DEVICE);
  }
  
  static int isight_close(struct snd_pcm_substream *substream)
  {
  	struct isight *isight = substream->private_data;
  
  	iso_packets_buffer_destroy(&isight->buffer, isight->unit);
  
  	return 0;
  }
  
  static int isight_hw_params(struct snd_pcm_substream *substream,
  			    struct snd_pcm_hw_params *hw_params)
  {
03c29680d   Clemens Ladisch   ALSA: isight: fix...
285
286
287
288
289
290
291
292
293
294
295
  	struct isight *isight = substream->private_data;
  	int err;
  
  	err = snd_pcm_lib_alloc_vmalloc_buffer(substream,
  					       params_buffer_bytes(hw_params));
  	if (err < 0)
  		return err;
  
  	ACCESS_ONCE(isight->pcm_active) = true;
  
  	return 0;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
296
  }
ac34dad26   Stefan Richter   ALSA: isight: wra...
297
  static int reg_read(struct isight *isight, int offset, __be32 *value)
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
298
  {
ac34dad26   Stefan Richter   ALSA: isight: wra...
299
  	return snd_fw_transaction(isight->unit, TCODE_READ_QUADLET_REQUEST,
1b70485f1   Clemens Ladisch   ALSA: firewire: e...
300
  				  isight->audio_base + offset, value, 4, 0);
ac34dad26   Stefan Richter   ALSA: isight: wra...
301
302
303
304
305
  }
  
  static int reg_write(struct isight *isight, int offset, __be32 value)
  {
  	return snd_fw_transaction(isight->unit, TCODE_WRITE_QUADLET_REQUEST,
1b70485f1   Clemens Ladisch   ALSA: firewire: e...
306
  				  isight->audio_base + offset, &value, 4, 0);
ac34dad26   Stefan Richter   ALSA: isight: wra...
307
  }
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
308

ac34dad26   Stefan Richter   ALSA: isight: wra...
309
310
  static void isight_stop_streaming(struct isight *isight)
  {
1b70485f1   Clemens Ladisch   ALSA: firewire: e...
311
  	__be32 value;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
312
313
314
315
316
317
  	if (!isight->context)
  		return;
  
  	fw_iso_context_stop(isight->context);
  	fw_iso_context_destroy(isight->context);
  	isight->context = NULL;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
318
  	fw_iso_resources_free(&isight->resources);
1b70485f1   Clemens Ladisch   ALSA: firewire: e...
319
320
321
322
  	value = 0;
  	snd_fw_transaction(isight->unit, TCODE_WRITE_QUADLET_REQUEST,
  			   isight->audio_base + REG_AUDIO_ENABLE,
  			   &value, 4, FW_QUIET);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
323
324
325
326
327
  }
  
  static int isight_hw_free(struct snd_pcm_substream *substream)
  {
  	struct isight *isight = substream->private_data;
03c29680d   Clemens Ladisch   ALSA: isight: fix...
328
  	ACCESS_ONCE(isight->pcm_active) = false;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
329
330
331
332
333
334
335
336
337
  	mutex_lock(&isight->mutex);
  	isight_stop_streaming(isight);
  	mutex_unlock(&isight->mutex);
  
  	return snd_pcm_lib_free_vmalloc_buffer(substream);
  }
  
  static int isight_start_streaming(struct isight *isight)
  {
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
338
339
340
341
342
343
344
345
346
  	unsigned int i;
  	int err;
  
  	if (isight->context) {
  		if (isight->packet_index < 0)
  			isight_stop_streaming(isight);
  		else
  			return 0;
  	}
ac34dad26   Stefan Richter   ALSA: isight: wra...
347
  	err = reg_write(isight, REG_SAMPLE_RATE, cpu_to_be32(RATE_48000));
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
348
  	if (err < 0)
ac34dad26   Stefan Richter   ALSA: isight: wra...
349
  		goto error;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
350
351
352
353
  
  	err = isight_connect(isight);
  	if (err < 0)
  		goto error;
ac34dad26   Stefan Richter   ALSA: isight: wra...
354
  	err = reg_write(isight, REG_AUDIO_ENABLE, cpu_to_be32(AUDIO_ENABLE));
8839eedaf   Stefan Richter   ALSA: isight: add...
355
356
  	if (err < 0)
  		goto err_resources;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
  	isight->context = fw_iso_context_create(isight->device->card,
  						FW_ISO_CONTEXT_RECEIVE,
  						isight->resources.channel,
  						isight->device->max_speed,
  						4, isight_packet, isight);
  	if (IS_ERR(isight->context)) {
  		err = PTR_ERR(isight->context);
  		isight->context = NULL;
  		goto err_resources;
  	}
  
  	for (i = 0; i < QUEUE_LENGTH; ++i) {
  		err = fw_iso_context_queue(isight->context, &audio_packet,
  					   &isight->buffer.iso_buffer,
  					   isight->buffer.packets[i].offset);
  		if (err < 0)
  			goto err_context;
  	}
  
  	isight->first_packet = true;
  	isight->packet_index = 0;
  
  	err = fw_iso_context_start(isight->context, -1, 0,
  				   FW_ISO_CONTEXT_MATCH_ALL_TAGS/*?*/);
  	if (err < 0)
  		goto err_context;
  
  	return 0;
  
  err_context:
  	fw_iso_context_destroy(isight->context);
  	isight->context = NULL;
  err_resources:
  	fw_iso_resources_free(&isight->resources);
ac34dad26   Stefan Richter   ALSA: isight: wra...
391
  	reg_write(isight, REG_AUDIO_ENABLE, 0);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
  error:
  	return err;
  }
  
  static int isight_prepare(struct snd_pcm_substream *substream)
  {
  	struct isight *isight = substream->private_data;
  	int err;
  
  	isight->buffer_pointer = 0;
  	isight->period_counter = 0;
  
  	mutex_lock(&isight->mutex);
  	err = isight_start_streaming(isight);
  	mutex_unlock(&isight->mutex);
  
  	return err;
  }
  
  static int isight_trigger(struct snd_pcm_substream *substream, int cmd)
  {
  	struct isight *isight = substream->private_data;
  
  	switch (cmd) {
  	case SNDRV_PCM_TRIGGER_START:
  		ACCESS_ONCE(isight->pcm_running) = true;
  		break;
  	case SNDRV_PCM_TRIGGER_STOP:
  		ACCESS_ONCE(isight->pcm_running) = false;
  		break;
  	default:
  		return -EINVAL;
  	}
  	return 0;
  }
  
  static snd_pcm_uframes_t isight_pointer(struct snd_pcm_substream *substream)
  {
  	struct isight *isight = substream->private_data;
  
  	return ACCESS_ONCE(isight->buffer_pointer);
  }
  
  static int isight_create_pcm(struct isight *isight)
  {
  	static struct snd_pcm_ops ops = {
  		.open      = isight_open,
  		.close     = isight_close,
  		.ioctl     = snd_pcm_lib_ioctl,
  		.hw_params = isight_hw_params,
  		.hw_free   = isight_hw_free,
  		.prepare   = isight_prepare,
  		.trigger   = isight_trigger,
  		.pointer   = isight_pointer,
  		.page      = snd_pcm_lib_get_vmalloc_page,
  		.mmap      = snd_pcm_lib_mmap_vmalloc,
  	};
  	struct snd_pcm *pcm;
  	int err;
  
  	err = snd_pcm_new(isight->card, "iSight", 0, 0, 1, &pcm);
  	if (err < 0)
  		return err;
  	pcm->private_data = isight;
  	strcpy(pcm->name, "iSight");
  	isight->pcm = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
  	isight->pcm->ops = &ops;
  
  	return 0;
  }
  
  static int isight_gain_info(struct snd_kcontrol *ctl,
  			    struct snd_ctl_elem_info *info)
  {
  	struct isight *isight = ctl->private_data;
  
  	info->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  	info->count = 1;
  	info->value.integer.min = isight->gain_min;
  	info->value.integer.max = isight->gain_max;
  
  	return 0;
  }
  
  static int isight_gain_get(struct snd_kcontrol *ctl,
  			   struct snd_ctl_elem_value *value)
  {
  	struct isight *isight = ctl->private_data;
  	__be32 gain;
  	int err;
ac34dad26   Stefan Richter   ALSA: isight: wra...
482
  	err = reg_read(isight, REG_GAIN, &gain);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
483
484
485
486
487
488
489
490
491
492
493
494
  	if (err < 0)
  		return err;
  
  	value->value.integer.value[0] = (s32)be32_to_cpu(gain);
  
  	return 0;
  }
  
  static int isight_gain_put(struct snd_kcontrol *ctl,
  			   struct snd_ctl_elem_value *value)
  {
  	struct isight *isight = ctl->private_data;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
495
496
497
498
  
  	if (value->value.integer.value[0] < isight->gain_min ||
  	    value->value.integer.value[0] > isight->gain_max)
  		return -EINVAL;
ac34dad26   Stefan Richter   ALSA: isight: wra...
499
500
  	return reg_write(isight, REG_GAIN,
  			 cpu_to_be32(value->value.integer.value[0]));
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
501
502
503
504
505
506
507
508
  }
  
  static int isight_mute_get(struct snd_kcontrol *ctl,
  			   struct snd_ctl_elem_value *value)
  {
  	struct isight *isight = ctl->private_data;
  	__be32 mute;
  	int err;
ac34dad26   Stefan Richter   ALSA: isight: wra...
509
  	err = reg_read(isight, REG_MUTE, &mute);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
510
511
512
513
514
515
516
517
518
519
520
521
  	if (err < 0)
  		return err;
  
  	value->value.integer.value[0] = !mute;
  
  	return 0;
  }
  
  static int isight_mute_put(struct snd_kcontrol *ctl,
  			   struct snd_ctl_elem_value *value)
  {
  	struct isight *isight = ctl->private_data;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
522

ac34dad26   Stefan Richter   ALSA: isight: wra...
523
524
  	return reg_write(isight, REG_MUTE,
  			 (__force __be32)!value->value.integer.value[0]);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
  }
  
  static int isight_create_mixer(struct isight *isight)
  {
  	static const struct snd_kcontrol_new gain_control = {
  		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  		.name = "Mic Capture Volume",
  		.access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
  			  SNDRV_CTL_ELEM_ACCESS_TLV_READ,
  		.info = isight_gain_info,
  		.get = isight_gain_get,
  		.put = isight_gain_put,
  	};
  	static const struct snd_kcontrol_new mute_control = {
  		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  		.name = "Mic Capture Switch",
  		.info = snd_ctl_boolean_mono_info,
  		.get = isight_mute_get,
  		.put = isight_mute_put,
  	};
  	__be32 value;
  	struct snd_kcontrol *ctl;
  	int err;
ac34dad26   Stefan Richter   ALSA: isight: wra...
548
  	err = reg_read(isight, REG_GAIN_RAW_START, &value);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
549
550
551
  	if (err < 0)
  		return err;
  	isight->gain_min = be32_to_cpu(value);
ac34dad26   Stefan Richter   ALSA: isight: wra...
552
  	err = reg_read(isight, REG_GAIN_RAW_END, &value);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
553
554
555
556
557
558
  	if (err < 0)
  		return err;
  	isight->gain_max = be32_to_cpu(value);
  
  	isight->gain_tlv[0] = SNDRV_CTL_TLVT_DB_MINMAX;
  	isight->gain_tlv[1] = 2 * sizeof(unsigned int);
ac34dad26   Stefan Richter   ALSA: isight: wra...
559
560
  
  	err = reg_read(isight, REG_GAIN_DB_START, &value);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
561
562
563
  	if (err < 0)
  		return err;
  	isight->gain_tlv[2] = (s32)be32_to_cpu(value) * 100;
ac34dad26   Stefan Richter   ALSA: isight: wra...
564
565
  
  	err = reg_read(isight, REG_GAIN_DB_END, &value);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
  	if (err < 0)
  		return err;
  	isight->gain_tlv[3] = (s32)be32_to_cpu(value) * 100;
  
  	ctl = snd_ctl_new1(&gain_control, isight);
  	if (ctl)
  		ctl->tlv.p = isight->gain_tlv;
  	err = snd_ctl_add(isight->card, ctl);
  	if (err < 0)
  		return err;
  
  	err = snd_ctl_add(isight->card, snd_ctl_new1(&mute_control, isight));
  	if (err < 0)
  		return err;
  
  	return 0;
  }
  
  static void isight_card_free(struct snd_card *card)
  {
  	struct isight *isight = card->private_data;
  
  	fw_iso_resources_destroy(&isight->resources);
  	fw_unit_put(isight->unit);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
590
591
592
593
594
595
596
597
598
599
600
601
602
603
  	mutex_destroy(&isight->mutex);
  }
  
  static u64 get_unit_base(struct fw_unit *unit)
  {
  	struct fw_csr_iterator i;
  	int key, value;
  
  	fw_csr_iterator_init(&i, unit->directory);
  	while (fw_csr_iterator_next(&i, &key, &value))
  		if (key == CSR_OFFSET)
  			return CSR_REGISTER_BASE + value * 4;
  	return 0;
  }
94a87157c   Stefan Richter   firewire: introdu...
604
605
  static int isight_probe(struct fw_unit *unit,
  			const struct ieee1394_device_id *id)
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
606
  {
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
607
608
609
610
  	struct fw_device *fw_dev = fw_parent_device(unit);
  	struct snd_card *card;
  	struct isight *isight;
  	int err;
06b45f00a   Takashi Iwai   ALSA: firewire: C...
611
612
  	err = snd_card_new(&unit->device, -1, NULL, THIS_MODULE,
  			   sizeof(*isight), &card);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
613
614
  	if (err < 0)
  		return err;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
615
616
617
618
619
  
  	isight = card->private_data;
  	isight->card = card;
  	mutex_init(&isight->mutex);
  	isight->unit = fw_unit_get(unit);
210762268   Stefan Richter   firewire: move fw...
620
  	isight->device = fw_dev;
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
  	isight->audio_base = get_unit_base(unit);
  	if (!isight->audio_base) {
  		dev_err(&unit->device, "audio unit base not found
  ");
  		err = -ENXIO;
  		goto err_unit;
  	}
  	fw_iso_resources_init(&isight->resources, unit);
  
  	card->private_free = isight_card_free;
  
  	strcpy(card->driver, "iSight");
  	strcpy(card->shortname, "Apple iSight");
  	snprintf(card->longname, sizeof(card->longname),
  		 "Apple iSight (GUID %08x%08x) at %s, S%d",
  		 fw_dev->config_rom[3], fw_dev->config_rom[4],
  		 dev_name(&unit->device), 100 << fw_dev->max_speed);
  	strcpy(card->mixername, "iSight");
  
  	err = isight_create_pcm(isight);
  	if (err < 0)
  		goto error;
  
  	err = isight_create_mixer(isight);
  	if (err < 0)
  		goto error;
  
  	err = snd_card_register(card);
  	if (err < 0)
  		goto error;
94a87157c   Stefan Richter   firewire: introdu...
651
  	dev_set_drvdata(&unit->device, isight);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
652
653
654
655
656
  
  	return 0;
  
  err_unit:
  	fw_unit_put(isight->unit);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
657
658
659
660
661
  	mutex_destroy(&isight->mutex);
  error:
  	snd_card_free(card);
  	return err;
  }
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
662
663
664
  static void isight_bus_reset(struct fw_unit *unit)
  {
  	struct isight *isight = dev_get_drvdata(&unit->device);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
665
666
  	if (fw_iso_resources_update(&isight->resources) < 0) {
  		isight_pcm_abort(isight);
f3f7c1837   Clemens Ladisch   ALSA: isight: fix...
667
668
  
  		mutex_lock(&isight->mutex);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
669
  		isight_stop_streaming(isight);
f3f7c1837   Clemens Ladisch   ALSA: isight: fix...
670
  		mutex_unlock(&isight->mutex);
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
671
  	}
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
672
  }
94a87157c   Stefan Richter   firewire: introdu...
673
674
675
676
677
678
679
680
681
682
683
684
685
686
  static void isight_remove(struct fw_unit *unit)
  {
  	struct isight *isight = dev_get_drvdata(&unit->device);
  
  	isight_pcm_abort(isight);
  
  	snd_card_disconnect(isight->card);
  
  	mutex_lock(&isight->mutex);
  	isight_stop_streaming(isight);
  	mutex_unlock(&isight->mutex);
  
  	snd_card_free_when_closed(isight->card);
  }
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
  static const struct ieee1394_device_id isight_id_table[] = {
  	{
  		.match_flags  = IEEE1394_MATCH_SPECIFIER_ID |
  				IEEE1394_MATCH_VERSION,
  		.specifier_id = OUI_APPLE,
  		.version      = SW_ISIGHT_AUDIO,
  	},
  	{ }
  };
  MODULE_DEVICE_TABLE(ieee1394, isight_id_table);
  
  static struct fw_driver isight_driver = {
  	.driver   = {
  		.owner	= THIS_MODULE,
  		.name	= KBUILD_MODNAME,
  		.bus	= &fw_bus_type,
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
703
  	},
94a87157c   Stefan Richter   firewire: introdu...
704
  	.probe    = isight_probe,
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
705
  	.update   = isight_bus_reset,
94a87157c   Stefan Richter   firewire: introdu...
706
  	.remove   = isight_remove,
3a691b28a   Clemens Ladisch   ALSA: add Apple i...
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
  	.id_table = isight_id_table,
  };
  
  static int __init alsa_isight_init(void)
  {
  	return driver_register(&isight_driver.driver);
  }
  
  static void __exit alsa_isight_exit(void)
  {
  	driver_unregister(&isight_driver.driver);
  }
  
  module_init(alsa_isight_init);
  module_exit(alsa_isight_exit);