mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-04 04:02:26 +00:00
ALSA: firewire-lib: code refactoring for parser of IR context header
This commit refactors regarding to function argument for the length of isochronous packet payload. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Link: https://lore.kernel.org/r/20210518130048.146596-6-o-takashi@sakamocchi.jp Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
3e106f4f69
commit
ebd2a647e2
@ -632,33 +632,33 @@ static int check_cip_header(struct amdtp_stream *s, const __be32 *buf,
|
|||||||
|
|
||||||
static int parse_ir_ctx_header(struct amdtp_stream *s, unsigned int cycle,
|
static int parse_ir_ctx_header(struct amdtp_stream *s, unsigned int cycle,
|
||||||
const __be32 *ctx_header,
|
const __be32 *ctx_header,
|
||||||
unsigned int *payload_length,
|
|
||||||
unsigned int *data_blocks,
|
unsigned int *data_blocks,
|
||||||
unsigned int *data_block_counter,
|
unsigned int *data_block_counter,
|
||||||
unsigned int *syt, unsigned int packet_index, unsigned int index)
|
unsigned int *syt, unsigned int packet_index, unsigned int index)
|
||||||
{
|
{
|
||||||
|
unsigned int payload_length;
|
||||||
const __be32 *cip_header;
|
const __be32 *cip_header;
|
||||||
unsigned int cip_header_size;
|
unsigned int cip_header_size;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
*payload_length = be32_to_cpu(ctx_header[0]) >> ISO_DATA_LENGTH_SHIFT;
|
payload_length = be32_to_cpu(ctx_header[0]) >> ISO_DATA_LENGTH_SHIFT;
|
||||||
|
|
||||||
if (!(s->flags & CIP_NO_HEADER))
|
if (!(s->flags & CIP_NO_HEADER))
|
||||||
cip_header_size = 8;
|
cip_header_size = 8;
|
||||||
else
|
else
|
||||||
cip_header_size = 0;
|
cip_header_size = 0;
|
||||||
|
|
||||||
if (*payload_length > cip_header_size + s->ctx_data.tx.max_ctx_payload_length) {
|
if (payload_length > cip_header_size + s->ctx_data.tx.max_ctx_payload_length) {
|
||||||
dev_err(&s->unit->device,
|
dev_err(&s->unit->device,
|
||||||
"Detect jumbo payload: %04x %04x\n",
|
"Detect jumbo payload: %04x %04x\n",
|
||||||
*payload_length, cip_header_size + s->ctx_data.tx.max_ctx_payload_length);
|
payload_length, cip_header_size + s->ctx_data.tx.max_ctx_payload_length);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cip_header_size > 0) {
|
if (cip_header_size > 0) {
|
||||||
if (*payload_length >= cip_header_size) {
|
if (payload_length >= cip_header_size) {
|
||||||
cip_header = ctx_header + 2;
|
cip_header = ctx_header + 2;
|
||||||
err = check_cip_header(s, cip_header, *payload_length, data_blocks,
|
err = check_cip_header(s, cip_header, payload_length, data_blocks,
|
||||||
data_block_counter, syt);
|
data_block_counter, syt);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
@ -671,15 +671,14 @@ static int parse_ir_ctx_header(struct amdtp_stream *s, unsigned int cycle,
|
|||||||
} else {
|
} else {
|
||||||
cip_header = NULL;
|
cip_header = NULL;
|
||||||
err = 0;
|
err = 0;
|
||||||
*data_blocks = *payload_length / sizeof(__be32) /
|
*data_blocks = payload_length / sizeof(__be32) / s->data_block_quadlets;
|
||||||
s->data_block_quadlets;
|
|
||||||
*syt = 0;
|
*syt = 0;
|
||||||
|
|
||||||
if (*data_block_counter == UINT_MAX)
|
if (*data_block_counter == UINT_MAX)
|
||||||
*data_block_counter = 0;
|
*data_block_counter = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
trace_amdtp_packet(s, cycle, cip_header, *payload_length, *data_blocks,
|
trace_amdtp_packet(s, cycle, cip_header, payload_length, *data_blocks,
|
||||||
*data_block_counter, packet_index, index);
|
*data_block_counter, packet_index, index);
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
@ -727,14 +726,13 @@ static int generate_device_pkt_descs(struct amdtp_stream *s,
|
|||||||
for (i = 0; i < packets; ++i) {
|
for (i = 0; i < packets; ++i) {
|
||||||
struct pkt_desc *desc = descs + i;
|
struct pkt_desc *desc = descs + i;
|
||||||
unsigned int cycle;
|
unsigned int cycle;
|
||||||
unsigned int payload_length;
|
|
||||||
unsigned int data_blocks;
|
unsigned int data_blocks;
|
||||||
unsigned int syt;
|
unsigned int syt;
|
||||||
|
|
||||||
cycle = compute_ohci_cycle_count(ctx_header[1]);
|
cycle = compute_ohci_cycle_count(ctx_header[1]);
|
||||||
|
|
||||||
err = parse_ir_ctx_header(s, cycle, ctx_header, &payload_length,
|
err = parse_ir_ctx_header(s, cycle, ctx_header, &data_blocks, &dbc, &syt,
|
||||||
&data_blocks, &dbc, &syt, packet_index, i);
|
packet_index, i);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user