Lines Matching defs:osiop_softc
190 struct osiop_softc { struct
191 device_t sc_dev;
193 bus_space_tag_t sc_bst; /* bus space tag */
194 bus_space_handle_t sc_reg; /* register I/O handle */
196 bus_dma_tag_t sc_dmat; /* bus dma tag */
197 bus_dmamap_t sc_scrdma; /* script dma map */
198 bus_dmamap_t sc_dsdma; /* script data dma map */
200 uint32_t *sc_script; /* ptr to script memory */
201 struct osiop_ds *sc_ds; /* ptr to data structure memory */
203 int sc_id; /* adapter SCSI id */
204 int sc_active; /* number of active I/O's */
206 struct osiop_acb *sc_nexus; /* current command */
207 struct osiop_acb *sc_acb; /* the real command blocks */
214 struct scsipi_adapter sc_adapter;
215 struct scsipi_channel sc_channel;
217 struct osiop_tinfo sc_tinfo[OSIOP_NTGT];
219 int sc_clock_freq;
220 int sc_tcp[4];
221 int sc_flags;
248 void osiop_attach(struct osiop_softc *); argument