xref: /openbmc/linux/sound/firewire/oxfw/oxfw.c (revision 808643ea)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * oxfw.c - a part of driver for OXFW970/971 based devices
4  *
5  * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
6  */
7 
8 #include "oxfw.h"
9 
10 #define OXFORD_FIRMWARE_ID_ADDRESS	(CSR_REGISTER_BASE + 0x50000)
11 /* 0x970?vvvv or 0x971?vvvv, where vvvv = firmware version */
12 
13 #define OXFORD_HARDWARE_ID_ADDRESS	(CSR_REGISTER_BASE + 0x90020)
14 #define OXFORD_HARDWARE_ID_OXFW970	0x39443841
15 #define OXFORD_HARDWARE_ID_OXFW971	0x39373100
16 
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
23 #define OUI_APOGEE		0x0003db
24 
25 #define MODEL_SATELLITE		0x00200f
26 #define MODEL_SCS1M		0x001000
27 #define MODEL_DUET_FW		0x01dddd
28 
29 #define SPECIFIER_1394TA	0x00a02d
30 #define VERSION_AVC		0x010001
31 
32 MODULE_DESCRIPTION("Oxford Semiconductor FW970/971 driver");
33 MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
34 MODULE_LICENSE("GPL v2");
35 MODULE_ALIAS("snd-firewire-speakers");
36 MODULE_ALIAS("snd-scs1x");
37 
38 struct compat_info {
39 	const char *driver_name;
40 	const char *vendor_name;
41 	const char *model_name;
42 };
43 
44 static bool detect_loud_models(struct fw_unit *unit)
45 {
46 	const char *const models[] = {
47 		"Onyxi",
48 		"Onyx-i",
49 		"Onyx 1640i",
50 		"d.Pro",
51 		"U.420"};
52 	char model[32];
53 	int err;
54 
55 	err = fw_csr_string(unit->directory, CSR_MODEL,
56 			    model, sizeof(model));
57 	if (err < 0)
58 		return false;
59 
60 	return match_string(models, ARRAY_SIZE(models), model) >= 0;
61 }
62 
63 static int name_card(struct snd_oxfw *oxfw, const struct ieee1394_device_id *entry)
64 {
65 	struct fw_device *fw_dev = fw_parent_device(oxfw->unit);
66 	const struct compat_info *info;
67 	char vendor[24];
68 	char model[32];
69 	const char *d, *v, *m;
70 	u32 firmware;
71 	int err;
72 
73 	/* get vendor name from root directory */
74 	err = fw_csr_string(fw_dev->config_rom + 5, CSR_VENDOR,
75 			    vendor, sizeof(vendor));
76 	if (err < 0)
77 		goto end;
78 
79 	/* get model name from unit directory */
80 	err = fw_csr_string(oxfw->unit->directory, CSR_MODEL,
81 			    model, sizeof(model));
82 	if (err < 0)
83 		goto end;
84 
85 	err = snd_fw_transaction(oxfw->unit, TCODE_READ_QUADLET_REQUEST,
86 				 OXFORD_FIRMWARE_ID_ADDRESS, &firmware, 4, 0);
87 	if (err < 0)
88 		goto end;
89 	be32_to_cpus(&firmware);
90 
91 	if (firmware >> 20 == 0x970)
92 		oxfw->quirks |= SND_OXFW_QUIRK_JUMBO_PAYLOAD;
93 
94 	/* to apply card definitions */
95 	if (entry->vendor_id == VENDOR_GRIFFIN || entry->vendor_id == VENDOR_LACIE) {
96 		info = (const struct compat_info *)entry->driver_data;
97 		d = info->driver_name;
98 		v = info->vendor_name;
99 		m = info->model_name;
100 	} else {
101 		d = "OXFW";
102 		v = vendor;
103 		m = model;
104 	}
105 
106 	strcpy(oxfw->card->driver, d);
107 	strcpy(oxfw->card->mixername, m);
108 	strcpy(oxfw->card->shortname, m);
109 
110 	snprintf(oxfw->card->longname, sizeof(oxfw->card->longname),
111 		 "%s %s (OXFW%x %04x), GUID %08x%08x at %s, S%d",
112 		 v, m, firmware >> 20, firmware & 0xffff,
113 		 fw_dev->config_rom[3], fw_dev->config_rom[4],
114 		 dev_name(&oxfw->unit->device), 100 << fw_dev->max_speed);
115 end:
116 	return err;
117 }
118 
119 static void oxfw_card_free(struct snd_card *card)
120 {
121 	struct snd_oxfw *oxfw = card->private_data;
122 
123 	if (oxfw->has_output || oxfw->has_input)
124 		snd_oxfw_stream_destroy_duplex(oxfw);
125 
126 	mutex_destroy(&oxfw->mutex);
127 	fw_unit_put(oxfw->unit);
128 }
129 
130 static int detect_quirks(struct snd_oxfw *oxfw, const struct ieee1394_device_id *entry)
131 {
132 	struct fw_device *fw_dev = fw_parent_device(oxfw->unit);
133 	struct fw_csr_iterator it;
134 	int key, val;
135 	int vendor, model;
136 
137 	/*
138 	 * Add ALSA control elements for two models to keep compatibility to
139 	 * old firewire-speaker module.
140 	 */
141 	if (entry->vendor_id == VENDOR_GRIFFIN)
142 		return snd_oxfw_add_spkr(oxfw, false);
143 	if (entry->vendor_id == VENDOR_LACIE)
144 		return snd_oxfw_add_spkr(oxfw, true);
145 
146 	/*
147 	 * Stanton models supports asynchronous transactions for unique MIDI
148 	 * messages.
149 	 */
150 	if (entry->vendor_id == OUI_STANTON) {
151 		oxfw->quirks |= SND_OXFW_QUIRK_SCS_TRANSACTION;
152 		if (entry->model_id == MODEL_SCS1M)
153 			oxfw->quirks |= SND_OXFW_QUIRK_BLOCKING_TRANSMISSION;
154 
155 		// No physical MIDI ports.
156 		oxfw->midi_input_ports = 0;
157 		oxfw->midi_output_ports = 0;
158 
159 		return snd_oxfw_scs1x_add(oxfw);
160 	}
161 
162 	if (entry->vendor_id == OUI_APOGEE && entry->model_id == MODEL_DUET_FW)
163 		oxfw->quirks |= SND_OXFW_QUIRK_BLOCKING_TRANSMISSION;
164 
165 	/*
166 	 * TASCAM FireOne has physical control and requires a pair of additional
167 	 * MIDI ports.
168 	 */
169 	if (entry->vendor_id == VENDOR_TASCAM) {
170 		oxfw->midi_input_ports++;
171 		oxfw->midi_output_ports++;
172 		return 0;
173 	}
174 
175 	/* Seek from Root Directory of Config ROM. */
176 	vendor = model = 0;
177 	fw_csr_iterator_init(&it, fw_dev->config_rom + 5);
178 	while (fw_csr_iterator_next(&it, &key, &val)) {
179 		if (key == CSR_VENDOR)
180 			vendor = val;
181 		else if (key == CSR_MODEL)
182 			model = val;
183 	}
184 
185 	/*
186 	 * Mackie Onyx Satellite with base station has a quirk to report a wrong
187 	 * value in 'dbs' field of CIP header against its format information.
188 	 */
189 	if (vendor == VENDOR_LOUD && model == MODEL_SATELLITE)
190 		oxfw->quirks |= SND_OXFW_QUIRK_WRONG_DBS;
191 
192 	return 0;
193 }
194 
195 static int oxfw_probe(struct fw_unit *unit, const struct ieee1394_device_id *entry)
196 {
197 	struct snd_card *card;
198 	struct snd_oxfw *oxfw;
199 	int err;
200 
201 	if (entry->vendor_id == VENDOR_LOUD && entry->model_id == 0 && !detect_loud_models(unit))
202 		return -ENODEV;
203 
204 	err = snd_card_new(&unit->device, -1, NULL, THIS_MODULE, sizeof(*oxfw), &card);
205 	if (err < 0)
206 		return err;
207 	card->private_free = oxfw_card_free;
208 
209 	oxfw = card->private_data;
210 	oxfw->unit = fw_unit_get(unit);
211 	dev_set_drvdata(&unit->device, oxfw);
212 	oxfw->card = card;
213 
214 	mutex_init(&oxfw->mutex);
215 	spin_lock_init(&oxfw->lock);
216 	init_waitqueue_head(&oxfw->hwdep_wait);
217 
218 	err = name_card(oxfw, entry);
219 	if (err < 0)
220 		goto error;
221 
222 	err = snd_oxfw_stream_discover(oxfw);
223 	if (err < 0)
224 		goto error;
225 
226 	err = detect_quirks(oxfw, entry);
227 	if (err < 0)
228 		goto error;
229 
230 	if (oxfw->has_output || oxfw->has_input) {
231 		err = snd_oxfw_stream_init_duplex(oxfw);
232 		if (err < 0)
233 			goto error;
234 
235 		err = snd_oxfw_create_pcm(oxfw);
236 		if (err < 0)
237 			goto error;
238 
239 		snd_oxfw_proc_init(oxfw);
240 
241 		err = snd_oxfw_create_midi(oxfw);
242 		if (err < 0)
243 			goto error;
244 
245 		err = snd_oxfw_create_hwdep(oxfw);
246 		if (err < 0)
247 			goto error;
248 	}
249 
250 	err = snd_card_register(card);
251 	if (err < 0)
252 		goto error;
253 
254 	return 0;
255 error:
256 	snd_card_free(card);
257 	return err;
258 }
259 
260 static void oxfw_bus_reset(struct fw_unit *unit)
261 {
262 	struct snd_oxfw *oxfw = dev_get_drvdata(&unit->device);
263 
264 	fcp_bus_reset(oxfw->unit);
265 
266 	if (oxfw->has_output || oxfw->has_input) {
267 		mutex_lock(&oxfw->mutex);
268 		snd_oxfw_stream_update_duplex(oxfw);
269 		mutex_unlock(&oxfw->mutex);
270 	}
271 
272 	if (oxfw->quirks & SND_OXFW_QUIRK_SCS_TRANSACTION)
273 		snd_oxfw_scs1x_update(oxfw);
274 }
275 
276 static void oxfw_remove(struct fw_unit *unit)
277 {
278 	struct snd_oxfw *oxfw = dev_get_drvdata(&unit->device);
279 
280 	// Block till all of ALSA character devices are released.
281 	snd_card_free(oxfw->card);
282 }
283 
284 static const struct compat_info griffin_firewave = {
285 	.driver_name = "FireWave",
286 	.vendor_name = "Griffin",
287 	.model_name = "FireWave",
288 };
289 
290 static const struct compat_info lacie_speakers = {
291 	.driver_name = "FWSpeakers",
292 	.vendor_name = "LaCie",
293 	.model_name = "FireWire Speakers",
294 };
295 
296 #define OXFW_DEV_ENTRY(vendor, model, data) \
297 { \
298 	.match_flags  = IEEE1394_MATCH_VENDOR_ID | \
299 			IEEE1394_MATCH_MODEL_ID | \
300 			IEEE1394_MATCH_SPECIFIER_ID | \
301 			IEEE1394_MATCH_VERSION, \
302 	.vendor_id    = vendor, \
303 	.model_id     = model, \
304 	.specifier_id = SPECIFIER_1394TA, \
305 	.version      = VERSION_AVC, \
306 	.driver_data  = (kernel_ulong_t)data, \
307 }
308 
309 static const struct ieee1394_device_id oxfw_id_table[] = {
310 	//
311 	// OXFW970 devices:
312 	// Initial firmware has a quirk to postpone isoc packet transmission during finishing async
313 	// transaction. As a result, several isochronous cycles are skipped to transfer the packets
314 	// and the audio data frames which should have been transferred during the cycles are put
315 	// into packet at the first isoc cycle after the postpone. Furthermore, the value of SYT
316 	// field in CIP header is not reliable as synchronization timing,
317 	//
318 	OXFW_DEV_ENTRY(VENDOR_GRIFFIN, 0x00f970, &griffin_firewave),
319 	OXFW_DEV_ENTRY(VENDOR_LACIE, 0x00f970, &lacie_speakers),
320 	// Behringer,F-Control Audio 202. The value of SYT field is not reliable at all.
321 	OXFW_DEV_ENTRY(VENDOR_BEHRINGER, 0x00fc22, NULL),
322 	// Loud Technologies, Tapco Link.FireWire 4x6. The value of SYT field is always 0xffff.
323 	OXFW_DEV_ENTRY(VENDOR_LOUD, 0x000460, NULL),
324 	// Loud Technologies, Mackie Onyx Satellite. Although revised version of firmware is
325 	// installed to avoid the postpone, the value of SYT field is always 0xffff.
326 	OXFW_DEV_ENTRY(VENDOR_LOUD, MODEL_SATELLITE, NULL),
327 	// Miglia HarmonyAudio. Not yet identified.
328 
329 	//
330 	// OXFW971 devices:
331 	// The value of SYT field in CIP header is enough reliable. Both of blocking and non-blocking
332 	// transmission methods are available.
333 	//
334 	// Any Mackie(Loud) models (name string/model id):
335 	//  Onyx-i series (former models):	0x081216
336 	//  Onyx 1640i:				0x001640
337 	//  d.2 pro/d.4 pro (built-in card):	Unknown
338 	//  U.420:				Unknown
339 	//  U.420d:				Unknown
340 	{
341 		.match_flags	= IEEE1394_MATCH_VENDOR_ID |
342 				  IEEE1394_MATCH_SPECIFIER_ID |
343 				  IEEE1394_MATCH_VERSION,
344 		.vendor_id	= VENDOR_LOUD,
345 		.model_id	= 0,
346 		.specifier_id	= SPECIFIER_1394TA,
347 		.version	= VERSION_AVC,
348 	},
349 	// TASCAM, FireOne.
350 	OXFW_DEV_ENTRY(VENDOR_TASCAM, 0x800007, NULL),
351 	// Stanton, Stanton Controllers & Systems 1 Mixer (SCS.1m).
352 	OXFW_DEV_ENTRY(OUI_STANTON, MODEL_SCS1M, NULL),
353 	// Stanton, Stanton Controllers & Systems 1 Deck (SCS.1d).
354 	OXFW_DEV_ENTRY(OUI_STANTON, 0x002000, NULL),
355 	// APOGEE, duet FireWire.
356 	OXFW_DEV_ENTRY(OUI_APOGEE, MODEL_DUET_FW, NULL),
357 	{ }
358 };
359 MODULE_DEVICE_TABLE(ieee1394, oxfw_id_table);
360 
361 static struct fw_driver oxfw_driver = {
362 	.driver   = {
363 		.owner	= THIS_MODULE,
364 		.name	= KBUILD_MODNAME,
365 		.bus	= &fw_bus_type,
366 	},
367 	.probe    = oxfw_probe,
368 	.update   = oxfw_bus_reset,
369 	.remove   = oxfw_remove,
370 	.id_table = oxfw_id_table,
371 };
372 
373 static int __init snd_oxfw_init(void)
374 {
375 	return driver_register(&oxfw_driver.driver);
376 }
377 
378 static void __exit snd_oxfw_exit(void)
379 {
380 	driver_unregister(&oxfw_driver.driver);
381 }
382 
383 module_init(snd_oxfw_init);
384 module_exit(snd_oxfw_exit);
385