ALSA: firewire-lib: use packet descriptor for IT context
This commit uses packet descriptor to parse headers of IT context and generate timing information for ideal sequence. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
04130cf8e2
commit
f4f6ae7b7c
sound/firewire
|
@ -676,6 +676,38 @@ static inline u32 compute_it_cycle(const __be32 ctx_header_tstamp)
|
||||||
return increment_cycle_count(cycle, QUEUE_LENGTH);
|
return increment_cycle_count(cycle, QUEUE_LENGTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void generate_ideal_pkt_descs(struct amdtp_stream *s,
|
||||||
|
struct pkt_desc *descs,
|
||||||
|
const __be32 *ctx_header,
|
||||||
|
unsigned int packets)
|
||||||
|
{
|
||||||
|
unsigned int dbc = s->data_block_counter;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < packets; ++i) {
|
||||||
|
struct pkt_desc *desc = descs + i;
|
||||||
|
unsigned int index = (s->packet_index + i) % QUEUE_LENGTH;
|
||||||
|
|
||||||
|
desc->cycle = compute_cycle_count(*ctx_header);
|
||||||
|
desc->syt = calculate_syt(s, desc->cycle);
|
||||||
|
desc->data_blocks = calculate_data_blocks(s, desc->syt);
|
||||||
|
|
||||||
|
if (s->flags & CIP_DBC_IS_END_EVENT)
|
||||||
|
dbc = (dbc + desc->data_blocks) & 0xff;
|
||||||
|
|
||||||
|
desc->data_block_counter = dbc;
|
||||||
|
|
||||||
|
if (!(s->flags & CIP_DBC_IS_END_EVENT))
|
||||||
|
dbc = (dbc + desc->data_blocks) & 0xff;
|
||||||
|
|
||||||
|
desc->ctx_payload = s->buffer.packets[index].buffer;
|
||||||
|
|
||||||
|
++ctx_header;
|
||||||
|
}
|
||||||
|
|
||||||
|
s->data_block_counter = dbc;
|
||||||
|
}
|
||||||
|
|
||||||
static inline void cancel_stream(struct amdtp_stream *s)
|
static inline void cancel_stream(struct amdtp_stream *s)
|
||||||
{
|
{
|
||||||
s->packet_index = -1;
|
s->packet_index = -1;
|
||||||
|
@ -696,39 +728,29 @@ static void out_stream_callback(struct fw_iso_context *context, u32 tstamp,
|
||||||
if (s->packet_index < 0)
|
if (s->packet_index < 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
generate_ideal_pkt_descs(s, s->pkt_descs, ctx_header, packets);
|
||||||
|
|
||||||
for (i = 0; i < packets; ++i) {
|
for (i = 0; i < packets; ++i) {
|
||||||
u32 cycle;
|
const struct pkt_desc *desc = s->pkt_descs + i;
|
||||||
unsigned int syt;
|
|
||||||
unsigned int data_blocks;
|
|
||||||
unsigned int dbc;
|
|
||||||
__be32 *buffer;
|
|
||||||
unsigned int pcm_frames;
|
unsigned int pcm_frames;
|
||||||
|
unsigned int syt;
|
||||||
struct {
|
struct {
|
||||||
struct fw_iso_packet params;
|
struct fw_iso_packet params;
|
||||||
__be32 header[IT_PKT_HEADER_SIZE_CIP / sizeof(__be32)];
|
__be32 header[IT_PKT_HEADER_SIZE_CIP / sizeof(__be32)];
|
||||||
} template = { {0}, {0} };
|
} template = { {0}, {0} };
|
||||||
struct snd_pcm_substream *pcm;
|
struct snd_pcm_substream *pcm;
|
||||||
|
|
||||||
cycle = compute_it_cycle(*ctx_header);
|
pcm_frames = s->process_data_blocks(s, desc->ctx_payload,
|
||||||
syt = calculate_syt(s, cycle);
|
desc->data_blocks, desc->data_block_counter);
|
||||||
data_blocks = calculate_data_blocks(s, syt);
|
|
||||||
buffer = s->buffer.packets[s->packet_index].buffer;
|
|
||||||
dbc = s->data_block_counter;
|
|
||||||
pcm_frames = s->process_data_blocks(s, buffer, data_blocks, dbc);
|
|
||||||
|
|
||||||
if (s->flags & CIP_DBC_IS_END_EVENT)
|
if (s->ctx_data.rx.syt_override < 0)
|
||||||
dbc = (dbc + data_blocks) & 0xff;
|
syt = desc->syt;
|
||||||
|
else
|
||||||
if (s->ctx_data.rx.syt_override >= 0)
|
|
||||||
syt = s->ctx_data.rx.syt_override;
|
syt = s->ctx_data.rx.syt_override;
|
||||||
|
|
||||||
build_it_pkt_header(s, cycle, &template.params, data_blocks,
|
build_it_pkt_header(s, desc->cycle, &template.params,
|
||||||
dbc, syt, i);
|
desc->data_blocks, desc->data_block_counter,
|
||||||
|
syt, i);
|
||||||
if (!(s->flags & CIP_DBC_IS_END_EVENT))
|
|
||||||
dbc = (dbc + data_blocks) & 0xff;
|
|
||||||
|
|
||||||
s->data_block_counter = dbc;
|
|
||||||
|
|
||||||
if (queue_out_packet(s, &template.params) < 0) {
|
if (queue_out_packet(s, &template.params) < 0) {
|
||||||
cancel_stream(s);
|
cancel_stream(s);
|
||||||
|
@ -738,8 +760,6 @@ static void out_stream_callback(struct fw_iso_context *context, u32 tstamp,
|
||||||
pcm = READ_ONCE(s->pcm);
|
pcm = READ_ONCE(s->pcm);
|
||||||
if (pcm && pcm_frames > 0)
|
if (pcm && pcm_frames > 0)
|
||||||
update_pcm_pointers(s, pcm, pcm_frames);
|
update_pcm_pointers(s, pcm, pcm_frames);
|
||||||
|
|
||||||
++ctx_header;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fw_iso_context_queue_flush(s->context);
|
fw_iso_context_queue_flush(s->context);
|
||||||
|
|
Loading…
Reference in New Issue