cip_header         17 sound/firewire/amdtp-stream-trace.h 	TP_PROTO(const struct amdtp_stream *s, u32 cycles, const __be32 *cip_header, unsigned int payload_length, unsigned int data_blocks, unsigned int data_block_counter, unsigned int index),
cip_header         18 sound/firewire/amdtp-stream-trace.h 	TP_ARGS(s, cycles, cip_header, payload_length, data_blocks, data_block_counter, index),
cip_header         25 sound/firewire/amdtp-stream-trace.h 		__dynamic_array(u8, cip_header, cip_header ? 8 : 0)
cip_header         44 sound/firewire/amdtp-stream-trace.h 		if (cip_header) {
cip_header         45 sound/firewire/amdtp-stream-trace.h 			memcpy(__get_dynamic_array(cip_header), cip_header,
cip_header         46 sound/firewire/amdtp-stream-trace.h 			       __get_dynamic_array_len(cip_header));
cip_header         68 sound/firewire/amdtp-stream-trace.h 		__print_array(__get_dynamic_array(cip_header),
cip_header         69 sound/firewire/amdtp-stream-trace.h 			      __get_dynamic_array_len(cip_header), 1))
cip_header        478 sound/firewire/amdtp-stream.c static void generate_cip_header(struct amdtp_stream *s, __be32 cip_header[2],
cip_header        481 sound/firewire/amdtp-stream.c 	cip_header[0] = cpu_to_be32(READ_ONCE(s->source_node_id_field) |
cip_header        485 sound/firewire/amdtp-stream.c 	cip_header[1] = cpu_to_be32(CIP_EOH |
cip_header        498 sound/firewire/amdtp-stream.c 	__be32 *cip_header;
cip_header        504 sound/firewire/amdtp-stream.c 		cip_header = (__be32 *)params->header;
cip_header        505 sound/firewire/amdtp-stream.c 		generate_cip_header(s, cip_header, data_block_counter, syt);
cip_header        509 sound/firewire/amdtp-stream.c 		cip_header = NULL;
cip_header        512 sound/firewire/amdtp-stream.c 	trace_amdtp_packet(s, cycle, cip_header, payload_length, data_blocks,
cip_header        521 sound/firewire/amdtp-stream.c 	u32 cip_header[2];
cip_header        528 sound/firewire/amdtp-stream.c 	cip_header[0] = be32_to_cpu(buf[0]);
cip_header        529 sound/firewire/amdtp-stream.c 	cip_header[1] = be32_to_cpu(buf[1]);
cip_header        535 sound/firewire/amdtp-stream.c 	if ((((cip_header[0] & CIP_EOH_MASK) == CIP_EOH) ||
cip_header        536 sound/firewire/amdtp-stream.c 	     ((cip_header[1] & CIP_EOH_MASK) != CIP_EOH)) &&
cip_header        540 sound/firewire/amdtp-stream.c 				cip_header[0], cip_header[1]);
cip_header        545 sound/firewire/amdtp-stream.c 	sph = (cip_header[0] & CIP_SPH_MASK) >> CIP_SPH_SHIFT;
cip_header        546 sound/firewire/amdtp-stream.c 	fmt = (cip_header[1] & CIP_FMT_MASK) >> CIP_FMT_SHIFT;
cip_header        550 sound/firewire/amdtp-stream.c 				     cip_header[0], cip_header[1]);
cip_header        555 sound/firewire/amdtp-stream.c 	fdf = (cip_header[1] & CIP_FDF_MASK) >> CIP_FDF_SHIFT;
cip_header        561 sound/firewire/amdtp-stream.c 				(cip_header[0] & CIP_DBS_MASK) >> CIP_DBS_SHIFT;
cip_header        566 sound/firewire/amdtp-stream.c 				cip_header[0]);
cip_header        577 sound/firewire/amdtp-stream.c 	dbc = cip_header[0] & CIP_DBC_MASK;
cip_header        607 sound/firewire/amdtp-stream.c 	*syt = cip_header[1] & CIP_SYT_MASK;
cip_header        619 sound/firewire/amdtp-stream.c 	const __be32 *cip_header;
cip_header        632 sound/firewire/amdtp-stream.c 		cip_header = ctx_header + 2;
cip_header        633 sound/firewire/amdtp-stream.c 		err = check_cip_header(s, cip_header, *payload_length,
cip_header        638 sound/firewire/amdtp-stream.c 		cip_header = NULL;
cip_header        648 sound/firewire/amdtp-stream.c 	trace_amdtp_packet(s, cycle, cip_header, *payload_length, *data_blocks,