Lines Matching +full:camera +full:- +full:command +full:- +full:set
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/firewire-constants.h>
7 #include "nosy-dump.h"
31 [0x07] = "camera", [0x17] = "(reserved 0x17)",
35 [0x0b] = "camera storage", [0x1b] = "(reserved 0x1b)",
69 /* AV/C Digital Interface Command Set General Specification 4.0 */
111 /* AV/C Command Set for Rate Control of Isochronous Data Flow 1.0 */
148 (struct avc_frame *) t->request->packet.write_block.data; in decode_avc()
154 info = &opcode_info[frame->opcode]; in decode_avc()
155 if (info->name == NULL) { in decode_avc()
157 "(unknown opcode 0x%02x)", frame->opcode); in decode_avc()
160 name = info->name; in decode_avc()
164 ctype_names[frame->ctype], subunit_type_names[frame->subunit_type], in decode_avc()
165 frame->subunit_id, name); in decode_avc()
167 for (i = 0; info->fields[i].name != NULL; i++) in decode_avc()
168 printf(", %s", info->fields[i].name); in decode_avc()
177 (struct avc_frame *) t->request->packet.write_block.data; in decode_fcp()
179 ((unsigned long long) t->request->packet.common.offset_high << 32) | in decode_fcp()
180 t->request->packet.common.offset_low; in decode_fcp()
182 if (t->request->packet.common.tcode != TCODE_WRITE_BLOCK_REQUEST) in decode_fcp()
186 switch (frame->cts) { in decode_fcp()
206 printf("reserved fcp frame (ctx=0x%02x)\n", frame->cts); in decode_fcp()