Lines Matching defs:sdmmc_softc
167 struct sdmmc_softc { struct
168 struct device sc_dev; /* base device */
170 sdmmc_chipset_tag_t sct; /* host controller chipset tag */
171 sdmmc_chipset_handle_t sch; /* host controller chipset handle */
173 bus_dma_tag_t sc_dmat;
174 bus_dmamap_t sc_dmap;
177 int sc_flags;
187 uint32_t sc_caps; /* host capability */
207 int sc_function_count; /* number of I/O functions (SDIO) */
208 struct sdmmc_function *sc_card; /* selected card */
209 struct sdmmc_function *sc_fn0; /* function 0, the card itself */
211 int sc_dying; /* bus driver is shutting down */
212 struct proc *sc_task_thread; /* asynchronous tasks */
214 struct sdmmc_task sc_discover_task; /* card attach/detach task */
238 void sdmmc_add_task(struct sdmmc_softc *, struct sdmmc_task *); argument