Lines Matching defs:oosiop_softc
106 struct oosiop_softc { struct
107 device_t sc_dev;
109 bus_space_tag_t sc_bst; /* bus space tag */
110 bus_space_handle_t sc_bsh; /* bus space handle */
112 bus_dma_tag_t sc_dmat; /* bus DMA tag */
113 bus_dmamap_t sc_scrdma; /* script DMA map */
115 bus_addr_t sc_scrbase; /* script DMA base address */
116 uint32_t *sc_scr; /* ptr to script memory */
118 int sc_chip; /* 700 or 700-66 */
122 int sc_id; /* SCSI ID of this interface */
123 int sc_freq; /* SCLK frequency */
124 int sc_ccf; /* asynchronous divisor (*10) */
125 uint8_t sc_dcntl;
126 uint8_t sc_minperiod;
128 struct oosiop_target sc_tgt[OOSIOP_NTGT];
130 struct scsipi_adapter sc_adapter;
131 struct scsipi_channel sc_channel;
156 void oosiop_attach(struct oosiop_softc *); argument