blob: c8af8ffe2d53b6459fdb2b6fad91944c24b4e7a5 [file] [log] [blame]
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +09001/*
2 * bebob_stream.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"
10
11#define CALLBACK_TIMEOUT 1000
Takashi Sakamotob6bc8122014-04-25 22:45:16 +090012#define FW_ISO_RESOURCE_DELAY 1000
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +090013
14/*
15 * NOTE;
16 * For BeBoB streams, Both of input and output CMP connection are important.
17 *
18 * For most devices, each CMP connection starts to transmit/receive a
19 * corresponding stream. But for a few devices, both of CMP connection needs
20 * to start transmitting stream. An example is 'M-Audio Firewire 410'.
21 */
22
23/* 128 is an arbitrary length but it seems to be enough */
24#define FORMAT_MAXIMUM_LENGTH 128
25
26const unsigned int snd_bebob_rate_table[SND_BEBOB_STRM_FMT_ENTRIES] = {
27 [0] = 32000,
28 [1] = 44100,
29 [2] = 48000,
30 [3] = 88200,
31 [4] = 96000,
32 [5] = 176400,
33 [6] = 192000,
34};
35
36/*
37 * See: Table 51: Extended Stream Format Info ‘Sampling Frequency’
38 * in Additional AVC commands (Nov 2003, BridgeCo)
39 */
40static const unsigned int bridgeco_freq_table[] = {
41 [0] = 0x02,
42 [1] = 0x03,
43 [2] = 0x04,
44 [3] = 0x0a,
45 [4] = 0x05,
46 [5] = 0x06,
47 [6] = 0x07,
48};
49
50static unsigned int
51get_formation_index(unsigned int rate)
52{
53 unsigned int i;
54
55 for (i = 0; i < ARRAY_SIZE(snd_bebob_rate_table); i++) {
56 if (snd_bebob_rate_table[i] == rate)
57 return i;
58 }
59 return -EINVAL;
60}
61
62int
63snd_bebob_stream_get_rate(struct snd_bebob *bebob, unsigned int *curr_rate)
64{
65 unsigned int tx_rate, rx_rate, trials;
66 int err;
67
68 trials = 0;
69 do {
70 err = avc_general_get_sig_fmt(bebob->unit, &tx_rate,
71 AVC_GENERAL_PLUG_DIR_OUT, 0);
72 } while (err == -EAGAIN && ++trials < 3);
73 if (err < 0)
74 goto end;
75
76 trials = 0;
77 do {
78 err = avc_general_get_sig_fmt(bebob->unit, &rx_rate,
79 AVC_GENERAL_PLUG_DIR_IN, 0);
80 } while (err == -EAGAIN && ++trials < 3);
81 if (err < 0)
82 goto end;
83
84 *curr_rate = rx_rate;
85 if (rx_rate == tx_rate)
86 goto end;
87
88 /* synchronize receive stream rate to transmit stream rate */
89 err = avc_general_set_sig_fmt(bebob->unit, rx_rate,
90 AVC_GENERAL_PLUG_DIR_IN, 0);
91end:
92 return err;
93}
94
95int
96snd_bebob_stream_set_rate(struct snd_bebob *bebob, unsigned int rate)
97{
98 int err;
99
100 err = avc_general_set_sig_fmt(bebob->unit, rate,
101 AVC_GENERAL_PLUG_DIR_OUT, 0);
102 if (err < 0)
103 goto end;
104
105 err = avc_general_set_sig_fmt(bebob->unit, rate,
106 AVC_GENERAL_PLUG_DIR_IN, 0);
107 if (err < 0)
108 goto end;
109
110 /*
111 * Some devices need a bit time for transition.
112 * 300msec is got by some experiments.
113 */
114 msleep(300);
115end:
116 return err;
117}
118
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900119int snd_bebob_stream_get_clock_src(struct snd_bebob *bebob,
120 enum snd_bebob_clock_type *src)
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900121{
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900122 struct snd_bebob_clock_spec *clk_spec = bebob->spec->clock;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900123 u8 addr[AVC_BRIDGECO_ADDR_BYTES], input[7];
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900124 unsigned int id;
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900125 enum avc_bridgeco_plug_type type;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900126 int err = 0;
127
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900128 /* 1.The device has its own operation to switch source of clock */
129 if (clk_spec) {
130 err = clk_spec->get(bebob, &id);
Christian Vogeld1d0b6b2014-10-25 13:40:41 +0200131 if (err < 0) {
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900132 dev_err(&bebob->unit->device,
133 "fail to get clock source: %d\n", err);
Christian Vogeld1d0b6b2014-10-25 13:40:41 +0200134 goto end;
135 }
136
137 if (id >= clk_spec->num) {
138 dev_err(&bebob->unit->device,
139 "clock source %d out of range 0..%d\n",
140 id, clk_spec->num - 1);
141 err = -EIO;
142 goto end;
143 }
144
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900145 *src = clk_spec->types[id];
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900146 goto end;
147 }
148
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900149 /*
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900150 * 2.The device don't support to switch source of clock then assumed
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900151 * to use internal clock always
152 */
153 if (bebob->sync_input_plug < 0) {
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900154 *src = SND_BEBOB_CLOCK_TYPE_INTERNAL;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900155 goto end;
156 }
157
158 /*
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900159 * 3.The device supports to switch source of clock by an usual way.
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900160 * Let's check input for 'Music Sub Unit Sync Input' plug.
161 */
162 avc_bridgeco_fill_msu_addr(addr, AVC_BRIDGECO_PLUG_DIR_IN,
163 bebob->sync_input_plug);
164 err = avc_bridgeco_get_plug_input(bebob->unit, addr, input);
165 if (err < 0) {
166 dev_err(&bebob->unit->device,
167 "fail to get an input for MSU in plug %d: %d\n",
168 bebob->sync_input_plug, err);
169 goto end;
170 }
171
172 /*
173 * If there are no input plugs, all of fields are 0xff.
174 * Here check the first field. This field is used for direction.
175 */
176 if (input[0] == 0xff) {
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900177 *src = SND_BEBOB_CLOCK_TYPE_INTERNAL;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900178 goto end;
179 }
180
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900181 /* The source from any output plugs is for one purpose only. */
182 if (input[0] == AVC_BRIDGECO_PLUG_DIR_OUT) {
183 /*
184 * In BeBoB architecture, the source from music subunit may
185 * bypass from oPCR[0]. This means that this source gives
186 * synchronization to IEEE 1394 cycle start packet.
187 */
188 if (input[1] == AVC_BRIDGECO_PLUG_MODE_SUBUNIT &&
189 input[2] == 0x0c) {
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900190 *src = SND_BEBOB_CLOCK_TYPE_INTERNAL;
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900191 goto end;
192 }
193 /* The source from any input units is for several purposes. */
194 } else if (input[1] == AVC_BRIDGECO_PLUG_MODE_UNIT) {
195 if (input[2] == AVC_BRIDGECO_PLUG_UNIT_ISOC) {
196 if (input[3] == 0x00) {
197 /*
198 * This source comes from iPCR[0]. This means
199 * that presentation timestamp calculated by
200 * SYT series of the received packets. In
201 * short, this driver is the master of
202 * synchronization.
203 */
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900204 *src = SND_BEBOB_CLOCK_TYPE_SYT;
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900205 goto end;
206 } else {
207 /*
208 * This source comes from iPCR[1-29]. This
209 * means that the synchronization stream is not
210 * the Audio/MIDI compound stream.
211 */
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900212 *src = SND_BEBOB_CLOCK_TYPE_EXTERNAL;
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900213 goto end;
214 }
215 } else if (input[2] == AVC_BRIDGECO_PLUG_UNIT_EXT) {
216 /* Check type of this plug. */
217 avc_bridgeco_fill_unit_addr(addr,
218 AVC_BRIDGECO_PLUG_DIR_IN,
219 AVC_BRIDGECO_PLUG_UNIT_EXT,
220 input[3]);
221 err = avc_bridgeco_get_plug_type(bebob->unit, addr,
222 &type);
223 if (err < 0)
224 goto end;
225
226 if (type == AVC_BRIDGECO_PLUG_TYPE_DIG) {
227 /*
228 * SPDIF/ADAT or sometimes (not always) word
229 * clock.
230 */
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900231 *src = SND_BEBOB_CLOCK_TYPE_EXTERNAL;
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900232 goto end;
233 } else if (type == AVC_BRIDGECO_PLUG_TYPE_SYNC) {
234 /* Often word clock. */
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900235 *src = SND_BEBOB_CLOCK_TYPE_EXTERNAL;
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900236 goto end;
237 } else if (type == AVC_BRIDGECO_PLUG_TYPE_ADDITION) {
238 /*
239 * Not standard.
240 * Mostly, additional internal clock.
241 */
Takashi Sakamoto3e254b12015-06-14 12:49:30 +0900242 *src = SND_BEBOB_CLOCK_TYPE_INTERNAL;
Takashi Sakamoto5a668812015-06-14 12:49:27 +0900243 goto end;
244 }
245 }
246 }
247
248 /* Not supported. */
249 err = -EIO;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900250end:
251 return err;
252}
253
254static unsigned int
255map_data_channels(struct snd_bebob *bebob, struct amdtp_stream *s)
256{
257 unsigned int sec, sections, ch, channels;
258 unsigned int pcm, midi, location;
259 unsigned int stm_pos, sec_loc, pos;
260 u8 *buf, addr[AVC_BRIDGECO_ADDR_BYTES], type;
261 enum avc_bridgeco_plug_dir dir;
262 int err;
263
264 /*
265 * The length of return value of this command cannot be expected. Here
266 * use the maximum length of FCP.
267 */
268 buf = kzalloc(256, GFP_KERNEL);
269 if (buf == NULL)
270 return -ENOMEM;
271
272 if (s == &bebob->tx_stream)
273 dir = AVC_BRIDGECO_PLUG_DIR_OUT;
274 else
275 dir = AVC_BRIDGECO_PLUG_DIR_IN;
276
277 avc_bridgeco_fill_unit_addr(addr, dir, AVC_BRIDGECO_PLUG_UNIT_ISOC, 0);
278 err = avc_bridgeco_get_plug_ch_pos(bebob->unit, addr, buf, 256);
279 if (err < 0) {
280 dev_err(&bebob->unit->device,
281 "fail to get channel position for isoc %s plug 0: %d\n",
282 (dir == AVC_BRIDGECO_PLUG_DIR_IN) ? "in" : "out",
283 err);
284 goto end;
285 }
286 pos = 0;
287
288 /* positions in I/O buffer */
289 pcm = 0;
290 midi = 0;
291
292 /* the number of sections in AMDTP packet */
293 sections = buf[pos++];
294
295 for (sec = 0; sec < sections; sec++) {
296 /* type of this section */
297 avc_bridgeco_fill_unit_addr(addr, dir,
298 AVC_BRIDGECO_PLUG_UNIT_ISOC, 0);
299 err = avc_bridgeco_get_plug_section_type(bebob->unit, addr,
300 sec, &type);
301 if (err < 0) {
302 dev_err(&bebob->unit->device,
303 "fail to get section type for isoc %s plug 0: %d\n",
304 (dir == AVC_BRIDGECO_PLUG_DIR_IN) ? "in" :
305 "out",
306 err);
307 goto end;
308 }
309 /* NoType */
310 if (type == 0xff) {
311 err = -ENOSYS;
312 goto end;
313 }
314
315 /* the number of channels in this section */
316 channels = buf[pos++];
317
318 for (ch = 0; ch < channels; ch++) {
319 /* position of this channel in AMDTP packet */
320 stm_pos = buf[pos++] - 1;
321 /* location of this channel in this section */
322 sec_loc = buf[pos++] - 1;
323
Takashi Sakamoto9076c222014-04-25 22:45:25 +0900324 /*
325 * Basically the number of location is within the
326 * number of channels in this section. But some models
327 * of M-Audio don't follow this. Its location for MIDI
328 * is the position of MIDI channels in AMDTP packet.
329 */
330 if (sec_loc >= channels)
331 sec_loc = ch;
332
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900333 switch (type) {
334 /* for MIDI conformant data channel */
335 case 0x0a:
336 /* AMDTP_MAX_CHANNELS_FOR_MIDI is 1. */
337 if ((midi > 0) && (stm_pos != midi)) {
338 err = -ENOSYS;
339 goto end;
340 }
341 s->midi_position = stm_pos;
342 midi = stm_pos;
343 break;
344 /* for PCM data channel */
345 case 0x01: /* Headphone */
346 case 0x02: /* Microphone */
347 case 0x03: /* Line */
348 case 0x04: /* SPDIF */
349 case 0x05: /* ADAT */
350 case 0x06: /* TDIF */
351 case 0x07: /* MADI */
352 /* for undefined/changeable signal */
353 case 0x08: /* Analog */
354 case 0x09: /* Digital */
355 default:
356 location = pcm + sec_loc;
357 if (location >= AMDTP_MAX_CHANNELS_FOR_PCM) {
358 err = -ENOSYS;
359 goto end;
360 }
361 s->pcm_positions[location] = stm_pos;
362 break;
363 }
364 }
365
366 if (type != 0x0a)
367 pcm += channels;
368 else
369 midi += channels;
370 }
371end:
372 kfree(buf);
373 return err;
374}
375
376static int
377init_both_connections(struct snd_bebob *bebob)
378{
379 int err;
380
381 err = cmp_connection_init(&bebob->in_conn,
382 bebob->unit, CMP_INPUT, 0);
383 if (err < 0)
384 goto end;
385
386 err = cmp_connection_init(&bebob->out_conn,
387 bebob->unit, CMP_OUTPUT, 0);
388 if (err < 0)
389 cmp_connection_destroy(&bebob->in_conn);
390end:
391 return err;
392}
393
394static int
395check_connection_used_by_others(struct snd_bebob *bebob, struct amdtp_stream *s)
396{
397 struct cmp_connection *conn;
398 bool used;
399 int err;
400
401 if (s == &bebob->tx_stream)
402 conn = &bebob->out_conn;
403 else
404 conn = &bebob->in_conn;
405
406 err = cmp_connection_check_used(conn, &used);
407 if ((err >= 0) && used && !amdtp_stream_running(s)) {
408 dev_err(&bebob->unit->device,
409 "Connection established by others: %cPCR[%d]\n",
410 (conn->direction == CMP_OUTPUT) ? 'o' : 'i',
411 conn->pcr_index);
412 err = -EBUSY;
413 }
414
415 return err;
416}
417
418static int
419make_both_connections(struct snd_bebob *bebob, unsigned int rate)
420{
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900421 int index, pcm_channels, midi_channels, err = 0;
422
423 if (bebob->connected)
424 goto end;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900425
426 /* confirm params for both streams */
427 index = get_formation_index(rate);
428 pcm_channels = bebob->tx_stream_formations[index].pcm;
429 midi_channels = bebob->tx_stream_formations[index].midi;
430 amdtp_stream_set_parameters(&bebob->tx_stream,
431 rate, pcm_channels, midi_channels * 8);
432 pcm_channels = bebob->rx_stream_formations[index].pcm;
433 midi_channels = bebob->rx_stream_formations[index].midi;
434 amdtp_stream_set_parameters(&bebob->rx_stream,
435 rate, pcm_channels, midi_channels * 8);
436
437 /* establish connections for both streams */
438 err = cmp_connection_establish(&bebob->out_conn,
439 amdtp_stream_get_max_payload(&bebob->tx_stream));
440 if (err < 0)
441 goto end;
442 err = cmp_connection_establish(&bebob->in_conn,
443 amdtp_stream_get_max_payload(&bebob->rx_stream));
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900444 if (err < 0) {
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900445 cmp_connection_break(&bebob->out_conn);
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900446 goto end;
447 }
448
449 bebob->connected = true;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900450end:
451 return err;
452}
453
454static void
455break_both_connections(struct snd_bebob *bebob)
456{
457 cmp_connection_break(&bebob->in_conn);
458 cmp_connection_break(&bebob->out_conn);
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900459
460 bebob->connected = false;
Takashi Sakamoto3149ac42014-04-25 22:45:26 +0900461
462 /* These models seems to be in transition state for a longer time. */
463 if (bebob->maudio_special_quirk != NULL)
464 msleep(200);
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900465}
466
467static void
468destroy_both_connections(struct snd_bebob *bebob)
469{
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900470 cmp_connection_destroy(&bebob->in_conn);
471 cmp_connection_destroy(&bebob->out_conn);
472}
473
474static int
475get_sync_mode(struct snd_bebob *bebob, enum cip_flags *sync_mode)
476{
477 /* currently this module doesn't support SYT-Match mode */
478 *sync_mode = CIP_SYNC_TO_DEVICE;
479 return 0;
480}
481
482static int
483start_stream(struct snd_bebob *bebob, struct amdtp_stream *stream,
484 unsigned int rate)
485{
486 struct cmp_connection *conn;
487 int err = 0;
488
489 if (stream == &bebob->rx_stream)
490 conn = &bebob->in_conn;
491 else
492 conn = &bebob->out_conn;
493
494 /* channel mapping */
Takashi Sakamoto3149ac42014-04-25 22:45:26 +0900495 if (bebob->maudio_special_quirk == NULL) {
496 err = map_data_channels(bebob, stream);
497 if (err < 0)
498 goto end;
499 }
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900500
501 /* start amdtp stream */
502 err = amdtp_stream_start(stream,
503 conn->resources.channel,
504 conn->speed);
505end:
506 return err;
507}
508
509int snd_bebob_stream_init_duplex(struct snd_bebob *bebob)
510{
511 int err;
512
513 err = init_both_connections(bebob);
514 if (err < 0)
515 goto end;
516
517 err = amdtp_stream_init(&bebob->tx_stream, bebob->unit,
518 AMDTP_IN_STREAM, CIP_BLOCKING);
519 if (err < 0) {
520 amdtp_stream_destroy(&bebob->tx_stream);
521 destroy_both_connections(bebob);
522 goto end;
523 }
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900524 /* See comments in next function */
525 init_completion(&bebob->bus_reset);
526 bebob->tx_stream.flags |= CIP_SKIP_INIT_DBC_CHECK;
Takashi Sakamoto9d591242014-04-25 22:45:27 +0900527 /*
528 * At high sampling rate, M-Audio special firmware transmits empty
529 * packet with the value of dbc incremented by 8 but the others are
530 * valid to IEC 61883-1.
531 */
532 if (bebob->maudio_special_quirk)
533 bebob->tx_stream.flags |= CIP_EMPTY_HAS_WRONG_DBC;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900534
535 err = amdtp_stream_init(&bebob->rx_stream, bebob->unit,
536 AMDTP_OUT_STREAM, CIP_BLOCKING);
537 if (err < 0) {
538 amdtp_stream_destroy(&bebob->tx_stream);
539 amdtp_stream_destroy(&bebob->rx_stream);
540 destroy_both_connections(bebob);
541 }
542end:
543 return err;
544}
545
Takashi Sakamoto4a286d52014-05-28 00:14:40 +0900546int snd_bebob_stream_start_duplex(struct snd_bebob *bebob, unsigned int rate)
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900547{
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900548 struct snd_bebob_rate_spec *rate_spec = bebob->spec->rate;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900549 struct amdtp_stream *master, *slave;
550 atomic_t *slave_substreams;
551 enum cip_flags sync_mode;
552 unsigned int curr_rate;
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900553 bool updated = false;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900554 int err = 0;
555
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900556 /*
557 * Normal BeBoB firmware has a quirk at bus reset to transmits packets
558 * with discontinuous value in dbc field.
559 *
560 * This 'struct completion' is used to call .update() at first to update
561 * connections/streams. Next following codes handle streaming error.
562 */
563 if (amdtp_streaming_error(&bebob->tx_stream)) {
564 if (completion_done(&bebob->bus_reset))
565 reinit_completion(&bebob->bus_reset);
566
567 updated = (wait_for_completion_interruptible_timeout(
568 &bebob->bus_reset,
569 msecs_to_jiffies(FW_ISO_RESOURCE_DELAY)) > 0);
570 }
571
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900572 mutex_lock(&bebob->mutex);
573
574 /* Need no substreams */
575 if (atomic_read(&bebob->playback_substreams) == 0 &&
576 atomic_read(&bebob->capture_substreams) == 0)
577 goto end;
578
579 err = get_sync_mode(bebob, &sync_mode);
580 if (err < 0)
581 goto end;
582 if (sync_mode == CIP_SYNC_TO_DEVICE) {
583 master = &bebob->tx_stream;
584 slave = &bebob->rx_stream;
585 slave_substreams = &bebob->playback_substreams;
586 } else {
587 master = &bebob->rx_stream;
588 slave = &bebob->tx_stream;
589 slave_substreams = &bebob->capture_substreams;
590 }
591
592 /*
593 * Considering JACK/FFADO streaming:
594 * TODO: This can be removed hwdep functionality becomes popular.
595 */
596 err = check_connection_used_by_others(bebob, master);
597 if (err < 0)
598 goto end;
599
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900600 /*
601 * packet queueing error or detecting discontinuity
602 *
603 * At bus reset, connections should not be broken here. So streams need
604 * to be re-started. This is a reason to use SKIP_INIT_DBC_CHECK flag.
605 */
606 if (amdtp_streaming_error(master))
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900607 amdtp_stream_stop(master);
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900608 if (amdtp_streaming_error(slave))
609 amdtp_stream_stop(slave);
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900610 if (!updated &&
611 !amdtp_stream_running(master) && !amdtp_stream_running(slave))
612 break_both_connections(bebob);
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900613
614 /* stop streams if rate is different */
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900615 err = rate_spec->get(bebob, &curr_rate);
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900616 if (err < 0) {
617 dev_err(&bebob->unit->device,
618 "fail to get sampling rate: %d\n", err);
619 goto end;
620 }
621 if (rate == 0)
622 rate = curr_rate;
623 if (rate != curr_rate) {
624 amdtp_stream_stop(master);
625 amdtp_stream_stop(slave);
626 break_both_connections(bebob);
627 }
628
629 /* master should be always running */
630 if (!amdtp_stream_running(master)) {
631 amdtp_stream_set_sync(sync_mode, master, slave);
632 bebob->master = master;
633
634 /*
635 * NOTE:
636 * If establishing connections at first, Yamaha GO46
637 * (and maybe Terratec X24) don't generate sound.
Takashi Sakamoto3149ac42014-04-25 22:45:26 +0900638 *
639 * For firmware customized by M-Audio, refer to next NOTE.
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900640 */
Takashi Sakamoto3149ac42014-04-25 22:45:26 +0900641 if (bebob->maudio_special_quirk == NULL) {
642 err = rate_spec->set(bebob, rate);
643 if (err < 0) {
644 dev_err(&bebob->unit->device,
645 "fail to set sampling rate: %d\n",
646 err);
647 goto end;
648 }
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900649 }
650
651 err = make_both_connections(bebob, rate);
652 if (err < 0)
653 goto end;
654
655 err = start_stream(bebob, master, rate);
656 if (err < 0) {
657 dev_err(&bebob->unit->device,
658 "fail to run AMDTP master stream:%d\n", err);
659 break_both_connections(bebob);
660 goto end;
661 }
662
Takashi Sakamoto3149ac42014-04-25 22:45:26 +0900663 /*
664 * NOTE:
665 * The firmware customized by M-Audio uses these commands to
666 * start transmitting stream. This is not usual way.
667 */
668 if (bebob->maudio_special_quirk != NULL) {
669 err = rate_spec->set(bebob, rate);
670 if (err < 0) {
671 dev_err(&bebob->unit->device,
672 "fail to ensure sampling rate: %d\n",
673 err);
674 amdtp_stream_stop(master);
675 break_both_connections(bebob);
676 goto end;
677 }
678 }
679
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900680 /* wait first callback */
681 if (!amdtp_stream_wait_callback(master, CALLBACK_TIMEOUT)) {
682 amdtp_stream_stop(master);
683 break_both_connections(bebob);
684 err = -ETIMEDOUT;
685 goto end;
686 }
687 }
688
689 /* start slave if needed */
690 if (atomic_read(slave_substreams) > 0 && !amdtp_stream_running(slave)) {
691 err = start_stream(bebob, slave, rate);
692 if (err < 0) {
693 dev_err(&bebob->unit->device,
694 "fail to run AMDTP slave stream:%d\n", err);
695 amdtp_stream_stop(master);
696 break_both_connections(bebob);
697 goto end;
698 }
699
700 /* wait first callback */
701 if (!amdtp_stream_wait_callback(slave, CALLBACK_TIMEOUT)) {
702 amdtp_stream_stop(slave);
703 amdtp_stream_stop(master);
704 break_both_connections(bebob);
705 err = -ETIMEDOUT;
706 }
707 }
708end:
709 mutex_unlock(&bebob->mutex);
710 return err;
711}
712
713void snd_bebob_stream_stop_duplex(struct snd_bebob *bebob)
714{
715 struct amdtp_stream *master, *slave;
716 atomic_t *master_substreams, *slave_substreams;
717
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900718 if (bebob->master == &bebob->rx_stream) {
719 slave = &bebob->tx_stream;
720 master = &bebob->rx_stream;
721 slave_substreams = &bebob->capture_substreams;
722 master_substreams = &bebob->playback_substreams;
723 } else {
724 slave = &bebob->rx_stream;
725 master = &bebob->tx_stream;
726 slave_substreams = &bebob->playback_substreams;
727 master_substreams = &bebob->capture_substreams;
728 }
729
Takashi Sakamotoc6e5e742014-06-04 15:25:32 +0900730 mutex_lock(&bebob->mutex);
731
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900732 if (atomic_read(slave_substreams) == 0) {
733 amdtp_stream_pcm_abort(slave);
734 amdtp_stream_stop(slave);
735
736 if (atomic_read(master_substreams) == 0) {
737 amdtp_stream_pcm_abort(master);
738 amdtp_stream_stop(master);
739 break_both_connections(bebob);
740 }
741 }
742
743 mutex_unlock(&bebob->mutex);
744}
745
746void snd_bebob_stream_update_duplex(struct snd_bebob *bebob)
747{
748 /* vs. XRUN recovery due to discontinuity at bus reset */
749 mutex_lock(&bebob->mutex);
750
751 if ((cmp_connection_update(&bebob->in_conn) < 0) ||
752 (cmp_connection_update(&bebob->out_conn) < 0)) {
753 amdtp_stream_pcm_abort(&bebob->rx_stream);
754 amdtp_stream_pcm_abort(&bebob->tx_stream);
755 amdtp_stream_stop(&bebob->rx_stream);
756 amdtp_stream_stop(&bebob->tx_stream);
757 break_both_connections(bebob);
758 } else {
759 amdtp_stream_update(&bebob->rx_stream);
760 amdtp_stream_update(&bebob->tx_stream);
761 }
762
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900763 /* wake up stream_start_duplex() */
764 if (!completion_done(&bebob->bus_reset))
765 complete_all(&bebob->bus_reset);
766
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900767 mutex_unlock(&bebob->mutex);
768}
769
Takashi Sakamotod23c2cc2015-02-21 23:54:59 +0900770/*
771 * This function should be called before starting streams or after stopping
772 * streams.
773 */
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900774void snd_bebob_stream_destroy_duplex(struct snd_bebob *bebob)
775{
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900776 amdtp_stream_destroy(&bebob->rx_stream);
777 amdtp_stream_destroy(&bebob->tx_stream);
778
779 destroy_both_connections(bebob);
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900780}
781
782/*
783 * See: Table 50: Extended Stream Format Info Format Hierarchy Level 2’
784 * in Additional AVC commands (Nov 2003, BridgeCo)
785 * Also 'Clause 12 AM824 sequence adaption layers' in IEC 61883-6:2005
786 */
787static int
788parse_stream_formation(u8 *buf, unsigned int len,
789 struct snd_bebob_stream_formation *formation)
790{
791 unsigned int i, e, channels, format;
792
793 /*
794 * this module can support a hierarchy combination that:
795 * Root: Audio and Music (0x90)
796 * Level 1: AM824 Compound (0x40)
797 */
798 if ((buf[0] != 0x90) || (buf[1] != 0x40))
799 return -ENOSYS;
800
801 /* check sampling rate */
802 for (i = 0; i < ARRAY_SIZE(bridgeco_freq_table); i++) {
803 if (buf[2] == bridgeco_freq_table[i])
804 break;
805 }
Dan Carpenter33a5f982014-05-28 19:43:30 +0300806 if (i == ARRAY_SIZE(bridgeco_freq_table))
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900807 return -ENOSYS;
808
809 /* Avoid double count by different entries for the same rate. */
810 memset(&formation[i], 0, sizeof(struct snd_bebob_stream_formation));
811
812 for (e = 0; e < buf[4]; e++) {
813 channels = buf[5 + e * 2];
814 format = buf[6 + e * 2];
815
816 switch (format) {
Takashi Sakamoto51fa31d2014-05-28 00:14:47 +0900817 /* IEC 60958 Conformant, currently handled as MBLA */
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900818 case 0x00:
819 /* Multi bit linear audio */
820 case 0x06: /* Raw */
821 formation[i].pcm += channels;
822 break;
823 /* MIDI Conformant */
824 case 0x0d:
825 formation[i].midi += channels;
826 break;
827 /* IEC 61937-3 to 7 */
828 case 0x01:
829 case 0x02:
830 case 0x03:
831 case 0x04:
832 case 0x05:
833 /* Multi bit linear audio */
834 case 0x07: /* DVD-Audio */
835 case 0x0c: /* High Precision */
836 /* One Bit Audio */
837 case 0x08: /* (Plain) Raw */
838 case 0x09: /* (Plain) SACD */
839 case 0x0a: /* (Encoded) Raw */
840 case 0x0b: /* (Encoded) SACD */
841 /* Synchronization Stream (Stereo Raw audio) */
842 case 0x40:
843 /* Don't care */
844 case 0xff:
845 default:
846 return -ENOSYS; /* not supported */
847 }
848 }
849
850 if (formation[i].pcm > AMDTP_MAX_CHANNELS_FOR_PCM ||
851 formation[i].midi > AMDTP_MAX_CHANNELS_FOR_MIDI)
852 return -ENOSYS;
853
854 return 0;
855}
856
857static int
858fill_stream_formations(struct snd_bebob *bebob, enum avc_bridgeco_plug_dir dir,
859 unsigned short pid)
860{
861 u8 *buf;
862 struct snd_bebob_stream_formation *formations;
863 unsigned int len, eid;
864 u8 addr[AVC_BRIDGECO_ADDR_BYTES];
865 int err;
866
867 buf = kmalloc(FORMAT_MAXIMUM_LENGTH, GFP_KERNEL);
868 if (buf == NULL)
869 return -ENOMEM;
870
871 if (dir == AVC_BRIDGECO_PLUG_DIR_IN)
872 formations = bebob->rx_stream_formations;
873 else
874 formations = bebob->tx_stream_formations;
875
876 for (eid = 0; eid < SND_BEBOB_STRM_FMT_ENTRIES; eid++) {
877 len = FORMAT_MAXIMUM_LENGTH;
878 avc_bridgeco_fill_unit_addr(addr, dir,
879 AVC_BRIDGECO_PLUG_UNIT_ISOC, pid);
880 err = avc_bridgeco_get_plug_strm_fmt(bebob->unit, addr, buf,
881 &len, eid);
882 /* No entries remained. */
883 if (err == -EINVAL && eid > 0) {
884 err = 0;
885 break;
886 } else if (err < 0) {
887 dev_err(&bebob->unit->device,
888 "fail to get stream format %d for isoc %s plug %d:%d\n",
889 eid,
890 (dir == AVC_BRIDGECO_PLUG_DIR_IN) ? "in" :
891 "out",
892 pid, err);
893 break;
894 }
895
896 err = parse_stream_formation(buf, len, formations);
897 if (err < 0)
898 break;
899 }
900
901 kfree(buf);
902 return err;
903}
904
905static int
906seek_msu_sync_input_plug(struct snd_bebob *bebob)
907{
908 u8 plugs[AVC_PLUG_INFO_BUF_BYTES], addr[AVC_BRIDGECO_ADDR_BYTES];
Takashi Sakamotoa6b598b2014-05-28 00:14:41 +0900909 unsigned int i;
910 enum avc_bridgeco_plug_type type;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900911 int err;
912
913 /* Get the number of Music Sub Unit for both direction. */
914 err = avc_general_get_plug_info(bebob->unit, 0x0c, 0x00, 0x00, plugs);
915 if (err < 0) {
916 dev_err(&bebob->unit->device,
917 "fail to get info for MSU in/out plugs: %d\n",
918 err);
919 goto end;
920 }
921
922 /* seek destination plugs for 'MSU sync input' */
923 bebob->sync_input_plug = -1;
924 for (i = 0; i < plugs[0]; i++) {
925 avc_bridgeco_fill_msu_addr(addr, AVC_BRIDGECO_PLUG_DIR_IN, i);
926 err = avc_bridgeco_get_plug_type(bebob->unit, addr, &type);
927 if (err < 0) {
928 dev_err(&bebob->unit->device,
929 "fail to get type for MSU in plug %d: %d\n",
930 i, err);
931 goto end;
932 }
933
934 if (type == AVC_BRIDGECO_PLUG_TYPE_SYNC) {
935 bebob->sync_input_plug = i;
936 break;
937 }
938 }
939end:
940 return err;
941}
942
943int snd_bebob_stream_discover(struct snd_bebob *bebob)
944{
Takashi Sakamoto1fc95222014-04-25 22:45:21 +0900945 struct snd_bebob_clock_spec *clk_spec = bebob->spec->clock;
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +0900946 u8 plugs[AVC_PLUG_INFO_BUF_BYTES], addr[AVC_BRIDGECO_ADDR_BYTES];
947 enum avc_bridgeco_plug_type type;
948 unsigned int i;
949 int err;
950
951 /* the number of plugs for isoc in/out, ext in/out */
952 err = avc_general_get_plug_info(bebob->unit, 0x1f, 0x07, 0x00, plugs);
953 if (err < 0) {
954 dev_err(&bebob->unit->device,
955 "fail to get info for isoc/external in/out plugs: %d\n",
956 err);
957 goto end;
958 }
959
960 /*
961 * This module supports at least one isoc input plug and one isoc
962 * output plug.
963 */
964 if ((plugs[0] == 0) || (plugs[1] == 0)) {
965 err = -ENOSYS;
966 goto end;
967 }
968
969 avc_bridgeco_fill_unit_addr(addr, AVC_BRIDGECO_PLUG_DIR_IN,
970 AVC_BRIDGECO_PLUG_UNIT_ISOC, 0);
971 err = avc_bridgeco_get_plug_type(bebob->unit, addr, &type);
972 if (err < 0) {
973 dev_err(&bebob->unit->device,
974 "fail to get type for isoc in plug 0: %d\n", err);
975 goto end;
976 } else if (type != AVC_BRIDGECO_PLUG_TYPE_ISOC) {
977 err = -ENOSYS;
978 goto end;
979 }
980 err = fill_stream_formations(bebob, AVC_BRIDGECO_PLUG_DIR_IN, 0);
981 if (err < 0)
982 goto end;
983
984 avc_bridgeco_fill_unit_addr(addr, AVC_BRIDGECO_PLUG_DIR_OUT,
985 AVC_BRIDGECO_PLUG_UNIT_ISOC, 0);
986 err = avc_bridgeco_get_plug_type(bebob->unit, addr, &type);
987 if (err < 0) {
988 dev_err(&bebob->unit->device,
989 "fail to get type for isoc out plug 0: %d\n", err);
990 goto end;
991 } else if (type != AVC_BRIDGECO_PLUG_TYPE_ISOC) {
992 err = -ENOSYS;
993 goto end;
994 }
995 err = fill_stream_formations(bebob, AVC_BRIDGECO_PLUG_DIR_OUT, 0);
996 if (err < 0)
997 goto end;
998
999 /* count external input plugs for MIDI */
1000 bebob->midi_input_ports = 0;
1001 for (i = 0; i < plugs[2]; i++) {
1002 avc_bridgeco_fill_unit_addr(addr, AVC_BRIDGECO_PLUG_DIR_IN,
1003 AVC_BRIDGECO_PLUG_UNIT_EXT, i);
1004 err = avc_bridgeco_get_plug_type(bebob->unit, addr, &type);
1005 if (err < 0) {
1006 dev_err(&bebob->unit->device,
1007 "fail to get type for external in plug %d: %d\n",
1008 i, err);
1009 goto end;
1010 } else if (type == AVC_BRIDGECO_PLUG_TYPE_MIDI) {
1011 bebob->midi_input_ports++;
1012 }
1013 }
1014
1015 /* count external output plugs for MIDI */
1016 bebob->midi_output_ports = 0;
1017 for (i = 0; i < plugs[3]; i++) {
1018 avc_bridgeco_fill_unit_addr(addr, AVC_BRIDGECO_PLUG_DIR_OUT,
1019 AVC_BRIDGECO_PLUG_UNIT_EXT, i);
1020 err = avc_bridgeco_get_plug_type(bebob->unit, addr, &type);
1021 if (err < 0) {
1022 dev_err(&bebob->unit->device,
1023 "fail to get type for external out plug %d: %d\n",
1024 i, err);
1025 goto end;
1026 } else if (type == AVC_BRIDGECO_PLUG_TYPE_MIDI) {
1027 bebob->midi_output_ports++;
1028 }
1029 }
1030
1031 /* for check source of clock later */
Takashi Sakamoto1fc95222014-04-25 22:45:21 +09001032 if (!clk_spec)
1033 err = seek_msu_sync_input_plug(bebob);
Takashi Sakamotoeb7b3a02014-04-25 22:45:15 +09001034end:
1035 return err;
1036}
Takashi Sakamoto618eabe2014-04-25 22:45:20 +09001037
1038void snd_bebob_stream_lock_changed(struct snd_bebob *bebob)
1039{
1040 bebob->dev_lock_changed = true;
1041 wake_up(&bebob->hwdep_wait);
1042}
1043
1044int snd_bebob_stream_lock_try(struct snd_bebob *bebob)
1045{
1046 int err;
1047
1048 spin_lock_irq(&bebob->lock);
1049
1050 /* user land lock this */
1051 if (bebob->dev_lock_count < 0) {
1052 err = -EBUSY;
1053 goto end;
1054 }
1055
1056 /* this is the first time */
1057 if (bebob->dev_lock_count++ == 0)
1058 snd_bebob_stream_lock_changed(bebob);
1059 err = 0;
1060end:
1061 spin_unlock_irq(&bebob->lock);
1062 return err;
1063}
1064
1065void snd_bebob_stream_lock_release(struct snd_bebob *bebob)
1066{
1067 spin_lock_irq(&bebob->lock);
1068
1069 if (WARN_ON(bebob->dev_lock_count <= 0))
1070 goto end;
1071 if (--bebob->dev_lock_count == 0)
1072 snd_bebob_stream_lock_changed(bebob);
1073end:
1074 spin_unlock_irq(&bebob->lock);
1075}