Home | History | Annotate | Download | only in ic

Lines Matching defs:siop_cmd

49 struct siop_cmd {
50 TAILQ_ENTRY (siop_cmd) next;
58 /* command block descriptors: an array of siop_cmd + an array of siop_xfer */
61 struct siop_cmd *cmds;
68 struct siop_cmd *active; /* active command */
96 static __inline void siop_table_sync(struct siop_cmd *, int);
98 siop_table_sync(struct siop_cmd *siop_cmd, int ops)
100 struct siop_common_softc *sc = siop_cmd->cmd_c.siop_sc;
103 offset = siop_cmd->cmd_c.dsa -
104 siop_cmd->siop_cbdp->xferdma->dm_segs[0].ds_addr;
105 bus_dmamap_sync(sc->sc_dmat, siop_cmd->siop_cbdp->xferdma, offset,
110 TAILQ_HEAD(cmd_list, siop_cmd);