Searched refs:slot_idx (Results 1 - 4 of 4) sorted by relevance

/drivers/scsi/mvsas/
H A Dmv_sas.c981 u32 slot_idx = rx_desc & RXQ_SLOT_MASK; local
982 mvs_tag_clear(mvi, slot_idx);
986 struct mvs_slot_info *slot, u32 slot_idx)
1020 mvs_slot_free(mvi, slot_idx);
1629 u32 slot_idx = (u32)(slot - mvi->slot_info); local
1631 "slot=%p slot_idx=x%x\n",
1632 mvi, task, slot, slot_idx);
1634 mvs_slot_task_free(mvi, task, slot, slot_idx);
1680 u32 slot_idx, int err)
1754 u32 slot_idx)
985 mvs_slot_task_free(struct mvs_info *mvi, struct sas_task *task, struct mvs_slot_info *slot, u32 slot_idx) argument
1679 mvs_sata_done(struct mvs_info *mvi, struct sas_task *task, u32 slot_idx, int err) argument
1753 mvs_slot_err(struct mvs_info *mvi, struct sas_task *task, u32 slot_idx) argument
1806 u32 slot_idx = rx_desc & RXQ_SLOT_MASK; local
1929 u32 slot_idx; local
[all...]
H A Dmv_64xx.c482 static void mvs_64xx_command_active(struct mvs_info *mvi, u32 slot_idx) argument
485 mvs_cw32(mvi, 0x40 + (slot_idx >> 3), 1 << (slot_idx % 32));
486 mvs_cw32(mvi, 0x00 + (slot_idx >> 3), 1 << (slot_idx % 32));
488 tmp = mvs_cr32(mvi, 0x00 + (slot_idx >> 3));
489 } while (tmp & 1 << (slot_idx % 32));
491 tmp = mvs_cr32(mvi, 0x40 + (slot_idx >> 3));
492 } while (tmp & 1 << (slot_idx % 32));
H A Dmv_94xx.c621 static void mvs_94xx_command_active(struct mvs_info *mvi, u32 slot_idx) argument
624 tmp = mvs_cr32(mvi, MVS_COMMAND_ACTIVE+(slot_idx >> 3));
625 if (tmp && 1 << (slot_idx % 32)) {
626 mv_printk("command active %08X, slot [%x].\n", tmp, slot_idx);
627 mvs_cw32(mvi, MVS_COMMAND_ACTIVE + (slot_idx >> 3),
628 1 << (slot_idx % 32));
631 MVS_COMMAND_ACTIVE + (slot_idx >> 3));
632 } while (tmp & 1 << (slot_idx % 32));
H A Dmv_sas.h134 void (*command_active)(struct mvs_info *mvi, u32 slot_idx);

Completed in 63 milliseconds