blob: 9741757436beec2e0c3be573b6da4d1f2ac2fbda [file] [log] [blame]
Clemens Ladisch31ef9132011-03-15 07:53:21 +01001/*
2 * Audio and Music Data Transmission Protocol (IEC 61883-6) streams
3 * with Common Isochronous Packet (IEC 61883-1) headers
4 *
5 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
6 * Licensed under the terms of the GNU General Public License, version 2.
7 */
8
9#include <linux/device.h>
10#include <linux/err.h>
11#include <linux/firewire.h>
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <sound/pcm.h>
Takashi Sakamoto7b2d99f2014-04-25 22:44:52 +090015#include <sound/pcm_params.h>
Takashi Sakamotod67c46b2015-09-19 11:21:54 +090016#include "amdtp-stream.h"
Clemens Ladisch31ef9132011-03-15 07:53:21 +010017
18#define TICKS_PER_CYCLE 3072
19#define CYCLES_PER_SECOND 8000
20#define TICKS_PER_SECOND (TICKS_PER_CYCLE * CYCLES_PER_SECOND)
21
Takashi Sakamoto0c95c1d2016-05-09 21:12:46 +090022/* Always support Linux tracing subsystem. */
23#define CREATE_TRACE_POINTS
24#include "amdtp-stream-trace.h"
25
Takashi Sakamotoca5b5052015-02-21 11:50:17 +090026#define TRANSFER_DELAY_TICKS 0x2e00 /* 479.17 microseconds */
Clemens Ladisch31ef9132011-03-15 07:53:21 +010027
Takashi Sakamotob445db42014-04-25 22:44:43 +090028/* isochronous header parameters */
29#define ISO_DATA_LENGTH_SHIFT 16
Clemens Ladisch31ef9132011-03-15 07:53:21 +010030#define TAG_CIP 1
31
Takashi Sakamotob445db42014-04-25 22:44:43 +090032/* common isochronous packet header parameters */
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +090033#define CIP_EOH_SHIFT 31
34#define CIP_EOH (1u << CIP_EOH_SHIFT)
Takashi Sakamotob445db42014-04-25 22:44:43 +090035#define CIP_EOH_MASK 0x80000000
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +090036#define CIP_SID_SHIFT 24
37#define CIP_SID_MASK 0x3f000000
38#define CIP_DBS_MASK 0x00ff0000
39#define CIP_DBS_SHIFT 16
40#define CIP_DBC_MASK 0x000000ff
41#define CIP_FMT_SHIFT 24
Takashi Sakamotob445db42014-04-25 22:44:43 +090042#define CIP_FMT_MASK 0x3f000000
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +090043#define CIP_FDF_MASK 0x00ff0000
44#define CIP_FDF_SHIFT 16
Takashi Sakamotob445db42014-04-25 22:44:43 +090045#define CIP_SYT_MASK 0x0000ffff
46#define CIP_SYT_NO_INFO 0xffff
Takashi Sakamotob445db42014-04-25 22:44:43 +090047
Takashi Sakamoto51c29fd2015-09-19 11:21:56 +090048/* Audio and Music transfer protocol specific parameters */
Takashi Sakamoto414ba022015-09-19 11:21:53 +090049#define CIP_FMT_AM 0x10
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +090050#define AMDTP_FDF_NO_DATA 0xff
Clemens Ladisch31ef9132011-03-15 07:53:21 +010051
52/* TODO: make these configurable */
53#define INTERRUPT_INTERVAL 16
54#define QUEUE_LENGTH 48
55
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +090056#define IN_PACKET_HEADER_SIZE 4
Takashi Sakamoto4b7da112014-04-25 22:44:45 +090057#define OUT_PACKET_HEADER_SIZE 0
58
Clemens Ladisch76fb8782012-05-13 22:03:09 +020059static void pcm_period_tasklet(unsigned long data);
60
Clemens Ladisch31ef9132011-03-15 07:53:21 +010061/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090062 * amdtp_stream_init - initialize an AMDTP stream structure
63 * @s: the AMDTP stream to initialize
Clemens Ladisch31ef9132011-03-15 07:53:21 +010064 * @unit: the target of the stream
Takashi Sakamoto3ff7e8f2014-04-25 22:44:44 +090065 * @dir: the direction of stream
Clemens Ladisch31ef9132011-03-15 07:53:21 +010066 * @flags: the packet transmission method to use
Takashi Sakamoto59558152015-09-19 11:21:55 +090067 * @fmt: the value of fmt field in CIP header
Takashi Sakamotodf075fe2015-09-19 11:22:02 +090068 * @process_data_blocks: callback handler to process data blocks
69 * @protocol_size: the size to allocate newly for protocol
Clemens Ladisch31ef9132011-03-15 07:53:21 +010070 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090071int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit,
Takashi Sakamoto59558152015-09-19 11:21:55 +090072 enum amdtp_stream_direction dir, enum cip_flags flags,
Takashi Sakamotodf075fe2015-09-19 11:22:02 +090073 unsigned int fmt,
74 amdtp_stream_process_data_blocks_t process_data_blocks,
75 unsigned int protocol_size)
Clemens Ladisch31ef9132011-03-15 07:53:21 +010076{
Takashi Sakamotodf075fe2015-09-19 11:22:02 +090077 if (process_data_blocks == NULL)
78 return -EINVAL;
79
80 s->protocol = kzalloc(protocol_size, GFP_KERNEL);
81 if (!s->protocol)
82 return -ENOMEM;
83
Takashi Sakamotoc6f224d2015-02-21 23:54:58 +090084 s->unit = unit;
Takashi Sakamoto3ff7e8f2014-04-25 22:44:44 +090085 s->direction = dir;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010086 s->flags = flags;
87 s->context = ERR_PTR(-1);
88 mutex_init(&s->mutex);
Clemens Ladisch76fb8782012-05-13 22:03:09 +020089 tasklet_init(&s->period_tasklet, pcm_period_tasklet, (unsigned long)s);
Clemens Ladischec00f5e2011-03-15 07:57:24 +010090 s->packet_index = 0;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010091
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +090092 init_waitqueue_head(&s->callback_wait);
93 s->callbacked = false;
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +090094
Takashi Sakamoto59558152015-09-19 11:21:55 +090095 s->fmt = fmt;
Takashi Sakamotodf075fe2015-09-19 11:22:02 +090096 s->process_data_blocks = process_data_blocks;
Takashi Sakamoto414ba022015-09-19 11:21:53 +090097
Clemens Ladisch31ef9132011-03-15 07:53:21 +010098 return 0;
99}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900100EXPORT_SYMBOL(amdtp_stream_init);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100101
102/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900103 * amdtp_stream_destroy - free stream resources
104 * @s: the AMDTP stream to destroy
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100105 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900106void amdtp_stream_destroy(struct amdtp_stream *s)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100107{
Takashi Sakamoto44c376b2016-03-31 08:47:02 +0900108 /* Not initialized. */
109 if (s->protocol == NULL)
110 return;
111
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900112 WARN_ON(amdtp_stream_running(s));
Takashi Sakamotodf075fe2015-09-19 11:22:02 +0900113 kfree(s->protocol);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100114 mutex_destroy(&s->mutex);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100115}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900116EXPORT_SYMBOL(amdtp_stream_destroy);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100117
Clemens Ladischc5280e92011-10-16 21:39:00 +0200118const unsigned int amdtp_syt_intervals[CIP_SFC_COUNT] = {
Clemens Ladischa7304e32011-09-04 22:16:10 +0200119 [CIP_SFC_32000] = 8,
120 [CIP_SFC_44100] = 8,
121 [CIP_SFC_48000] = 8,
122 [CIP_SFC_88200] = 16,
123 [CIP_SFC_96000] = 16,
124 [CIP_SFC_176400] = 32,
125 [CIP_SFC_192000] = 32,
126};
127EXPORT_SYMBOL(amdtp_syt_intervals);
128
Takashi Sakamotof9503a62014-05-28 00:14:36 +0900129const unsigned int amdtp_rate_table[CIP_SFC_COUNT] = {
Takashi Sakamoto1017abe2014-04-25 22:44:59 +0900130 [CIP_SFC_32000] = 32000,
131 [CIP_SFC_44100] = 44100,
132 [CIP_SFC_48000] = 48000,
133 [CIP_SFC_88200] = 88200,
134 [CIP_SFC_96000] = 96000,
135 [CIP_SFC_176400] = 176400,
136 [CIP_SFC_192000] = 192000,
137};
138EXPORT_SYMBOL(amdtp_rate_table);
139
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100140/**
Takashi Sakamoto7b2d99f2014-04-25 22:44:52 +0900141 * amdtp_stream_add_pcm_hw_constraints - add hw constraints for PCM substream
142 * @s: the AMDTP stream, which must be initialized.
143 * @runtime: the PCM substream runtime
144 */
145int amdtp_stream_add_pcm_hw_constraints(struct amdtp_stream *s,
146 struct snd_pcm_runtime *runtime)
147{
148 int err;
149
Takashi Sakamoto7b2d99f2014-04-25 22:44:52 +0900150 /*
151 * Currently firewire-lib processes 16 packets in one software
152 * interrupt callback. This equals to 2msec but actually the
153 * interval of the interrupts has a jitter.
154 * Additionally, even if adding a constraint to fit period size to
155 * 2msec, actual calculated frames per period doesn't equal to 2msec,
156 * depending on sampling rate.
157 * Anyway, the interval to call snd_pcm_period_elapsed() cannot 2msec.
158 * Here let us use 5msec for safe period interrupt.
159 */
160 err = snd_pcm_hw_constraint_minmax(runtime,
161 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
162 5000, UINT_MAX);
163 if (err < 0)
164 goto end;
165
166 /* Non-Blocking stream has no more constraints */
167 if (!(s->flags & CIP_BLOCKING))
168 goto end;
169
170 /*
171 * One AMDTP packet can include some frames. In blocking mode, the
172 * number equals to SYT_INTERVAL. So the number is 8, 16 or 32,
173 * depending on its sampling rate. For accurate period interrupt, it's
Yannick Guerrinice991982015-03-09 22:13:03 +0100174 * preferrable to align period/buffer sizes to current SYT_INTERVAL.
Takashi Sakamoto7b2d99f2014-04-25 22:44:52 +0900175 *
Yannick Guerrinice991982015-03-09 22:13:03 +0100176 * TODO: These constraints can be improved with proper rules.
177 * Currently apply LCM of SYT_INTERVALs.
Takashi Sakamoto7b2d99f2014-04-25 22:44:52 +0900178 */
179 err = snd_pcm_hw_constraint_step(runtime, 0,
180 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 32);
181 if (err < 0)
182 goto end;
183 err = snd_pcm_hw_constraint_step(runtime, 0,
184 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 32);
185end:
186 return err;
187}
188EXPORT_SYMBOL(amdtp_stream_add_pcm_hw_constraints);
189
190/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900191 * amdtp_stream_set_parameters - set stream parameters
192 * @s: the AMDTP stream to configure
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100193 * @rate: the sample rate
Takashi Sakamotodf075fe2015-09-19 11:22:02 +0900194 * @data_block_quadlets: the size of a data block in quadlet unit
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100195 *
Clemens Ladischa7304e32011-09-04 22:16:10 +0200196 * The parameters must be set before the stream is started, and must not be
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100197 * changed while the stream is running.
198 */
Takashi Sakamotodf075fe2015-09-19 11:22:02 +0900199int amdtp_stream_set_parameters(struct amdtp_stream *s, unsigned int rate,
200 unsigned int data_block_quadlets)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100201{
Takashi Sakamotodf075fe2015-09-19 11:22:02 +0900202 unsigned int sfc;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100203
Takashi Sakamoto547e6312015-09-19 11:21:49 +0900204 for (sfc = 0; sfc < ARRAY_SIZE(amdtp_rate_table); ++sfc) {
Takashi Sakamoto1017abe2014-04-25 22:44:59 +0900205 if (amdtp_rate_table[sfc] == rate)
Takashi Sakamoto547e6312015-09-19 11:21:49 +0900206 break;
207 }
208 if (sfc == ARRAY_SIZE(amdtp_rate_table))
209 return -EINVAL;
Clemens Ladische84d15f2011-09-04 22:12:48 +0200210
Clemens Ladische84d15f2011-09-04 22:12:48 +0200211 s->sfc = sfc;
Takashi Sakamotodf075fe2015-09-19 11:22:02 +0900212 s->data_block_quadlets = data_block_quadlets;
Clemens Ladischa7304e32011-09-04 22:16:10 +0200213 s->syt_interval = amdtp_syt_intervals[sfc];
Clemens Ladische84d15f2011-09-04 22:12:48 +0200214
215 /* default buffering in the device */
216 s->transfer_delay = TRANSFER_DELAY_TICKS - TICKS_PER_CYCLE;
217 if (s->flags & CIP_BLOCKING)
218 /* additional buffering needed to adjust for no-data packets */
219 s->transfer_delay += TICKS_PER_SECOND * s->syt_interval / rate;
Takashi Sakamoto77d2a8a2014-04-25 22:44:50 +0900220
Takashi Sakamoto547e6312015-09-19 11:21:49 +0900221 return 0;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100222}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900223EXPORT_SYMBOL(amdtp_stream_set_parameters);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100224
225/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900226 * amdtp_stream_get_max_payload - get the stream's packet size
227 * @s: the AMDTP stream
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100228 *
229 * This function must not be called before the stream has been configured
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900230 * with amdtp_stream_set_parameters().
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100231 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900232unsigned int amdtp_stream_get_max_payload(struct amdtp_stream *s)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100233{
Takashi Sakamotoa2064712015-05-22 23:00:50 +0900234 unsigned int multiplier = 1;
235
236 if (s->flags & CIP_JUMBO_PAYLOAD)
237 multiplier = 5;
238
239 return 8 + s->syt_interval * s->data_block_quadlets * 4 * multiplier;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100240}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900241EXPORT_SYMBOL(amdtp_stream_get_max_payload);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100242
Clemens Ladisch76fb8782012-05-13 22:03:09 +0200243/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900244 * amdtp_stream_pcm_prepare - prepare PCM device for running
245 * @s: the AMDTP stream
Clemens Ladisch76fb8782012-05-13 22:03:09 +0200246 *
247 * This function should be called from the PCM device's .prepare callback.
248 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900249void amdtp_stream_pcm_prepare(struct amdtp_stream *s)
Clemens Ladisch76fb8782012-05-13 22:03:09 +0200250{
251 tasklet_kill(&s->period_tasklet);
252 s->pcm_buffer_pointer = 0;
253 s->pcm_period_pointer = 0;
254}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900255EXPORT_SYMBOL(amdtp_stream_pcm_prepare);
Clemens Ladisch76fb8782012-05-13 22:03:09 +0200256
Takashi Sakamoto875be092015-05-22 23:00:51 +0900257static unsigned int calculate_data_blocks(struct amdtp_stream *s,
258 unsigned int syt)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100259{
260 unsigned int phase, data_blocks;
261
Takashi Sakamoto875be092015-05-22 23:00:51 +0900262 /* Blocking mode. */
263 if (s->flags & CIP_BLOCKING) {
264 /* This module generate empty packet for 'no data'. */
265 if (syt == CIP_SYT_NO_INFO)
266 data_blocks = 0;
267 else
268 data_blocks = s->syt_interval;
269 /* Non-blocking mode. */
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100270 } else {
Takashi Sakamoto875be092015-05-22 23:00:51 +0900271 if (!cip_sfc_is_base_44100(s->sfc)) {
272 /* Sample_rate / 8000 is an integer, and precomputed. */
273 data_blocks = s->data_block_state;
274 } else {
275 phase = s->data_block_state;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100276
277 /*
278 * This calculates the number of data blocks per packet so that
279 * 1) the overall rate is correct and exactly synchronized to
280 * the bus clock, and
281 * 2) packets with a rounded-up number of blocks occur as early
282 * as possible in the sequence (to prevent underruns of the
283 * device's buffer).
284 */
Takashi Sakamoto875be092015-05-22 23:00:51 +0900285 if (s->sfc == CIP_SFC_44100)
286 /* 6 6 5 6 5 6 5 ... */
287 data_blocks = 5 + ((phase & 1) ^
288 (phase == 0 || phase >= 40));
289 else
290 /* 12 11 11 11 11 ... or 23 22 22 22 22 ... */
291 data_blocks = 11 * (s->sfc >> 1) + (phase == 0);
292 if (++phase >= (80 >> (s->sfc >> 1)))
293 phase = 0;
294 s->data_block_state = phase;
295 }
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100296 }
297
298 return data_blocks;
299}
300
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900301static unsigned int calculate_syt(struct amdtp_stream *s,
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100302 unsigned int cycle)
303{
304 unsigned int syt_offset, phase, index, syt;
305
306 if (s->last_syt_offset < TICKS_PER_CYCLE) {
307 if (!cip_sfc_is_base_44100(s->sfc))
308 syt_offset = s->last_syt_offset + s->syt_offset_state;
309 else {
310 /*
311 * The time, in ticks, of the n'th SYT_INTERVAL sample is:
312 * n * SYT_INTERVAL * 24576000 / sample_rate
313 * Modulo TICKS_PER_CYCLE, the difference between successive
314 * elements is about 1386.23. Rounding the results of this
315 * formula to the SYT precision results in a sequence of
316 * differences that begins with:
317 * 1386 1386 1387 1386 1386 1386 1387 1386 1386 1386 1387 ...
318 * This code generates _exactly_ the same sequence.
319 */
320 phase = s->syt_offset_state;
321 index = phase % 13;
322 syt_offset = s->last_syt_offset;
323 syt_offset += 1386 + ((index && !(index & 3)) ||
324 phase == 146);
325 if (++phase >= 147)
326 phase = 0;
327 s->syt_offset_state = phase;
328 }
329 } else
330 syt_offset = s->last_syt_offset - TICKS_PER_CYCLE;
331 s->last_syt_offset = syt_offset;
332
Clemens Ladischbe454362011-03-15 07:55:02 +0100333 if (syt_offset < TICKS_PER_CYCLE) {
Clemens Ladische84d15f2011-09-04 22:12:48 +0200334 syt_offset += s->transfer_delay;
Clemens Ladischbe454362011-03-15 07:55:02 +0100335 syt = (cycle + syt_offset / TICKS_PER_CYCLE) << 12;
336 syt += syt_offset % TICKS_PER_CYCLE;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100337
Takashi Sakamotob445db42014-04-25 22:44:43 +0900338 return syt & CIP_SYT_MASK;
Clemens Ladischbe454362011-03-15 07:55:02 +0100339 } else {
Takashi Sakamotob445db42014-04-25 22:44:43 +0900340 return CIP_SYT_NO_INFO;
Clemens Ladischbe454362011-03-15 07:55:02 +0100341 }
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100342}
343
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900344static void update_pcm_pointers(struct amdtp_stream *s,
345 struct snd_pcm_substream *pcm,
346 unsigned int frames)
Takashi Sakamoto65845f22014-08-29 13:40:45 +0900347{
348 unsigned int ptr;
349
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900350 ptr = s->pcm_buffer_pointer + frames;
351 if (ptr >= pcm->runtime->buffer_size)
352 ptr -= pcm->runtime->buffer_size;
353 ACCESS_ONCE(s->pcm_buffer_pointer) = ptr;
354
355 s->pcm_period_pointer += frames;
356 if (s->pcm_period_pointer >= pcm->runtime->period_size) {
357 s->pcm_period_pointer -= pcm->runtime->period_size;
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900358 tasklet_hi_schedule(&s->period_tasklet);
359 }
360}
361
362static void pcm_period_tasklet(unsigned long data)
363{
364 struct amdtp_stream *s = (void *)data;
365 struct snd_pcm_substream *pcm = ACCESS_ONCE(s->pcm);
366
367 if (pcm)
368 snd_pcm_period_elapsed(pcm);
369}
370
Takashi Sakamotoff38e0c2016-05-11 07:35:09 +0900371static int queue_packet(struct amdtp_stream *s, unsigned int header_length,
372 unsigned int payload_length)
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900373{
374 struct fw_iso_packet p = {0};
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900375 int err = 0;
376
377 if (IS_ERR(s->context))
378 goto end;
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900379
380 p.interrupt = IS_ALIGNED(s->packet_index + 1, INTERRUPT_INTERVAL);
381 p.tag = TAG_CIP;
382 p.header_length = header_length;
Takashi Sakamotoff38e0c2016-05-11 07:35:09 +0900383 if (payload_length > 0)
384 p.payload_length = payload_length;
385 else
386 p.skip = true;
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900387 err = fw_iso_context_queue(s->context, &p, &s->buffer.iso_buffer,
388 s->buffer.packets[s->packet_index].offset);
389 if (err < 0) {
390 dev_err(&s->unit->device, "queueing error: %d\n", err);
391 goto end;
392 }
393
394 if (++s->packet_index >= QUEUE_LENGTH)
395 s->packet_index = 0;
396end:
397 return err;
398}
399
400static inline int queue_out_packet(struct amdtp_stream *s,
Takashi Sakamotoff38e0c2016-05-11 07:35:09 +0900401 unsigned int payload_length)
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900402{
Takashi Sakamotoff38e0c2016-05-11 07:35:09 +0900403 return queue_packet(s, OUT_PACKET_HEADER_SIZE, payload_length);
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900404}
405
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900406static inline int queue_in_packet(struct amdtp_stream *s)
407{
408 return queue_packet(s, IN_PACKET_HEADER_SIZE,
Takashi Sakamotoff38e0c2016-05-11 07:35:09 +0900409 amdtp_stream_get_max_payload(s));
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900410}
411
Takashi Sakamotoa9c42842016-05-11 07:33:27 +0900412static int handle_out_packet(struct amdtp_stream *s, unsigned int cycle,
413 unsigned int index)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100414{
415 __be32 *buffer;
Takashi Sakamoto390a1512016-05-09 23:15:55 +0900416 unsigned int syt;
417 unsigned int data_blocks;
Takashi Sakamoto6fc6b9c2015-05-22 23:00:52 +0900418 unsigned int payload_length;
Takashi Sakamoto20e44572015-09-19 11:21:52 +0900419 unsigned int pcm_frames;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100420 struct snd_pcm_substream *pcm;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100421
Takashi Sakamotoccccad82014-04-25 22:44:48 +0900422 buffer = s->buffer.packets[s->packet_index].buffer;
Takashi Sakamoto390a1512016-05-09 23:15:55 +0900423 syt = calculate_syt(s, cycle);
424 data_blocks = calculate_data_blocks(s, syt);
Takashi Sakamotodf075fe2015-09-19 11:22:02 +0900425 pcm_frames = s->process_data_blocks(s, buffer + 2, data_blocks, &syt);
Takashi Sakamoto20e44572015-09-19 11:21:52 +0900426
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100427 buffer[0] = cpu_to_be32(ACCESS_ONCE(s->source_node_id_field) |
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +0900428 (s->data_block_quadlets << CIP_DBS_SHIFT) |
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100429 s->data_block_counter);
Takashi Sakamoto414ba022015-09-19 11:21:53 +0900430 buffer[1] = cpu_to_be32(CIP_EOH |
431 ((s->fmt << CIP_FMT_SHIFT) & CIP_FMT_MASK) |
432 ((s->fdf << CIP_FDF_SHIFT) & CIP_FDF_MASK) |
433 (syt & CIP_SYT_MASK));
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100434
435 s->data_block_counter = (s->data_block_counter + data_blocks) & 0xff;
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900436 payload_length = 8 + data_blocks * 4 * s->data_block_quadlets;
Takashi Sakamoto0c95c1d2016-05-09 21:12:46 +0900437
Takashi Sakamotoa9c42842016-05-11 07:33:27 +0900438 trace_out_packet(s, cycle, buffer, payload_length, index);
Takashi Sakamoto0c95c1d2016-05-09 21:12:46 +0900439
Takashi Sakamotoff38e0c2016-05-11 07:35:09 +0900440 if (queue_out_packet(s, payload_length) < 0)
Takashi Sakamotoa4103bd2015-05-22 23:00:53 +0900441 return -EIO;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100442
Takashi Sakamoto20e44572015-09-19 11:21:52 +0900443 pcm = ACCESS_ONCE(s->pcm);
444 if (pcm && pcm_frames > 0)
445 update_pcm_pointers(s, pcm, pcm_frames);
Takashi Sakamotoa4103bd2015-05-22 23:00:53 +0900446
447 /* No need to return the number of handled data blocks. */
448 return 0;
Clemens Ladisch76fb8782012-05-13 22:03:09 +0200449}
450
Takashi Sakamoto6fc6b9c2015-05-22 23:00:52 +0900451static int handle_in_packet(struct amdtp_stream *s,
Takashi Sakamotoa9c42842016-05-11 07:33:27 +0900452 unsigned int payload_quadlets, unsigned int cycle,
453 unsigned int index)
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900454{
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900455 __be32 *buffer;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900456 u32 cip_header[2];
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900457 unsigned int fmt, fdf, syt;
Takashi Sakamoto6fc6b9c2015-05-22 23:00:52 +0900458 unsigned int data_block_quadlets, data_block_counter, dbc_interval;
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900459 unsigned int data_blocks;
Takashi Sakamoto20e44572015-09-19 11:21:52 +0900460 struct snd_pcm_substream *pcm;
461 unsigned int pcm_frames;
Takashi Sakamotoc8bdf492014-04-25 22:45:04 +0900462 bool lost;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900463
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900464 buffer = s->buffer.packets[s->packet_index].buffer;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900465 cip_header[0] = be32_to_cpu(buffer[0]);
466 cip_header[1] = be32_to_cpu(buffer[1]);
467
Takashi Sakamotoa9c42842016-05-11 07:33:27 +0900468 trace_in_packet(s, cycle, cip_header, payload_quadlets, index);
Takashi Sakamoto0c95c1d2016-05-09 21:12:46 +0900469
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900470 /*
471 * This module supports 'Two-quadlet CIP header with SYT field'.
Takashi Sakamoto77d2a8a2014-04-25 22:44:50 +0900472 * For convenience, also check FMT field is AM824 or not.
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900473 */
474 if (((cip_header[0] & CIP_EOH_MASK) == CIP_EOH) ||
Takashi Sakamoto414ba022015-09-19 11:21:53 +0900475 ((cip_header[1] & CIP_EOH_MASK) != CIP_EOH)) {
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900476 dev_info_ratelimited(&s->unit->device,
477 "Invalid CIP header for AMDTP: %08X:%08X\n",
478 cip_header[0], cip_header[1]);
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900479 data_blocks = 0;
Takashi Sakamoto20e44572015-09-19 11:21:52 +0900480 pcm_frames = 0;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900481 goto end;
482 }
483
Takashi Sakamoto414ba022015-09-19 11:21:53 +0900484 /* Check valid protocol or not. */
485 fmt = (cip_header[1] & CIP_FMT_MASK) >> CIP_FMT_SHIFT;
486 if (fmt != s->fmt) {
Takashi Sakamoto2a7e1712015-10-11 22:33:50 +0900487 dev_info_ratelimited(&s->unit->device,
488 "Detect unexpected protocol: %08x %08x\n",
489 cip_header[0], cip_header[1]);
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900490 data_blocks = 0;
Takashi Sakamoto2a7e1712015-10-11 22:33:50 +0900491 pcm_frames = 0;
492 goto end;
Takashi Sakamoto414ba022015-09-19 11:21:53 +0900493 }
494
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900495 /* Calculate data blocks */
Takashi Sakamoto414ba022015-09-19 11:21:53 +0900496 fdf = (cip_header[1] & CIP_FDF_MASK) >> CIP_FDF_SHIFT;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900497 if (payload_quadlets < 3 ||
Takashi Sakamoto414ba022015-09-19 11:21:53 +0900498 (fmt == CIP_FMT_AM && fdf == AMDTP_FDF_NO_DATA)) {
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900499 data_blocks = 0;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900500 } else {
501 data_block_quadlets =
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +0900502 (cip_header[0] & CIP_DBS_MASK) >> CIP_DBS_SHIFT;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900503 /* avoid division by zero */
504 if (data_block_quadlets == 0) {
Takashi Sakamoto12e0f432015-05-22 23:21:13 +0900505 dev_err(&s->unit->device,
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900506 "Detect invalid value in dbs field: %08X\n",
507 cip_header[0]);
Takashi Sakamotoa9007052015-05-22 23:21:14 +0900508 return -EPROTO;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900509 }
Takashi Sakamoto69702232014-04-25 22:45:05 +0900510 if (s->flags & CIP_WRONG_DBS)
511 data_block_quadlets = s->data_block_quadlets;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900512
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900513 data_blocks = (payload_quadlets - 2) / data_block_quadlets;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900514 }
515
516 /* Check data block counter continuity */
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +0900517 data_block_counter = cip_header[0] & CIP_DBC_MASK;
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900518 if (data_blocks == 0 && (s->flags & CIP_EMPTY_HAS_WRONG_DBC) &&
Takashi Sakamoto9d591242014-04-25 22:45:27 +0900519 s->data_block_counter != UINT_MAX)
520 data_block_counter = s->data_block_counter;
521
Takashi Sakamoto18f5ed32015-08-05 09:21:05 +0900522 if (((s->flags & CIP_SKIP_DBC_ZERO_CHECK) &&
523 data_block_counter == s->tx_first_dbc) ||
524 s->data_block_counter == UINT_MAX) {
Takashi Sakamotob84b1a22014-04-25 22:45:07 +0900525 lost = false;
526 } else if (!(s->flags & CIP_DBC_IS_END_EVENT)) {
Takashi Sakamotoc8bdf492014-04-25 22:45:04 +0900527 lost = data_block_counter != s->data_block_counter;
Takashi Sakamotod9cd0062014-04-25 22:45:06 +0900528 } else {
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900529 if (data_blocks > 0 && s->tx_dbc_interval > 0)
Takashi Sakamotod9cd0062014-04-25 22:45:06 +0900530 dbc_interval = s->tx_dbc_interval;
531 else
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900532 dbc_interval = data_blocks;
Takashi Sakamotod9cd0062014-04-25 22:45:06 +0900533
Takashi Sakamotoc8bdf492014-04-25 22:45:04 +0900534 lost = data_block_counter !=
Takashi Sakamotod9cd0062014-04-25 22:45:06 +0900535 ((s->data_block_counter + dbc_interval) & 0xff);
536 }
Takashi Sakamotoc8bdf492014-04-25 22:45:04 +0900537
538 if (lost) {
Takashi Sakamoto12e0f432015-05-22 23:21:13 +0900539 dev_err(&s->unit->device,
540 "Detect discontinuity of CIP: %02X %02X\n",
541 s->data_block_counter, data_block_counter);
Takashi Sakamoto6fc6b9c2015-05-22 23:00:52 +0900542 return -EIO;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900543 }
544
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900545 syt = be32_to_cpu(buffer[1]) & CIP_SYT_MASK;
546 pcm_frames = s->process_data_blocks(s, buffer + 2, data_blocks, &syt);
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900547
Takashi Sakamotoc8bdf492014-04-25 22:45:04 +0900548 if (s->flags & CIP_DBC_IS_END_EVENT)
549 s->data_block_counter = data_block_counter;
550 else
551 s->data_block_counter =
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900552 (data_block_counter + data_blocks) & 0xff;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900553end:
554 if (queue_in_packet(s) < 0)
Takashi Sakamoto6fc6b9c2015-05-22 23:00:52 +0900555 return -EIO;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900556
Takashi Sakamoto20e44572015-09-19 11:21:52 +0900557 pcm = ACCESS_ONCE(s->pcm);
558 if (pcm && pcm_frames > 0)
559 update_pcm_pointers(s, pcm, pcm_frames);
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900560
Takashi Sakamoto31ea49b2015-05-28 00:02:59 +0900561 return 0;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900562}
563
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900564/*
565 * In CYCLE_TIMER register of IEEE 1394, 7 bits are used to represent second. On
566 * the other hand, in DMA descriptors of 1394 OHCI, 3 bits are used to represent
567 * it. Thus, via Linux firewire subsystem, we can get the 3 bits for second.
568 */
569static inline u32 compute_cycle_count(u32 tstamp)
570{
571 return (((tstamp >> 13) & 0x07) * 8000) + (tstamp & 0x1fff);
572}
573
574static inline u32 increment_cycle_count(u32 cycle, unsigned int addend)
575{
576 cycle += addend;
577 if (cycle >= 8 * CYCLES_PER_SECOND)
578 cycle -= 8 * CYCLES_PER_SECOND;
579 return cycle;
580}
581
Takashi Sakamotof90e2de2016-05-09 21:12:45 +0900582static inline u32 decrement_cycle_count(u32 cycle, unsigned int subtrahend)
583{
584 if (cycle < subtrahend)
585 cycle += 8 * CYCLES_PER_SECOND;
586 return cycle - subtrahend;
587}
588
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900589static void out_stream_callback(struct fw_iso_context *context, u32 tstamp,
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900590 size_t header_length, void *header,
591 void *private_data)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100592{
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900593 struct amdtp_stream *s = private_data;
Takashi Sakamoto390a1512016-05-09 23:15:55 +0900594 unsigned int i, packets = header_length / 4;
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900595 u32 cycle;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100596
Takashi Sakamotoa4103bd2015-05-22 23:00:53 +0900597 if (s->packet_index < 0)
598 return;
599
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900600 cycle = compute_cycle_count(tstamp);
601
602 /* Align to actual cycle count for the last packet. */
603 cycle = increment_cycle_count(cycle, QUEUE_LENGTH - packets);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100604
Takashi Sakamotoccccad82014-04-25 22:44:48 +0900605 for (i = 0; i < packets; ++i) {
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900606 cycle = increment_cycle_count(cycle, 1);
Takashi Sakamotoa9c42842016-05-11 07:33:27 +0900607 if (handle_out_packet(s, cycle, i) < 0) {
Takashi Sakamotoa4103bd2015-05-22 23:00:53 +0900608 s->packet_index = -1;
Takashi Sakamoto8c9c55a2017-06-11 16:08:21 +0900609 if (in_interrupt())
610 amdtp_stream_pcm_abort(s);
611 WRITE_ONCE(s->pcm_buffer_pointer, SNDRV_PCM_POS_XRUN);
Takashi Sakamotoa4103bd2015-05-22 23:00:53 +0900612 return;
613 }
Takashi Sakamotoccccad82014-04-25 22:44:48 +0900614 }
Takashi Sakamotoa4103bd2015-05-22 23:00:53 +0900615
Clemens Ladisch13882a82011-05-02 09:33:56 +0200616 fw_iso_context_queue_flush(s->context);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100617}
618
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900619static void in_stream_callback(struct fw_iso_context *context, u32 tstamp,
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900620 size_t header_length, void *header,
621 void *private_data)
622{
623 struct amdtp_stream *s = private_data;
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900624 unsigned int i, packets;
Takashi Sakamotoa2064712015-05-22 23:00:50 +0900625 unsigned int payload_quadlets, max_payload_quadlets;
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900626 __be32 *headers = header;
Takashi Sakamotof90e2de2016-05-09 21:12:45 +0900627 u32 cycle;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900628
Takashi Sakamotoa4103bd2015-05-22 23:00:53 +0900629 if (s->packet_index < 0)
630 return;
631
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900632 /* The number of packets in buffer */
633 packets = header_length / IN_PACKET_HEADER_SIZE;
634
Takashi Sakamotof90e2de2016-05-09 21:12:45 +0900635 cycle = compute_cycle_count(tstamp);
636
637 /* Align to actual cycle count for the last packet. */
638 cycle = decrement_cycle_count(cycle, packets);
639
Takashi Sakamotoa2064712015-05-22 23:00:50 +0900640 /* For buffer-over-run prevention. */
641 max_payload_quadlets = amdtp_stream_get_max_payload(s) / 4;
642
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900643 for (i = 0; i < packets; i++) {
Takashi Sakamotof90e2de2016-05-09 21:12:45 +0900644 cycle = increment_cycle_count(cycle, 1);
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900645
646 /* The number of quadlets in this packet */
647 payload_quadlets =
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900648 (be32_to_cpu(headers[i]) >> ISO_DATA_LENGTH_SHIFT) / 4;
Takashi Sakamotoa2064712015-05-22 23:00:50 +0900649 if (payload_quadlets > max_payload_quadlets) {
650 dev_err(&s->unit->device,
651 "Detect jumbo payload: %02x %02x\n",
652 payload_quadlets, max_payload_quadlets);
Takashi Sakamotoa2064712015-05-22 23:00:50 +0900653 break;
654 }
655
Takashi Sakamotoa9c42842016-05-11 07:33:27 +0900656 if (handle_in_packet(s, payload_quadlets, cycle, i) < 0)
Takashi Sakamoto6fc6b9c2015-05-22 23:00:52 +0900657 break;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900658 }
659
Takashi Sakamotodec63cc2016-05-09 23:15:53 +0900660 /* Queueing error or detecting invalid payload. */
Takashi Sakamotod9a16fc2016-05-09 23:15:54 +0900661 if (i < packets) {
Takashi Sakamotodec63cc2016-05-09 23:15:53 +0900662 s->packet_index = -1;
Takashi Sakamoto8c9c55a2017-06-11 16:08:21 +0900663 if (in_interrupt())
664 amdtp_stream_pcm_abort(s);
665 WRITE_ONCE(s->pcm_buffer_pointer, SNDRV_PCM_POS_XRUN);
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900666 return;
667 }
668
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900669 fw_iso_context_queue_flush(s->context);
670}
671
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900672/* this is executed one time */
673static void amdtp_stream_first_callback(struct fw_iso_context *context,
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900674 u32 tstamp, size_t header_length,
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900675 void *header, void *private_data)
676{
677 struct amdtp_stream *s = private_data;
678
679 /*
680 * For in-stream, first packet has come.
681 * For out-stream, prepared to transmit first packet
682 */
683 s->callbacked = true;
684 wake_up(&s->callback_wait);
685
686 if (s->direction == AMDTP_IN_STREAM)
687 context->callback.sc = in_stream_callback;
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900688 else
689 context->callback.sc = out_stream_callback;
690
Takashi Sakamoto73fc7f02016-05-09 21:12:44 +0900691 context->callback.sc(context, tstamp, header_length, header, s);
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900692}
693
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100694/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900695 * amdtp_stream_start - start transferring packets
696 * @s: the AMDTP stream to start
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100697 * @channel: the isochronous channel on the bus
698 * @speed: firewire speed code
699 *
700 * The stream cannot be started until it has been configured with
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900701 * amdtp_stream_set_parameters() and it must be started before any PCM or MIDI
702 * device can be started.
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100703 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900704int amdtp_stream_start(struct amdtp_stream *s, int channel, int speed)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100705{
706 static const struct {
707 unsigned int data_block;
708 unsigned int syt_offset;
709 } initial_state[] = {
710 [CIP_SFC_32000] = { 4, 3072 },
711 [CIP_SFC_48000] = { 6, 1024 },
712 [CIP_SFC_96000] = { 12, 1024 },
713 [CIP_SFC_192000] = { 24, 1024 },
714 [CIP_SFC_44100] = { 0, 67 },
715 [CIP_SFC_88200] = { 0, 67 },
716 [CIP_SFC_176400] = { 0, 67 },
717 };
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900718 unsigned int header_size;
719 enum dma_data_direction dir;
Takashi Sakamoto7ab56642014-04-25 22:45:03 +0900720 int type, tag, err;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100721
722 mutex_lock(&s->mutex);
723
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900724 if (WARN_ON(amdtp_stream_running(s) ||
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900725 (s->data_block_quadlets < 1))) {
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100726 err = -EBADFD;
727 goto err_unlock;
728 }
729
Takashi Sakamoto62f00e42016-05-09 23:15:56 +0900730 if (s->direction == AMDTP_IN_STREAM)
Takashi Sakamotob6bc8122014-04-25 22:45:16 +0900731 s->data_block_counter = UINT_MAX;
732 else
733 s->data_block_counter = 0;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100734 s->data_block_state = initial_state[s->sfc].data_block;
735 s->syt_offset_state = initial_state[s->sfc].syt_offset;
736 s->last_syt_offset = TICKS_PER_CYCLE;
737
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900738 /* initialize packet buffer */
739 if (s->direction == AMDTP_IN_STREAM) {
740 dir = DMA_FROM_DEVICE;
741 type = FW_ISO_CONTEXT_RECEIVE;
742 header_size = IN_PACKET_HEADER_SIZE;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900743 } else {
744 dir = DMA_TO_DEVICE;
745 type = FW_ISO_CONTEXT_TRANSMIT;
746 header_size = OUT_PACKET_HEADER_SIZE;
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900747 }
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100748 err = iso_packets_buffer_init(&s->buffer, s->unit, QUEUE_LENGTH,
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900749 amdtp_stream_get_max_payload(s), dir);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100750 if (err < 0)
751 goto err_unlock;
752
753 s->context = fw_iso_context_create(fw_parent_device(s->unit)->card,
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900754 type, channel, speed, header_size,
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900755 amdtp_stream_first_callback, s);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100756 if (IS_ERR(s->context)) {
757 err = PTR_ERR(s->context);
758 if (err == -EBUSY)
759 dev_err(&s->unit->device,
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900760 "no free stream on this controller\n");
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100761 goto err_buffer;
762 }
763
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900764 amdtp_stream_update(s);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100765
Clemens Ladischec00f5e2011-03-15 07:57:24 +0100766 s->packet_index = 0;
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900767 do {
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900768 if (s->direction == AMDTP_IN_STREAM)
769 err = queue_in_packet(s);
770 else
Takashi Sakamotoff38e0c2016-05-11 07:35:09 +0900771 err = queue_out_packet(s, 0);
Takashi Sakamoto4b7da112014-04-25 22:44:45 +0900772 if (err < 0)
773 goto err_context;
774 } while (s->packet_index > 0);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100775
Takashi Sakamoto2b3fc452014-04-25 22:44:46 +0900776 /* NOTE: TAG1 matches CIP. This just affects in stream. */
Takashi Sakamoto7ab56642014-04-25 22:45:03 +0900777 tag = FW_ISO_CONTEXT_MATCH_TAG1;
778 if (s->flags & CIP_EMPTY_WITH_TAG0)
779 tag |= FW_ISO_CONTEXT_MATCH_TAG0;
780
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900781 s->callbacked = false;
Takashi Sakamoto7ab56642014-04-25 22:45:03 +0900782 err = fw_iso_context_start(s->context, -1, 0, tag);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100783 if (err < 0)
784 goto err_context;
785
786 mutex_unlock(&s->mutex);
787
788 return 0;
789
790err_context:
791 fw_iso_context_destroy(s->context);
792 s->context = ERR_PTR(-1);
793err_buffer:
794 iso_packets_buffer_destroy(&s->buffer, s->unit);
795err_unlock:
796 mutex_unlock(&s->mutex);
797
798 return err;
799}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900800EXPORT_SYMBOL(amdtp_stream_start);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100801
802/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900803 * amdtp_stream_pcm_pointer - get the PCM buffer position
804 * @s: the AMDTP stream that transports the PCM data
Clemens Ladische9148dd2012-05-13 18:49:14 +0200805 *
806 * Returns the current buffer position, in frames.
807 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900808unsigned long amdtp_stream_pcm_pointer(struct amdtp_stream *s)
Clemens Ladische9148dd2012-05-13 18:49:14 +0200809{
Takashi Sakamoto1dba9db2016-05-12 02:17:39 +0900810 /*
811 * This function is called in software IRQ context of period_tasklet or
812 * process context.
813 *
814 * When the software IRQ context was scheduled by software IRQ context
815 * of IR/IT contexts, queued packets were already handled. Therefore,
816 * no need to flush the queue in buffer anymore.
817 *
818 * When the process context reach here, some packets will be already
819 * queued in the buffer. These packets should be handled immediately
820 * to keep better granularity of PCM pointer.
821 *
822 * Later, the process context will sometimes schedules software IRQ
823 * context of the period_tasklet. Then, no need to flush the queue by
824 * the same reason as described for IR/IT contexts.
825 */
826 if (!in_interrupt() && amdtp_stream_running(s))
Clemens Ladisch92b862c2012-05-13 19:07:22 +0200827 fw_iso_context_flush_completions(s->context);
Clemens Ladische9148dd2012-05-13 18:49:14 +0200828
829 return ACCESS_ONCE(s->pcm_buffer_pointer);
830}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900831EXPORT_SYMBOL(amdtp_stream_pcm_pointer);
Clemens Ladische9148dd2012-05-13 18:49:14 +0200832
833/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900834 * amdtp_stream_update - update the stream after a bus reset
835 * @s: the AMDTP stream
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100836 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900837void amdtp_stream_update(struct amdtp_stream *s)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100838{
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +0900839 /* Precomputing. */
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100840 ACCESS_ONCE(s->source_node_id_field) =
Takashi Sakamoto9a2820c2015-05-22 23:21:12 +0900841 (fw_parent_device(s->unit)->card->node_id << CIP_SID_SHIFT) &
842 CIP_SID_MASK;
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100843}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900844EXPORT_SYMBOL(amdtp_stream_update);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100845
846/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900847 * amdtp_stream_stop - stop sending packets
848 * @s: the AMDTP stream to stop
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100849 *
850 * All PCM and MIDI devices of the stream must be stopped before the stream
851 * itself can be stopped.
852 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900853void amdtp_stream_stop(struct amdtp_stream *s)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100854{
855 mutex_lock(&s->mutex);
856
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900857 if (!amdtp_stream_running(s)) {
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100858 mutex_unlock(&s->mutex);
859 return;
860 }
861
Clemens Ladisch76fb8782012-05-13 22:03:09 +0200862 tasklet_kill(&s->period_tasklet);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100863 fw_iso_context_stop(s->context);
864 fw_iso_context_destroy(s->context);
865 s->context = ERR_PTR(-1);
866 iso_packets_buffer_destroy(&s->buffer, s->unit);
867
Takashi Sakamoto7b3b0d82014-04-25 22:44:49 +0900868 s->callbacked = false;
869
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100870 mutex_unlock(&s->mutex);
871}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900872EXPORT_SYMBOL(amdtp_stream_stop);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100873
874/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900875 * amdtp_stream_pcm_abort - abort the running PCM device
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100876 * @s: the AMDTP stream about to be stopped
877 *
878 * If the isochronous stream needs to be stopped asynchronously, call this
879 * function first to stop the PCM device.
880 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900881void amdtp_stream_pcm_abort(struct amdtp_stream *s)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100882{
883 struct snd_pcm_substream *pcm;
884
885 pcm = ACCESS_ONCE(s->pcm);
Takashi Iwai1fb85102014-11-07 17:08:28 +0100886 if (pcm)
887 snd_pcm_stop_xrun(pcm);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100888}
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900889EXPORT_SYMBOL(amdtp_stream_pcm_abort);