Lines Matching refs:cip_header
692 static void generate_cip_header(struct amdtp_stream *s, __be32 cip_header[2], in generate_cip_header()
695 cip_header[0] = cpu_to_be32(READ_ONCE(s->source_node_id_field) | in generate_cip_header()
699 cip_header[1] = cpu_to_be32(CIP_EOH | in generate_cip_header()
712 __be32 *cip_header; in build_it_pkt_header() local
718 cip_header = (__be32 *)params->header; in build_it_pkt_header()
719 generate_cip_header(s, cip_header, data_block_counter, syt); in build_it_pkt_header()
722 cip_header = NULL; in build_it_pkt_header()
725 trace_amdtp_packet(s, cycle, cip_header, payload_length + header_length, data_blocks, in build_it_pkt_header()
734 u32 cip_header[2]; in check_cip_header() local
741 cip_header[0] = be32_to_cpu(buf[0]); in check_cip_header()
742 cip_header[1] = be32_to_cpu(buf[1]); in check_cip_header()
748 if ((((cip_header[0] & CIP_EOH_MASK) == CIP_EOH) || in check_cip_header()
749 ((cip_header[1] & CIP_EOH_MASK) != CIP_EOH)) && in check_cip_header()
753 cip_header[0], cip_header[1]); in check_cip_header()
758 sph = (cip_header[0] & CIP_SPH_MASK) >> CIP_SPH_SHIFT; in check_cip_header()
759 fmt = (cip_header[1] & CIP_FMT_MASK) >> CIP_FMT_SHIFT; in check_cip_header()
763 cip_header[0], cip_header[1]); in check_cip_header()
768 fdf = (cip_header[1] & CIP_FDF_MASK) >> CIP_FDF_SHIFT; in check_cip_header()
773 (cip_header[0] & CIP_DBS_MASK) >> CIP_DBS_SHIFT; in check_cip_header()
778 cip_header[0]); in check_cip_header()
788 dbc = cip_header[0] & CIP_DBC_MASK; in check_cip_header()
823 *syt = cip_header[1] & CIP_SYT_MASK; in check_cip_header()
836 const __be32 *cip_header; in parse_ir_ctx_header() local
857 cip_header = ctx_header + IR_CTX_HEADER_DEFAULT_QUADLETS; in parse_ir_ctx_header()
858 err = check_cip_header(s, cip_header, payload_length - cip_header_size, in parse_ir_ctx_header()
864 cip_header = NULL; in parse_ir_ctx_header()
869 cip_header = NULL; in parse_ir_ctx_header()
877 trace_amdtp_packet(s, cycle, cip_header, payload_length, *data_blocks, in parse_ir_ctx_header()