Lines Matching defs:ts_softc
116 struct ts_softc { struct
117 device_t sc_dev; /* Autoconf ... */
118 struct uba_softc *sc_uh; /* the parent UBA */
119 struct uba_unit sc_unit; /* Struct common for UBA to talk */
120 struct evcnt sc_intrcnt; /* Interrupt counting */
121 struct ubinfo sc_ui; /* mapping info for struct ts */
122 struct uba_unit sc_uu; /* Struct for UBA to communicate */
123 bus_space_tag_t sc_iot;
124 bus_addr_t sc_ioh;
125 bus_dma_tag_t sc_dmat;
126 bus_dmamap_t sc_dmam;
127 volatile struct ts *sc_vts; /* Memory address of ts struct */
128 struct ts *sc_bts; /* Unibus address of ts struct */
129 int sc_type; /* TS11 or TS05? */
130 short sc_waddr; /* Value to write to TSDB */
131 struct bufq_state *sc_bufq; /* pending I/O requests */
133 short sc_mapped; /* Unibus map allocated ? */
134 short sc_state; /* see below: ST_xxx */
135 short sc_rtc; /* retry count for lcmd */
159 static void tsinit(struct ts_softc *); argument