oxfw.c 16.9 KB
Newer Older
1
/*
2
 * oxfw.c - a part of driver for OXFW970/971 based devices
3 4 5 6 7
 *
 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
 * Licensed under the terms of the GNU General Public License, version 2.
 */

8
#include "oxfw.h"
9 10 11 12 13 14 15 16 17 18 19 20 21 22

#define OXFORD_FIRMWARE_ID_ADDRESS	(CSR_REGISTER_BASE + 0x50000)
/* 0x970?vvvv or 0x971?vvvv, where vvvv = firmware version */

#define OXFORD_HARDWARE_ID_ADDRESS	(CSR_REGISTER_BASE + 0x90020)
#define OXFORD_HARDWARE_ID_OXFW970	0x39443841
#define OXFORD_HARDWARE_ID_OXFW971	0x39373100

#define VENDOR_GRIFFIN		0x001292
#define VENDOR_LACIE		0x00d04b

#define SPECIFIER_1394TA	0x00a02d
#define VERSION_AVC		0x010001

23
MODULE_DESCRIPTION("Oxford Semiconductor FW970/971 driver");
24 25
MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
MODULE_LICENSE("GPL v2");
26
MODULE_ALIAS("snd-firewire-speakers");
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 53 54 55 56 57 58 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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

static int firewave_rate_constraint(struct snd_pcm_hw_params *params,
				    struct snd_pcm_hw_rule *rule)
{
	static unsigned int stereo_rates[] = { 48000, 96000 };
	struct snd_interval *channels =
			hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
	struct snd_interval *rate =
			hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);

	/* two channels work only at 48/96 kHz */
	if (snd_interval_max(channels) < 6)
		return snd_interval_list(rate, 2, stereo_rates, 0);
	return 0;
}

static int firewave_channels_constraint(struct snd_pcm_hw_params *params,
					struct snd_pcm_hw_rule *rule)
{
	static const struct snd_interval all_channels = { .min = 6, .max = 6 };
	struct snd_interval *rate =
			hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
	struct snd_interval *channels =
			hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);

	/* 32/44.1 kHz work only with all six channels */
	if (snd_interval_max(rate) < 48000)
		return snd_interval_refine(channels, &all_channels);
	return 0;
}

static int firewave_constraints(struct snd_pcm_runtime *runtime)
{
	static unsigned int channels_list[] = { 2, 6 };
	static struct snd_pcm_hw_constraint_list channels_list_constraint = {
		.count = 2,
		.list = channels_list,
	};
	int err;

	runtime->hw.rates = SNDRV_PCM_RATE_32000 |
			    SNDRV_PCM_RATE_44100 |
			    SNDRV_PCM_RATE_48000 |
			    SNDRV_PCM_RATE_96000;
	runtime->hw.channels_max = 6;

	err = snd_pcm_hw_constraint_list(runtime, 0,
					 SNDRV_PCM_HW_PARAM_CHANNELS,
					 &channels_list_constraint);
	if (err < 0)
		return err;
	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
				  firewave_rate_constraint, NULL,
				  SNDRV_PCM_HW_PARAM_CHANNELS, -1);
	if (err < 0)
		return err;
	err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
				  firewave_channels_constraint, NULL,
				  SNDRV_PCM_HW_PARAM_RATE, -1);
	if (err < 0)
		return err;

	return 0;
}

static int lacie_speakers_constraints(struct snd_pcm_runtime *runtime)
{
	runtime->hw.rates = SNDRV_PCM_RATE_32000 |
			    SNDRV_PCM_RATE_44100 |
			    SNDRV_PCM_RATE_48000 |
			    SNDRV_PCM_RATE_88200 |
			    SNDRV_PCM_RATE_96000;

	return 0;
}

103
static int oxfw_open(struct snd_pcm_substream *substream)
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
{
	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 = AMDTP_OUT_PCM_FORMAT_BITS,
		.channels_min = 2,
		.channels_max = 2,
		.buffer_bytes_max = 4 * 1024 * 1024,
		.period_bytes_min = 1,
		.period_bytes_max = UINT_MAX,
		.periods_min = 1,
		.periods_max = UINT_MAX,
	};
120
	struct snd_oxfw *oxfw = substream->private_data;
121 122 123 124 125
	struct snd_pcm_runtime *runtime = substream->runtime;
	int err;

	runtime->hw = hardware;

126
	err = oxfw->device_info->pcm_constraints(runtime);
127 128 129 130 131 132
	if (err < 0)
		return err;
	err = snd_pcm_limit_hw_rates(runtime);
	if (err < 0)
		return err;

133
	err = amdtp_stream_add_pcm_hw_constraints(&oxfw->rx_stream, runtime);
134 135 136 137 138 139
	if (err < 0)
		return err;

	return 0;
}

140
static int oxfw_close(struct snd_pcm_substream *substream)
141 142 143 144
{
	return 0;
}

145
static int oxfw_hw_params(struct snd_pcm_substream *substream,
146 147
			   struct snd_pcm_hw_params *hw_params)
{
148
	struct snd_oxfw *oxfw = substream->private_data;
149 150
	int err;

151
	mutex_lock(&oxfw->mutex);
152 153

	snd_oxfw_stream_stop_simplex(oxfw);
154 155 156 157 158 159

	err = snd_pcm_lib_alloc_vmalloc_buffer(substream,
					       params_buffer_bytes(hw_params));
	if (err < 0)
		goto error;

160
	amdtp_stream_set_parameters(&oxfw->rx_stream,
161 162 163
				    params_rate(hw_params),
				    params_channels(hw_params),
				    0);
164

165
	amdtp_stream_set_pcm_format(&oxfw->rx_stream,
166
				    params_format(hw_params));
167

168
	err = avc_general_set_sig_fmt(oxfw->unit, params_rate(hw_params),
169 170
				      AVC_GENERAL_PLUG_DIR_IN, 0);
	if (err < 0) {
171
		dev_err(&oxfw->unit->device, "failed to set sample rate\n");
172
		goto err_buffer;
173
	}
174 175 176 177 178 179

	return 0;

err_buffer:
	snd_pcm_lib_free_vmalloc_buffer(substream);
error:
180
	mutex_unlock(&oxfw->mutex);
181 182 183
	return err;
}

184
static int oxfw_hw_free(struct snd_pcm_substream *substream)
185
{
186
	struct snd_oxfw *oxfw = substream->private_data;
187

188
	mutex_lock(&oxfw->mutex);
189
	snd_oxfw_stream_stop_simplex(oxfw);
190
	mutex_unlock(&oxfw->mutex);
191 192 193 194

	return snd_pcm_lib_free_vmalloc_buffer(substream);
}

195
static int oxfw_prepare(struct snd_pcm_substream *substream)
196
{
197
	struct snd_oxfw *oxfw = substream->private_data;
198 199
	int err;

200
	mutex_lock(&oxfw->mutex);
201

202
	snd_oxfw_stream_stop_simplex(oxfw);
203

204 205 206
	err = snd_oxfw_stream_start_simplex(oxfw);
	if (err < 0)
		goto end;
207

208
	amdtp_stream_pcm_prepare(&oxfw->rx_stream);
209
end:
210
	mutex_unlock(&oxfw->mutex);
211 212 213
	return err;
}

214
static int oxfw_trigger(struct snd_pcm_substream *substream, int cmd)
215
{
216
	struct snd_oxfw *oxfw = substream->private_data;
217 218 219 220 221 222 223 224 225 226 227 228
	struct snd_pcm_substream *pcm;

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_START:
		pcm = substream;
		break;
	case SNDRV_PCM_TRIGGER_STOP:
		pcm = NULL;
		break;
	default:
		return -EINVAL;
	}
229
	amdtp_stream_pcm_trigger(&oxfw->rx_stream, pcm);
230 231 232
	return 0;
}

233
static snd_pcm_uframes_t oxfw_pointer(struct snd_pcm_substream *substream)
234
{
235
	struct snd_oxfw *oxfw = substream->private_data;
236

237
	return amdtp_stream_pcm_pointer(&oxfw->rx_stream);
238 239
}

240
static int oxfw_create_pcm(struct snd_oxfw *oxfw)
241 242
{
	static struct snd_pcm_ops ops = {
243 244
		.open      = oxfw_open,
		.close     = oxfw_close,
245
		.ioctl     = snd_pcm_lib_ioctl,
246 247 248 249 250
		.hw_params = oxfw_hw_params,
		.hw_free   = oxfw_hw_free,
		.prepare   = oxfw_prepare,
		.trigger   = oxfw_trigger,
		.pointer   = oxfw_pointer,
251 252 253 254 255 256
		.page      = snd_pcm_lib_get_vmalloc_page,
		.mmap      = snd_pcm_lib_mmap_vmalloc,
	};
	struct snd_pcm *pcm;
	int err;

257
	err = snd_pcm_new(oxfw->card, "OXFW", 0, 1, 0, &pcm);
258 259
	if (err < 0)
		return err;
260 261
	pcm->private_data = oxfw;
	strcpy(pcm->name, oxfw->device_info->short_name);
262
	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &ops);
263 264 265 266 267 268 269 270 271 272
	return 0;
}

enum control_action { CTL_READ, CTL_WRITE };
enum control_attribute {
	CTL_MIN		= 0x02,
	CTL_MAX		= 0x03,
	CTL_CURRENT	= 0x10,
};

273
static int oxfw_mute_command(struct snd_oxfw *oxfw, bool *value,
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
			      enum control_action action)
{
	u8 *buf;
	u8 response_ok;
	int err;

	buf = kmalloc(11, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;

	if (action == CTL_READ) {
		buf[0] = 0x01;		/* AV/C, STATUS */
		response_ok = 0x0c;	/*       STABLE */
	} else {
		buf[0] = 0x00;		/* AV/C, CONTROL */
		response_ok = 0x09;	/*       ACCEPTED */
	}
	buf[1] = 0x08;			/* audio unit 0 */
	buf[2] = 0xb8;			/* FUNCTION BLOCK */
	buf[3] = 0x81;			/* function block type: feature */
294
	buf[4] = oxfw->device_info->mute_fb_id; /* function block ID */
295 296 297 298 299 300 301 302 303 304
	buf[5] = 0x10;			/* control attribute: current */
	buf[6] = 0x02;			/* selector length */
	buf[7] = 0x00;			/* audio channel number */
	buf[8] = 0x01;			/* control selector: mute */
	buf[9] = 0x01;			/* control data length */
	if (action == CTL_READ)
		buf[10] = 0xff;
	else
		buf[10] = *value ? 0x70 : 0x60;

305
	err = fcp_avc_transaction(oxfw->unit, buf, 11, buf, 11, 0x3fe);
306 307 308
	if (err < 0)
		goto error;
	if (err < 11) {
309
		dev_err(&oxfw->unit->device, "short FCP response\n");
310 311 312 313
		err = -EIO;
		goto error;
	}
	if (buf[0] != response_ok) {
314
		dev_err(&oxfw->unit->device, "mute command failed\n");
315 316 317 318 319 320 321 322 323 324 325 326 327 328
		err = -EIO;
		goto error;
	}
	if (action == CTL_READ)
		*value = buf[10] == 0x70;

	err = 0;

error:
	kfree(buf);

	return err;
}

329
static int oxfw_volume_command(struct snd_oxfw *oxfw, s16 *value,
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
				unsigned int channel,
				enum control_attribute attribute,
				enum control_action action)
{
	u8 *buf;
	u8 response_ok;
	int err;

	buf = kmalloc(12, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;

	if (action == CTL_READ) {
		buf[0] = 0x01;		/* AV/C, STATUS */
		response_ok = 0x0c;	/*       STABLE */
	} else {
		buf[0] = 0x00;		/* AV/C, CONTROL */
		response_ok = 0x09;	/*       ACCEPTED */
	}
	buf[1] = 0x08;			/* audio unit 0 */
	buf[2] = 0xb8;			/* FUNCTION BLOCK */
	buf[3] = 0x81;			/* function block type: feature */
352
	buf[4] = oxfw->device_info->volume_fb_id; /* function block ID */
353 354 355 356 357 358 359 360 361 362 363 364 365
	buf[5] = attribute;		/* control attribute */
	buf[6] = 0x02;			/* selector length */
	buf[7] = channel;		/* audio channel number */
	buf[8] = 0x02;			/* control selector: volume */
	buf[9] = 0x02;			/* control data length */
	if (action == CTL_READ) {
		buf[10] = 0xff;
		buf[11] = 0xff;
	} else {
		buf[10] = *value >> 8;
		buf[11] = *value;
	}

366
	err = fcp_avc_transaction(oxfw->unit, buf, 12, buf, 12, 0x3fe);
367 368 369
	if (err < 0)
		goto error;
	if (err < 12) {
370
		dev_err(&oxfw->unit->device, "short FCP response\n");
371 372 373 374
		err = -EIO;
		goto error;
	}
	if (buf[0] != response_ok) {
375
		dev_err(&oxfw->unit->device, "volume command failed\n");
376 377 378 379 380 381 382 383 384 385 386 387 388 389
		err = -EIO;
		goto error;
	}
	if (action == CTL_READ)
		*value = (buf[10] << 8) | buf[11];

	err = 0;

error:
	kfree(buf);

	return err;
}

390
static int oxfw_mute_get(struct snd_kcontrol *control,
391 392
			  struct snd_ctl_elem_value *value)
{
393
	struct snd_oxfw *oxfw = control->private_data;
394

395
	value->value.integer.value[0] = !oxfw->mute;
396 397 398 399

	return 0;
}

400
static int oxfw_mute_put(struct snd_kcontrol *control,
401 402
			  struct snd_ctl_elem_value *value)
{
403
	struct snd_oxfw *oxfw = control->private_data;
404 405 406 407 408
	bool mute;
	int err;

	mute = !value->value.integer.value[0];

409
	if (mute == oxfw->mute)
410 411
		return 0;

412
	err = oxfw_mute_command(oxfw, &mute, CTL_WRITE);
413 414
	if (err < 0)
		return err;
415
	oxfw->mute = mute;
416 417 418 419

	return 1;
}

420
static int oxfw_volume_info(struct snd_kcontrol *control,
421 422
			     struct snd_ctl_elem_info *info)
{
423
	struct snd_oxfw *oxfw = control->private_data;
424 425

	info->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
426 427 428
	info->count = oxfw->device_info->mixer_channels;
	info->value.integer.min = oxfw->volume_min;
	info->value.integer.max = oxfw->volume_max;
429 430 431 432 433 434

	return 0;
}

static const u8 channel_map[6] = { 0, 1, 4, 5, 2, 3 };

435
static int oxfw_volume_get(struct snd_kcontrol *control,
436 437
			    struct snd_ctl_elem_value *value)
{
438
	struct snd_oxfw *oxfw = control->private_data;
439 440
	unsigned int i;

441 442
	for (i = 0; i < oxfw->device_info->mixer_channels; ++i)
		value->value.integer.value[channel_map[i]] = oxfw->volume[i];
443 444 445 446

	return 0;
}

447
static int oxfw_volume_put(struct snd_kcontrol *control,
448 449
			  struct snd_ctl_elem_value *value)
{
450
	struct snd_oxfw *oxfw = control->private_data;
451 452 453 454 455
	unsigned int i, changed_channels;
	bool equal_values = true;
	s16 volume;
	int err;

456 457 458
	for (i = 0; i < oxfw->device_info->mixer_channels; ++i) {
		if (value->value.integer.value[i] < oxfw->volume_min ||
		    value->value.integer.value[i] > oxfw->volume_max)
459 460 461 462 463 464 465
			return -EINVAL;
		if (value->value.integer.value[i] !=
		    value->value.integer.value[0])
			equal_values = false;
	}

	changed_channels = 0;
466
	for (i = 0; i < oxfw->device_info->mixer_channels; ++i)
467
		if (value->value.integer.value[channel_map[i]] !=
468
							oxfw->volume[i])
469 470 471 472 473
			changed_channels |= 1 << (i + 1);

	if (equal_values && changed_channels != 0)
		changed_channels = 1 << 0;

474
	for (i = 0; i <= oxfw->device_info->mixer_channels; ++i) {
475 476
		volume = value->value.integer.value[channel_map[i ? i - 1 : 0]];
		if (changed_channels & (1 << i)) {
477
			err = oxfw_volume_command(oxfw, &volume, i,
478 479 480 481 482
						   CTL_CURRENT, CTL_WRITE);
			if (err < 0)
				return err;
		}
		if (i > 0)
483
			oxfw->volume[i - 1] = volume;
484 485 486 487 488
	}

	return changed_channels != 0;
}

489
static int oxfw_create_mixer(struct snd_oxfw *oxfw)
490 491 492 493 494 495
{
	static const struct snd_kcontrol_new controls[] = {
		{
			.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
			.name = "PCM Playback Switch",
			.info = snd_ctl_boolean_mono_info,
496 497
			.get = oxfw_mute_get,
			.put = oxfw_mute_put,
498 499 500 501
		},
		{
			.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
			.name = "PCM Playback Volume",
502 503 504
			.info = oxfw_volume_info,
			.get = oxfw_volume_get,
			.put = oxfw_volume_put,
505 506 507 508 509
		},
	};
	unsigned int i, first_ch;
	int err;

510
	err = oxfw_volume_command(oxfw, &oxfw->volume_min,
511 512 513
				   0, CTL_MIN, CTL_READ);
	if (err < 0)
		return err;
514
	err = oxfw_volume_command(oxfw, &oxfw->volume_max,
515 516 517 518
				   0, CTL_MAX, CTL_READ);
	if (err < 0)
		return err;

519
	err = oxfw_mute_command(oxfw, &oxfw->mute, CTL_READ);
520 521 522
	if (err < 0)
		return err;

523 524 525
	first_ch = oxfw->device_info->mixer_channels == 1 ? 0 : 1;
	for (i = 0; i < oxfw->device_info->mixer_channels; ++i) {
		err = oxfw_volume_command(oxfw, &oxfw->volume[i],
526 527 528 529 530 531
					   first_ch + i, CTL_CURRENT, CTL_READ);
		if (err < 0)
			return err;
	}

	for (i = 0; i < ARRAY_SIZE(controls); ++i) {
532 533
		err = snd_ctl_add(oxfw->card,
				  snd_ctl_new1(&controls[i], oxfw));
534 535 536 537 538 539 540
		if (err < 0)
			return err;
	}

	return 0;
}

541
static u32 oxfw_read_firmware_version(struct fw_unit *unit)
542 543 544 545 546
{
	__be32 data;
	int err;

	err = snd_fw_transaction(unit, TCODE_READ_QUADLET_REQUEST,
547
				 OXFORD_FIRMWARE_ID_ADDRESS, &data, 4, 0);
548 549 550
	return err >= 0 ? be32_to_cpu(data) : 0;
}

551
static void oxfw_card_free(struct snd_card *card)
552
{
553
	struct snd_oxfw *oxfw = card->private_data;
554

555
	mutex_destroy(&oxfw->mutex);
556 557
}

558
static int oxfw_probe(struct fw_unit *unit,
559
		       const struct ieee1394_device_id *id)
560 561 562
{
	struct fw_device *fw_dev = fw_parent_device(unit);
	struct snd_card *card;
563
	struct snd_oxfw *oxfw;
564 565 566
	u32 firmware;
	int err;

567
	err = snd_card_new(&unit->device, -1, NULL, THIS_MODULE,
568
			   sizeof(*oxfw), &card);
569 570 571
	if (err < 0)
		return err;

572
	card->private_free = oxfw_card_free;
573 574 575
	oxfw = card->private_data;
	oxfw->card = card;
	mutex_init(&oxfw->mutex);
576
	oxfw->unit = unit;
577
	oxfw->device_info = (const struct device_info *)id->driver_data;
578

579 580 581
	strcpy(card->driver, oxfw->device_info->driver_name);
	strcpy(card->shortname, oxfw->device_info->short_name);
	firmware = oxfw_read_firmware_version(unit);
582 583
	snprintf(card->longname, sizeof(card->longname),
		 "%s (OXFW%x %04x), GUID %08x%08x at %s, S%d",
584
		 oxfw->device_info->long_name,
585 586 587
		 firmware >> 20, firmware & 0xffff,
		 fw_dev->config_rom[3], fw_dev->config_rom[4],
		 dev_name(&unit->device), 100 << fw_dev->max_speed);
588
	strcpy(card->mixername, "OXFW");
589

590
	err = oxfw_create_pcm(oxfw);
591 592 593
	if (err < 0)
		goto error;

594
	err = oxfw_create_mixer(oxfw);
595 596 597
	if (err < 0)
		goto error;

598
	err = snd_oxfw_stream_init_simplex(oxfw);
599 600 601
	if (err < 0)
		goto error;

602 603 604 605 606
	err = snd_card_register(card);
	if (err < 0) {
		snd_oxfw_stream_destroy_simplex(oxfw);
		goto error;
	}
607
	dev_set_drvdata(&unit->device, oxfw);
608 609 610 611 612 613 614

	return 0;
error:
	snd_card_free(card);
	return err;
}

615
static void oxfw_bus_reset(struct fw_unit *unit)
616
{
617
	struct snd_oxfw *oxfw = dev_get_drvdata(&unit->device);
618

619
	fcp_bus_reset(oxfw->unit);
620

621 622 623
	mutex_lock(&oxfw->mutex);
	snd_oxfw_stream_update_simplex(oxfw);
	mutex_unlock(&oxfw->mutex);
624 625
}

626
static void oxfw_remove(struct fw_unit *unit)
627
{
628
	struct snd_oxfw *oxfw = dev_get_drvdata(&unit->device);
629

630
	snd_card_disconnect(oxfw->card);
631

632
	snd_oxfw_stream_destroy_simplex(oxfw);
633

634
	snd_card_free_when_closed(oxfw->card);
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
}

static const struct device_info griffin_firewave = {
	.driver_name = "FireWave",
	.short_name  = "FireWave",
	.long_name   = "Griffin FireWave Surround",
	.pcm_constraints = firewave_constraints,
	.mixer_channels = 6,
	.mute_fb_id   = 0x01,
	.volume_fb_id = 0x02,
};

static const struct device_info lacie_speakers = {
	.driver_name = "FWSpeakers",
	.short_name  = "FireWire Speakers",
	.long_name   = "LaCie FireWire Speakers",
	.pcm_constraints = lacie_speakers_constraints,
	.mixer_channels = 1,
	.mute_fb_id   = 0x01,
	.volume_fb_id = 0x01,
};

657
static const struct ieee1394_device_id oxfw_id_table[] = {
658 659 660 661 662 663 664 665 666
	{
		.match_flags  = IEEE1394_MATCH_VENDOR_ID |
				IEEE1394_MATCH_MODEL_ID |
				IEEE1394_MATCH_SPECIFIER_ID |
				IEEE1394_MATCH_VERSION,
		.vendor_id    = VENDOR_GRIFFIN,
		.model_id     = 0x00f970,
		.specifier_id = SPECIFIER_1394TA,
		.version      = VERSION_AVC,
667
		.driver_data  = (kernel_ulong_t)&griffin_firewave,
668 669 670 671 672 673 674 675 676 677
	},
	{
		.match_flags  = IEEE1394_MATCH_VENDOR_ID |
				IEEE1394_MATCH_MODEL_ID |
				IEEE1394_MATCH_SPECIFIER_ID |
				IEEE1394_MATCH_VERSION,
		.vendor_id    = VENDOR_LACIE,
		.model_id     = 0x00f970,
		.specifier_id = SPECIFIER_1394TA,
		.version      = VERSION_AVC,
678
		.driver_data  = (kernel_ulong_t)&lacie_speakers,
679 680 681
	},
	{ }
};
682
MODULE_DEVICE_TABLE(ieee1394, oxfw_id_table);
683

684
static struct fw_driver oxfw_driver = {
685 686 687 688 689
	.driver   = {
		.owner	= THIS_MODULE,
		.name	= KBUILD_MODNAME,
		.bus	= &fw_bus_type,
	},
690 691 692 693
	.probe    = oxfw_probe,
	.update   = oxfw_bus_reset,
	.remove   = oxfw_remove,
	.id_table = oxfw_id_table,
694 695
};

696
static int __init snd_oxfw_init(void)
697
{
698
	return driver_register(&oxfw_driver.driver);
699 700
}

701
static void __exit snd_oxfw_exit(void)
702
{
703
	driver_unregister(&oxfw_driver.driver);
704 705
}

706 707
module_init(snd_oxfw_init);
module_exit(snd_oxfw_exit);