Searched refs:opcode (Results 1 - 25 of 384) sorted by relevance

1234567891011>>

/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_insformat.h54 opcode : 4, member in struct:ins_format1
58 opcode : 4,
73 opcode : 4, member in struct:ins_format2
77 opcode : 4,
91 opcode : 4, member in struct:ins_format3
95 opcode : 4,
109 opcode : 4, member in struct:ins_format4
113 opcode : 4,
127 opcode : 4, member in struct:ins_format5
131 opcode
145 opcode : 4, member in struct:ins_format6
[all...]
/drivers/scsi/pcmcia/
H A Dnsp_debug.c49 #define group(opcode) (((opcode) >> 5) & 7)
65 static void print_opcodek(unsigned char opcode) argument
67 const char **table = commands[ group(opcode) ];
71 printk("%s[%02x] ", reserved, opcode);
74 printk("%s(notext)[%02x] ", unknown, opcode);
77 printk("%s[%02x] ", vendor, opcode);
80 if (table[opcode & 0x1f] != unknown)
81 printk("%s[%02x] ", table[opcode & 0x1f], opcode);
[all...]
/drivers/acpi/acpica/
H A Dpsutils.c81 * opcode - Opcode to store in the Op
89 void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode) argument
94 op->common.aml_opcode = opcode;
98 (opcode))->name,
106 * PARAMETERS: opcode - Opcode that will be stored in the new Op
111 * opcode. A cache of opcodes is available for the pure
116 union acpi_parse_object *acpi_ps_alloc_op(u16 opcode) argument
124 op_info = acpi_ps_get_opcode_info(opcode);
132 } else if (opcode == AML_INT_BYTELIST_OP) {
152 acpi_ps_init_op(op, opcode);
[all...]
H A Dexoparg2.c66 * required for this opcode type (1 through 6 args).
68 * for this opcode type (0, 1, or 2 targets).
69 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
83 * DESCRIPTION: Execute opcode with two arguments, no target, and no return
97 acpi_ps_get_opcode_name(walk_state->opcode));
99 /* Examine the opcode */
101 switch (walk_state->opcode) {
135 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
136 walk_state->opcode));
164 acpi_ps_get_opcode_name(walk_state->opcode));
[all...]
H A Dexoparg3.c65 * required for this opcode type (1 through 6 args).
67 * for this opcode type (0, 1, or 2 targets).
68 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
92 acpi_ps_get_opcode_name(walk_state->opcode));
94 switch (walk_state->opcode) {
121 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
122 walk_state->opcode));
154 acpi_ps_get_opcode_name(walk_state->opcode));
156 switch (walk_state->opcode) {
245 ACPI_ERROR((AE_INFO, "Unknown AML opcode
[all...]
H A Dpsargs.c3 * Module Name: psargs - Parse AML opcode arguments
272 if (walk_state->opcode == AML_UNLOAD_OP) {
395 u16 opcode; local
405 opcode = AML_BYTE_OP;
414 opcode = AML_WORD_OP;
423 opcode = AML_DWORD_OP;
432 opcode = AML_QWORD_OP;
441 opcode = AML_STRING_OP;
467 acpi_ps_init_op(arg, opcode);
490 u16 opcode; local
[all...]
H A Dacparser.h79 * psargs - Parse AML opcode arguments
103 u32 name, u32 opcode);
131 const struct acpi_opcode_info *acpi_ps_get_opcode_info(u16 opcode);
133 char *acpi_ps_get_opcode_name(u16 opcode);
142 u32 acpi_ps_get_opcode_size(u32 opcode);
190 char *path, u16 opcode, u32 create);
227 void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode);
229 union acpi_parse_object *acpi_ps_alloc_op(u16 opcode);
H A Dexoparg1.c67 * required for this opcode type (0 through 6 args).
69 * for this opcode type (0, 1, or 2 targets).
70 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
80 * PARAMETERS: walk_state - Current state (contains AML opcode)
93 acpi_ps_get_opcode_name(walk_state->opcode));
95 /* Examine the AML opcode */
97 switch (walk_state->opcode) {
110 default: /* Unknown opcode */
112 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
113 walk_state->opcode));
[all...]
H A Dpsopinfo.c3 * Module Name: psopinfo - AML opcode information functions and dispatch tables
63 * PARAMETERS: opcode - The AML opcode
65 * RETURN: A pointer to the info about the opcode.
67 * DESCRIPTION: Find AML opcode description based on the opcode.
72 const struct acpi_opcode_info *acpi_ps_get_opcode_info(u16 opcode) argument
75 const char *opcode_name = "Unknown AML opcode";
81 * Detect normal 8-bit opcode or extended 16-bit opcode
164 acpi_ps_get_opcode_name(u16 opcode) argument
[all...]
H A Dpsobject.c63 * DESCRIPTION: Extract the next AML opcode from the input stream.
75 walk_state->opcode = acpi_ps_peek_opcode(&(walk_state->parser_state));
79 * 1) A valid AML opcode
81 * 3) An unknown/invalid opcode
83 walk_state->op_info = acpi_ps_get_opcode_info(walk_state->opcode);
92 walk_state->opcode = AML_INT_NAMEPATH_OP;
98 /* The opcode is unrecognized. Complain and skip unknown opcodes */
102 "Unknown opcode 0x%.2X at table offset 0x%.4X, ignoring",
103 walk_state->opcode,
116 ("/*\nError: Unknown opcode
[all...]
H A Dexresop.c115 * PARAMETERS: opcode - Opcode being interpreted
133 acpi_ex_resolve_operands(u16 opcode, argument
146 ACPI_FUNCTION_TRACE_U32(ex_resolve_operands, opcode);
148 op_info = acpi_ps_get_opcode_info(opcode);
155 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", opcode));
162 opcode, op_info->name, arg_types));
334 if ((opcode == AML_STORE_OP) &&
697 acpi_ps_get_opcode_name(opcode),
H A Dexoparg6.c65 * required for this opcode type (1 through 6 args).
67 * for this opcode type (0, 1, or 2 targets).
68 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
206 * DESCRIPTION: Execute opcode with 6 arguments, no target, and a return value
219 acpi_ps_get_opcode_name(walk_state->opcode));
221 switch (walk_state->opcode) {
311 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X",
312 walk_state->opcode));
H A Drsmisc.c117 switch (info->opcode) {
250 * been previously initialized via a COUNT opcode
256 info->opcode);
272 info->opcode);
288 info->opcode);
304 info->opcode);
322 info->opcode);
428 "Invalid conversion sub-opcode"));
435 ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
502 switch (info->opcode) {
[all...]
/drivers/scsi/
H A Dnsp32_debug.c47 #define group(opcode) (((opcode) >> 5) & 7)
63 static void print_opcodek(unsigned char opcode) argument
65 const char **table = commands[ group(opcode) ];
69 printk("%s[%02x] ", reserved, opcode);
72 printk("%s(notext)[%02x] ", unknown, opcode);
75 printk("%s[%02x] ", vendor, opcode);
78 if (table[opcode & 0x1f] != unknown)
79 printk("%s[%02x] ", table[opcode & 0x1f], opcode);
[all...]
/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.c367 u32 opcode, new, old, tmp1, tmp2; local
376 opcode = *cur;
384 if (opcode == 0) {
395 if (opcode == SCR_DATA_ZERO) {
402 (unsigned)opcode);
407 switch (opcode >> 28) {
435 if ((opcode & SCR_NO_FLUSH) &&
437 opcode = (opcode & ~SCR_NO_FLUSH);
445 opcode
[all...]
/drivers/infiniband/hw/qib/
H A Dqib_uc.c105 switch (wqe->wr.opcode) {
113 if (wqe->wr.opcode == IB_WR_SEND)
142 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
172 if (wqe->wr.opcode == IB_WR_SEND)
196 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
246 u32 opcode; local
264 opcode = be32_to_cpu(ohdr->bth[0]);
265 if (qib_ruc_check_hdr(ibp, hdr, has_grh, qp, opcode))
269 opcode >>= 24;
286 switch (opcode) {
[all...]
H A Dqib_rc.c121 if (e->opcode == OP(RDMA_READ_REQUEST)) {
334 switch (wqe->wr.opcode) {
350 if (wqe->wr.opcode == IB_WR_SEND)
389 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
458 if (wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
497 if (wqe->wr.opcode == IB_WR_RDMA_READ)
508 * qp->s_state is normally set to the opcode of the
531 if (wqe->wr.opcode == IB_WR_SEND)
549 * qp->s_state is normally set to the opcode of the
572 if (wqe->wr.opcode
787 u32 opcode; local
975 u32 opcode; local
1127 do_rc_ack(struct qib_qp *qp, u32 aeth, u32 psn, int opcode, u64 val, struct qib_ctxtdata *rcd) argument
1397 qib_rc_rcv_resp(struct qib_ibport *ibp, struct qib_other_headers *ohdr, void *data, u32 tlen, struct qib_qp *qp, u32 opcode, u32 psn, u32 hdrsize, u32 pmtu, struct qib_ctxtdata *rcd) argument
1622 qib_rc_rcv_error(struct qib_other_headers *ohdr, void *data, struct qib_qp *qp, u32 opcode, u32 psn, int diff, struct qib_ctxtdata *rcd) argument
1867 u32 opcode; local
[all...]
/drivers/mmc/core/
H A Dmmc_ops.c35 cmd.opcode = MMC_SEND_STATUS;
67 cmd.opcode = MMC_SELECT_CARD;
108 cmd.opcode = MMC_SET_DSR;
135 cmd.opcode = MMC_GO_IDLE_STATE;
160 cmd.opcode = MMC_SEND_OP_COND;
201 cmd.opcode = MMC_ALL_SEND_CID;
222 cmd.opcode = MMC_SET_RELATIVE_ADDR;
234 mmc_send_cxd_native(struct mmc_host *host, u32 arg, u32 *cxd, int opcode) argument
242 cmd.opcode = opcode;
260 mmc_send_cxd_data(struct mmc_card *card, struct mmc_host *host, u32 opcode, void *buf, unsigned len) argument
547 mmc_send_bus_test(struct mmc_card *card, struct mmc_host *host, u8 opcode, u8 len) argument
648 unsigned int opcode; local
[all...]
/drivers/infiniband/hw/ipath/
H A Dipath_rc.c125 if (e->opcode == OP(RDMA_READ_REQUEST)) {
310 switch (wqe->wr.opcode) {
326 if (wqe->wr.opcode == IB_WR_SEND)
365 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
433 if (wqe->wr.opcode == IB_WR_ATOMIC_CMP_AND_SWP) {
471 if (wqe->wr.opcode == IB_WR_RDMA_READ)
510 if (wqe->wr.opcode == IB_WR_SEND)
546 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
728 u32 opcode; local
741 /* Find the work request opcode correspondin
857 do_rc_ack(struct ipath_qp *qp, u32 aeth, u32 psn, int opcode, u64 val) argument
1117 ipath_rc_rcv_resp(struct ipath_ibdev *dev, struct ipath_other_headers *ohdr, void *data, u32 tlen, struct ipath_qp *qp, u32 opcode, u32 psn, u32 hdrsize, u32 pmtu, int header_in_data) argument
1335 ipath_rc_rcv_error(struct ipath_ibdev *dev, struct ipath_other_headers *ohdr, void *data, struct ipath_qp *qp, u32 opcode, u32 psn, int diff, int header_in_data) argument
1574 u32 opcode; local
[all...]
H A Dipath_uc.c102 switch (wqe->wr.opcode) {
110 if (wqe->wr.opcode == IB_WR_SEND)
139 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
169 if (wqe->wr.opcode == IB_WR_SEND)
193 if (wqe->wr.opcode == IB_WR_RDMA_WRITE)
244 int opcode; local
280 * The opcode is in the low byte when its in network order
283 opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
296 switch (opcode) {
313 /* Check for opcode sequenc
[all...]
/drivers/infiniband/hw/cxgb3/
H A Diwch_cq.c86 PDBG("%s qpid 0x%x type %d opcode %d status 0x%x wrid hi 0x%x "
97 wc->opcode = IB_WC_RECV;
106 wc->opcode = IB_WC_RDMA_WRITE;
109 wc->opcode = IB_WC_RDMA_READ;
116 wc->opcode = IB_WC_SEND;
119 wc->opcode = IB_WC_BIND_MW;
123 wc->opcode = IB_WC_LOCAL_INV;
126 wc->opcode = IB_WC_FAST_REG_MR;
129 printk(KERN_ERR MOD "Unexpected opcode %d "
/drivers/net/ethernet/mellanox/mlx5/core/
H A Dfw.c49 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_QUERY_ADAPTER);
80 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_INIT_HCA);
99 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_TEARDOWN_HCA);
H A Dpd.c69 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_ALLOC_PD);
90 in.hdr.opcode = cpu_to_be16(MLX5_CMD_OP_DEALLOC_PD);
/drivers/atm/
H A Dfore200e.h248 typedef enum opcode { enum
277 /* activate VC command opcode */
281 enum opcode opcode : 8, /* cp opcode */
292 struct activate_opcode opcode; /* activate VC command opcode */ member in struct:activate_block
299 /* deactivate VC command opcode */
303 enum opcode opcode
312 struct deactivate_opcode opcode; /* deactivate VC command opcode */ member in struct:deactivate_block
343 struct oc3_opcode opcode; /* set/get OC-3 regs command opcode */ member in struct:oc3_block
464 struct stats_opcode opcode; /* get statistics command opcode */ member in struct:stats_block
491 struct prom_opcode opcode; /* get PROM data command opcode */ member in struct:prom_block
499 enum opcode opcode; /* operation code */ member in union:cmd
668 enum opcode opcode; /* initialize command */ member in struct:init_block
[all...]
/drivers/bluetooth/
H A Dhci_vhci.c98 static int vhci_create_device(struct vhci_data *data, __u8 opcode) argument
105 dev_type = opcode & 0x03;
111 if (opcode & 0x3c)
136 if (opcode & 0x40)
140 if (opcode & 0x80)
154 *skb_put(skb, 1) = opcode;
167 __u8 pkt_type, opcode; local
207 opcode = *((__u8 *) skb->data);
217 ret = vhci_create_device(data, opcode);

Completed in 308 milliseconds

1234567891011>>