Merge tag 'powerpc-5.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux/fpc-iii.git] / sound / firewire / tascam / tascam.c
blob75f2edd8e78fb2b5f92f65f9bb34988b2a4e24f6
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * tascam.c - a part of driver for TASCAM FireWire series
5 * Copyright (c) 2015 Takashi Sakamoto
6 */
8 #include "tascam.h"
10 MODULE_DESCRIPTION("TASCAM FireWire series Driver");
11 MODULE_AUTHOR("Takashi Sakamoto <o-takashi@sakamocchi.jp>");
12 MODULE_LICENSE("GPL v2");
14 static const struct snd_tscm_spec model_specs[] = {
16 .name = "FW-1884",
17 .has_adat = true,
18 .has_spdif = true,
19 .pcm_capture_analog_channels = 8,
20 .pcm_playback_analog_channels = 8,
21 .midi_capture_ports = 4,
22 .midi_playback_ports = 4,
25 .name = "FW-1082",
26 .has_adat = false,
27 .has_spdif = true,
28 .pcm_capture_analog_channels = 8,
29 .pcm_playback_analog_channels = 2,
30 .midi_capture_ports = 2,
31 .midi_playback_ports = 2,
34 .name = "FW-1804",
35 .has_adat = true,
36 .has_spdif = true,
37 .pcm_capture_analog_channels = 8,
38 .pcm_playback_analog_channels = 2,
39 .midi_capture_ports = 2,
40 .midi_playback_ports = 4,
44 static int identify_model(struct snd_tscm *tscm)
46 struct fw_device *fw_dev = fw_parent_device(tscm->unit);
47 const u32 *config_rom = fw_dev->config_rom;
48 char model[9];
49 unsigned int i;
50 u8 c;
52 if (fw_dev->config_rom_length < 30) {
53 dev_err(&tscm->unit->device,
54 "Configuration ROM is too short.\n");
55 return -ENODEV;
58 /* Pick up model name from certain addresses. */
59 for (i = 0; i < 8; i++) {
60 c = config_rom[28 + i / 4] >> (24 - 8 * (i % 4));
61 if (c == '\0')
62 break;
63 model[i] = c;
65 model[i] = '\0';
67 for (i = 0; i < ARRAY_SIZE(model_specs); i++) {
68 if (strcmp(model, model_specs[i].name) == 0) {
69 tscm->spec = &model_specs[i];
70 break;
73 if (tscm->spec == NULL)
74 return -ENODEV;
76 strcpy(tscm->card->driver, "FW-TASCAM");
77 strcpy(tscm->card->shortname, model);
78 strcpy(tscm->card->mixername, model);
79 snprintf(tscm->card->longname, sizeof(tscm->card->longname),
80 "TASCAM %s, GUID %08x%08x at %s, S%d", model,
81 fw_dev->config_rom[3], fw_dev->config_rom[4],
82 dev_name(&tscm->unit->device), 100 << fw_dev->max_speed);
84 return 0;
87 static void tscm_card_free(struct snd_card *card)
89 struct snd_tscm *tscm = card->private_data;
91 snd_tscm_transaction_unregister(tscm);
92 snd_tscm_stream_destroy_duplex(tscm);
95 static void do_registration(struct work_struct *work)
97 struct snd_tscm *tscm = container_of(work, struct snd_tscm, dwork.work);
98 int err;
100 err = snd_card_new(&tscm->unit->device, -1, NULL, THIS_MODULE, 0,
101 &tscm->card);
102 if (err < 0)
103 return;
104 tscm->card->private_free = tscm_card_free;
105 tscm->card->private_data = tscm;
107 err = identify_model(tscm);
108 if (err < 0)
109 goto error;
111 err = snd_tscm_transaction_register(tscm);
112 if (err < 0)
113 goto error;
115 err = snd_tscm_stream_init_duplex(tscm);
116 if (err < 0)
117 goto error;
119 snd_tscm_proc_init(tscm);
121 err = snd_tscm_create_pcm_devices(tscm);
122 if (err < 0)
123 goto error;
125 err = snd_tscm_create_midi_devices(tscm);
126 if (err < 0)
127 goto error;
129 err = snd_tscm_create_hwdep_device(tscm);
130 if (err < 0)
131 goto error;
133 err = snd_card_register(tscm->card);
134 if (err < 0)
135 goto error;
137 tscm->registered = true;
139 return;
140 error:
141 snd_card_free(tscm->card);
142 dev_info(&tscm->unit->device,
143 "Sound card registration failed: %d\n", err);
146 static int snd_tscm_probe(struct fw_unit *unit,
147 const struct ieee1394_device_id *entry)
149 struct snd_tscm *tscm;
151 /* Allocate this independent of sound card instance. */
152 tscm = devm_kzalloc(&unit->device, sizeof(struct snd_tscm), GFP_KERNEL);
153 if (!tscm)
154 return -ENOMEM;
155 tscm->unit = fw_unit_get(unit);
156 dev_set_drvdata(&unit->device, tscm);
158 mutex_init(&tscm->mutex);
159 spin_lock_init(&tscm->lock);
160 init_waitqueue_head(&tscm->hwdep_wait);
162 /* Allocate and register this sound card later. */
163 INIT_DEFERRABLE_WORK(&tscm->dwork, do_registration);
164 snd_fw_schedule_registration(unit, &tscm->dwork);
166 return 0;
169 static void snd_tscm_update(struct fw_unit *unit)
171 struct snd_tscm *tscm = dev_get_drvdata(&unit->device);
173 /* Postpone a workqueue for deferred registration. */
174 if (!tscm->registered)
175 snd_fw_schedule_registration(unit, &tscm->dwork);
177 snd_tscm_transaction_reregister(tscm);
180 * After registration, userspace can start packet streaming, then this
181 * code block works fine.
183 if (tscm->registered) {
184 mutex_lock(&tscm->mutex);
185 snd_tscm_stream_update_duplex(tscm);
186 mutex_unlock(&tscm->mutex);
190 static void snd_tscm_remove(struct fw_unit *unit)
192 struct snd_tscm *tscm = dev_get_drvdata(&unit->device);
195 * Confirm to stop the work for registration before the sound card is
196 * going to be released. The work is not scheduled again because bus
197 * reset handler is not called anymore.
199 cancel_delayed_work_sync(&tscm->dwork);
201 if (tscm->registered) {
202 // Block till all of ALSA character devices are released.
203 snd_card_free(tscm->card);
206 mutex_destroy(&tscm->mutex);
207 fw_unit_put(tscm->unit);
210 static const struct ieee1394_device_id snd_tscm_id_table[] = {
211 // Tascam, FW-1884.
213 .match_flags = IEEE1394_MATCH_VENDOR_ID |
214 IEEE1394_MATCH_SPECIFIER_ID |
215 IEEE1394_MATCH_VERSION,
216 .vendor_id = 0x00022e,
217 .specifier_id = 0x00022e,
218 .version = 0x800000,
220 // Tascam, FE-8 (.version = 0x800001)
221 // This kernel module doesn't support FE-8 because the most of features
222 // can be implemented in userspace without any specific support of this
223 // module.
225 // .version = 0x800002 is unknown.
227 // Tascam, FW-1082.
229 .match_flags = IEEE1394_MATCH_VENDOR_ID |
230 IEEE1394_MATCH_SPECIFIER_ID |
231 IEEE1394_MATCH_VERSION,
232 .vendor_id = 0x00022e,
233 .specifier_id = 0x00022e,
234 .version = 0x800003,
236 // Tascam, FW-1804.
238 .match_flags = IEEE1394_MATCH_VENDOR_ID |
239 IEEE1394_MATCH_SPECIFIER_ID |
240 IEEE1394_MATCH_VERSION,
241 .vendor_id = 0x00022e,
242 .specifier_id = 0x00022e,
243 .version = 0x800004,
247 MODULE_DEVICE_TABLE(ieee1394, snd_tscm_id_table);
249 static struct fw_driver tscm_driver = {
250 .driver = {
251 .owner = THIS_MODULE,
252 .name = KBUILD_MODNAME,
253 .bus = &fw_bus_type,
255 .probe = snd_tscm_probe,
256 .update = snd_tscm_update,
257 .remove = snd_tscm_remove,
258 .id_table = snd_tscm_id_table,
261 static int __init snd_tscm_init(void)
263 return driver_register(&tscm_driver.driver);
266 static void __exit snd_tscm_exit(void)
268 driver_unregister(&tscm_driver.driver);
271 module_init(snd_tscm_init);
272 module_exit(snd_tscm_exit);