/Linux-v4.19/arch/parisc/math-emu/ |
D | fpudispatch.c | 197 u_int class, subop; in fpudispatch() local 210 subop = get_subop1_PA2_0(ir); in fpudispatch() 212 subop = get_subop1_PA1_1(ir); in fpudispatch() 215 subop = get_subop(ir); in fpudispatch() 217 if (FPUDEBUG) printk("class %d subop %d\n", class, subop); in fpudispatch() 222 return(decode_0c(ir,class,subop,fpregs)); in fpudispatch() 224 return(decode_0e(ir,class,subop,fpregs)); in fpudispatch() 252 u_int class, subop, major; in emfpudispatch() local 264 subop = get_subop1_PA2_0(ir); in emfpudispatch() 266 subop = get_subop1_PA1_1(ir); in emfpudispatch() [all …]
|
/Linux-v4.19/drivers/acpi/acpica/ |
D | psargs.c | 710 u32 subop; in acpi_ps_get_next_arg() local 804 subop = acpi_ps_peek_opcode(parser_state); in acpi_ps_get_next_arg() 805 if (subop == 0 || in acpi_ps_get_next_arg() 806 acpi_ps_is_leading_char(subop) || in acpi_ps_get_next_arg() 807 ACPI_IS_ROOT_PREFIX(subop) || in acpi_ps_get_next_arg() 808 ACPI_IS_PARENT_PREFIX(subop)) { in acpi_ps_get_next_arg() 838 subop = acpi_ps_peek_opcode(parser_state); in acpi_ps_get_next_arg() 839 if (subop == 0 || in acpi_ps_get_next_arg() 840 acpi_ps_is_leading_char(subop) || in acpi_ps_get_next_arg() 841 ACPI_IS_ROOT_PREFIX(subop) || in acpi_ps_get_next_arg() [all …]
|
/Linux-v4.19/drivers/mtd/nand/raw/ |
D | vf610_nfc.c | 361 vf610_get_next_instr(const struct nand_subop *subop, int *op_id) in vf610_get_next_instr() argument 363 if (*op_id + 1 >= subop->ninstrs) in vf610_get_next_instr() 368 return &subop->instrs[*op_id]; in vf610_get_next_instr() 372 const struct nand_subop *subop) in vf610_nfc_cmd() argument 386 instr = vf610_get_next_instr(subop, &op_id); in vf610_nfc_cmd() 394 instr = vf610_get_next_instr(subop, &op_id); in vf610_nfc_cmd() 398 int naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in vf610_nfc_cmd() 399 int i = nand_subop_get_addr_start_off(subop, op_id); in vf610_nfc_cmd() 411 instr = vf610_get_next_instr(subop, &op_id); in vf610_nfc_cmd() 415 trfr_sz = nand_subop_get_data_len(subop, op_id); in vf610_nfc_cmd() [all …]
|
D | marvell_nand.c | 1535 const struct nand_subop *subop, in marvell_nfc_parse_instructions() argument 1547 for (op_id = 0; op_id < subop->ninstrs; op_id++) { in marvell_nfc_parse_instructions() 1552 instr = &subop->instrs[op_id]; in marvell_nfc_parse_instructions() 1569 offset = nand_subop_get_addr_start_off(subop, op_id); in marvell_nfc_parse_instructions() 1570 naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in marvell_nfc_parse_instructions() 1596 len = nand_subop_get_data_len(subop, op_id); in marvell_nfc_parse_instructions() 1610 len = nand_subop_get_data_len(subop, op_id); in marvell_nfc_parse_instructions() 1625 const struct nand_subop *subop, in marvell_nfc_xfer_data_pio() argument 1631 unsigned int len = nand_subop_get_data_len(subop, op_id); in marvell_nfc_xfer_data_pio() 1632 unsigned int offset = nand_subop_get_data_start_off(subop, op_id); in marvell_nfc_xfer_data_pio() [all …]
|
D | nand_base.c | 2385 struct nand_subop subop; member 2459 unsigned int instr_offset = ctx->subop.first_instr_start_off; in nand_op_parser_match_pat() 2461 const struct nand_op_instr *instr = ctx->subop.instrs; in nand_op_parser_match_pat() 2522 ctx->subop.ninstrs = ninstrs; in nand_op_parser_match_pat() 2523 ctx->subop.last_instr_end_off = instr_offset; in nand_op_parser_match_pat() 2540 if (instr == &ctx->subop.instrs[0]) in nand_op_parser_trace() 2573 if (instr == &ctx->subop.instrs[ctx->subop.ninstrs - 1]) in nand_op_parser_trace() 2611 .subop.instrs = op->instrs, in nand_op_parser_exec_op() 2617 while (ctx.subop.instrs < op->instrs + op->ninstrs) { in nand_op_parser_exec_op() 2632 ret = pattern->exec(chip, &ctx.subop); in nand_op_parser_exec_op() [all …]
|
D | tegra_nand.c | 348 const struct nand_subop *subop) in tegra_nand_cmd() argument 358 for (op_id = 0; op_id < subop->ninstrs; op_id++) { in tegra_nand_cmd() 363 instr = &subop->instrs[op_id]; in tegra_nand_cmd() 380 offset = nand_subop_get_addr_start_off(subop, op_id); in tegra_nand_cmd() 381 naddrs = nand_subop_get_num_addr_cyc(subop, op_id); in tegra_nand_cmd() 396 size = nand_subop_get_data_len(subop, op_id); in tegra_nand_cmd() 397 offset = nand_subop_get_data_start_off(subop, op_id); in tegra_nand_cmd() 406 size = nand_subop_get_data_len(subop, op_id); in tegra_nand_cmd() 407 offset = nand_subop_get_data_start_off(subop, op_id); in tegra_nand_cmd()
|
/Linux-v4.19/drivers/gpu/host1x/hw/ |
D | debug_hw.c | 53 unsigned int mask, subop, num, opcode; in show_channel_command() local 151 subop = val >> 24 & 0xf; in show_channel_command() 152 if (subop == HOST1X_OPCODE_EXTEND_ACQUIRE_MLOCK) in show_channel_command() 155 else if (subop == HOST1X_OPCODE_EXTEND_RELEASE_MLOCK) in show_channel_command()
|
/Linux-v4.19/drivers/scsi/csiostor/ |
D | csio_isr.c | 151 uint8_t subop; in csio_process_scsi_cmpl() local 158 subop = FW_SCSI_ABRT_CLS_WR_SUB_OPCODE_GET( in csio_process_scsi_cmpl() 163 subop ? "Close" : "Abort", in csio_process_scsi_cmpl() 167 if (subop) in csio_process_scsi_cmpl()
|
/Linux-v4.19/include/linux/mtd/ |
D | rawnand.h | 1021 unsigned int nand_subop_get_addr_start_off(const struct nand_subop *subop, 1023 unsigned int nand_subop_get_num_addr_cyc(const struct nand_subop *subop, 1025 unsigned int nand_subop_get_data_start_off(const struct nand_subop *subop, 1027 unsigned int nand_subop_get_data_len(const struct nand_subop *subop, 1118 int (*exec)(struct nand_chip *chip, const struct nand_subop *subop);
|