Lines Matching defs:esm_softc
152 struct esm_softc { struct
153 device_t sc_dev;
154 kmutex_t sc_lock;
155 kmutex_t sc_intr_lock;
157 bus_space_tag_t st;
158 bus_space_handle_t sh;
159 bus_size_t sz;
161 pcitag_t tag;
162 pci_chipset_tag_t pc;
163 bus_dma_tag_t dmat;
164 pcireg_t subid;
166 void *ih;
168 struct ac97_codec_if *codec_if;
169 struct ac97_host_if host_if;
170 enum ac97_host_flags codec_flags;
172 struct esm_dma sc_dma;
173 int rings_alloced;
175 int pactive, ractive;
176 struct esm_chinfo pch;
177 struct esm_chinfo rch;
179 void (*sc_pintr)(void *);
180 void *sc_parg;
204 void esm_init(struct esm_softc *); argument