2 * oxfw.c - a part of driver for OXFW970/971 based devices
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 * Licensed under the terms of the GNU General Public License, version 2.
10 #define OXFORD_FIRMWARE_ID_ADDRESS (CSR_REGISTER_BASE + 0x50000)
11 /* 0x970?vvvv or 0x971?vvvv, where vvvv = firmware version */
13 #define OXFORD_HARDWARE_ID_ADDRESS (CSR_REGISTER_BASE + 0x90020)
14 #define OXFORD_HARDWARE_ID_OXFW970 0x39443841
15 #define OXFORD_HARDWARE_ID_OXFW971 0x39373100
17 #define VENDOR_LOUD 0x000ff2
18 #define VENDOR_GRIFFIN 0x001292
19 #define VENDOR_BEHRINGER 0x001564
20 #define VENDOR_LACIE 0x00d04b
21 #define VENDOR_TASCAM 0x00022e
22 #define OUI_STANTON 0x001260
24 #define MODEL_SATELLITE 0x00200f
26 #define SPECIFIER_1394TA 0x00a02d
27 #define VERSION_AVC 0x010001
29 MODULE_DESCRIPTION("Oxford Semiconductor FW970/971 driver");
30 MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
31 MODULE_LICENSE("GPL v2");
32 MODULE_ALIAS("snd-firewire-speakers");
33 MODULE_ALIAS("snd-scs1x");
36 const char *driver_name
;
37 const char *vendor_name
;
38 const char *model_name
;
41 static bool detect_loud_models(struct fw_unit
*unit
)
43 const char *const models
[] = {
48 "Mackie Onyx Satellite",
49 "Tapco LINK.firewire 4x6",
55 err
= fw_csr_string(unit
->directory
, CSR_MODEL
,
56 model
, sizeof(model
));
60 for (i
= 0; i
< ARRAY_SIZE(models
); i
++) {
61 if (strcmp(models
[i
], model
) == 0)
65 return (i
< ARRAY_SIZE(models
));
68 static int name_card(struct snd_oxfw
*oxfw
)
70 struct fw_device
*fw_dev
= fw_parent_device(oxfw
->unit
);
71 const struct compat_info
*info
;
74 const char *d
, *v
, *m
;
78 /* get vendor name from root directory */
79 err
= fw_csr_string(fw_dev
->config_rom
+ 5, CSR_VENDOR
,
80 vendor
, sizeof(vendor
));
84 /* get model name from unit directory */
85 err
= fw_csr_string(oxfw
->unit
->directory
, CSR_MODEL
,
86 model
, sizeof(model
));
90 err
= snd_fw_transaction(oxfw
->unit
, TCODE_READ_QUADLET_REQUEST
,
91 OXFORD_FIRMWARE_ID_ADDRESS
, &firmware
, 4, 0);
94 be32_to_cpus(&firmware
);
96 /* to apply card definitions */
97 if (oxfw
->entry
->vendor_id
== VENDOR_GRIFFIN
||
98 oxfw
->entry
->vendor_id
== VENDOR_LACIE
) {
99 info
= (const struct compat_info
*)oxfw
->entry
->driver_data
;
100 d
= info
->driver_name
;
101 v
= info
->vendor_name
;
102 m
= info
->model_name
;
109 strcpy(oxfw
->card
->driver
, d
);
110 strcpy(oxfw
->card
->mixername
, m
);
111 strcpy(oxfw
->card
->shortname
, m
);
113 snprintf(oxfw
->card
->longname
, sizeof(oxfw
->card
->longname
),
114 "%s %s (OXFW%x %04x), GUID %08x%08x at %s, S%d",
115 v
, m
, firmware
>> 20, firmware
& 0xffff,
116 fw_dev
->config_rom
[3], fw_dev
->config_rom
[4],
117 dev_name(&oxfw
->unit
->device
), 100 << fw_dev
->max_speed
);
122 static void oxfw_free(struct snd_oxfw
*oxfw
)
126 snd_oxfw_stream_destroy_simplex(oxfw
, &oxfw
->rx_stream
);
127 if (oxfw
->has_output
)
128 snd_oxfw_stream_destroy_simplex(oxfw
, &oxfw
->tx_stream
);
130 fw_unit_put(oxfw
->unit
);
132 for (i
= 0; i
< SND_OXFW_STREAM_FORMAT_ENTRIES
; i
++) {
133 kfree(oxfw
->tx_stream_formats
[i
]);
134 kfree(oxfw
->rx_stream_formats
[i
]);
138 mutex_destroy(&oxfw
->mutex
);
142 * This module releases the FireWire unit data after all ALSA character devices
143 * are released by applications. This is for releasing stream data or finishing
144 * transactions safely. Thus at returning from .remove(), this module still keep
145 * references for the unit.
147 static void oxfw_card_free(struct snd_card
*card
)
149 oxfw_free(card
->private_data
);
152 static int detect_quirks(struct snd_oxfw
*oxfw
)
154 struct fw_device
*fw_dev
= fw_parent_device(oxfw
->unit
);
155 struct fw_csr_iterator it
;
160 * Add ALSA control elements for two models to keep compatibility to
161 * old firewire-speaker module.
163 if (oxfw
->entry
->vendor_id
== VENDOR_GRIFFIN
)
164 return snd_oxfw_add_spkr(oxfw
, false);
165 if (oxfw
->entry
->vendor_id
== VENDOR_LACIE
)
166 return snd_oxfw_add_spkr(oxfw
, true);
169 * Stanton models supports asynchronous transactions for unique MIDI
172 if (oxfw
->entry
->vendor_id
== OUI_STANTON
) {
173 /* No physical MIDI ports. */
174 oxfw
->midi_input_ports
= 0;
175 oxfw
->midi_output_ports
= 0;
177 /* Output stream exists but no data channels are useful. */
178 oxfw
->has_output
= false;
180 return snd_oxfw_scs1x_add(oxfw
);
184 * TASCAM FireOne has physical control and requires a pair of additional
187 if (oxfw
->entry
->vendor_id
== VENDOR_TASCAM
) {
188 oxfw
->midi_input_ports
++;
189 oxfw
->midi_output_ports
++;
193 /* Seek from Root Directory of Config ROM. */
195 fw_csr_iterator_init(&it
, fw_dev
->config_rom
+ 5);
196 while (fw_csr_iterator_next(&it
, &key
, &val
)) {
197 if (key
== CSR_VENDOR
)
199 else if (key
== CSR_MODEL
)
204 * Mackie Onyx Satellite with base station has a quirk to report a wrong
205 * value in 'dbs' field of CIP header against its format information.
207 if (vendor
== VENDOR_LOUD
&& model
== MODEL_SATELLITE
)
208 oxfw
->wrong_dbs
= true;
213 static void do_registration(struct work_struct
*work
)
215 struct snd_oxfw
*oxfw
= container_of(work
, struct snd_oxfw
, dwork
.work
);
218 if (oxfw
->registered
)
221 err
= snd_card_new(&oxfw
->unit
->device
, -1, NULL
, THIS_MODULE
, 0,
226 err
= name_card(oxfw
);
230 err
= snd_oxfw_stream_discover(oxfw
);
234 err
= detect_quirks(oxfw
);
238 err
= snd_oxfw_stream_init_simplex(oxfw
, &oxfw
->rx_stream
);
241 if (oxfw
->has_output
) {
242 err
= snd_oxfw_stream_init_simplex(oxfw
, &oxfw
->tx_stream
);
247 err
= snd_oxfw_create_pcm(oxfw
);
251 snd_oxfw_proc_init(oxfw
);
253 err
= snd_oxfw_create_midi(oxfw
);
257 err
= snd_oxfw_create_hwdep(oxfw
);
261 err
= snd_card_register(oxfw
->card
);
266 * After registered, oxfw instance can be released corresponding to
267 * releasing the sound card instance.
269 oxfw
->card
->private_free
= oxfw_card_free
;
270 oxfw
->card
->private_data
= oxfw
;
271 oxfw
->registered
= true;
275 snd_oxfw_stream_destroy_simplex(oxfw
, &oxfw
->rx_stream
);
276 if (oxfw
->has_output
)
277 snd_oxfw_stream_destroy_simplex(oxfw
, &oxfw
->tx_stream
);
278 snd_card_free(oxfw
->card
);
279 dev_info(&oxfw
->unit
->device
,
280 "Sound card registration failed: %d\n", err
);
283 static int oxfw_probe(struct fw_unit
*unit
,
284 const struct ieee1394_device_id
*entry
)
286 struct snd_oxfw
*oxfw
;
288 if (entry
->vendor_id
== VENDOR_LOUD
&& !detect_loud_models(unit
))
291 /* Allocate this independent of sound card instance. */
292 oxfw
= kzalloc(sizeof(struct snd_oxfw
), GFP_KERNEL
);
297 oxfw
->unit
= fw_unit_get(unit
);
298 dev_set_drvdata(&unit
->device
, oxfw
);
300 mutex_init(&oxfw
->mutex
);
301 spin_lock_init(&oxfw
->lock
);
302 init_waitqueue_head(&oxfw
->hwdep_wait
);
304 /* Allocate and register this sound card later. */
305 INIT_DEFERRABLE_WORK(&oxfw
->dwork
, do_registration
);
306 snd_fw_schedule_registration(unit
, &oxfw
->dwork
);
311 static void oxfw_bus_reset(struct fw_unit
*unit
)
313 struct snd_oxfw
*oxfw
= dev_get_drvdata(&unit
->device
);
315 if (!oxfw
->registered
)
316 snd_fw_schedule_registration(unit
, &oxfw
->dwork
);
318 fcp_bus_reset(oxfw
->unit
);
320 if (oxfw
->registered
) {
321 mutex_lock(&oxfw
->mutex
);
323 snd_oxfw_stream_update_simplex(oxfw
, &oxfw
->rx_stream
);
324 if (oxfw
->has_output
)
325 snd_oxfw_stream_update_simplex(oxfw
, &oxfw
->tx_stream
);
327 mutex_unlock(&oxfw
->mutex
);
329 if (oxfw
->entry
->vendor_id
== OUI_STANTON
)
330 snd_oxfw_scs1x_update(oxfw
);
334 static void oxfw_remove(struct fw_unit
*unit
)
336 struct snd_oxfw
*oxfw
= dev_get_drvdata(&unit
->device
);
339 * Confirm to stop the work for registration before the sound card is
340 * going to be released. The work is not scheduled again because bus
341 * reset handler is not called anymore.
343 cancel_delayed_work_sync(&oxfw
->dwork
);
345 if (oxfw
->registered
) {
346 /* No need to wait for releasing card object in this context. */
347 snd_card_free_when_closed(oxfw
->card
);
349 /* Don't forget this case. */
354 static const struct compat_info griffin_firewave
= {
355 .driver_name
= "FireWave",
356 .vendor_name
= "Griffin",
357 .model_name
= "FireWave",
360 static const struct compat_info lacie_speakers
= {
361 .driver_name
= "FWSpeakers",
362 .vendor_name
= "LaCie",
363 .model_name
= "FireWire Speakers",
366 static const struct ieee1394_device_id oxfw_id_table
[] = {
368 .match_flags
= IEEE1394_MATCH_VENDOR_ID
|
369 IEEE1394_MATCH_MODEL_ID
|
370 IEEE1394_MATCH_SPECIFIER_ID
|
371 IEEE1394_MATCH_VERSION
,
372 .vendor_id
= VENDOR_GRIFFIN
,
373 .model_id
= 0x00f970,
374 .specifier_id
= SPECIFIER_1394TA
,
375 .version
= VERSION_AVC
,
376 .driver_data
= (kernel_ulong_t
)&griffin_firewave
,
379 .match_flags
= IEEE1394_MATCH_VENDOR_ID
|
380 IEEE1394_MATCH_MODEL_ID
|
381 IEEE1394_MATCH_SPECIFIER_ID
|
382 IEEE1394_MATCH_VERSION
,
383 .vendor_id
= VENDOR_LACIE
,
384 .model_id
= 0x00f970,
385 .specifier_id
= SPECIFIER_1394TA
,
386 .version
= VERSION_AVC
,
387 .driver_data
= (kernel_ulong_t
)&lacie_speakers
,
389 /* Behringer,F-Control Audio 202 */
391 .match_flags
= IEEE1394_MATCH_VENDOR_ID
|
392 IEEE1394_MATCH_MODEL_ID
,
393 .vendor_id
= VENDOR_BEHRINGER
,
394 .model_id
= 0x00fc22,
397 * Any Mackie(Loud) models (name string/model id):
398 * Onyx-i series (former models): 0x081216
399 * Mackie Onyx Satellite: 0x00200f
400 * Tapco LINK.firewire 4x6: 0x000460
407 .match_flags
= IEEE1394_MATCH_VENDOR_ID
|
408 IEEE1394_MATCH_SPECIFIER_ID
|
409 IEEE1394_MATCH_VERSION
,
410 .vendor_id
= VENDOR_LOUD
,
411 .specifier_id
= SPECIFIER_1394TA
,
412 .version
= VERSION_AVC
,
414 /* TASCAM, FireOne */
416 .match_flags
= IEEE1394_MATCH_VENDOR_ID
|
417 IEEE1394_MATCH_MODEL_ID
,
418 .vendor_id
= VENDOR_TASCAM
,
419 .model_id
= 0x800007,
421 /* Stanton, Stanton Controllers & Systems 1 Mixer (SCS.1m) */
423 .match_flags
= IEEE1394_MATCH_VENDOR_ID
|
424 IEEE1394_MATCH_MODEL_ID
,
425 .vendor_id
= OUI_STANTON
,
426 .model_id
= 0x001000,
428 /* Stanton, Stanton Controllers & Systems 1 Deck (SCS.1d) */
430 .match_flags
= IEEE1394_MATCH_VENDOR_ID
|
431 IEEE1394_MATCH_MODEL_ID
,
432 .vendor_id
= OUI_STANTON
,
433 .model_id
= 0x002000,
437 MODULE_DEVICE_TABLE(ieee1394
, oxfw_id_table
);
439 static struct fw_driver oxfw_driver
= {
441 .owner
= THIS_MODULE
,
442 .name
= KBUILD_MODNAME
,
446 .update
= oxfw_bus_reset
,
447 .remove
= oxfw_remove
,
448 .id_table
= oxfw_id_table
,
451 static int __init
snd_oxfw_init(void)
453 return driver_register(&oxfw_driver
.driver
);
456 static void __exit
snd_oxfw_exit(void)
458 driver_unregister(&oxfw_driver
.driver
);
461 module_init(snd_oxfw_init
);
462 module_exit(snd_oxfw_exit
);