Merge 4.14.73 into android-4.14-p
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / sound / firewire / bebob / bebob_maudio.c
CommitLineData
9076c22d
TS
1/*
2 * bebob_maudio.c - a part of driver for BeBoB based devices
3 *
4 * Copyright (c) 2013-2014 Takashi Sakamoto
5 *
6 * Licensed under the terms of the GNU General Public License, version 2.
7 */
8
9#include "./bebob.h"
3149ac48 10#include <sound/control.h>
9076c22d
TS
11
12/*
3149ac48 13 * Just powering on, Firewire 410/Audiophile/1814 and ProjectMix I/O wait to
9076c22d
TS
14 * download firmware blob. To enable these devices, drivers should upload
15 * firmware blob and send a command to initialize configuration to factory
16 * settings when completing uploading. Then these devices generate bus reset
17 * and are recognized as new devices with the firmware.
18 *
a2b2a779
TS
19 * But with firmware version 5058 or later, the firmware is stored to flash
20 * memory in the device and drivers can tell bootloader to load the firmware
21 * by sending a cue. This cue must be sent one time.
22 *
9076c22d
TS
23 * For streaming, both of output and input streams are needed for Firewire 410
24 * and Ozonic. The single stream is OK for the other devices even if the clock
25 * source is not SYT-Match (I note no devices use SYT-Match).
26 *
27 * Without streaming, the devices except for Firewire Audiophile can mix any
28 * input and output. For this reason, Audiophile cannot be used as standalone
29 * mixer.
3149ac48
TS
30 *
31 * Firewire 1814 and ProjectMix I/O uses special firmware. It will be freezed
32 * when receiving any commands which the firmware can't understand. These
33 * devices utilize completely different system to control. It is some
34 * write-transaction directly into a certain address. All of addresses for mixer
35 * functionality is between 0xffc700700000 to 0xffc70070009c.
9076c22d
TS
36 */
37
a2b2a779
TS
38/* Offset from information register */
39#define INFO_OFFSET_SW_DATE 0x20
40
41/* Bootloader Protocol Version 1 */
42#define MAUDIO_BOOTLOADER_CUE1 0x00000001
43/*
44 * Initializing configuration to factory settings (= 0x1101), (swapped in line),
45 * Command code is zero (= 0x00),
46 * the number of operands is zero (= 0x00)(at least significant byte)
47 */
48#define MAUDIO_BOOTLOADER_CUE2 0x01110000
49/* padding */
50#define MAUDIO_BOOTLOADER_CUE3 0x00000000
51
9b5f0edf 52#define MAUDIO_SPECIFIC_ADDRESS 0xffc700000000ULL
9076c22d
TS
53
54#define METER_OFFSET 0x00600000
55
56/* some device has sync info after metering data */
3149ac48 57#define METER_SIZE_SPECIAL 84 /* with sync info */
9076c22d
TS
58#define METER_SIZE_FW410 76 /* with sync info */
59#define METER_SIZE_AUDIOPHILE 60 /* with sync info */
60#define METER_SIZE_SOLO 52 /* with sync info */
61#define METER_SIZE_OZONIC 48
62#define METER_SIZE_NRV10 80
63
64/* labels for metering */
65#define ANA_IN "Analog In"
66#define ANA_OUT "Analog Out"
67#define DIG_IN "Digital In"
68#define SPDIF_IN "S/PDIF In"
69#define ADAT_IN "ADAT In"
70#define DIG_OUT "Digital Out"
71#define SPDIF_OUT "S/PDIF Out"
72#define ADAT_OUT "ADAT Out"
73#define STRM_IN "Stream In"
74#define AUX_OUT "Aux Out"
75#define HP_OUT "HP Out"
76/* for NRV */
77#define UNKNOWN_METER "Unknown"
78
3149ac48
TS
79struct special_params {
80 bool is1814;
81 unsigned int clk_src;
82 unsigned int dig_in_fmt;
83 unsigned int dig_out_fmt;
84 unsigned int clk_lock;
85 struct snd_ctl_elem_id *ctl_id_sync;
86};
87
a2b2a779
TS
88/*
89 * For some M-Audio devices, this module just send cue to load firmware. After
90 * loading, the device generates bus reset and newly detected.
91 *
92 * If we make any transactions to load firmware, the operation may failed.
93 */
94int snd_bebob_maudio_load_firmware(struct fw_unit *unit)
95{
96 struct fw_device *device = fw_parent_device(unit);
97 int err, rcode;
98 u64 date;
7c4881d6 99 __le32 *cues;
a2b2a779
TS
100
101 /* check date of software used to build */
102 err = snd_bebob_read_block(unit, INFO_OFFSET_SW_DATE,
103 &date, sizeof(u64));
104 if (err < 0)
7c4881d6 105 return err;
a2b2a779
TS
106 /*
107 * firmware version 5058 or later has date later than "20070401", but
108 * 'date' is not null-terminated.
109 */
9b5f0edf 110 if (date < 0x3230303730343031LL) {
a2b2a779
TS
111 dev_err(&unit->device,
112 "Use firmware version 5058 or later\n");
7c4881d6 113 return -ENXIO;
a2b2a779
TS
114 }
115
7c4881d6
TS
116 cues = kmalloc_array(3, sizeof(*cues), GFP_KERNEL);
117 if (!cues)
118 return -ENOMEM;
119
120 cues[0] = cpu_to_le32(MAUDIO_BOOTLOADER_CUE1);
121 cues[1] = cpu_to_le32(MAUDIO_BOOTLOADER_CUE2);
122 cues[2] = cpu_to_le32(MAUDIO_BOOTLOADER_CUE3);
123
a2b2a779
TS
124 rcode = fw_run_transaction(device->card, TCODE_WRITE_BLOCK_REQUEST,
125 device->node_id, device->generation,
126 device->max_speed, BEBOB_ADDR_REG_REQ,
7c4881d6
TS
127 cues, 3 * sizeof(*cues));
128 kfree(cues);
a2b2a779
TS
129 if (rcode != RCODE_COMPLETE) {
130 dev_err(&unit->device,
131 "Failed to send a cue to load firmware\n");
132 err = -EIO;
133 }
7c4881d6 134
a2b2a779
TS
135 return err;
136}
137
9076c22d
TS
138static inline int
139get_meter(struct snd_bebob *bebob, void *buf, unsigned int size)
140{
141 return snd_fw_transaction(bebob->unit, TCODE_READ_BLOCK_REQUEST,
142 MAUDIO_SPECIFIC_ADDRESS + METER_OFFSET,
143 buf, size, 0);
144}
145
3149ac48
TS
146static int
147check_clk_sync(struct snd_bebob *bebob, unsigned int size, bool *sync)
148{
149 int err;
150 u8 *buf;
151
152 buf = kmalloc(size, GFP_KERNEL);
153 if (buf == NULL)
154 return -ENOMEM;
155
156 err = get_meter(bebob, buf, size);
157 if (err < 0)
158 goto end;
159
160 /* if synced, this value is the same as SFC of FDF in CIP header */
161 *sync = (buf[size - 2] != 0xff);
162end:
163 kfree(buf);
164 return err;
165}
166
167/*
168 * dig_fmt: 0x00:S/PDIF, 0x01:ADAT
169 * clk_lock: 0x00:unlock, 0x01:lock
170 */
171static int
172avc_maudio_set_special_clk(struct snd_bebob *bebob, unsigned int clk_src,
173 unsigned int dig_in_fmt, unsigned int dig_out_fmt,
174 unsigned int clk_lock)
175{
176 struct special_params *params = bebob->maudio_special_quirk;
177 int err;
178 u8 *buf;
179
180 if (amdtp_stream_running(&bebob->rx_stream) ||
181 amdtp_stream_running(&bebob->tx_stream))
182 return -EBUSY;
183
184 buf = kmalloc(12, GFP_KERNEL);
185 if (buf == NULL)
186 return -ENOMEM;
187
188 buf[0] = 0x00; /* CONTROL */
189 buf[1] = 0xff; /* UNIT */
190 buf[2] = 0x00; /* vendor dependent */
191 buf[3] = 0x04; /* company ID high */
192 buf[4] = 0x00; /* company ID middle */
193 buf[5] = 0x04; /* company ID low */
194 buf[6] = 0xff & clk_src; /* clock source */
195 buf[7] = 0xff & dig_in_fmt; /* input digital format */
196 buf[8] = 0xff & dig_out_fmt; /* output digital format */
197 buf[9] = 0xff & clk_lock; /* lock these settings */
198 buf[10] = 0x00; /* padding */
199 buf[11] = 0x00; /* padding */
200
201 err = fcp_avc_transaction(bebob->unit, buf, 12, buf, 12,
202 BIT(1) | BIT(2) | BIT(3) | BIT(4) |
203 BIT(5) | BIT(6) | BIT(7) | BIT(8) |
204 BIT(9));
205 if ((err > 0) && (err < 10))
206 err = -EIO;
207 else if (buf[0] == 0x08) /* NOT IMPLEMENTED */
208 err = -ENOSYS;
209 else if (buf[0] == 0x0a) /* REJECTED */
210 err = -EINVAL;
211 if (err < 0)
212 goto end;
213
214 params->clk_src = buf[6];
215 params->dig_in_fmt = buf[7];
216 params->dig_out_fmt = buf[8];
217 params->clk_lock = buf[9];
218
219 if (params->ctl_id_sync)
220 snd_ctl_notify(bebob->card, SNDRV_CTL_EVENT_MASK_VALUE,
221 params->ctl_id_sync);
222
223 err = 0;
224end:
225 kfree(buf);
226 return err;
227}
228static void
229special_stream_formation_set(struct snd_bebob *bebob)
230{
231 static const unsigned int ch_table[2][2][3] = {
232 /* AMDTP_OUT_STREAM */
233 { { 6, 6, 4 }, /* SPDIF */
234 { 12, 8, 4 } }, /* ADAT */
235 /* AMDTP_IN_STREAM */
236 { { 10, 10, 2 }, /* SPDIF */
237 { 16, 12, 2 } } /* ADAT */
238 };
239 struct special_params *params = bebob->maudio_special_quirk;
240 unsigned int i, max;
241
242 max = SND_BEBOB_STRM_FMT_ENTRIES - 1;
243 if (!params->is1814)
244 max -= 2;
245
246 for (i = 0; i < max; i++) {
247 bebob->tx_stream_formations[i + 1].pcm =
248 ch_table[AMDTP_IN_STREAM][params->dig_in_fmt][i / 2];
249 bebob->tx_stream_formations[i + 1].midi = 1;
250
251 bebob->rx_stream_formations[i + 1].pcm =
252 ch_table[AMDTP_OUT_STREAM][params->dig_out_fmt][i / 2];
253 bebob->rx_stream_formations[i + 1].midi = 1;
254 }
255}
256
257static int add_special_controls(struct snd_bebob *bebob);
258int
259snd_bebob_maudio_special_discover(struct snd_bebob *bebob, bool is1814)
260{
261 struct special_params *params;
262 int err;
263
264 params = kzalloc(sizeof(struct special_params), GFP_KERNEL);
265 if (params == NULL)
266 return -ENOMEM;
267
268 mutex_lock(&bebob->mutex);
269
270 bebob->maudio_special_quirk = (void *)params;
271 params->is1814 = is1814;
272
273 /* initialize these parameters because driver is not allowed to ask */
274 bebob->rx_stream.context = ERR_PTR(-1);
275 bebob->tx_stream.context = ERR_PTR(-1);
276 err = avc_maudio_set_special_clk(bebob, 0x03, 0x00, 0x00, 0x00);
277 if (err < 0) {
278 dev_err(&bebob->unit->device,
279 "fail to initialize clock params: %d\n", err);
280 goto end;
281 }
282
283 err = add_special_controls(bebob);
284 if (err < 0)
285 goto end;
286
287 special_stream_formation_set(bebob);
288
289 if (params->is1814) {
290 bebob->midi_input_ports = 1;
291 bebob->midi_output_ports = 1;
292 } else {
293 bebob->midi_input_ports = 2;
294 bebob->midi_output_ports = 2;
295 }
296end:
3149ac48
TS
297 mutex_unlock(&bebob->mutex);
298 return err;
299}
300
301/* Input plug shows actual rate. Output plug is needless for this purpose. */
302static int special_get_rate(struct snd_bebob *bebob, unsigned int *rate)
303{
304 int err, trials;
305
306 trials = 0;
307 do {
308 err = avc_general_get_sig_fmt(bebob->unit, rate,
309 AVC_GENERAL_PLUG_DIR_IN, 0);
310 } while (err == -EAGAIN && ++trials < 3);
311
312 return err;
313}
314static int special_set_rate(struct snd_bebob *bebob, unsigned int rate)
315{
316 struct special_params *params = bebob->maudio_special_quirk;
317 int err;
318
319 err = avc_general_set_sig_fmt(bebob->unit, rate,
320 AVC_GENERAL_PLUG_DIR_OUT, 0);
321 if (err < 0)
322 goto end;
323
324 /*
325 * Just after changing sampling rate for output, a followed command
326 * for input is easy to fail. This is a workaround fot this issue.
327 */
328 msleep(100);
329
330 err = avc_general_set_sig_fmt(bebob->unit, rate,
331 AVC_GENERAL_PLUG_DIR_IN, 0);
332 if (err < 0)
333 goto end;
334
335 if (params->ctl_id_sync)
336 snd_ctl_notify(bebob->card, SNDRV_CTL_EVENT_MASK_VALUE,
337 params->ctl_id_sync);
338end:
339 return err;
340}
341
342/* Clock source control for special firmware */
782fbec7 343static const enum snd_bebob_clock_type special_clk_types[] = {
ba517713
TS
344 SND_BEBOB_CLOCK_TYPE_INTERNAL, /* With digital mute */
345 SND_BEBOB_CLOCK_TYPE_EXTERNAL, /* SPDIF/ADAT */
346 SND_BEBOB_CLOCK_TYPE_EXTERNAL, /* Word Clock */
347 SND_BEBOB_CLOCK_TYPE_INTERNAL,
348};
3149ac48
TS
349static int special_clk_get(struct snd_bebob *bebob, unsigned int *id)
350{
351 struct special_params *params = bebob->maudio_special_quirk;
352 *id = params->clk_src;
353 return 0;
354}
355static int special_clk_ctl_info(struct snd_kcontrol *kctl,
356 struct snd_ctl_elem_info *einf)
357{
554d8983
TS
358 static const char *const special_clk_labels[] = {
359 "Internal with Digital Mute",
360 "Digital",
361 "Word Clock",
362 "Internal"
363 };
ba517713 364 return snd_ctl_enum_info(einf, 1, ARRAY_SIZE(special_clk_types),
41be5164 365 special_clk_labels);
3149ac48
TS
366}
367static int special_clk_ctl_get(struct snd_kcontrol *kctl,
368 struct snd_ctl_elem_value *uval)
369{
370 struct snd_bebob *bebob = snd_kcontrol_chip(kctl);
371 struct special_params *params = bebob->maudio_special_quirk;
372 uval->value.enumerated.item[0] = params->clk_src;
373 return 0;
374}
375static int special_clk_ctl_put(struct snd_kcontrol *kctl,
376 struct snd_ctl_elem_value *uval)
377{
378 struct snd_bebob *bebob = snd_kcontrol_chip(kctl);
379 struct special_params *params = bebob->maudio_special_quirk;
380 int err, id;
381
3149ac48 382 id = uval->value.enumerated.item[0];
ba517713 383 if (id >= ARRAY_SIZE(special_clk_types))
eb12f72e 384 return -EINVAL;
3149ac48 385
90140116
TS
386 mutex_lock(&bebob->mutex);
387
3149ac48
TS
388 err = avc_maudio_set_special_clk(bebob, id,
389 params->dig_in_fmt,
390 params->dig_out_fmt,
391 params->clk_lock);
392 mutex_unlock(&bebob->mutex);
393
f77ac91e
TS
394 if (err >= 0)
395 err = 1;
396
397 return err;
3149ac48 398}
905e46ac 399static const struct snd_kcontrol_new special_clk_ctl = {
3149ac48
TS
400 .name = "Clock Source",
401 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
402 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
403 .info = special_clk_ctl_info,
404 .get = special_clk_ctl_get,
405 .put = special_clk_ctl_put
406};
407
408/* Clock synchronization control for special firmware */
409static int special_sync_ctl_info(struct snd_kcontrol *kctl,
410 struct snd_ctl_elem_info *einf)
411{
412 einf->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
413 einf->count = 1;
414 einf->value.integer.min = 0;
415 einf->value.integer.max = 1;
416
417 return 0;
418}
419static int special_sync_ctl_get(struct snd_kcontrol *kctl,
420 struct snd_ctl_elem_value *uval)
421{
422 struct snd_bebob *bebob = snd_kcontrol_chip(kctl);
423 int err;
424 bool synced = 0;
425
426 err = check_clk_sync(bebob, METER_SIZE_SPECIAL, &synced);
427 if (err >= 0)
428 uval->value.integer.value[0] = synced;
429
430 return 0;
431}
905e46ac 432static const struct snd_kcontrol_new special_sync_ctl = {
3149ac48
TS
433 .name = "Sync Status",
434 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
435 .access = SNDRV_CTL_ELEM_ACCESS_READ,
436 .info = special_sync_ctl_info,
437 .get = special_sync_ctl_get,
438};
439
5a0438f4 440/* Digital input interface control for special firmware */
e7ced413 441static const char *const special_dig_in_iface_labels[] = {
3149ac48
TS
442 "S/PDIF Optical", "S/PDIF Coaxial", "ADAT Optical"
443};
444static int special_dig_in_iface_ctl_info(struct snd_kcontrol *kctl,
445 struct snd_ctl_elem_info *einf)
446{
41be5164
TI
447 return snd_ctl_enum_info(einf, 1,
448 ARRAY_SIZE(special_dig_in_iface_labels),
449 special_dig_in_iface_labels);
3149ac48
TS
450}
451static int special_dig_in_iface_ctl_get(struct snd_kcontrol *kctl,
452 struct snd_ctl_elem_value *uval)
453{
454 struct snd_bebob *bebob = snd_kcontrol_chip(kctl);
455 struct special_params *params = bebob->maudio_special_quirk;
456 unsigned int dig_in_iface;
457 int err, val;
458
459 mutex_lock(&bebob->mutex);
460
461 err = avc_audio_get_selector(bebob->unit, 0x00, 0x04,
462 &dig_in_iface);
463 if (err < 0) {
464 dev_err(&bebob->unit->device,
465 "fail to get digital input interface: %d\n", err);
466 goto end;
467 }
468
469 /* encoded id for user value */
470 val = (params->dig_in_fmt << 1) | (dig_in_iface & 0x01);
471
472 /* for ADAT Optical */
473 if (val > 2)
474 val = 2;
475
476 uval->value.enumerated.item[0] = val;
477end:
478 mutex_unlock(&bebob->mutex);
479 return err;
480}
481static int special_dig_in_iface_ctl_set(struct snd_kcontrol *kctl,
482 struct snd_ctl_elem_value *uval)
483{
484 struct snd_bebob *bebob = snd_kcontrol_chip(kctl);
485 struct special_params *params = bebob->maudio_special_quirk;
486 unsigned int id, dig_in_fmt, dig_in_iface;
487 int err;
488
3149ac48 489 id = uval->value.enumerated.item[0];
f77ac91e
TS
490 if (id >= ARRAY_SIZE(special_dig_in_iface_labels))
491 return -EINVAL;
3149ac48
TS
492
493 /* decode user value */
494 dig_in_fmt = (id >> 1) & 0x01;
495 dig_in_iface = id & 0x01;
496
f77ac91e
TS
497 mutex_lock(&bebob->mutex);
498
3149ac48
TS
499 err = avc_maudio_set_special_clk(bebob,
500 params->clk_src,
501 dig_in_fmt,
502 params->dig_out_fmt,
503 params->clk_lock);
5a0438f4
TS
504 if (err < 0)
505 goto end;
506
507 /* For ADAT, optical interface is only available. */
f77ac91e
TS
508 if (params->dig_in_fmt > 0) {
509 err = 1;
3149ac48 510 goto end;
f77ac91e 511 }
3149ac48 512
5a0438f4 513 /* For S/PDIF, optical/coaxial interfaces are selectable. */
3149ac48
TS
514 err = avc_audio_set_selector(bebob->unit, 0x00, 0x04, dig_in_iface);
515 if (err < 0)
516 dev_err(&bebob->unit->device,
517 "fail to set digital input interface: %d\n", err);
f77ac91e 518 err = 1;
3149ac48
TS
519end:
520 special_stream_formation_set(bebob);
521 mutex_unlock(&bebob->mutex);
522 return err;
523}
905e46ac 524static const struct snd_kcontrol_new special_dig_in_iface_ctl = {
3149ac48
TS
525 .name = "Digital Input Interface",
526 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
527 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
528 .info = special_dig_in_iface_ctl_info,
529 .get = special_dig_in_iface_ctl_get,
530 .put = special_dig_in_iface_ctl_set
531};
532
5a0438f4 533/* Digital output interface control for special firmware */
e7ced413 534static const char *const special_dig_out_iface_labels[] = {
5a0438f4
TS
535 "S/PDIF Optical and Coaxial", "ADAT Optical"
536};
3149ac48
TS
537static int special_dig_out_iface_ctl_info(struct snd_kcontrol *kctl,
538 struct snd_ctl_elem_info *einf)
539{
41be5164
TI
540 return snd_ctl_enum_info(einf, 1,
541 ARRAY_SIZE(special_dig_out_iface_labels),
542 special_dig_out_iface_labels);
3149ac48
TS
543}
544static int special_dig_out_iface_ctl_get(struct snd_kcontrol *kctl,
545 struct snd_ctl_elem_value *uval)
546{
547 struct snd_bebob *bebob = snd_kcontrol_chip(kctl);
548 struct special_params *params = bebob->maudio_special_quirk;
549 mutex_lock(&bebob->mutex);
550 uval->value.enumerated.item[0] = params->dig_out_fmt;
551 mutex_unlock(&bebob->mutex);
552 return 0;
553}
554static int special_dig_out_iface_ctl_set(struct snd_kcontrol *kctl,
555 struct snd_ctl_elem_value *uval)
556{
557 struct snd_bebob *bebob = snd_kcontrol_chip(kctl);
558 struct special_params *params = bebob->maudio_special_quirk;
559 unsigned int id;
560 int err;
561
3149ac48 562 id = uval->value.enumerated.item[0];
f77ac91e
TS
563 if (id >= ARRAY_SIZE(special_dig_out_iface_labels))
564 return -EINVAL;
565
566 mutex_lock(&bebob->mutex);
3149ac48
TS
567
568 err = avc_maudio_set_special_clk(bebob,
569 params->clk_src,
570 params->dig_in_fmt,
571 id, params->clk_lock);
f77ac91e 572 if (err >= 0) {
3149ac48 573 special_stream_formation_set(bebob);
f77ac91e
TS
574 err = 1;
575 }
3149ac48
TS
576
577 mutex_unlock(&bebob->mutex);
578 return err;
579}
905e46ac 580static const struct snd_kcontrol_new special_dig_out_iface_ctl = {
3149ac48
TS
581 .name = "Digital Output Interface",
582 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
583 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE,
584 .info = special_dig_out_iface_ctl_info,
585 .get = special_dig_out_iface_ctl_get,
586 .put = special_dig_out_iface_ctl_set
587};
588
589static int add_special_controls(struct snd_bebob *bebob)
590{
591 struct snd_kcontrol *kctl;
592 struct special_params *params = bebob->maudio_special_quirk;
593 int err;
594
595 kctl = snd_ctl_new1(&special_clk_ctl, bebob);
596 err = snd_ctl_add(bebob->card, kctl);
597 if (err < 0)
598 goto end;
599
600 kctl = snd_ctl_new1(&special_sync_ctl, bebob);
601 err = snd_ctl_add(bebob->card, kctl);
602 if (err < 0)
603 goto end;
604 params->ctl_id_sync = &kctl->id;
605
606 kctl = snd_ctl_new1(&special_dig_in_iface_ctl, bebob);
607 err = snd_ctl_add(bebob->card, kctl);
608 if (err < 0)
609 goto end;
610
611 kctl = snd_ctl_new1(&special_dig_out_iface_ctl, bebob);
612 err = snd_ctl_add(bebob->card, kctl);
613end:
614 return err;
615}
616
617/* Hardware metering for special firmware */
e7ced413 618static const char *const special_meter_labels[] = {
3149ac48
TS
619 ANA_IN, ANA_IN, ANA_IN, ANA_IN,
620 SPDIF_IN,
621 ADAT_IN, ADAT_IN, ADAT_IN, ADAT_IN,
622 ANA_OUT, ANA_OUT,
623 SPDIF_OUT,
624 ADAT_OUT, ADAT_OUT, ADAT_OUT, ADAT_OUT,
625 HP_OUT, HP_OUT,
626 AUX_OUT
627};
628static int
629special_meter_get(struct snd_bebob *bebob, u32 *target, unsigned int size)
630{
fef586d5 631 __be16 *buf;
3149ac48
TS
632 unsigned int i, c, channels;
633 int err;
634
635 channels = ARRAY_SIZE(special_meter_labels) * 2;
636 if (size < channels * sizeof(u32))
637 return -EINVAL;
638
639 /* omit last 4 bytes because it's clock info. */
640 buf = kmalloc(METER_SIZE_SPECIAL - 4, GFP_KERNEL);
641 if (buf == NULL)
642 return -ENOMEM;
643
644 err = get_meter(bebob, (void *)buf, METER_SIZE_SPECIAL - 4);
645 if (err < 0)
646 goto end;
647
648 /* Its format is u16 and some channels are unknown. */
649 i = 0;
650 for (c = 2; c < channels + 2; c++)
651 target[i++] = be16_to_cpu(buf[c]) << 16;
652end:
653 kfree(buf);
654 return err;
655}
656
9076c22d 657/* last 4 bytes are omitted because it's clock info. */
e7ced413 658static const char *const fw410_meter_labels[] = {
9076c22d
TS
659 ANA_IN, DIG_IN,
660 ANA_OUT, ANA_OUT, ANA_OUT, ANA_OUT, DIG_OUT,
661 HP_OUT
662};
e7ced413 663static const char *const audiophile_meter_labels[] = {
9076c22d
TS
664 ANA_IN, DIG_IN,
665 ANA_OUT, ANA_OUT, DIG_OUT,
666 HP_OUT, AUX_OUT,
667};
e7ced413 668static const char *const solo_meter_labels[] = {
9076c22d
TS
669 ANA_IN, DIG_IN,
670 STRM_IN, STRM_IN,
671 ANA_OUT, DIG_OUT
672};
673
674/* no clock info */
e7ced413 675static const char *const ozonic_meter_labels[] = {
9076c22d
TS
676 ANA_IN, ANA_IN,
677 STRM_IN, STRM_IN,
678 ANA_OUT, ANA_OUT
679};
680/* TODO: need testers. these positions are based on authour's assumption */
e7ced413 681static const char *const nrv10_meter_labels[] = {
9076c22d
TS
682 ANA_IN, ANA_IN, ANA_IN, ANA_IN,
683 DIG_IN,
684 ANA_OUT, ANA_OUT, ANA_OUT, ANA_OUT,
685 DIG_IN
686};
687static int
688normal_meter_get(struct snd_bebob *bebob, u32 *buf, unsigned int size)
689{
6b9866c8 690 const struct snd_bebob_meter_spec *spec = bebob->spec->meter;
9076c22d
TS
691 unsigned int c, channels;
692 int err;
693
694 channels = spec->num * 2;
695 if (size < channels * sizeof(u32))
696 return -EINVAL;
697
698 err = get_meter(bebob, (void *)buf, size);
699 if (err < 0)
700 goto end;
701
702 for (c = 0; c < channels; c++)
703 be32_to_cpus(&buf[c]);
704
705 /* swap stream channels because inverted */
706 if (spec->labels == solo_meter_labels) {
707 swap(buf[4], buf[6]);
708 swap(buf[5], buf[7]);
709 }
710end:
711 return err;
712}
713
3149ac48 714/* for special customized devices */
6b9866c8 715static const struct snd_bebob_rate_spec special_rate_spec = {
3149ac48
TS
716 .get = &special_get_rate,
717 .set = &special_set_rate,
718};
6b9866c8 719static const struct snd_bebob_clock_spec special_clk_spec = {
ba517713 720 .num = ARRAY_SIZE(special_clk_types),
ba517713 721 .types = special_clk_types,
3149ac48
TS
722 .get = &special_clk_get,
723};
6b9866c8 724static const struct snd_bebob_meter_spec special_meter_spec = {
3149ac48
TS
725 .num = ARRAY_SIZE(special_meter_labels),
726 .labels = special_meter_labels,
727 .get = &special_meter_get
728};
6b9866c8 729const struct snd_bebob_spec maudio_special_spec = {
3149ac48
TS
730 .clock = &special_clk_spec,
731 .rate = &special_rate_spec,
732 .meter = &special_meter_spec
733};
734
9076c22d 735/* Firewire 410 specification */
6b9866c8 736static const struct snd_bebob_rate_spec usual_rate_spec = {
9076c22d
TS
737 .get = &snd_bebob_stream_get_rate,
738 .set = &snd_bebob_stream_set_rate,
739};
6b9866c8 740static const struct snd_bebob_meter_spec fw410_meter_spec = {
9076c22d
TS
741 .num = ARRAY_SIZE(fw410_meter_labels),
742 .labels = fw410_meter_labels,
743 .get = &normal_meter_get
744};
6b9866c8 745const struct snd_bebob_spec maudio_fw410_spec = {
9076c22d
TS
746 .clock = NULL,
747 .rate = &usual_rate_spec,
748 .meter = &fw410_meter_spec
749};
750
751/* Firewire Audiophile specification */
6b9866c8 752static const struct snd_bebob_meter_spec audiophile_meter_spec = {
9076c22d
TS
753 .num = ARRAY_SIZE(audiophile_meter_labels),
754 .labels = audiophile_meter_labels,
755 .get = &normal_meter_get
756};
6b9866c8 757const struct snd_bebob_spec maudio_audiophile_spec = {
9076c22d
TS
758 .clock = NULL,
759 .rate = &usual_rate_spec,
760 .meter = &audiophile_meter_spec
761};
762
763/* Firewire Solo specification */
6b9866c8 764static const struct snd_bebob_meter_spec solo_meter_spec = {
9076c22d
TS
765 .num = ARRAY_SIZE(solo_meter_labels),
766 .labels = solo_meter_labels,
767 .get = &normal_meter_get
768};
6b9866c8 769const struct snd_bebob_spec maudio_solo_spec = {
9076c22d
TS
770 .clock = NULL,
771 .rate = &usual_rate_spec,
772 .meter = &solo_meter_spec
773};
774
775/* Ozonic specification */
6b9866c8 776static const struct snd_bebob_meter_spec ozonic_meter_spec = {
9076c22d
TS
777 .num = ARRAY_SIZE(ozonic_meter_labels),
778 .labels = ozonic_meter_labels,
779 .get = &normal_meter_get
780};
6b9866c8 781const struct snd_bebob_spec maudio_ozonic_spec = {
9076c22d
TS
782 .clock = NULL,
783 .rate = &usual_rate_spec,
784 .meter = &ozonic_meter_spec
785};
786
787/* NRV10 specification */
6b9866c8 788static const struct snd_bebob_meter_spec nrv10_meter_spec = {
9076c22d
TS
789 .num = ARRAY_SIZE(nrv10_meter_labels),
790 .labels = nrv10_meter_labels,
791 .get = &normal_meter_get
792};
6b9866c8 793const struct snd_bebob_spec maudio_nrv10_spec = {
9076c22d
TS
794 .clock = NULL,
795 .rate = &usual_rate_spec,
796 .meter = &nrv10_meter_spec
797};