Lines Matching +full:0 +full:x0e
9 #define CSR_FCP_COMMAND 0xfffff0000b00ull
10 #define CSR_FCP_RESPONSE 0xfffff0000d00ull
13 [0x0] = "control", [0x8] = "not implemented",
14 [0x1] = "status", [0x9] = "accepted",
15 [0x2] = "specific inquiry", [0xa] = "rejected",
16 [0x3] = "notify", [0xb] = "in transition",
17 [0x4] = "general inquiry", [0xc] = "stable",
18 [0x5] = "(reserved 0x05)", [0xd] = "changed",
19 [0x6] = "(reserved 0x06)", [0xe] = "(reserved 0x0e)",
20 [0x7] = "(reserved 0x07)", [0xf] = "interim",
24 [0x00] = "monitor", [0x10] = "(reserved 0x10)",
25 [0x01] = "audio", [0x11] = "(reserved 0x11)",
26 [0x02] = "printer", [0x12] = "(reserved 0x12)",
27 [0x03] = "disc", [0x13] = "(reserved 0x13)",
28 [0x04] = "tape recorder/player",[0x14] = "(reserved 0x14)",
29 [0x05] = "tuner", [0x15] = "(reserved 0x15)",
30 [0x06] = "ca", [0x16] = "(reserved 0x16)",
31 [0x07] = "camera", [0x17] = "(reserved 0x17)",
32 [0x08] = "(reserved 0x08)", [0x18] = "(reserved 0x18)",
33 [0x09] = "panel", [0x19] = "(reserved 0x19)",
34 [0x0a] = "bulletin board", [0x1a] = "(reserved 0x1a)",
35 [0x0b] = "camera storage", [0x1b] = "(reserved 0x1b)",
36 [0x0c] = "(reserved 0x0c)", [0x1c] = "vendor unique",
37 [0x0d] = "(reserved 0x0d)", [0x1d] = "all subunit types",
38 [0x0e] = "(reserved 0x0e)", [0x1e] = "subunit_type extended to next byte",
39 [0x0f] = "(reserved 0x0f)", [0x1f] = "unit",
51 int width; /* Width of field, 0 means use data_length. */
61 { 0x70, "on" },
62 { 0x60, "off" },
70 [0xb2] = { "power", {
71 { "state", 0, 8, power_field_names }
74 [0x30] = { "unit info", {
75 { "foo", 0, 8 },
81 [0x31] = { "subunit info" },
82 [0x01] = { "reserve" },
83 [0xb0] = { "version" },
84 [0x00] = { "vendor dependent" },
85 [0x02] = { "plug info" },
86 [0x12] = { "channel usage" },
87 [0x24] = { "connect" },
88 [0x20] = { "connect av" },
89 [0x22] = { "connections" },
90 [0x11] = { "digital input" },
91 [0x10] = { "digital output" },
92 [0x25] = { "disconnect" },
93 [0x21] = { "disconnect av" },
94 [0x19] = { "input plug signal format" },
95 [0x18] = { "output plug signal format" },
96 [0x1f] = { "general bus setup" },
100 [0x0c] = { "create descriptor" },
101 [0x08] = { "open descriptor" },
102 [0x09] = { "read descriptor" },
103 [0x0a] = { "write descriptor" },
104 [0x05] = { "open info block" },
105 [0x06] = { "read info block" },
106 [0x07] = { "write info block" },
107 [0x0b] = { "search descriptor" },
108 [0x0d] = { "object number select" },
112 [0xb3] = { "rate", {
113 { "subfunction", 0, 8 },
122 [0xb8] = { "function block" },
126 [0x7d] = { "gui update" },
127 [0x7e] = { "push gui data" },
128 [0x7f] = { "user action" },
129 [0x7c] = { "pass through" },
132 [0x26] = { "asynchronous connection" },
157 "(unknown opcode 0x%02x)", frame->opcode); in decode_avc()
167 for (i = 0; info->fields[i].name != NULL; i++) in decode_avc()
183 return 0; in decode_fcp()
187 case 0x00: in decode_fcp()
190 case 0x01: in decode_fcp()
191 printf("cal fcp frame (cts=0x01)\n"); in decode_fcp()
193 case 0x02: in decode_fcp()
194 printf("ehs fcp frame (cts=0x02)\n"); in decode_fcp()
196 case 0x03: in decode_fcp()
197 printf("havi fcp frame (cts=0x03)\n"); in decode_fcp()
199 case 0x0e: in decode_fcp()
200 printf("vendor specific fcp frame (cts=0x0e)\n"); in decode_fcp()
202 case 0x0f: in decode_fcp()
206 printf("reserved fcp frame (ctx=0x%02x)\n", frame->cts); in decode_fcp()
212 return 0; in decode_fcp()