Searched defs:opcode (Results 1 - 25 of 177) sorted by relevance

12345678

/drivers/acpi/acpica/
H A Dexresop.c134 acpi_ex_resolve_operands(u16 opcode, argument
147 ACPI_FUNCTION_TRACE_U32(ex_resolve_operands, opcode);
149 op_info = acpi_ps_get_opcode_info(opcode);
156 ACPI_ERROR((AE_INFO, "Unknown AML opcode 0x%X", opcode));
163 opcode, op_info->name, arg_types));
337 if ((opcode == AML_STORE_OP) &&
696 acpi_ps_get_opcode_name(opcode),
H A Dpsopcode.c3 * Module Name: psopcode - Parser/Interpreter opcode information table
60 * DESCRIPTION: Opcode table. Each entry contains <opcode, type, name, operands>
68 * Summary of opcode types/flags
187 * opcode, all in one place.
697 * This table is indexed by the second opcode of the extended opcode
698 * pair. It returns an index into the opcode table (acpi_gbl_aml_op_info)
727 * PARAMETERS: Opcode - The AML opcode
729 * RETURN: A pointer to the info about the opcode.
731 * DESCRIPTION: Find AML opcode descriptio
736 acpi_ps_get_opcode_info(u16 opcode) argument
781 acpi_ps_get_opcode_name(u16 opcode) argument
[all...]
H A Dpsutils.c89 void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode) argument
94 op->common.aml_opcode = opcode;
98 (opcode))->name,
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);
H A Dpsparse.c49 * fairly compact by parsing based on a list of AML opcode
67 * PARAMETERS: Opcode - An AML opcode
69 * RETURN: Size of the opcode, in bytes (1 or 2)
71 * DESCRIPTION: Get the size of the current opcode.
74 u32 acpi_ps_get_opcode_size(u32 opcode) argument
77 /* Extended (2-byte) opcode if > 255 */
79 if (opcode > 0x00FF) {
83 /* Otherwise, just a single byte opcode */
94 * RETURN: Next AML opcode
96 * DESCRIPTION: Get next AML opcode (withou
103 u16 opcode; local
[all...]
H A Ddsmthdat.c66 acpi_ds_method_data_get_type(u16 opcode,
441 "Not a Arg/Local opcode: 0x%X",
684 acpi_ds_method_data_get_type(u16 opcode, argument
695 status = acpi_ds_method_data_get_node(opcode, index, walk_state, &node);
H A Ddsobject.c305 "Expecting bytelist, found AML opcode 0x%X in op %p",
374 * than the Package list length (for the fixed length package opcode), some
615 * Opcode - AML opcode associated with the object
629 u16 opcode,
639 op_info = acpi_ps_get_opcode_info(opcode);
642 /* Unknown opcode */
688 switch (opcode) {
718 "Unknown constant opcode 0x%X",
719 opcode));
762 /* Local ID (0-7) is (AML opcode
627 acpi_ds_init_object_from_op(struct acpi_walk_state *walk_state, union acpi_parse_object *op, u16 opcode, union acpi_operand_object **ret_obj_desc) argument
[all...]
H A Dexmisc.c400 * PARAMETERS: Opcode - AML opcode
406 * DESCRIPTION: Execute a math AML opcode. The purpose of having all of the
412 u64 acpi_ex_do_math_op(u16 opcode, u64 integer0, u64 integer1) argument
417 switch (opcode) {
482 * PARAMETERS: Opcode - AML opcode
489 * DESCRIPTION: Execute a logical "Numeric" AML opcode. For these Numeric
499 acpi_ex_do_logical_numeric_op(u16 opcode, argument
507 switch (opcode) {
537 * PARAMETERS: Opcode - AML opcode
544 * DESCRIPTION: Execute a logical AML opcode
560 acpi_ex_do_logical_op(u16 opcode, union acpi_operand_object *operand0, union acpi_operand_object *operand1, u8 * logical_result) argument
[all...]
H A Dacinterp.h68 u8 opcode; member in struct:acpi_exdump_info
200 acpi_ex_do_logical_numeric_op(u16 opcode,
204 acpi_ex_do_logical_op(u16 opcode,
208 u64 acpi_ex_do_math_op(u16 opcode, u64 operand0, u64 operand1);
361 acpi_ex_resolve_operands(u16 opcode,
H A Ddsutils.c221 ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op));
227 * the parent opcode will not use the result, delete the object.
237 /* Never delete the return value associated with a return opcode */
261 /* The general control opcode returns no result */
332 * DESCRIPTION: Used after interpretation of an opcode. If there is an internal
333 * result descriptor, check if the parent opcode will actually use
454 * opcode to the equivalent interpreter object. This may include
469 u16 opcode; local
498 * opcode that unfortunately defines the field name as the last
503 * actual opcode exist
[all...]
H A Dnsxfname.c517 u16 opcode; local
534 /* First AML opcode in the table must be a control method */
537 opcode = acpi_ps_peek_opcode(&parser_state);
538 if (opcode != AML_METHOD_OP) {
544 parser_state.aml += acpi_ps_get_opcode_size(opcode);
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...]
/drivers/net/wimax/i2400m/
H A Dsdio-fw.c110 int opcode = _cmd == NULL ? -1 : i2400m_brh_get_opcode(_cmd); local
132 opcode, cmd_size, cmd_size_a);
141 opcode, (long) result);
H A Dusb-fw.c188 int opcode = _cmd == NULL ? -1 : i2400m_brh_get_opcode(_cmd); local
210 opcode, result);
215 "(%zu vs %zu submitted)\n", opcode, result, cmd_size);
/drivers/infiniband/hw/ipath/
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...]
H A Dipath_ud.c96 if (swqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
214 wc.opcode = IB_WC_RECV;
343 if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
413 int opcode; local
476 * The opcode is in the low byte when its in network order
479 opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
481 opcode == IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE) {
489 } else if (opcode == IB_OPCODE_UD_SEND_ONLY) {
559 wc.opcode = IB_WC_RECV;
/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;
290 switch (opcode) {
[all...]
H A Dqib_ud.c126 if (swqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
206 wc.opcode = IB_WC_RECV;
338 if (wqe->wr.opcode == IB_WR_SEND_WITH_IMM) {
429 int opcode; local
507 * The opcode is in the low byte when its in network order
510 opcode = be32_to_cpu(ohdr->bth[0]) >> 24;
512 opcode == IB_OPCODE_UD_SEND_ONLY_WITH_IMMEDIATE) {
516 } else if (opcode == IB_OPCODE_UD_SEND_ONLY) {
568 wc.opcode = IB_WC_RECV;
/drivers/scsi/megaraid/
H A Dmegaraid_mm.h47 * @opcode :
72 uint8_t opcode; member in struct:mimd::__anon4709::__anon4710
/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/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/bluetooth/
H A Dbtmrvl_main.c51 u16 opcode, ocf; local
55 opcode = __le16_to_cpu(ec->opcode);
56 ocf = hci_opcode_ocf(opcode);
/drivers/misc/iwmc3200top/
H A Dfw-msg.h68 __le16 opcode; member in struct:msg_hdr
/drivers/mmc/core/
H A Dmmc_ops.c31 cmd.opcode = MMC_SELECT_CARD;
69 cmd.opcode = MMC_SLEEP_AWAKE;
113 cmd.opcode = MMC_GO_IDLE_STATE;
138 cmd.opcode = MMC_SEND_OP_COND;
179 cmd.opcode = MMC_ALL_SEND_CID;
200 cmd.opcode = MMC_SET_RELATIVE_ADDR;
212 mmc_send_cxd_native(struct mmc_host *host, u32 arg, u32 *cxd, int opcode) argument
220 cmd.opcode = opcode;
235 u32 opcode, voi
234 mmc_send_cxd_data(struct mmc_card *card, struct mmc_host *host, u32 opcode, void *buf, unsigned len) argument
455 mmc_send_bus_test(struct mmc_card *card, struct mmc_host *host, u8 opcode, u8 len) argument
555 unsigned int opcode; local
[all...]
/drivers/net/wireless/ath/ath9k/
H A Dmci.c180 static void ath_mci_cal_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload) argument
186 switch (opcode) {
274 static void ath_mci_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload) argument
285 switch (opcode) {
332 ath_dbg(common, MCI, "Unknown GPM COEX message = 0x%02x\n", opcode);
393 u32 offset, subtype, opcode; local
481 opcode = MCI_GPM_OPCODE(pgpm);
491 ath_mci_msg(sc, opcode, (u8 *)pgpm);
/drivers/scsi/aic7xxx_old/
H A Dsequencer.h46 opcode : 4, member in struct:ins_format1
56 opcode : 4, member in struct:ins_format2
65 opcode : 4, member in struct:ins_format3
72 opcode : 4, member in struct:ins_format1
82 opcode : 4, member in struct:ins_format2
92 opcode : 4, member in struct:ins_format3

Completed in 489 milliseconds

12345678